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

DurationRange

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

This data type is used in the "AssessmentTemplateFilter" data type.

interface DurationRange {
maxSeconds?: number | null;
minSeconds?: number | null;
}

§Properties

§
maxSeconds?: number | null
[src]

The maximum value of the duration range. Must be less than or equal to 604800 seconds (1 week).

§
minSeconds?: number | null
[src]

The minimum value of the duration range. Must be greater than zero.