Class: Aws::CodeBuild::Types::BuildSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeBuild::Types::BuildSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codebuild/types.rb
 
Overview
Contains summary information about a batch build group.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The batch build ARN.
 - 
  
    
      #build_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the build group.
 - 
  
    
      #primary_artifact  ⇒ Types::ResolvedArtifact 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A ‘ResolvedArtifact` object that represents the primary build artifacts for the build group.
 - 
  
    
      #requested_on  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
When the build was started, expressed in Unix time format.
 - 
  
    
      #secondary_artifacts  ⇒ Array<Types::ResolvedArtifact> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of ‘ResolvedArtifact` objects that represents the secondary build artifacts for the build group.
 
Instance Attribute Details
#arn ⇒ String
The batch build ARN.
      1277 1278 1279 1280 1281 1282 1283 1284 1285  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 1277 class BuildSummary < Struct.new( :arn, :requested_on, :build_status, :primary_artifact, :secondary_artifacts) SENSITIVE = [] include Aws::Structure end  | 
  
#build_status ⇒ String
The status of the build group.
FAILED
: The build group failed.
FAULT
: The build group faulted.
IN_PROGRESS
: The build group is still in progress.
STOPPED
: The build group stopped.
SUCCEEDED
: The build group succeeded.
TIMED_OUT
: The build group timed out.
      1277 1278 1279 1280 1281 1282 1283 1284 1285  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 1277 class BuildSummary < Struct.new( :arn, :requested_on, :build_status, :primary_artifact, :secondary_artifacts) SENSITIVE = [] include Aws::Structure end  | 
  
#primary_artifact ⇒ Types::ResolvedArtifact
A ‘ResolvedArtifact` object that represents the primary build artifacts for the build group.
      1277 1278 1279 1280 1281 1282 1283 1284 1285  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 1277 class BuildSummary < Struct.new( :arn, :requested_on, :build_status, :primary_artifact, :secondary_artifacts) SENSITIVE = [] include Aws::Structure end  | 
  
#requested_on ⇒ Time
When the build was started, expressed in Unix time format.
      1277 1278 1279 1280 1281 1282 1283 1284 1285  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 1277 class BuildSummary < Struct.new( :arn, :requested_on, :build_status, :primary_artifact, :secondary_artifacts) SENSITIVE = [] include Aws::Structure end  | 
  
#secondary_artifacts ⇒ Array<Types::ResolvedArtifact>
An array of ‘ResolvedArtifact` objects that represents the secondary build artifacts for the build group.
      1277 1278 1279 1280 1281 1282 1283 1284 1285  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 1277 class BuildSummary < Struct.new( :arn, :requested_on, :build_status, :primary_artifact, :secondary_artifacts) SENSITIVE = [] include Aws::Structure end  |