Amazon GuardDuty · Schema

ScannedItemCount

Total number of scanned files.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
TotalGb object
Files object
Volumes object
View JSON Schema on GitHub

JSON Schema

guardduty-scanned-item-count-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-scanned-item-count-schema.json",
  "title": "ScannedItemCount",
  "description": "Total number of scanned files.",
  "type": "object",
  "properties": {
    "TotalGb": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "xml": {
            "name": "totalGb"
          },
          "description": "Total GB of files scanned for malware."
        }
      ]
    },
    "Files": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "xml": {
            "name": "files"
          },
          "description": "Number of files scanned."
        }
      ]
    },
    "Volumes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "xml": {
            "name": "volumes"
          },
          "description": "Total number of scanned volumes."
        }
      ]
    }
  }
}