// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListConfigurationPolicies`](crate::operation::list_configuration_policies::builders::ListConfigurationPoliciesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_configuration_policies::builders::ListConfigurationPoliciesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`next_token(impl Into<String>)`](crate::operation::list_configuration_policies::builders::ListConfigurationPoliciesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_configuration_policies::builders::ListConfigurationPoliciesFluentBuilder::set_next_token):<br>required: **false**<br><p> The NextToken value that's returned from a previous paginated <code>ListConfigurationPolicies</code> request where <code>MaxResults</code> was used but the results exceeded the value of that parameter. Pagination continues from the <code>MaxResults</code> was used but the results exceeded the value of that parameter. Pagination continues from the end of the previous response that returned the <code>NextToken</code> value. This value is <code>null</code> when there are no more results to return. </p><br>
/// - [`max_results(i32)`](crate::operation::list_configuration_policies::builders::ListConfigurationPoliciesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_configuration_policies::builders::ListConfigurationPoliciesFluentBuilder::set_max_results):<br>required: **false**<br><p> The maximum number of results that's returned by <code>ListConfigurationPolicies</code> in each page of the response. When this parameter is used, <code>ListConfigurationPolicies</code> returns the specified number of results in a single page and a <code>NextToken</code> response element. You can see the remaining results of the initial request by sending another <code>ListConfigurationPolicies</code> request with the returned <code>NextToken</code> value. A valid range for <code>MaxResults</code> is between 1 and 100. </p><br>
/// - On success, responds with [`ListConfigurationPoliciesOutput`](crate::operation::list_configuration_policies::ListConfigurationPoliciesOutput) with field(s):
/// - [`configuration_policy_summaries(Option<Vec::<ConfigurationPolicySummary>>)`](crate::operation::list_configuration_policies::ListConfigurationPoliciesOutput::configuration_policy_summaries): <p> Provides metadata for each of your configuration policies. </p>
/// - [`next_token(Option<String>)`](crate::operation::list_configuration_policies::ListConfigurationPoliciesOutput::next_token): <p> The <code>NextToken</code> value to include in the next <code>ListConfigurationPolicies</code> request. When the results of a <code>ListConfigurationPolicies</code> request exceed <code>MaxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return. </p>
/// - On failure, responds with [`SdkError<ListConfigurationPoliciesError>`](crate::operation::list_configuration_policies::ListConfigurationPoliciesError)
pub fn list_configuration_policies(&self) -> crate::operation::list_configuration_policies::builders::ListConfigurationPoliciesFluentBuilder {
crate::operation::list_configuration_policies::builders::ListConfigurationPoliciesFluentBuilder::new(self.handle.clone())
}
}