Amazon GuardDuty · Schema

EbsVolumesResult

Describes the configuration of scanning EBS volumes as a data source.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Status object
Reason object
View JSON Schema on GitHub

JSON Schema

guardduty-ebs-volumes-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-ebs-volumes-result-schema.json",
  "title": "EbsVolumesResult",
  "description": "Describes the configuration of scanning EBS volumes as a data source.",
  "type": "object",
  "properties": {
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DataSourceStatus"
        },
        {
          "xml": {
            "name": "status"
          },
          "description": "Describes whether scanning EBS volumes is enabled as a data source."
        }
      ]
    },
    "Reason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "reason"
          },
          "description": "Specifies the reason why scanning EBS volumes (Malware Protection) was not enabled as a data source."
        }
      ]
    }
  }
}