Module Values.StopDeploymentInputSource

Represents the input of a StopDeployment operation.

Sourcetype nonrec t = {
  1. deploymentId : DeploymentId.t;
    (*

    The unique ID of a deployment.

    *)
  2. autoRollbackEnabled : NullableBoolean.t option;
    (*

    Indicates, when a deployment is stopped, whether instances that have been updated should be rolled back to the previous version of the application revision.

    *)
}
Sourceval context_ : string
Sourceval make : ?autoRollbackEnabled:??? -> deploymentId:DeploymentId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `String of DeploymentId.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