Succeed.RdSucceed State terminates a state machine successfully. The Succeed State is a useful target for :R:class:`Choice`-state branches that don't do anything but terminate the machine.
stepfunctions::Block -> stepfunctions::State -> Succeed
Inherited methods
new()Initialize Succeed State class
Succeed$new(state_id, comment = NULL, input_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: '$')
output_path(str, optional): Path applied to the state’s output, 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
Succeed$allowed_fields()
clone()The objects of this class are cloneable with this method.
Succeed$clone(deep = FALSE)
deepWhether to make a deep clone.