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