Skip to main content

computation_model_data_binding_usages

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

Overview

Namecomputation_model_data_binding_usages
TypeResource
Idaws.iotsitewise.computation_model_data_binding_usages

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
computation_model_idsarrayThe 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_bindingobjectThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_computation_model_data_binding_usagesselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;