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

Filter

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

Identifies the name and value of a filter object. This filter is used to limit the number and type of DMS objects that are returned for a particular Describe* call or similar operation. Filters are used as an optional parameter for certain API operations.

interface Filter {
Name: string;
Values: string[];
}

§Properties

§
Name: string
[src]

The name of the filter as specified for a Describe* or similar operation.

§
Values: string[]
[src]

The filter value, which can specify one or more values used to narrow the returned results.