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

AnomalyDetectorConfiguration

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

The configuration specifies details about how the anomaly detection model is to be trained, including time ranges to exclude from use for training the model and the time zone to use for the metric.

interface AnomalyDetectorConfiguration {
ExcludedTimeRanges?: Range[] | null;
MetricTimezone?: string | null;
}

§Properties

§
ExcludedTimeRanges?: Range[] | null
[src]

An array of time ranges to exclude from use when the anomaly detection model is trained. Use this to make sure that events that could cause unusual values for the metric, such as deployments, aren't used when CloudWatch creates the model.

§
MetricTimezone?: string | null
[src]

The time zone to use for the metric. This is useful to enable the model to automatically account for daylight savings time changes if the metric is sensitive to such time changes.

To specify a time zone, use the name of the time zone as specified in the standard tz database. For more information, see tz database.