Amazon Config · JSON Structure

Config Aggregate Conformance Pack Compliance Count Structure

The number of conformance packs that are compliant and noncompliant.

Type: object Properties: 2
AuditingComplianceConfiguration ManagementGovernanceSecurity

AggregateConformancePackComplianceCount is a JSON Structure definition published by Amazon Config, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

CompliantConformancePackCount NonCompliantConformancePackCount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-structure/config-aggregate-conformance-pack-compliance-count-structure.json",
  "name": "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."
        }
      ]
    }
  }
}