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¶
ConfigurationAggregatorNamesThe name of the configuration aggregators.
NextTokenThe
nextTokenstring returned on a previous page that you use to get the next page of results in a paginated response.LimitThe 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"
)