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.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'lib/aws-sdk-codebuild/types.rb', line 1236 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.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'lib/aws-sdk-codebuild/types.rb', line 1236 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.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'lib/aws-sdk-codebuild/types.rb', line 1236 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.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'lib/aws-sdk-codebuild/types.rb', line 1236 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.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'lib/aws-sdk-codebuild/types.rb', line 1236 class BuildSummary < Struct.new( :arn, :requested_on, :build_status, :primary_artifact, :secondary_artifacts) SENSITIVE = [] include Aws::Structure end |