@aws-sdk/client-lambda 3.940.0 → 3.943.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.
Files changed (104) hide show
  1. package/README.md +136 -0
  2. package/dist-cjs/index.js +1663 -100
  3. package/dist-es/Lambda.js +34 -0
  4. package/dist-es/commands/CheckpointDurableExecutionCommand.js +16 -0
  5. package/dist-es/commands/CreateCapacityProviderCommand.js +16 -0
  6. package/dist-es/commands/DeleteCapacityProviderCommand.js +16 -0
  7. package/dist-es/commands/GetCapacityProviderCommand.js +16 -0
  8. package/dist-es/commands/GetDurableExecutionCommand.js +16 -0
  9. package/dist-es/commands/GetDurableExecutionHistoryCommand.js +16 -0
  10. package/dist-es/commands/GetDurableExecutionStateCommand.js +16 -0
  11. package/dist-es/commands/GetFunctionScalingConfigCommand.js +16 -0
  12. package/dist-es/commands/ListCapacityProvidersCommand.js +16 -0
  13. package/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +16 -0
  14. package/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +16 -0
  15. package/dist-es/commands/PutFunctionScalingConfigCommand.js +16 -0
  16. package/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +16 -0
  17. package/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +16 -0
  18. package/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +16 -0
  19. package/dist-es/commands/StopDurableExecutionCommand.js +16 -0
  20. package/dist-es/commands/UpdateCapacityProviderCommand.js +16 -0
  21. package/dist-es/commands/index.js +17 -0
  22. package/dist-es/models/enums.js +109 -6
  23. package/dist-es/models/errors.js +76 -0
  24. package/dist-es/pagination/GetDurableExecutionHistoryPaginator.js +4 -0
  25. package/dist-es/pagination/GetDurableExecutionStatePaginator.js +4 -0
  26. package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
  27. package/dist-es/pagination/ListDurableExecutionsByFunctionPaginator.js +4 -0
  28. package/dist-es/pagination/ListFunctionVersionsByCapacityProviderPaginator.js +4 -0
  29. package/dist-es/pagination/index.js +5 -0
  30. package/dist-es/schemas/schemas_0.js +1216 -95
  31. package/dist-types/Lambda.d.ts +120 -0
  32. package/dist-types/LambdaClient.d.ts +19 -2
  33. package/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +190 -0
  34. package/dist-types/commands/CreateCapacityProviderCommand.d.ts +162 -0
  35. package/dist-types/commands/CreateFunctionCommand.d.ts +38 -3
  36. package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +126 -0
  37. package/dist-types/commands/DeleteFunctionCommand.d.ts +6 -4
  38. package/dist-types/commands/GetCapacityProviderCommand.d.ts +123 -0
  39. package/dist-types/commands/GetDurableExecutionCommand.d.ts +105 -0
  40. package/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +259 -0
  41. package/dist-types/commands/GetDurableExecutionStateCommand.d.ts +152 -0
  42. package/dist-types/commands/GetFunctionCommand.d.ts +19 -3
  43. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +19 -3
  44. package/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +95 -0
  45. package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
  46. package/dist-types/commands/InvokeCommand.d.ts +11 -1
  47. package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +4 -1
  48. package/dist-types/commands/ListCapacityProvidersCommand.d.ts +125 -0
  49. package/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +106 -0
  50. package/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +95 -0
  51. package/dist-types/commands/ListFunctionsCommand.d.ts +19 -3
  52. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +23 -3
  53. package/dist-types/commands/PublishVersionCommand.d.ts +19 -3
  54. package/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +94 -0
  55. package/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +92 -0
  56. package/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +84 -0
  57. package/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +91 -0
  58. package/dist-types/commands/StopDurableExecutionCommand.d.ts +94 -0
  59. package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +136 -0
  60. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +16 -3
  61. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +34 -3
  62. package/dist-types/commands/index.d.ts +17 -0
  63. package/dist-types/models/enums.d.ts +189 -14
  64. package/dist-types/models/errors.d.ts +89 -1
  65. package/dist-types/models/models_0.d.ts +3205 -1373
  66. package/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +7 -0
  67. package/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +7 -0
  68. package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
  69. package/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +7 -0
  70. package/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +7 -0
  71. package/dist-types/pagination/index.d.ts +5 -0
  72. package/dist-types/schemas/schemas_0.d.ts +134 -0
  73. package/dist-types/ts3.4/Lambda.d.ts +314 -0
  74. package/dist-types/ts3.4/LambdaClient.d.ts +102 -0
  75. package/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +51 -0
  78. package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +8 -3
  79. package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +51 -0
  80. package/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +51 -0
  81. package/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +51 -0
  82. package/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +51 -0
  83. package/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +51 -0
  85. package/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +51 -0
  86. package/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +51 -0
  87. package/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +51 -0
  89. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +51 -0
  90. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +60 -0
  91. package/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +51 -0
  92. package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
  93. package/dist-types/ts3.4/commands/index.d.ts +17 -0
  94. package/dist-types/ts3.4/models/enums.d.ts +126 -7
  95. package/dist-types/ts3.4/models/errors.d.ts +52 -0
  96. package/dist-types/ts3.4/models/models_0.d.ts +494 -42
  97. package/dist-types/ts3.4/pagination/GetDurableExecutionHistoryPaginator.d.ts +11 -0
  98. package/dist-types/ts3.4/pagination/GetDurableExecutionStatePaginator.d.ts +11 -0
  99. package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
  100. package/dist-types/ts3.4/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +11 -0
  101. package/dist-types/ts3.4/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +11 -0
  102. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  103. package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
  104. package/package.json +5 -5
