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

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

Instance Attribute Details

#security_group_idsArray<String>

A list of VPC security group IDs.

Returns:

  • (Array<String>)


6245
6246
6247
6248
6249
6250
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6245

class VpcConfig < Struct.new(
  :subnet_ids,
  :security_group_ids)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idsArray<String>

A list of VPC subnet IDs.

Returns:

  • (Array<String>)


6245
6246
6247
6248
6249
6250
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6245

class VpcConfig < Struct.new(
  :subnet_ids,
  :security_group_ids)
  SENSITIVE = []
  include Aws::Structure
end