automation_event_summaries
Creates, updates, deletes, gets or lists an automation_event_summaries resource.
Overview
| Name | automation_event_summaries |
| Type | Resource |
| Id | aws.compute_optimizer_automation.automation_event_summaries |
Fields
The following fields are returned by SELECT queries:
- list_automation_event_summaries
| Name | Datatype | Description |
|---|---|---|
dimensions | array | The dimensions used to group this summary, such as event status. |
key | string | The key identifier for this summary grouping. |
time_period | object | The time period covered by this summary, with inclusive start time and exclusive end time. |
total | object | The aggregated totals for this summary, including event count and estimated savings. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_automation_event_summaries | select | region | Provides a summary of automation events based on specified filters. Only events created within the past year will be included in the summary. |
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
- list_automation_event_summaries
Provides a summary of automation events based on specified filters. Only events created within the past year will be included in the summary.
SELECT
dimensions,
key,
time_period,
total
FROM aws.compute_optimizer_automation.automation_event_summaries
WHERE region = '{{ region }}' -- required
;