Amazon GuardDuty · JSON Structure

Guardduty Tag Structure

Contains information about a tag associated with the EC2 instance.

Type: object Properties: 2
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Tag is a JSON Structure definition published by Amazon GuardDuty, describing 2 properties. 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-tag-structure.json",
  "name": "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."
        }
      ]
    }
  }
}