Module Values.S3LocationSource

Specifies the details for the Amazon S3 file location that is being used with Amazon Web Services B2B Data Interchange. File locations in Amazon S3 are identified using a combination of the bucket and key.

Sourcetype nonrec t = {
  1. bucketName : BucketName.t option;
    (*

    Specifies the name of the Amazon S3 bucket.

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

    Specifies the Amazon S3 key for the file location.

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