1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteImage`](crate::operation::delete_image::builders::DeleteImageFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::delete_image::builders::DeleteImageFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_image::builders::DeleteImageFluentBuilder::set_name): <p>The name of the image.</p>
    /// - On success, responds with [`DeleteImageOutput`](crate::operation::delete_image::DeleteImageOutput) with field(s):
    ///   - [`image(Option<Image>)`](crate::operation::delete_image::DeleteImageOutput::image): <p>Information about the image.</p>
    /// - On failure, responds with [`SdkError<DeleteImageError>`](crate::operation::delete_image::DeleteImageError)
    pub fn delete_image(
        &self,
    ) -> crate::operation::delete_image::builders::DeleteImageFluentBuilder {
        crate::operation::delete_image::builders::DeleteImageFluentBuilder::new(self.handle.clone())
    }
}