Get Aggregate Config Rule Compliance Summary
| configservice_get_aggregate_config_rule_compliance_summary | R Documentation |
Returns the number of compliant and noncompliant rules for one or more accounts and regions in an aggregator¶
Description¶
Returns the number of compliant and noncompliant rules for one or more accounts and regions in an aggregator.
The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page.
Usage¶
configservice_get_aggregate_config_rule_compliance_summary(
ConfigurationAggregatorName, Filters, GroupByKey, Limit, NextToken)
Arguments¶
ConfigurationAggregatorName[required] The name of the configuration aggregator.
FiltersFilters the results based on the ConfigRuleComplianceSummaryFilters object.
GroupByKeyGroups the result based on ACCOUNT_ID or AWS_REGION.
LimitThe maximum number of evaluation results returned on each page. The default is 1000. You cannot specify a number greater than 1000. If you specify 0, Config uses the default.
NextTokenThe
nextTokenstring returned on a previous page that you use to get the next page of results in a paginated response.
Value¶
A list with the following syntax:
list(
GroupByKey = "string",
AggregateComplianceCounts = list(
list(
GroupName = "string",
ComplianceSummary = list(
CompliantResourceCount = list(
CappedCount = 123,
CapExceeded = TRUE|FALSE
),
NonCompliantResourceCount = list(
CappedCount = 123,
CapExceeded = TRUE|FALSE
),
ComplianceSummaryTimestamp = as.POSIXct(
"2015-01-01"
)
)
)
),
NextToken = "string"
)