Module Values.DeploymentResultSource

Information about the result of a deployment on an edge device that is registered with SageMaker Edge Manager.

Sourcetype nonrec t = {
  1. deploymentName : EntityName.t option;
    (*

    The name and unique ID of the deployment.

    *)
  2. deploymentStatus : EntityName.t option;
    (*

    Returns the bucket error code.

    *)
  3. deploymentStatusMessage : String_.t option;
    (*

    Returns the detailed error message.

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

    The timestamp of when the deployment was started on the agent.

    *)
  5. deploymentEndTime : Timestamp.t option;
    (*

    The timestamp of when the deployment was ended, and the agent got the deployment results.

    *)
  6. deploymentModels : DeploymentModels.t option;
    (*

    Returns a list of models deployed on the agent.

    *)
}
Sourceval make : ?deploymentName:??? -> ?deploymentStatus:??? -> ?deploymentStatusMessage:??? -> ?deploymentStartTime:??? -> ?deploymentEndTime:??? -> ?deploymentModels:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of EntityName.t ]) list ] list | `String of EntityName.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