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.
7102 7103 7104 7105 7106 7107 7108 7109 |
# File 'lib/aws-sdk-lambda/types.rb', line 7102 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.
7102 7103 7104 7105 7106 7107 7108 7109 |
# File 'lib/aws-sdk-lambda/types.rb', line 7102 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.
7102 7103 7104 7105 7106 7107 7108 7109 |
# File 'lib/aws-sdk-lambda/types.rb', line 7102 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.
7102 7103 7104 7105 7106 7107 7108 7109 |
# File 'lib/aws-sdk-lambda/types.rb', line 7102 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |