aws_sdk_imagebuilder/client/delete_image_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 [`DeleteImagePipeline`](crate::operation::delete_image_pipeline::builders::DeleteImagePipelineFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`image_pipeline_arn(impl Into<String>)`](crate::operation::delete_image_pipeline::builders::DeleteImagePipelineFluentBuilder::image_pipeline_arn) / [`set_image_pipeline_arn(Option<String>)`](crate::operation::delete_image_pipeline::builders::DeleteImagePipelineFluentBuilder::set_image_pipeline_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the image pipeline to delete.</p><br>
7 /// - On success, responds with [`DeleteImagePipelineOutput`](crate::operation::delete_image_pipeline::DeleteImagePipelineOutput) with field(s):
8 /// - [`request_id(Option<String>)`](crate::operation::delete_image_pipeline::DeleteImagePipelineOutput::request_id): <p>The request ID that uniquely identifies this request.</p>
9 /// - [`image_pipeline_arn(Option<String>)`](crate::operation::delete_image_pipeline::DeleteImagePipelineOutput::image_pipeline_arn): <p>The Amazon Resource Name (ARN) of the image pipeline that was deleted.</p>
10 /// - On failure, responds with [`SdkError<DeleteImagePipelineError>`](crate::operation::delete_image_pipeline::DeleteImagePipelineError)
11 pub fn delete_image_pipeline(&self) -> crate::operation::delete_image_pipeline::builders::DeleteImagePipelineFluentBuilder {
12 crate::operation::delete_image_pipeline::builders::DeleteImagePipelineFluentBuilder::new(self.handle.clone())
13 }
14}