1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteImageRecipe`](crate::operation::delete_image_recipe::builders::DeleteImageRecipeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`image_recipe_arn(impl Into<String>)`](crate::operation::delete_image_recipe::builders::DeleteImageRecipeFluentBuilder::image_recipe_arn) / [`set_image_recipe_arn(Option<String>)`](crate::operation::delete_image_recipe::builders::DeleteImageRecipeFluentBuilder::set_image_recipe_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the image recipe to delete.</p><br>
    /// - On success, responds with [`DeleteImageRecipeOutput`](crate::operation::delete_image_recipe::DeleteImageRecipeOutput) with field(s):
    ///   - [`request_id(Option<String>)`](crate::operation::delete_image_recipe::DeleteImageRecipeOutput::request_id): <p>The request ID that uniquely identifies this request.</p>
    ///   - [`image_recipe_arn(Option<String>)`](crate::operation::delete_image_recipe::DeleteImageRecipeOutput::image_recipe_arn): <p>The Amazon Resource Name (ARN) of the image recipe that was deleted.</p>
    /// - On failure, responds with [`SdkError<DeleteImageRecipeError>`](crate::operation::delete_image_recipe::DeleteImageRecipeError)
    pub fn delete_image_recipe(&self) -> crate::operation::delete_image_recipe::builders::DeleteImageRecipeFluentBuilder {
        crate::operation::delete_image_recipe::builders::DeleteImageRecipeFluentBuilder::new(self.handle.clone())
    }
}