// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListFindings`](crate::operation::list_findings::builders::ListFindingsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_findings::builders::ListFindingsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`max_results(i32)`](crate::operation::list_findings::builders::ListFindingsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_findings::builders::ListFindingsFluentBuilder::set_max_results): <p>The maximum number of results to return in the response.</p>
/// - [`next_token(impl Into<String>)`](crate::operation::list_findings::builders::ListFindingsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_findings::builders::ListFindingsFluentBuilder::set_next_token): <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the <code>NextToken</code> value returned from the previous request to continue listing results after the first page.</p>
/// - [`filter_criteria(FilterCriteria)`](crate::operation::list_findings::builders::ListFindingsFluentBuilder::filter_criteria) / [`set_filter_criteria(Option<FilterCriteria>)`](crate::operation::list_findings::builders::ListFindingsFluentBuilder::set_filter_criteria): <p>Details on the filters to apply to your finding results.</p>
/// - [`sort_criteria(SortCriteria)`](crate::operation::list_findings::builders::ListFindingsFluentBuilder::sort_criteria) / [`set_sort_criteria(Option<SortCriteria>)`](crate::operation::list_findings::builders::ListFindingsFluentBuilder::set_sort_criteria): <p>Details on the sort criteria to apply to your finding results.</p>
/// - On success, responds with [`ListFindingsOutput`](crate::operation::list_findings::ListFindingsOutput) with field(s):
/// - [`next_token(Option<String>)`](crate::operation::list_findings::ListFindingsOutput::next_token): <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the <code>NextToken</code> value returned from the previous request to continue listing results after the first page.</p>
/// - [`findings(Option<Vec<Finding>>)`](crate::operation::list_findings::ListFindingsOutput::findings): <p>Contains details on the findings in your environment.</p>
/// - On failure, responds with [`SdkError<ListFindingsError>`](crate::operation::list_findings::ListFindingsError)
pub fn list_findings(&self) -> crate::operation::list_findings::builders::ListFindingsFluentBuilder {
crate::operation::list_findings::builders::ListFindingsFluentBuilder::new(self.handle.clone())
}
}