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

CreateMetricSetRequest

import type { CreateMetricSetRequest } from "https://aws-api.deno.dev/v0.3/services/lookoutmetrics.ts?docs=full";
interface CreateMetricSetRequest {
AnomalyDetectorArn: string;
DimensionList?: string[] | null;
MetricList: Metric[];
MetricSetDescription?: string | null;
MetricSetFrequency?: Frequency | null;
MetricSetName: string;
MetricSource: MetricSource;
Offset?: number | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
TimestampColumn?: TimestampColumn | null;
Timezone?: string | null;
}

§Properties

§
AnomalyDetectorArn: string
[src]

The ARN of the anomaly detector that will use the dataset.

§
DimensionList?: string[] | null
[src]

A list of the fields you want to treat as dimensions.

§
MetricList: Metric[]
[src]

A list of metrics that the dataset will contain.

§
MetricSetDescription?: string | null
[src]

A description of the dataset you are creating.

§
MetricSetFrequency?: Frequency | null
[src]

The frequency with which the source data will be analyzed for anomalies.

§
MetricSetName: string
[src]

The name of the dataset.

§
MetricSource: MetricSource
[src]

Contains information about how the source data should be interpreted.

§
Offset?: number | null
[src]

After an interval ends, the amount of seconds that the detector waits before importing data. Offset is only supported for S3 and Redshift datasources.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of tags to apply to the dataset.

§
TimestampColumn?: TimestampColumn | null
[src]

Contains information about the column used for tracking time in your source data.

§
Timezone?: string | null
[src]

The time zone in which your source data was recorded.