aws.iot1click_devices.list_device_events
Example SQL Queries
SELECT * FROMaws.iot1click_devices.list_device_eventsWHERE"device_id" = 'VALUE'AND "from_time_stamp" = 'VALUE'AND "to_time_stamp" = 'VALUE';Description
Using a device ID, returns a DeviceEventsResponse object containing an array of events for the device.
Table Definition
| Column Name | Column Data Type |
|---|---|
| device_id Required Input Column The unique identifier of the device. | VARCHAR |
| from_time_stamp Required Input Column The start date for the device event query, in ISO8061 format. For example, 2018-03-28T15:45:12.880Z | TIMESTAMP_S |
| to_time_stamp Required Input Column The end date for the device event query, in ISO8061 format. For example, 2018-03-28T15:45:12.880Z | TIMESTAMP_S |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| device An object representing the device associated with the event. | STRUCT( |
Show child fields
| |
| std_event A serialized JSON object representing the device-type specific event. | VARCHAR |