Class: Aws::RDS::Types::DeleteDBClusterParameterGroupMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::DeleteDBClusterParameterGroupMessage
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_cluster_parameter_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the DB cluster parameter group. 
Instance Attribute Details
#db_cluster_parameter_group_name ⇒ String
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. 
| 11298 11299 11300 11301 11302 | # File 'lib/aws-sdk-rds/types.rb', line 11298 class DeleteDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name) SENSITIVE = [] include Aws::Structure end |