Amazon GuardDuty · JSON Structure

Guardduty Scanned Item Count Structure

Total number of scanned files.

Type: object Properties: 3
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

ScannedItemCount is a JSON Structure definition published by Amazon GuardDuty, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

TotalGb Files Volumes

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-scanned-item-count-structure.json",
  "name": "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."
        }
      ]
    }
  }
}