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

AssetProperty

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

Contains asset property information.

interface AssetProperty {
alias?: string | null;
dataType: PropertyDataType;
dataTypeSpec?: string | null;
id: string;
name: string;
notification?: PropertyNotification | null;
unit?: string | null;
}

§Properties

§
alias?: string | null
[src]

The alias that identifies the property, such as an OPC-UA server data stream path (for example, /company/windfarm/3/turbine/7/temperature). For more information, see Mapping industrial data streams to asset properties in the IoT SiteWise User Guide.

§

The data type of the asset 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
[src]

The ID of the asset property.

§
name: string
[src]

The name of the property.

§
notification?: PropertyNotification | null
[src]

The asset property's notification topic and state. For more information, see UpdateAssetProperty.

§
unit?: string | null
[src]

The unit (such as Newtons or RPM) of the asset property.