interface AssetModelPropertyBindingValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnComputationModelPropsMixin.AssetModelPropertyBindingValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnComputationModelPropsMixin_AssetModelPropertyBindingValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnComputationModelPropsMixin.AssetModelPropertyBindingValueProperty |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnComputationModelPropsMixin.AssetModelPropertyBindingValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnComputationModelPropsMixin » AssetModelPropertyBindingValueProperty |
Contains information about an assetModelProperty binding value.
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 assetModelPropertyBindingValueProperty: iotsitewise_mixins.CfnComputationModelPropsMixin.AssetModelPropertyBindingValueProperty = {
assetModelId: 'assetModelId',
propertyId: 'propertyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| asset | string | The ID of the asset model, in UUID format. |
| property | string | The ID of the asset model property used in data binding value. |
assetModelId?
Type:
string
(optional)
The ID of the asset model, in UUID format.
propertyId?
Type:
string
(optional)
The ID of the asset model property used in data binding value.

.NET
Go
Java
Python
TypeScript