Struct aws_sdk_codebuild::model::BuildSummary
source · [−]#[non_exhaustive]pub struct BuildSummary { /* private fields */ }
Expand description
Contains summary information about a batch build group.
Implementations
sourceimpl BuildSummary
impl BuildSummary
sourcepub fn requested_on(&self) -> Option<&DateTime>
pub fn requested_on(&self) -> Option<&DateTime>
When the build was started, expressed in Unix time format.
sourcepub fn build_status(&self) -> Option<&StatusType>
pub fn build_status(&self) -> 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.
sourcepub fn primary_artifact(&self) -> Option<&ResolvedArtifact>
pub fn primary_artifact(&self) -> Option<&ResolvedArtifact>
A ResolvedArtifact
object that represents the primary build artifacts for the build group.
sourcepub fn secondary_artifacts(&self) -> Option<&[ResolvedArtifact]>
pub fn secondary_artifacts(&self) -> Option<&[ResolvedArtifact]>
An array of ResolvedArtifact
objects that represents the secondary build artifacts for the build group.
sourceimpl BuildSummary
impl BuildSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BuildSummary
.
Trait Implementations
sourceimpl Clone for BuildSummary
impl Clone for BuildSummary
sourcefn clone(&self) -> BuildSummary
fn clone(&self) -> BuildSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BuildSummary
impl Debug for BuildSummary
sourceimpl PartialEq<BuildSummary> for BuildSummary
impl PartialEq<BuildSummary> for BuildSummary
sourcefn eq(&self, other: &BuildSummary) -> bool
fn eq(&self, other: &BuildSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for BuildSummary
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more