Skip to main content

ota_task_executions

Creates, updates, deletes, gets or lists an ota_task_executions resource.

Overview

Nameota_task_executions
TypeResource
Idaws.iot_managed_integrations.ota_task_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
managed_thing_idstringThe id of a managed thing. (pattern: <code>[a-zA-Z0-9:_-]*</code>)
task_execution_summaryobjectStructure representing one over-the-air (OTA) task execution summary

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_ota_task_executionsselectidentifier, regionNextToken, MaxResultsList all of the over-the-air (OTA) task executions.

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
identifierstringThe over-the-air (OTA) task id.
regionstringAWS region (default: us-east-1)
MaxResultsintegerThe maximum number of results to return at one time.
NextTokenstringA token that can be used to retrieve the next set of results.

SELECT examples

List all of the over-the-air (OTA) task executions.

SELECT
managed_thing_id,
task_execution_summary
FROM aws.iot_managed_integrations.ota_task_executions
WHERE identifier = '{{ identifier }}' -- required
AND region = '{{ region }}' -- required
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
;