Class: Aws::RDS::Types::DeleteDBParameterGroupMessage

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 DeleteDBParameterGroupMessage data as a hash:

{
  db_parameter_group_name: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_parameter_group_nameString

The name of the DB parameter group.

Constraints:

  • Must be the name of an existing DB parameter group

  • You can’t delete a default DB parameter group

  • Can’t be associated with any DB instances

Returns:

  • (String)


6346
6347
6348
6349
# File 'lib/aws-sdk-rds/types.rb', line 6346

class DeleteDBParameterGroupMessage < Struct.new(
  :db_parameter_group_name)
  include Aws::Structure
end