1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeRecipe`](crate::operation::describe_recipe::builders::DescribeRecipeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`recipe_arn(impl ::std::convert::Into<String>)`](crate::operation::describe_recipe::builders::DescribeRecipeFluentBuilder::recipe_arn) / [`set_recipe_arn(Option<String>)`](crate::operation::describe_recipe::builders::DescribeRecipeFluentBuilder::set_recipe_arn): <p>The Amazon Resource Name (ARN) of the recipe to describe.</p>
    /// - On success, responds with [`DescribeRecipeOutput`](crate::operation::describe_recipe::DescribeRecipeOutput) with field(s):
    ///   - [`recipe(Option<Recipe>)`](crate::operation::describe_recipe::DescribeRecipeOutput::recipe): <p>An object that describes the recipe.</p>
    /// - On failure, responds with [`SdkError<DescribeRecipeError>`](crate::operation::describe_recipe::DescribeRecipeError)
    pub fn describe_recipe(&self) -> crate::operation::describe_recipe::builders::DescribeRecipeFluentBuilder {
        crate::operation::describe_recipe::builders::DescribeRecipeFluentBuilder::new(self.handle.clone())
    }
}