Module Values.RegionMetadataSource

Contains information about an enabled Region of an IAM Identity Center instance, including the Region name, status, date added, and whether it is the primary Region.

Sourcetype nonrec t = {
  1. regionName : RegionName.t option;
    (*

    The Amazon Web Services Region name.

    *)
  2. status : RegionStatus.t option;
    (*

    The current status of the Region. Valid values are ACTIVE (Region is operational), ADDING (Region extension workflow is in progress), or REMOVING (Region removal workflow is in progress).

    *)
  3. addedDate : Date.t option;
    (*

    The timestamp when the Region was added to the IAM Identity Center instance. For the primary Region, this is the instance creation time.

    *)
  4. isPrimaryRegion : IsPrimaryRegion.t option;
    (*

    Indicates whether this is the primary Region where the IAM Identity Center instance was originally enabled. The primary Region cannot be removed.

    *)
}
Sourceval make : ?regionName:??? -> ?status:??? -> ?addedDate:??? -> ?isPrimaryRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsPrimaryRegion.t | `Enum of string | `String of RegionName.t | `Timestamp of Date.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