Amazon GuardDuty · Schema

ProductCode

Contains information about the product code for the EC2 instance.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Code object
ProductType object
View JSON Schema on GitHub

JSON Schema

guardduty-product-code-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-product-code-schema.json",
  "title": "ProductCode",
  "description": "Contains information about the product code for the EC2 instance.",
  "type": "object",
  "properties": {
    "Code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "productCodeId"
          },
          "description": "The product code information."
        }
      ]
    },
    "ProductType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "productCodeType"
          },
          "description": "The product code type."
        }
      ]
    }
  }
}