Struct aws_sdk_codepipeline::operation::get_pipeline_state::builders::GetPipelineStateOutputBuilder
source · #[non_exhaustive]pub struct GetPipelineStateOutputBuilder { /* private fields */ }
Expand description
A builder for GetPipelineStateOutput
.
Implementations§
source§impl GetPipelineStateOutputBuilder
impl GetPipelineStateOutputBuilder
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 get_pipeline_name(&self) -> &Option<String>
pub fn get_pipeline_name(&self) -> &Option<String>
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 get_pipeline_version(&self) -> &Option<i32>
pub fn get_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, 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 get_stage_states(&self) -> &Option<Vec<StageState>>
pub fn get_stage_states(&self) -> &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.
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 get_created(&self) -> &Option<DateTime>
pub fn get_created(&self) -> &Option<DateTime>
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 get_updated(&self) -> &Option<DateTime>
pub fn get_updated(&self) -> &Option<DateTime>
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
.
Trait Implementations§
source§impl Clone for GetPipelineStateOutputBuilder
impl Clone for GetPipelineStateOutputBuilder
source§fn clone(&self) -> GetPipelineStateOutputBuilder
fn clone(&self) -> GetPipelineStateOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetPipelineStateOutputBuilder
impl Default for GetPipelineStateOutputBuilder
source§fn default() -> GetPipelineStateOutputBuilder
fn default() -> GetPipelineStateOutputBuilder
source§impl PartialEq for GetPipelineStateOutputBuilder
impl PartialEq for GetPipelineStateOutputBuilder
source§fn eq(&self, other: &GetPipelineStateOutputBuilder) -> bool
fn eq(&self, other: &GetPipelineStateOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.