#[non_exhaustive]pub struct SelectiveExecutionConfigBuilder { /* private fields */ }
Expand description
A builder for SelectiveExecutionConfig
.
Implementations§
source§impl SelectiveExecutionConfigBuilder
impl SelectiveExecutionConfigBuilder
sourcepub fn source_pipeline_execution_arn(self, input: impl Into<String>) -> Self
pub fn source_pipeline_execution_arn(self, input: impl Into<String>) -> Self
The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed
or Success
.
This field is required if the steps you specify for SelectedSteps
depend on output collaterals from any non-specified pipeline steps. For more information, see Selective Execution for Pipeline Steps.
sourcepub fn set_source_pipeline_execution_arn(self, input: Option<String>) -> Self
pub fn set_source_pipeline_execution_arn(self, input: Option<String>) -> Self
The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed
or Success
.
This field is required if the steps you specify for SelectedSteps
depend on output collaterals from any non-specified pipeline steps. For more information, see Selective Execution for Pipeline Steps.
sourcepub fn get_source_pipeline_execution_arn(&self) -> &Option<String>
pub fn get_source_pipeline_execution_arn(&self) -> &Option<String>
The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either Failed
or Success
.
This field is required if the steps you specify for SelectedSteps
depend on output collaterals from any non-specified pipeline steps. For more information, see Selective Execution for Pipeline Steps.
sourcepub fn selected_steps(self, input: SelectedStep) -> Self
pub fn selected_steps(self, input: SelectedStep) -> Self
Appends an item to selected_steps
.
To override the contents of this collection use set_selected_steps
.
A list of pipeline steps to run. All step(s) in all path(s) between two selected steps should be included.
sourcepub fn set_selected_steps(self, input: Option<Vec<SelectedStep>>) -> Self
pub fn set_selected_steps(self, input: Option<Vec<SelectedStep>>) -> Self
A list of pipeline steps to run. All step(s) in all path(s) between two selected steps should be included.
sourcepub fn get_selected_steps(&self) -> &Option<Vec<SelectedStep>>
pub fn get_selected_steps(&self) -> &Option<Vec<SelectedStep>>
A list of pipeline steps to run. All step(s) in all path(s) between two selected steps should be included.
sourcepub fn build(self) -> SelectiveExecutionConfig
pub fn build(self) -> SelectiveExecutionConfig
Consumes the builder and constructs a SelectiveExecutionConfig
.
Trait Implementations§
source§impl Clone for SelectiveExecutionConfigBuilder
impl Clone for SelectiveExecutionConfigBuilder
source§fn clone(&self) -> SelectiveExecutionConfigBuilder
fn clone(&self) -> SelectiveExecutionConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for SelectiveExecutionConfigBuilder
impl Default for SelectiveExecutionConfigBuilder
source§fn default() -> SelectiveExecutionConfigBuilder
fn default() -> SelectiveExecutionConfigBuilder
source§impl PartialEq for SelectiveExecutionConfigBuilder
impl PartialEq for SelectiveExecutionConfigBuilder
source§fn eq(&self, other: &SelectiveExecutionConfigBuilder) -> bool
fn eq(&self, other: &SelectiveExecutionConfigBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SelectiveExecutionConfigBuilder
Auto Trait Implementations§
impl Freeze for SelectiveExecutionConfigBuilder
impl RefUnwindSafe for SelectiveExecutionConfigBuilder
impl Send for SelectiveExecutionConfigBuilder
impl Sync for SelectiveExecutionConfigBuilder
impl Unpin for SelectiveExecutionConfigBuilder
impl UnwindSafe for SelectiveExecutionConfigBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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