Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateTrustRequest

import type { CreateTrustRequest } from "https://aws-api.deno.dev/v0.3/services/directoryservice.ts?docs=full";

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.

interface CreateTrustRequest {
ConditionalForwarderIpAddrs?: string[] | null;
DirectoryId: string;
RemoteDomainName: string;
SelectiveAuth?: SelectiveAuth | null;
TrustDirection: TrustDirection;
TrustPassword: string;
TrustType?: TrustType | null;
}

§Properties

§
ConditionalForwarderIpAddrs?: string[] | null
[src]

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

§
DirectoryId: string
[src]

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

§
RemoteDomainName: string
[src]

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

§
SelectiveAuth?: SelectiveAuth | null
[src]

Optional parameter to enable selective authentication for the trust.

§
TrustDirection: TrustDirection
[src]

The direction of the trust relationship.

§
TrustPassword: string
[src]

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

§
TrustType?: TrustType | null
[src]

The trust relationship type. Forest is the default.