Class: Aws::CodeBuild::Types::VpcConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::VpcConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Information about the VPC configuration that CodeBuild accesses.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_ids ⇒ Array<String>
A list of one or more security groups IDs in your Amazon VPC.
-
#subnets ⇒ Array<String>
A list of one or more subnet IDs in your Amazon VPC.
-
#vpc_id ⇒ String
The ID of the Amazon VPC.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
A list of one or more security groups IDs in your Amazon VPC.
7028 7029 7030 7031 7032 7033 7034 |
# File 'lib/aws-sdk-codebuild/types.rb', line 7028 class VpcConfig < Struct.new( :vpc_id, :subnets, :security_group_ids) SENSITIVE = [] include Aws::Structure end |