AWS Health APIs and Notifications

2025/11/19 - AWS Health APIs and Notifications - 6 updated api methods

Changes  Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter.

DescribeEventAggregates (updated) Link ¶
Changes (request)
{'filter': {'actionabilities': ['ACTION_REQUIRED | ACTION_MAY_BE_REQUIRED | '
                                'INFORMATIONAL'],
            'personas': ['OPERATIONS | SECURITY | BILLING']}}

Returns the number of events of each event type (issue, scheduled change, and account notification). If no filter is specified, the counts of all events in each category are returned.

See also: AWS API Documentation

Request Syntax

client.describe_event_aggregates(
    filter={
        'actionabilities': [
            'ACTION_REQUIRED'|'ACTION_MAY_BE_REQUIRED'|'INFORMATIONAL',
        ],
        'eventArns': [
            'string',
        ],
        'eventTypeCodes': [
            'string',
        ],
        'services': [
            'string',
        ],
        'regions': [
            'string',
        ],
        'availabilityZones': [
            'string',
        ],
        'startTimes': [
            {
                'from': datetime(2015, 1, 1),
                'to': datetime(2015, 1, 1)
            },
        ],
        'endTimes': [
            {
                'from': datetime(2015, 1, 1),
                'to': datetime(2015, 1, 1)
            },
        ],
        'lastUpdatedTimes': [
            {
                'from': datetime(2015, 1, 1),
                'to': datetime(2015, 1, 1)
            },
        ],
        'entityArns': [
            'string',
        ],
        'entityValues': [
            'string',
        ],
        'eventTypeCategories': [
            'issue'|'accountNotification'|'scheduledChange'|'investigation',
        ],
        'tags': [
            {
                'string': 'string'
            },
        ],
        'eventStatusCodes': [
            'open'|'closed'|'upcoming',
        ],
        'personas': [
            'OPERATIONS'|'SECURITY'|'BILLING',
        ]
    },
    aggregateField='eventTypeCategory',
    maxResults=123,
    nextToken='string'
)
type filter:

dict

param filter:

