Class: Aws::Lambda::Types::VpcConfigResponse

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.

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

A list of VPC security groups IDs.

Returns:

  • (Array<String>)


2993
2994
2995
2996
2997
2998
# File 'lib/aws-sdk-lambda/types.rb', line 2993

class VpcConfigResponse < Struct.new(
  :subnet_ids,
  :security_group_ids,
  :vpc_id)
  include Aws::Structure
end

#subnet_idsArray<String>

A list of VPC subnet IDs.

Returns:

  • (Array<String>)


2993
2994
2995
2996
2997
2998
# File 'lib/aws-sdk-lambda/types.rb', line 2993

class VpcConfigResponse < Struct.new(
  :subnet_ids,
  :security_group_ids,
  :vpc_id)
  include Aws::Structure
end

#vpc_idString

The ID of the VPC.

Returns:

  • (String)


2993
2994
2995
2996
2997
2998
# File 'lib/aws-sdk-lambda/types.rb', line 2993

class VpcConfigResponse < Struct.new(
  :subnet_ids,
  :security_group_ids,
  :vpc_id)
  include Aws::Structure
end