Class: Aws::Lambda::Types::VpcConfigResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::VpcConfigResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
The VPC security groups and subnets that are attached to a Lambda function.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #ipv_6_allowed_for_dual_stack  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
 - 
  
    
      #security_group_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of VPC security group IDs.
 - 
  
    
      #subnet_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of VPC subnet IDs.
 - 
  
    
      #vpc_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the VPC.
 
Instance Attribute Details
#ipv_6_allowed_for_dual_stack ⇒ Boolean
Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
      6989 6990 6991 6992 6993 6994 6995 6996  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 6989 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end  | 
  
#security_group_ids ⇒ Array<String>
A list of VPC security group IDs.
      6989 6990 6991 6992 6993 6994 6995 6996  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 6989 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end  | 
  
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs.
      6989 6990 6991 6992 6993 6994 6995 6996  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 6989 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end  | 
  
#vpc_id ⇒ String
The ID of the VPC.
      6989 6990 6991 6992 6993 6994 6995 6996  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 6989 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end  |