aws_sdk_config/client/
describe_configuration_aggregator_sources_status.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 [`DescribeConfigurationAggregatorSourcesStatus`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`configuration_aggregator_name(impl Into<String>)`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::configuration_aggregator_name) / [`set_configuration_aggregator_name(Option<String>)`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::set_configuration_aggregator_name):<br>required: **true**<br><p>The name of the configuration aggregator.</p><br>
8    ///   - [`update_status(AggregatedSourceStatusType)`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::update_status) / [`set_update_status(Option<Vec::<AggregatedSourceStatusType>>)`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::set_update_status):<br>required: **false**<br><p>Filters the status type.</p> <ul>  <li>   <p>Valid value FAILED indicates errors while moving data.</p></li>  <li>   <p>Valid value SUCCEEDED indicates the data was successfully moved.</p></li>  <li>   <p>Valid value OUTDATED indicates the data is not the most recent.</p></li> </ul><br>
9    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::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>
10    ///   - [`limit(i32)`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::set_limit):<br>required: **false**<br><p>The maximum number of AggregatorSourceStatus returned on each page. The default is maximum. If you specify 0, Config uses the default.</p><br>
11    /// - On success, responds with [`DescribeConfigurationAggregatorSourcesStatusOutput`](crate::operation::describe_configuration_aggregator_sources_status::DescribeConfigurationAggregatorSourcesStatusOutput) with field(s):
12    ///   - [`aggregated_source_status_list(Option<Vec::<AggregatedSourceStatus>>)`](crate::operation::describe_configuration_aggregator_sources_status::DescribeConfigurationAggregatorSourcesStatusOutput::aggregated_source_status_list): <p>Returns an AggregatedSourceStatus object.</p>
13    ///   - [`next_token(Option<String>)`](crate::operation::describe_configuration_aggregator_sources_status::DescribeConfigurationAggregatorSourcesStatusOutput::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>
14    /// - On failure, responds with [`SdkError<DescribeConfigurationAggregatorSourcesStatusError>`](crate::operation::describe_configuration_aggregator_sources_status::DescribeConfigurationAggregatorSourcesStatusError)
15    pub fn describe_configuration_aggregator_sources_status(
16        &self,
17    ) -> crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder {
18        crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::new(
19            self.handle.clone(),
20        )
21    }
22}