Values.UpdateUploadRequestSourceUpdates an uploaded test spec.
type nonrec t = {arn : AmazonResourceName.t;The Amazon Resource Name (ARN) of the uploaded test spec.
*)name : Name.t option;The upload's test spec file name. The name must not contain any forward slashes (/). The test spec file name must end with the .yaml or .yml file extension.
*)contentType : ContentType.t option;The upload's content type (for example, application/x-yaml).
*)editContent : Boolean.t option;Set to true if the YAML file has changed and must be updated. Otherwise, set to false.
*)}val make :
?name:??? ->
?contentType:??? ->
?editContent:??? ->
arn:AmazonResourceName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of AmazonResourceName.t ])
list ]