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.4/services/securityhub.ts?docs=full";

A date filter for querying findings.

interface DateFilter {
DateRange?: DateRange | null;
End?: string | null;
Start?: string | null;
}

§Properties

§
DateRange?: DateRange | null
[src]

A date range for the date filter.

§
End?: string | null
[src]

A timestamp that provides the end date for the date filter.

A correctly formatted example is 2020-05-21T20:16:34.724Z. The value cannot contain spaces, and date and time should be separated by T. For more information, see RFC 3339 section 5.6, Internet Date/Time Format.

§
Start?: string | null
[src]

A timestamp that provides the start date for the date filter.

A correctly formatted example is 2020-05-21T20:16:34.724Z. The value cannot contain spaces, and date and time should be separated by T. For more information, see RFC 3339 section 5.6, Internet Date/Time Format.