Amazon Detective · Example Payload

Amazon Detective List Investigations Request Example

ForensicsInvestigationSecurity

Amazon Detective List Investigations Request Example is an example object payload from Amazon Detective, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

GraphArnNextTokenMaxResultsFilterCriteriaSortCriteria

Example Payload

Raw ↑
{
  "GraphArn": "arn:aws:detective:us-east-1:123456789012:graph:abc123def456",
  "NextToken": "abc123token",
  "MaxResults": 100,
  "FilterCriteria": {
    "Severity": {
      "Value": "LOW"
    },
    "Status": {
      "Value": "FAILED"
    },
    "State": {
      "Value": "ACTIVE"
    }
  },
  "SortCriteria": {
    "Field": "SEVERITY",
    "SortOrder": "ASC"
  }
}