Amazon GuardDuty · Schema

UsageFeatureResult

Contains information about the result of the total usage based on the feature.

Anomaly DetectionComplianceMachine-LearningMonitoringSecurityThreat Detection

Properties

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

JSON Schema

guardduty-usage-feature-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-feature-result-schema.json",
  "title": "UsageFeatureResult",
  "description": "Contains information about the result of the total usage based on the feature.",
  "type": "object",
  "properties": {
    "Feature": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UsageFeature"
        },
        {
          "xml": {
            "name": "feature"
          },
          "description": "The feature that generated the usage cost."
        }
      ]
    },
    "Total": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Total"
        },
        {
          "xml": {
            "name": "total"
          }
        }
      ]
    }
  }
}