Class: Aws::RDS::Types::DBSubnetGroup
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::DBSubnetGroup
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
Contains the details of an Amazon RDS DB subnet group.
This data type is used as a response element in the ‘DescribeDBSubnetGroups` action.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #db_subnet_group_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) for the DB subnet group.
 - 
  
    
      #db_subnet_group_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides the description of the DB subnet group.
 - 
  
    
      #db_subnet_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the DB subnet group.
 - 
  
    
      #subnet_group_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides the status of the DB subnet group.
 - 
  
    
      #subnets  ⇒ Array<Types::Subnet> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains a list of ‘Subnet` elements.
 - 
  
    
      #supported_network_types  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The network type of the DB subnet group.
 - 
  
    
      #vpc_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides the VpcId of the DB subnet group.
 
Instance Attribute Details
#db_subnet_group_arn ⇒ String
The Amazon Resource Name (ARN) for the DB subnet group.
      11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 11339 class DBSubnetGroup < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :vpc_id, :subnet_group_status, :subnets, :db_subnet_group_arn, :supported_network_types) SENSITIVE = [] include Aws::Structure end  | 
  
#db_subnet_group_description ⇒ String
Provides the description of the DB subnet group.
      11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 11339 class DBSubnetGroup < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :vpc_id, :subnet_group_status, :subnets, :db_subnet_group_arn, :supported_network_types) SENSITIVE = [] include Aws::Structure end  | 
  
#db_subnet_group_name ⇒ String
The name of the DB subnet group.
      11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 11339 class DBSubnetGroup < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :vpc_id, :subnet_group_status, :subnets, :db_subnet_group_arn, :supported_network_types) SENSITIVE = [] include Aws::Structure end  | 
  
#subnet_group_status ⇒ String
Provides the status of the DB subnet group.
      11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 11339 class DBSubnetGroup < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :vpc_id, :subnet_group_status, :subnets, :db_subnet_group_arn, :supported_network_types) SENSITIVE = [] include Aws::Structure end  | 
  
#subnets ⇒ Array<Types::Subnet>
Contains a list of ‘Subnet` elements.
      11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 11339 class DBSubnetGroup < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :vpc_id, :subnet_group_status, :subnets, :db_subnet_group_arn, :supported_network_types) SENSITIVE = [] include Aws::Structure end  | 
  
#supported_network_types ⇒ Array<String>
The network type of the DB subnet group.
Valid values:
- 
‘IPV4`
 - 
‘DUAL`
 
A ‘DBSubnetGroup` can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (`DUAL`).
For more information, see [ Working with a DB instance in a VPC] in the *Amazon RDS User Guide.*
[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
      11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 11339 class DBSubnetGroup < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :vpc_id, :subnet_group_status, :subnets, :db_subnet_group_arn, :supported_network_types) SENSITIVE = [] include Aws::Structure end  | 
  
#vpc_id ⇒ String
Provides the VpcId of the DB subnet group.
      11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 11339 class DBSubnetGroup < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :vpc_id, :subnet_group_status, :subnets, :db_subnet_group_arn, :supported_network_types) SENSITIVE = [] include Aws::Structure end  |