interface AssetPropertyBindingValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnComputationModelPropsMixin.AssetPropertyBindingValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnComputationModelPropsMixin_AssetPropertyBindingValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnComputationModelPropsMixin.AssetPropertyBindingValueProperty |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnComputationModelPropsMixin.AssetPropertyBindingValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnComputationModelPropsMixin » AssetPropertyBindingValueProperty |
Represents a data binding value referencing a specific asset property.
It's used to bind computation model variables to actual asset property values for processing.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotsitewise_mixins } from '@aws-cdk/mixins-preview/aws-iotsitewise';
const assetPropertyBindingValueProperty: iotsitewise_mixins.CfnComputationModelPropsMixin.AssetPropertyBindingValueProperty = {
assetId: 'assetId',
propertyId: 'propertyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| asset | string | The ID of the asset containing the property. |
| property | string | The ID of the property within the asset. |
assetId?
Type:
string
(optional)
The ID of the asset containing the property.
This identifies the specific asset instance's property value used in the computation model.
propertyId?
Type:
string
(optional)
The ID of the property within the asset.
This identifies the specific property's value used in the computation model.

.NET
Go
Java
Python
TypeScript