Struct aws_sdk_codebuild::model::BuildSummary
source · [−]#[non_exhaustive]pub struct BuildSummary {
pub arn: Option<String>,
pub requested_on: Option<DateTime>,
pub build_status: Option<StatusType>,
pub primary_artifact: Option<ResolvedArtifact>,
pub secondary_artifacts: Option<Vec<ResolvedArtifact>>,
}
Expand description
Contains summary information about a batch build group.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.arn: Option<String>
The batch build ARN.
requested_on: Option<DateTime>
When the build was started, expressed in Unix time format.
build_status: Option<StatusType>
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.
primary_artifact: Option<ResolvedArtifact>
A ResolvedArtifact
object that represents the primary build artifacts for the build group.
secondary_artifacts: Option<Vec<ResolvedArtifact>>
An array of ResolvedArtifact
objects that represents the secondary build artifacts for the build group.
Implementations
When the build was started, expressed in Unix time format.
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.
A ResolvedArtifact
object that represents the primary build artifacts for the build group.
An array of ResolvedArtifact
objects that represents the secondary build artifacts for the build group.
Creates a new builder-style object to manufacture BuildSummary
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for BuildSummary
impl Send for BuildSummary
impl Sync for BuildSummary
impl Unpin for BuildSummary
impl UnwindSafe for BuildSummary
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more