Amazon Detective · Schema

ListDatasourcePackagesResponse

Response from listing datasource packages

ForensicsInvestigationSecurity

Properties

Name Type Description
DatasourcePackages object Details on the data source packages active in the behavior graph.
NextToken string For requests to get the next page of results.
View JSON Schema on GitHub

JSON Schema

amazon-detective-list-datasource-packages-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-detective/refs/heads/main/json-schema/amazon-detective-list-datasource-packages-response-schema.json",
  "title": "ListDatasourcePackagesResponse",
  "description": "Response from listing datasource packages",
  "type": "object",
  "properties": {
    "DatasourcePackages": {
      "type": "object",
      "description": "Details on the data source packages active in the behavior graph.",
      "additionalProperties": {
        "$ref": "#/components/schemas/DatasourcePackageIngestDetail"
      }
    },
    "NextToken": {
      "type": "string",
      "description": "For requests to get the next page of results."
    }
  }
}