Skip to main content

wireless_device_statistics

Creates, updates, deletes, gets or lists a wireless_device_statistics resource.

Overview

Namewireless_device_statistics
TypeResource
Idaws.iotwireless.wireless_device_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
last_uplink_received_atstringThe date and time when the most recent uplink was received. This value is only valid for 3 months. (pattern: <code>^([+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24:?00)([.,]\d+(?!:))?)?(\17[0-5]\d([.,]\d+)?)?([zZ]|([+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$</code>)
lo_ra_wanobjectInformation about the wireless device's operations.
sidewalkobjectMetaData for Sidewalk device.
wireless_device_idstringThe ID of the wireless device.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_wireless_device_statisticsselectid, regionGets operating information about a wireless device.

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
idstringThe ID of the wireless device for which to get the data.
regionstringAWS region (default: us-east-1)

SELECT examples

Gets operating information about a wireless device.

SELECT
last_uplink_received_at,
lo_ra_wan,
sidewalk,
wireless_device_id
FROM aws.iotwireless.wireless_device_statistics
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;