Class: Aws::RDS::Types::DeleteDBClusterParameterGroupMessage

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

{
  db_cluster_parameter_group_name: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_parameter_group_nameString

The name of the DB cluster parameter group.

Constraints:

  • Must be the name of an existing DB cluster parameter group.

  • You can’t delete a default DB cluster parameter group.

  • Can’t be associated with any DB clusters.

Returns:

  • (String)


6145
6146
6147
6148
# File 'lib/aws-sdk-rds/types.rb', line 6145

class DeleteDBClusterParameterGroupMessage < Struct.new(
  :db_cluster_parameter_group_name)
  include Aws::Structure
end