aws_sdk_config/client/describe_configuration_aggregator_sources_status.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeConfigurationAggregatorSourcesStatus`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`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>
/// - On success, responds with [`DescribeConfigurationAggregatorSourcesStatusOutput`](crate::operation::describe_configuration_aggregator_sources_status::DescribeConfigurationAggregatorSourcesStatusOutput) with field(s):
/// - [`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>
/// - [`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>
/// - On failure, responds with [`SdkError<DescribeConfigurationAggregatorSourcesStatusError>`](crate::operation::describe_configuration_aggregator_sources_status::DescribeConfigurationAggregatorSourcesStatusError)
pub fn describe_configuration_aggregator_sources_status(
&self,
) -> crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder {
crate::operation::describe_configuration_aggregator_sources_status::builders::DescribeConfigurationAggregatorSourcesStatusFluentBuilder::new(
self.handle.clone(),
)
}
}