Values.CustomModelDeploymentSummarySourceContains summary information about a custom model deployment, including its ARN, name, status, and associated custom model.
type nonrec t = {customModelDeploymentArn : CustomModelDeploymentArn.t option;The Amazon Resource Name (ARN) of the custom model deployment.
*)customModelDeploymentName : ModelDeploymentName.t option;The name of the custom model deployment.
*)modelArn : ModelArn.t option;The Amazon Resource Name (ARN) of the custom model associated with this deployment.
*)createdAt : Timestamp.t option;The date and time when the custom model deployment was created.
*)status : CustomModelDeploymentStatus.t option;The status of the custom model deployment. Possible values are CREATING, ACTIVE, and FAILED.
*)lastUpdatedAt : Timestamp.t option;The date and time when the custom model deployment was last modified.
*)failureMessage : ErrorMessage.t option;If the deployment status is FAILED, this field contains a message describing the failure reason.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of CustomModelDeploymentArn.t
| `Timestamp of Timestamp.t ])
list ]