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

DirectoryLimits

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

Contains directory limit information for a Region.

interface DirectoryLimits {
CloudOnlyDirectoriesCurrentCount?: number | null;
CloudOnlyDirectoriesLimit?: number | null;
CloudOnlyDirectoriesLimitReached?: boolean | null;
CloudOnlyMicrosoftADCurrentCount?: number | null;
CloudOnlyMicrosoftADLimit?: number | null;
CloudOnlyMicrosoftADLimitReached?: boolean | null;
ConnectedDirectoriesCurrentCount?: number | null;
ConnectedDirectoriesLimit?: number | null;
ConnectedDirectoriesLimitReached?: boolean | null;
}

§Properties

§
CloudOnlyDirectoriesCurrentCount?: number | null
[src]

The current number of cloud directories in the Region.

§
CloudOnlyDirectoriesLimit?: number | null
[src]

The maximum number of cloud directories allowed in the Region.

§
CloudOnlyDirectoriesLimitReached?: boolean | null
[src]

Indicates if the cloud directory limit has been reached.

§
CloudOnlyMicrosoftADCurrentCount?: number | null
[src]

The current number of Managed Microsoft AD directories in the region.

§
CloudOnlyMicrosoftADLimit?: number | null
[src]

The maximum number of Managed Microsoft AD directories allowed in the region.

§
CloudOnlyMicrosoftADLimitReached?: boolean | null
[src]

Indicates if the Managed Microsoft AD directory limit has been reached.

§
ConnectedDirectoriesCurrentCount?: number | null
[src]

The current number of connected directories in the Region.

§
ConnectedDirectoriesLimit?: number | null
[src]

The maximum number of connected directories allowed in the Region.

§
ConnectedDirectoriesLimitReached?: boolean | null
[src]

Indicates if the connected directory limit has been reached.