Learn R Programming

paws.management (version 0.1.12)

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

Description

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

Usage

configservice_describe_aggregation_authorizations(Limit, NextToken)

Value

A list with the following syntax:

list(
  AggregationAuthorizations = list(
    list(
      AggregationAuthorizationArn = "string",
      AuthorizedAccountId = "string",
      AuthorizedAwsRegion = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Arguments

Limit

The maximum number of AggregationAuthorizations returned on each page. The default is maximum. If you specify 0, AWS Config uses the default.

NextToken

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

Request syntax

svc$describe_aggregation_authorizations(
  Limit = 123,
  NextToken = "string"
)