Skip to main content

wireless_gateway_certificates

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

Overview

Namewireless_gateway_certificates
TypeResource
Idaws.iotwireless.wireless_gateway_certificates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
iot_certificate_idstringThe ID of the certificate associated with the wireless gateway.
lo_ra_wan_network_server_certificate_idstringThe ID of the certificate that is associated with the wireless gateway and used for the LoRaWANNetworkServer endpoint.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_wireless_gateway_certificateselectid, regionGets the ID of the certificate that is currently associated with 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 ID of the certificate that is currently associated with a wireless gateway.

SELECT
iot_certificate_id,
lo_ra_wan_network_server_certificate_id
FROM aws.iotwireless.wireless_gateway_certificates
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;