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.
28
28
comment (str, optional): Human-readable comment or description. (default: None)
29
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
30
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
31
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
32
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
29
33
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: '$')
30
34
parameters (dict, optional): The value of this field becomes the effective input for the state.
31
35
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
48
52
comment (str, optional): Human-readable comment or description. (default: None)
53
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
54
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
55
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
56
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
49
57
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: '$')
50
58
parameters (dict, optional): The value of this field becomes the effective input for the state.
51
59
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
68
76
comment (str, optional): Human-readable comment or description. (default: None)
77
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
78
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
79
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
80
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
69
81
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: '$')
70
82
parameters (dict, optional): The value of this field becomes the effective input for the state.
71
83
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
88
100
comment (str, optional): Human-readable comment or description. (default: None)
101
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
102
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
103
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
104
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
89
105
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: '$')
90
106
parameters (dict, optional): The value of this field becomes the effective input for the state.
91
107
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
165
181
comment (str, optional): Human-readable comment or description. (default: None)
182
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
183
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
184
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
185
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
166
186
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: '$')
167
187
parameters (dict, optional): The value of this field becomes the effective input for the state.
168
188
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
189
209
comment (str, optional): Human-readable comment or description. (default: None)
210
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
211
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
212
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
213
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
190
214
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: '$')
191
215
parameters (dict, optional): The value of this field becomes the effective input for the state.
192
216
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
213
237
comment (str, optional): Human-readable comment or description. (default: None)
238
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
239
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
240
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
241
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
214
242
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: '$')
215
243
parameters (dict, optional): The value of this field becomes the effective input for the state.
216
244
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
237
265
comment (str, optional): Human-readable comment or description. (default: None)
266
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
267
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
268
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
269
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
238
270
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: '$')
239
271
parameters (dict, optional): The value of this field becomes the effective input for the state.
240
272
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
257
289
comment (str, optional): Human-readable comment or description. (default: None)
290
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
291
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
292
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
293
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
258
294
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: '$')
259
295
parameters (dict, optional): The value of this field becomes the effective input for the state.
260
296
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
277
313
comment (str, optional): Human-readable comment or description. (default: None)
314
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
315
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
316
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
317
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
278
318
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: '$')
279
319
parameters (dict, optional): The value of this field becomes the effective input for the state.
280
320
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
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.
297
337
comment (str, optional): Human-readable comment or description. (default: None)
338
+
timeout_seconds (int, optional): Positive integer specifying timeout for the state in seconds. If the state runs longer than the specified timeout, then the interpreter fails the state with a `States.Timeout` Error Name. (default: 60)
339
+
timeout_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for timeout seconds duration.
340
+
heartbeat_seconds (int, optional): Positive integer specifying heartbeat timeout for the state in seconds. This value should be lower than the one specified for `timeout_seconds`. If more time than the specified heartbeat elapses between heartbeats from the task, then the interpreter fails the state with a `States.Timeout` Error Name.
341
+
heartbeat_seconds_path (str, optional): Path applied to the state's input to select the integer to be used for heartbeat seconds duration.
298
342
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: '$')
299
343
parameters (dict, optional): The value of this field becomes the effective input for the state.
300
344
result_path (str, optional): Path specifying the raw input’s combination with or replacement by the state’s result. (default: '$')
0 commit comments