Amazon Detective · JSON Structure

Amazon Detective Get Investigation Response Structure

Response from getting investigation details

Type: object Properties: 10
ForensicsInvestigationSecurity

GetInvestigationResponse is a JSON Structure definition published by Amazon Detective, describing 10 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

GraphArn InvestigationId EntityArn EntityType CreatedTime ScopeStartTime ScopeEndTime Status Severity 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-get-investigation-response-structure.json",
  "description": "Response from getting 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"
    },
    "EntityArn": {
      "type": "string",
      "description": "The unique Amazon Resource Name (ARN) of the IAM user and IAM role.",
      "example": "arn:aws:iam::123456789012:user/jsmith"
    },
    "EntityType": {
      "type": "string",
      "description": "Type of entity. For example, IAM_ROLE or IAM_USER.",
      "enum": [
        "IAM_ROLE",
        "IAM_USER"
      ],
      "example": "IAM_ROLE"
    },
    "CreatedTime": {
      "type": "datetime",
      "description": "The creation time of the investigation report in UTC time stamp format.",
      "example": "2025-01-15T10:00:00Z"
    },
    "ScopeStartTime": {
      "type": "datetime",
      "description": "The start date and time used to set the scope time within which you want Detective to investigate.",
      "example": "2025-01-01T00:00:00Z"
    },
    "ScopeEndTime": {
      "type": "datetime",
      "description": "The end date and time used to set the scope time within which you want Detective to investigate.",
      "example": "2025-01-15T23:59:59Z"
    },
    "Status": {
      "type": "string",
      "description": "The status based on the completion status of the investigation.",
      "enum": [
        "RUNNING",
        "FAILED",
        "SUCCESSFUL"
      ],
      "example": "RUNNING"
    },
    "Severity": {
      "type": "string",
      "description": "The severity assigned is based on the likelihood and impact of the indicators of compromise discovered in the investigation.",
      "enum": [
        "INFORMATIONAL",
        "LOW",
        "MEDIUM",
        "HIGH",
        "CRITICAL"
      ],
      "example": "HIGH"
    },
    "State": {
      "type": "string",
      "description": "The current state of the investigation. An archived investigation indicates you have completed reviewing the investigation.",
      "enum": [
        "ACTIVE",
        "ARCHIVED"
      ],
      "example": "ACTIVE"
    }
  },
  "name": "GetInvestigationResponse"
}