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

MetricDatum

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

Internal only. Collects Apache Airflow metrics. To learn more about the metrics published to Amazon CloudWatch, see Amazon MWAA performance metrics in Amazon CloudWatch.

interface MetricDatum {
Dimensions?: Dimension[] | null;
MetricName: string;
StatisticValues?: StatisticSet | null;
Timestamp: Date | number;
Unit?: Unit | null;
Value?: number | null;
}

§Properties

§
Dimensions?: Dimension[] | null
[src]

Internal only. The dimensions associated with the metric.

§
MetricName: string
[src]

Internal only. The name of the metric.

§
StatisticValues?: StatisticSet | null
[src]

Internal only. The statistical values for the metric.

§
Timestamp: Date | number
[src]

Internal only. The time the metric data was received.

§
Unit?: Unit | null
[src]

Internal only. The unit used to store the metric.

§
Value?: number | null
[src]

Internal only. The value for the metric.