Description Usage Arguments Value Request syntax
View source: R/configservice_operations.R
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.
1 2 | configservice_describe_configuration_aggregators(
ConfigurationAggregatorNames, NextToken, Limit)
|
ConfigurationAggregatorNames |
The name of the configuration aggregators. |
NextToken |
The |
Limit |
The maximum number of configuration aggregators returned on each page. The default is maximum. If you specify 0, AWS Config uses the default. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 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"
)
|
1 2 3 4 5 6 7 | svc$describe_configuration_aggregators(
ConfigurationAggregatorNames = list(
"string"
),
NextToken = "string",
Limit = 123
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.