Describe Aggregate Compliance By Conformance Packs
configservice_describe_aggregate_compliance_by_conformance_packs | R Documentation |
Returns a list of the conformance packs and their associated compliance status with the count of compliant and noncompliant Config rules within each conformance pack¶
Description¶
Returns a list of the conformance packs and their associated compliance status with the count of compliant and noncompliant Config rules within each conformance pack. Also returns the total rule count which includes compliant rules, noncompliant rules, and rules that cannot be evaluated due to insufficient data.
The results can return an empty result page, but if you have a
nextToken
, the results are displayed on the next page.
Usage¶
configservice_describe_aggregate_compliance_by_conformance_packs(
ConfigurationAggregatorName, Filters, Limit, NextToken)
Arguments¶
ConfigurationAggregatorName
[required] The name of the configuration aggregator.
Filters
Filters the result by
AggregateConformancePackComplianceFilters
object.Limit
The maximum number of conformance packs compliance details 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(
AggregateComplianceByConformancePacks = list(
list(
ConformancePackName = "string",
Compliance = list(
ComplianceType = "COMPLIANT"|"NON_COMPLIANT"|"INSUFFICIENT_DATA",
CompliantRuleCount = 123,
NonCompliantRuleCount = 123,
TotalRuleCount = 123
),
AccountId = "string",
AwsRegion = "string"
)
),
NextToken = "string"
)