pub struct Builder { /* private fields */ }
Expand description
A builder for GetPipelineStateOutput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn pipeline_name(self, input: impl Into<String>) -> Self
pub fn pipeline_name(self, input: impl Into<String>) -> Self
The name of the pipeline for which you want to get the state.
sourcepub fn set_pipeline_name(self, input: Option<String>) -> Self
pub fn set_pipeline_name(self, input: Option<String>) -> Self
The name of the pipeline for which you want to get the state.
sourcepub fn pipeline_version(self, input: i32) -> Self
pub fn pipeline_version(self, input: i32) -> Self
The version number of the pipeline.
A newly created pipeline is always assigned a version number of 1
.
sourcepub fn set_pipeline_version(self, input: Option<i32>) -> Self
pub fn set_pipeline_version(self, input: Option<i32>) -> Self
The version number of the pipeline.
A newly created pipeline is always assigned a version number of 1
.
sourcepub fn stage_states(self, input: StageState) -> Self
pub fn stage_states(self, input: StageState) -> Self
Appends an item to stage_states
.
To override the contents of this collection use set_stage_states
.
A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
sourcepub fn set_stage_states(self, input: Option<Vec<StageState>>) -> Self
pub fn set_stage_states(self, input: Option<Vec<StageState>>) -> Self
A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.
sourcepub fn created(self, input: DateTime) -> Self
pub fn created(self, input: DateTime) -> Self
The date and time the pipeline was created, in timestamp format.
sourcepub fn set_created(self, input: Option<DateTime>) -> Self
pub fn set_created(self, input: Option<DateTime>) -> Self
The date and time the pipeline was created, in timestamp format.
sourcepub fn updated(self, input: DateTime) -> Self
pub fn updated(self, input: DateTime) -> Self
The date and time the pipeline was last updated, in timestamp format.
sourcepub fn set_updated(self, input: Option<DateTime>) -> Self
pub fn set_updated(self, input: Option<DateTime>) -> Self
The date and time the pipeline was last updated, in timestamp format.
sourcepub fn build(self) -> GetPipelineStateOutput
pub fn build(self) -> GetPipelineStateOutput
Consumes the builder and constructs a GetPipelineStateOutput
.