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.
      7313 7314 7315 7316 7317 7318 7319  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 7313 class VpcConfig < Struct.new( :vpc_id, :subnets, :security_group_ids) SENSITIVE = [] include Aws::Structure end  |