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

MathActivity

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

An activity that computes an arithmetic expression using the message's attributes.

interface MathActivity {
attribute: string;
math: string;
name: string;
next?: string | null;
}

§Properties

§
attribute: string
[src]

The name of the attribute that contains the result of the math operation.

§
math: string
[src]

An expression that uses one or more existing attributes and must return an integer value.

§
name: string
[src]

The name of the math activity.