Package version:

Interface RuleProperties

Represents all the attributes of a rule.

interface RuleProperties {
    action: SqlRuleAction;
    filter: CorrelationRuleFilter | SqlRuleFilter;
    name: string;
}

Properties

Properties

The SQL like expression that can be executed on the message should the associated filter apply.

Defines the filter expression that the rule evaluates. For SqlRuleFilter input, the expression string is interpreted as a SQL92 expression which must evaluate to True or False. Only one between a CorrelationRuleFilter or a SqlRuleFilter can be defined.

name: string

Name of the rule

Generated using TypeDoc