Skip to main content

multicast_groups_by_fuota_tasks

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

Overview

Namemulticast_groups_by_fuota_tasks
TypeResource
Idaws.iotwireless.multicast_groups_by_fuota_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
multicast_group_listarrayList of multicast groups associated with a FUOTA task.
next_tokenstringTo retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_multicast_groups_by_fuota_taskselectid, regionnextToken, maxResultsList all multicast groups associated with a FUOTA task.

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
idstring
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.

SELECT examples

List all multicast groups associated with a FUOTA task.

SELECT
multicast_group_list,
next_token
FROM aws.iotwireless.multicast_groups_by_fuota_tasks
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;