Values.CreateTrustRequestSourceDirectory 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.
type nonrec t = {directoryId : DirectoryId.t;The Directory ID of the Managed Microsoft AD directory for which to establish the trust relationship.
*)remoteDomainName : RemoteDomainName.t;The Fully Qualified Domain Name (FQDN) of the external domain for which to create the trust relationship.
*)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.
*)trustDirection : TrustDirection.t;The direction of the trust relationship.
*)trustType : TrustType.t option;The trust relationship type. Forest is the default.
*)conditionalForwarderIpAddrs : DnsIpAddrs.t option;The IP addresses of the remote DNS server associated with RemoteDomainName.
*)conditionalForwarderIpv6Addrs : DnsIpv6Addrs.t option;The IPv6 addresses of the remote DNS server associated with RemoteDomainName.
*)selectiveAuth : SelectiveAuth.t option;Optional parameter to enable selective authentication for the trust.
*)}val make :
?trustType:??? ->
?conditionalForwarderIpAddrs:??? ->
?conditionalForwarderIpv6Addrs:??? ->
?selectiveAuth:??? ->
directoryId:DirectoryId.t ->
remoteDomainName:RemoteDomainName.t ->
trustPassword:TrustPassword.t ->
trustDirection:TrustDirection.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of IpAddr.t ] list
| `String of DirectoryId.t ])
list ]