If Condition Activity Args
data class IfConditionActivityArgs(val dependsOn: Output<List<ActivityDependencyArgs>>? = null, val description: Output<String>? = null, val expression: Output<ExpressionArgs>, val ifFalseActivities: Output<List<Any>>? = null, val ifTrueActivities: Output<List<Any>>? = null, val name: Output<String>, val onInactiveMarkAs: Output<Either<String, ActivityOnInactiveMarkAs>>? = null, val state: Output<Either<String, ActivityState>>? = null, val type: Output<String>, val userProperties: Output<List<UserPropertyArgs>>? = null) : ConvertibleToJava<IfConditionActivityArgs>
This activity evaluates a boolean expression and executes either the activities under the ifTrueActivities property or the ifFalseActivities property depending on the result of the expression.
Constructors
Link copied to clipboard
fun IfConditionActivityArgs(dependsOn: Output<List<ActivityDependencyArgs>>? = null, description: Output<String>? = null, expression: Output<ExpressionArgs>, ifFalseActivities: Output<List<Any>>? = null, ifTrueActivities: Output<List<Any>>? = null, name: Output<String>, onInactiveMarkAs: Output<Either<String, ActivityOnInactiveMarkAs>>? = null, state: Output<Either<String, ActivityState>>? = null, type: Output<String>, userProperties: Output<List<UserPropertyArgs>>? = null)