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

ImportTaskFilter

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

A name-values pair of elements you can use to filter the results when querying your import tasks. Currently, wildcards are not supported for filters.

Note: When filtering by import status, all other filter values are ignored.

interface ImportTaskFilter {
name?: ImportTaskFilterName | null;
values?: string[] | null;
}

§Properties

§

The name, status, or import task ID for a specific import task.

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

An array of strings that you can provide to match against a specific name, status, or import task ID to filter the results for your import task queries.