Skip to main content

service_endpoints

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

Overview

Nameservice_endpoints
TypeResource
Idaws.iotwireless.service_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
server_truststringThe Root CA of the server trust certificate. (pattern: <code>[^-A-Za-z0-9+/=]|=[^=]|={3,}${1,4096}</code>)
service_endpointstringThe service endpoint value.
service_typestringThe endpoint's service type. (CUPS, LNS)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_service_endpointselectregionserviceTypeGets the account-specific endpoint for Configuration and Update Server (CUPS) protocol or LoRaWAN Network Server (LNS) connections.

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
regionstringAWS region (default: us-east-1)
serviceTypestringThe service type for which to get endpoint information about. Can be CUPS for the Configuration and Update Server endpoint, or LNS for the LoRaWAN Network Server endpoint.

SELECT examples

Gets the account-specific endpoint for Configuration and Update Server (CUPS) protocol or LoRaWAN Network Server (LNS) connections.

SELECT
server_trust,
service_endpoint,
service_type
FROM aws.iotwireless.service_endpoints
WHERE region = '{{ region }}' -- required
AND serviceType = '{{ serviceType }}'
;