Skip to main content

events

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

Overview

Nameevents
TypeResource
Idaws.dax.events

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
datestring (date-time)The date and time when the event occurred.
messagestringA user-defined message associated with the event.
source_namestringThe source of the event. For example, if the event occurred at the node level, the source would be the node ID.
source_typestringSpecifies the origin of this event - a cluster, a parameter group, a node ID, etc. (CLUSTER, PARAMETER_GROUP, SUBNET_GROUP)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_eventsselectregionReturns events related to DAX clusters and parameter groups. You can obtain events specific to a particular DAX cluster or parameter group by providing the name as a parameter. By default, only the events occurring within the last 24 hours are returned; however, you can retrieve up to 14 days' worth of events if necessary.

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 events related to DAX clusters and parameter groups. You can obtain events specific to a particular DAX cluster or parameter group by providing the name as a parameter. By default, only the events occurring within the last 24 hours are returned; however, you can retrieve up to 14 days' worth of events if necessary.

SELECT
date,
message,
source_name,
source_type
FROM aws.dax.events
WHERE region = '{{ region }}' -- required
;