Returns compliance details for each rule in that conformance pack.
You must provide exact rule names.
configservice_describe_conformance_pack_compliance(ConformancePackName,
Filters, Limit, NextToken)
A list with the following syntax:
list(
ConformancePackName = "string",
ConformancePackRuleComplianceList = list(
list(
ConfigRuleName = "string",
ComplianceType = "COMPLIANT"|"NON_COMPLIANT"
)
),
NextToken = "string"
)
[required] Name of the conformance pack.
A ConformancePackComplianceFilters
object.
The maximum number of AWS Config rules within a conformance pack are returned on each page.
The nextToken
string returned in a previous request that you use to
request the next page of results in a paginated response.
svc$describe_conformance_pack_compliance(
ConformancePackName = "string",
Filters = list(
ConfigRuleNames = list(
"string"
),
ComplianceType = "COMPLIANT"|"NON_COMPLIANT"
),
Limit = 123,
NextToken = "string"
)