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

PutAnomalyDetectorInput

import type { PutAnomalyDetectorInput } from "https://aws-api.deno.dev/v0.4/services/cloudwatch.ts?docs=full";
interface PutAnomalyDetectorInput {
Configuration?: AnomalyDetectorConfiguration | null;
Dimensions?: Dimension[] | null;
MetricMathAnomalyDetector?: MetricMathAnomalyDetector | null;
MetricName?: string | null;
Namespace?: string | null;
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | null;
Stat?: string | null;
}

§Properties

§
Configuration?: AnomalyDetectorConfiguration | null
[src]

The configuration specifies details about how the anomaly detection model is to be trained, including time ranges to exclude when training and updating the model. You can specify as many as 10 time ranges.

The configuration can also include the time zone to use for the metric.

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

The metric dimensions to create the anomaly detection model for.

§
MetricMathAnomalyDetector?: MetricMathAnomalyDetector | null
[src]

The metric math anomaly detector to be created.

When using MetricMathAnomalyDetector, you cannot include the following parameters in the same operation:

  • Dimensions
    
  • MetricName
    
  • Namespace
    
  • Stat
    
  • the SingleMetricAnomalyDetector parameters of PutAnomalyDetectorInput

Instead, specify the metric math anomaly detector attributes as part of the property MetricMathAnomalyDetector.

§
MetricName?: string | null
[src]

The name of the metric to create the anomaly detection model for.

§
Namespace?: string | null
[src]

The namespace of the metric to create the anomaly detection model for.

§
SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | null
[src]

A single metric anomaly detector to be created.

When using SingleMetricAnomalyDetector, you cannot include the following parameters in the same operation:

  • Dimensions
    
  • MetricName
    
  • Namespace
    
  • Stat
    
  • the MetricMatchAnomalyDetector parameters of PutAnomalyDetectorInput

Instead, specify the single metric anomaly detector attributes as part of the property SingleMetricAnomalyDetector.

§
Stat?: string | null
[src]

The statistic to use for the metric and the anomaly detection model.