aws_sdk_sagemaker/client/
stop_pipeline_execution.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`StopPipelineExecution`](crate::operation::stop_pipeline_execution::builders::StopPipelineExecutionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`pipeline_execution_arn(impl Into<String>)`](crate::operation::stop_pipeline_execution::builders::StopPipelineExecutionFluentBuilder::pipeline_execution_arn) / [`set_pipeline_execution_arn(Option<String>)`](crate::operation::stop_pipeline_execution::builders::StopPipelineExecutionFluentBuilder::set_pipeline_execution_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the pipeline execution.</p><br>
7    ///   - [`client_request_token(impl Into<String>)`](crate::operation::stop_pipeline_execution::builders::StopPipelineExecutionFluentBuilder::client_request_token) / [`set_client_request_token(Option<String>)`](crate::operation::stop_pipeline_execution::builders::StopPipelineExecutionFluentBuilder::set_client_request_token):<br>required: **true**<br><p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than once.</p><br>
8    /// - On success, responds with [`StopPipelineExecutionOutput`](crate::operation::stop_pipeline_execution::StopPipelineExecutionOutput) with field(s):
9    ///   - [`pipeline_execution_arn(Option<String>)`](crate::operation::stop_pipeline_execution::StopPipelineExecutionOutput::pipeline_execution_arn): <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
10    /// - On failure, responds with [`SdkError<StopPipelineExecutionError>`](crate::operation::stop_pipeline_execution::StopPipelineExecutionError)
11    pub fn stop_pipeline_execution(&self) -> crate::operation::stop_pipeline_execution::builders::StopPipelineExecutionFluentBuilder {
12        crate::operation::stop_pipeline_execution::builders::StopPipelineExecutionFluentBuilder::new(self.handle.clone())
13    }
14}