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

ModifyOptionGroupMessage

import type { ModifyOptionGroupMessage } from "https://aws-api.deno.dev/v0.4/services/rds.ts?docs=full";
interface ModifyOptionGroupMessage {
ApplyImmediately?: boolean | null;
OptionGroupName: string;
OptionsToInclude?: OptionConfiguration[] | null;
OptionsToRemove?: string[] | null;
}

§Properties

§
ApplyImmediately?: boolean | null
[src]

A value that indicates whether to apply the change immediately or during the next maintenance window for each instance associated with the option group.

§
OptionGroupName: string
[src]

The name of the option group to be modified.

Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group, and that option group can't be removed from a DB instance once it is associated with a DB instance

§
OptionsToInclude?: OptionConfiguration[] | null
[src]

Options in this list are added to the option group or, if already present, the specified configuration is used to update the existing configuration.

§
OptionsToRemove?: string[] | null
[src]

Options in this list are removed from the option group.