Amazon Config · JSON Structure

Config Evaluation Result Qualifier Structure

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: 4
AuditingComplianceConfiguration ManagementGovernanceSecurity

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

Properties

ConfigRuleName ResourceType ResourceId EvaluationMode

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-evaluation-result-qualifier-structure.json",
  "name": "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."
        }
      ]
    }
  }
}