Module Values.DirectoryConnectSettingsDescriptionSource

Contains information about an AD Connector directory.

Sourcetype nonrec t = {
  1. vpcId : VpcId.t option;
    (*

    The identifier of the VPC that the AD Connector is in.

    *)
  2. subnetIds : SubnetIds.t option;
    (*

    A list of subnet identifiers in the VPC that the AD Connector is in.

    *)
  3. customerUserName : UserName.t option;
    (*

    The user name of the service account in your self-managed directory.

    *)
  4. securityGroupId : SecurityGroupId.t option;
    (*

    The security group identifier for the AD Connector directory.

    *)
  5. availabilityZones : AvailabilityZones.t option;
    (*

    The Availability Zones that the directory is in.

    *)
  6. connectIps : IpAddrs.t option;
    (*

    The IP addresses of the AD Connector servers.

    *)
  7. connectIpsV6 : IpV6Addrs.t option;
    (*

    The IPv6 addresses of the AD Connector servers.

    *)
}
Sourceval make : ?vpcId:??? -> ?subnetIds:??? -> ?customerUserName:??? -> ?securityGroupId:??? -> ?availabilityZones:??? -> ?connectIps:??? -> ?connectIpsV6:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of VpcId.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