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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#security_group_idsArray<String>

A list of VPC security groups IDs.

Returns:

  • (Array<String>)


6750
6751
6752
6753
6754
6755
6756
# File 'lib/aws-sdk-lambda/types.rb', line 6750

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

#subnet_idsArray<String>

A list of VPC subnet IDs.

Returns:

  • (Array<String>)


6750
6751
6752
6753
6754
6755
6756
# File 'lib/aws-sdk-lambda/types.rb', line 6750

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

#vpc_idString

The ID of the VPC.

Returns:

  • (String)


6750
6751
6752
6753
6754
6755
6756
# File 'lib/aws-sdk-lambda/types.rb', line 6750

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