Amazon GuardDuty · Schema

Tag

Contains information about a tag associated with the EC2 instance.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Key object
Value object
View JSON Schema on GitHub

JSON Schema

guardduty-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-tag-schema.json",
  "title": "Tag",
  "description": "Contains information about a tag associated with the EC2 instance.",
  "type": "object",
  "properties": {
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "key"
          },
          "description": "The EC2 instance tag key."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "value"
          },
          "description": "The EC2 instance tag value."
        }
      ]
    }
  }
}