Amazon Config · Schema

ComplianceSummary

The number of Config rules or Amazon Web Services resources that are compliant and noncompliant.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
CompliantResourceCount object
NonCompliantResourceCount object
ComplianceSummaryTimestamp object
View JSON Schema on GitHub

JSON Schema

config-compliance-summary-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-compliance-summary-schema.json",
  "title": "ComplianceSummary",
  "description": "The number of Config rules or Amazon Web Services resources that are compliant and noncompliant.",
  "type": "object",
  "properties": {
    "CompliantResourceCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComplianceContributorCount"
        },
        {
          "description": "The number of Config rules or Amazon Web Services resources that are compliant, up to a maximum of 25 for rules and 100 for resources."
        }
      ]
    },
    "NonCompliantResourceCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComplianceContributorCount"
        },
        {
          "description": "The number of Config rules or Amazon Web Services resources that are noncompliant, up to a maximum of 25 for rules and 100 for resources."
        }
      ]
    },
    "ComplianceSummaryTimestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The time that Config created the compliance summary."
        }
      ]
    }
  }
}