Class: Aws::Lambda::Types::VpcConfigResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::VpcConfigResponse
- 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
-
#security_group_ids ⇒ Array<String>
A list of VPC security group IDs.
-
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs.
-
#vpc_id ⇒ String
The ID of the VPC.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
A list of VPC security group IDs.
5998 5999 6000 6001 6002 6003 6004 |
# File 'lib/aws-sdk-lambda/types.rb', line 5998 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs.
5998 5999 6000 6001 6002 6003 6004 |
# File 'lib/aws-sdk-lambda/types.rb', line 5998 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The ID of the VPC.
5998 5999 6000 6001 6002 6003 6004 |
# File 'lib/aws-sdk-lambda/types.rb', line 5998 class VpcConfigResponse < Struct.new( :subnet_ids, :security_group_ids, :vpc_id) SENSITIVE = [] include Aws::Structure end |