Module Values_2.UploadUrlMetadataSource

Fields required when uploading an attached file.

Sourcetype nonrec t = {
  1. url : Values_1.MetadataUrl.t option;
    (*

    A pre-signed S3 URL that should be used for uploading the attached file.

    *)
  2. urlExpiry : Values_0.ISO8601Datetime.t option;
    (*

    The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

    *)
  3. headersToInclude : UrlMetadataSignedHeaders.t option;
    (*

    A map of headers that should be provided when uploading the attached file.

    *)
}
Sourceval make : ?url:??? -> ?urlExpiry:??? -> ?headersToInclude:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of UrlMetadataSignedHeadersKey.t ] * [> `String of UrlMetadataSignedHeadersValue.t ]) list | `String of Values_1.MetadataUrl.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