Detector Model State Args
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
When entering this state, perform these `actions`
if the `condition`
is TRUE.
Link copied to clipboard
When exiting this state, perform these `actions`
if the specified `condition`
is `TRUE`
.
Link copied to clipboard
When an input is received and the `condition`
is TRUE, perform the specified `actions`
.