Amazon Detective · JSON Structure

Amazon Detective Update Investigation State Request Structure

Request to update the state of an investigation

Type: object Properties: 3 Required: 3
ForensicsInvestigationSecurity

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

Properties

GraphArn InvestigationId State

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-investigation-state-request-structure.json",
  "description": "Request to update the state of an investigation",
  "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"
    },
    "State": {
      "type": "string",
      "description": "The current state of the investigation. An archived investigation indicates you have completed reviewing the investigation.",
      "enum": [
        "ACTIVE",
        "ARCHIVED"
      ],
      "example": "ARCHIVED"
    }
  },
  "required": [
    "GraphArn",
    "InvestigationId",
    "State"
  ],
  "name": "UpdateInvestigationStateRequest"
}