Amazon Detective · JSON Structure

Amazon Detective Update Datasource Packages Request Structure

Request to update datasource packages for a behavior graph

Type: object Properties: 2 Required: 2
ForensicsInvestigationSecurity

UpdateDatasourcePackagesRequest is a JSON Structure definition published by Amazon Detective, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

GraphArn DatasourcePackages

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-detective/refs/heads/main/json-structure/amazon-detective-update-datasource-packages-request-structure.json",
  "description": "Request to update datasource packages for a behavior graph",
  "type": "object",
  "properties": {
    "GraphArn": {
      "type": "string",
      "description": "The ARN of the behavior graph.",
      "example": "arn:aws:detective:us-east-1:123456789012:graph:abc123def456"
    },
    "DatasourcePackages": {
      "type": "array",
      "description": "The data source package start for the behavior graph.",
      "items": {
        "type": "string",
        "enum": [
          "DETECTIVE_CORE",
          "EKS_AUDIT",
          "AD_AUDIT"
        ]
      },
      "example": [
        "EKS_AUDIT"
      ]
    }
  },
  "required": [
    "GraphArn",
    "DatasourcePackages"
  ],
  "name": "UpdateDatasourcePackagesRequest"
}