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 operation returns the details for all the configuration aggregators associated with the account.
Usage¶
configservice_describe_configuration_aggregators(
ConfigurationAggregatorNames, NextToken, Limit)
Arguments¶
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, 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",
AggregatorFilters = list(
ResourceType = list(
Type = "INCLUDE",
Value = list(
"string"
)
),
ServicePrincipal = list(
Type = "INCLUDE",
Value = list(
"string"
)
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_configuration_aggregators(
ConfigurationAggregatorNames = list(
"string"
),
NextToken = "string",
Limit = 123
)