Class: Aws::EC2::Types::TargetNetwork
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::TargetNetwork
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes a target network associated with a Client VPN endpoint.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #association_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the association.
 - 
  
    
      #client_vpn_endpoint_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the Client VPN endpoint with which the target network is associated.
 - 
  
    
      #security_groups  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IDs of the security groups applied to the target network association.
 - 
  
    
      #status  ⇒ Types::AssociationStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current state of the target network association.
 - 
  
    
      #target_network_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the subnet specified as the target network.
 - 
  
    
      #vpc_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the VPC in which the target network (subnet) is located.
 
Instance Attribute Details
#association_id ⇒ String
The ID of the association.
      69244 69245 69246 69247 69248 69249 69250 69251 69252 69253  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 69244 class TargetNetwork < Struct.new( :association_id, :vpc_id, :target_network_id, :client_vpn_endpoint_id, :status, :security_groups) SENSITIVE = [] include Aws::Structure end  | 
  
#client_vpn_endpoint_id ⇒ String
The ID of the Client VPN endpoint with which the target network is associated.
      69244 69245 69246 69247 69248 69249 69250 69251 69252 69253  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 69244 class TargetNetwork < Struct.new( :association_id, :vpc_id, :target_network_id, :client_vpn_endpoint_id, :status, :security_groups) SENSITIVE = [] include Aws::Structure end  | 
  
#security_groups ⇒ Array<String>
The IDs of the security groups applied to the target network association.
      69244 69245 69246 69247 69248 69249 69250 69251 69252 69253  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 69244 class TargetNetwork < Struct.new( :association_id, :vpc_id, :target_network_id, :client_vpn_endpoint_id, :status, :security_groups) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ Types::AssociationStatus
The current state of the target network association.
      69244 69245 69246 69247 69248 69249 69250 69251 69252 69253  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 69244 class TargetNetwork < Struct.new( :association_id, :vpc_id, :target_network_id, :client_vpn_endpoint_id, :status, :security_groups) SENSITIVE = [] include Aws::Structure end  | 
  
#target_network_id ⇒ String
The ID of the subnet specified as the target network.
      69244 69245 69246 69247 69248 69249 69250 69251 69252 69253  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 69244 class TargetNetwork < Struct.new( :association_id, :vpc_id, :target_network_id, :client_vpn_endpoint_id, :status, :security_groups) SENSITIVE = [] include Aws::Structure end  | 
  
#vpc_id ⇒ String
The ID of the VPC in which the target network (subnet) is located.
      69244 69245 69246 69247 69248 69249 69250 69251 69252 69253  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 69244 class TargetNetwork < Struct.new( :association_id, :vpc_id, :target_network_id, :client_vpn_endpoint_id, :status, :security_groups) SENSITIVE = [] include Aws::Structure end  |