Class: Aws::RDS::Types::DeleteDBSubnetGroupMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::DeleteDBSubnetGroupMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #db_subnet_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the database subnet group to delete.
 
Instance Attribute Details
#db_subnet_group_name ⇒ String
The name of the database subnet group to delete.
<note markdown=“1”> You can’t delete the default subnet group.
</note>
Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.
Example: ‘mydbsubnetgroup`
      11976 11977 11978 11979 11980  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 11976 class DeleteDBSubnetGroupMessage < Struct.new( :db_subnet_group_name) SENSITIVE = [] include Aws::Structure end  |