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

CreateDirectoryRequest

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

Contains the inputs for the "CreateDirectory" operation.

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

§Properties

§
Description?: string | null
[src]

A description for the directory.

§
Name: string
[src]

The fully qualified name for the directory, such as corp.example.com.

§
Password: string
[src]

The password for the directory administrator. The directory creation process creates a directory administrator account with the user name Administrator and this password.

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

The regex pattern for this string is made up of the following conditions:

  • Length (?=^.{8,64}$) – Must be between 8 and 64 characters

AND any 3 of the following password complexity rules required by Active Directory:

  • Numbers and upper case and lowercase (?=.\d)(?=.[A-Z])(?=.*[a-z])
  • Numbers and special characters and lower case (?=.\d)(?=.[^A-Za-z0-9\s])(?=.*[a-z])
  • Special characters and upper case and lower case (?=.[^A-Za-z0-9\s])(?=.[A-Z])(?=.*[a-z])
  • Numbers and upper case and special characters (?=.\d)(?=.[A-Z])(?=.*[^A-Za-z0-9\s])

For additional information about how Active Directory passwords are enforced, see Password must meet complexity requirements on the Microsoft website.

§
ShortName?: string | null
[src]

The NetBIOS name of the directory, such as CORP.

§

The size of the directory.

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

The tags to be assigned to the Simple AD directory.

§
VpcSettings?: DirectoryVpcSettings | null
[src]

A "DirectoryVpcSettings" object that contains additional information for the operation.