aws_sdk_config/client/describe_pending_aggregation_requests.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 [`DescribePendingAggregationRequests`](crate::operation::describe_pending_aggregation_requests::builders::DescribePendingAggregationRequestsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_pending_aggregation_requests::builders::DescribePendingAggregationRequestsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`limit(i32)`](crate::operation::describe_pending_aggregation_requests::builders::DescribePendingAggregationRequestsFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::describe_pending_aggregation_requests::builders::DescribePendingAggregationRequestsFluentBuilder::set_limit):<br>required: **false**<br><p>The maximum number of evaluation results returned on each page. The default is maximum. If you specify 0, Config uses the default.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::describe_pending_aggregation_requests::builders::DescribePendingAggregationRequestsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_pending_aggregation_requests::builders::DescribePendingAggregationRequestsFluentBuilder::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 /// - On success, responds with [`DescribePendingAggregationRequestsOutput`](crate::operation::describe_pending_aggregation_requests::DescribePendingAggregationRequestsOutput) with field(s):
10 /// - [`pending_aggregation_requests(Option<Vec::<PendingAggregationRequest>>)`](crate::operation::describe_pending_aggregation_requests::DescribePendingAggregationRequestsOutput::pending_aggregation_requests): <p>Returns a PendingAggregationRequests object.</p>
11 /// - [`next_token(Option<String>)`](crate::operation::describe_pending_aggregation_requests::DescribePendingAggregationRequestsOutput::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>
12 /// - On failure, responds with [`SdkError<DescribePendingAggregationRequestsError>`](crate::operation::describe_pending_aggregation_requests::DescribePendingAggregationRequestsError)
13 pub fn describe_pending_aggregation_requests(
14 &self,
15 ) -> crate::operation::describe_pending_aggregation_requests::builders::DescribePendingAggregationRequestsFluentBuilder {
16 crate::operation::describe_pending_aggregation_requests::builders::DescribePendingAggregationRequestsFluentBuilder::new(self.handle.clone())
17 }
18}