SwitchCaseArgs

data class SwitchCaseArgs(val activities: Output<List<Any>>? = null, val value: Output<String>? = null) : ConvertibleToJava<SwitchCaseArgs>

Switch cases with have a value and corresponding activities.

Constructors

Link copied to clipboard
constructor(activities: Output<List<Any>>? = null, value: Output<String>? = null)

Properties

Link copied to clipboard
val activities: Output<List<Any>>? = null

List of activities to execute for satisfied case condition.

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

Expected value that satisfies the expression result of the 'on' property.

Functions

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