Event
Summary information about an Health event.
Health events can be public or account-specific:
-
Public events might be service events that are not specific to an Amazon Web Services account. For example, if there is an issue with an Amazon Web Services Region, Health provides information about the event, even if you don't use services or resources in that Region.
-
Account-specific events are specific to either your Amazon Web Services account or an account in your organization. For example, if there's an issue with Amazon Elastic Compute Cloud in a Region that you use, Health provides information about the event and the affected resources in the account.
You can determine if an event is public or account-specific by using the eventScopeCode parameter. For more information, see eventScopeCode.
Properties
| Name | Type | Description |
|---|---|---|
| arn | object | |
| service | object | |
| eventTypeCode | object | |
| eventTypeCategory | object | |
| region | object | |
| availabilityZone | object | |
| startTime | object | |
| endTime | object | |
| lastUpdatedTime | object | |
| statusCode | object | |
| eventScopeCode | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-health-dashboard/refs/heads/main/json-schema/health-event-schema.json",
"title": "Event",
"description": "<p>Summary information about an Health event.</p> <p>Health events can be public or account-specific:</p> <ul> <li> <p> <i>Public events</i> might be service events that are not specific to an Amazon Web Services account. For example, if there is an issue with an Amazon Web Services Region, Health provides information about the event, even if you don't use services or resources in that Region.</p> </li> <li> <p> <i>Account-specific</i> events are specific to either your Amazon Web Services account or an account in your organization. For example, if there's an issue with Amazon Elastic Compute Cloud in a Region that you use, Health provides information about the event and the affected resources in the account.</p> </li> </ul> <p>You can determine if an event is public or account-specific by using the <code>eventScopeCode</code> parameter. For more information, see <a href=\"https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html#AWSHealth-Type-Event-eventScopeCode\">eventScopeCode</a>.</p>",
"type": "object",
"properties": {
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/eventArn"
},
{
"description": "<p>The unique identifier for the event. The event ARN has the <code>arn:aws:health:<i>event-region</i>::event/<i>SERVICE</i>/<i>EVENT_TYPE_CODE</i>/<i>EVENT_TYPE_PLUS_ID</i> </code> format.</p> <p>For example, an event ARN might look like the following:</p> <p> <code>arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456</code> </p>"
}
]
},
"service": {
"allOf": [
{
"$ref": "#/components/schemas/service"
},
{
"description": "The Amazon Web Services service that is affected by the event. For example, <code>EC2</code>, <code>RDS</code>."
}
]
},
"eventTypeCode": {
"allOf": [
{
"$ref": "#/components/schemas/eventTypeCode"
},
{
"description": "The unique identifier for the event type. The format is <code>AWS_<i>SERVICE</i>_<i>DESCRIPTION</i> </code>; for example, <code>AWS_EC2_SYSTEM_MAINTENANCE_EVENT</code>."
}
]
},
"eventTypeCategory": {
"allOf": [
{
"$ref": "#/components/schemas/eventTypeCategory"
},
{
"description": "A list of event type category codes. Possible values are <code>issue</code>, <code>accountNotification</code>, or <code>scheduledChange</code>. Currently, the <code>investigation</code> value isn't supported at this time."
}
]
},
"region": {
"allOf": [
{
"$ref": "#/components/schemas/region"
},
{
"description": "The Amazon Web Services Region name of the event."
}
]
},
"availabilityZone": {
"allOf": [
{
"$ref": "#/components/schemas/availabilityZone"
},
{
"description": "The Amazon Web Services Availability Zone of the event. For example, us-east-1a."
}
]
},
"startTime": {
"allOf": [
{
"$ref": "#/components/schemas/timestamp"
},
{
"description": "The date and time that the event began."
}
]
},
"endTime": {
"allOf": [
{
"$ref": "#/components/schemas/timestamp"
},
{
"description": "The date and time that the event ended."
}
]
},
"lastUpdatedTime": {
"allOf": [
{
"$ref": "#/components/schemas/timestamp"
},
{
"description": "The most recent date and time that the event was updated."
}
]
},
"statusCode": {
"allOf": [
{
"$ref": "#/components/schemas/eventStatusCode"
},
{
"description": "The most recent status of the event. Possible values are <code>open</code>, <code>closed</code>, and <code>upcoming</code>."
}
]
},
"eventScopeCode": {
"allOf": [
{
"$ref": "#/components/schemas/eventScopeCode"
},
{
"description": "<p>This parameter specifies if the Health event is a public Amazon Web Services service event or an account-specific event.</p> <ul> <li> <p>If the <code>eventScopeCode</code> value is <code>PUBLIC</code>, then the <code>affectedAccounts</code> value is always empty.</p> </li> <li> <p>If the <code>eventScopeCode</code> value is <code>ACCOUNT_SPECIFIC</code>, then the <code>affectedAccounts</code> value lists the affected Amazon Web Services accounts in your organization. For example, if an event affects a service such as Amazon Elastic Compute Cloud and you have Amazon Web Services accounts that use that service, those account IDs appear in the response.</p> </li> <li> <p>If the <code>eventScopeCode</code> value is <code>NONE</code>, then the <code>eventArn</code> that you specified in the request is invalid or doesn't exist.</p> </li> </ul>"
}
]
}
}
}