// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListApplications`](crate::operation::list_applications::builders::ListApplicationsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`limit(i32)`](crate::operation::list_applications::builders::ListApplicationsFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::list_applications::builders::ListApplicationsFluentBuilder::set_limit):<br>required: **false**<br><p>The maximum number of applications to list.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_applications::builders::ListApplicationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_applications::builders::ListApplicationsFluentBuilder::set_next_token):<br>required: **false**<br><p>If a previous command 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 [`ListApplicationsOutput`](crate::operation::list_applications::ListApplicationsOutput) with field(s):
/// - [`application_summaries(Vec::<ApplicationSummary>)`](crate::operation::list_applications::ListApplicationsOutput::application_summaries): <p>A list of <code>ApplicationSummary</code> objects.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_applications::ListApplicationsOutput::next_token): <p>The pagination token for the next set of results, or <code>null</code> if there are no additional results. Pass this token into a subsequent command to retrieve the next set of items 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<ListApplicationsError>`](crate::operation::list_applications::ListApplicationsError)
pub fn list_applications(&self) -> crate::operation::list_applications::builders::ListApplicationsFluentBuilder {
crate::operation::list_applications::builders::ListApplicationsFluentBuilder::new(self.handle.clone())
}
}