Skip to main content

managed_thing_capabilities

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

Overview

Namemanaged_thing_capabilities
TypeResource
Idaws.iot_managed_integrations.managed_thing_capabilities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
capabilitiesstringThe capabilities of the device such as light bulb. (pattern: <code>[a-zA-Z0-9\s'\x{0022},.:\/{$}&#91;&#93;=_-+]+</code>)
capability_reportobjectReport of all capabilities supported by the device.
managed_thing_idstringThe id of the device. (pattern: <code>[a-zA-Z0-9:_-]*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_managed_thing_capabilitiesselectidentifier, regionGet the capabilities for a managed thing using the device ID.

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
identifierstringThe id of the device.
regionstringAWS region (default: us-east-1)

SELECT examples

Get the capabilities for a managed thing using the device ID.

SELECT
capabilities,
capability_report,
managed_thing_id
FROM aws.iot_managed_integrations.managed_thing_capabilities
WHERE identifier = '{{ identifier }}' -- required
AND region = '{{ region }}' -- required
;