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

FilterCondition

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

Information for the filtering of a list of domains returned by ListDomains.

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

§Properties

§

Name of the field which should be used for filtering the list of domains.

§
Operator: Operator
[src]

The operator values for filtering domain names. The values can be:

  • LE: Less than, or equal to
  • GE: Greater than, or equal to
  • BEGINS_WITH: Begins with
§
Values: string[]
[src]

An array of strings presenting values to compare. Only 1 item in the list is currently supported.