package/README.md CHANGED
@@ -218,6 +218,14 @@ AddPermission
218
218
 
219
219
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/AddPermissionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/AddPermissionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/AddPermissionCommandOutput/)
220
220
 
221
+ </details>
222
+ <details>
223
+ <summary>
224
+ CheckpointDurableExecution
225
+ </summary>
226
+
227
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/CheckpointDurableExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/CheckpointDurableExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/CheckpointDurableExecutionCommandOutput/)
228
+
221
229
  </details>
222
230
  <details>
223
231
  <summary>
@@ -226,6 +234,14 @@ CreateAlias
226
234
 
227
235
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/CreateAliasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/CreateAliasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/CreateAliasCommandOutput/)
228
236
 
237
+ </details>
238
+ <details>
239
+ <summary>
240
+ CreateCapacityProvider
241
+ </summary>
242
+
243
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/CreateCapacityProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/CreateCapacityProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/CreateCapacityProviderCommandOutput/)
244
+
229
245
  </details>
230
246
  <details>
231
247
  <summary>
@@ -266,6 +282,14 @@ DeleteAlias
266
282
 
267
283
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/DeleteAliasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/DeleteAliasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/DeleteAliasCommandOutput/)
268
284
 
285
+ </details>
286
+ <details>
287
+ <summary>
288
+ DeleteCapacityProvider
289
+ </summary>
290
+
291
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/DeleteCapacityProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/DeleteCapacityProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/DeleteCapacityProviderCommandOutput/)
292
+
269
293
  </details>
270
294
  <details>
271
295
  <summary>
@@ -354,6 +378,14 @@ GetAlias
354
378
 
355
379
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetAliasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetAliasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetAliasCommandOutput/)
356
380
 
381
+ </details>
382
+ <details>
383
+ <summary>
384
+ GetCapacityProvider
385
+ </summary>
386
+
387
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetCapacityProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetCapacityProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetCapacityProviderCommandOutput/)
388
+
357
389
  </details>
358
390
  <details>
359
391
  <summary>
@@ -362,6 +394,30 @@ GetCodeSigningConfig
362
394
 
363
395
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetCodeSigningConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetCodeSigningConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetCodeSigningConfigCommandOutput/)
364
396
 
397
+ </details>
398
+ <details>
399
+ <summary>
400
+ GetDurableExecution
401
+ </summary>
402
+
403
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetDurableExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetDurableExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetDurableExecutionCommandOutput/)
404
+
405
+ </details>
406
+ <details>
407
+ <summary>
408
+ GetDurableExecutionHistory
409
+ </summary>
410
+
411
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetDurableExecutionHistoryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetDurableExecutionHistoryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetDurableExecutionHistoryCommandOutput/)
412
+
413
+ </details>
414
+ <details>
415
+ <summary>
416
+ GetDurableExecutionState
417
+ </summary>
418
+
419
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetDurableExecutionStateCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetDurableExecutionStateCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetDurableExecutionStateCommandOutput/)
420
+
365
421
  </details>
366
422
  <details>
367
423
  <summary>
@@ -418,6 +474,14 @@ GetFunctionRecursionConfig
418
474
 
419
475
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetFunctionRecursionConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetFunctionRecursionConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetFunctionRecursionConfigCommandOutput/)
420
476
 
477
+ </details>
478
+ <details>
479
+ <summary>
480
+ GetFunctionScalingConfig
481
+ </summary>
482
+
483
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/GetFunctionScalingConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetFunctionScalingConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/GetFunctionScalingConfigCommandOutput/)
484
+
421
485
  </details>
