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

SettingEntry

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

Contains information about the specified configurable setting for a directory.

interface SettingEntry {
AllowedValues?: string | null;
AppliedValue?: string | null;
LastRequestedDateTime?: Date | number | null;
LastUpdatedDateTime?: Date | number | null;
Name?: string | null;
RequestDetailedStatus?: {
[key: string]: DirectoryConfigurationStatus | null | undefined;
}
| null;
RequestedValue?: string | null;
RequestStatus?: DirectoryConfigurationStatus | null;
RequestStatusMessage?: string | null;
Type?: string | null;
}

§Properties

§
AllowedValues?: string | null
[src]

The valid range of values for the directory setting.

§
AppliedValue?: string | null
[src]

The value of the directory setting that is applied to the directory.

§
LastRequestedDateTime?: Date | number | null
[src]

The date and time when the request to update a directory setting was last submitted.

§
LastUpdatedDateTime?: Date | number | null
[src]

The date and time when the directory setting was last updated.

§
Name?: string | null
[src]

The name of the directory setting. For example:

TLS_1_0
§
RequestDetailedStatus?: {
[key: string]: DirectoryConfigurationStatus | null | undefined;
}
| null
[src]

Details about the status of the request to update the directory setting. If the directory setting is deployed in more than one region, status is returned for the request in each region where the setting is deployed.

§
RequestedValue?: string | null
[src]

The value that was last requested for the directory setting.

§
RequestStatus?: DirectoryConfigurationStatus | null
[src]

The overall status of the request to update the directory setting request. If the directory setting is deployed in more than one region, and the request fails in any region, the overall status is Failed.

§
RequestStatusMessage?: string | null
[src]

The last status message for the directory status request.

§
Type?: string | null
[src]

The type of directory setting. For example, Protocol or Cipher.