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

AnomalyReportedTimeRange

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

A time range that specifies when DevOps Guru opens and then closes an anomaly. This is different from AnomalyTimeRange, which specifies the time range when DevOps Guru actually observes the anomalous behavior.

interface AnomalyReportedTimeRange {
CloseTime?: Date | number | null;
OpenTime: Date | number;
}

§Properties

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

The time when an anomaly is closed.

§
OpenTime: Date | number
[src]

The time when an anomaly is opened.