Amazon Detective · Schema

ListGraphsResponse

Response from listing behavior graphs

ForensicsInvestigationSecurity

Properties

Name Type Description
GraphList array A list of behavior graphs that the account is an administrator account of.
NextToken string If there are more behavior graphs remaining in the results, then this is the pagination token to use.
View JSON Schema on GitHub

JSON Schema

amazon-detective-list-graphs-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-graphs-response-schema.json",
  "title": "ListGraphsResponse",
  "description": "Response from listing behavior graphs",
  "type": "object",
  "properties": {
    "GraphList": {
      "type": "array",
      "description": "A list of behavior graphs that the account is an administrator account of.",
      "items": {
        "$ref": "#/components/schemas/Graph"
      }
    },
    "NextToken": {
      "type": "string",
      "description": "If there are more behavior graphs remaining in the results, then this is the pagination token to use."
    }
  }
}