Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AssetModelHierarchy

import type { AssetModelHierarchy } from "https://aws-api.deno.dev/v0.3/services/iotsitewise.ts?docs=full";

Describes an asset hierarchy that contains a hierarchy's name, ID, and child asset model ID that specifies the type of asset that can be in this hierarchy.

interface AssetModelHierarchy {
childAssetModelId: string;
id?: string | null;
name: string;
}

§Properties

§
childAssetModelId: string
[src]

The ID of the asset model. All assets in this hierarchy must be instances of the childAssetModelId asset model.

§
id?: string | null
[src]

The ID of the asset model hierarchy. This ID is a hierarchyId.

§
name: string
[src]

The name of the asset model hierarchy that you specify by using the CreateAssetModel or UpdateAssetModel API operation.