Class: Aws::Lambda::Types::VpcConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#ipv_6_allowed_for_dual_stackBoolean

Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.

Returns:

  • (Boolean)


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

#security_group_idsArray<String>

A list of VPC security group IDs.

Returns:

  • (Array<String>)


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

#subnet_idsArray<String>

A list of VPC subnet IDs.

Returns:

  • (Array<String>)


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