Parallel.Rd
A Parallel state causes the interpreter to execute each branch as concurrently as possible, and wait until each branch terminates (reaches a terminal state) before processing the next state in the Chain.
stepfunctions::Block
-> stepfunctions::State
-> Parallel
Inherited methods
new()
Initialize Parallel state class
Parallel$new( state_id, comment = NULL, input_path = NULL, parameters = NULL, result_path = NULL, output_path = NULL, ... )
state_id
(str): State name whose length **must be** less than or equal to 128 unicode characters. State names **must be** unique within the scope of the whole state machine.
comment
(str, optional): Human-readable comment or description. (default: None)
input_path
(str, optional): Path applied to the state’s raw input to select some or all of it; that selection is used by the state. (default: '$')
parameters
(list, optional): The value of this field becomes the effective input for the state.
result_path
(str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
output_path
(str, optional): Path applied to the state’s output after the application of `result_path`, producing the effective output which serves as the raw input for the next state. (default: '$')
...
: Extra field names to pass to Block class
allowed_fields()
allowed extra fields
Parallel$allowed_fields()
add_branch()
Add a `State` or `Chain` as a branch to the Parallel state.
Parallel$add_branch(branch)
branch
(State or Chain): State or Chain to attach as a branch to the Parallel state.
to_list()
Convert class to list ready to be translated for Amazon States Language https://states-language.net/spec.html.
Parallel$to_list()
clone()
The objects of this class are cloneable with this method.
Parallel$clone(deep = FALSE)
deep
Whether to make a deep clone.