// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListClusters`](crate::operation::list_clusters::builders::ListClustersFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_clusters::builders::ListClustersFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`max_results(i32)`](crate::operation::list_clusters::builders::ListClustersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_clusters::builders::ListClustersFluentBuilder::set_max_results):<br>required: **false**<br>The maximum number of items to return.<br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_clusters::builders::ListClustersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_clusters::builders::ListClustersFluentBuilder::set_next_token):<br>required: **false**<br>The token to retrieve the next page of results.<br>
/// - On success, responds with [`ListClustersOutput`](crate::operation::list_clusters::ListClustersOutput) with field(s):
/// - [`clusters(Option<Vec::<DescribeClusterSummary>>)`](crate::operation::list_clusters::ListClustersOutput::clusters): A list of the Clusters that exist in your AWS account.
/// - [`next_token(Option<String>)`](crate::operation::list_clusters::ListClustersOutput::next_token): Token for the next result.
/// - On failure, responds with [`SdkError<ListClustersError>`](crate::operation::list_clusters::ListClustersError)
pub fn list_clusters(&self) -> crate::operation::list_clusters::builders::ListClustersFluentBuilder {
crate::operation::list_clusters::builders::ListClustersFluentBuilder::new(self.handle.clone())
}
}