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

SimpleRuleEvaluation

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

Information needed to compare two values with a comparison operator.

interface SimpleRuleEvaluation {
inputPropertyValue?: string | null;
operator?: ComparisonOperator | null;
thresholdValue?: string | null;
}

§Properties

§
inputPropertyValue?: string | null
[src]

The value of the input property, on the left side of the comparison operator.

§
operator?: ComparisonOperator | null
[src]

The comparison operator.

§
thresholdValue?: string | null
[src]

The threshold value, on the right side of the comparison operator.