#[non_exhaustive]pub struct PipelineContextBuilder { /* private fields */ }
Expand description
A builder for PipelineContext
.
Implementations§
source§impl PipelineContextBuilder
impl PipelineContextBuilder
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. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
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. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
sourcepub fn get_pipeline_name(&self) -> &Option<String>
pub fn get_pipeline_name(&self) -> &Option<String>
The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.
sourcepub fn stage(self, input: StageContext) -> Self
pub fn stage(self, input: StageContext) -> Self
The stage of the pipeline.
sourcepub fn set_stage(self, input: Option<StageContext>) -> Self
pub fn set_stage(self, input: Option<StageContext>) -> Self
The stage of the pipeline.
sourcepub fn get_stage(&self) -> &Option<StageContext>
pub fn get_stage(&self) -> &Option<StageContext>
The stage of the pipeline.
sourcepub fn action(self, input: ActionContext) -> Self
pub fn action(self, input: ActionContext) -> Self
The context of an action to a job worker in the stage of a pipeline.
sourcepub fn set_action(self, input: Option<ActionContext>) -> Self
pub fn set_action(self, input: Option<ActionContext>) -> Self
The context of an action to a job worker in the stage of a pipeline.
sourcepub fn get_action(&self) -> &Option<ActionContext>
pub fn get_action(&self) -> &Option<ActionContext>
The context of an action to a job worker in the stage of a pipeline.
sourcepub fn pipeline_arn(self, input: impl Into<String>) -> Self
pub fn pipeline_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn set_pipeline_arn(self, input: Option<String>) -> Self
pub fn set_pipeline_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn get_pipeline_arn(&self) -> &Option<String>
pub fn get_pipeline_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn pipeline_execution_id(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_id(self, input: impl Into<String>) -> Self
The execution ID of the pipeline.
sourcepub fn set_pipeline_execution_id(self, input: Option<String>) -> Self
pub fn set_pipeline_execution_id(self, input: Option<String>) -> Self
The execution ID of the pipeline.
sourcepub fn get_pipeline_execution_id(&self) -> &Option<String>
pub fn get_pipeline_execution_id(&self) -> &Option<String>
The execution ID of the pipeline.
sourcepub fn build(self) -> PipelineContext
pub fn build(self) -> PipelineContext
Consumes the builder and constructs a PipelineContext
.
Trait Implementations§
source§impl Clone for PipelineContextBuilder
impl Clone for PipelineContextBuilder
source§fn clone(&self) -> PipelineContextBuilder
fn clone(&self) -> PipelineContextBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PipelineContextBuilder
impl Debug for PipelineContextBuilder
source§impl Default for PipelineContextBuilder
impl Default for PipelineContextBuilder
source§fn default() -> PipelineContextBuilder
fn default() -> PipelineContextBuilder
source§impl PartialEq for PipelineContextBuilder
impl PartialEq for PipelineContextBuilder
source§fn eq(&self, other: &PipelineContextBuilder) -> bool
fn eq(&self, other: &PipelineContextBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.