devices_for_wireless_device_import_tasks
Creates, updates, deletes, gets or lists a devices_for_wireless_device_import_tasks resource.
Overview
| Name | devices_for_wireless_device_import_tasks |
| Type | Resource |
| Id | aws.iotwireless.devices_for_wireless_device_import_tasks |
Fields
The following fields are returned by SELECT queries:
- list_devices_for_wireless_device_import_task
| Name | Datatype | Description |
|---|---|---|
destination_name | string | The name of the Sidewalk destination that describes the IoT rule to route messages received from devices in an import task that are onboarded to AWS IoT Wireless. (pattern: <code>[a-zA-Z0-9-_]+</code>) |
imported_wireless_device_list | array | List of wireless devices in an import task and their onboarding status. |
next_token | string | The token to use to get the next set of results, or null if there are no additional results. |
positioning | string | The integration status of the Device Location feature for Sidewalk devices. (Enabled, Disabled) |
sidewalk | object | The Sidewalk object containing Sidewalk-related device information. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_devices_for_wireless_device_import_task | select | id, region | maxResults, nextToken, status | List the Sidewalk devices in an import task and their onboarding status. |
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 |
|---|---|---|
id | string | The identifier of the import task for which wireless devices are listed. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | |
nextToken | string | To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results. |
status | string | The status of the devices in the import task. |
SELECT examples
- list_devices_for_wireless_device_import_task
List the Sidewalk devices in an import task and their onboarding status.
SELECT
destination_name,
imported_wireless_device_list,
next_token,
positioning,
sidewalk
FROM aws.iotwireless.devices_for_wireless_device_import_tasks
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
AND status = '{{ status }}'
;