You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::RDS::Types::ModifyOptionGroupMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ModifyOptionGroupMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  option_group_name: "String", # required
  options_to_include: [
    {
      option_name: "String", # required
      port: 1,
      option_version: "String",
      db_security_group_memberships: ["String"],
      vpc_security_group_memberships: ["String"],
      option_settings: [
        {
          name: "String",
          value: "String",
          default_value: "String",
          description: "String",
          apply_type: "String",
          data_type: "String",
          allowed_values: "String",
          is_modifiable: false,
          is_collection: false,
        },
      ],
    },
  ],
  options_to_remove: ["String"],
  apply_immediately: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#apply_immediatelyBoolean

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

Returns:

  • (Boolean)

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

#option_group_nameString

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

Returns:

  • (String)

    The name of the option group to be modified.

#options_to_includeArray<Types::OptionConfiguration>

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

Returns:

  • (Array<Types::OptionConfiguration>)

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

#options_to_removeArray<String>

Options in this list are removed from the option group.

Returns:

  • (Array<String>)

    Options in this list are removed from the option group.