Skip to content

ListTimeSeriesDataPoints

Source: src/AWS/DataZone/ListTimeSeriesDataPoints.ts

Runtime binding for datazone:ListTimeSeriesDataPoints.

Lists time series data points recorded on an asset or listing in the bound domain. The domain id is injected from the binding. Provide the implementation with Effect.provide(AWS.DataZone.ListTimeSeriesDataPointsHttp).

// init — bind the operation to the domain
const listTimeSeriesDataPoints = yield* AWS.DataZone.ListTimeSeriesDataPoints(domain);
// runtime
const points = yield* listTimeSeriesDataPoints({
entityIdentifier: assetId,
entityType: "ASSET",
formName: "quality",
});