You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
543
569
iterator (State or Chain): State or chain to execute for each of the items in `items_path`.
544
-
items_path (str, optional): Path in the input for items to iterate over. (default: '$')
545
-
max_concurrency (int, optional): Maximum number of iterations to have running at any given point in time. (default: 0)
546
-
comment (str, optional): Human-readable comment or description. (default: None)
547
-
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: '$')
570
+
items_path (str or Placeholder, optional): Path in the input for items to iterate over. (default: '$')
571
+
max_concurrency (int or Placeholder, optional): Maximum number of iterations to have running at any given point in time. (default: 0)
572
+
comment (str or Placeholder, optional): Human-readable comment or description. (default: None)
573
+
input_path (str or Placeholder, optional): Path applied to the state’s raw input to select some or all of it; that selection is used by the state. (default: '$')
548
574
parameters (dict, optional): The value of this field becomes the effective input for the state.
549
-
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
550
-
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: '$')
575
+
result_path (str or Placeholder, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
576
+
output_path (str or Placeholder, 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: '$')
0 commit comments