422
486
  <details>
423
487
  <summary>
@@ -506,6 +570,14 @@ ListAliases
506
570
 
507
571
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/ListAliasesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListAliasesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListAliasesCommandOutput/)
508
572
 
573
+ </details>
574
+ <details>
575
+ <summary>
576
+ ListCapacityProviders
577
+ </summary>
578
+
579
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/ListCapacityProvidersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListCapacityProvidersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListCapacityProvidersCommandOutput/)
580
+
509
581
  </details>
510
582
  <details>
511
583
  <summary>
@@ -514,6 +586,14 @@ ListCodeSigningConfigs
514
586
 
515
587
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/ListCodeSigningConfigsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListCodeSigningConfigsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListCodeSigningConfigsCommandOutput/)
516
588
 
589
+ </details>
590
+ <details>
591
+ <summary>
592
+ ListDurableExecutionsByFunction
593
+ </summary>
594
+
595
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/ListDurableExecutionsByFunctionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListDurableExecutionsByFunctionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListDurableExecutionsByFunctionCommandOutput/)
596
+
517
597
  </details>
518
598
  <details>
519
599
  <summary>
@@ -554,6 +634,14 @@ ListFunctionUrlConfigs
554
634
 
555
635
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/ListFunctionUrlConfigsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListFunctionUrlConfigsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListFunctionUrlConfigsCommandOutput/)
556
636
 
637
+ </details>
638
+ <details>
639
+ <summary>
640
+ ListFunctionVersionsByCapacityProvider
641
+ </summary>
642
+
643
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/ListFunctionVersionsByCapacityProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListFunctionVersionsByCapacityProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/ListFunctionVersionsByCapacityProviderCommandOutput/)
644
+
557
645
  </details>
558
646
  <details>
559
647
  <summary>
@@ -642,6 +730,14 @@ PutFunctionRecursionConfig
642
730
 
643
731
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/PutFunctionRecursionConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/PutFunctionRecursionConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/PutFunctionRecursionConfigCommandOutput/)
644
732
 
733
+ </details>
734
+ <details>
735
+ <summary>
736
+ PutFunctionScalingConfig
737
+ </summary>
738
+
739
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/PutFunctionScalingConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/PutFunctionScalingConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/PutFunctionScalingConfigCommandOutput/)
740
+
645
741
  </details>
646
742
  <details>
647
743
  <summary>
@@ -674,6 +770,38 @@ RemovePermission
674
770
 
675
771
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/RemovePermissionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/RemovePermissionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/RemovePermissionCommandOutput/)
676
772
 
773
+ </details>
774
+ <details>
775
+ <summary>
776
+ SendDurableExecutionCallbackFailure
777
+ </summary>
778
+
779
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/SendDurableExecutionCallbackFailureCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/SendDurableExecutionCallbackFailureCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/SendDurableExecutionCallbackFailureCommandOutput/)
780
+
781
+ </details>
782
+ <details>
783
+ <summary>
784
+ SendDurableExecutionCallbackHeartbeat
785
+ </summary>
786
+
787
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/SendDurableExecutionCallbackHeartbeatCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/SendDurableExecutionCallbackHeartbeatCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/SendDurableExecutionCallbackHeartbeatCommandOutput/)
788
+
789
+ </details>
790
+ <details>
791
+ <summary>
792
+ SendDurableExecutionCallbackSuccess
793
+ </summary>
794
+
795
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/SendDurableExecutionCallbackSuccessCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/SendDurableExecutionCallbackSuccessCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/SendDurableExecutionCallbackSuccessCommandOutput/)
796
+
797
+ </details>
798
+ <details>
799
+ <summary>
800
+ StopDurableExecution
801
+ </summary>
802
+
803
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/StopDurableExecutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/StopDurableExecutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/StopDurableExecutionCommandOutput/)
804
+
677
805
  </details>
678
806
  <details>
679
807
  <summary>
@@ -698,6 +826,14 @@ UpdateAlias
698
826
 
699
827
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/UpdateAliasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/UpdateAliasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/UpdateAliasCommandOutput/)
700
828
 
829
+ </details>
830
+ <details>
831
+ <summary>
832
+ UpdateCapacityProvider
833
+ </summary>
834
+
835
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lambda/command/UpdateCapacityProviderCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/UpdateCapacityProviderCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lambda/Interface/UpdateCapacityProviderCommandOutput/)
836
+
701
837
  </details>
702
838
  <details>
703
839
  <summary>