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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#apply_immediatelyBoolean

Specifies whether to apply the change immediately or during the next maintenance window for each instance associated with the option group.

Returns:

  • (Boolean)


20118
20119
20120
20121
20122
20123
20124
20125
# File 'lib/aws-sdk-rds/types.rb', line 20118

class ModifyOptionGroupMessage < Struct.new(
  :option_group_name,
  :options_to_include,
  :options_to_remove,
  :apply_immediately)
  SENSITIVE = []
  include Aws::Structure
end

#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)


20118
20119
20120
20121
20122
20123
20124
20125
# File 'lib/aws-sdk-rds/types.rb', line 20118

class ModifyOptionGroupMessage < Struct.new(
  :option_group_name,
  :options_to_include,
  :options_to_remove,
  :apply_immediately)
  SENSITIVE = []
  include Aws::Structure
end

#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:



20118
20119
20120
20121
20122
20123
20124
20125
# File 'lib/aws-sdk-rds/types.rb', line 20118

class ModifyOptionGroupMessage < Struct.new(
  :option_group_name,
  :options_to_include,
  :options_to_remove,
  :apply_immediately)
  SENSITIVE = []
  include Aws::Structure
end

#options_to_removeArray<String>

Options in this list are removed from the option group.

Returns:

  • (Array<String>)


20118
20119
20120
20121
20122
20123
20124
20125
# File 'lib/aws-sdk-rds/types.rb', line 20118

class ModifyOptionGroupMessage < Struct.new(
  :option_group_name,
  :options_to_include,
  :options_to_remove,
  :apply_immediately)
  SENSITIVE = []
  include Aws::Structure
end