Module Values.UpdateUploadRequestSource

Updates an uploaded test spec.

Sourcetype nonrec t = {
  1. arn : AmazonResourceName.t;
    (*

    The Amazon Resource Name (ARN) of the uploaded test spec.

    *)
  2. 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.

    *)
  3. contentType : ContentType.t option;
    (*

    The upload's content type (for example, application/x-yaml).

    *)
  4. editContent : Boolean.t option;
    (*

    Set to true if the YAML file has changed and must be updated. Otherwise, set to false.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?contentType:??? -> ?editContent:??? -> arn:AmazonResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of AmazonResourceName.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