interface AssetModelPropertyBindingValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSiteWise.CfnComputationModelPropsMixin.AssetModelPropertyBindingValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsitewise#CfnComputationModelPropsMixin_AssetModelPropertyBindingValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.CfnComputationModelPropsMixin.AssetModelPropertyBindingValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnComputationModelPropsMixin.AssetModelPropertyBindingValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsitewise » 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 { aws_iotsitewise as iotsitewise } from '@aws-cdk/cfn-property-mixins';
const assetModelPropertyBindingValueProperty: iotsitewise.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