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

Selector

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

A comparision that is used to determine whether a query should return this object.

interface Selector {
fieldName?: string | null;
operator?: Operator | null;
}

§Properties

§
fieldName?: string | null
[src]

The name of the field that the operator will be applied to. The field name is the "key" portion of the field definition in the pipeline definition syntax that is used by the AWS Data Pipeline API. If the field is not set on the object, the condition fails.

§
operator?: Operator | null
[src]