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

DimensionFilter

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

Represents filters for a dimension.

interface DimensionFilter {
Name: string;
Value?: string | null;
}

§Properties

§
Name: string
[src]

The dimension name to be matched.

§
Value?: string | null
[src]

The value of the dimension to be matched.