Class: Aws::Neptune::Types::DeleteDBParameterGroupMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Neptune::Types::DeleteDBParameterGroupMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-neptune/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
 - 
Cannot be associated with any DB instances
 
      3714 3715 3716 3717 3718  | 
    
      # File 'lib/aws-sdk-neptune/types.rb', line 3714 class DeleteDBParameterGroupMessage < Struct.new( :db_parameter_group_name) SENSITIVE = [] include Aws::Structure end  |