Module Values.CustomModelDeploymentSummarySource

Contains summary information about a custom model deployment, including its ARN, name, status, and associated custom model.

Sourcetype nonrec t = {
  1. customModelDeploymentArn : CustomModelDeploymentArn.t option;
    (*

    The Amazon Resource Name (ARN) of the custom model deployment.

    *)
  2. customModelDeploymentName : ModelDeploymentName.t option;
    (*

    The name of the custom model deployment.

    *)
  3. modelArn : ModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the custom model associated with this deployment.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The date and time when the custom model deployment was created.

    *)
  5. status : CustomModelDeploymentStatus.t option;
    (*

    The status of the custom model deployment. Possible values are CREATING, ACTIVE, and FAILED.

    *)
  6. lastUpdatedAt : Timestamp.t option;
    (*

    The date and time when the custom model deployment was last modified.

    *)
  7. failureMessage : ErrorMessage.t option;
    (*

    If the deployment status is FAILED, this field contains a message describing the failure reason.

    *)
}
Sourceval make : ?customModelDeploymentArn:??? -> ?customModelDeploymentName:??? -> ?modelArn:??? -> ?createdAt:??? -> ?status:??? -> ?lastUpdatedAt:??? -> ?failureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CustomModelDeploymentArn.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t