Module Values.EdgeDeploymentSource

Information about 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. type_ : DeploymentType.t option;
    (*

    The type of the deployment.

    *)
  3. failureHandlingPolicy : FailureHandlingPolicy.t option;
    (*

    Determines whether to rollback to previous configuration if deployment fails.

    *)
  4. definitions : Definitions.t option;
    (*

    Returns a list of Definition objects.

    *)
}
Sourceval make : ?deploymentName:??? -> ?type_:??? -> ?failureHandlingPolicy:??? -> ?definitions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of EntityName.t | `Structure of (string * [> `Enum of string | `String of ChecksumString.t ]) list ]) list ] list | `String of EntityName.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