Amazon Config · Schema

ComplianceContributorCount

The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item, up to a maximum number.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
CappedCount object
CapExceeded object
View JSON Schema on GitHub

JSON Schema

config-compliance-contributor-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-compliance-contributor-count-schema.json",
  "title": "ComplianceContributorCount",
  "description": "The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item, up to a maximum number.",
  "type": "object",
  "properties": {
    "CappedCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item."
        }
      ]
    },
    "CapExceeded": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Indicates whether the maximum count is reached."
        }
      ]
    }
  }
}