Skip to main content

automation_event_summaries

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

Overview

Nameautomation_event_summaries
TypeResource
Idaws.compute_optimizer_automation.automation_event_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dimensionsarrayThe dimensions used to group this summary, such as event status.
keystringThe key identifier for this summary grouping.
time_periodobjectThe time period covered by this summary, with inclusive start time and exclusive end time.
totalobjectThe aggregated totals for this summary, including event count and estimated savings.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_automation_event_summariesselectregionProvides 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.

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

SELECT examples

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
;