Module Values.SourceS3LocationSource

Represents the Amazon Simple Storage Service (Amazon S3) location where usage data is read from.

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

    Name of the bucket.

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

    Key of the object.

    *)
  3. region : S3BucketRegion.t option;
    (*

    Region of the bucket. Only required for Regions that are disabled by default. For more infomration about Regions that are disabled by default, see Enabling a Region in the AWS General Reference guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?region:??? -> bucket:S3Bucket.t -> key:S3Key.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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