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