// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListImages`](crate::operation::list_images::builders::ListImagesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_images::builders::ListImagesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`owner(Ownership)`](crate::operation::list_images::builders::ListImagesFluentBuilder::owner) / [`set_owner(Option<Ownership>)`](crate::operation::list_images::builders::ListImagesFluentBuilder::set_owner):<br>required: **false**<br><p>The owner defines which images you want to list. By default, this request will only show images owned by your account. You can use this field to specify if you want to view images owned by yourself, by Amazon, or those images that have been shared with you by other customers.</p><br>
/// - [`filters(Filter)`](crate::operation::list_images::builders::ListImagesFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::list_images::builders::ListImagesFluentBuilder::set_filters):<br>required: **false**<br><p>Use the following filters to streamline results:</p> <ul> <li> <p> <code>name</code> </p> </li> <li> <p> <code>osVersion</code> </p> </li> <li> <p> <code>platform</code> </p> </li> <li> <p> <code>type</code> </p> </li> <li> <p> <code>version</code> </p> </li> </ul><br>
/// - [`by_name(bool)`](crate::operation::list_images::builders::ListImagesFluentBuilder::by_name) / [`set_by_name(Option<bool>)`](crate::operation::list_images::builders::ListImagesFluentBuilder::set_by_name):<br>required: **false**<br><p>Requests a list of images with a specific recipe name.</p><br>
/// - [`max_results(i32)`](crate::operation::list_images::builders::ListImagesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_images::builders::ListImagesFluentBuilder::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_images::builders::ListImagesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_images::builders::ListImagesFluentBuilder::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>
/// - [`include_deprecated(bool)`](crate::operation::list_images::builders::ListImagesFluentBuilder::include_deprecated) / [`set_include_deprecated(Option<bool>)`](crate::operation::list_images::builders::ListImagesFluentBuilder::set_include_deprecated):<br>required: **false**<br><p>Includes deprecated images in the response list.</p><br>
/// - On success, responds with [`ListImagesOutput`](crate::operation::list_images::ListImagesOutput) with field(s):
/// - [`request_id(Option<String>)`](crate::operation::list_images::ListImagesOutput::request_id): <p>The request ID that uniquely identifies this request.</p>
/// - [`image_version_list(Option<Vec::<ImageVersion>>)`](crate::operation::list_images::ListImagesOutput::image_version_list): <p>The list of image semantic versions.</p> <note> <p>The semantic version has four nodes: <major> . <minor> . <patch> / <build> . You can assign values for the first three, and can filter on all of them. </build> </patch> </minor> </major></p> <p> <b>Filtering:</b> With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.</p> </note>
/// - [`next_token(Option<String>)`](crate::operation::list_images::ListImagesOutput::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<ListImagesError>`](crate::operation::list_images::ListImagesError)
pub fn list_images(&self) -> crate::operation::list_images::builders::ListImagesFluentBuilder {
crate::operation::list_images::builders::ListImagesFluentBuilder::new(self.handle.clone())
}
}