1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeClusterDbRevisions`](crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_identifier(impl Into<String>)`](crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder::cluster_identifier) / [`set_cluster_identifier(Option<String>)`](crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder::set_cluster_identifier):<br>required: **false**<br><p>A unique identifier for a cluster whose <code>ClusterDbRevisions</code> you are requesting. This parameter is case sensitive. All clusters defined for an account are returned by default.</p><br>
    ///   - [`max_records(i32)`](crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder::set_max_records):<br>required: **false**<br><p>The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in the <code>marker</code> field of the response. You can retrieve the next set of response records by providing the returned <code>marker</code> value in the <code>marker</code> parameter and retrying the request.</p> <p>Default: 100</p> <p>Constraints: minimum 20, maximum 100.</p><br>
    ///   - [`marker(impl Into<String>)`](crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder::set_marker):<br>required: **false**<br><p>An optional parameter that specifies the starting point for returning a set of response records. When the results of a <code>DescribeClusterDbRevisions</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 <code>marker</code> value in the <code>marker</code> parameter and retrying the request.</p> <p>Constraints: You can specify either the <code>ClusterIdentifier</code> parameter, or the <code>marker</code> parameter, but not both.</p><br>
    /// - On success, responds with [`DescribeClusterDbRevisionsOutput`](crate::operation::describe_cluster_db_revisions::DescribeClusterDbRevisionsOutput) with field(s):
    ///   - [`marker(Option<String>)`](crate::operation::describe_cluster_db_revisions::DescribeClusterDbRevisionsOutput::marker): <p>A string representing the starting point for the next set of revisions. If a value is returned in a response, you can retrieve the next set of revisions by providing the value in the <code>marker</code> parameter and retrying the command. If the <code>marker</code> field is empty, all revisions have already been returned.</p>
    ///   - [`cluster_db_revisions(Option<Vec::<ClusterDbRevision>>)`](crate::operation::describe_cluster_db_revisions::DescribeClusterDbRevisionsOutput::cluster_db_revisions): <p>A list of revisions.</p>
    /// - On failure, responds with [`SdkError<DescribeClusterDbRevisionsError>`](crate::operation::describe_cluster_db_revisions::DescribeClusterDbRevisionsError)
    pub fn describe_cluster_db_revisions(
        &self,
    ) -> crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder {
        crate::operation::describe_cluster_db_revisions::builders::DescribeClusterDbRevisionsFluentBuilder::new(self.handle.clone())
    }
}