@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
@@ -7,10 +7,18 @@ import {
7
7
  AddPermissionCommandInput,
8
8
  AddPermissionCommandOutput,
9
9
  } from "./commands/AddPermissionCommand";
10
+ import {
11
+ CheckpointDurableExecutionCommandInput,
12
+ CheckpointDurableExecutionCommandOutput,
13
+ } from "./commands/CheckpointDurableExecutionCommand";
10
14
  import {
11
15
  CreateAliasCommandInput,
12
16
  CreateAliasCommandOutput,
13
17
  } from "./commands/CreateAliasCommand";
18
+ import {
19
+ CreateCapacityProviderCommandInput,
20
+ CreateCapacityProviderCommandOutput,
21
+ } from "./commands/CreateCapacityProviderCommand";
14
22
  import {
15
23
  CreateCodeSigningConfigCommandInput,
16
24
  CreateCodeSigningConfigCommandOutput,
@@ -31,6 +39,10 @@ import {
31
39
  DeleteAliasCommandInput,
32
40
  DeleteAliasCommandOutput,
33
41
  } from "./commands/DeleteAliasCommand";
42
+ import {
43
+ DeleteCapacityProviderCommandInput,
44
+ DeleteCapacityProviderCommandOutput,
45
+ } from "./commands/DeleteCapacityProviderCommand";
34
46
  import {
35
47
  DeleteCodeSigningConfigCommandInput,
36
48
  DeleteCodeSigningConfigCommandOutput,
@@ -75,10 +87,26 @@ import {
75
87
  GetAliasCommandInput,
76
88
  GetAliasCommandOutput,
77
89
  } from "./commands/GetAliasCommand";
90
+ import {
91
+ GetCapacityProviderCommandInput,
92
+ GetCapacityProviderCommandOutput,
93
+ } from "./commands/GetCapacityProviderCommand";
78
94
  import {
79
95
  GetCodeSigningConfigCommandInput,
80
96
  GetCodeSigningConfigCommandOutput,
81
97
  } from "./commands/GetCodeSigningConfigCommand";
98
+ import {
99
+ GetDurableExecutionCommandInput,
100
+ GetDurableExecutionCommandOutput,
101
+ } from "./commands/GetDurableExecutionCommand";
102
+ import {
103
+ GetDurableExecutionHistoryCommandInput,
104
+ GetDurableExecutionHistoryCommandOutput,
105
+ } from "./commands/GetDurableExecutionHistoryCommand";
106
+ import {
107
+ GetDurableExecutionStateCommandInput,
108
+ GetDurableExecutionStateCommandOutput,
109
+ } from "./commands/GetDurableExecutionStateCommand";
82
110
  import {
83
111
  GetEventSourceMappingCommandInput,
84
112
  GetEventSourceMappingCommandOutput,
@@ -107,6 +135,10 @@ import {
107
135
  GetFunctionRecursionConfigCommandInput,
108
136
  GetFunctionRecursionConfigCommandOutput,
109
137
  } from "./commands/GetFunctionRecursionConfigCommand";
138
+ import {
139
+ GetFunctionScalingConfigCommandInput,
140
+ GetFunctionScalingConfigCommandOutput,
141
+ } from "./commands/GetFunctionScalingConfigCommand";
110
142
  import {
111
143
  GetFunctionUrlConfigCommandInput,
112
144
  GetFunctionUrlConfigCommandOutput,
@@ -151,10 +183,18 @@ import {
151
183
  ListAliasesCommandInput,
152
184
  ListAliasesCommandOutput,
153
185
  } from "./commands/ListAliasesCommand";
186
+ import {
187
+ ListCapacityProvidersCommandInput,
188
+ ListCapacityProvidersCommandOutput,
189
+ } from "./commands/ListCapacityProvidersCommand";
154
190
  import {
155
191
  ListCodeSigningConfigsCommandInput,
156
192
  ListCodeSigningConfigsCommandOutput,
157
193
  } from "./commands/ListCodeSigningConfigsCommand";
194
+ import {
195
+ ListDurableExecutionsByFunctionCommandInput,
196
+ ListDurableExecutionsByFunctionCommandOutput,
197
+ } from "./commands/ListDurableExecutionsByFunctionCommand";
158
198
  import {
159
199
  ListEventSourceMappingsCommandInput,
160
200
  ListEventSourceMappingsCommandOutput,
@@ -175,6 +215,10 @@ import {
175
215
  ListFunctionUrlConfigsCommandInput,
176
216
  ListFunctionUrlConfigsCommandOutput,
177
217
  } from "./commands/ListFunctionUrlConfigsCommand";
218
+ import {
219
+ ListFunctionVersionsByCapacityProviderCommandInput,
220
+ ListFunctionVersionsByCapacityProviderCommandOutput,
221
+ } from "./commands/ListFunctionVersionsByCapacityProviderCommand";
178
222
  import {
179
223
  ListLayersCommandInput,
180
224
  ListLayersCommandOutput,
@@ -219,6 +263,10 @@ import {
219
263
  PutFunctionRecursionConfigCommandInput,
220
264
  PutFunctionRecursionConfigCommandOutput,
221
265
  } from "./commands/PutFunctionRecursionConfigCommand";
266
+ import {
267
+ PutFunctionScalingConfigCommandInput,
268
+ PutFunctionScalingConfigCommandOutput,
269
+ } from "./commands/PutFunctionScalingConfigCommand";
222
270
  import {
223
271
  PutProvisionedConcurrencyConfigCommandInput,
224
272
  PutProvisionedConcurrencyConfigCommandOutput,
@@ -235,6 +283,22 @@ import {
235
283
  RemovePermissionCommandInput,
236
284
  RemovePermissionCommandOutput,
237
285
  } from "./commands/RemovePermissionCommand";
286
+ import {
287
+ SendDurableExecutionCallbackFailureCommandInput,
288
+ SendDurableExecutionCallbackFailureCommandOutput,
289
+ } from "./commands/SendDurableExecutionCallbackFailureCommand";
290
+ import {
291
+ SendDurableExecutionCallbackHeartbeatCommandInput,
292
+ SendDurableExecutionCallbackHeartbeatCommandOutput,
293
+ } from "./commands/SendDurableExecutionCallbackHeartbeatCommand";
294
+ import {
295
+ SendDurableExecutionCallbackSuccessCommandInput,
296
+ SendDurableExecutionCallbackSuccessCommandOutput,
297
+ } from "./commands/SendDurableExecutionCallbackSuccessCommand";
298
+ import {
299
+ StopDurableExecutionCommandInput,
300
+ StopDurableExecutionCommandOutput,
301
+ } from "./commands/StopDurableExecutionCommand";
238
302
  import {
239
303
  TagResourceCommandInput,
240
304
  TagResourceCommandOutput,
@@ -247,6 +311,10 @@ import {
247
311
  UpdateAliasCommandInput,
248
312
  UpdateAliasCommandOutput,
249
313
  } from "./commands/UpdateAliasCommand";
314
+ import {
315
+ UpdateCapacityProviderCommandInput,
316
+ UpdateCapacityProviderCommandOutput,
317
+ } from "./commands/UpdateCapacityProviderCommand";
250
318
  import {
251
319
  UpdateCodeSigningConfigCommandInput,
252
320
  UpdateCodeSigningConfigCommandOutput,
@@ -299,6 +367,19 @@ export interface Lambda {
299
367
  options: __HttpHandlerOptions,
300
368
  cb: (err: any, data?: AddPermissionCommandOutput) => void
301
369
  ): void;
370
+ checkpointDurableExecution(
371
+ args: CheckpointDurableExecutionCommandInput,
372
+ options?: __HttpHandlerOptions
373
+ ): Promise<CheckpointDurableExecutionCommandOutput>;
374
+ checkpointDurableExecution(
375
+ args: CheckpointDurableExecutionCommandInput,
376
+ cb: (err: any, data?: CheckpointDurableExecutionCommandOutput) => void
377
+ ): void;
378
+ checkpointDurableExecution(
379
+ args: CheckpointDurableExecutionCommandInput,
380
+ options: __HttpHandlerOptions,
381
+ cb: (err: any, data?: CheckpointDurableExecutionCommandOutput) => void
382
+ ): void;
302
383
  createAlias(
303
384
  args: CreateAliasCommandInput,
304
385
  options?: __HttpHandlerOptions
@@ -312,6 +393,19 @@ export interface Lambda {
312
393
  options: __HttpHandlerOptions,
313
394
  cb: (err: any, data?: CreateAliasCommandOutput) => void
314
395
  ): void;
396
+ createCapacityProvider(
397
+ args: CreateCapacityProviderCommandInput,
398
+ options?: __HttpHandlerOptions
399
+ ): Promise<CreateCapacityProviderCommandOutput>;
400
+ createCapacityProvider(
401
+ args: CreateCapacityProviderCommandInput,
402
+ cb: (err: any, data?: CreateCapacityProviderCommandOutput) => void
403
+ ): void;
404
+ createCapacityProvider(
405
+ args: CreateCapacityProviderCommandInput,
406
+ options: __HttpHandlerOptions,
407
+ cb: (err: any, data?: CreateCapacityProviderCommandOutput) => void
408
+ ): void;
315
409
  createCodeSigningConfig(
316
410
  args: CreateCodeSigningConfigCommandInput,
317
411
  options?: __HttpHandlerOptions
@@ -377,6 +471,19 @@ export interface Lambda {
377
471
  options: __HttpHandlerOptions,
378
472
  cb: (err: any, data?: DeleteAliasCommandOutput) => void
379
473
  ): void;
474
+ deleteCapacityProvider(
475
+ args: DeleteCapacityProviderCommandInput,
476
+ options?: __HttpHandlerOptions
477
+ ): Promise<DeleteCapacityProviderCommandOutput>;
478
+ deleteCapacityProvider(
479
+ args: DeleteCapacityProviderCommandInput,
480
+ cb: (err: any, data?: DeleteCapacityProviderCommandOutput) => void
481
+ ): void;
482
+ deleteCapacityProvider(
483
+ args: DeleteCapacityProviderCommandInput,
484
+ options: __HttpHandlerOptions,
485
+ cb: (err: any, data?: DeleteCapacityProviderCommandOutput) => void
486
+ ): void;
380
487
  deleteCodeSigningConfig(
381
488
  args: DeleteCodeSigningConfigCommandInput,
382
489
  options?: __HttpHandlerOptions
@@ -527,6 +634,19 @@ export interface Lambda {
527
634
  options: __HttpHandlerOptions,
528
635
  cb: (err: any, data?: GetAliasCommandOutput) => void
529
636
  ): void;
637
+ getCapacityProvider(
638
+ args: GetCapacityProviderCommandInput,
639
+ options?: __HttpHandlerOptions
640
+ ): Promise<GetCapacityProviderCommandOutput>;
641
+ getCapacityProvider(
642
+ args: GetCapacityProviderCommandInput,
643
+ cb: (err: any, data?: GetCapacityProviderCommandOutput) => void
644
+ ): void;
645
+ getCapacityProvider(
646
+ args: GetCapacityProviderCommandInput,
647
+ options: __HttpHandlerOptions,
648
+ cb: (err: any, data?: GetCapacityProviderCommandOutput) => void
649
+ ): void;
530
650
  getCodeSigningConfig(
531
651
  args: GetCodeSigningConfigCommandInput,
532
652
  options?: __HttpHandlerOptions
@@ -540,6 +660,45 @@ export interface Lambda {
540
660
  options: __HttpHandlerOptions,
541
661
  cb: (err: any, data?: GetCodeSigningConfigCommandOutput) => void
542
662
  ): void;
663
+ getDurableExecution(
664
+ args: GetDurableExecutionCommandInput,
665
+ options?: __HttpHandlerOptions
666
+ ): Promise<GetDurableExecutionCommandOutput>;
667
+ getDurableExecution(
668
+ args: GetDurableExecutionCommandInput,
669
+ cb: (err: any, data?: GetDurableExecutionCommandOutput) => void
670
+ ): void;
671
+ getDurableExecution(
672
+ args: GetDurableExecutionCommandInput,
673
+ options: __HttpHandlerOptions,
674
+ cb: (err: any, data?: GetDurableExecutionCommandOutput) => void
675
+ ): void;
676
+ getDurableExecutionHistory(
677
+ args: GetDurableExecutionHistoryCommandInput,
678
+ options?: __HttpHandlerOptions
679
+ ): Promise<GetDurableExecutionHistoryCommandOutput>;
680
+ getDurableExecutionHistory(
681
+ args: GetDurableExecutionHistoryCommandInput,
682
+ cb: (err: any, data?: GetDurableExecutionHistoryCommandOutput) => void
683
+ ): void;
684
+ getDurableExecutionHistory(
685
+ args: GetDurableExecutionHistoryCommandInput,
686
+ options: __HttpHandlerOptions,
687
+ cb: (err: any, data?: GetDurableExecutionHistoryCommandOutput) => void
688
+ ): void;
689
+ getDurableExecutionState(
690
+ args: GetDurableExecutionStateCommandInput,
691
+ options?: __HttpHandlerOptions
692
+ ): Promise<GetDurableExecutionStateCommandOutput>;
693
+ getDurableExecutionState(
694
+ args: GetDurableExecutionStateCommandInput,
695
+ cb: (err: any, data?: GetDurableExecutionStateCommandOutput) => void
696
+ ): void;
697
+ getDurableExecutionState(
698
+ args: GetDurableExecutionStateCommandInput,
699
+ options: __HttpHandlerOptions,
700
+ cb: (err: any, data?: GetDurableExecutionStateCommandOutput) => void
701
+ ): void;
543
702
  getEventSourceMapping(
544
703
  args: GetEventSourceMappingCommandInput,
545
704
  options?: __HttpHandlerOptions
@@ -631,6 +790,19 @@ export interface Lambda {
631
790
  options: __HttpHandlerOptions,
632
791
  cb: (err: any, data?: GetFunctionRecursionConfigCommandOutput) => void
633
792
  ): void;
793
+ getFunctionScalingConfig(
794
+ args: GetFunctionScalingConfigCommandInput,
795
+ options?: __HttpHandlerOptions
796
+ ): Promise<GetFunctionScalingConfigCommandOutput>;
797
+ getFunctionScalingConfig(
798
+ args: GetFunctionScalingConfigCommandInput,
799
+ cb: (err: any, data?: GetFunctionScalingConfigCommandOutput) => void
800
+ ): void;
801
+ getFunctionScalingConfig(
802
+ args: GetFunctionScalingConfigCommandInput,
803
+ options: __HttpHandlerOptions,
804
+ cb: (err: any, data?: GetFunctionScalingConfigCommandOutput) => void
805
+ ): void;
634
806
  getFunctionUrlConfig(
635
807
  args: GetFunctionUrlConfigCommandInput,
636
808
  options?: __HttpHandlerOptions
@@ -774,6 +946,20 @@ export interface Lambda {
774
946
  options: __HttpHandlerOptions,
775
947
  cb: (err: any, data?: ListAliasesCommandOutput) => void
776
948
  ): void;
949
+ listCapacityProviders(): Promise<ListCapacityProvidersCommandOutput>;
950
+ listCapacityProviders(
951
+ args: ListCapacityProvidersCommandInput,
952
+ options?: __HttpHandlerOptions
953
+ ): Promise<ListCapacityProvidersCommandOutput>;
954
+ listCapacityProviders(
955
+ args: ListCapacityProvidersCommandInput,
956
+ cb: (err: any, data?: ListCapacityProvidersCommandOutput) => void
957
+ ): void;
958
+ listCapacityProviders(
959
+ args: ListCapacityProvidersCommandInput,
960
+ options: __HttpHandlerOptions,
961
+ cb: (err: any, data?: ListCapacityProvidersCommandOutput) => void
962
+ ): void;
777
963
  listCodeSigningConfigs(): Promise<ListCodeSigningConfigsCommandOutput>;
778
964
  listCodeSigningConfigs(
779
965
  args: ListCodeSigningConfigsCommandInput,
@@ -788,6 +974,19 @@ export interface Lambda {
788
974
  options: __HttpHandlerOptions,
789
975
  cb: (err: any, data?: ListCodeSigningConfigsCommandOutput) => void
790
976
  ): void;
977
+ listDurableExecutionsByFunction(
978
+ args: ListDurableExecutionsByFunctionCommandInput,
979
+ options?: __HttpHandlerOptions
980
+ ): Promise<ListDurableExecutionsByFunctionCommandOutput>;
981
+ listDurableExecutionsByFunction(
982
+ args: ListDurableExecutionsByFunctionCommandInput,
983
+ cb: (err: any, data?: ListDurableExecutionsByFunctionCommandOutput) => void
984
+ ): void;
985
+ listDurableExecutionsByFunction(
986
+ args: ListDurableExecutionsByFunctionCommandInput,
987
+ options: __HttpHandlerOptions,
988
+ cb: (err: any, data?: ListDurableExecutionsByFunctionCommandOutput) => void
989
+ ): void;
791
990
  listEventSourceMappings(): Promise<ListEventSourceMappingsCommandOutput>;
792
991
  listEventSourceMappings(
793
992
  args: ListEventSourceMappingsCommandInput,
@@ -855,6 +1054,25 @@ export interface Lambda {
855
1054
  options: __HttpHandlerOptions,
856
1055
  cb: (err: any, data?: ListFunctionUrlConfigsCommandOutput) => void
857
1056
  ): void;
1057
+ listFunctionVersionsByCapacityProvider(
1058
+ args: ListFunctionVersionsByCapacityProviderCommandInput,
1059
+ options?: __HttpHandlerOptions
1060
+ ): Promise<ListFunctionVersionsByCapacityProviderCommandOutput>;
1061
+ listFunctionVersionsByCapacityProvider(
1062
+ args: ListFunctionVersionsByCapacityProviderCommandInput,
1063
+ cb: (
1064
+ err: any,
1065
+ data?: ListFunctionVersionsByCapacityProviderCommandOutput
1066
+ ) => void
1067
+ ): void;
1068
+ listFunctionVersionsByCapacityProvider(
1069
+ args: ListFunctionVersionsByCapacityProviderCommandInput,
1070
+ options: __HttpHandlerOptions,
1071
+ cb: (
1072
+ err: any,
1073
+ data?: ListFunctionVersionsByCapacityProviderCommandOutput
1074
+ ) => void
1075
+ ): void;
858
1076
  listLayers(): Promise<ListLayersCommandOutput>;
859
1077
  listLayers(
860
1078
  args: ListLayersCommandInput,
@@ -1005,6 +1223,19 @@ export interface Lambda {
1005
1223
  options: __HttpHandlerOptions,
1006
1224
  cb: (err: any, data?: PutFunctionRecursionConfigCommandOutput) => void
1007
1225
  ): void;
1226
+ putFunctionScalingConfig(
1227
+ args: PutFunctionScalingConfigCommandInput,
1228
+ options?: __HttpHandlerOptions
1229
+ ): Promise<PutFunctionScalingConfigCommandOutput>;
1230
+ putFunctionScalingConfig(
1231
+ args: PutFunctionScalingConfigCommandInput,
1232
+ cb: (err: any, data?: PutFunctionScalingConfigCommandOutput) => void
1233
+ ): void;
1234
+ putFunctionScalingConfig(
1235
+ args: PutFunctionScalingConfigCommandInput,
1236
+ options: __HttpHandlerOptions,
1237
+ cb: (err: any, data?: PutFunctionScalingConfigCommandOutput) => void
1238
+ ): void;
1008
1239
  putProvisionedConcurrencyConfig(
1009
1240
  args: PutProvisionedConcurrencyConfigCommandInput,
1010
1241
  options?: __HttpHandlerOptions
@@ -1057,6 +1288,76 @@ export interface Lambda {
1057
1288
  options: __HttpHandlerOptions,
1058
1289
  cb: (err: any, data?: RemovePermissionCommandOutput) => void
1059
1290
  ): void;
1291
+ sendDurableExecutionCallbackFailure(
1292
+ args: SendDurableExecutionCallbackFailureCommandInput,
1293
+ options?: __HttpHandlerOptions
1294
+ ): Promise<SendDurableExecutionCallbackFailureCommandOutput>;
1295
+ sendDurableExecutionCallbackFailure(
1296
+ args: SendDurableExecutionCallbackFailureCommandInput,
1297
+ cb: (
1298
+ err: any,
1299
+ data?: SendDurableExecutionCallbackFailureCommandOutput
1300
+ ) => void
1301
+ ): void;
1302
+ sendDurableExecutionCallbackFailure(
1303
+ args: SendDurableExecutionCallbackFailureCommandInput,
1304
+ options: __HttpHandlerOptions,
1305
+ cb: (
1306
+ err: any,
1307
+ data?: SendDurableExecutionCallbackFailureCommandOutput
1308
+ ) => void
1309
+ ): void;
1310
+ sendDurableExecutionCallbackHeartbeat(
1311
+ args: SendDurableExecutionCallbackHeartbeatCommandInput,
1312
+ options?: __HttpHandlerOptions
1313
+ ): Promise<SendDurableExecutionCallbackHeartbeatCommandOutput>;
1314
+ sendDurableExecutionCallbackHeartbeat(
1315
+ args: SendDurableExecutionCallbackHeartbeatCommandInput,
1316
+ cb: (
1317
+ err: any,
1318
+ data?: SendDurableExecutionCallbackHeartbeatCommandOutput
1319
+ ) => void
1320
+ ): void;
1321
+ sendDurableExecutionCallbackHeartbeat(
1322
+ args: SendDurableExecutionCallbackHeartbeatCommandInput,
1323
+ options: __HttpHandlerOptions,
1324
+ cb: (
1325
+ err: any,
1326
+ data?: SendDurableExecutionCallbackHeartbeatCommandOutput
1327
+ ) => void
1328
+ ): void;
1329
+ sendDurableExecutionCallbackSuccess(
1330
+ args: SendDurableExecutionCallbackSuccessCommandInput,
1331
+ options?: __HttpHandlerOptions
1332
+ ): Promise<SendDurableExecutionCallbackSuccessCommandOutput>;
1333
+ sendDurableExecutionCallbackSuccess(
1334
+ args: SendDurableExecutionCallbackSuccessCommandInput,
1335
+ cb: (
1336
+ err: any,
1337
+ data?: SendDurableExecutionCallbackSuccessCommandOutput
1338
+ ) => void
1339
+ ): void;
1340
+ sendDurableExecutionCallbackSuccess(
1341
+ args: SendDurableExecutionCallbackSuccessCommandInput,
1342
+ options: __HttpHandlerOptions,
1343
+ cb: (
1344
+ err: any,
1345
+ data?: SendDurableExecutionCallbackSuccessCommandOutput
1346
+ ) => void
1347
+ ): void;
1348
+ stopDurableExecution(
1349
+ args: StopDurableExecutionCommandInput,
1350
+ options?: __HttpHandlerOptions
1351
+ ): Promise<StopDurableExecutionCommandOutput>;
1352
+ stopDurableExecution(
1353
+ args: StopDurableExecutionCommandInput,
1354
+ cb: (err: any, data?: StopDurableExecutionCommandOutput) => void
1355
+ ): void;
1356
+ stopDurableExecution(
1357
+ args: StopDurableExecutionCommandInput,
1358
+ options: __HttpHandlerOptions,
1359
+ cb: (err: any, data?: StopDurableExecutionCommandOutput) => void
1360
+ ): void;
1060
1361
  tagResource(
1061
1362
  args: TagResourceCommandInput,
1062
1363
  options?: __HttpHandlerOptions
@@ -1096,6 +1397,19 @@ export interface Lambda {
1096
1397
  options: __HttpHandlerOptions,
1097
1398
  cb: (err: any, data?: UpdateAliasCommandOutput) => void
1098
1399
  ): void;
1400
+ updateCapacityProvider(
1401
+ args: UpdateCapacityProviderCommandInput,
1402
+ options?: __HttpHandlerOptions
1403
+ ): Promise<UpdateCapacityProviderCommandOutput>;
1404
+ updateCapacityProvider(
1405
+ args: UpdateCapacityProviderCommandInput,
1406
+ cb: (err: any, data?: UpdateCapacityProviderCommandOutput) => void
1407
+ ): void;
1408
+ updateCapacityProvider(
1409
+ args: UpdateCapacityProviderCommandInput,
1410
+ options: __HttpHandlerOptions,
1411
+ cb: (err: any, data?: UpdateCapacityProviderCommandOutput) => void
1412
+ ): void;
1099
1413
  updateCodeSigningConfig(
1100
1414
  args: UpdateCodeSigningConfigCommandInput,
1101
1415
  options?: __HttpHandlerOptions