Module Values.StopDeploymentOutputSource

Represents the output of a StopDeployment operation.

Sourcetype nonrec t = {
  1. status : StopStatus.t option;
    (*

    The status of the stop deployment operation: Pending: The stop operation is pending. Succeeded: The stop operation was successful.

    *)
  2. statusMessage : Message.t option;
    (*

    An accompanying status message.

    *)
}
Sourcetype nonrec error = [
  1. | `DeploymentAlreadyCompletedException of DeploymentAlreadyCompletedException.t
  2. | `DeploymentDoesNotExistException of DeploymentDoesNotExistException.t
  3. | `DeploymentGroupDoesNotExistException of DeploymentGroupDoesNotExistException.t
  4. | `DeploymentIdRequiredException of DeploymentIdRequiredException.t
  5. | `InvalidDeploymentIdException of InvalidDeploymentIdException.t
  6. | `UnsupportedActionForDeploymentTypeException of UnsupportedActionForDeploymentTypeException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?status:??? -> ?statusMessage:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DeploymentAlreadyCompletedException of unit | `DeploymentDoesNotExistException of unit | `DeploymentGroupDoesNotExistException of unit | `DeploymentIdRequiredException of unit | `InvalidDeploymentIdException of unit | `Unknown_operation_error of string * string option | `UnsupportedActionForDeploymentTypeException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DeploymentAlreadyCompletedException of unit | `DeploymentDoesNotExistException of unit | `DeploymentGroupDoesNotExistException of unit | `DeploymentIdRequiredException of unit | `InvalidDeploymentIdException of unit | `Unknown_operation_error of string * string option | `UnsupportedActionForDeploymentTypeException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Message.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