DetectorModelEventArgs

data class DetectorModelEventArgs(val actions: Output<List<DetectorModelActionArgs>>? = null, val condition: Output<String>? = null, val eventName: Output<String>) : ConvertibleToJava<DetectorModelEventArgs>

Specifies the `actions` to be performed when the `condition` evaluates to TRUE.

Constructors

Link copied to clipboard
constructor(actions: Output<List<DetectorModelActionArgs>>? = null, condition: Output<String>? = null, eventName: Output<String>)

Properties

Link copied to clipboard
val actions: Output<List<DetectorModelActionArgs>>? = null

The actions to be performed.

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

Optional. The Boolean expression that, when TRUE, causes the `actions` to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).

Link copied to clipboard
val eventName: Output<String>

The name of the event.

Functions

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