Interface CfnAsset.AssetHierarchyProperty

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

@Stability(Stable) public static interface CfnAsset.AssetHierarchyProperty extends software.amazon.jsii.JsiiSerializable
Describes an asset hierarchy that contains a hierarchy's name and ID.

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.*;
 AssetHierarchyProperty assetHierarchyProperty = AssetHierarchyProperty.builder()
         .childAssetId("childAssetId")
         // the properties below are optional
         .externalId("externalId")
         .id("id")
         .logicalId("logicalId")
         .build();
 

See Also: