Amazon Detective · Schema
Administrator
An organization admin account for Amazon Detective
ForensicsInvestigationSecurity
Properties
| Name | Type | Description |
|---|---|---|
| AccountId | string | The AWS account identifier of the Detective administrator account. |
| GraphArn | string | The ARN of the organization behavior graph. |
| DelegationTime | string | The date and time when the Detective administrator account was enabled. |
JSON Schema
{
"$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-administrator-schema.json",
"title": "Administrator",
"description": "An organization admin account for Amazon Detective",
"type": "object",
"properties": {
"AccountId": {
"type": "string",
"description": "The AWS account identifier of the Detective administrator account.",
"example": "123456789012"
},
"GraphArn": {
"type": "string",
"description": "The ARN of the organization behavior graph.",
"example": "arn:aws:detective:us-east-1:123456789012:graph:abc123def456"
},
"DelegationTime": {
"type": "string",
"format": "date-time",
"description": "The date and time when the Detective administrator account was enabled.",
"example": "2025-01-15T10:00:00Z"
}
}
}