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

DataQualityMetric

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

An array that describes a data quality metric. Each DataQualityMetric object contains the data quality metric name, its value, a description of the metric, and the affected column.

interface DataQualityMetric {
MetricDescription?: string | null;
MetricType?: DataQualityMetricType | null;
MetricValue?: number | null;
RelatedColumnName?: string | null;
}

§Properties

§
MetricDescription?: string | null
[src]

A description of the data quality metric.

§
MetricType?: DataQualityMetricType | null
[src]

The name of the data quality metric.

§
MetricValue?: number | null
[src]

The value of the data quality metric.

§
RelatedColumnName?: string | null
[src]

The column that is being monitored.