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

LocationFilter

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

You can use API filters to narrow down the list of resources returned by ListLocations. For example, to retrieve all your Amazon S3 locations, you can use ListLocations with filter name LocationType S3 and Operator Equals.

interface LocationFilter {
Operator: Operator;
Values: string[];
}

§Properties

§

The name of the filter being used. Each API call supports a list of filters that are available for it (for example, LocationType for ListLocations).

§
Operator: Operator
[src]

The operator that is used to compare filter values (for example, Equals or Contains). For more about API filtering operators, see API filters for ListTasks and ListLocations.

§
Values: string[]
[src]

The values that you want to filter for. For example, you might want to display only Amazon S3 locations.