import { _Dimension, _UnmarshalledDimension } from "./_Dimension"; /** *

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

*/ export interface _CloudWatchAlarmConfiguration { /** *

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

*/ EvaluationPeriods: number; /** *

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

*/ Threshold: number; /** *

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

*/ ComparisonOperator: "GreaterThanOrEqualToThreshold" | "GreaterThanThreshold" | "LessThanThreshold" | "LessThanOrEqualToThreshold" | string; /** *

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

*/ Period: number; /** *

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

*/ MetricName: string; /** *

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.

*/ Namespace: string; /** *

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

*/ Statistic: "Average" | "Sum" | "SampleCount" | "Maximum" | "Minimum" | string; /** *

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.

*/ Dimensions?: Array<_Dimension> | Iterable<_Dimension>; } export interface _UnmarshalledCloudWatchAlarmConfiguration extends _CloudWatchAlarmConfiguration { /** *

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.

*/ Dimensions?: Array<_UnmarshalledDimension>; }