Module Values.CreateDeploymentRequestSource

Creates a deployment. ''CreateDeployment'' requests are idempotent with respect to the ''X-Amzn-Client-Token'' token and the request parameters.

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

    A client token used to correlate requests and responses.

    *)
  2. deploymentId : string option;
    (*

    The ID of the deployment if you wish to redeploy a previous deployment.

    *)
  3. deploymentType : DeploymentType.t;
    (*

    The type of deployment. When used for ''CreateDeployment'', only ''NewDeployment'' and ''Redeployment'' are valid.

    *)
  4. groupId : string;
    (*

    The ID of the Greengrass group.

    *)
  5. groupVersionId : string option;
    (*

    The ID of the group version to be deployed.

    *)
}
Sourceval context_ : string
Sourceval make : ?amznClientToken:??? -> ?deploymentId:??? -> ?groupVersionId:??? -> deploymentType:DeploymentType.t -> groupId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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