Class: Aws::DocDB::Types::DeleteDBClusterParameterGroupMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DocDB::Types::DeleteDBClusterParameterGroupMessage
 
- Defined in:
- gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb
Overview
Represents the input to DeleteDBClusterParameterGroup.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_cluster_parameter_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the cluster parameter group. 
Instance Attribute Details
#db_cluster_parameter_group_name ⇒ String
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. 
| 2543 2544 2545 2546 2547 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 2543 class DeleteDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name) SENSITIVE = [] include Aws::Structure end |