Module Values.DirectoryConnectSettingsSource

Contains connection settings for creating an AD Connector with the ConnectDirectory action.

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

    The identifier of the VPC in which the AD Connector is created.

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

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

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

    The IP addresses of DNS servers or domain controllers in your self-managed directory.

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

    The IPv6 addresses of DNS servers or domain controllers in your self-managed directory.

    *)
  5. customerUserName : UserName.t;
    (*

    The user name of an account in your self-managed directory that is used to connect to the directory. This account must have the following permissions: Read users and groups Create computer objects Join computers to the domain

    *)
}
Sourceval context_ : string
Sourceval make : ?customerDnsIps:??? -> ?customerDnsIpsV6:??? -> vpcId:VpcId.t -> subnetIds:SubnetIds.t -> customerUserName:UserName.t -> 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