interface AssetHierarchyProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTSiteWise.CfnAsset.AssetHierarchyProperty | 
|  Java | software.amazon.awscdk.services.iotsitewise.CfnAsset.AssetHierarchyProperty | 
|  Python | aws_cdk.aws_iotsitewise.CfnAsset.AssetHierarchyProperty | 
|  TypeScript | @aws-cdk/aws-iotsitewise»CfnAsset»AssetHierarchyProperty | 
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 * as iotsitewise from '@aws-cdk/aws-iotsitewise';
const assetHierarchyProperty: iotsitewise.CfnAsset.AssetHierarchyProperty = {
  childAssetId: 'childAssetId',
  logicalId: 'logicalId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| child | string | The Id of the child asset. | 
| logical | string | The LogicalIDof the hierarchy. This ID is ahierarchyLogicalId. | 
childAssetId
Type:
string
The Id of the child asset.
logicalId
Type:
string
The LogicalID of the hierarchy. This ID is a hierarchyLogicalId .
The maximum length is 256 characters, with the pattern [^\ u0000-\ u001F\ u007F]+ .
