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

CloudWatchAlarmConfiguration

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

A complex type that contains information about the CloudWatch alarm that Amazon Route 53 is monitoring for this health check.

interface CloudWatchAlarmConfiguration {
ComparisonOperator: ComparisonOperator;
Dimensions: Dimension[];
EvaluationPeriods: number;
MetricName: string;
Namespace: string;
Period: number;
Statistic: Statistic;
Threshold: number;
}

§Properties

§
ComparisonOperator: ComparisonOperator
[src]

For the metric that the CloudWatch alarm is associated with, the arithmetic operation that is used for the comparison.

§
Dimensions: Dimension[]
[src]

For the metric that the CloudWatch alarm is associated with, a complex type that contains information about the dimensions for the metric. For information, see Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference in the Amazon CloudWatch User Guide.

§
EvaluationPeriods: number
[src]

For the metric that the CloudWatch alarm is associated with, the number of periods that the metric is compared to the threshold.

§
MetricName: string
[src]

The name of the CloudWatch metric that the alarm is associated with.

§
Namespace: string
[src]

The namespace of the metric that the alarm is associated with. For more information, see Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference in the Amazon CloudWatch User Guide.

§
Period: number
[src]

For the metric that the CloudWatch alarm is associated with, the duration of one evaluation period in seconds.

§
Statistic: Statistic
[src]

For the metric that the CloudWatch alarm is associated with, the statistic that is applied to the metric.

§
Threshold: number
[src]

For the metric that the CloudWatch alarm is associated with, the value the metric is compared with.