StringNotInAdvancedFilterArgs

data class StringNotInAdvancedFilterArgs(val key: Output<String>? = null, val operatorType: Output<String>, val values: Output<List<String>>? = null) : ConvertibleToJava<StringNotInAdvancedFilterArgs>

StringNotIn Advanced Filter.

Constructors

Link copied to clipboard
constructor(key: Output<String>? = null, operatorType: Output<String>, values: Output<List<String>>? = null)

Properties

Link copied to clipboard
val key: Output<String>? = null

The field/property in the event based on which you want to filter.

Link copied to clipboard
val operatorType: Output<String>

The operator type used for filtering, e.g., NumberIn, StringContains, BoolEquals and others. Expected value is 'StringNotIn'.

Link copied to clipboard
val values: Output<List<String>>? = null

The set of filter values.

Functions

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