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

MetricData

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

The name, value, and date and time of a metric that was emitted to Amazon CloudWatch.

interface MetricData {
MetricName?: string | null;
Timestamp?: Date | number | null;
Value?: number | null;
}

§Properties

§
MetricName?: string | null
[src]

The name of the metric.

§
Timestamp?: Date | number | null
[src]

The date and time that the algorithm emitted the metric.

§
Value?: number | null
[src]

The value of the metric.