Interface CfnAssetModel.VariableValueProperty

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

@Stability(Stable) public static interface CfnAssetModel.VariableValueProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotsitewise.*;
 VariableValueProperty variableValueProperty = VariableValueProperty.builder()
         .hierarchyExternalId("hierarchyExternalId")
         .hierarchyId("hierarchyId")
         .hierarchyLogicalId("hierarchyLogicalId")
         .propertyExternalId("propertyExternalId")
         .propertyId("propertyId")
         .propertyLogicalId("propertyLogicalId")
         .propertyPath(List.of(PropertyPathDefinitionProperty.builder()
                 .name("name")
                 .build()))
         .build();
 

See Also: