Values.StartDeploymentRequestSourceThe request structure for the start a deployment request.
type nonrec t = {appId : AppId.t;The unique ID for an Amplify app.
*)branchName : BranchName.t;The name of the branch to use for the deployment job.
*)jobId : JobId.t option;The job ID for this deployment that is generated by the CreateDeployment request.
*)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.
*)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.
*)}val make :
?jobId:??? ->
?sourceUrl:??? ->
?sourceUrlType:??? ->
appId:AppId.t ->
branchName:BranchName.t ->
unit ->
t