IfConditionActivityArgs

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
val dependsOn: Output<List<ActivityDependencyArgs>>? = null

Activity depends on condition.

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

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
val ifFalseActivities: Output<List<Any>>? = null

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
val ifTrueActivities: Output<List<Any>>? = null

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
val name: Output<String>

Activity name.

Link copied to clipboard
val type: Output<String>

Type of activity. Expected value is 'IfCondition'.

Link copied to clipboard
val userProperties: Output<List<UserPropertyArgs>>? = null

Activity user properties.

Functions

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