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

DataQualitySummary

import type { DataQualitySummary } from "https://aws-api.deno.dev/v0.4/services/lookoutequipment.ts?docs=full";

DataQualitySummary gives aggregated statistics over all the sensors about a completed ingestion job. It primarily gives more information about statistics over different incorrect data like MissingCompleteSensorData, MissingSensorData, UnsupportedDateFormats, InsufficientSensorData, DuplicateTimeStamps.

interface DataQualitySummary {
DuplicateTimestamps: DuplicateTimestamps;
InsufficientSensorData: InsufficientSensorData;
InvalidSensorData: InvalidSensorData;
MissingSensorData: MissingSensorData;
UnsupportedTimestamps: UnsupportedTimestamps;
}

§Properties

§
DuplicateTimestamps: DuplicateTimestamps
[src]

Parameter that gives information about duplicate timestamps in the input data.

§
InsufficientSensorData: InsufficientSensorData
[src]

Parameter that gives information about insufficient data for sensors in the dataset. This includes information about those sensors that have complete data missing and those with a short date range.

§
InvalidSensorData: InvalidSensorData
[src]

Parameter that gives information about data that is invalid over all the sensors in the input data.

§
MissingSensorData: MissingSensorData
[src]

Parameter that gives information about data that is missing over all the sensors in the input data.

§
UnsupportedTimestamps: UnsupportedTimestamps
[src]

Parameter that gives information about unsupported timestamps in the input data.