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

ConditionExpression

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

Represents an individual condition that evaluates to true or false.

Conditions are used with recipe actions. The action is only performed for column values where the condition evaluates to true.

If a recipe requires more than one condition, then the recipe must specify multiple ConditionExpression elements. Each condition is applied to the rows in a dataset first, before the recipe action is performed.

interface ConditionExpression {
Condition: string;
TargetColumn: string;
Value?: string | null;
}

§Properties

§
Condition: string
[src]

A specific condition to apply to a recipe action. For more information, see Recipe structure in the Glue DataBrew Developer Guide.

§
TargetColumn: string
[src]

A column to apply this condition to.

§
Value?: string | null
[src]

A value that the condition must evaluate to for the condition to succeed.