Module Values.CreateTrustRequestSource

Directory Service for Microsoft Active Directory allows you to configure trust relationships. For example, you can establish a trust between your Managed Microsoft AD directory, and your existing self-managed Microsoft Active Directory. This would allow you to provide users and groups access to resources in either domain, with a single set of credentials. This action initiates the creation of the Amazon Web Services side of a trust relationship between an Managed Microsoft AD directory and an external domain.

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

    The Directory ID of the Managed Microsoft AD directory for which to establish the trust relationship.

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

    The Fully Qualified Domain Name (FQDN) of the external domain for which to create the trust relationship.

    *)
  3. trustPassword : TrustPassword.t;
    (*

    The trust password. The trust password must be the same password that was used when creating the trust relationship on the external domain.

    *)
  4. trustDirection : TrustDirection.t;
    (*

    The direction of the trust relationship.

    *)
  5. trustType : TrustType.t option;
    (*

    The trust relationship type. Forest is the default.

    *)
  6. conditionalForwarderIpAddrs : DnsIpAddrs.t option;
    (*

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

    *)
  7. conditionalForwarderIpv6Addrs : DnsIpv6Addrs.t option;
    (*

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

    *)
  8. selectiveAuth : SelectiveAuth.t option;
    (*

    Optional parameter to enable selective authentication for the trust.

    *)
}
Sourceval context_ : string
Sourceval make : ?trustType:??? -> ?conditionalForwarderIpAddrs:??? -> ?conditionalForwarderIpv6Addrs:??? -> ?selectiveAuth:??? -> directoryId:DirectoryId.t -> remoteDomainName:RemoteDomainName.t -> trustPassword:TrustPassword.t -> trustDirection:TrustDirection.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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