ConfigService / Client / describe_pending_aggregation_requests

describe_pending_aggregation_requests#

ConfigService.Client.describe_pending_aggregation_requests(**kwargs)#

Returns a list of all pending aggregation requests.

See also: AWS API Documentation

Request Syntax

response = client.describe_pending_aggregation_requests(
    Limit=123,
    NextToken='string'
)
Parameters:
  • Limit (integer) – The maximum number of evaluation results returned on each page. The default is maximum. If you specify 0, Config uses the default.

  • NextToken (string) – The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

Return type:

dict

Returns:

Response Syntax

{
    'PendingAggregationRequests': [
        {
            'RequesterAccountId': 'string',
            'RequesterAwsRegion': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • PendingAggregationRequests (list) –

      Returns a PendingAggregationRequests object.

      • (dict) –

        An object that represents the account ID and region of an aggregator account that is requesting authorization but is not yet authorized.

        • RequesterAccountId (string) –

          The 12-digit account ID of the account requesting to aggregate data.

        • RequesterAwsRegion (string) –

          The region requesting to aggregate data.

    • NextToken (string) –

      The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

Exceptions