@aws-sdk/client-sfn 3.956.0 → 3.958.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -43
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +830 -994
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/pagination/index.js +1 -1
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +830 -994
- package/dist-types/pagination/index.d.ts +1 -1
- package/dist-types/ts3.4/pagination/index.d.ts +1 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
AWS SDK for JavaScript SFN Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
9
|
<fullname>Step Functions</fullname>
|
|
10
|
-
|
|
11
10
|
<p>With Step Functions, you can create workflows, also called <i>state machines</i>, to build distributed applications, automate processes, orchestrate microservices, and create data and machine learning pipelines.</p>
|
|
12
11
|
<p>Through the Step Functions API, you can create, list, update, and delete state machines, activities, and other data types. You can start, stop, and redrive your state machines. Your activity workers can send task success, heartbeat, and failure responses.</p>
|
|
13
12
|
<p>With API calls, you can also manage other aspects of your workflow, such as tags, versions, and aliases.</p>
|
|
@@ -19,10 +18,8 @@ AWS SDK for JavaScript SFN Client for Node.js, Browser and React Native.
|
|
|
19
18
|
</important>
|
|
20
19
|
|
|
21
20
|
## Installing
|
|
22
|
-
|
|
23
21
|
To install this package, simply type add or install @aws-sdk/client-sfn
|
|
24
22
|
using your favorite package manager:
|
|
25
|
-
|
|
26
23
|
- `npm install @aws-sdk/client-sfn`
|
|
27
24
|
- `yarn add @aws-sdk/client-sfn`
|
|
28
25
|
- `pnpm add @aws-sdk/client-sfn`
|
|
@@ -58,9 +55,7 @@ To send a request, you:
|
|
|
58
55
|
// a client can be shared by different commands.
|
|
59
56
|
const client = new SFNClient({ region: "REGION" });
|
|
60
57
|
|
|
61
|
-
const params = {
|
|
62
|
-
/** input parameters */
|
|
63
|
-
};
|
|
58
|
+
const params = { /** input parameters */ };
|
|
64
59
|
const command = new ListActivitiesCommand(params);
|
|
65
60
|
```
|
|
66
61
|
|
|
@@ -219,7 +214,6 @@ CreateActivity
|
|
|
219
214
|
</summary>
|
|
220
215
|
|
|
221
216
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/CreateActivityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/CreateActivityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/CreateActivityCommandOutput/)
|
|
222
|
-
|
|
223
217
|
</details>
|
|
224
218
|
<details>
|
|
225
219
|
<summary>
|
|
@@ -227,7 +221,6 @@ CreateStateMachine
|
|
|
227
221
|
</summary>
|
|
228
222
|
|
|
229
223
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/CreateStateMachineCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/CreateStateMachineCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/CreateStateMachineCommandOutput/)
|
|
230
|
-
|
|
231
224
|
</details>
|
|
232
225
|
<details>
|
|
233
226
|
<summary>
|
|
@@ -235,7 +228,6 @@ CreateStateMachineAlias
|
|
|
235
228
|
</summary>
|
|
236
229
|
|
|
237
230
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/CreateStateMachineAliasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/CreateStateMachineAliasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/CreateStateMachineAliasCommandOutput/)
|
|
238
|
-
|
|
239
231
|
</details>
|
|
240
232
|
<details>
|
|
241
233
|
<summary>
|
|
@@ -243,7 +235,6 @@ DeleteActivity
|
|
|
243
235
|
</summary>
|
|
244
236
|
|
|
245
237
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DeleteActivityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DeleteActivityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DeleteActivityCommandOutput/)
|
|
246
|
-
|
|
247
238
|
</details>
|
|
248
239
|
<details>
|
|
249
240
|
<summary>
|
|
@@ -251,7 +242,6 @@ DeleteStateMachine
|
|
|
251
242
|
</summary>
|
|
252
243
|
|
|
253
244
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DeleteStateMachineCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DeleteStateMachineCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DeleteStateMachineCommandOutput/)
|
|
254
|
-
|
|
255
245
|
</details>
|
|
256
246
|
<details>
|
|
257
247
|
<summary>
|
|
@@ -259,7 +249,6 @@ DeleteStateMachineAlias
|
|
|
259
249
|
</summary>
|
|
260
250
|
|
|
261
251
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DeleteStateMachineAliasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DeleteStateMachineAliasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DeleteStateMachineAliasCommandOutput/)
|
|
262
|
-
|
|
263
252
|
</details>
|
|
264
253
|
<details>
|
|
265
254
|
<summary>
|
|
@@ -267,7 +256,6 @@ DeleteStateMachineVersion
|
|
|
267
256
|
</summary>
|
|
268
257
|
|
|
269
258
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DeleteStateMachineVersionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DeleteStateMachineVersionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DeleteStateMachineVersionCommandOutput/)
|
|
270
|
-
|
|
271
259
|
</details>
|
|
272
260
|
<details>
|
|
273
261
|
<summary>
|
|
@@ -275,7 +263,6 @@ DescribeActivity
|
|
|
275
263
|
</summary>
|
|
276
264
|
|
|
277
265
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DescribeActivityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeActivityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeActivityCommandOutput/)
|
|
278
|
-
|
|
279
266
|
</details>
|
|
280
267
|
<details>
|
|
281
268
|
<summary>
|
|
@@ -283,7 +270,6 @@ DescribeExecution
|
|
|
283
270
|
</summary>
|
|
284
271
|
|
|
285
272
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DescribeExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeExecutionCommandOutput/)
|
|
286
|
-
|
|
287
273
|
</details>
|
|
288
274
|
<details>
|
|
289
275
|
<summary>
|
|
@@ -291,7 +277,6 @@ DescribeMapRun
|
|
|
291
277
|
</summary>
|
|
292
278
|
|
|
293
279
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DescribeMapRunCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeMapRunCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeMapRunCommandOutput/)
|
|
294
|
-
|
|
295
280
|
</details>
|
|
296
281
|
<details>
|
|
297
282
|
<summary>
|
|
@@ -299,7 +284,6 @@ DescribeStateMachine
|
|
|
299
284
|
</summary>
|
|
300
285
|
|
|
301
286
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DescribeStateMachineCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeStateMachineCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeStateMachineCommandOutput/)
|
|
302
|
-
|
|
303
287
|
</details>
|
|
304
288
|
<details>
|
|
305
289
|
<summary>
|
|
@@ -307,7 +291,6 @@ DescribeStateMachineAlias
|
|
|
307
291
|
</summary>
|
|
308
292
|
|
|
309
293
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DescribeStateMachineAliasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeStateMachineAliasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeStateMachineAliasCommandOutput/)
|
|
310
|
-
|
|
311
294
|
</details>
|
|
312
295
|
<details>
|
|
313
296
|
<summary>
|
|
@@ -315,7 +298,6 @@ DescribeStateMachineForExecution
|
|
|
315
298
|
</summary>
|
|
316
299
|
|
|
317
300
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/DescribeStateMachineForExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeStateMachineForExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/DescribeStateMachineForExecutionCommandOutput/)
|
|
318
|
-
|
|
319
301
|
</details>
|
|
320
302
|
<details>
|
|
321
303
|
<summary>
|
|
@@ -323,7 +305,6 @@ GetActivityTask
|
|
|
323
305
|
</summary>
|
|
324
306
|
|
|
325
307
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/GetActivityTaskCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/GetActivityTaskCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/GetActivityTaskCommandOutput/)
|
|
326
|
-
|
|
327
308
|
</details>
|
|
328
309
|
<details>
|
|
329
310
|
<summary>
|
|
@@ -331,7 +312,6 @@ GetExecutionHistory
|
|
|
331
312
|
</summary>
|
|
332
313
|
|
|
333
314
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/GetExecutionHistoryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/GetExecutionHistoryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/GetExecutionHistoryCommandOutput/)
|
|
334
|
-
|
|
335
315
|
</details>
|
|
336
316
|
<details>
|
|
337
317
|
<summary>
|
|
@@ -339,7 +319,6 @@ ListActivities
|
|
|
339
319
|
</summary>
|
|
340
320
|
|
|
341
321
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/ListActivitiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListActivitiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListActivitiesCommandOutput/)
|
|
342
|
-
|
|
343
322
|
</details>
|
|
344
323
|
<details>
|
|
345
324
|
<summary>
|
|
@@ -347,7 +326,6 @@ ListExecutions
|
|
|
347
326
|
</summary>
|
|
348
327
|
|
|
349
328
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/ListExecutionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListExecutionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListExecutionsCommandOutput/)
|
|
350
|
-
|
|
351
329
|
</details>
|
|
352
330
|
<details>
|
|
353
331
|
<summary>
|
|
@@ -355,7 +333,6 @@ ListMapRuns
|
|
|
355
333
|
</summary>
|
|
356
334
|
|
|
357
335
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/ListMapRunsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListMapRunsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListMapRunsCommandOutput/)
|
|
358
|
-
|
|
359
336
|
</details>
|
|
360
337
|
<details>
|
|
361
338
|
<summary>
|
|
@@ -363,7 +340,6 @@ ListStateMachineAliases
|
|
|
363
340
|
</summary>
|
|
364
341
|
|
|
365
342
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/ListStateMachineAliasesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListStateMachineAliasesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListStateMachineAliasesCommandOutput/)
|
|
366
|
-
|
|
367
343
|
</details>
|
|
368
344
|
<details>
|
|
369
345
|
<summary>
|
|
@@ -371,7 +347,6 @@ ListStateMachines
|
|
|
371
347
|
</summary>
|
|
372
348
|
|
|
373
349
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/ListStateMachinesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListStateMachinesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListStateMachinesCommandOutput/)
|
|
374
|
-
|
|
375
350
|
</details>
|
|
376
351
|
<details>
|
|
377
352
|
<summary>
|
|
@@ -379,7 +354,6 @@ ListStateMachineVersions
|
|
|
379
354
|
</summary>
|
|
380
355
|
|
|
381
356
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/ListStateMachineVersionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListStateMachineVersionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListStateMachineVersionsCommandOutput/)
|
|
382
|
-
|
|
383
357
|
</details>
|
|
384
358
|
<details>
|
|
385
359
|
<summary>
|
|
@@ -387,7 +361,6 @@ ListTagsForResource
|
|
|
387
361
|
</summary>
|
|
388
362
|
|
|
389
363
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ListTagsForResourceCommandOutput/)
|
|
390
|
-
|
|
391
364
|
</details>
|
|
392
365
|
<details>
|
|
393
366
|
<summary>
|
|
@@ -395,7 +368,6 @@ PublishStateMachineVersion
|
|
|
395
368
|
</summary>
|
|
396
369
|
|
|
397
370
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/PublishStateMachineVersionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/PublishStateMachineVersionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/PublishStateMachineVersionCommandOutput/)
|
|
398
|
-
|
|
399
371
|
</details>
|
|
400
372
|
<details>
|
|
401
373
|
<summary>
|
|
@@ -403,7 +375,6 @@ RedriveExecution
|
|
|
403
375
|
</summary>
|
|
404
376
|
|
|
405
377
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/RedriveExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/RedriveExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/RedriveExecutionCommandOutput/)
|
|
406
|
-
|
|
407
378
|
</details>
|
|
408
379
|
<details>
|
|
409
380
|
<summary>
|
|
@@ -411,7 +382,6 @@ SendTaskFailure
|
|
|
411
382
|
</summary>
|
|
412
383
|
|
|
413
384
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/SendTaskFailureCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/SendTaskFailureCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/SendTaskFailureCommandOutput/)
|
|
414
|
-
|
|
415
385
|
</details>
|
|
416
386
|
<details>
|
|
417
387
|
<summary>
|
|
@@ -419,7 +389,6 @@ SendTaskHeartbeat
|
|
|
419
389
|
</summary>
|
|
420
390
|
|
|
421
391
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/SendTaskHeartbeatCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/SendTaskHeartbeatCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/SendTaskHeartbeatCommandOutput/)
|
|
422
|
-
|
|
423
392
|
</details>
|
|
424
393
|
<details>
|
|
425
394
|
<summary>
|
|
@@ -427,7 +396,6 @@ SendTaskSuccess
|
|
|
427
396
|
</summary>
|
|
428
397
|
|
|
429
398
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/SendTaskSuccessCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/SendTaskSuccessCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/SendTaskSuccessCommandOutput/)
|
|
430
|
-
|
|
431
399
|
</details>
|
|
432
400
|
<details>
|
|
433
401
|
<summary>
|
|
@@ -435,7 +403,6 @@ StartExecution
|
|
|
435
403
|
</summary>
|
|
436
404
|
|
|
437
405
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/StartExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/StartExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/StartExecutionCommandOutput/)
|
|
438
|
-
|
|
439
406
|
</details>
|
|
440
407
|
<details>
|
|
441
408
|
<summary>
|
|
@@ -443,7 +410,6 @@ StartSyncExecution
|
|
|
443
410
|
</summary>
|
|
444
411
|
|
|
445
412
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/StartSyncExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/StartSyncExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/StartSyncExecutionCommandOutput/)
|
|
446
|
-
|
|
447
413
|
</details>
|
|
448
414
|
<details>
|
|
449
415
|
<summary>
|
|
@@ -451,7 +417,6 @@ StopExecution
|
|
|
451
417
|
</summary>
|
|
452
418
|
|
|
453
419
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/StopExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/StopExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/StopExecutionCommandOutput/)
|
|
454
|
-
|
|
455
420
|
</details>
|
|
456
421
|
<details>
|
|
457
422
|
<summary>
|
|
@@ -459,7 +424,6 @@ TagResource
|
|
|
459
424
|
</summary>
|
|
460
425
|
|
|
461
426
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/TagResourceCommandOutput/)
|
|
462
|
-
|
|
463
427
|
</details>
|
|
464
428
|
<details>
|
|
465
429
|
<summary>
|
|
@@ -467,7 +431,6 @@ TestState
|
|
|
467
431
|
</summary>
|
|
468
432
|
|
|
469
433
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/TestStateCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/TestStateCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/TestStateCommandOutput/)
|
|
470
|
-
|
|
471
434
|
</details>
|
|
472
435
|
<details>
|
|
473
436
|
<summary>
|
|
@@ -475,7 +438,6 @@ UntagResource
|
|
|
475
438
|
</summary>
|
|
476
439
|
|
|
477
440
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/UntagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/UntagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/UntagResourceCommandOutput/)
|
|
478
|
-
|
|
479
441
|
</details>
|
|
480
442
|
<details>
|
|
481
443
|
<summary>
|
|
@@ -483,7 +445,6 @@ UpdateMapRun
|
|
|
483
445
|
</summary>
|
|
484
446
|
|
|
485
447
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/UpdateMapRunCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/UpdateMapRunCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/UpdateMapRunCommandOutput/)
|
|
486
|
-
|
|
487
448
|
</details>
|
|
488
449
|
<details>
|
|
489
450
|
<summary>
|
|
@@ -491,7 +452,6 @@ UpdateStateMachine
|
|
|
491
452
|
</summary>
|
|
492
453
|
|
|
493
454
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/UpdateStateMachineCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/UpdateStateMachineCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/UpdateStateMachineCommandOutput/)
|
|
494
|
-
|
|
495
455
|
</details>
|
|
496
456
|
<details>
|
|
497
457
|
<summary>
|
|
@@ -499,7 +459,6 @@ UpdateStateMachineAlias
|
|
|
499
459
|
</summary>
|
|
500
460
|
|
|
501
461
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/UpdateStateMachineAliasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/UpdateStateMachineAliasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/UpdateStateMachineAliasCommandOutput/)
|
|
502
|
-
|
|
503
462
|
</details>
|
|
504
463
|
<details>
|
|
505
464
|
<summary>
|
|
@@ -507,5 +466,4 @@ ValidateStateMachineDefinition
|
|
|
507
466
|
</summary>
|
|
508
467
|
|
|
509
468
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sfn/command/ValidateStateMachineDefinitionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ValidateStateMachineDefinitionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sfn/Interface/ValidateStateMachineDefinitionCommandOutput/)
|
|
510
|
-
|
|
511
469
|
</details>
|
|
@@ -6,10 +6,9 @@ const util_middleware_1 = require("@smithy/util-middleware");
|
|
|
6
6
|
const defaultSFNHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
8
8
|
operation: (0, util_middleware_1.getSmithyContext)(context).operation,
|
|
9
|
-
region:
|
|
10
|
-
(
|
|
11
|
-
|
|
12
|
-
})(),
|
|
9
|
+
region: await (0, util_middleware_1.normalizeProvider)(config.region)() || (() => {
|
|
10
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
11
|
+
})(),
|
|
13
12
|
};
|
|
14
13
|
};
|
|
15
14
|
exports.defaultSFNHttpAuthSchemeParametersProvider = defaultSFNHttpAuthSchemeParametersProvider;
|