#[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
.
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
.
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
.
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<SelectiveExecutionConfigBuilder> for SelectiveExecutionConfigBuilder
impl PartialEq<SelectiveExecutionConfigBuilder> 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 ==
.