Amazon GuardDuty · Schema

Total

Contains the total usage with the corresponding currency unit for that value.

Anomaly DetectionComplianceMachine-LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Amount object
Unit object
View JSON Schema on GitHub

JSON Schema

guardduty-total-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-total-schema.json",
  "title": "Total",
  "description": "Contains the total usage with the corresponding currency unit for that value.",
  "type": "object",
  "properties": {
    "Amount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "amount"
          },
          "description": "The total usage."
        }
      ]
    },
    "Unit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "unit"
          },
          "description": "The currency unit that the amount is given in."
        }
      ]
    }
  }
}