Properties
| Name | Type | Description |
|---|---|---|
| AttackId | string | |
| ResourceArn | string | |
| StartTime | string | |
| EndTime | string | |
| AttackCounters | array | |
| Mitigations | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-shield/refs/heads/main/json-schema/amazon-shield-api-attack-detail-schema.json",
"title": "AttackDetail",
"description": "AttackDetail schema from api",
"type": "object",
"properties": {
"AttackId": {
"type": "string"
},
"ResourceArn": {
"type": "string"
},
"StartTime": {
"type": "string",
"format": "date-time"
},
"EndTime": {
"type": "string",
"format": "date-time"
},
"AttackCounters": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SummarizedCounter"
}
},
"Mitigations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Mitigation"
}
}
}
}