Skip to main content

endpoints

Creates, updates, deletes, gets or lists an endpoints resource.

Overview

Nameendpoints
TypeResource
Idaws.iotdeviceadvisor.endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
endpointstringThe response of an Device Advisor endpoint.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_endpointselectregionthingArn, certificateArn, deviceRoleArn, authenticationMethodGets information about an Device Advisor endpoint.

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)
authenticationMethodstringThe authentication method used during the device connection.
certificateArnstringThe certificate ARN of the device. This is an optional parameter.
deviceRoleArnstringThe device role ARN of the device. This is an optional parameter.
thingArnstringThe thing ARN of the device. This is an optional parameter.

SELECT examples

Gets information about an Device Advisor endpoint.

SELECT
endpoint
FROM aws.iotdeviceadvisor.endpoints
WHERE region = '{{ region }}' -- required
AND thingArn = '{{ thingArn }}'
AND certificateArn = '{{ certificateArn }}'
AND deviceRoleArn = '{{ deviceRoleArn }}'
AND authenticationMethod = '{{ authenticationMethod }}'
;