Switch Activity Args
data class SwitchActivityArgs(val cases: Output<List<SwitchCaseArgs>>? = null, val defaultActivities: Output<List<Any>>? = null, val dependsOn: Output<List<ActivityDependencyArgs>>? = null, val description: Output<String>? = null, val name: Output<String>, val on: Output<ExpressionArgs>, val type: Output<String>, val userProperties: Output<List<UserPropertyArgs>>? = null) : ConvertibleToJava<SwitchActivityArgs>
This activity evaluates an expression and executes activities under the cases property that correspond to the expression evaluation expected in the equals property.
Constructors
Link copied to clipboard
constructor(cases: Output<List<SwitchCaseArgs>>? = null, defaultActivities: Output<List<Any>>? = null, dependsOn: Output<List<ActivityDependencyArgs>>? = null, description: Output<String>? = null, name: Output<String>, on: Output<ExpressionArgs>, type: Output<String>, userProperties: Output<List<UserPropertyArgs>>? = null)
Properties
Link copied to clipboard
List of cases that correspond to expected values of the 'on' property. This is an optional property and if not provided, the activity will execute activities provided in defaultActivities.
Link copied to clipboard
List of activities to execute if no case condition is satisfied. This is an optional property and if not provided, the activity will exit without any action.
Link copied to clipboard
Activity depends on condition.
Link copied to clipboard
Activity description.
Link copied to clipboard
An expression that would evaluate to a string or integer. This is used to determine the block of activities in cases that will be executed.
Link copied to clipboard
Activity user properties.