thing_registration_task_reports
Creates, updates, deletes, gets or lists a thing_registration_task_reports resource.
Overview
| Name | thing_registration_task_reports |
| Type | Resource |
| Id | aws.iot.thing_registration_task_reports |
Fields
The following fields are returned by SELECT queries:
- list_thing_registration_task_reports
| Name | Datatype | Description |
|---|---|---|
resource_link | string | Links to the task resources. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_thing_registration_task_reports | select | task_id, reportType, region | nextToken, maxResults | Information about the thing registration tasks. |
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) |
reportType | string | The type of task report. |
task_id | string | The id of the task. |
maxResults | integer | The maximum number of results to return per request. |
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. |
SELECT examples
- list_thing_registration_task_reports
Information about the thing registration tasks.
SELECT
resource_link
FROM aws.iot.thing_registration_task_reports
WHERE task_id = '{{ task_id }}' -- required
AND reportType = '{{ reportType }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;