sensor_statistics
Creates, updates, deletes, gets or lists a sensor_statistics resource.
Overview
| Name | sensor_statistics |
| Type | Resource |
| Id | aws.lookoutequipment.sensor_statistics |
Fields
The following fields are returned by SELECT queries:
- list_sensor_statistics
| Name | Datatype | Description |
|---|---|---|
next_token | string | An opaque pagination token indicating where to continue the listing of sensor statistics. (pattern: <code>\p{ASCII}{0,8192}</code>) |
sensor_statistics_summaries | array | Provides ingestion-based statistics regarding the specified sensor with respect to various validation types, such as whether data exists, the number and percentage of missing values, and the number and percentage of duplicate timestamps. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_sensor_statistics | select | region | Lists statistics about the data collected for each of the sensors that have been successfully ingested in the particular dataset. Can also be used to retreive Sensor Statistics for a previous ingestion job. |
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_sensor_statistics
Lists statistics about the data collected for each of the sensors that have been successfully ingested in the particular dataset. Can also be used to retreive Sensor Statistics for a previous ingestion job.
SELECT
next_token,
sensor_statistics_summaries
FROM aws.lookoutequipment.sensor_statistics
WHERE region = '{{ region }}' -- required
;