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

AnomalyTimeRange

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

A time range that specifies when the observed unusual behavior in an anomaly started and ended. This is different from AnomalyReportedTimeRange, which specifies the time range when DevOps Guru opens and then closes an anomaly.

interface AnomalyTimeRange {
EndTime?: Date | number | null;
StartTime: Date | number;
}

§Properties

§
EndTime?: Date | number | null
[src]

The time when the anomalous behavior ended.

§
StartTime: Date | number
[src]

The time when the anomalous behavior started.