DetectorModelTransitionEventArgs

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

Specifies the actions performed and the next state entered when a `condition` evaluates to TRUE.

Constructors

Link copied to clipboard
constructor(actions: Output<List<DetectorModelActionArgs>>? = null, condition: Output<String>, eventName: Output<String>, nextState: 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>

Required. A Boolean expression that when TRUE causes the actions to be performed and the `nextState` to be entered.

Link copied to clipboard
val eventName: Output<String>

The name of the transition event.

Link copied to clipboard
val nextState: Output<String>

The next state to enter.

Functions

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