// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListApplicationVersions`](crate::operation::list_application_versions::builders::ListApplicationVersionsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`application_name(impl Into<String>)`](crate::operation::list_application_versions::builders::ListApplicationVersionsFluentBuilder::application_name) / [`set_application_name(Option<String>)`](crate::operation::list_application_versions::builders::ListApplicationVersionsFluentBuilder::set_application_name):<br>required: **true**<br><p>The name of the application for which you want to list all versions.</p><br>
/// - [`limit(i32)`](crate::operation::list_application_versions::builders::ListApplicationVersionsFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::list_application_versions::builders::ListApplicationVersionsFluentBuilder::set_limit):<br>required: **false**<br><p>The maximum number of versions to list in this invocation of the operation.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_application_versions::builders::ListApplicationVersionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_application_versions::builders::ListApplicationVersionsFluentBuilder::set_next_token):<br>required: **false**<br><p>If a previous invocation of this operation returned a pagination token, pass it into this value to retrieve the next set of results. For more information about pagination, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/pagination.html">Using the Amazon Command Line Interface's Pagination Options</a>.</p><br>
/// - On success, responds with [`ListApplicationVersionsOutput`](crate::operation::list_application_versions::ListApplicationVersionsOutput) with field(s):
/// - [`application_version_summaries(Option<Vec::<ApplicationVersionSummary>>)`](crate::operation::list_application_versions::ListApplicationVersionsOutput::application_version_summaries): <p>A list of the application versions and the associated configuration summaries. The list includes application versions that were rolled back.</p> <p>To get the complete description of a specific application version, invoke the <code>DescribeApplicationVersion</code> operation.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_application_versions::ListApplicationVersionsOutput::next_token): <p>The pagination token for the next set of results, or <code>null</code> if there are no additional results. To retrieve the next set of items, pass this token into a subsequent invocation of this operation. For more information about pagination, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/pagination.html">Using the Amazon Command Line Interface's Pagination Options</a>.</p>
/// - On failure, responds with [`SdkError<ListApplicationVersionsError>`](crate::operation::list_application_versions::ListApplicationVersionsError)
pub fn list_application_versions(&self) -> crate::operation::list_application_versions::builders::ListApplicationVersionsFluentBuilder {
crate::operation::list_application_versions::builders::ListApplicationVersionsFluentBuilder::new(self.handle.clone())
}
}