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

DateFilter

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

Contains details on the time range used to filter findings.

interface DateFilter {
endInclusive?: Date | number | null;
startInclusive?: Date | number | null;
}

§Properties

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

A timestamp representing the end of the time period filtered on.

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

A timestamp representing the start of the time period filtered on.