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

RuleConfig

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

The rule configuration for an assertion rule. That is, the criteria that you set for specific assertion controls (routing controls) that specify how many control states must be ON after a transaction completes.

interface RuleConfig {
Inverted: boolean;
Threshold: number;
Type: RuleType;
}

§Properties

§
Inverted: boolean
[src]

Logical negation of the rule. If the rule would usually evaluate true, it's evaluated as false, and vice versa.

§
Threshold: number
[src]

The value of N, when you specify an ATLEAST rule type. That is, Threshold is the number of controls that must be set when you specify an ATLEAST type.

§

A rule can be one of the following: ATLEAST, AND, or OR.