ListAssetProperties
Source:
src/AWS/IoTSiteWise/ListAssetProperties.ts
Runtime binding for iotsitewise:ListAssetProperties — page through the
bound asset’s property summaries (ids, aliases, paths) from a deployed
Lambda or Task.
Listing Asset Properties
Section titled “Listing Asset Properties”Provide the ListAssetPropertiesHttp implementation layer on the
Function effect, bind the asset in the init phase, then call the returned
client at runtime. Pass filter: "ALL" to include properties inherited
from composite models.
// initconst listProperties = yield* AWS.IoTSiteWise.ListAssetProperties(asset);
// runtimeconst { assetPropertySummaries } = yield* listProperties({ filter: "ALL" });// on the Function effect:// .pipe(Effect.provide(AWS.IoTSiteWise.ListAssetPropertiesHttp))