OrganizationEventDetails

Detailed information about an event. A combination of an Event object, an EventDescription object, and additional metadata about the event. Returned by the DescribeEventDetailsForOrganization operation.

Health MonitoringNotificationsOperationsService Status

Properties

Name Type Description
awsAccountId object
event object
eventDescription object
eventMetadata object
View JSON Schema on GitHub

JSON Schema

health-organization-event-details-schema.json Raw ↑
{
  "$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-organization-event-details-schema.json",
  "title": "OrganizationEventDetails",
  "description": "Detailed information about an event. A combination of an <a href=\"https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html\">Event</a> object, an <a href=\"https://docs.aws.amazon.com/health/latest/APIReference/API_EventDescription.html\">EventDescription</a> object, and additional metadata about the event. Returned by the <a href=\"https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventDetailsForOrganization.html\">DescribeEventDetailsForOrganization</a> operation.",
  "type": "object",
  "properties": {
    "awsAccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/accountId"
        },
        {
          "description": "The 12-digit Amazon Web Services account numbers that contains the affected entities."
        }
      ]
    },
    "event": {
      "$ref": "#/components/schemas/Event"
    },
    "eventDescription": {
      "$ref": "#/components/schemas/EventDescription"
    },
    "eventMetadata": {
      "allOf": [
        {
          "$ref": "#/components/schemas/eventMetadata"
        },
        {
          "description": "Additional metadata about the event."
        }
      ]
    }
  }
}