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

CreateComputerRequest

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

Contains the inputs for the "CreateComputer" operation.

interface CreateComputerRequest {
ComputerAttributes?: Attribute[] | null;
ComputerName: string;
DirectoryId: string;
OrganizationalUnitDistinguishedName?: string | null;
Password: string;
}

§Properties

§
ComputerAttributes?: Attribute[] | null
[src]

An array of "Attribute" objects that contain any LDAP attributes to apply to the computer account.

§
ComputerName: string
[src]

The name of the computer account.

§
DirectoryId: string
[src]

The identifier of the directory in which to create the computer account.

§
OrganizationalUnitDistinguishedName?: string | null
[src]

The fully-qualified distinguished name of the organizational unit to place the computer account in.

§
Password: string
[src]

A one-time password that is used to join the computer to the directory. You should generate a random, strong password to use for this parameter.