Module Values.BulkDeploymentResultSource

Information about an individual group deployment in a bulk deployment operation.

Sourcetype nonrec t = {
  1. createdAt : string option;
    (*

    The time, in ISO format, when the deployment was created.

    *)
  2. deploymentArn : string option;
    (*

    The ARN of the group deployment.

    *)
  3. deploymentId : string option;
    (*

    The ID of the group deployment.

    *)
  4. deploymentStatus : string option;
    (*

    The current status of the group deployment: ''InProgress'', ''Building'', ''Success'', or ''Failure''.

    *)
  5. deploymentType : DeploymentType.t option;
    (*

    The type of the deployment.

    *)
  6. errorDetails : ErrorDetails.t option;
    (*

    Details about the error.

    *)
  7. errorMessage : string option;
    (*

    The error message for a failed deployment

    *)
  8. groupArn : string option;
    (*

    The ARN of the Greengrass group.

    *)
}
Sourceval make : ?createdAt:??? -> ?deploymentArn:??? -> ?deploymentId:??? -> ?deploymentStatus:??? -> ?deploymentType:??? -> ?errorDetails:??? -> ?errorMessage:??? -> ?groupArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string ]) 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