Amazon Detective · JSON Structure

Amazon Detective Get Investigation Request Structure

Request to get investigation details

Type: object Properties: 2 Required: 2
ForensicsInvestigationSecurity

GetInvestigationRequest 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 InvestigationId

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-get-investigation-request-structure.json",
  "description": "Request to get investigation details",
  "type": "object",
  "properties": {
    "GraphArn": {
      "type": "string",
      "description": "The ARN of the behavior graph.",
      "example": "arn:aws:detective:us-east-1:123456789012:graph:abc123def456"
    },
    "InvestigationId": {
      "type": "string",
      "description": "The investigation ID of the investigation report.",
      "example": "invest-abc123def456"
    }
  },
  "required": [
    "GraphArn",
    "InvestigationId"
  ],
  "name": "GetInvestigationRequest"
}