DetectorModelStateArgs

data class DetectorModelStateArgs(val onEnter: Output<DetectorModelOnEnterArgs>? = null, val onExit: Output<DetectorModelOnExitArgs>? = null, val onInput: Output<DetectorModelOnInputArgs>? = null, val stateName: Output<String>) : ConvertibleToJava<DetectorModelStateArgs>

Information that defines a state of a detector.

Constructors

Link copied to clipboard
constructor(onEnter: Output<DetectorModelOnEnterArgs>? = null, onExit: Output<DetectorModelOnExitArgs>? = null, onInput: Output<DetectorModelOnInputArgs>? = null, stateName: Output<String>)

Properties

Link copied to clipboard
val onEnter: Output<DetectorModelOnEnterArgs>? = null

When entering this state, perform these `actions` if the `condition` is TRUE.

Link copied to clipboard
val onExit: Output<DetectorModelOnExitArgs>? = null

When exiting this state, perform these `actions` if the specified `condition` is `TRUE`.

Link copied to clipboard
val onInput: Output<DetectorModelOnInputArgs>? = null

When an input is received and the `condition` is TRUE, perform the specified `actions`.

Link copied to clipboard
val stateName: Output<String>

The name of the state.

Functions

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