Class: Aws::RDS::Types::DeleteOptionGroupMessage

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

Overview

Note:

When making an API call, you may pass DeleteOptionGroupMessage data as a hash:

{
  option_group_name: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#option_group_nameString

The name of the option group to be deleted.

<note markdown=“1”> You can’t delete default option groups.

</note>

Returns:

  • (String)


6524
6525
6526
6527
# File 'lib/aws-sdk-rds/types.rb', line 6524

class DeleteOptionGroupMessage < Struct.new(
  :option_group_name)
  include Aws::Structure
end