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.4/services/glue.ts?docs=full";

Specifies a transform that splits a dataset into two, based on a filter condition.

interface Filter {
Filters: FilterExpression[];
Inputs: string[];
LogicalOperator: FilterLogicalOperator;
Name: string;
}

§Properties

§

Specifies a filter expression.

§
Inputs: string[]
[src]

The data inputs identified by their node names.

§

The operator used to filter rows by comparing the key value to a specified value.

§
Name: string
[src]

The name of the transform node.