ConfigService / Client / describe_aggregation_authorizations

describe_aggregation_authorizations#

ConfigService.Client.describe_aggregation_authorizations(**kwargs)#

Returns a list of authorizations granted to various aggregator accounts and regions.

See also: AWS API Documentation

Request Syntax

response = client.describe_aggregation_authorizations(
    Limit=123,
    NextToken='string'
)
Parameters:
  • Limit (integer) – The maximum number of AggregationAuthorizations 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

{
    'AggregationAuthorizations': [
        {
            'AggregationAuthorizationArn': 'string',
            'AuthorizedAccountId': 'string',
            'AuthorizedAwsRegion': 'string',
            'CreationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • AggregationAuthorizations (list) –

      Returns a list of authorizations granted to various aggregator accounts and regions.

      • (dict) –

        An object that represents the authorizations granted to aggregator accounts and regions.

        • AggregationAuthorizationArn (string) –

          The Amazon Resource Name (ARN) of the aggregation object.

        • AuthorizedAccountId (string) –

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

        • AuthorizedAwsRegion (string) –

          The region authorized to collect aggregated data.

        • CreationTime (datetime) –

          The time stamp when the aggregation authorization was created.

    • 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