Module Values.MultiRegionAccessPointReportSource

A collection of statuses for a Multi-Region Access Point in the various Regions it supports.

Sourcetype nonrec t = {
  1. name : MultiRegionAccessPointName.t option;
    (*

    The name of the Multi-Region Access Point.

    *)
  2. alias : MultiRegionAccessPointAlias.t option;
    (*

    The alias for the Multi-Region Access Point. For more information about the distinction between the name and the alias of an Multi-Region Access Point, see Rules for naming Amazon S3 Multi-Region Access Points.

    *)
  3. createdAt : CreationTimestamp.t option;
    (*

    When the Multi-Region Access Point create request was received.

    *)
  4. publicAccessBlock : PublicAccessBlockConfiguration.t option;
  5. status : MultiRegionAccessPointStatus.t option;
    (*

    The current status of the Multi-Region Access Point. CREATING and DELETING are temporary states that exist while the request is propagating and being completed. If a Multi-Region Access Point has a status of PARTIALLY_CREATED, you can retry creation or send a request to delete the Multi-Region Access Point. If a Multi-Region Access Point has a status of PARTIALLY_DELETED, you can retry a delete request to finish the deletion of the Multi-Region Access Point.

    *)
  6. regions : RegionReportList.t option;
    (*

    A collection of the Regions and buckets associated with the Multi-Region Access Point.

    *)
}
Sourceval make : ?name:??? -> ?alias:??? -> ?createdAt:??? -> ?publicAccessBlock:??? -> ?status:??? -> ?regions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of BucketName.t ]) list ] list | `String of MultiRegionAccessPointName.t | `Structure of (string * [> `Boolean of Setting.t ]) list | `Timestamp of CreationTimestamp.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