aws_sdk_databrew/client/
describe_recipe.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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:
    ///   - [`name(impl Into<String>)`](crate::operation::describe_recipe::builders::DescribeRecipeFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::describe_recipe::builders::DescribeRecipeFluentBuilder::set_name):<br>required: **true**<br><p>The name of the recipe to be described.</p><br>
    ///   - [`recipe_version(impl Into<String>)`](crate::operation::describe_recipe::builders::DescribeRecipeFluentBuilder::recipe_version) / [`set_recipe_version(Option<String>)`](crate::operation::describe_recipe::builders::DescribeRecipeFluentBuilder::set_recipe_version):<br>required: **false**<br><p>The recipe version identifier. If this parameter isn't specified, then the latest published version is returned.</p><br>
    /// - On success, responds with [`DescribeRecipeOutput`](crate::operation::describe_recipe::DescribeRecipeOutput) with field(s):
    ///   - [`created_by(Option<String>)`](crate::operation::describe_recipe::DescribeRecipeOutput::created_by): <p>The identifier (user name) of the user who created the recipe.</p>
    ///   - [`create_date(Option<DateTime>)`](crate::operation::describe_recipe::DescribeRecipeOutput::create_date): <p>The date and time that the recipe was created.</p>
    ///   - [`last_modified_by(Option<String>)`](crate::operation::describe_recipe::DescribeRecipeOutput::last_modified_by): <p>The identifier (user name) of the user who last modified the recipe.</p>
    ///   - [`last_modified_date(Option<DateTime>)`](crate::operation::describe_recipe::DescribeRecipeOutput::last_modified_date): <p>The date and time that the recipe was last modified.</p>
    ///   - [`project_name(Option<String>)`](crate::operation::describe_recipe::DescribeRecipeOutput::project_name): <p>The name of the project associated with this recipe.</p>
    ///   - [`published_by(Option<String>)`](crate::operation::describe_recipe::DescribeRecipeOutput::published_by): <p>The identifier (user name) of the user who last published the recipe.</p>
    ///   - [`published_date(Option<DateTime>)`](crate::operation::describe_recipe::DescribeRecipeOutput::published_date): <p>The date and time when the recipe was last published.</p>
    ///   - [`description(Option<String>)`](crate::operation::describe_recipe::DescribeRecipeOutput::description): <p>The description of the recipe.</p>
    ///   - [`name(String)`](crate::operation::describe_recipe::DescribeRecipeOutput::name): <p>The name of the recipe.</p>
    ///   - [`steps(Option<Vec::<RecipeStep>>)`](crate::operation::describe_recipe::DescribeRecipeOutput::steps): <p>One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_recipe::DescribeRecipeOutput::tags): <p>Metadata tags associated with this project.</p>
    ///   - [`resource_arn(Option<String>)`](crate::operation::describe_recipe::DescribeRecipeOutput::resource_arn): <p>The ARN of the recipe.</p>
    ///   - [`recipe_version(Option<String>)`](crate::operation::describe_recipe::DescribeRecipeOutput::recipe_version): <p>The recipe version identifier.</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())
    }
}