Get Aggregate Conformance Pack Compliance Summary
configservice_get_aggregate_conformance_pack_compliance_summary | R Documentation |
Returns the count of compliant and noncompliant conformance packs across all Amazon Web Services accounts and Amazon Web Services Regions in an aggregator¶
Description¶
Returns the count of compliant and noncompliant conformance packs across all Amazon Web Services accounts and Amazon Web Services Regions in an aggregator. You can filter based on Amazon Web Services account ID or Amazon Web Services Region.
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_conformance_pack_compliance_summary(
ConfigurationAggregatorName, Filters, GroupByKey, Limit, NextToken)
Arguments¶
ConfigurationAggregatorName
[required] The name of the configuration aggregator.
Filters
Filters the results based on the
AggregateConformancePackComplianceSummaryFilters
object.GroupByKey
Groups the result based on Amazon Web Services account ID or Amazon Web Services Region.
Limit
The maximum number of results returned on each page. The default is maximum. If you specify 0, Config uses the default.
NextToken
The
nextToken
string 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(
AggregateConformancePackComplianceSummaries = list(
list(
ComplianceSummary = list(
CompliantConformancePackCount = 123,
NonCompliantConformancePackCount = 123
),
GroupName = "string"
)
),
GroupByKey = "string",
NextToken = "string"
)