AnalyzerFilterArgs

data class AnalyzerFilterArgs(val contains: Output<List<String>>? = null, val eq: Output<List<String>>? = null, val exists: Output<Boolean>? = null, val neq: Output<List<String>>? = null, val property: Output<String>) : ConvertibleToJava<AnalyzerFilterArgs>

Constructors

Link copied to clipboard
constructor(contains: Output<List<String>>? = null, eq: Output<List<String>>? = null, exists: Output<Boolean>? = null, neq: Output<List<String>>? = null, property: Output<String>)

Properties

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

A "contains" condition to match for the rule.

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

An "equals" condition to match for the rule.

Link copied to clipboard
val exists: Output<Boolean>? = null

An "exists" condition to match for the rule.

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

A "not equal" condition to match for the rule.

Link copied to clipboard
val property: Output<String>

The property used to define the criteria in the filter for the rule.

Functions

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