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

Property

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

Contains asset property information.

interface Property {
alias?: string | null;
dataType: PropertyDataType;
id: string;
name: string;
notification?: PropertyNotification | null;
type?: PropertyType | 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 property 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.

§
type?: PropertyType | null
[src]

The property type (see PropertyType). A property contains one type.

§
unit?: string | null
[src]

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