interface ExpressionVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnAssetModelPropsMixin.ExpressionVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnAssetModelPropsMixin_ExpressionVariableProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnAssetModelPropsMixin.ExpressionVariableProperty |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnAssetModelPropsMixin.ExpressionVariableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnAssetModelPropsMixin » ExpressionVariableProperty |
Contains expression variable information.
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 expressionVariableProperty: iotsitewise_mixins.CfnAssetModelPropsMixin.ExpressionVariableProperty = {
name: 'name',
value: {
hierarchyExternalId: 'hierarchyExternalId',
hierarchyId: 'hierarchyId',
hierarchyLogicalId: 'hierarchyLogicalId',
propertyExternalId: 'propertyExternalId',
propertyId: 'propertyId',
propertyLogicalId: 'propertyLogicalId',
propertyPath: [{
name: 'name',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The friendly name of the variable to be used in the expression. |
| value? | IResolvable | Variable | The variable that identifies an asset property from which to use values. |
name?
Type:
string
(optional)
The friendly name of the variable to be used in the expression.
value?
Type:
IResolvable | Variable
(optional)
The variable that identifies an asset property from which to use values.

.NET
Go
Java
Python
TypeScript