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

This structure describes the filtering of columns in a table based on a filter condition.

interface FilterCondition {
ComparisonOperator?: ComparisonOperator | null;
Field?: FieldNameString | null;
StringValueList?: string[] | null;
}

§Properties

§
ComparisonOperator?: ComparisonOperator | null
[src]

The comparison operator used in the filter condition.

§
Field?: FieldNameString | null
[src]

The field to filter in the filter condition.

§
StringValueList?: string[] | null
[src]

A string with values used in evaluating the filter condition.