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

UpdateAssetPropertyRequest

import type { UpdateAssetPropertyRequest } from "https://aws-api.deno.dev/v0.3/services/iotsitewise.ts?docs=full";
interface UpdateAssetPropertyRequest {
assetId: string;
clientToken?: string | null;
propertyAlias?: string | null;
propertyId: string;
propertyNotificationState?: PropertyNotificationState | null;
}

§Properties

§
assetId: string
[src]

The ID of the asset to be updated.

§
clientToken?: string | null
[src]

A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

§
propertyAlias?: 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.

If you omit this parameter, the alias is removed from the property.

§
propertyId: string
[src]

The ID of the asset property to be updated.

§
propertyNotificationState?: PropertyNotificationState | null
[src]

The MQTT notification state (enabled or disabled) for this asset property. When the notification state is enabled, IoT SiteWise publishes property value updates to a unique MQTT topic. For more information, see Interacting with other services in the IoT SiteWise User Guide.

If you omit this parameter, the notification state is set to DISABLED.