aws_sdk_config/client/describe_configuration_aggregators.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DescribeConfigurationAggregators`](crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`configuration_aggregator_names(impl Into<String>)`](crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder::configuration_aggregator_names) / [`set_configuration_aggregator_names(Option<Vec::<String>>)`](crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder::set_configuration_aggregator_names):<br>required: **false**<br><p>The name of the configuration aggregators.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder::set_next_token):<br>required: **false**<br><p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p><br>
9 /// - [`limit(i32)`](crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder::set_limit):<br>required: **false**<br><p>The maximum number of configuration aggregators returned on each page. The default is maximum. If you specify 0, Config uses the default.</p><br>
10 /// - On success, responds with [`DescribeConfigurationAggregatorsOutput`](crate::operation::describe_configuration_aggregators::DescribeConfigurationAggregatorsOutput) with field(s):
11 /// - [`configuration_aggregators(Option<Vec::<ConfigurationAggregator>>)`](crate::operation::describe_configuration_aggregators::DescribeConfigurationAggregatorsOutput::configuration_aggregators): <p>Returns a ConfigurationAggregators object.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::describe_configuration_aggregators::DescribeConfigurationAggregatorsOutput::next_token): <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
13 /// - On failure, responds with [`SdkError<DescribeConfigurationAggregatorsError>`](crate::operation::describe_configuration_aggregators::DescribeConfigurationAggregatorsError)
14 pub fn describe_configuration_aggregators(
15 &self,
16 ) -> crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder {
17 crate::operation::describe_configuration_aggregators::builders::DescribeConfigurationAggregatorsFluentBuilder::new(self.handle.clone())
18 }
19}