VpcConfig — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::VpcConfig
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::VpcConfig show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Constant Summarycollapse
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
A list of VPC security group IDs. - #subnet_ids ⇒ Array
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.
7217 7218 7219 7220 7221 7222 7223 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7217 class VpcConfig < Struct.new( :subnet_ids, :security_group_ids, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |
---|
#security_group_ids ⇒ Array
A list of VPC security group IDs.
7217 7218 7219 7220 7221 7222 7223 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7217 class VpcConfig < Struct.new( :subnet_ids, :security_group_ids, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |
---|
#subnet_ids ⇒ Array
A list of VPC subnet IDs.
7217 7218 7219 7220 7221 7222 7223 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7217 class VpcConfig < Struct.new( :subnet_ids, :security_group_ids, :ipv_6_allowed_for_dual_stack) SENSITIVE = [] include Aws::Structure end |
---|