// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeClusterTracks`](crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`maintenance_track_name(impl Into<String>)`](crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder::maintenance_track_name) / [`set_maintenance_track_name(Option<String>)`](crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder::set_maintenance_track_name):<br>required: **false**<br><p>The name of the maintenance track.</p><br>
/// - [`max_records(i32)`](crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder::set_max_records):<br>required: **false**<br><p>An integer value for the maximum number of maintenance tracks to return.</p><br>
/// - [`marker(impl Into<String>)`](crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder::set_marker):<br>required: **false**<br><p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <code>DescribeClusterTracks</code> request exceed the value specified in <code>MaxRecords</code>, Amazon Redshift returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request.</p><br>
/// - On success, responds with [`DescribeClusterTracksOutput`](crate::operation::describe_cluster_tracks::DescribeClusterTracksOutput) with field(s):
/// - [`maintenance_tracks(Option<Vec::<MaintenanceTrack>>)`](crate::operation::describe_cluster_tracks::DescribeClusterTracksOutput::maintenance_tracks): <p>A list of maintenance tracks output by the <code>DescribeClusterTracks</code> operation.</p>
/// - [`marker(Option<String>)`](crate::operation::describe_cluster_tracks::DescribeClusterTracksOutput::marker): <p>The starting point to return a set of response tracklist records. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request.</p>
/// - On failure, responds with [`SdkError<DescribeClusterTracksError>`](crate::operation::describe_cluster_tracks::DescribeClusterTracksError)
pub fn describe_cluster_tracks(&self) -> crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder {
crate::operation::describe_cluster_tracks::builders::DescribeClusterTracksFluentBuilder::new(self.handle.clone())
}
}