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.
2192 2193 2194 2195 2196 2197 |
# File 'lib/aws-sdk-lambda/types.rb', line 2192 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.
2192 2193 2194 2195 2196 2197 |
# File 'lib/aws-sdk-lambda/types.rb', line 2192 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.
2192 2193 2194 2195 2196 2197 |
# File 'lib/aws-sdk-lambda/types.rb', line 2192 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id) include Aws::Structure end |