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

DescribeAnomalyDetectorsInput

import type { DescribeAnomalyDetectorsInput } from "https://aws-api.deno.dev/v0.4/services/cloudwatch.ts?docs=full";
interface DescribeAnomalyDetectorsInput {
AnomalyDetectorTypes?: AnomalyDetectorType[] | null;
Dimensions?: Dimension[] | null;
MaxResults?: number | null;
MetricName?: string | null;
Namespace?: string | null;
NextToken?: string | null;
}

§Properties

§
AnomalyDetectorTypes?: AnomalyDetectorType[] | null
[src]

The anomaly detector types to request when using DescribeAnomalyDetectorsInput. If empty, defaults to SINGLE_METRIC.

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

Limits the results to only the anomaly detection models that are associated with the specified metric dimensions. If there are multiple metrics that have these dimensions and have anomaly detection models associated, they're all returned.

§
MaxResults?: number | null
[src]

The maximum number of results to return in one operation. The maximum value that you can specify is 100.

To retrieve the remaining results, make another call with the returned NextToken value.

§
MetricName?: string | null
[src]

Limits the results to only the anomaly detection models that are associated with the specified metric name. If there are multiple metrics with this name in different namespaces that have anomaly detection models, they're all returned.

§
Namespace?: string | null
[src]

Limits the results to only the anomaly detection models that are associated with the specified namespace.

§
NextToken?: string | null
[src]

Use the token returned by the previous operation to request the next page of results.