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

DescribeAlarmsForMetricInput

import type { DescribeAlarmsForMetricInput } from "https://aws-api.deno.dev/v0.4/services/cloudwatch.ts?docs=full";
interface DescribeAlarmsForMetricInput {
Dimensions?: Dimension[] | null;
ExtendedStatistic?: string | null;
MetricName: string;
Namespace: string;
Period?: number | null;
Statistic?: Statistic | null;
Unit?: StandardUnit | null;
}

§Properties

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

The dimensions associated with the metric. If the metric has any associated dimensions, you must specify them in order for the call to succeed.

§
ExtendedStatistic?: string | null
[src]

The percentile statistic for the metric. Specify a value between p0.0 and p100.

§
MetricName: string
[src]

The name of the metric.

§
Namespace: string
[src]

The namespace of the metric.

§
Period?: number | null
[src]

The period, in seconds, over which the statistic is applied.

§
Statistic?: Statistic | null
[src]

The statistic for the metric, other than percentiles. For percentile statistics, use ExtendedStatistics.

§
Unit?: StandardUnit | null
[src]

The unit for the metric.