// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListTrackers`](crate::operation::list_trackers::builders::ListTrackersFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_trackers::builders::ListTrackersFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`max_results(i32)`](crate::operation::list_trackers::builders::ListTrackersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_trackers::builders::ListTrackersFluentBuilder::set_max_results):<br>required: **false**<br><p>An optional limit for the number of resources returned in a single call.</p> <p>Default value: <code>100</code></p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_trackers::builders::ListTrackersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_trackers::builders::ListTrackersFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.</p> <p>Default value: <code>null</code></p><br>
/// - On success, responds with [`ListTrackersOutput`](crate::operation::list_trackers::ListTrackersOutput) with field(s):
/// - [`entries(Vec::<ListTrackersResponseEntry>)`](crate::operation::list_trackers::ListTrackersOutput::entries): <p>Contains tracker resources in your Amazon Web Services account. Details include tracker name, description and timestamps for when the tracker was created and last updated.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_trackers::ListTrackersOutput::next_token): <p>A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.</p>
/// - On failure, responds with [`SdkError<ListTrackersError>`](crate::operation::list_trackers::ListTrackersError)
pub fn list_trackers(&self) -> crate::operation::list_trackers::builders::ListTrackersFluentBuilder {
crate::operation::list_trackers::builders::ListTrackersFluentBuilder::new(self.handle.clone())
}
}