Skip to main content

wireless_gateway_firmware_informations

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

Overview

Namewireless_gateway_firmware_informations
TypeResource
Idaws.iotwireless.wireless_gateway_firmware_informations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
current_versionobjectThe version of the gateways that should receive the update.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_wireless_gateway_firmware_informationselectid, regionGets 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.

NameDatatypeDescription
idstringThe ID of the resource to get.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;