Amazon Config · Schema

Compliance

Indicates whether an Amazon Web Services resource or Config rule is compliant and provides the number of contributors that affect the compliance.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
ComplianceType object
ComplianceContributorCount object
View JSON Schema on GitHub

JSON Schema

config-compliance-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-schema.json",
  "title": "Compliance",
  "description": "Indicates whether an Amazon Web Services resource or Config rule is compliant and provides the number of contributors that affect the compliance.",
  "type": "object",
  "properties": {
    "ComplianceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComplianceType"
        },
        {
          "description": "<p>Indicates whether an Amazon Web Services resource or Config rule is compliant.</p> <p>A resource is compliant if it complies with all of the Config rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules.</p> <p>A rule is compliant if all of the resources that the rule evaluates comply with it. A rule is noncompliant if any of these resources do not comply.</p> <p>Config returns the <code>INSUFFICIENT_DATA</code> value when no evaluation results are available for the Amazon Web Services resource or Config rule.</p> <p>For the <code>Compliance</code> data type, Config supports only <code>COMPLIANT</code>, <code>NON_COMPLIANT</code>, and <code>INSUFFICIENT_DATA</code> values. Config does not support the <code>NOT_APPLICABLE</code> value for the <code>Compliance</code> data type.</p>"
        }
      ]
    },
    "ComplianceContributorCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComplianceContributorCount"
        },
        {
          "description": "The number of Amazon Web Services resources or Config rules that cause a result of <code>NON_COMPLIANT</code>, up to a maximum number."
        }
      ]
    }
  }
}