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

PutAssetPropertyValueEntry

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

Contains a list of value updates for an asset property in the list of asset entries consumed by the BatchPutAssetPropertyValue API operation.

interface PutAssetPropertyValueEntry {
assetId?: string | null;
entryId: string;
propertyAlias?: string | null;
propertyId?: string | null;
propertyValues: AssetPropertyValue[];
}

§Properties

§
assetId?: string | null
[src]

The ID of the asset to update.

§
entryId: string
[src]

The user specified ID for the entry. You can use this ID to identify which entries failed.

§
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.

§
propertyId?: string | null
[src]

The ID of the asset property for this entry.

§
propertyValues: AssetPropertyValue[]
[src]

The list of property values to upload. You can specify up to 10 propertyValues array elements.