Class: Aws::DocDB::Types::CreateDBSubnetGroupMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DocDB::Types::CreateDBSubnetGroupMessage
 
- Defined in:
- gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb
Overview
Represents the input to CreateDBSubnetGroup.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_subnet_group_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The description for the subnet group. 
- 
  
    
      #db_subnet_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name for the subnet group. 
- 
  
    
      #subnet_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon EC2 subnet IDs for the subnet group. 
- 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The tags to be assigned to the subnet group. 
Instance Attribute Details
#db_subnet_group_description ⇒ String
The description for the subnet group.
| 1124 1125 1126 1127 1128 1129 1130 1131 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 1124 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 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.
Example: mySubnetgroup
| 1124 1125 1126 1127 1128 1129 1130 1131 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 1124 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 Amazon EC2 subnet IDs for the subnet group.
| 1124 1125 1126 1127 1128 1129 1130 1131 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 1124 class CreateDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end | 
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the subnet group.
| 1124 1125 1126 1127 1128 1129 1130 1131 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 1124 class CreateDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |