Amazon GuardDuty · Schema

S3LogsConfiguration

Describes whether S3 data event logs will be enabled as a data source.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Enable object
View JSON Schema on GitHub

JSON Schema

guardduty-s3-logs-configuration-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-s3-logs-configuration-schema.json",
  "title": "S3LogsConfiguration",
  "description": "Describes whether S3 data event logs will be enabled as a data source.",
  "type": "object",
  "properties": {
    "Enable": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "xml": {
            "name": "enable"
          },
          "description": " The status of S3 data event logs as a data source."
        }
      ]
    }
  },
  "required": [
    "Enable"
  ]
}