multicast_groups_by_fuota_tasks
Creates, updates, deletes, gets or lists a multicast_groups_by_fuota_tasks resource.
Overview
| Name | multicast_groups_by_fuota_tasks |
| Type | Resource |
| Id | aws.iotwireless.multicast_groups_by_fuota_tasks |
Fields
The following fields are returned by SELECT queries:
- list_multicast_groups_by_fuota_task
| Name | Datatype | Description |
|---|---|---|
multicast_group_list | array | List of multicast groups associated with a FUOTA task. |
next_token | string | To 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_multicast_groups_by_fuota_task | select | id, region | nextToken, maxResults | List 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.
| Name | Datatype | Description |
|---|---|---|
id | string | |
region | string | AWS region (default: us-east-1) |
maxResults | integer | |
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_multicast_groups_by_fuota_task
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 }}'
;