entity_aggregates
Creates, updates, deletes, gets or lists an entity_aggregates resource.
Overview
| Name | entity_aggregates |
| Type | Resource |
| Id | aws.health.entity_aggregates |
Fields
The following fields are returned by SELECT queries:
- describe_entity_aggregates
| Name | Datatype | Description |
|---|---|---|
entity_aggregates | array | The number of entities that are affected by each of the specified events. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_entity_aggregates | select | region | Returns the number of entities that are affected by each of the specified events. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_entity_aggregates
Returns the number of entities that are affected by each of the specified events.
SELECT
entity_aggregates
FROM aws.health.entity_aggregates
WHERE region = '{{ region }}' -- required
;