#[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 ==.impl StructuralPartialEq for PipelineContextBuilder
Auto Trait Implementations§
impl Freeze for PipelineContextBuilder
impl RefUnwindSafe for PipelineContextBuilder
impl Send for PipelineContextBuilder
impl Sync for PipelineContextBuilder
impl Unpin for PipelineContextBuilder
impl UnwindSafe for PipelineContextBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more