Values to narrow the results returned.

  • actionabilities (list) --

    A list of actionability values to filter events. Use this to filter events based on whether they require action ( ACTION_REQUIRED), may require action ( ACTION_MAY_BE_REQUIRED) or are informational ( INFORMATIONAL).

    • (string) --

  • eventArns (list) --

    A list of event ARNs (unique identifiers). For example: "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101"

    • (string) --

  • eventTypeCodes (list) --

    A list of unique identifiers for event types. For example, "AWS_EC2_SYSTEM_MAINTENANCE_EVENT","AWS_RDS_MAINTENANCE_SCHEDULED".

    • (string) --

  • services (list) --

    The Amazon Web Services services associated with the event. For example, EC2, RDS.

    • (string) --

  • regions (list) --

    A list of Amazon Web Services Regions.

    • (string) --

  • availabilityZones (list) --

    A list of Amazon Web Services Availability Zones.

    • (string) --

  • startTimes (list) --

    A list of dates and times that the event began.

    • (dict) --

      A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp ( startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

      • from (datetime) --

        The starting date and time of a time range.

      • to (datetime) --

        The ending date and time of a time range.

  • endTimes (list) --

    A list of dates and times that the event ended.

    • (dict) --

      A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp ( startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

      • from (datetime) --

        The starting date and time of a time range.

      • to (datetime) --

        The ending date and time of a time range.

  • lastUpdatedTimes (list) --

    A list of dates and times that the event was last updated.

    • (dict) --

      A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp ( startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

      • from (datetime) --

        The starting date and time of a time range.

      • to (datetime) --

        The ending date and time of a time range.

  • entityArns (list) --

    A list of entity ARNs (unique identifiers).

    • (string) --

  • entityValues (list) --

    A list of entity identifiers, such as EC2 instance IDs ( i-34ab692e) or EBS volumes ( vol-426ab23e).

    • (string) --

  • eventTypeCategories (list) --

    A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

    • (string) --

  • tags (list) --

    A map of entity tags attached to the affected entity.

    • (dict) --

      • (string) --

        • (string) --

  • eventStatusCodes (list) --

    A list of event status codes.

    • (string) --

  • personas (list) --

    A list of persona values to filter events. Use this to filter events based on their target audience: OPERATIONS, SECURITY, or BILLING.

    • (string) --

type aggregateField:

string

param aggregateField:

[REQUIRED]

The only currently supported value is eventTypeCategory.

type maxResults:

integer

param maxResults:

The maximum number of items to return in one batch, between 10 and 100, inclusive.

type nextToken:

string

param nextToken:

If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next batch of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.

rtype:

dict

returns:

Response Syntax

{
    'eventAggregates': [
        {
            'aggregateValue': 'string',
            'count': 123
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • eventAggregates (list) --

      The number of events in each category that meet the optional filter criteria.

      • (dict) --

        The number of events of each issue type. Returned by the DescribeEventAggregates operation.

        • aggregateValue (string) --

          The issue type for the associated count.

        • count (integer) --

          The number of events of the associated issue type.

    • nextToken (string) --

      If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next batch of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.

DescribeEventDetails (updated) Link ¶
Changes (response)
{'successfulSet': {'event': {'actionability': 'ACTION_REQUIRED | '
                                              'ACTION_MAY_BE_REQUIRED | '
                                              'INFORMATIONAL',
                             'personas': ['OPERATIONS | SECURITY | BILLING']}}}

Returns detailed information about one or more specified events. Information includes standard event data (Amazon Web Services Region, service, and so on, as returned by DescribeEvents), a detailed event description, and possible additional metadata that depends upon the nature of the event. Affected entities are not included. To retrieve the entities, use the DescribeAffectedEntities operation.

If a specified event can't be retrieved, an error message is returned for that event.

See also: AWS API Documentation

Request Syntax

client.describe_event_details(
    eventArns=[
        'string',
    ],
    locale='string'
)
type eventArns:

list

param eventArns:

[REQUIRED]

A list of event ARNs (unique identifiers). For example: "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101"

  • (string) --

type locale:

string

param locale:

The locale (language) to return information in. English (en) is the default and the only supported value at this time.

rtype:

dict

returns:

Response Syntax

{
    'successfulSet': [
        {
            'event': {
                'arn': 'string',
                'service': 'string',
                'eventTypeCode': 'string',
                'eventTypeCategory': 'issue'|'accountNotification'|'scheduledChange'|'investigation',
                'region': 'string',
                'availabilityZone': 'string',
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1),
                'lastUpdatedTime': datetime(2015, 1, 1),
                'statusCode': 'open'|'closed'|'upcoming',
                'eventScopeCode': 'PUBLIC'|'ACCOUNT_SPECIFIC'|'NONE',
                'actionability': 'ACTION_REQUIRED'|'ACTION_MAY_BE_REQUIRED'|'INFORMATIONAL',
                'personas': [
                    'OPERATIONS'|'SECURITY'|'BILLING',
                ]
            },
            'eventDescription': {
                'latestDescription': 'string'
            },
            'eventMetadata': {
                'string': 'string'
            }
        },
    ],
    'failedSet': [
        {
            'eventArn': 'string',
            'errorName': 'string',
            'errorMessage': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • successfulSet (list) --

      Information about the events that could be retrieved.

      • (dict) --

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

        • event (dict) --

          Summary information about the event.

          • arn (string) --

            The unique identifier for the event. The event ARN has the arn:aws:health:event-region::event/SERVICE/EVENT_TYPE_CODE/EVENT_TYPE_PLUS_ID format.

            For example, an event ARN might look like the following:

            arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456

          • service (string) --

            The Amazon Web Services service that is affected by the event. For example, EC2, RDS.

          • eventTypeCode (string) --

            The unique identifier for the event type. The format is AWS_SERVICE_DESCRIPTION ``; for example, ``AWS_EC2_SYSTEM_MAINTENANCE_EVENT.

          • eventTypeCategory (string) --

            A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

          • region (string) --

            The Amazon Web Services Region name of the event.

          • availabilityZone (string) --

            The Amazon Web Services Availability Zone of the event. For example, us-east-1a.

          • startTime (datetime) --

            The date and time that the event began.

          • endTime (datetime) --

            The date and time that the event ended.

          • lastUpdatedTime (datetime) --

            The most recent date and time that the event was updated.

          • statusCode (string) --

            The most recent status of the event. Possible values are open, closed, and upcoming.

          • eventScopeCode (string) --

            This parameter specifies if the Health event is a public Amazon Web Services service event or an account-specific event.

            • If the eventScopeCode value is PUBLIC, then the affectedAccounts value is always empty.

            • If the eventScopeCode value is ACCOUNT_SPECIFIC, then the affectedAccounts 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.

            • If the eventScopeCode value is NONE, then the eventArn that you specified in the request is invalid or doesn't exist.

          • actionability (string) --

            The actionability classification of the event. Possible values are ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED and INFORMATIONAL. Events with ACTION_REQUIRED actionability require customer action to resolve or mitigate the event. Events with ACTION_MAY_BE_REQUIRED actionability indicates that the current status is unknown or conditional and inspection is needed to determine if action is required. Events with INFORMATIONAL actionability are provided for awareness and do not require immediate action.

          • personas (list) --

            A list of persona classifications that indicate the target audience for the event. Possible values are OPERATIONS, SECURITY, and BILLING. Events can be associated with multiple personas to indicate relevance to different teams or roles within an organization.

            • (string) --

        • eventDescription (dict) --

          The most recent description of the event.

          • latestDescription (string) --

            The most recent description of the event.

        • eventMetadata (dict) --

          Additional metadata about the event.

          • (string) --

            • (string) --

    • failedSet (list) --

      Error messages for any events that could not be retrieved.

      • (dict) --

        Error information returned when a DescribeEventDetails operation can't find a specified event.

        • eventArn (string) --

          The unique identifier for the event. The event ARN has the arn:aws:health:event-region::event/SERVICE/EVENT_TYPE_CODE/EVENT_TYPE_PLUS_ID format.

          For example, an event ARN might look like the following:

          arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456

        • errorName (string) --

          The name of the error.

        • errorMessage (string) --

          A message that describes the error.

DescribeEventDetailsForOrganization (updated) Link ¶
Changes (response)
{'successfulSet': {'event': {'actionability': 'ACTION_REQUIRED | '
                                              'ACTION_MAY_BE_REQUIRED | '
                                              'INFORMATIONAL',
                             'personas': ['OPERATIONS | SECURITY | BILLING']}}}

Returns detailed information about one or more specified events for one or more Amazon Web Services accounts in your organization. This information includes standard event data (such as the Amazon Web Services Region and service), an event description, and (depending on the event) possible metadata. This operation doesn't return affected entities, such as the resources related to the event. To return affected entities, use the DescribeAffectedEntitiesForOrganization operation.

When you call the DescribeEventDetailsForOrganization operation, specify the organizationEventDetailFilters object in the request. Depending on the Health event type, note the following differences:

  • To return event details for a public event, you must specify a null value for the awsAccountId parameter. If you specify an account ID for a public event, Health returns an error message because public events aren't specific to an account.

  • To return event details for an event that is specific to an account in your organization, you must specify the awsAccountId parameter in the request. If you don't specify an account ID, Health returns an error message because the event is specific to an account in your organization.

For more information, see Event.

See also: AWS API Documentation

Request Syntax

client.describe_event_details_for_organization(
    organizationEventDetailFilters=[
        {
            'eventArn': 'string',
            'awsAccountId': 'string'
        },
    ],
    locale='string'
)
type organizationEventDetailFilters:

list

param organizationEventDetailFilters:

[REQUIRED]

A set of JSON elements that includes the awsAccountId and the eventArn.

  • (dict) --

    The values used to filter results from the DescribeEventDetailsForOrganization and DescribeAffectedEntitiesForOrganization operations.

    • eventArn (string) -- [REQUIRED]

      The unique identifier for the event. The event ARN has the arn:aws:health:event-region::event/SERVICE/EVENT_TYPE_CODE/EVENT_TYPE_PLUS_ID format.

      For example, an event ARN might look like the following:

      arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456

    • awsAccountId (string) --

      The 12-digit Amazon Web Services account numbers that contains the affected entities.

type locale:

string

param locale:

The locale (language) to return information in. English (en) is the default and the only supported value at this time.

rtype:

dict

returns:

Response Syntax

{
    'successfulSet': [
        {
            'awsAccountId': 'string',
            'event': {
                'arn': 'string',
                'service': 'string',
                'eventTypeCode': 'string',
                'eventTypeCategory': 'issue'|'accountNotification'|'scheduledChange'|'investigation',
                'region': 'string',
                'availabilityZone': 'string',
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1),
                'lastUpdatedTime': datetime(2015, 1, 1),
                'statusCode': 'open'|'closed'|'upcoming',
                'eventScopeCode': 'PUBLIC'|'ACCOUNT_SPECIFIC'|'NONE',
                'actionability': 'ACTION_REQUIRED'|'ACTION_MAY_BE_REQUIRED'|'INFORMATIONAL',
                'personas': [
                    'OPERATIONS'|'SECURITY'|'BILLING',
                ]
            },
            'eventDescription': {
                'latestDescription': 'string'
            },
            'eventMetadata': {
                'string': 'string'
            }
        },
    ],
    'failedSet': [
        {
            'awsAccountId': 'string',
            'eventArn': 'string',
            'errorName': 'string',
            'errorMessage': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • successfulSet (list) --

      Information about the events that could be retrieved.

      • (dict) --

        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.

        • awsAccountId (string) --

          The 12-digit Amazon Web Services account numbers that contains the affected entities.

        • event (dict) --

          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.

          • arn (string) --

            The unique identifier for the event. The event ARN has the arn:aws:health:event-region::event/SERVICE/EVENT_TYPE_CODE/EVENT_TYPE_PLUS_ID format.

            For example, an event ARN might look like the following:

            arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456

          • service (string) --

            The Amazon Web Services service that is affected by the event. For example, EC2, RDS.

          • eventTypeCode (string) --

            The unique identifier for the event type. The format is AWS_SERVICE_DESCRIPTION ``; for example, ``AWS_EC2_SYSTEM_MAINTENANCE_EVENT.

          • eventTypeCategory (string) --

            A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

          • region (string) --

            The Amazon Web Services Region name of the event.

          • availabilityZone (string) --

            The Amazon Web Services Availability Zone of the event. For example, us-east-1a.

          • startTime (datetime) --

            The date and time that the event began.

          • endTime (datetime) --

            The date and time that the event ended.

          • lastUpdatedTime (datetime) --

            The most recent date and time that the event was updated.

          • statusCode (string) --

            The most recent status of the event. Possible values are open, closed, and upcoming.

          • eventScopeCode (string) --

            This parameter specifies if the Health event is a public Amazon Web Services service event or an account-specific event.

            • If the eventScopeCode value is PUBLIC, then the affectedAccounts value is always empty.

            • If the eventScopeCode value is ACCOUNT_SPECIFIC, then the affectedAccounts 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.

            • If the eventScopeCode value is NONE, then the eventArn that you specified in the request is invalid or doesn't exist.

          • actionability (string) --

            The actionability classification of the event. Possible values are ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED and INFORMATIONAL. Events with ACTION_REQUIRED actionability require customer action to resolve or mitigate the event. Events with ACTION_MAY_BE_REQUIRED actionability indicates that the current status is unknown or conditional and inspection is needed to determine if action is required. Events with INFORMATIONAL actionability are provided for awareness and do not require immediate action.

          • personas (list) --

            A list of persona classifications that indicate the target audience for the event. Possible values are OPERATIONS, SECURITY, and BILLING. Events can be associated with multiple personas to indicate relevance to different teams or roles within an organization.

            • (string) --

        • eventDescription (dict) --

          The detailed description of the event. Included in the information returned by the DescribeEventDetails operation.

          • latestDescription (string) --

            The most recent description of the event.

        • eventMetadata (dict) --

          Additional metadata about the event.

          • (string) --

            • (string) --

    • failedSet (list) --

      Error messages for any events that could not be retrieved.

      • (dict) --

        Error information returned when a DescribeEventDetailsForOrganization operation can't find a specified event.

        • awsAccountId (string) --

          Error information returned when a DescribeEventDetailsForOrganization operation can't find a specified event.

        • eventArn (string) --

          The unique identifier for the event. The event ARN has the arn:aws:health:event-region::event/SERVICE/EVENT_TYPE_CODE/EVENT_TYPE_PLUS_ID format.

          For example, an event ARN might look like the following:

          arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456

        • errorName (string) --

          The name of the error.

        • errorMessage (string) --

          A message that describes the error.

          If you call the DescribeEventDetailsForOrganization operation and receive one of the following errors, follow the recommendations in the message:

          • We couldn't find a public event that matches your request. To find an event that is account specific, you must enter an Amazon Web Services account ID in the request.

          • We couldn't find an account specific event for the specified Amazon Web Services account. To find an event that is public, you must enter a null value for the Amazon Web Services account ID in the request.

          • Your Amazon Web Services account doesn't include the Amazon Web Services Support plan required to use the Health API. You must have either a Business, Enterprise On-Ramp, or Enterprise Support plan.

DescribeEventTypes (updated) Link ¶
Changes (request, response)
Request
{'filter': {'actionabilities': ['ACTION_REQUIRED | ACTION_MAY_BE_REQUIRED | '
                                'INFORMATIONAL'],
            'personas': ['OPERATIONS | SECURITY | BILLING']}}
Response
{'eventTypes': {'actionability': 'ACTION_REQUIRED | ACTION_MAY_BE_REQUIRED | '
                                 'INFORMATIONAL',
                'personas': ['OPERATIONS | SECURITY | BILLING']}}

Returns the event types that meet the specified filter criteria. You can use this API operation to find information about the Health event, such as the category, Amazon Web Services service, and event code. The metadata for each event appears in the EventType object.

If you don't specify a filter criteria, the API operation returns all event types, in no particular order.

See also: AWS API Documentation

Request Syntax

client.describe_event_types(
    filter={
        'eventTypeCodes': [
            'string',
        ],
        'services': [
            'string',
        ],
        'eventTypeCategories': [
            'issue'|'accountNotification'|'scheduledChange'|'investigation',
        ],
        'actionabilities': [
            'ACTION_REQUIRED'|'ACTION_MAY_BE_REQUIRED'|'INFORMATIONAL',
        ],
        'personas': [
            'OPERATIONS'|'SECURITY'|'BILLING',
        ]
    },
    locale='string',
    nextToken='string',
    maxResults=123
)
type filter:

dict

param filter:

Values to narrow the results returned.

  • eventTypeCodes (list) --

    A list of event type codes.

    • (string) --

  • services (list) --

    The Amazon Web Services services associated with the event. For example, EC2, RDS.

    • (string) --

  • eventTypeCategories (list) --

    A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

    • (string) --

  • actionabilities (list) --

    A list of actionability values to filter event types. Possible values are ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED and INFORMATIONAL.

    • (string) --

  • personas (list) --

    A list of persona classifications to filter event types. Possible values are OPERATIONS, SECURITY, and BILLING.

    • (string) --

type locale:

string

param locale:

The locale (language) to return information in. English (en) is the default and the only supported value at this time.

type nextToken:

string

param nextToken:

If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next batch of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.

type maxResults:

integer

param maxResults:

The maximum number of items to return in one batch, between 10 and 100, inclusive.

rtype:

dict

returns:

Response Syntax

{
    'eventTypes': [
        {
            'service': 'string',
            'code': 'string',
            'category': 'issue'|'accountNotification'|'scheduledChange'|'investigation',
            'actionability': 'ACTION_REQUIRED'|'ACTION_MAY_BE_REQUIRED'|'INFORMATIONAL',
            'personas': [
                'OPERATIONS'|'SECURITY'|'BILLING',
            ]
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • eventTypes (list) --

      A list of event types that match the filter criteria. Event types have a category ( issue, accountNotification, or scheduledChange), a service (for example, EC2, RDS, DATAPIPELINE, BILLING), and a code (in the format AWS_SERVICE_DESCRIPTION ``; for example, ``AWS_EC2_SYSTEM_MAINTENANCE_EVENT).

      • (dict) --

        Contains the metadata about a type of event that is reported by Health. The EventType shows the category, service, and the event type code of the event. For example, an issue might be the category, EC2 the service, and AWS_EC2_SYSTEM_MAINTENANCE_EVENT the event type code.

        You can use the DescribeEventTypes API operation to return this information about an event.

        You can also use the Amazon CloudWatch Events console to create a rule so that you can get notified or take action when Health delivers a specific event to your Amazon Web Services account. For more information, see Monitor for Health events with Amazon CloudWatch Events in the Health User Guide.

        • service (string) --

          The Amazon Web Services service that is affected by the event. For example, EC2, RDS.

        • code (string) --

          The unique identifier for the event type. The format is AWS_SERVICE_DESCRIPTION ``; for example, ``AWS_EC2_SYSTEM_MAINTENANCE_EVENT.

        • category (string) --

          A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

        • actionability (string) --

          The actionability classification of the event. Possible values are ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED and INFORMATIONAL. Events with ACTION_REQUIRED actionability require customer action to resolve or mitigate the event. Events with ACTION_MAY_BE_REQUIRED actionability indicates that the current status is unknown or conditional and inspection is needed to determine if action is required. Events with INFORMATIONAL actionability are provided for awareness and do not require immediate action.

        • personas (list) --

          A list of persona classifications that indicate the target audience for the event. Possible values are OPERATIONS, SECURITY, and BILLING. Events can be associated with multiple personas to indicate relevance to different teams or roles within an organization.

          • (string) --

    • nextToken (string) --

      If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next batch of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.

DescribeEvents (updated) Link ¶
Changes (request, response)
Request
{'filter': {'actionabilities': ['ACTION_REQUIRED | ACTION_MAY_BE_REQUIRED | '
                                'INFORMATIONAL'],
            'personas': ['OPERATIONS | SECURITY | BILLING']}}
Response
{'events': {'actionability': 'ACTION_REQUIRED | ACTION_MAY_BE_REQUIRED | '
                             'INFORMATIONAL',
            'personas': ['OPERATIONS | SECURITY | BILLING']}}

Returns information about events that meet the specified filter criteria. Events are returned in a summary form and do not include the detailed description, any additional metadata that depends on the event type, or any affected resources. To retrieve that information, use the DescribeEventDetails and DescribeAffectedEntities operations.

If no filter criteria are specified, all events are returned. Results are sorted by lastModifiedTime, starting with the most recent event.

See also: AWS API Documentation

Request Syntax

client.describe_events(
    filter={
        'actionabilities': [
            'ACTION_REQUIRED'|'ACTION_MAY_BE_REQUIRED'|'INFORMATIONAL',
        ],
        'eventArns': [
            'string',
        ],
        'eventTypeCodes': [
            'string',
        ],
        'services': [
            'string',
        ],
        'regions': [
            'string',
        ],
        'availabilityZones': [
            'string',
        ],
        'startTimes': [
            {
                'from': datetime(2015, 1, 1),
                'to': datetime(2015, 1, 1)
            },
        ],
        'endTimes': [
            {
                'from': datetime(2015, 1, 1),
                'to': datetime(2015, 1, 1)
            },
        ],
        'lastUpdatedTimes': [
            {
                'from': datetime(2015, 1, 1),
                'to': datetime(2015, 1, 1)
            },
        ],
        'entityArns': [
            'string',
        ],
        'entityValues': [
            'string',
        ],
        'eventTypeCategories': [
            'issue'|'accountNotification'|'scheduledChange'|'investigation',
        ],
        'tags': [
            {
                'string': 'string'
            },
        ],
        'eventStatusCodes': [
            'open'|'closed'|'upcoming',
        ],
        'personas': [
            'OPERATIONS'|'SECURITY'|'BILLING',
        ]
    },
    nextToken='string',
    maxResults=123,
    locale='string'
)
type filter:

dict

param filter:

Values to narrow the results returned.

  • actionabilities (list) --

    A list of actionability values to filter events. Use this to filter events based on whether they require action ( ACTION_REQUIRED), may require action ( ACTION_MAY_BE_REQUIRED) or are informational ( INFORMATIONAL).

    • (string) --

  • eventArns (list) --

    A list of event ARNs (unique identifiers). For example: "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101"

    • (string) --

  • eventTypeCodes (list) --

    A list of unique identifiers for event types. For example, "AWS_EC2_SYSTEM_MAINTENANCE_EVENT","AWS_RDS_MAINTENANCE_SCHEDULED".

    • (string) --

  • services (list) --

    The Amazon Web Services services associated with the event. For example, EC2, RDS.

    • (string) --

  • regions (list) --

    A list of Amazon Web Services Regions.

    • (string) --

  • availabilityZones (list) --

    A list of Amazon Web Services Availability Zones.

    • (string) --

  • startTimes (list) --

    A list of dates and times that the event began.

    • (dict) --

      A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp ( startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

      • from (datetime) --

        The starting date and time of a time range.

      • to (datetime) --

        The ending date and time of a time range.

  • endTimes (list) --

    A list of dates and times that the event ended.

    • (dict) --

      A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp ( startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

      • from (datetime) --

        The starting date and time of a time range.

      • to (datetime) --

        The ending date and time of a time range.

  • lastUpdatedTimes (list) --

    A list of dates and times that the event was last updated.

    • (dict) --

      A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp ( startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

      • from (datetime) --

        The starting date and time of a time range.

      • to (datetime) --

        The ending date and time of a time range.

  • entityArns (list) --

    A list of entity ARNs (unique identifiers).

    • (string) --

  • entityValues (list) --

    A list of entity identifiers, such as EC2 instance IDs ( i-34ab692e) or EBS volumes ( vol-426ab23e).

    • (string) --

  • eventTypeCategories (list) --

    A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

    • (string) --

  • tags (list) --

    A map of entity tags attached to the affected entity.

    • (dict) --

      • (string) --

        • (string) --

  • eventStatusCodes (list) --

    A list of event status codes.

    • (string) --

  • personas (list) --

    A list of persona values to filter events. Use this to filter events based on their target audience: OPERATIONS, SECURITY, or BILLING.

    • (string) --

type nextToken:

string

param nextToken:

If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next batch of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.

type maxResults:

integer

param maxResults:

The maximum number of items to return in one batch, between 10 and 100, inclusive.

type locale:

string

param locale:

The locale (language) to return information in. English (en) is the default and the only supported value at this time.

rtype:

dict

returns:

Response Syntax

{
    'events': [
        {
            'arn': 'string',
            'service': 'string',
            'eventTypeCode': 'string',
            'eventTypeCategory': 'issue'|'accountNotification'|'scheduledChange'|'investigation',
            'region': 'string',
            'availabilityZone': 'string',
            'startTime': datetime(2015, 1, 1),
            'endTime': datetime(2015, 1, 1),
            'lastUpdatedTime': datetime(2015, 1, 1),
            'statusCode': 'open'|'closed'|'upcoming',
            'eventScopeCode': 'PUBLIC'|'ACCOUNT_SPECIFIC'|'NONE',
            'actionability': 'ACTION_REQUIRED'|'ACTION_MAY_BE_REQUIRED'|'INFORMATIONAL',
            'personas': [
                'OPERATIONS'|'SECURITY'|'BILLING',
            ]
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • events (list) --

      The events that match the specified filter criteria.

      • (dict) --

        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.

        • arn (string) --

          The unique identifier for the event. The event ARN has the arn:aws:health:event-region::event/SERVICE/EVENT_TYPE_CODE/EVENT_TYPE_PLUS_ID format.

          For example, an event ARN might look like the following:

          arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456

        • service (string) --

          The Amazon Web Services service that is affected by the event. For example, EC2, RDS.

        • eventTypeCode (string) --

          The unique identifier for the event type. The format is AWS_SERVICE_DESCRIPTION ``; for example, ``AWS_EC2_SYSTEM_MAINTENANCE_EVENT.

        • eventTypeCategory (string) --

          A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

        • region (string) --

          The Amazon Web Services Region name of the event.

        • availabilityZone (string) --

          The Amazon Web Services Availability Zone of the event. For example, us-east-1a.

        • startTime (datetime) --

          The date and time that the event began.

        • endTime (datetime) --

          The date and time that the event ended.

        • lastUpdatedTime (datetime) --

          The most recent date and time that the event was updated.

        • statusCode (string) --

          The most recent status of the event. Possible values are open, closed, and upcoming.

        • eventScopeCode (string) --

          This parameter specifies if the Health event is a public Amazon Web Services service event or an account-specific event.

          • If the eventScopeCode value is PUBLIC, then the affectedAccounts value is always empty.

          • If the eventScopeCode value is ACCOUNT_SPECIFIC, then the affectedAccounts 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.

          • If the eventScopeCode value is NONE, then the eventArn that you specified in the request is invalid or doesn't exist.

        • actionability (string) --

          The actionability classification of the event. Possible values are ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED and INFORMATIONAL. Events with ACTION_REQUIRED actionability require customer action to resolve or mitigate the event. Events with ACTION_MAY_BE_REQUIRED actionability indicates that the current status is unknown or conditional and inspection is needed to determine if action is required. Events with INFORMATIONAL actionability are provided for awareness and do not require immediate action.

        • personas (list) --

          A list of persona classifications that indicate the target audience for the event. Possible values are OPERATIONS, SECURITY, and BILLING. Events can be associated with multiple personas to indicate relevance to different teams or roles within an organization.

          • (string) --

    • nextToken (string) --

      If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next batch of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.

DescribeEventsForOrganization (updated) Link ¶
Changes (request, response)
Request
{'filter': {'actionabilities': ['ACTION_REQUIRED | ACTION_MAY_BE_REQUIRED | '
                                'INFORMATIONAL'],
            'personas': ['OPERATIONS | SECURITY | BILLING']}}
Response
{'events': {'actionability': 'ACTION_REQUIRED | ACTION_MAY_BE_REQUIRED | '
                             'INFORMATIONAL',
            'personas': ['OPERATIONS | SECURITY | BILLING']}}

Returns information about events across your organization in Organizations. You can use the filters parameter to specify the events that you want to return. Events are returned in a summary form and don't include the affected accounts, detailed description, any additional metadata that depends on the event type, or any affected resources. To retrieve that information, use the following operations:

If you don't specify a filter, the DescribeEventsForOrganizations returns all events across your organization. Results are sorted by lastModifiedTime, starting with the most recent event.

For more information about the different types of Health events, see Event.

Before you can call this operation, you must first enable Health to work with Organizations. To do this, call the EnableHealthServiceAccessForOrganization operation from your organization's management account.

See also: AWS API Documentation

Request Syntax

client.describe_events_for_organization(
    filter={
        'actionabilities': [
            'ACTION_REQUIRED'|'ACTION_MAY_BE_REQUIRED'|'INFORMATIONAL',
        ],
        'eventTypeCodes': [
            'string',
        ],
        'awsAccountIds': [
            'string',
        ],
        'services': [
            'string',
        ],
        'regions': [
            'string',
        ],
        'startTime': {
            'from': datetime(2015, 1, 1),
            'to': datetime(2015, 1, 1)
        },
        'endTime': {
            'from': datetime(2015, 1, 1),
            'to': datetime(2015, 1, 1)
        },
        'lastUpdatedTime': {
            'from': datetime(2015, 1, 1),
            'to': datetime(2015, 1, 1)
        },
        'entityArns': [
            'string',
        ],
        'entityValues': [
            'string',
        ],
        'eventTypeCategories': [
            'issue'|'accountNotification'|'scheduledChange'|'investigation',
        ],
        'eventStatusCodes': [
            'open'|'closed'|'upcoming',
        ],
        'personas': [
            'OPERATIONS'|'SECURITY'|'BILLING',
        ]
    },
    nextToken='string',
    maxResults=123,
    locale='string'
)
type filter:

dict

param filter:

Values to narrow the results returned.

  • actionabilities (list) --

    A list of actionability values to filter events. Use this to filter events based on whether they require action ( ACTION_REQUIRED), may require action ( ACTION_MAY_BE_REQUIRED) or are informational ( INFORMATIONAL).

    • (string) --

  • eventTypeCodes (list) --

    A list of unique identifiers for event types. For example, "AWS_EC2_SYSTEM_MAINTENANCE_EVENT","AWS_RDS_MAINTENANCE_SCHEDULED".

    • (string) --

  • awsAccountIds (list) --

    A list of 12-digit Amazon Web Services account numbers that contains the affected entities.

    • (string) --

  • services (list) --

    The Amazon Web Services services associated with the event. For example, EC2, RDS.

    • (string) --

  • regions (list) --

    A list of Amazon Web Services Regions.

    • (string) --

  • startTime (dict) --

    A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp ( startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

    • from (datetime) --

      The starting date and time of a time range.

    • to (datetime) --

      The ending date and time of a time range.

  • endTime (dict) --

    A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp ( startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

    • from (datetime) --

      The starting date and time of a time range.

    • to (datetime) --

      The ending date and time of a time range.

  • lastUpdatedTime (dict) --

    A range of dates and times that is used by the EventFilter and EntityFilter objects. If from is set and to is set: match items where the timestamp ( startTime, endTime, or lastUpdatedTime) is between from and to inclusive. If from is set and to is not set: match items where the timestamp value is equal to or after from. If from is not set and to is set: match items where the timestamp value is equal to or before to.

    • from (datetime) --

      The starting date and time of a time range.

    • to (datetime) --

      The ending date and time of a time range.

  • entityArns (list) --

    A list of entity ARNs (unique identifiers).

    • (string) --

  • entityValues (list) --

    A list of entity identifiers, such as EC2 instance IDs (i-34ab692e) or EBS volumes (vol-426ab23e).

    • (string) --

  • eventTypeCategories (list) --

    A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

    • (string) --

  • eventStatusCodes (list) --

    A list of event status codes.

    • (string) --

  • personas (list) --

    A list of persona values to filter events. Use this to filter events based on their target audience: OPERATIONS, SECURITY, or BILLING.

    • (string) --

type nextToken:

string

param nextToken:

If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next batch of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.

type maxResults:

integer

param maxResults:

The maximum number of items to return in one batch, between 10 and 100, inclusive.

type locale:

string

param locale:

The locale (language) to return information in. English (en) is the default and the only supported value at this time.

rtype:

dict

returns:

Response Syntax

{
    'events': [
        {
            'arn': 'string',
            'service': 'string',
            'eventTypeCode': 'string',
            'eventTypeCategory': 'issue'|'accountNotification'|'scheduledChange'|'investigation',
            'eventScopeCode': 'PUBLIC'|'ACCOUNT_SPECIFIC'|'NONE',
            'region': 'string',
            'startTime': datetime(2015, 1, 1),
            'endTime': datetime(2015, 1, 1),
            'lastUpdatedTime': datetime(2015, 1, 1),
            'statusCode': 'open'|'closed'|'upcoming',
            'actionability': 'ACTION_REQUIRED'|'ACTION_MAY_BE_REQUIRED'|'INFORMATIONAL',
            'personas': [
                'OPERATIONS'|'SECURITY'|'BILLING',
            ]
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • events (list) --

      The events that match the specified filter criteria.

      • (dict) --

        Summary information about an event, returned by the DescribeEventsForOrganization operation.

        • arn (string) --

          The unique identifier for the event. The event ARN has the arn:aws:health:event-region::event/SERVICE/EVENT_TYPE_CODE/EVENT_TYPE_PLUS_ID format.

          For example, an event ARN might look like the following:

          arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456

        • service (string) --

          The Amazon Web Services service that is affected by the event, such as EC2 and RDS.

        • eventTypeCode (string) --

          The unique identifier for the event type. The format is AWS_SERVICE_DESCRIPTION. For example, AWS_EC2_SYSTEM_MAINTENANCE_EVENT.

        • eventTypeCategory (string) --

          A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time.

        • eventScopeCode (string) --

          This parameter specifies if the Health event is a public Amazon Web Services service event or an account-specific event.

          • If the eventScopeCode value is PUBLIC, then the affectedAccounts value is always empty.

          • If the eventScopeCode value is ACCOUNT_SPECIFIC, then the affectedAccounts 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.

          • If the eventScopeCode value is NONE, then the eventArn that you specified in the request is invalid or doesn't exist.

        • region (string) --

          The Amazon Web Services Region name of the event.

        • startTime (datetime) --

          The date and time that the event began.

        • endTime (datetime) --

          The date and time that the event ended.

        • lastUpdatedTime (datetime) --

          The most recent date and time that the event was updated.

        • statusCode (string) --

          The most recent status of the event. Possible values are open, closed, and upcoming.

        • actionability (string) --

          The actionability classification of the event. Possible values are ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED and INFORMATIONAL. Events with ACTION_REQUIRED actionability require customer action to resolve or mitigate the event. Events with ACTION_MAY_BE_REQUIRED actionability indicates that the current status is unknown or conditional and inspection is needed to determine if action is required. Events with INFORMATIONAL actionability are provided for awareness and do not require immediate action.

        • personas (list) --

          A list of persona classifications that indicate the target audience for the event. Possible values are OPERATIONS, SECURITY, and BILLING. Events can be associated with multiple personas to indicate relevance to different teams or roles within an organization.

          • (string) --

    • nextToken (string) --

      If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next batch of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.