Class: Aws::DocDB::Types::DeleteDBClusterParameterGroupMessage

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

Overview

Note:

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

{
  db_cluster_parameter_group_name: "String", # required
}

Represents the input to DeleteDBClusterParameterGroup.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_parameter_group_nameString

The name of the cluster parameter group.

Constraints:

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

  • You can't delete a default cluster parameter group.

  • Cannot be associated with any clusters.

Returns:

  • (String)


2473
2474
2475
2476
2477
# File 'lib/aws-sdk-docdb/types.rb', line 2473

class DeleteDBClusterParameterGroupMessage < Struct.new(
  :db_cluster_parameter_group_name)
  SENSITIVE = []
  include Aws::Structure
end