aws_sdk_elastictranscoder/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 /// - [`id(impl Into<String>)`](crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder::set_id):<br>required: **true**<br><p>The identifier of the pipeline that you want to delete.</p><br>
7 /// - On success, responds with [`DeletePipelineOutput`](crate::operation::delete_pipeline::DeletePipelineOutput)
8 /// - On failure, responds with [`SdkError<DeletePipelineError>`](crate::operation::delete_pipeline::DeletePipelineError)
9 pub fn delete_pipeline(&self) -> crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder {
10 crate::operation::delete_pipeline::builders::DeletePipelineFluentBuilder::new(self.handle.clone())
11 }
12}