Interface CfnAssetModel.AssetModelHierarchyProperty

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

@Stability(Stable) public static interface CfnAssetModel.AssetModelHierarchyProperty extends software.amazon.jsii.JsiiSerializable
Describes an asset hierarchy that contains a hierarchy's name, LogicalID , and child asset model ID that specifies the type of asset that can be in this hierarchy.

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.*;
 AssetModelHierarchyProperty assetModelHierarchyProperty = AssetModelHierarchyProperty.builder()
         .childAssetModelId("childAssetModelId")
         .logicalId("logicalId")
         .name("name")
         .build();