Values.CreateDeploymentResultSourceThe result structure for the create a new deployment request.
type nonrec t = {jobId : JobId.t option;The job ID for this deployment. will supply to start deployment api.
*)fileUploadUrls : FileUploadUrls.t option;When the fileMap argument is provided in the request, fileUploadUrls will contain a map of file names to upload URLs.
*)zipUploadUrl : UploadUrl.t option;When the fileMap argument is not provided in the request, this zipUploadUrl is returned.
*)}type nonrec error = [ | `BadRequestException of BadRequestException.t| `InternalFailureException of InternalFailureException.t| `LimitExceededException of LimitExceededException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequestException of BadRequestException.t
| `InternalFailureException of InternalFailureException.t
| `LimitExceededException of LimitExceededException.t
| `UnauthorizedException of UnauthorizedException.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequestException of BadRequestException.t
| `InternalFailureException of InternalFailureException.t
| `LimitExceededException of LimitExceededException.t
| `UnauthorizedException of UnauthorizedException.t
| `Unknown_operation_error of string * string option ]val to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of FileName.t ] * [> `String of UploadUrl.t ]) list
| `String of JobId.t ])
list ]