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

DescribeAssetResponse

import type { DescribeAssetResponse } from "https://aws-api.deno.dev/v0.3/services/iotsitewise.ts?docs=full";
interface DescribeAssetResponse {
assetArn: string;
assetCompositeModels?: AssetCompositeModel[] | null;
assetCreationDate: Date | number;
assetHierarchies: AssetHierarchy[];
assetId: string;
assetLastUpdateDate: Date | number;
assetModelId: string;
assetName: string;
assetProperties: AssetProperty[];
assetStatus: AssetStatus;
}

§Properties

§
assetArn: string
[src]

The ARN of the asset, which has the following format.

arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId}
§
assetCompositeModels?: AssetCompositeModel[] | null
[src]

The composite models for the asset.

§
assetCreationDate: Date | number
[src]

The date the asset was created, in Unix epoch time.

§
assetHierarchies: AssetHierarchy[]
[src]

A list of asset hierarchies that each contain a hierarchyId. A hierarchy specifies allowed parent/child asset relationships.

§
assetId: string
[src]

The ID of the asset.

§
assetLastUpdateDate: Date | number
[src]

The date the asset was last updated, in Unix epoch time.

§
assetModelId: string
[src]

The ID of the asset model that was used to create the asset.

§
assetName: string
[src]

The name of the asset.

§
assetProperties: AssetProperty[]
[src]

The list of asset properties for the asset.

This object doesn't include properties that you define in composite models. You can find composite model properties in the assetCompositeModels object.

§
assetStatus: AssetStatus
[src]

The current status of the asset, which contains a state and any error message.