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 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
constructor(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>, type: Output<String>, userProperties: Output<List<UserPropertyArgs>>? = null)
Properties
Link copied to clipboard
Activity depends on condition.
Link copied to clipboard
Activity description.
Link copied to clipboard
An expression that would evaluate to Boolean. This is used to determine the block of activities (ifTrueActivities or ifFalseActivities) that will be executed.
Link copied to clipboard
List of activities to execute if expression is evaluated to false. This is an optional property and if not provided, the activity will exit without any action.
Link copied to clipboard
List of activities to execute if expression is evaluated to true. This is an optional property and if not provided, the activity will exit without any action.
Link copied to clipboard
Activity user properties.