Module Values.S3ObjectSource

Contains the S3 bucket name and the Amazon S3 key name.

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

    The S3 bucket name.

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

    The Amazon S3 key name.

    *)
}
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