Class: Aws::RDS::Types::CreateDBSubnetGroupMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::CreateDBSubnetGroupMessage
 
- 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. 
- 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Tags to assign to the DB subnet group. 
Instance Attribute Details
#db_subnet_group_description ⇒ String
The description for the DB subnet group.
| 5993 5994 5995 5996 5997 5998 5999 6000 | # File 'lib/aws-sdk-rds/types.rb', line 5993 class CreateDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids, :tags) 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.
Constraints:
- 
Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. 
- 
Must not be default. 
- 
First character must be a letter. 
Example: ‘mydbsubnetgroup`
| 5993 5994 5995 5996 5997 5998 5999 6000 | # File 'lib/aws-sdk-rds/types.rb', line 5993 class CreateDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end | 
#subnet_ids ⇒ Array<String>
The EC2 Subnet IDs for the DB subnet group.
| 5993 5994 5995 5996 5997 5998 5999 6000 | # File 'lib/aws-sdk-rds/types.rb', line 5993 class CreateDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end | 
#tags ⇒ Array<Types::Tag>
Tags to assign to the DB subnet group.
| 5993 5994 5995 5996 5997 5998 5999 6000 | # File 'lib/aws-sdk-rds/types.rb', line 5993 class CreateDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |