Module Values.S3ConfigurationSource

Configuration for an S3 location.

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

    The name of the S3 bucket.

    *)
  2. s3BucketOwner : AccountID.t option;
    (*

    The AWS account ID of the S3 bucket owner.

    *)
  3. s3Key : S3KeyName.t option;
    (*

    The S3 key (path) for the object.

    *)
}
Sourceval make : ?s3Bucket:??? -> ?s3BucketOwner:??? -> ?s3Key:??? -> 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