// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeDBClusterParameterGroups`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`db_cluster_parameter_group_name(impl Into<String>)`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::db_cluster_parameter_group_name) / [`set_db_cluster_parameter_group_name(Option<String>)`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::set_db_cluster_parameter_group_name):<br>required: **false**<br><p>The name of a specific cluster parameter group to return details for.</p> <p>Constraints:</p> <ul> <li> <p>If provided, must match the name of an existing <code>DBClusterParameterGroup</code>.</p> </li> </ul><br>
/// - [`filters(Filter)`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::set_filters):<br>required: **false**<br><p>This parameter is not currently supported.</p><br>
/// - [`max_records(i32)`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::set_max_records):<br>required: **false**<br><p> The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token (marker) is included in the response so that the remaining results can be retrieved.</p> <p>Default: 100</p> <p>Constraints: Minimum 20, maximum 100.</p><br>
/// - [`marker(impl Into<String>)`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::set_marker):<br>required: **false**<br><p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p><br>
/// - On success, responds with [`DescribeDbClusterParameterGroupsOutput`](crate::operation::describe_db_cluster_parameter_groups::DescribeDbClusterParameterGroupsOutput) with field(s):
/// - [`marker(Option<String>)`](crate::operation::describe_db_cluster_parameter_groups::DescribeDbClusterParameterGroupsOutput::marker): <p>An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
/// - [`db_cluster_parameter_groups(Option<Vec::<DbClusterParameterGroup>>)`](crate::operation::describe_db_cluster_parameter_groups::DescribeDbClusterParameterGroupsOutput::db_cluster_parameter_groups): <p>A list of cluster parameter groups.</p>
/// - On failure, responds with [`SdkError<DescribeDBClusterParameterGroupsError>`](crate::operation::describe_db_cluster_parameter_groups::DescribeDBClusterParameterGroupsError)
pub fn describe_db_cluster_parameter_groups(
&self,
) -> crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder {
crate::operation::describe_db_cluster_parameter_groups::builders::DescribeDBClusterParameterGroupsFluentBuilder::new(self.handle.clone())
}
}