Amazon Config · Schema

AggregateConformancePackComplianceCount

The number of conformance packs that are compliant and noncompliant.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
CompliantConformancePackCount object
NonCompliantConformancePackCount object
View JSON Schema on GitHub

JSON Schema

config-aggregate-conformance-pack-compliance-count-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-aggregate-conformance-pack-compliance-count-schema.json",
  "title": "AggregateConformancePackComplianceCount",
  "description": "The number of conformance packs that are compliant and noncompliant.",
  "type": "object",
  "properties": {
    "CompliantConformancePackCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "Number of compliant conformance packs."
        }
      ]
    },
    "NonCompliantConformancePackCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "Number of noncompliant conformance packs."
        }
      ]
    }
  }
}