Module Values.S3IdentifierSource

The identifier information for an Amazon S3 bucket.

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

    The name of the S3 bucket.

    *)
  2. s3ObjectKey : S3ObjectKey.t option;
    (*

    The S3 object key for the S3 resource.

    *)
}
Sourceval make : ?s3BucketName:??? -> ?s3ObjectKey:??? -> 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