Skip to main content

event_aggregates

Creates, updates, deletes, gets or lists an event_aggregates resource.

Overview

Nameevent_aggregates
TypeResource
Idaws.health.event_aggregates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aggregate_valuestringThe issue type for the associated count.
countintegerThe number of events of the associated issue type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_event_aggregatesselectregionReturns 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. This API operation uses pagination. Specify the nextToken parameter in the next request to return more results.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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. This API operation uses pagination. Specify the nextToken parameter in the next request to return more results.

SELECT
aggregate_value,
count
FROM aws.health.event_aggregates
WHERE region = '{{ region }}' -- required
;