Values.InferenceExecutionSummarySourceContains information about the specific inference execution, including input and output data configuration, inference scheduling information, status, and so on.
type nonrec t = {modelName : ModelName.t option;The name of the machine learning model being used for the inference execution.
*)modelArn : ModelArn.t option;The Amazon Resource Name (ARN) of the machine learning model used for the inference execution.
*)inferenceSchedulerName : InferenceSchedulerName.t option;The name of the inference scheduler being used for the inference execution.
*)inferenceSchedulerArn : InferenceSchedulerArn.t option;The Amazon Resource Name (ARN) of the inference scheduler being used for the inference execution.
*)scheduledStartTime : Timestamp.t option;Indicates the start time at which the inference scheduler began the specific inference execution.
*)dataStartTime : Timestamp.t option;Indicates the time reference in the dataset at which the inference execution began.
*)dataEndTime : Timestamp.t option;Indicates the time reference in the dataset at which the inference execution stopped.
*)dataInputConfiguration : InferenceInputConfiguration.t option;Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.
*)dataOutputConfiguration : InferenceOutputConfiguration.t option;Specifies configuration information for the output results from for the inference execution, including the output Amazon S3 location.
*)customerResultObject : S3Object.t option;The S3 object that the inference execution results were uploaded to.
*)status : InferenceExecutionStatus.t option;Indicates the status of the inference execution.
*)failedReason : BoundedLengthString.t option;Specifies the reason for failure when an inference execution has failed.
*)modelVersion : ModelVersion.t option;The model version used for the inference execution.
*)modelVersionArn : ModelVersionArn.t option;The Amazon Resource Number (ARN) of the model version used for the inference execution.
*)}val make :
?modelName:??? ->
?modelArn:??? ->
?inferenceSchedulerName:??? ->
?inferenceSchedulerArn:??? ->
?scheduledStartTime:??? ->
?dataStartTime:??? ->
?dataEndTime:??? ->
?dataInputConfiguration:??? ->
?dataOutputConfiguration:??? ->
?customerResultObject:??? ->
?status:??? ->
?failedReason:??? ->
?modelVersion:??? ->
?modelVersionArn:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of ModelVersion.t
| `String of ModelName.t
| `Structure of
(string
* [> `String of TimeZoneOffset.t
| `Structure of (string * [> `String of S3Bucket.t ]) list ])
list
| `Timestamp of Timestamp.t ])
list ]