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

TimeWindow

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

Filters evaluation results based on start and end times.

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

§Properties

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

The end time of an execution. The end time must be after the start date.

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

The start time of an execution.