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

DescribeJobsRequestFilters

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

A set of filters by which to return Jobs.

interface DescribeJobsRequestFilters {
fromDate?: string | null;
jobIDs?: string[] | null;
toDate?: string | null;
}

§Properties

§
fromDate?: string | null
[src]

The start date in a date range query.

§
jobIDs?: string[] | null
[src]

An array of Job IDs that should be returned. An empty array means all jobs.

§
toDate?: string | null
[src]

The end date in a date range query.