Skip to main content

devices_for_wireless_device_import_tasks

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

Overview

Namedevices_for_wireless_device_import_tasks
TypeResource
Idaws.iotwireless.devices_for_wireless_device_import_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
destination_namestringThe 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_listarrayList of wireless devices in an import task and their onboarding status.
next_tokenstringThe token to use to get the next set of results, or null if there are no additional results.
positioningstringThe integration status of the Device Location feature for Sidewalk devices. (Enabled, Disabled)
sidewalkobjectThe Sidewalk object containing Sidewalk-related device information.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_devices_for_wireless_device_import_taskselectid, regionmaxResults, nextToken, statusList 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.

NameDatatypeDescription
idstringThe identifier of the import task for which wireless devices are listed.
regionstringAWS region (default: us-east-1)
maxResultsinteger
nextTokenstringTo retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.
statusstringThe status of the devices in the import task.

SELECT examples

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 }}'
;