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

OptionGroup

import type { OptionGroup } from "https://aws-api.deno.dev/v0.3/services/rds.ts?docs=full";
interface OptionGroup {
AllowsVpcAndNonVpcInstanceMemberships?: boolean | null;
EngineName?: string | null;
MajorEngineVersion?: string | null;
OptionGroupArn?: string | null;
OptionGroupDescription?: string | null;
OptionGroupName?: string | null;
Options: Option[];
VpcId?: string | null;
}

§Properties

§
AllowsVpcAndNonVpcInstanceMemberships?: boolean | null
[src]

Indicates whether this option group can be applied to both VPC and non-VPC instances. The value true indicates the option group can be applied to both VPC and non-VPC instances.

§
EngineName?: string | null
[src]

Indicates the name of the engine that this option group can be applied to.

§
MajorEngineVersion?: string | null
[src]

Indicates the major engine version associated with this option group.

§
OptionGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) for the option group.

§
OptionGroupDescription?: string | null
[src]

Provides a description of the option group.

§
OptionGroupName?: string | null
[src]

Specifies the name of the option group.

§
Options: Option[]
[src]

Indicates what options are available in the option group.

§
VpcId?: string | null
[src]

If AllowsVpcAndNonVpcInstanceMemberships is false, this field is blank. If AllowsVpcAndNonVpcInstanceMemberships is true and this field is blank, then this option group can be applied to both VPC and non-VPC instances. If this field contains a value, then this option group can only be applied to instances that are in the VPC indicated by this field.