Module Values.RegionReportSource

A combination of a bucket and Region that's part of a Multi-Region Access Point.

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

    The name of the bucket.

    *)
  2. region : RegionName.t option;
    (*

    The name of the Region.

    *)
  3. bucketAccountId : AccountId.t option;
    (*

    The Amazon Web Services account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.

    *)
}
Sourceval make : ?bucket:??? -> ?region:??? -> ?bucketAccountId:??? -> 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