Class: Aws::RDS::Types::ModifyDBSubnetGroupMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::ModifyDBSubnetGroupMessage
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_subnet_group_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The description for the DB subnet group. 
- 
  
    
      #db_subnet_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name for the DB subnet group. 
- 
  
    
      #subnet_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The EC2 subnet IDs for the DB subnet group. 
Instance Attribute Details
#db_subnet_group_description ⇒ String
The description for the DB subnet group.
| 19588 19589 19590 19591 19592 19593 19594 | # File 'lib/aws-sdk-rds/types.rb', line 19588 class ModifyDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end | 
#db_subnet_group_name ⇒ String
The name for the DB subnet group. This value is stored as a lowercase string. You can’t modify the default subnet group.
Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.
Example: ‘mydbsubnetgroup`
| 19588 19589 19590 19591 19592 19593 19594 | # File 'lib/aws-sdk-rds/types.rb', line 19588 class ModifyDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end | 
#subnet_ids ⇒ Array<String>
The EC2 subnet IDs for the DB subnet group.
| 19588 19589 19590 19591 19592 19593 19594 | # File 'lib/aws-sdk-rds/types.rb', line 19588 class ModifyDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |