computation_model_data_binding_usages
Creates, updates, deletes, gets or lists a computation_model_data_binding_usages resource.
Overview
| Name | computation_model_data_binding_usages |
| Type | Resource |
| Id | aws.iotsitewise.computation_model_data_binding_usages |
Fields
The following fields are returned by SELECT queries:
- list_computation_model_data_binding_usages
| Name | Datatype | Description |
|---|---|---|
computation_model_ids | array | The list of computation model IDs that use this data binding. This allows identification of all computation models affected by changes to the referenced data source. |
matched_data_binding | object | The data binding matched by the filter criteria. Contains details about specific data binding values used by the computation models. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_computation_model_data_binding_usages | select | region | Lists all data binding usages for computation models. This allows to identify where specific data bindings are being utilized across the computation models. This track dependencies between data sources and computation models. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_computation_model_data_binding_usages
Lists all data binding usages for computation models. This allows to identify where specific data bindings are being utilized across the computation models. This track dependencies between data sources and computation models.
SELECT
computation_model_ids,
matched_data_binding
FROM aws.iotsitewise.computation_model_data_binding_usages
WHERE region = '{{ region }}' -- required
;