Module Values.StartDeploymentRequestSource

The request structure for the start a 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 deployment job.

    *)
  3. jobId : JobId.t option;
    (*

    The job ID for this deployment that is generated by the CreateDeployment request.

    *)
  4. sourceUrl : SourceUrl.t option;
    (*

    The source URL for the deployment that is used when calling StartDeployment without CreateDeployment. The source URL can be either an HTTP GET URL that is publicly accessible and downloads a single .zip file, or an Amazon S3 bucket and prefix.

    *)
  5. sourceUrlType : SourceUrlType.t option;
    (*

    The type of source specified by the sourceURL. If the value is ZIP, the source is a .zip file. If the value is BUCKET_PREFIX, the source is an Amazon S3 bucket and prefix. If no value is specified, the default is ZIP.

    *)
}
Sourceval context_ : string
Sourceval make : ?jobId:??? -> ?sourceUrl:??? -> ?sourceUrlType:??? -> appId:AppId.t -> branchName:BranchName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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