Struct aws_sdk_sagemaker::operation::update_pipeline_execution::builders::UpdatePipelineExecutionInputBuilder
source · #[non_exhaustive]pub struct UpdatePipelineExecutionInputBuilder { /* private fields */ }
Expand description
A builder for UpdatePipelineExecutionInput
.
Implementations§
source§impl UpdatePipelineExecutionInputBuilder
impl UpdatePipelineExecutionInputBuilder
sourcepub fn pipeline_execution_arn(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline execution.
sourcepub fn set_pipeline_execution_arn(self, input: Option<String>) -> Self
pub fn set_pipeline_execution_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline execution.
sourcepub fn pipeline_execution_description(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_description(self, input: impl Into<String>) -> Self
The description of the pipeline execution.
sourcepub fn set_pipeline_execution_description(self, input: Option<String>) -> Self
pub fn set_pipeline_execution_description(self, input: Option<String>) -> Self
The description of the pipeline execution.
sourcepub fn pipeline_execution_display_name(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_display_name(self, input: impl Into<String>) -> Self
The display name of the pipeline execution.
sourcepub fn set_pipeline_execution_display_name(self, input: Option<String>) -> Self
pub fn set_pipeline_execution_display_name(self, input: Option<String>) -> Self
The display name of the pipeline execution.
sourcepub fn parallelism_configuration(self, input: ParallelismConfiguration) -> Self
pub fn parallelism_configuration(self, input: ParallelismConfiguration) -> Self
This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
sourcepub fn set_parallelism_configuration(
self,
input: Option<ParallelismConfiguration>
) -> Self
pub fn set_parallelism_configuration( self, input: Option<ParallelismConfiguration> ) -> Self
This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
sourcepub fn build(self) -> Result<UpdatePipelineExecutionInput, BuildError>
pub fn build(self) -> Result<UpdatePipelineExecutionInput, BuildError>
Consumes the builder and constructs a UpdatePipelineExecutionInput
.
Trait Implementations§
source§impl Clone for UpdatePipelineExecutionInputBuilder
impl Clone for UpdatePipelineExecutionInputBuilder
source§fn clone(&self) -> UpdatePipelineExecutionInputBuilder
fn clone(&self) -> UpdatePipelineExecutionInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for UpdatePipelineExecutionInputBuilder
impl Default for UpdatePipelineExecutionInputBuilder
source§fn default() -> UpdatePipelineExecutionInputBuilder
fn default() -> UpdatePipelineExecutionInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdatePipelineExecutionInputBuilder> for UpdatePipelineExecutionInputBuilder
impl PartialEq<UpdatePipelineExecutionInputBuilder> for UpdatePipelineExecutionInputBuilder
source§fn eq(&self, other: &UpdatePipelineExecutionInputBuilder) -> bool
fn eq(&self, other: &UpdatePipelineExecutionInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.