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

AssetModelProperty

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

Contains information about an asset model property.

interface AssetModelProperty {
dataType: PropertyDataType;
dataTypeSpec?: string | null;
id?: string | null;
name: string;
unit?: string | null;
}

§Properties

§

The data type of the asset model property.

§
dataTypeSpec?: string | null
[src]

The data type of the structure for this property. This parameter exists on properties that have the STRUCT data type.

§
id?: string | null
[src]

The ID of the asset model property.

§
name: string
[src]

The name of the asset model property.

§

The property type (see PropertyType).

§
unit?: string | null
[src]

The unit of the asset model property, such as Newtons or RPM.