1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeDefaultClusterParameters`](crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`parameter_group_family(impl Into<String>)`](crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder::parameter_group_family) / [`set_parameter_group_family(Option<String>)`](crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder::set_parameter_group_family):<br>required: **true**<br><p>The name of the cluster parameter group family.</p><br>
    ///   - [`max_records(i32)`](crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder::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 <code>MaxRecords</code> value, a value is returned in a <code>marker</code> field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. </p>  <p>Default: <code>100</code> </p>  <p>Constraints: minimum 20, maximum 100.</p><br>
    ///   - [`marker(impl Into<String>)`](crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder::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>DescribeDefaultClusterParameters</code> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services 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 [`DescribeDefaultClusterParametersOutput`](crate::operation::describe_default_cluster_parameters::DescribeDefaultClusterParametersOutput) with field(s):
    ///   - [`default_cluster_parameters(Option<DefaultClusterParameters>)`](crate::operation::describe_default_cluster_parameters::DescribeDefaultClusterParametersOutput::default_cluster_parameters): <p>Describes the default cluster parameters for a parameter group family.</p>
    /// - On failure, responds with [`SdkError<DescribeDefaultClusterParametersError>`](crate::operation::describe_default_cluster_parameters::DescribeDefaultClusterParametersError)
    pub fn describe_default_cluster_parameters(
        &self,
    ) -> crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder {
        crate::operation::describe_default_cluster_parameters::builders::DescribeDefaultClusterParametersFluentBuilder::new(self.handle.clone())
    }
}