Values.RegionMetadataSourceContains 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.
type nonrec t = {regionName : RegionName.t option;The Amazon Web Services Region name.
*)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).
*)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.
*)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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of IsPrimaryRegion.t
| `Enum of string
| `String of RegionName.t
| `Timestamp of Date.t ])
list ]