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

OptionGroupOptionSetting

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

Option group option settings are used to display settings available for each option with their default values and other information. These values are used with the DescribeOptionGroupOptions action.

interface OptionGroupOptionSetting {
AllowedValues?: string | null;
ApplyType?: string | null;
DefaultValue?: string | null;
IsModifiable?: boolean | null;
IsRequired?: boolean | null;
MinimumEngineVersionPerAllowedValue: MinimumEngineVersionPerAllowedValue[];
SettingDescription?: string | null;
SettingName?: string | null;
}

§Properties

§
AllowedValues?: string | null
[src]

Indicates the acceptable values for the option group option.

§
ApplyType?: string | null
[src]

The DB engine specific parameter type for the option group option.

§
DefaultValue?: string | null
[src]

The default value for the option group option.

§
IsModifiable?: boolean | null
[src]

Boolean value where true indicates that this option group option can be changed from the default value.

§
IsRequired?: boolean | null
[src]

Boolean value where true indicates that a value must be specified for this option setting of the option group option.

§
MinimumEngineVersionPerAllowedValue: MinimumEngineVersionPerAllowedValue[]
[src]

The minimum DB engine version required for the corresponding allowed value for this option setting.

§
SettingDescription?: string | null
[src]

The description of the option group option.

§
SettingName?: string | null
[src]

The name of the option group option.