Amazon GuardDuty · JSON Structure

Guardduty Scan Condition Pair Structure

Represents key, value pair to be matched against given resource property.

Type: object Properties: 2 Required: 1
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

ScanConditionPair is a JSON Structure definition published by Amazon GuardDuty, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Key Value

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-guardduty/refs/heads/main/json-structure/guardduty-scan-condition-pair-structure.json",
  "name": "ScanConditionPair",
  "description": "Represents key, value pair to be matched against given resource property.",
  "type": "object",
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKey"
        },
        {
          "xml": {
            "name": "key"
          },
          "description": "Represents <i>key</i> <b/> in the map condition."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagValue"
        },
        {
          "xml": {
            "name": "value"
          },
          "description": "Represents optional <i>value</i> <b/> in the map condition. If not specified, only <i>key</i> <b/> will be matched."
        }
      ]
    }
  },
  "required": [
    "Key"
  ]
}