Module Values.OwnerDirectoryDescriptionSource

Contains the directory owner account details shared with the directory consumer account.

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

    Identifier of the Managed Microsoft AD directory in the directory owner account.

    *)
  2. accountId : CustomerId.t option;
    (*

    Identifier of the directory owner account.

    *)
  3. dnsIpAddrs : DnsIpAddrs.t option;
    (*

    IP address of the directory’s domain controllers.

    *)
  4. dnsIpv6Addrs : DnsIpv6Addrs.t option;
    (*

    IPv6 addresses of the directory’s domain controllers.

    *)
  5. vpcSettings : DirectoryVpcSettingsDescription.t option;
    (*

    Information about the VPC settings for the directory.

    *)
  6. radiusSettings : RadiusSettings.t option;
    (*

    Information about the RadiusSettings object server configuration.

    *)
  7. radiusStatus : RadiusStatus.t option;
    (*

    The status of the RADIUS server.

    *)
  8. networkType : NetworkType.t option;
    (*

    Network type of the directory in the directory owner account.

    *)
}
Sourceval make : ?directoryId:??? -> ?accountId:??? -> ?dnsIpAddrs:??? -> ?dnsIpv6Addrs:??? -> ?vpcSettings:??? -> ?radiusSettings:??? -> ?radiusStatus:??? -> ?networkType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of IpAddr.t ] list | `String of DirectoryId.t | `Structure of (string * [> `Boolean of UseSameUsername.t | `Enum of string | `Integer of PortNumber.t | `List of [> `String of SubnetId.t ] list | `String of VpcId.t ]) list ]) 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