SafetyRuleRuleConfigArgs

data class SafetyRuleRuleConfigArgs(val inverted: Output<Boolean>, val threshold: Output<Int>, val type: Output<SafetyRuleRuleType>) : ConvertibleToJava<SafetyRuleRuleConfigArgs>

The rule configuration for an assertion rule or gating rule. This is the criteria that you set for specific assertion controls (routing controls) or gating controls. This configuration specifies how many controls must be enabled after a transaction completes.

Constructors

Link copied to clipboard
constructor(inverted: Output<Boolean>, threshold: Output<Int>, type: Output<SafetyRuleRuleType>)

Properties

Link copied to clipboard
val inverted: Output<Boolean>

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

Link copied to clipboard
val threshold: Output<Int>

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.

Link copied to clipboard

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

Functions

Link copied to clipboard
open override fun toJava(): SafetyRuleRuleConfigArgs