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

FilterActivity

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

An activity that filters a message based on its attributes.

interface FilterActivity {
filter: string;
name: string;
next?: string | null;
}

§Properties

§
filter: string
[src]

An expression that looks like a SQL WHERE clause that must return a Boolean value. Messages that satisfy the condition are passed to the next activity.

§
name: string
[src]

The name of the filter activity.