aws_sdk_sagemaker/client/delete_pipeline.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 [`DeletePipeline`](crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`pipeline_name(impl Into<String>)`](crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder::pipeline_name) / [`set_pipeline_name(Option<String>)`](crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder::set_pipeline_name):<br>required: **true**<br><p>The name of the pipeline to delete.</p><br>
7 /// - [`client_request_token(impl Into<String>)`](crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder::client_request_token) / [`set_client_request_token(Option<String>)`](crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder::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 one time.</p><br>
8 /// - On success, responds with [`DeletePipelineOutput`](crate::operation::delete_pipeline::DeletePipelineOutput) with field(s):
9 /// - [`pipeline_arn(Option<String>)`](crate::operation::delete_pipeline::DeletePipelineOutput::pipeline_arn): <p>The Amazon Resource Name (ARN) of the pipeline to delete.</p>
10 /// - On failure, responds with [`SdkError<DeletePipelineError>`](crate::operation::delete_pipeline::DeletePipelineError)
11 pub fn delete_pipeline(&self) -> crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder {
12 crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder::new(self.handle.clone())
13 }
14}