Class: Aws::Lambda::Types::VpcConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::VpcConfig
- Includes:
- Structure
- Defined in:
- 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].
[1]: docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html
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.
7215 7216 7217 7218 7219 7220 7221 |
# File 'lib/aws-sdk-lambda/types.rb', line 7215 class VpcConfig < Struct.new( :subnet_ids, :security_group_ids, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |