// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListNodes`](crate::operation::list_nodes::builders::ListNodesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_nodes::builders::ListNodesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`cluster_id(impl Into<String>)`](crate::operation::list_nodes::builders::ListNodesFluentBuilder::cluster_id) / [`set_cluster_id(Option<String>)`](crate::operation::list_nodes::builders::ListNodesFluentBuilder::set_cluster_id):<br>required: **true**<br>The ID of the cluster<br>
/// - [`max_results(i32)`](crate::operation::list_nodes::builders::ListNodesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_nodes::builders::ListNodesFluentBuilder::set_max_results):<br>required: **false**<br>The maximum number of items to return.<br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_nodes::builders::ListNodesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_nodes::builders::ListNodesFluentBuilder::set_next_token):<br>required: **false**<br>The token to retrieve the next page of results.<br>
/// - On success, responds with [`ListNodesOutput`](crate::operation::list_nodes::ListNodesOutput) with field(s):
/// - [`next_token(Option<String>)`](crate::operation::list_nodes::ListNodesOutput::next_token): Token for the next result.
/// - [`nodes(Option<Vec::<DescribeNodeSummary>>)`](crate::operation::list_nodes::ListNodesOutput::nodes): An array of Nodes that exist in the Cluster.
/// - On failure, responds with [`SdkError<ListNodesError>`](crate::operation::list_nodes::ListNodesError)
pub fn list_nodes(&self) -> crate::operation::list_nodes::builders::ListNodesFluentBuilder {
crate::operation::list_nodes::builders::ListNodesFluentBuilder::new(self.handle.clone())
}
}