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

DescribeDirectoriesRequest

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

Contains the inputs for the "DescribeDirectories" operation.

interface DescribeDirectoriesRequest {
DirectoryIds?: string[] | null;
Limit?: number | null;
NextToken?: string | null;
}

§Properties

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

A list of identifiers of the directories for which to obtain the information. If this member is null, all directories that belong to the current account are returned.

An empty list results in an InvalidParameterException being thrown.

§
Limit?: number | null
[src]

The maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.

§
NextToken?: string | null
[src]

The DescribeDirectoriesResult.NextToken value from a previous call to "DescribeDirectories". Pass null if this is the first call.