Amazon GuardDuty · Schema

UsageDataSourceResult

Contains information on the result of usage based on data source type.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
DataSource object
Total object
View JSON Schema on GitHub

JSON Schema

guardduty-usage-data-source-result-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-usage-data-source-result-schema.json",
  "title": "UsageDataSourceResult",
  "description": "Contains information on the result of usage based on data source type.",
  "type": "object",
  "properties": {
    "DataSource": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DataSource"
        },
        {
          "xml": {
            "name": "dataSource"
          },
          "description": "The data source type that generated usage."
        }
      ]
    },
    "Total": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Total"
        },
        {
          "xml": {
            "name": "total"
          },
          "description": "Represents the total of usage for the specified data source."
        }
      ]
    }
  }
}