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

EdgeMetric

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

Information required for edge device metrics.

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

§Properties

§
Dimension?: string | null
[src]

The dimension of metrics published.

§
MetricName?: string | null
[src]

Returns the name of the metric.

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

Timestamp of when the metric was requested.

§
Value?: number | null
[src]

Returns the value of the metric.