Class: Aws::CodeBuild::Types::EnvironmentLanguage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeBuild::Types::EnvironmentLanguage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codebuild/types.rb
 
Overview
A set of Docker images that are related by programming language and are managed by CodeBuild.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #images  ⇒ Array<Types::EnvironmentImage> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of Docker images that are related by the specified programming language.
 - 
  
    
      #language  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The programming language for the Docker images.
 
Instance Attribute Details
#images ⇒ Array<Types::EnvironmentImage>
The list of Docker images that are related by the specified programming language.
      2413 2414 2415 2416 2417 2418  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 2413 class EnvironmentLanguage < Struct.new( :language, :images) SENSITIVE = [] include Aws::Structure end  | 
  
#language ⇒ String
The programming language for the Docker images.
      2413 2414 2415 2416 2417 2418  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 2413 class EnvironmentLanguage < Struct.new( :language, :images) SENSITIVE = [] include Aws::Structure end  |