wireless_gateway_firmware_informations
Creates, updates, deletes, gets or lists a wireless_gateway_firmware_informations resource.
Overview
| Name | wireless_gateway_firmware_informations |
| Type | Resource |
| Id | aws.iotwireless.wireless_gateway_firmware_informations |
Fields
The following fields are returned by SELECT queries:
- get_wireless_gateway_firmware_information
| Name | Datatype | Description |
|---|---|---|
current_version | object | The version of the gateways that should receive the update. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_wireless_gateway_firmware_information | select | id, region | Gets the firmware version and other information about a wireless gateway. |
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 | The ID of the resource to get. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_wireless_gateway_firmware_information
Gets the firmware version and other information about a wireless gateway.
SELECT
current_version
FROM aws.iotwireless.wireless_gateway_firmware_informations
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;