Module Values.S3LocationSource

The bucket and key of an item stored in Amazon S3.

Sourcetype nonrec t = {
  1. s3Bucket : S3Bucket.t option;
    (*

    The Amazon S3 bucket where the data is located.

    *)
  2. s3Key : S3Key.t option;
    (*

    The Amazon S3 key where the data is located.

    *)
}
Sourceval make : ?s3Bucket:??? -> ?s3Key:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Bucket.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