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

FilterExpression

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

Represents a structure for defining parameter conditions. Supported conditions are described here: Supported conditions for dynamic datasets in the Glue DataBrew Developer Guide.

interface FilterExpression {
Expression: string;
ValuesMap: {
[key: string]: string | null | undefined;
}
;
}

§Properties

§
Expression: string
[src]

The expression which includes condition names followed by substitution variables, possibly grouped and combined with other conditions. For example, "(starts_with :prefix1 or starts_with :prefix2) and (ends_with :suffix1 or ends_with :suffix2)". Substitution variables should start with ':' symbol.

§
ValuesMap: {
[key: string]: string | null | undefined;
}
[src]

The map of substitution variable names to their values used in this filter expression.