Amazon Config · Schema

EvaluationResultQualifier

Identifies an Config rule that evaluated an Amazon Web Services resource, and provides the type and ID of the resource that the rule evaluated.

AuditingComplianceConfiguration ManagementGovernanceSecurity

Properties

Name Type Description
ConfigRuleName object
ResourceType object
ResourceId object
EvaluationMode object
View JSON Schema on GitHub

JSON Schema

config-evaluation-result-qualifier-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-evaluation-result-qualifier-schema.json",
  "title": "EvaluationResultQualifier",
  "description": "Identifies an Config rule that evaluated an Amazon Web Services resource, and provides the type and ID of the resource that the rule evaluated.",
  "type": "object",
  "properties": {
    "ConfigRuleName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigRuleName"
        },
        {
          "description": "The name of the Config rule that was used in the evaluation."
        }
      ]
    },
    "ResourceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringWithCharLimit256"
        },
        {
          "description": "The type of Amazon Web Services resource that was evaluated."
        }
      ]
    },
    "ResourceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BaseResourceId"
        },
        {
          "description": "The ID of the evaluated Amazon Web Services resource."
        }
      ]
    },
    "EvaluationMode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EvaluationMode"
        },
        {
          "description": "The mode of an evaluation. The valid values are Detective or Proactive."
        }
      ]
    }
  }
}