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

OptionSetting

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

Option settings are the actual settings being applied or configured for that option. It is used when you modify an option group or describe option groups. For example, the NATIVE_NETWORK_ENCRYPTION option has a setting called SQLNET.ENCRYPTION_SERVER that can have several different values.

interface OptionSetting {
AllowedValues?: string | null;
ApplyType?: string | null;
DataType?: string | null;
DefaultValue?: string | null;
Description?: string | null;
IsCollection?: boolean | null;
IsModifiable?: boolean | null;
Name?: string | null;
Value?: string | null;
}

§Properties

§
AllowedValues?: string | null
[src]

The allowed values of the option setting.

§
ApplyType?: string | null
[src]

The DB engine specific parameter type.

§
DataType?: string | null
[src]

The data type of the option setting.

§
DefaultValue?: string | null
[src]

The default value of the option setting.

§
Description?: string | null
[src]

The description of the option setting.

§
IsCollection?: boolean | null
[src]

Indicates if the option setting is part of a collection.

§
IsModifiable?: boolean | null
[src]

A Boolean value that, when true, indicates the option setting can be modified from the default.

§
Name?: string | null
[src]

The name of the option that has settings that you can set.

§
Value?: string | null
[src]

The current value of the option setting.