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
childAssetId
and hierarchyLogicalId
.
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") .logicalId("logicalId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAsset.AssetHierarchyProperty
static final class
An implementation forCfnAsset.AssetHierarchyProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Id of the child asset.TheLogicalID
of the hierarchy.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChildAssetId
The Id of the child asset. -
getLogicalId
TheLogicalID
of the hierarchy. This ID is ahierarchyLogicalId
.The maximum length is 256 characters, with the pattern
[^\ u0000-\ u001F\ u007F]+
. -
builder
-