#[non_exhaustive]pub struct GetPipelineStateOutput { /* private fields */ }
Expand description
Represents the output of a GetPipelineState
action.
Implementations§
source§impl 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.
source§impl GetPipelineStateOutput
impl GetPipelineStateOutput
sourcepub fn builder() -> GetPipelineStateOutputBuilder
pub fn builder() -> GetPipelineStateOutputBuilder
Creates a new builder-style object to manufacture GetPipelineStateOutput
.
Trait Implementations§
source§impl Clone for GetPipelineStateOutput
impl Clone for GetPipelineStateOutput
source§fn clone(&self) -> GetPipelineStateOutput
fn clone(&self) -> GetPipelineStateOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetPipelineStateOutput
impl Debug for GetPipelineStateOutput
source§impl PartialEq<GetPipelineStateOutput> for GetPipelineStateOutput
impl PartialEq<GetPipelineStateOutput> for GetPipelineStateOutput
source§fn eq(&self, other: &GetPipelineStateOutput) -> bool
fn eq(&self, other: &GetPipelineStateOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetPipelineStateOutput
impl RequestId for GetPipelineStateOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.