Describe Aggregate Compliance By Conformance Packs
configservice_describe_aggregate_compliance_by_conformance_packs | R Documentation |
Returns a list of the existing and deleted 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 existing and deleted 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
|
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 |
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"
)
Request syntax¶
svc$describe_aggregate_compliance_by_conformance_packs(
ConfigurationAggregatorName = "string",
Filters = list(
ConformancePackName = "string",
ComplianceType = "COMPLIANT"|"NON_COMPLIANT"|"INSUFFICIENT_DATA",
AccountId = "string",
AwsRegion = "string"
),
Limit = 123,
NextToken = "string"
)