managed_thing_meta_datas
Creates, updates, deletes, gets or lists a managed_thing_meta_datas resource.
Overview
| Name | managed_thing_meta_datas |
| Type | Resource |
| Id | aws.iot_managed_integrations.managed_thing_meta_datas |
Fields
The following fields are returned by SELECT queries:
- get_managed_thing_meta_data
| Name | Datatype | Description |
|---|---|---|
managed_thing_id | string | The managed thing id. (pattern: <code>[a-zA-Z0-9:_-]*</code>) |
meta_data | object | The metadata for the managed thing. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_managed_thing_meta_data | select | identifier, region | Get the metadata information for a managed thing. The managedThing metadata parameter is used for associating attributes with a managedThing that can be used for grouping over-the-air (OTA) tasks. Name value pairs in metadata can be used in the OtaTargetQueryString parameter for the CreateOtaTask API operation. |
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 |
|---|---|---|
identifier | string | The managed thing id. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_managed_thing_meta_data
Get the metadata information for a managed thing. The managedThing metadata parameter is used for associating attributes with a managedThing that can be used for grouping over-the-air (OTA) tasks. Name value pairs in metadata can be used in the OtaTargetQueryString parameter for the CreateOtaTask API operation.
SELECT
managed_thing_id,
meta_data
FROM aws.iot_managed_integrations.managed_thing_meta_datas
WHERE identifier = '{{ identifier }}' -- required
AND region = '{{ region }}' -- required
;