#[non_exhaustive]pub struct GetPipelineStateOutput { /* private fields */ }
Expand description
Represents the output of a GetPipelineState
action.
Implementations
sourceimpl GetPipelineStateOutput
impl GetPipelineStateOutput
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline for which you want to get the state.
sourcepub fn pipeline_version(&self) -> Option<i32>
pub fn pipeline_version(&self) -> Option<i32>
The version number of the pipeline.
A newly created pipeline is always assigned a version number of 1
.
sourcepub fn stage_states(&self) -> Option<&[StageState]>
pub fn stage_states(&self) -> Option<&[StageState]>
A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
sourceimpl GetPipelineStateOutput
impl GetPipelineStateOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetPipelineStateOutput
.
Trait Implementations
sourceimpl Clone for GetPipelineStateOutput
impl Clone for GetPipelineStateOutput
sourcefn clone(&self) -> GetPipelineStateOutput
fn clone(&self) -> GetPipelineStateOutput
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 moresourceimpl Debug for GetPipelineStateOutput
impl Debug for GetPipelineStateOutput
sourceimpl PartialEq<GetPipelineStateOutput> for GetPipelineStateOutput
impl PartialEq<GetPipelineStateOutput> for GetPipelineStateOutput
sourcefn eq(&self, other: &GetPipelineStateOutput) -> bool
fn eq(&self, other: &GetPipelineStateOutput) -> bool
impl StructuralPartialEq for GetPipelineStateOutput
Auto Trait Implementations
impl RefUnwindSafe for GetPipelineStateOutput
impl Send for GetPipelineStateOutput
impl Sync for GetPipelineStateOutput
impl Unpin for GetPipelineStateOutput
impl UnwindSafe for GetPipelineStateOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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