Module Values.S3ObjectSource

Contains information about the Amazon S3 object.

Sourcetype nonrec t = {
  1. eTag : String_.t option;
    (*

    The entity tag is a hash of the Amazon S3 object. The ETag reflects changes only to the contents of an object, and not its metadata.

    *)
  2. key : String_.t option;
    (*

    The key of the Amazon S3 object.

    *)
  3. versionId : String_.t option;
    (*

    The version Id of the Amazon S3 object.

    *)
}
Sourceval make : ?eTag:??? -> ?key:??? -> ?versionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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