Module Values.CreateDeploymentRequestSource

The request structure for the create a new deployment request.

Sourcetype nonrec t = {
  1. appId : AppId.t;
    (*

    The unique ID for an Amplify app.

    *)
  2. branchName : BranchName.t;
    (*

    The name of the branch to use for the job.

    *)
  3. fileMap : FileMap.t option;
    (*

    An optional file map that contains the file name as the key and the file content md5 hash as the value. If this argument is provided, the service will generate a unique upload URL per file. Otherwise, the service will only generate a single upload URL for the zipped files.

    *)
}
Sourceval context_ : string
Sourceval make : ?fileMap:??? -> appId:AppId.t -> branchName:BranchName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of FileName.t ] * [> `String of MD5Hash.t ]) list | `String of AppId.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