public static interface CfnAssetModel.VariableValueProperty
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() .propertyLogicalId("propertyLogicalId") // the properties below are optional .hierarchyLogicalId("hierarchyLogicalId") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAssetModel.VariableValueProperty.Builder
A builder for
CfnAssetModel.VariableValueProperty |
static class |
CfnAssetModel.VariableValueProperty.Jsii$Proxy
An implementation for
CfnAssetModel.VariableValueProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAssetModel.VariableValueProperty.Builder |
builder() |
default java.lang.String |
getHierarchyLogicalId()
The `LogicalID` of the hierarchy to query for the `PropertyLogicalID` .
|
java.lang.String |
getPropertyLogicalId()
The `LogicalID` of the property to use as the variable.
|
java.lang.String getPropertyLogicalId()
default java.lang.String getHierarchyLogicalId()
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 .
static CfnAssetModel.VariableValueProperty.Builder builder()