Until Activity Args
data class UntilActivityArgs(val activities: Output<List<Any>>, val dependsOn: Output<List<ActivityDependencyArgs>>? = null, val description: Output<String>? = null, val expression: Output<ExpressionArgs>, val name: Output<String>, val onInactiveMarkAs: Output<Either<String, ActivityOnInactiveMarkAs>>? = null, val state: Output<Either<String, ActivityState>>? = null, val timeout: Output<Any>? = null, val type: Output<String>, val userProperties: Output<List<UserPropertyArgs>>? = null) : ConvertibleToJava<UntilActivityArgs>
This activity executes inner activities until the specified boolean expression results to true or timeout is reached, whichever is earlier.
Constructors
Link copied to clipboard
fun UntilActivityArgs(activities: Output<List<Any>>, dependsOn: Output<List<ActivityDependencyArgs>>? = null, description: Output<String>? = null, expression: Output<ExpressionArgs>, name: Output<String>, onInactiveMarkAs: Output<Either<String, ActivityOnInactiveMarkAs>>? = null, state: Output<Either<String, ActivityState>>? = null, timeout: Output<Any>? = null, type: Output<String>, userProperties: Output<List<UserPropertyArgs>>? = null)