interface VariableValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSiteWise.CfnAssetModel.VariableValueProperty |
Java | software.amazon.awscdk.services.iotsitewise.CfnAssetModel.VariableValueProperty |
Python | aws_cdk.aws_iotsitewise.CfnAssetModel.VariableValueProperty |
TypeScript | @aws-cdk/aws-iotsitewise » CfnAssetModel » VariableValueProperty |
Identifies a property value used in an expression.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotsitewise from '@aws-cdk/aws-iotsitewise';
const variableValueProperty: iotsitewise.CfnAssetModel.VariableValueProperty = {
propertyLogicalId: 'propertyLogicalId',
// the properties below are optional
hierarchyLogicalId: 'hierarchyLogicalId',
};
Properties
| Name | Type | Description |
|---|---|---|
| property | string | The LogicalID of the property to use as the variable. |
| hierarchy | string | The LogicalID of the hierarchy to query for the PropertyLogicalID . |
propertyLogicalId
Type:
string
The LogicalID of the property to use as the variable.
hierarchyLogicalId?
Type:
string
(optional)
The LogicalID of the hierarchy to query for the PropertyLogicalID .
You use a hierarchyLogicalID instead of a model ID because you can have several hierarchies using the same model and therefore the same property. For example, you might have separately grouped assets that come from the same asset model. For more information, see Defining relationships between assets in the AWS IoT SiteWise User Guide .

.NET
Java
Python
TypeScript