Class: Aws::RDS::Types::DeleteDBParameterGroupMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::DeleteDBParameterGroupMessage
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_parameter_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the DB parameter group. 
Instance Attribute Details
#db_parameter_group_name ⇒ String
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 
| 11518 11519 11520 11521 11522 | # File 'lib/aws-sdk-rds/types.rb', line 11518 class DeleteDBParameterGroupMessage < Struct.new( :db_parameter_group_name) SENSITIVE = [] include Aws::Structure end |