Module Values.DomainControllerSource

Contains information about the domain controllers for a specified directory.

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

    Identifier of the directory where the domain controller resides.

    *)
  2. domainControllerId : DomainControllerId.t option;
    (*

    Identifies a specific domain controller in the directory.

    *)
  3. dnsIpAddr : IpAddr.t option;
    (*

    The IP address of the domain controller.

    *)
  4. dnsIpv6Addr : Ipv6Addr.t option;
    (*

    The IPv6 address of the domain controller.

    *)
  5. vpcId : VpcId.t option;
    (*

    The identifier of the VPC that contains the domain controller.

    *)
  6. subnetId : SubnetId.t option;
    (*

    Identifier of the subnet in the VPC that contains the domain controller.

    *)
  7. availabilityZone : AvailabilityZone.t option;
    (*

    The Availability Zone where the domain controller is located.

    *)
  8. status : DomainControllerStatus.t option;
    (*

    The status of the domain controller.

    *)
  9. statusReason : DomainControllerStatusReason.t option;
    (*

    A description of the domain controller state.

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

    Specifies when the domain controller was created.

    *)
  11. statusLastUpdatedDateTime : LastUpdatedDateTime.t option;
    (*

    The date and time that the status was last updated.

    *)
}
Sourceval make : ?directoryId:??? -> ?domainControllerId:??? -> ?dnsIpAddr:??? -> ?dnsIpv6Addr:??? -> ?vpcId:??? -> ?subnetId:??? -> ?availabilityZone:??? -> ?status:??? -> ?statusReason:??? -> ?launchTime:??? -> ?statusLastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DirectoryId.t | `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