Skip to main content

device_registrations

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

Overview

Namedevice_registrations
TypeResource
Idaws.sagemaker_edge.device_registrations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
cache_ttlstringThe amount of time, in seconds, that the registration status is stored on the device’s cache before it is refreshed.
device_registrationstringDescribes if the device is currently registered with SageMaker Edge Manager.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_device_registrationselectregionUse to check if a device is registered with SageMaker Edge Manager.

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)

SELECT examples

Use to check if a device is registered with SageMaker Edge Manager.

SELECT
cache_ttl,
device_registration
FROM aws.sagemaker_edge.device_registrations
WHERE region = '{{ region }}' -- required
;