// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListContainerRecipes`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`owner(Ownership)`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::owner) / [`set_owner(Option<Ownership>)`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::set_owner):<br>required: **false**<br><p>Returns container recipes belonging to the specified owner, that have been shared with you. You can omit this field to return container recipes belonging to your account.</p><br>
/// - [`filters(Filter)`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::set_filters):<br>required: **false**<br><p>Use the following filters to streamline results:</p> <ul> <li> <p><code>containerType</code></p></li> <li> <p><code>name</code></p></li> <li> <p><code>parentImage</code></p></li> <li> <p><code>platform</code></p></li> </ul><br>
/// - [`max_results(i32)`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum items to return in a request.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::set_next_token):<br>required: **false**<br><p>A token to specify where to start paginating. This is the nextToken from a previously truncated response.</p><br>
/// - On success, responds with [`ListContainerRecipesOutput`](crate::operation::list_container_recipes::ListContainerRecipesOutput) with field(s):
/// - [`request_id(Option<String>)`](crate::operation::list_container_recipes::ListContainerRecipesOutput::request_id): <p>The request ID that uniquely identifies this request.</p>
/// - [`container_recipe_summary_list(Option<Vec::<ContainerRecipeSummary>>)`](crate::operation::list_container_recipes::ListContainerRecipesOutput::container_recipe_summary_list): <p>The list of container recipes returned for the request.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_container_recipes::ListContainerRecipesOutput::next_token): <p>The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.</p>
/// - On failure, responds with [`SdkError<ListContainerRecipesError>`](crate::operation::list_container_recipes::ListContainerRecipesError)
pub fn list_container_recipes(&self) -> crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder {
crate::operation::list_container_recipes::builders::ListContainerRecipesFluentBuilder::new(self.handle.clone())
}
}