@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.
- package/README.md +136 -0
- package/dist-cjs/index.js +1663 -100
- package/dist-es/Lambda.js +34 -0
- package/dist-es/commands/CheckpointDurableExecutionCommand.js +16 -0
- package/dist-es/commands/CreateCapacityProviderCommand.js +16 -0
- package/dist-es/commands/DeleteCapacityProviderCommand.js +16 -0
- package/dist-es/commands/GetCapacityProviderCommand.js +16 -0
- package/dist-es/commands/GetDurableExecutionCommand.js +16 -0
- package/dist-es/commands/GetDurableExecutionHistoryCommand.js +16 -0
- package/dist-es/commands/GetDurableExecutionStateCommand.js +16 -0
- package/dist-es/commands/GetFunctionScalingConfigCommand.js +16 -0
- package/dist-es/commands/ListCapacityProvidersCommand.js +16 -0
- package/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +16 -0
- package/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +16 -0
- package/dist-es/commands/PutFunctionScalingConfigCommand.js +16 -0
- package/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +16 -0
- package/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +16 -0
- package/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +16 -0
- package/dist-es/commands/StopDurableExecutionCommand.js +16 -0
- package/dist-es/commands/UpdateCapacityProviderCommand.js +16 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/models/enums.js +109 -6
- package/dist-es/models/errors.js +76 -0
- package/dist-es/pagination/GetDurableExecutionHistoryPaginator.js +4 -0
- package/dist-es/pagination/GetDurableExecutionStatePaginator.js +4 -0
- package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
- package/dist-es/pagination/ListDurableExecutionsByFunctionPaginator.js +4 -0
- package/dist-es/pagination/ListFunctionVersionsByCapacityProviderPaginator.js +4 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/schemas/schemas_0.js +1216 -95
- package/dist-types/Lambda.d.ts +120 -0
- package/dist-types/LambdaClient.d.ts +19 -2
- package/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +190 -0
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +162 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +38 -3
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +126 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +6 -4
- package/dist-types/commands/GetCapacityProviderCommand.d.ts +123 -0
- package/dist-types/commands/GetDurableExecutionCommand.d.ts +105 -0
- package/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +259 -0
- package/dist-types/commands/GetDurableExecutionStateCommand.d.ts +152 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +19 -3
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +19 -3
- package/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +95 -0
- package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
- package/dist-types/commands/InvokeCommand.d.ts +11 -1
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +4 -1
- package/dist-types/commands/ListCapacityProvidersCommand.d.ts +125 -0
- package/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +106 -0
- package/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +95 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +19 -3
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +23 -3
- package/dist-types/commands/PublishVersionCommand.d.ts +19 -3
- package/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +94 -0
- package/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +92 -0
- package/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +84 -0
- package/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +91 -0
- package/dist-types/commands/StopDurableExecutionCommand.d.ts +94 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +136 -0
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +16 -3
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +34 -3
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/models/enums.d.ts +189 -14
- package/dist-types/models/errors.d.ts +89 -1
- package/dist-types/models/models_0.d.ts +3205 -1373
- package/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +7 -0
- package/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +7 -0
- package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/schemas/schemas_0.d.ts +134 -0
- package/dist-types/ts3.4/Lambda.d.ts +314 -0
- package/dist-types/ts3.4/LambdaClient.d.ts +102 -0
- package/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +8 -3
- package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +60 -0
- package/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/models/enums.d.ts +126 -7
- package/dist-types/ts3.4/models/errors.d.ts +52 -0
- package/dist-types/ts3.4/models/models_0.d.ts +494 -42
- package/dist-types/ts3.4/pagination/GetDurableExecutionHistoryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetDurableExecutionStatePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
- package/package.json +5 -5
|
@@ -61,10 +61,18 @@ import {
|
|
|
61
61
|
AddPermissionCommandInput,
|
|
62
62
|
AddPermissionCommandOutput,
|
|
63
63
|
} from "./commands/AddPermissionCommand";
|
|
64
|
+
import {
|
|
65
|
+
CheckpointDurableExecutionCommandInput,
|
|
66
|
+
CheckpointDurableExecutionCommandOutput,
|
|
67
|
+
} from "./commands/CheckpointDurableExecutionCommand";
|
|
64
68
|
import {
|
|
65
69
|
CreateAliasCommandInput,
|
|
66
70
|
CreateAliasCommandOutput,
|
|
67
71
|
} from "./commands/CreateAliasCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateCapacityProviderCommandInput,
|
|
74
|
+
CreateCapacityProviderCommandOutput,
|
|
75
|
+
} from "./commands/CreateCapacityProviderCommand";
|
|
68
76
|
import {
|
|
69
77
|
CreateCodeSigningConfigCommandInput,
|
|
70
78
|
CreateCodeSigningConfigCommandOutput,
|
|
@@ -85,6 +93,10 @@ import {
|
|
|
85
93
|
DeleteAliasCommandInput,
|
|
86
94
|
DeleteAliasCommandOutput,
|
|
87
95
|
} from "./commands/DeleteAliasCommand";
|
|
96
|
+
import {
|
|
97
|
+
DeleteCapacityProviderCommandInput,
|
|
98
|
+
DeleteCapacityProviderCommandOutput,
|
|
99
|
+
} from "./commands/DeleteCapacityProviderCommand";
|
|
88
100
|
import {
|
|
89
101
|
DeleteCodeSigningConfigCommandInput,
|
|
90
102
|
DeleteCodeSigningConfigCommandOutput,
|
|
@@ -129,10 +141,26 @@ import {
|
|
|
129
141
|
GetAliasCommandInput,
|
|
130
142
|
GetAliasCommandOutput,
|
|
131
143
|
} from "./commands/GetAliasCommand";
|
|
144
|
+
import {
|
|
145
|
+
GetCapacityProviderCommandInput,
|
|
146
|
+
GetCapacityProviderCommandOutput,
|
|
147
|
+
} from "./commands/GetCapacityProviderCommand";
|
|
132
148
|
import {
|
|
133
149
|
GetCodeSigningConfigCommandInput,
|
|
134
150
|
GetCodeSigningConfigCommandOutput,
|
|
135
151
|
} from "./commands/GetCodeSigningConfigCommand";
|
|
152
|
+
import {
|
|
153
|
+
GetDurableExecutionCommandInput,
|
|
154
|
+
GetDurableExecutionCommandOutput,
|
|
155
|
+
} from "./commands/GetDurableExecutionCommand";
|
|
156
|
+
import {
|
|
157
|
+
GetDurableExecutionHistoryCommandInput,
|
|
158
|
+
GetDurableExecutionHistoryCommandOutput,
|
|
159
|
+
} from "./commands/GetDurableExecutionHistoryCommand";
|
|
160
|
+
import {
|
|
161
|
+
GetDurableExecutionStateCommandInput,
|
|
162
|
+
GetDurableExecutionStateCommandOutput,
|
|
163
|
+
} from "./commands/GetDurableExecutionStateCommand";
|
|
136
164
|
import {
|
|
137
165
|
GetEventSourceMappingCommandInput,
|
|
138
166
|
GetEventSourceMappingCommandOutput,
|
|
@@ -161,6 +189,10 @@ import {
|
|
|
161
189
|
GetFunctionRecursionConfigCommandInput,
|
|
162
190
|
GetFunctionRecursionConfigCommandOutput,
|
|
163
191
|
} from "./commands/GetFunctionRecursionConfigCommand";
|
|
192
|
+
import {
|
|
193
|
+
GetFunctionScalingConfigCommandInput,
|
|
194
|
+
GetFunctionScalingConfigCommandOutput,
|
|
195
|
+
} from "./commands/GetFunctionScalingConfigCommand";
|
|
164
196
|
import {
|
|
165
197
|
GetFunctionUrlConfigCommandInput,
|
|
166
198
|
GetFunctionUrlConfigCommandOutput,
|
|
@@ -205,10 +237,18 @@ import {
|
|
|
205
237
|
ListAliasesCommandInput,
|
|
206
238
|
ListAliasesCommandOutput,
|
|
207
239
|
} from "./commands/ListAliasesCommand";
|
|
240
|
+
import {
|
|
241
|
+
ListCapacityProvidersCommandInput,
|
|
242
|
+
ListCapacityProvidersCommandOutput,
|
|
243
|
+
} from "./commands/ListCapacityProvidersCommand";
|
|
208
244
|
import {
|
|
209
245
|
ListCodeSigningConfigsCommandInput,
|
|
210
246
|
ListCodeSigningConfigsCommandOutput,
|
|
211
247
|
} from "./commands/ListCodeSigningConfigsCommand";
|
|
248
|
+
import {
|
|
249
|
+
ListDurableExecutionsByFunctionCommandInput,
|
|
250
|
+
ListDurableExecutionsByFunctionCommandOutput,
|
|
251
|
+
} from "./commands/ListDurableExecutionsByFunctionCommand";
|
|
212
252
|
import {
|
|
213
253
|
ListEventSourceMappingsCommandInput,
|
|
214
254
|
ListEventSourceMappingsCommandOutput,
|
|
@@ -229,6 +269,10 @@ import {
|
|
|
229
269
|
ListFunctionUrlConfigsCommandInput,
|
|
230
270
|
ListFunctionUrlConfigsCommandOutput,
|
|
231
271
|
} from "./commands/ListFunctionUrlConfigsCommand";
|
|
272
|
+
import {
|
|
273
|
+
ListFunctionVersionsByCapacityProviderCommandInput,
|
|
274
|
+
ListFunctionVersionsByCapacityProviderCommandOutput,
|
|
275
|
+
} from "./commands/ListFunctionVersionsByCapacityProviderCommand";
|
|
232
276
|
import {
|
|
233
277
|
ListLayersCommandInput,
|
|
234
278
|
ListLayersCommandOutput,
|
|
@@ -273,6 +317,10 @@ import {
|
|
|
273
317
|
PutFunctionRecursionConfigCommandInput,
|
|
274
318
|
PutFunctionRecursionConfigCommandOutput,
|
|
275
319
|
} from "./commands/PutFunctionRecursionConfigCommand";
|
|
320
|
+
import {
|
|
321
|
+
PutFunctionScalingConfigCommandInput,
|
|
322
|
+
PutFunctionScalingConfigCommandOutput,
|
|
323
|
+
} from "./commands/PutFunctionScalingConfigCommand";
|
|
276
324
|
import {
|
|
277
325
|
PutProvisionedConcurrencyConfigCommandInput,
|
|
278
326
|
PutProvisionedConcurrencyConfigCommandOutput,
|
|
@@ -289,6 +337,22 @@ import {
|
|
|
289
337
|
RemovePermissionCommandInput,
|
|
290
338
|
RemovePermissionCommandOutput,
|
|
291
339
|
} from "./commands/RemovePermissionCommand";
|
|
340
|
+
import {
|
|
341
|
+
SendDurableExecutionCallbackFailureCommandInput,
|
|
342
|
+
SendDurableExecutionCallbackFailureCommandOutput,
|
|
343
|
+
} from "./commands/SendDurableExecutionCallbackFailureCommand";
|
|
344
|
+
import {
|
|
345
|
+
SendDurableExecutionCallbackHeartbeatCommandInput,
|
|
346
|
+
SendDurableExecutionCallbackHeartbeatCommandOutput,
|
|
347
|
+
} from "./commands/SendDurableExecutionCallbackHeartbeatCommand";
|
|
348
|
+
import {
|
|
349
|
+
SendDurableExecutionCallbackSuccessCommandInput,
|
|
350
|
+
SendDurableExecutionCallbackSuccessCommandOutput,
|
|
351
|
+
} from "./commands/SendDurableExecutionCallbackSuccessCommand";
|
|
352
|
+
import {
|
|
353
|
+
StopDurableExecutionCommandInput,
|
|
354
|
+
StopDurableExecutionCommandOutput,
|
|
355
|
+
} from "./commands/StopDurableExecutionCommand";
|
|
292
356
|
import {
|
|
293
357
|
TagResourceCommandInput,
|
|
294
358
|
TagResourceCommandOutput,
|
|
@@ -301,6 +365,10 @@ import {
|
|
|
301
365
|
UpdateAliasCommandInput,
|
|
302
366
|
UpdateAliasCommandOutput,
|
|
303
367
|
} from "./commands/UpdateAliasCommand";
|
|
368
|
+
import {
|
|
369
|
+
UpdateCapacityProviderCommandInput,
|
|
370
|
+
UpdateCapacityProviderCommandOutput,
|
|
371
|
+
} from "./commands/UpdateCapacityProviderCommand";
|
|
304
372
|
import {
|
|
305
373
|
UpdateCodeSigningConfigCommandInput,
|
|
306
374
|
UpdateCodeSigningConfigCommandOutput,
|
|
@@ -335,12 +403,15 @@ export { __Client };
|
|
|
335
403
|
export type ServiceInputTypes =
|
|
336
404
|
| AddLayerVersionPermissionCommandInput
|
|
337
405
|
| AddPermissionCommandInput
|
|
406
|
+
| CheckpointDurableExecutionCommandInput
|
|
338
407
|
| CreateAliasCommandInput
|
|
408
|
+
| CreateCapacityProviderCommandInput
|
|
339
409
|
| CreateCodeSigningConfigCommandInput
|
|
340
410
|
| CreateEventSourceMappingCommandInput
|
|
341
411
|
| CreateFunctionCommandInput
|
|
342
412
|
| CreateFunctionUrlConfigCommandInput
|
|
343
413
|
| DeleteAliasCommandInput
|
|
414
|
+
| DeleteCapacityProviderCommandInput
|
|
344
415
|
| DeleteCodeSigningConfigCommandInput
|
|
345
416
|
| DeleteEventSourceMappingCommandInput
|
|
346
417
|
| DeleteFunctionCodeSigningConfigCommandInput
|
|
@@ -352,7 +423,11 @@ export type ServiceInputTypes =
|
|
|
352
423
|
| DeleteProvisionedConcurrencyConfigCommandInput
|
|
353
424
|
| GetAccountSettingsCommandInput
|
|
354
425
|
| GetAliasCommandInput
|
|
426
|
+
| GetCapacityProviderCommandInput
|
|
355
427
|
| GetCodeSigningConfigCommandInput
|
|
428
|
+
| GetDurableExecutionCommandInput
|
|
429
|
+
| GetDurableExecutionHistoryCommandInput
|
|
430
|
+
| GetDurableExecutionStateCommandInput
|
|
356
431
|
| GetEventSourceMappingCommandInput
|
|
357
432
|
| GetFunctionCodeSigningConfigCommandInput
|
|
358
433
|
| GetFunctionCommandInput
|
|
@@ -360,6 +435,7 @@ export type ServiceInputTypes =
|
|
|
360
435
|
| GetFunctionConfigurationCommandInput
|
|
361
436
|
| GetFunctionEventInvokeConfigCommandInput
|
|
362
437
|
| GetFunctionRecursionConfigCommandInput
|
|
438
|
+
| GetFunctionScalingConfigCommandInput
|
|
363
439
|
| GetFunctionUrlConfigCommandInput
|
|
364
440
|
| GetLayerVersionByArnCommandInput
|
|
365
441
|
| GetLayerVersionCommandInput
|
|
@@ -371,10 +447,13 @@ export type ServiceInputTypes =
|
|
|
371
447
|
| InvokeCommandInput
|
|
372
448
|
| InvokeWithResponseStreamCommandInput
|
|
373
449
|
| ListAliasesCommandInput
|
|
450
|
+
| ListCapacityProvidersCommandInput
|
|
374
451
|
| ListCodeSigningConfigsCommandInput
|
|
452
|
+
| ListDurableExecutionsByFunctionCommandInput
|
|
375
453
|
| ListEventSourceMappingsCommandInput
|
|
376
454
|
| ListFunctionEventInvokeConfigsCommandInput
|
|
377
455
|
| ListFunctionUrlConfigsCommandInput
|
|
456
|
+
| ListFunctionVersionsByCapacityProviderCommandInput
|
|
378
457
|
| ListFunctionsByCodeSigningConfigCommandInput
|
|
379
458
|
| ListFunctionsCommandInput
|
|
380
459
|
| ListLayerVersionsCommandInput
|
|
@@ -388,13 +467,19 @@ export type ServiceInputTypes =
|
|
|
388
467
|
| PutFunctionConcurrencyCommandInput
|
|
389
468
|
| PutFunctionEventInvokeConfigCommandInput
|
|
390
469
|
| PutFunctionRecursionConfigCommandInput
|
|
470
|
+
| PutFunctionScalingConfigCommandInput
|
|
391
471
|
| PutProvisionedConcurrencyConfigCommandInput
|
|
392
472
|
| PutRuntimeManagementConfigCommandInput
|
|
393
473
|
| RemoveLayerVersionPermissionCommandInput
|
|
394
474
|
| RemovePermissionCommandInput
|
|
475
|
+
| SendDurableExecutionCallbackFailureCommandInput
|
|
476
|
+
| SendDurableExecutionCallbackHeartbeatCommandInput
|
|
477
|
+
| SendDurableExecutionCallbackSuccessCommandInput
|
|
478
|
+
| StopDurableExecutionCommandInput
|
|
395
479
|
| TagResourceCommandInput
|
|
396
480
|
| UntagResourceCommandInput
|
|
397
481
|
| UpdateAliasCommandInput
|
|
482
|
+
| UpdateCapacityProviderCommandInput
|
|
398
483
|
| UpdateCodeSigningConfigCommandInput
|
|
399
484
|
| UpdateEventSourceMappingCommandInput
|
|
400
485
|
| UpdateFunctionCodeCommandInput
|
|
@@ -404,12 +489,15 @@ export type ServiceInputTypes =
|
|
|
404
489
|
export type ServiceOutputTypes =
|
|
405
490
|
| AddLayerVersionPermissionCommandOutput
|
|
406
491
|
| AddPermissionCommandOutput
|
|
492
|
+
| CheckpointDurableExecutionCommandOutput
|
|
407
493
|
| CreateAliasCommandOutput
|
|
494
|
+
| CreateCapacityProviderCommandOutput
|
|
408
495
|
| CreateCodeSigningConfigCommandOutput
|
|
409
496
|
| CreateEventSourceMappingCommandOutput
|
|
410
497
|
| CreateFunctionCommandOutput
|
|
411
498
|
| CreateFunctionUrlConfigCommandOutput
|
|
412
499
|
| DeleteAliasCommandOutput
|
|
500
|
+
| DeleteCapacityProviderCommandOutput
|
|
413
501
|
| DeleteCodeSigningConfigCommandOutput
|
|
414
502
|
| DeleteEventSourceMappingCommandOutput
|
|
415
503
|
| DeleteFunctionCodeSigningConfigCommandOutput
|
|
@@ -421,7 +509,11 @@ export type ServiceOutputTypes =
|
|
|
421
509
|
| DeleteProvisionedConcurrencyConfigCommandOutput
|
|
422
510
|
| GetAccountSettingsCommandOutput
|
|
423
511
|
| GetAliasCommandOutput
|
|
512
|
+
| GetCapacityProviderCommandOutput
|
|
424
513
|
| GetCodeSigningConfigCommandOutput
|
|
514
|
+
| GetDurableExecutionCommandOutput
|
|
515
|
+
| GetDurableExecutionHistoryCommandOutput
|
|
516
|
+
| GetDurableExecutionStateCommandOutput
|
|
425
517
|
| GetEventSourceMappingCommandOutput
|
|
426
518
|
| GetFunctionCodeSigningConfigCommandOutput
|
|
427
519
|
| GetFunctionCommandOutput
|
|
@@ -429,6 +521,7 @@ export type ServiceOutputTypes =
|
|
|
429
521
|
| GetFunctionConfigurationCommandOutput
|
|
430
522
|
| GetFunctionEventInvokeConfigCommandOutput
|
|
431
523
|
| GetFunctionRecursionConfigCommandOutput
|
|
524
|
+
| GetFunctionScalingConfigCommandOutput
|
|
432
525
|
| GetFunctionUrlConfigCommandOutput
|
|
433
526
|
| GetLayerVersionByArnCommandOutput
|
|
434
527
|
| GetLayerVersionCommandOutput
|
|
@@ -440,10 +533,13 @@ export type ServiceOutputTypes =
|
|
|
440
533
|
| InvokeCommandOutput
|
|
441
534
|
| InvokeWithResponseStreamCommandOutput
|
|
442
535
|
| ListAliasesCommandOutput
|
|
536
|
+
| ListCapacityProvidersCommandOutput
|
|
443
537
|
| ListCodeSigningConfigsCommandOutput
|
|
538
|
+
| ListDurableExecutionsByFunctionCommandOutput
|
|
444
539
|
| ListEventSourceMappingsCommandOutput
|
|
445
540
|
| ListFunctionEventInvokeConfigsCommandOutput
|
|
446
541
|
| ListFunctionUrlConfigsCommandOutput
|
|
542
|
+
| ListFunctionVersionsByCapacityProviderCommandOutput
|
|
447
543
|
| ListFunctionsByCodeSigningConfigCommandOutput
|
|
448
544
|
| ListFunctionsCommandOutput
|
|
449
545
|
| ListLayerVersionsCommandOutput
|
|
@@ -457,13 +553,19 @@ export type ServiceOutputTypes =
|
|
|
457
553
|
| PutFunctionConcurrencyCommandOutput
|
|
458
554
|
| PutFunctionEventInvokeConfigCommandOutput
|
|
459
555
|
| PutFunctionRecursionConfigCommandOutput
|
|
556
|
+
| PutFunctionScalingConfigCommandOutput
|
|
460
557
|
| PutProvisionedConcurrencyConfigCommandOutput
|
|
461
558
|
| PutRuntimeManagementConfigCommandOutput
|
|
462
559
|
| RemoveLayerVersionPermissionCommandOutput
|
|
463
560
|
| RemovePermissionCommandOutput
|
|
561
|
+
| SendDurableExecutionCallbackFailureCommandOutput
|
|
562
|
+
| SendDurableExecutionCallbackHeartbeatCommandOutput
|
|
563
|
+
| SendDurableExecutionCallbackSuccessCommandOutput
|
|
564
|
+
| StopDurableExecutionCommandOutput
|
|
464
565
|
| TagResourceCommandOutput
|
|
465
566
|
| UntagResourceCommandOutput
|
|
466
567
|
| UpdateAliasCommandOutput
|
|
568
|
+
| UpdateCapacityProviderCommandOutput
|
|
467
569
|
| UpdateCodeSigningConfigCommandOutput
|
|
468
570
|
| UpdateEventSourceMappingCommandOutput
|
|
469
571
|
| UpdateFunctionCodeCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LambdaClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LambdaClient";
|
|
8
|
+
import {
|
|
9
|
+
CheckpointDurableExecutionRequest,
|
|
10
|
+
CheckpointDurableExecutionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CheckpointDurableExecutionCommandInput
|
|
15
|
+
extends CheckpointDurableExecutionRequest {}
|
|
16
|
+
export interface CheckpointDurableExecutionCommandOutput
|
|
17
|
+
extends CheckpointDurableExecutionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CheckpointDurableExecutionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CheckpointDurableExecutionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CheckpointDurableExecutionCommandInput,
|
|
24
|
+
CheckpointDurableExecutionCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CheckpointDurableExecutionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CheckpointDurableExecutionCommandInput,
|
|
33
|
+
CheckpointDurableExecutionCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CheckpointDurableExecutionCommand extends CheckpointDurableExecutionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CheckpointDurableExecutionRequest;
|
|
44
|
+
output: CheckpointDurableExecutionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CheckpointDurableExecutionCommandInput;
|
|
48
|
+
output: CheckpointDurableExecutionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LambdaClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LambdaClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateCapacityProviderRequest,
|
|
10
|
+
CreateCapacityProviderResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateCapacityProviderCommandInput
|
|
15
|
+
extends CreateCapacityProviderRequest {}
|
|
16
|
+
export interface CreateCapacityProviderCommandOutput
|
|
17
|
+
extends CreateCapacityProviderResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateCapacityProviderCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateCapacityProviderCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateCapacityProviderCommandInput,
|
|
24
|
+
CreateCapacityProviderCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateCapacityProviderCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateCapacityProviderCommandInput,
|
|
33
|
+
CreateCapacityProviderCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateCapacityProviderCommand extends CreateCapacityProviderCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateCapacityProviderRequest;
|
|
44
|
+
output: CreateCapacityProviderResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateCapacityProviderCommandInput;
|
|
48
|
+
output: CreateCapacityProviderCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LambdaClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LambdaClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteCapacityProviderRequest,
|
|
10
|
+
DeleteCapacityProviderResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteCapacityProviderCommandInput
|
|
15
|
+
extends DeleteCapacityProviderRequest {}
|
|
16
|
+
export interface DeleteCapacityProviderCommandOutput
|
|
17
|
+
extends DeleteCapacityProviderResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteCapacityProviderCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteCapacityProviderCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteCapacityProviderCommandInput,
|
|
24
|
+
DeleteCapacityProviderCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteCapacityProviderCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteCapacityProviderCommandInput,
|
|
33
|
+
DeleteCapacityProviderCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteCapacityProviderCommand extends DeleteCapacityProviderCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteCapacityProviderRequest;
|
|
44
|
+
output: DeleteCapacityProviderResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteCapacityProviderCommandInput;
|
|
48
|
+
output: DeleteCapacityProviderCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,11 +5,16 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../LambdaClient";
|
|
8
|
-
import {
|
|
8
|
+
import {
|
|
9
|
+
DeleteFunctionRequest,
|
|
10
|
+
DeleteFunctionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
9
12
|
export { __MetadataBearer };
|
|
10
13
|
export { $Command };
|
|
11
14
|
export interface DeleteFunctionCommandInput extends DeleteFunctionRequest {}
|
|
12
|
-
export interface DeleteFunctionCommandOutput
|
|
15
|
+
export interface DeleteFunctionCommandOutput
|
|
16
|
+
extends DeleteFunctionResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
13
18
|
declare const DeleteFunctionCommand_base: {
|
|
14
19
|
new (
|
|
15
20
|
input: DeleteFunctionCommandInput
|
|
@@ -35,7 +40,7 @@ export declare class DeleteFunctionCommand extends DeleteFunctionCommand_base {
|
|
|
35
40
|
protected static __types: {
|
|
36
41
|
api: {
|
|
37
42
|
input: DeleteFunctionRequest;
|
|
38
|
-
output:
|
|
43
|
+
output: DeleteFunctionResponse;
|
|
39
44
|
};
|
|
40
45
|
sdk: {
|
|
41
46
|
input: DeleteFunctionCommandInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LambdaClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LambdaClient";
|
|
8
|
+
import {
|
|
9
|
+
GetCapacityProviderRequest,
|
|
10
|
+
GetCapacityProviderResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetCapacityProviderCommandInput
|
|
15
|
+
extends GetCapacityProviderRequest {}
|
|
16
|
+
export interface GetCapacityProviderCommandOutput
|
|
17
|
+
extends GetCapacityProviderResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetCapacityProviderCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetCapacityProviderCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetCapacityProviderCommandInput,
|
|
24
|
+
GetCapacityProviderCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetCapacityProviderCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetCapacityProviderCommandInput,
|
|
33
|
+
GetCapacityProviderCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetCapacityProviderCommand extends GetCapacityProviderCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetCapacityProviderRequest;
|
|
44
|
+
output: GetCapacityProviderResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetCapacityProviderCommandInput;
|
|
48
|
+
output: GetCapacityProviderCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LambdaClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LambdaClient";
|
|
8
|
+
import {
|
|
9
|
+
GetDurableExecutionRequest,
|
|
10
|
+
GetDurableExecutionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDurableExecutionCommandInput
|
|
15
|
+
extends GetDurableExecutionRequest {}
|
|
16
|
+
export interface GetDurableExecutionCommandOutput
|
|
17
|
+
extends GetDurableExecutionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDurableExecutionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDurableExecutionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDurableExecutionCommandInput,
|
|
24
|
+
GetDurableExecutionCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetDurableExecutionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDurableExecutionCommandInput,
|
|
33
|
+
GetDurableExecutionCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDurableExecutionCommand extends GetDurableExecutionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDurableExecutionRequest;
|
|
44
|
+
output: GetDurableExecutionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDurableExecutionCommandInput;
|
|
48
|
+
output: GetDurableExecutionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LambdaClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LambdaClient";
|
|
8
|
+
import {
|
|
9
|
+
GetDurableExecutionHistoryRequest,
|
|
10
|
+
GetDurableExecutionHistoryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDurableExecutionHistoryCommandInput
|
|
15
|
+
extends GetDurableExecutionHistoryRequest {}
|
|
16
|
+
export interface GetDurableExecutionHistoryCommandOutput
|
|
17
|
+
extends GetDurableExecutionHistoryResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDurableExecutionHistoryCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDurableExecutionHistoryCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDurableExecutionHistoryCommandInput,
|
|
24
|
+
GetDurableExecutionHistoryCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetDurableExecutionHistoryCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDurableExecutionHistoryCommandInput,
|
|
33
|
+
GetDurableExecutionHistoryCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDurableExecutionHistoryCommand extends GetDurableExecutionHistoryCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDurableExecutionHistoryRequest;
|
|
44
|
+
output: GetDurableExecutionHistoryResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDurableExecutionHistoryCommandInput;
|
|
48
|
+
output: GetDurableExecutionHistoryCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LambdaClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LambdaClient";
|
|
8
|
+
import {
|
|
9
|
+
GetDurableExecutionStateRequest,
|
|
10
|
+
GetDurableExecutionStateResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDurableExecutionStateCommandInput
|
|
15
|
+
extends GetDurableExecutionStateRequest {}
|
|
16
|
+
export interface GetDurableExecutionStateCommandOutput
|
|
17
|
+
extends GetDurableExecutionStateResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDurableExecutionStateCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDurableExecutionStateCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDurableExecutionStateCommandInput,
|
|
24
|
+
GetDurableExecutionStateCommandOutput,
|
|
25
|
+
LambdaClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetDurableExecutionStateCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDurableExecutionStateCommandInput,
|
|
33
|
+
GetDurableExecutionStateCommandOutput,
|
|
34
|
+
LambdaClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDurableExecutionStateCommand extends GetDurableExecutionStateCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDurableExecutionStateRequest;
|
|
44
|
+
output: GetDurableExecutionStateResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDurableExecutionStateCommandInput;
|
|
48
|
+
output: GetDurableExecutionStateCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|