Class: Aws::Lambda::Types::VpcConfigResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::VpcConfigResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
VPC configuration associated with your Lambda function.
Instance Attribute Summary collapse
-
#security_group_ids ⇒ Array<String>
A list of security group IDs associated with the Lambda function.
-
#subnet_ids ⇒ Array<String>
A list of subnet IDs associated with the Lambda function.
-
#vpc_id ⇒ String
The VPC ID associated with you Lambda function.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
A list of security group IDs associated with the Lambda function.
2461 2462 2463 2464 2465 2466 |
# File 'lib/aws-sdk-lambda/types.rb', line 2461 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id) include Aws::Structure end |
#subnet_ids ⇒ Array<String>
A list of subnet IDs associated with the Lambda function.
2461 2462 2463 2464 2465 2466 |
# File 'lib/aws-sdk-lambda/types.rb', line 2461 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id) include Aws::Structure end |
#vpc_id ⇒ String
The VPC ID associated with you Lambda function.
2461 2462 2463 2464 2465 2466 |
# File 'lib/aws-sdk-lambda/types.rb', line 2461 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id) include Aws::Structure end |