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

CreateMicrosoftADRequest

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

Creates an Managed Microsoft AD directory.

interface CreateMicrosoftADRequest {
Description?: string | null;
Edition?: DirectoryEdition | null;
Name: string;
Password: string;
ShortName?: string | null;
Tags?: Tag[] | null;
VpcSettings: DirectoryVpcSettings;
}

§Properties

§
Description?: string | null
[src]

A description for the directory. This label will appear on the Amazon Web Services console Directory Details page after the directory is created.

§
Edition?: DirectoryEdition | null
[src]

Managed Microsoft AD is available in two editions: Standard and Enterprise. Enterprise is the default.

§
Name: string
[src]

The fully qualified domain name for the Managed Microsoft AD directory, such as corp.example.com. This name will resolve inside your VPC only. It does not need to be publicly resolvable.

§
Password: string
[src]

The password for the default administrative user named Admin.

If you need to change the password for the administrator account, you can use the "ResetUserPassword" API call.

§
ShortName?: string | null
[src]

The NetBIOS name for your domain, such as CORP. If you don't specify a NetBIOS name, it will default to the first part of your directory DNS. For example, CORP for the directory DNS corp.example.com.

§
Tags?: Tag[] | null
[src]

The tags to be assigned to the Managed Microsoft AD directory.

§

Contains VPC information for the "CreateDirectory" or "CreateMicrosoftAD" operation.