Interface CfnAssetModel.ExpressionVariableProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssetModel.ExpressionVariableProperty.Jsii$Proxy
Enclosing class:
CfnAssetModel

@Stability(Stable) public static interface CfnAssetModel.ExpressionVariableProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotsitewise.*;
 ExpressionVariableProperty expressionVariableProperty = ExpressionVariableProperty.builder()
         .name("name")
         .value(VariableValueProperty.builder()
                 .propertyLogicalId("propertyLogicalId")
                 // the properties below are optional
                 .hierarchyLogicalId("hierarchyLogicalId")
                 .build())
         .build();