Struct aws_sdk_sagemaker::operation::start_pipeline_execution::builders::StartPipelineExecutionInputBuilder
source · #[non_exhaustive]pub struct StartPipelineExecutionInputBuilder { /* private fields */ }
Expand description
A builder for StartPipelineExecutionInput
.
Implementations§
source§impl StartPipelineExecutionInputBuilder
impl StartPipelineExecutionInputBuilder
sourcepub fn pipeline_name(self, input: impl Into<String>) -> Self
pub fn pipeline_name(self, input: impl Into<String>) -> Self
The name or Amazon Resource Name (ARN) of the pipeline.
This field is required.sourcepub fn set_pipeline_name(self, input: Option<String>) -> Self
pub fn set_pipeline_name(self, input: Option<String>) -> Self
The name or Amazon Resource Name (ARN) of the pipeline.
sourcepub fn get_pipeline_name(&self) -> &Option<String>
pub fn get_pipeline_name(&self) -> &Option<String>
The name or Amazon Resource Name (ARN) of the pipeline.
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 get_pipeline_execution_display_name(&self) -> &Option<String>
pub fn get_pipeline_execution_display_name(&self) -> &Option<String>
The display name of the pipeline execution.
sourcepub fn pipeline_parameters(self, input: Parameter) -> Self
pub fn pipeline_parameters(self, input: Parameter) -> Self
Appends an item to pipeline_parameters
.
To override the contents of this collection use set_pipeline_parameters
.
Contains a list of pipeline parameters. This list can be empty.
sourcepub fn set_pipeline_parameters(self, input: Option<Vec<Parameter>>) -> Self
pub fn set_pipeline_parameters(self, input: Option<Vec<Parameter>>) -> Self
Contains a list of pipeline parameters. This list can be empty.
sourcepub fn get_pipeline_parameters(&self) -> &Option<Vec<Parameter>>
pub fn get_pipeline_parameters(&self) -> &Option<Vec<Parameter>>
Contains a list of pipeline parameters. This list can be empty.
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 get_pipeline_execution_description(&self) -> &Option<String>
pub fn get_pipeline_execution_description(&self) -> &Option<String>
The description of the pipeline execution.
sourcepub fn client_request_token(self, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than once.
This field is required.sourcepub fn set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than once.
sourcepub fn get_client_request_token(&self) -> &Option<String>
pub fn get_client_request_token(&self) -> &Option<String>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than once.
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 get_parallelism_configuration(&self) -> &Option<ParallelismConfiguration>
pub fn get_parallelism_configuration(&self) -> &Option<ParallelismConfiguration>
This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
sourcepub fn selective_execution_config(self, input: SelectiveExecutionConfig) -> Self
pub fn selective_execution_config(self, input: SelectiveExecutionConfig) -> Self
The selective execution configuration applied to the pipeline run.
sourcepub fn set_selective_execution_config(
self,
input: Option<SelectiveExecutionConfig>
) -> Self
pub fn set_selective_execution_config( self, input: Option<SelectiveExecutionConfig> ) -> Self
The selective execution configuration applied to the pipeline run.
sourcepub fn get_selective_execution_config(
&self
) -> &Option<SelectiveExecutionConfig>
pub fn get_selective_execution_config( &self ) -> &Option<SelectiveExecutionConfig>
The selective execution configuration applied to the pipeline run.
sourcepub fn build(self) -> Result<StartPipelineExecutionInput, BuildError>
pub fn build(self) -> Result<StartPipelineExecutionInput, BuildError>
Consumes the builder and constructs a StartPipelineExecutionInput
.
source§impl StartPipelineExecutionInputBuilder
impl StartPipelineExecutionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<StartPipelineExecutionOutput, SdkError<StartPipelineExecutionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<StartPipelineExecutionOutput, SdkError<StartPipelineExecutionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StartPipelineExecutionInputBuilder
impl Clone for StartPipelineExecutionInputBuilder
source§fn clone(&self) -> StartPipelineExecutionInputBuilder
fn clone(&self) -> StartPipelineExecutionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for StartPipelineExecutionInputBuilder
impl Default for StartPipelineExecutionInputBuilder
source§fn default() -> StartPipelineExecutionInputBuilder
fn default() -> StartPipelineExecutionInputBuilder
source§impl PartialEq for StartPipelineExecutionInputBuilder
impl PartialEq for StartPipelineExecutionInputBuilder
source§fn eq(&self, other: &StartPipelineExecutionInputBuilder) -> bool
fn eq(&self, other: &StartPipelineExecutionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.