Module Values.S3PathSource

Information required to find a specific file in an Amazon S3 bucket.

Sourcetype nonrec t = {
  1. bucket : S3BucketName.t;
    (*

    The name of the S3 bucket that contains the file.

    *)
  2. key : S3ObjectKey.t;
    (*

    The name of the file.

    *)
}
Sourceval context_ : string
Sourceval make : bucket:S3BucketName.t -> key:S3ObjectKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3BucketName.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