Module Values.S3LocationSource

Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.

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

    The Amazon S3 bucket name.

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

    The unique name of the object in the bucket.

    *)
  3. bucketOwner : BucketOwner.t option;
    (*

    The Amazon Web Services account ID of the bucket owner.

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