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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAsset.AssetHierarchyPropertystatic final classAn implementation forCfnAsset.AssetHierarchyProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChildAssetId
The Id of the child asset.- See Also:
-
getExternalId
String-friendly customer provided external ID.- See Also:
-
getId
Customer provided actual UUID for property.- See Also:
-
getLogicalId
The ID of the hierarchy.This ID is a
hierarchyId.- See Also:
-
builder
-