Total number of scanned files.
{ "$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." } ] } } }