// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListRecipes`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`recipe_provider(RecipeProvider)`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder::recipe_provider) / [`set_recipe_provider(Option<RecipeProvider>)`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder::set_recipe_provider): <p>The default is <code>SERVICE</code>.</p>
/// - [`next_token(impl ::std::convert::Into<String>)`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder::set_next_token): <p>A token returned from the previous call to <code>ListRecipes</code> for getting the next set of recipes (if they exist).</p>
/// - [`max_results(i32)`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder::set_max_results): <p>The maximum number of recipes to return.</p>
/// - [`domain(Domain)`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder::domain) / [`set_domain(Option<Domain>)`](crate::operation::list_recipes::builders::ListRecipesFluentBuilder::set_domain): <p> Filters returned recipes by domain for a Domain dataset group. Only recipes (Domain dataset group use cases) for this domain are included in the response. If you don't specify a domain, all recipes are returned. </p>
/// - On success, responds with [`ListRecipesOutput`](crate::operation::list_recipes::ListRecipesOutput) with field(s):
/// - [`recipes(Option<Vec<RecipeSummary>>)`](crate::operation::list_recipes::ListRecipesOutput::recipes): <p>The list of available recipes.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_recipes::ListRecipesOutput::next_token): <p>A token for getting the next set of recipes.</p>
/// - On failure, responds with [`SdkError<ListRecipesError>`](crate::operation::list_recipes::ListRecipesError)
pub fn list_recipes(&self) -> crate::operation::list_recipes::builders::ListRecipesFluentBuilder {
crate::operation::list_recipes::builders::ListRecipesFluentBuilder::new(self.handle.clone())
}
}