Skip to main content

thing_registration_task_reports

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

Overview

Namething_registration_task_reports
TypeResource
Idaws.iot.thing_registration_task_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resource_linkstringLinks to the task resources.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_thing_registration_task_reportsselecttask_id, reportType, regionnextToken, maxResultsInformation 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
reportTypestringThe type of task report.
task_idstringThe id of the task.
maxResultsintegerThe maximum number of results to return per request.
nextTokenstringTo retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

SELECT examples

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