Module Values.RegionsInfoSource

Provides information about the Regions that are configured for multi-Region replication.

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

    The Region where the Managed Microsoft AD directory was originally created.

    *)
  2. additionalRegions : AdditionalRegions.t option;
    (*

    Lists the Regions where the directory has been replicated, excluding the primary Region.

    *)
}
Sourceval make : ?primaryRegion:??? -> ?additionalRegions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of RegionName.t ] list | `String of RegionName.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