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

MetricDimension

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

The dimension of a metric.

interface MetricDimension {
dimensionName: string;
operator?: DimensionValueOperator | null;
}

§Properties

§
dimensionName: string
[src]

A unique identifier for the dimension.

§
operator?: DimensionValueOperator | null
[src]

Defines how the dimensionValues of a dimension are interpreted. For example, for dimension type TOPIC_FILTER, the IN operator, a message will be counted only if its topic matches one of the topic filters. With NOT_IN operator, a message will be counted only if it doesn't match any of the topic filters. The operator is optional: if it's not provided (is null), it will be interpreted as IN.