Module Values.RegionDescriptionSource

The replicated Region information for a directory.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t option;
    (*

    The identifier of the directory.

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

    The name of the Region. For example, us-east-1.

    *)
  3. regionType : RegionType.t option;
    (*

    Specifies whether the Region is the primary Region or an additional Region.

    *)
  4. status : DirectoryStage.t option;
    (*

    The status of the replication process for the specified Region.

    *)
  5. vpcSettings : DirectoryVpcSettings.t option;
  6. desiredNumberOfDomainControllers : DesiredNumberOfDomainControllers.t option;
    (*

    The desired number of domain controllers in the specified Region for the specified directory.

    *)
  7. launchTime : LaunchTime.t option;
    (*

    Specifies when the Region replication began.

    *)
  8. statusLastUpdatedDateTime : StateLastUpdatedDateTime.t option;
    (*

    The date and time that the Region status was last updated.

    *)
  9. lastUpdatedDateTime : LastUpdatedDateTime.t option;
    (*

    The date and time that the Region description was last updated.

    *)
}
Sourceval make : ?directoryId:??? -> ?regionName:??? -> ?regionType:??? -> ?status:??? -> ?vpcSettings:??? -> ?desiredNumberOfDomainControllers:??? -> ?launchTime:??? -> ?statusLastUpdatedDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of DesiredNumberOfDomainControllers.t | `String of DirectoryId.t | `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of VpcId.t ]) list | `Timestamp of LaunchTime.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