Module Values.CreateConditionalForwarderRequestSource

Initiates the creation of a conditional forwarder for your Directory Service for Microsoft Active Directory. Conditional forwarders are required in order to set up a trust relationship with another domain.

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

    The directory ID of the Amazon Web Services directory for which you are creating the conditional forwarder.

    *)
  2. remoteDomainName : RemoteDomainName.t;
    (*

    The fully qualified domain name (FQDN) of the remote domain with which you will set up a trust relationship.

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

    The IP addresses of the remote DNS server associated with RemoteDomainName.

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

    The IPv6 addresses of the remote DNS server associated with RemoteDomainName.

    *)
}
Sourceval context_ : string
Sourceval make : ?dnsIpAddrs:??? -> ?dnsIpv6Addrs:??? -> directoryId:DirectoryId.t -> remoteDomainName:RemoteDomainName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IpAddr.t ] list | `String of DirectoryId.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