wireless_gateway_certificates
Creates, updates, deletes, gets or lists a wireless_gateway_certificates resource.
Overview
| Name | wireless_gateway_certificates |
| Type | Resource |
| Id | aws.iotwireless.wireless_gateway_certificates |
Fields
The following fields are returned by SELECT queries:
- get_wireless_gateway_certificate
| Name | Datatype | Description |
|---|---|---|
iot_certificate_id | string | The ID of the certificate associated with the wireless gateway. |
lo_ra_wan_network_server_certificate_id | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_wireless_gateway_certificate | select | id, region | Gets 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.
| 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_certificate
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
;