Class: Aws::Lambda::Types::VpcConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::VpcConfig
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
The VPC security groups and subnets that are attached to a Lambda function. For more information, see Configuring a Lambda function to access resources in a VPC.
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.
Instance Attribute Details
#ipv_6_allowed_for_dual_stack ⇒ Boolean
Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
6987 6988 6989 6990 6991 6992 6993 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6987 class VpcConfig < Struct.new( :subnet_ids, :security_group_ids, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |
#security_group_ids ⇒ Array<String>
A list of VPC security group IDs.
6987 6988 6989 6990 6991 6992 6993 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6987 class VpcConfig < Struct.new( :subnet_ids, :security_group_ids, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |