#[non_exhaustive]pub struct GetPipelineStateOutput {
pub pipeline_name: Option<String>,
pub pipeline_version: Option<i32>,
pub stage_states: Option<Vec<StageState>>,
pub created: Option<DateTime>,
pub updated: Option<DateTime>,
}
Expand description
Represents the output of a GetPipelineState
action.
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.pipeline_name: Option<String>
The name of the pipeline for which you want to get the state.
pipeline_version: Option<i32>
The version number of the pipeline.
A newly created pipeline is always assigned a version number of 1
.
stage_states: Option<Vec<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.
created: Option<DateTime>
The date and time the pipeline was created, in timestamp format.
updated: Option<DateTime>
The date and time the pipeline was last updated, in timestamp format.
Implementations
The name of the pipeline for which you want to get the state.
The version number of the pipeline.
A newly created pipeline is always assigned a version number of 1
.
A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
The date and time the pipeline was created, in timestamp format.
Creates a new builder-style object to manufacture GetPipelineStateOutput
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 GetPipelineStateOutput
impl Send for GetPipelineStateOutput
impl Sync for GetPipelineStateOutput
impl Unpin for GetPipelineStateOutput
impl UnwindSafe for GetPipelineStateOutput
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