Amazon Security Lake · JSON Structure

Amazon Security Lake Log Source Structure

Represents a log source configured in Amazon Security Lake.

Type: object Properties: 3
Data LakeSecuritySIEMThreat Detection

LogSource is a JSON Structure definition published by Amazon Security Lake, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

sourceName sourceVersion sourceStatus

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-security-lake/refs/heads/main/json-structure/amazon-security-lake-log-source-structure.json",
  "name": "LogSource",
  "description": "Represents a log source configured in Amazon Security Lake.",
  "type": "object",
  "properties": {
    "sourceName": {
      "type": "string",
      "description": "The name of the log source.",
      "example": "CLOUD_TRAIL_MGMT"
    },
    "sourceVersion": {
      "type": "string",
      "description": "The version of the log source.",
      "example": "2.0"
    },
    "sourceStatus": {
      "type": "string",
      "description": "The status of the log source.",
      "enum": [
        "ACTIVE",
        "DEACTIVATED",
        "PENDING"
      ],
      "example": "ACTIVE"
    }
  }
}