Module Values.S3BucketSourceSource

The S3 bucket that is being imported from.

Sourcetype nonrec t = {
  1. s3BucketOwner : S3BucketOwner.t option;
    (*

    The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.

    *)
  2. s3Bucket : S3Bucket.t;
    (*

    The S3 bucket that is being imported from.

    *)
  3. s3KeyPrefix : S3Prefix.t option;
    (*

    The key prefix shared by all S3 Objects that are being imported.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3BucketOwner:??? -> ?s3KeyPrefix:??? -> s3Bucket:S3Bucket.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3BucketOwner.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