Describe Configuration Aggregators
configservice_describe_configuration_aggregators | R Documentation |
Returns the details of one or more configuration aggregators¶
Description¶
Returns the details of one or more configuration aggregators. If the configuration aggregator is not specified, this action returns the details for all the configuration aggregators associated with the account.
Usage¶
Arguments¶
ConfigurationAggregatorNames
The name of the configuration aggregators.
NextToken
The
nextToken
string returned on a previous page that you use to get the next page of results in a paginated response.Limit
The maximum number of configuration aggregators returned on each page. The default is maximum. If you specify 0, Config uses the default.
Value¶
A list with the following syntax:
list(
ConfigurationAggregators = list(
list(
ConfigurationAggregatorName = "string",
ConfigurationAggregatorArn = "string",
AccountAggregationSources = list(
list(
AccountIds = list(
"string"
),
AllAwsRegions = TRUE|FALSE,
AwsRegions = list(
"string"
)
)
),
OrganizationAggregationSource = list(
RoleArn = "string",
AwsRegions = list(
"string"
),
AllAwsRegions = TRUE|FALSE
),
CreationTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
),
CreatedBy = "string"
)
),
NextToken = "string"
)