@aws-sdk/client-lambda 3.942.0 → 3.945.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 (71) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/index.js +1039 -83
  3. package/dist-es/Lambda.js +18 -0
  4. package/dist-es/commands/CheckpointDurableExecutionCommand.js +16 -0
  5. package/dist-es/commands/GetDurableExecutionCommand.js +16 -0
  6. package/dist-es/commands/GetDurableExecutionHistoryCommand.js +16 -0
  7. package/dist-es/commands/GetDurableExecutionStateCommand.js +16 -0
  8. package/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +16 -0
  9. package/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +16 -0
  10. package/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +16 -0
  11. package/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +16 -0
  12. package/dist-es/commands/StopDurableExecutionCommand.js +16 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/enums.js +61 -0
  15. package/dist-es/models/errors.js +32 -0
  16. package/dist-es/pagination/GetDurableExecutionHistoryPaginator.js +4 -0
  17. package/dist-es/pagination/GetDurableExecutionStatePaginator.js +4 -0
  18. package/dist-es/pagination/ListDurableExecutionsByFunctionPaginator.js +4 -0
  19. package/dist-es/pagination/index.js +3 -0
  20. package/dist-es/schemas/schemas_0.js +806 -84
  21. package/dist-types/Lambda.d.ts +63 -0
  22. package/dist-types/LambdaClient.d.ts +11 -2
  23. package/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +190 -0
  24. package/dist-types/commands/CreateFunctionCommand.d.ts +18 -2
  25. package/dist-types/commands/GetDurableExecutionCommand.d.ts +105 -0
  26. package/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +259 -0
  27. package/dist-types/commands/GetDurableExecutionStateCommand.d.ts +152 -0
  28. package/dist-types/commands/GetFunctionCommand.d.ts +10 -2
  29. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +10 -2
  30. package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
  31. package/dist-types/commands/InvokeCommand.d.ts +7 -0
  32. package/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +106 -0
  33. package/dist-types/commands/ListFunctionsCommand.d.ts +10 -2
  34. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +14 -2
  35. package/dist-types/commands/PublishVersionCommand.d.ts +6 -2
  36. package/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +92 -0
  37. package/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +84 -0
  38. package/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +91 -0
  39. package/dist-types/commands/StopDurableExecutionCommand.d.ts +94 -0
  40. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +6 -2
  41. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +18 -2
  42. package/dist-types/commands/index.d.ts +9 -0
  43. package/dist-types/models/enums.d.ts +101 -0
  44. package/dist-types/models/errors.d.ts +36 -0
  45. package/dist-types/models/models_0.d.ts +1510 -173
  46. package/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +7 -0
  47. package/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +7 -0
  48. package/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +7 -0
  49. package/dist-types/pagination/index.d.ts +3 -0
  50. package/dist-types/schemas/schemas_0.d.ts +90 -0
  51. package/dist-types/ts3.4/Lambda.d.ts +171 -0
  52. package/dist-types/ts3.4/LambdaClient.d.ts +54 -0
  53. package/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +51 -0
  54. package/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +51 -0
  58. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +51 -0
  59. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +51 -0
  60. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +60 -0
  61. package/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +51 -0
  62. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  63. package/dist-types/ts3.4/models/enums.d.ts +69 -0
  64. package/dist-types/ts3.4/models/errors.d.ts +21 -0
  65. package/dist-types/ts3.4/models/models_0.d.ts +322 -0
  66. package/dist-types/ts3.4/pagination/GetDurableExecutionHistoryPaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/GetDurableExecutionStatePaginator.d.ts +11 -0
  68. package/dist-types/ts3.4/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +11 -0
  69. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  70. package/dist-types/ts3.4/schemas/schemas_0.d.ts +90 -0
  71. package/package.json +5 -5
@@ -30,8 +30,10 @@ const _Al = "Aliases";
30
30
  const _Ar = "Architectures";
31
31
  const _Arn = "Arn";
32
32
  const _At = "Attribute";
33
+ const _Att = "Attempt";
33
34
  const _B = "Blob";
34
35
  const _BBOFE = "BisectBatchOnFunctionError";
36
+ const _BOP = "BinaryOperationPayload";
35
37
  const _BS = "BlobStream";
36
38
  const _BSa = "BatchSize";
37
39
  const _C = "Concurrency";
@@ -39,6 +41,7 @@ const _CA = "CompatibleArchitectures";
39
41
  const _CAR = "CreateAliasRequest";
40
42
  const _CAo = "CompatibleArchitecture";
41
43
  const _CAr = "CreateAlias";
44
+ const _CAu = "CurrentAttempt";
42
45
  const _CC = "ClientContext";
43
46
  const _CCP = "CreateCapacityProvider";
44
47
  const _CCPR = "CreateCapacityProviderRequest";
@@ -46,17 +49,34 @@ const _CCPRr = "CreateCapacityProviderResponse";
46
49
  const _CCSC = "CreateCodeSigningConfig";
47
50
  const _CCSCR = "CreateCodeSigningConfigRequest";
48
51
  const _CCSCRr = "CreateCodeSigningConfigResponse";
49
- const _CD = "CreatedDate";
52
+ const _CD = "CallbackDetails";
53
+ const _CDE = "CheckpointDurableExecution";
54
+ const _CDER = "CheckpointDurableExecutionRequest";
55
+ const _CDERh = "CheckpointDurableExecutionResponse";
56
+ const _CDo = "ContextDetails";
57
+ const _CDr = "CreatedDate";
50
58
  const _CE = "ConcurrentExecutions";
51
59
  const _CESM = "CreateEventSourceMapping";
52
60
  const _CESMR = "CreateEventSourceMappingRequest";
53
61
  const _CF = "CreateFunction";
62
+ const _CFD = "CallbackFailedDetails";
63
+ const _CFDo = "ContextFailedDetails";
54
64
  const _CFR = "CreateFunctionRequest";
55
65
  const _CFUC = "CreateFunctionUrlConfig";
56
66
  const _CFUCR = "CreateFunctionUrlConfigRequest";
57
67
  const _CFUCRr = "CreateFunctionUrlConfigResponse";
58
68
  const _CGI = "ConsumerGroupId";
69
+ const _CI = "CallbackId";
70
+ const _CID = "ChainedInvokeDetails";
71
+ const _CIFD = "ChainedInvokeFailedDetails";
72
+ const _CIO = "ChainedInvokeOptions";
73
+ const _CISD = "ChainedInvokeStartedDetails";
74
+ const _CISDh = "ChainedInvokeStoppedDetails";
75
+ const _CISDha = "ChainedInvokeSucceededDetails";
76
+ const _CITOD = "ChainedInvokeTimedOutDetails";
59
77
  const _CN = "CollectionName";
78
+ const _CO = "CallbackOptions";
79
+ const _COo = "ContextOptions";
60
80
  const _CP = "CapacityProvider";
61
81
  const _CPA = "CapacityProviderArn";
62
82
  const _CPC = "CapacityProviderConfig";
@@ -78,14 +98,23 @@ const _CSCI = "CodeSigningConfigId";
78
98
  const _CSCL = "CodeSigningConfigList";
79
99
  const _CSCNFE = "CodeSigningConfigNotFoundException";
80
100
  const _CSCo = "CodeSigningConfigs";
101
+ const _CSD = "CallbackStartedDetails";
102
+ const _CSDa = "CallbackSucceededDetails";
103
+ const _CSDo = "ContextStartedDetails";
104
+ const _CSDon = "ContextSucceededDetails";
81
105
  const _CSEE = "CodeStorageExceededException";
82
106
  const _CSP = "CodeSigningPolicies";
83
107
  const _CSU = "CodeSizeUnzipped";
84
108
  const _CSZ = "CodeSizeZipped";
85
109
  const _CSo = "CodeSha256";
86
110
  const _CSon = "ConfigSha256";
87
- const _CT = "CreationTime";
111
+ const _CT = "CheckpointToken";
112
+ const _CTE = "CallbackTimeoutException";
113
+ const _CTOD = "CallbackTimedOutDetails";
88
114
  const _CT_ = "Content-Type";
115
+ const _CTl = "ClientToken";
116
+ const _CTr = "CreationTime";
117
+ const _CUES = "CheckpointUpdatedExecutionState";
89
118
  const _CVFE = "CodeVerificationFailedException";
90
119
  const _Co = "Cors";
91
120
  const _Cod = "Code";
@@ -102,7 +131,12 @@ const _DCPRe = "DeleteCapacityProviderResponse";
102
131
  const _DCSC = "DeleteCodeSigningConfig";
103
132
  const _DCSCR = "DeleteCodeSigningConfigRequest";
104
133
  const _DCSCRe = "DeleteCodeSigningConfigResponse";
134
+ const _DCu = "DurableConfig";
105
135
  const _DDBESC = "DocumentDBEventSourceConfig";
136
+ const _DE = "DurableExecutions";
137
+ const _DEA = "DurableExecutionArn";
138
+ const _DEASE = "DurableExecutionAlreadyStartedException";
139
+ const _DEN = "DurableExecutionName";
106
140
  const _DESM = "DeleteEventSourceMapping";
107
141
  const _DESMR = "DeleteEventSourceMappingRequest";
108
142
  const _DF = "DeleteFunction";
@@ -124,27 +158,40 @@ const _DPCC = "DeleteProvisionedConcurrencyConfig";
124
158
  const _DPCCR = "DeleteProvisionedConcurrencyConfigRequest";
125
159
  const _DR = "DryRun";
126
160
  const _De = "Destination";
127
- const _E = "Enabled";
161
+ const _Du = "Duration";
162
+ const _E = "Error";
128
163
  const _EC = "ErrorCode";
129
164
  const _ECADE = "EC2AccessDeniedException";
130
165
  const _ECEC = "EC2ErrorCode";
131
166
  const _ECTE = "EC2ThrottledException";
132
167
  const _ECUE = "EC2UnexpectedException";
133
- const _ED = "ErrorDetails";
168
+ const _ED = "ErrorData";
169
+ const _EDr = "ErrorDetails";
170
+ const _EDx = "ExecutionDetails";
134
171
  const _EE = "EnvironmentError";
135
172
  const _EEMGBPVC = "ExecutionEnvironmentMemoryGiBPerVCpu";
173
+ const _EEv = "EventError";
174
+ const _EFD = "ExecutionFailedDetails";
136
175
  const _EFSIOE = "EFSIOException";
137
176
  const _EFSMCE = "EFSMountConnectivityException";
138
177
  const _EFSMFE = "EFSMountFailureException";
139
178
  const _EFSMTE = "EFSMountTimeoutException";
140
179
  const _EH = "ExposeHeaders";
180
+ const _EI = "EventId";
141
181
  const _EIT = "ExcludedInstanceTypes";
182
+ const _EIv = "EventInput";
183
+ const _EM = "ErrorMessage";
142
184
  const _ENILRE = "ENILimitReachedException";
185
+ const _EO = "ErrorObject";
143
186
  const _EP = "EntryPoint";
144
187
  const _ER = "EnvironmentResponse";
145
188
  const _ERF = "EventRecordFormat";
189
+ const _ERv = "EventResult";
146
190
  const _ES = "EphemeralStorage";
147
191
  const _ESA = "EventSourceArn";
192
+ const _ESD = "ExecutionStartedDetails";
193
+ const _ESDx = "ExecutionSucceededDetails";
194
+ const _ESDxe = "ExecutionStoppedDetails";
148
195
  const _ESM = "EventSourceMappings";
149
196
  const _ESMA = "EventSourceMappingArn";
150
197
  const _ESMC = "EventSourceMappingConfiguration";
@@ -152,13 +199,22 @@ const _ESML = "EventSourceMappingsList";
152
199
  const _ESMMC = "EventSourceMappingMetricsConfig";
153
200
  const _EST = "EventSourceToken";
154
201
  const _ESv = "EventStream";
202
+ const _ET = "ErrorType";
203
+ const _ETOD = "ExecutionTimedOutDetails";
204
+ const _ETn = "EndTimestamp";
205
+ const _ETv = "EventType";
206
+ const _ETve = "EventTimestamp";
207
+ const _ETx = "ExecutionTimeout";
155
208
  const _EV = "ExecutedVersion";
156
209
  const _EVN = "EnvironmentVariableName";
157
210
  const _EVV = "EnvironmentVariableValue";
158
211
  const _EVn = "EnvironmentVariables";
159
- const _En = "Environment";
212
+ const _En = "Enabled";
160
213
  const _End = "Endpoints";
161
- const _Er = "Error";
214
+ const _Env = "Environment";
215
+ const _Ev = "Event";
216
+ const _Eve = "Events";
217
+ const _Ex = "Execution";
162
218
  const _F = "Filter";
163
219
  const _FA = "FunctionArn";
164
220
  const _FAu = "FunctionArns";
@@ -205,6 +261,15 @@ const _GCPRe = "GetCapacityProviderResponse";
205
261
  const _GCSC = "GetCodeSigningConfig";
206
262
  const _GCSCR = "GetCodeSigningConfigRequest";
207
263
  const _GCSCRe = "GetCodeSigningConfigResponse";
264
+ const _GDE = "GetDurableExecution";
265
+ const _GDEH = "GetDurableExecutionHistory";
266
+ const _GDEHR = "GetDurableExecutionHistoryRequest";
267
+ const _GDEHRe = "GetDurableExecutionHistoryResponse";
268
+ const _GDER = "GetDurableExecutionRequest";
269
+ const _GDERe = "GetDurableExecutionResponse";
270
+ const _GDES = "GetDurableExecutionState";
271
+ const _GDESR = "GetDurableExecutionStateRequest";
272
+ const _GDESRe = "GetDurableExecutionStateResponse";
208
273
  const _GESM = "GetEventSourceMapping";
209
274
  const _GESMR = "GetEventSourceMappingRequest";
210
275
  const _GF = "GetFunction";
@@ -247,18 +312,23 @@ const _GRMC = "GetRuntimeManagementConfig";
247
312
  const _GRMCR = "GetRuntimeManagementConfigRequest";
248
313
  const _GRMCRe = "GetRuntimeManagementConfigResponse";
249
314
  const _H = "Handler";
250
- const _I = "Invoke";
315
+ const _HT = "HeartbeatTimeout";
316
+ const _HTS = "HeartbeatTimeoutSeconds";
317
+ const _I = "Input";
251
318
  const _IA = "InvokeArgs";
252
319
  const _IAFDS = "Ipv6AllowedForDualStack";
253
320
  const _IAR = "InvokeAsyncRequest";
254
321
  const _IARn = "InvokeAsyncResponse";
255
322
  const _IAn = "InvokeAsync";
256
323
  const _IC = "ImageConfig";
324
+ const _ICD = "InvocationCompletedDetails";
257
325
  const _ICE = "ImageConfigError";
258
326
  const _ICR = "ImageConfigResponse";
259
327
  const _ICSE = "InvalidCodeSignatureException";
260
328
  const _ICn = "InvokeComplete";
329
+ const _IED = "IncludeExecutionData";
261
330
  const _IM = "InvokeMode";
331
+ const _IP = "InputPayload";
262
332
  const _IPVE = "InvalidParameterValueException";
263
333
  const _IR = "InstanceRequirements";
264
334
  const _IRCE = "InvalidRequestContentException";
@@ -277,6 +347,8 @@ const _IWRSR = "InvokeWithResponseStreamRequest";
277
347
  const _IWRSRE = "InvokeWithResponseStreamResponseEvent";
278
348
  const _IWRSRn = "InvokeWithResponseStreamResponse";
279
349
  const _IZFE = "InvalidZipFileException";
350
+ const _Id = "Id";
351
+ const _In = "Invoke";
280
352
  const _KKA = "KmsKeyArn";
281
353
  const _KMSADE = "KMSAccessDeniedException";
282
354
  const _KMSDE = "KMSDisabledException";
@@ -300,6 +372,9 @@ const _LCPRi = "ListCapacityProvidersResponse";
300
372
  const _LCSC = "ListCodeSigningConfigs";
301
373
  const _LCSCR = "ListCodeSigningConfigsRequest";
302
374
  const _LCSCRi = "ListCodeSigningConfigsResponse";
375
+ const _LDEBF = "ListDurableExecutionsByFunction";
376
+ const _LDEBFR = "ListDurableExecutionsByFunctionRequest";
377
+ const _LDEBFRi = "ListDurableExecutionsByFunctionResponse";
303
378
  const _LESM = "ListEventSourceMappings";
304
379
  const _LESMR = "ListEventSourceMappingsRequest";
305
380
  const _LESMRi = "ListEventSourceMappingsResponse";
@@ -380,12 +455,21 @@ const _Ma = "Marker";
380
455
  const _Me = "Metrics";
381
456
  const _Mo = "Mode";
382
457
  const _N = "Name";
458
+ const _NADS = "NextAttemptDelaySeconds";
459
+ const _NAT = "NextAttemptTimestamp";
460
+ const _NES = "NewExecutionState";
383
461
  const _NM = "NextMarker";
384
462
  const _NPVE = "NoPublishedVersionException";
463
+ const _O = "Operations";
385
464
  const _OF = "OnFailure";
386
465
  const _OI = "OrganizationId";
466
+ const _OP = "OperationPayload";
467
+ const _OPu = "OutputPayload";
387
468
  const _OS = "OnSuccess";
388
469
  const _OSp = "OptimizationStatus";
470
+ const _OU = "OperationUpdate";
471
+ const _OUp = "OperationUpdates";
472
+ const _Op = "Operation";
389
473
  const _P = "Principal";
390
474
  const _PC = "PermissionsConfig";
391
475
  const _PCC = "ProvisionedConcurrencyConfigs";
@@ -411,6 +495,7 @@ const _PFSC = "PutFunctionScalingConfig";
411
495
  const _PFSCR = "PutFunctionScalingConfigRequest";
412
496
  const _PFSCRu = "PutFunctionScalingConfigResponse";
413
497
  const _PGN = "PollerGroupName";
498
+ const _PI = "ParentId";
414
499
  const _PLEE = "PolicyLengthExceededException";
415
500
  const _PLV = "PublishLayerVersion";
416
501
  const _PLVR = "PublishLayerVersionRequest";
@@ -428,29 +513,34 @@ const _PT = "PackageType";
428
513
  const _PTu = "PublishTo";
429
514
  const _PV = "PublishVersion";
430
515
  const _PVR = "PublishVersionRequest";
431
- const _Pa = "Pattern";
432
- const _Pay = "Payload";
516
+ const _Pa = "Payload";
517
+ const _Pat = "Pattern";
433
518
  const _Po = "Policy";
434
519
  const _Pu = "Publish";
435
520
  const _Q = "Qualifier";
436
521
  const _Qu = "Queues";
437
- const _R = "Runtime";
522
+ const _R = "Result";
438
523
  const _RA = "Retry-After";
439
524
  const _RC = "RoutingConfig";
440
525
  const _RCE = "ReservedConcurrentExecutions";
441
526
  const _RCEe = "ResourceConflictException";
527
+ const _RCe = "ReplayChildren";
528
+ const _RD = "RetryDetails";
442
529
  const _RFSC = "RequestedFunctionScalingConfig";
443
530
  const _RI = "RevisionId";
444
531
  const _RIE = "RecursiveInvocationException";
445
532
  const _RIU = "ResolvedImageUri";
446
533
  const _RIUE = "ResourceInUseException";
534
+ const _RIe = "RequestId";
447
535
  const _RL = "RecursiveLoop";
448
536
  const _RLVP = "RemoveLayerVersionPermission";
449
537
  const _RLVPR = "RemoveLayerVersionPermissionRequest";
450
538
  const _RNFE = "ResourceNotFoundException";
451
539
  const _RNRE = "ResourceNotReadyException";
540
+ const _RO = "ReverseOrder";
452
541
  const _RP = "RemovePermission";
453
542
  const _RPCE = "RequestedProvisionedConcurrentExecutions";
543
+ const _RPID = "RetentionPeriodInDays";
454
544
  const _RPR = "RemovePermissionRequest";
455
545
  const _RSCT = "ResponseStreamContentType";
456
546
  const _RT = "RepositoryType";
@@ -461,15 +551,33 @@ const _RVE = "RuntimeVersionError";
461
551
  const _Re = "Resource";
462
552
  const _Rea = "Reason";
463
553
  const _Ro = "Role";
554
+ const _Ru = "Runtime";
464
555
  const _S = "Statement";
465
556
  const _SA = "SourceArn";
466
557
  const _SAC = "SourceAccessConfigurations";
467
558
  const _SACo = "SourceAccessConfiguration";
468
559
  const _SAo = "SourceAccount";
560
+ const _SAt = "StartedAfter";
469
561
  const _SB = "S3Bucket";
562
+ const _SBt = "StartedBefore";
470
563
  const _SC = "ScalingConfig";
471
564
  const _SCt = "StatusCode";
565
+ const _SD = "StepDetails";
566
+ const _SDE = "StopDurableExecution";
567
+ const _SDECF = "SendDurableExecutionCallbackFailure";
568
+ const _SDECFR = "SendDurableExecutionCallbackFailureRequest";
569
+ const _SDECFRe = "SendDurableExecutionCallbackFailureResponse";
570
+ const _SDECH = "SendDurableExecutionCallbackHeartbeat";
571
+ const _SDECHR = "SendDurableExecutionCallbackHeartbeatRequest";
572
+ const _SDECHRe = "SendDurableExecutionCallbackHeartbeatResponse";
573
+ const _SDECS = "SendDurableExecutionCallbackSuccess";
574
+ const _SDECSR = "SendDurableExecutionCallbackSuccessRequest";
575
+ const _SDECSRe = "SendDurableExecutionCallbackSuccessResponse";
576
+ const _SDER = "StopDurableExecutionRequest";
577
+ const _SDERt = "StopDurableExecutionResponse";
472
578
  const _SE = "ServiceException";
579
+ const _SET = "ScheduledEndTimestamp";
580
+ const _SFD = "StepFailedDetails";
473
581
  const _SGI = "SecurityGroupIds";
474
582
  const _SI = "StatementId";
475
583
  const _SIPALRE = "SubnetIPAddressLimitReachedException";
@@ -481,6 +589,7 @@ const _SLL = "SystemLogLevel";
481
589
  const _SM = "ScalingMode";
482
590
  const _SMES = "SelfManagedEventSource";
483
591
  const _SMKESC = "SelfManagedKafkaEventSourceConfig";
592
+ const _SO = "StepOptions";
484
593
  const _SOV = "S3ObjectVersion";
485
594
  const _SP = "ScalingPolicies";
486
595
  const _SPT = "StartingPositionTimestamp";
@@ -494,35 +603,48 @@ const _SRETLE = "SerializedRequestEntityTooLargeException";
494
603
  const _SRURI = "SchemaRegistryURI";
495
604
  const _SRt = "StatusReason";
496
605
  const _SS = "SensitiveString";
606
+ const _SSD = "StepStartedDetails";
607
+ const _SSDt = "StepSucceededDetails";
497
608
  const _SSE = "SnapStartException";
498
609
  const _SSNRE = "SnapStartNotReadyException";
499
610
  const _SSR = "SnapStartResponse";
500
611
  const _SSTE = "SnapStartTimeoutException";
501
612
  const _SSn = "SnapStart";
613
+ const _ST = "StackTrace";
614
+ const _STE = "StackTraceEntry";
615
+ const _STEt = "StackTraceEntries";
502
616
  const _STR = "StateTransitionReason";
617
+ const _STt = "StartTimestamp";
618
+ const _STto = "StopTimestamp";
619
+ const _STu = "SubType";
503
620
  const _SVC = "SchemaValidationConfigs";
504
621
  const _Si = "Size";
505
622
  const _St = "State";
506
623
  const _Sta = "Status";
507
- const _T = "Type";
624
+ const _Stat = "Statuses";
625
+ const _T = "Timeout";
508
626
  const _TA = "TargetArn";
509
627
  const _TC = "TracingConfig";
510
628
  const _TCR = "TracingConfigResponse";
511
629
  const _TCS = "TotalCodeSize";
512
630
  const _TCe = "TenancyConfig";
513
631
  const _TE = "TagsError";
632
+ const _TH = "TraceHeader";
514
633
  const _TI = "TenantId";
515
634
  const _TIM = "TenantIsolationMode";
516
635
  const _TK = "TagKeys";
517
636
  const _TMRE = "TooManyRequestsException";
518
637
  const _TR = "TagResource";
519
638
  const _TRR = "TagResourceRequest";
639
+ const _TS = "TimeoutSeconds";
520
640
  const _TTSP = "TargetTrackingScalingPolicy";
521
641
  const _TV = "TargetValue";
522
642
  const _TWIS = "TumblingWindowInSeconds";
523
643
  const _Ta = "Tags";
524
- const _Ti = "Timeout";
525
644
  const _To = "Topics";
645
+ const _Tr = "Truncated";
646
+ const _Ty = "Type";
647
+ const _U = "Updates";
526
648
  const _UA = "UpdateAlias";
527
649
  const _UAOD = "UntrustedArtifactOnDeployment";
528
650
  const _UAR = "UpdateAliasRequest";
@@ -557,14 +679,23 @@ const _VI = "VpcId";
557
679
  const _VN = "VersionNumber";
558
680
  const _Ve = "Version";
559
681
  const _Ver = "Versions";
682
+ const _WCD = "WaitCancelledDetails";
560
683
  const _WD = "WorkingDirectory";
684
+ const _WDa = "WaitDetails";
685
+ const _WO = "WaitOptions";
686
+ const _WS = "WaitSeconds";
687
+ const _WSD = "WaitStartedDetails";
688
+ const _WSDa = "WaitSucceededDetails";
561
689
  const _XACC = "X-Amz-Client-Context";
690
+ const _XADEA = "X-Amz-Durable-Execution-Arn";
691
+ const _XADEN = "X-Amz-Durable-Execution-Name";
562
692
  const _XAEV = "X-Amz-Executed-Version";
563
693
  const _XAFE = "X-Amz-Function-Error";
564
694
  const _XAIT = "X-Amz-Invocation-Type";
565
695
  const _XALR = "X-Amz-Log-Result";
566
696
  const _XALT = "X-Amz-Log-Type";
567
697
  const _XATI = "X-Amz-Tenant-Id";
698
+ const _XATIm = "XAmznTraceId";
568
699
  const _ZF = "ZipFile";
569
700
  const _c = "client";
570
701
  const _e = "error";
@@ -581,8 +712,9 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.lambda";
581
712
  const _tK = "tagKeys";
582
713
  const n0 = "com.amazonaws.lambda";
583
714
  import { TypeRegistry } from "@smithy/core/schema";
584
- import { CapacityProviderLimitExceededException as __CapacityProviderLimitExceededException, CodeSigningConfigNotFoundException as __CodeSigningConfigNotFoundException, CodeStorageExceededException as __CodeStorageExceededException, CodeVerificationFailedException as __CodeVerificationFailedException, EC2AccessDeniedException as __EC2AccessDeniedException, EC2ThrottledException as __EC2ThrottledException, EC2UnexpectedException as __EC2UnexpectedException, EFSIOException as __EFSIOException, EFSMountConnectivityException as __EFSMountConnectivityException, EFSMountFailureException as __EFSMountFailureException, EFSMountTimeoutException as __EFSMountTimeoutException, ENILimitReachedException as __ENILimitReachedException, FunctionVersionsPerCapacityProviderLimitExceededException as __FunctionVersionsPerCapacityProviderLimitExceededException, InvalidCodeSignatureException as __InvalidCodeSignatureException, InvalidParameterValueException as __InvalidParameterValueException, InvalidRequestContentException as __InvalidRequestContentException, InvalidRuntimeException as __InvalidRuntimeException, InvalidSecurityGroupIDException as __InvalidSecurityGroupIDException, InvalidSubnetIDException as __InvalidSubnetIDException, InvalidZipFileException as __InvalidZipFileException, KMSAccessDeniedException as __KMSAccessDeniedException, KMSDisabledException as __KMSDisabledException, KMSInvalidStateException as __KMSInvalidStateException, KMSNotFoundException as __KMSNotFoundException, NoPublishedVersionException as __NoPublishedVersionException, PolicyLengthExceededException as __PolicyLengthExceededException, PreconditionFailedException as __PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException as __ProvisionedConcurrencyConfigNotFoundException, RecursiveInvocationException as __RecursiveInvocationException, RequestTooLargeException as __RequestTooLargeException, ResourceConflictException as __ResourceConflictException, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, ResourceNotReadyException as __ResourceNotReadyException, SerializedRequestEntityTooLargeException as __SerializedRequestEntityTooLargeException, ServiceException as __ServiceException, SnapStartException as __SnapStartException, SnapStartNotReadyException as __SnapStartNotReadyException, SnapStartTimeoutException as __SnapStartTimeoutException, SubnetIPAddressLimitReachedException as __SubnetIPAddressLimitReachedException, TooManyRequestsException as __TooManyRequestsException, UnsupportedMediaTypeException as __UnsupportedMediaTypeException, } from "../models/errors";
715
+ import { CallbackTimeoutException as __CallbackTimeoutException, CapacityProviderLimitExceededException as __CapacityProviderLimitExceededException, CodeSigningConfigNotFoundException as __CodeSigningConfigNotFoundException, CodeStorageExceededException as __CodeStorageExceededException, CodeVerificationFailedException as __CodeVerificationFailedException, DurableExecutionAlreadyStartedException as __DurableExecutionAlreadyStartedException, EC2AccessDeniedException as __EC2AccessDeniedException, EC2ThrottledException as __EC2ThrottledException, EC2UnexpectedException as __EC2UnexpectedException, EFSIOException as __EFSIOException, EFSMountConnectivityException as __EFSMountConnectivityException, EFSMountFailureException as __EFSMountFailureException, EFSMountTimeoutException as __EFSMountTimeoutException, ENILimitReachedException as __ENILimitReachedException, FunctionVersionsPerCapacityProviderLimitExceededException as __FunctionVersionsPerCapacityProviderLimitExceededException, InvalidCodeSignatureException as __InvalidCodeSignatureException, InvalidParameterValueException as __InvalidParameterValueException, InvalidRequestContentException as __InvalidRequestContentException, InvalidRuntimeException as __InvalidRuntimeException, InvalidSecurityGroupIDException as __InvalidSecurityGroupIDException, InvalidSubnetIDException as __InvalidSubnetIDException, InvalidZipFileException as __InvalidZipFileException, KMSAccessDeniedException as __KMSAccessDeniedException, KMSDisabledException as __KMSDisabledException, KMSInvalidStateException as __KMSInvalidStateException, KMSNotFoundException as __KMSNotFoundException, NoPublishedVersionException as __NoPublishedVersionException, PolicyLengthExceededException as __PolicyLengthExceededException, PreconditionFailedException as __PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException as __ProvisionedConcurrencyConfigNotFoundException, RecursiveInvocationException as __RecursiveInvocationException, RequestTooLargeException as __RequestTooLargeException, ResourceConflictException as __ResourceConflictException, ResourceInUseException as __ResourceInUseException, ResourceNotFoundException as __ResourceNotFoundException, ResourceNotReadyException as __ResourceNotReadyException, SerializedRequestEntityTooLargeException as __SerializedRequestEntityTooLargeException, ServiceException as __ServiceException, SnapStartException as __SnapStartException, SnapStartNotReadyException as __SnapStartNotReadyException, SnapStartTimeoutException as __SnapStartTimeoutException, SubnetIPAddressLimitReachedException as __SubnetIPAddressLimitReachedException, TooManyRequestsException as __TooManyRequestsException, UnsupportedMediaTypeException as __UnsupportedMediaTypeException, } from "../models/errors";
585
716
  import { LambdaServiceException as __LambdaServiceException } from "../models/LambdaServiceException";
717
+ export var BinaryOperationPayload = [0, n0, _BOP, 8, 21];
586
718
  export var _Blob = [0, n0, _B, 8, 21];
587
719
  export var BlobStream = [
588
720
  0,
@@ -595,7 +727,14 @@ export var BlobStream = [
595
727
  ];
596
728
  export var EnvironmentVariableName = [0, n0, _EVN, 8, 0];
597
729
  export var EnvironmentVariableValue = [0, n0, _EVV, 8, 0];
730
+ export var ErrorData = [0, n0, _ED, 8, 0];
731
+ export var ErrorMessage = [0, n0, _EM, 8, 0];
732
+ export var ErrorType = [0, n0, _ET, 8, 0];
733
+ export var InputPayload = [0, n0, _IP, 8, 0];
734
+ export var OperationPayload = [0, n0, _OP, 8, 0];
735
+ export var OutputPayload = [0, n0, _OPu, 8, 0];
598
736
  export var SensitiveString = [0, n0, _SS, 8, 0];
737
+ export var StackTraceEntry = [0, n0, _STE, 8, 0];
599
738
  export var AccountLimit = [3, n0, _AL, 0, [_TCS, _CSU, _CSZ, _CE, _UCE], [1, 1, 1, 1, 1]];
600
739
  export var AccountUsage = [3, n0, _AU, 0, [_TCS, _FC], [1, 1]];
601
740
  export var AddLayerVersionPermissionRequest = [
@@ -665,6 +804,31 @@ export var AmazonManagedKafkaEventSourceConfig = [
665
804
  [_CGI, _SRC],
666
805
  [0, () => KafkaSchemaRegistryConfig],
667
806
  ];
807
+ export var CallbackDetails = [
808
+ 3,
809
+ n0,
810
+ _CD,
811
+ 0,
812
+ [_CI, _R, _E],
813
+ [0, [() => OperationPayload, 0], [() => ErrorObject, 0]],
814
+ ];
815
+ export var CallbackFailedDetails = [3, n0, _CFD, 0, [_E], [[() => EventError, 0]]];
816
+ export var CallbackOptions = [3, n0, _CO, 0, [_TS, _HTS], [1, 1]];
817
+ export var CallbackStartedDetails = [3, n0, _CSD, 0, [_CI, _HT, _T], [0, 1, 1]];
818
+ export var CallbackSucceededDetails = [3, n0, _CSDa, 0, [_R], [[() => EventResult, 0]]];
819
+ export var CallbackTimedOutDetails = [3, n0, _CTOD, 0, [_E], [[() => EventError, 0]]];
820
+ export var CallbackTimeoutException = [
821
+ -3,
822
+ n0,
823
+ _CTE,
824
+ {
825
+ [_e]: _c,
826
+ [_hE]: 400,
827
+ },
828
+ [_Ty, _M],
829
+ [0, 0],
830
+ ];
831
+ TypeRegistry.for(n0).registerError(CallbackTimeoutException, __CallbackTimeoutException);
668
832
  export var CapacityProvider = [
669
833
  3,
670
834
  n0,
@@ -698,7 +862,7 @@ export var CapacityProviderLimitExceededException = [
698
862
  [_e]: _c,
699
863
  [_hE]: 400,
700
864
  },
701
- [_T, _m],
865
+ [_Ty, _m],
702
866
  [0, 0],
703
867
  ];
704
868
  TypeRegistry.for(n0).registerError(CapacityProviderLimitExceededException, __CapacityProviderLimitExceededException);
@@ -712,6 +876,54 @@ export var CapacityProviderScalingConfig = [
712
876
  [1, 0, () => CapacityProviderScalingPoliciesList],
713
877
  ];
714
878
  export var CapacityProviderVpcConfig = [3, n0, _CPVC, 0, [_SIu, _SGI], [64 | 0, 64 | 0]];
879
+ export var ChainedInvokeDetails = [
880
+ 3,
881
+ n0,
882
+ _CID,
883
+ 0,
884
+ [_R, _E],
885
+ [
886
+ [() => OperationPayload, 0],
887
+ [() => ErrorObject, 0],
888
+ ],
889
+ ];
890
+ export var ChainedInvokeFailedDetails = [3, n0, _CIFD, 0, [_E], [[() => EventError, 0]]];
891
+ export var ChainedInvokeOptions = [3, n0, _CIO, 0, [_FN, _TI], [0, 0]];
892
+ export var ChainedInvokeStartedDetails = [
893
+ 3,
894
+ n0,
895
+ _CISD,
896
+ 0,
897
+ [_FN, _TI, _I, _EV, _DEA],
898
+ [0, 0, [() => EventInput, 0], 0, 0],
899
+ ];
900
+ export var ChainedInvokeStoppedDetails = [3, n0, _CISDh, 0, [_E], [[() => EventError, 0]]];
901
+ export var ChainedInvokeSucceededDetails = [3, n0, _CISDha, 0, [_R], [[() => EventResult, 0]]];
902
+ export var ChainedInvokeTimedOutDetails = [3, n0, _CITOD, 0, [_E], [[() => EventError, 0]]];
903
+ export var CheckpointDurableExecutionRequest = [
904
+ 3,
905
+ n0,
906
+ _CDER,
907
+ 0,
908
+ [_DEA, _CT, _U, _CTl],
909
+ [[0, 1], 0, [() => OperationUpdates, 0], [0, 4]],
910
+ ];
911
+ export var CheckpointDurableExecutionResponse = [
912
+ 3,
913
+ n0,
914
+ _CDERh,
915
+ 0,
916
+ [_CT, _NES],
917
+ [0, [() => CheckpointUpdatedExecutionState, 0]],
918
+ ];
919
+ export var CheckpointUpdatedExecutionState = [
920
+ 3,
921
+ n0,
922
+ _CUES,
923
+ 0,
924
+ [_O, _NM],
925
+ [[() => Operations, 0], 0],
926
+ ];
715
927
  export var CodeSigningConfig = [
716
928
  3,
717
929
  n0,
@@ -728,7 +940,7 @@ export var CodeSigningConfigNotFoundException = [
728
940
  [_e]: _c,
729
941
  [_hE]: 404,
730
942
  },
731
- [_T, _M],
943
+ [_Ty, _M],
732
944
  [0, 0],
733
945
  ];
734
946
  TypeRegistry.for(n0).registerError(CodeSigningConfigNotFoundException, __CodeSigningConfigNotFoundException);
@@ -741,7 +953,7 @@ export var CodeStorageExceededException = [
741
953
  [_e]: _c,
742
954
  [_hE]: 400,
743
955
  },
744
- [_T, _m],
956
+ [_Ty, _m],
745
957
  [0, 0],
746
958
  ];
747
959
  TypeRegistry.for(n0).registerError(CodeStorageExceededException, __CodeStorageExceededException);
@@ -753,11 +965,23 @@ export var CodeVerificationFailedException = [
753
965
  [_e]: _c,
754
966
  [_hE]: 400,
755
967
  },
756
- [_T, _M],
968
+ [_Ty, _M],
757
969
  [0, 0],
758
970
  ];
759
971
  TypeRegistry.for(n0).registerError(CodeVerificationFailedException, __CodeVerificationFailedException);
760
972
  export var Concurrency = [3, n0, _C, 0, [_RCE], [1]];
973
+ export var ContextDetails = [
974
+ 3,
975
+ n0,
976
+ _CDo,
977
+ 0,
978
+ [_RCe, _R, _E],
979
+ [2, [() => OperationPayload, 0], [() => ErrorObject, 0]],
980
+ ];
981
+ export var ContextFailedDetails = [3, n0, _CFDo, 0, [_E], [[() => EventError, 0]]];
982
+ export var ContextOptions = [3, n0, _COo, 0, [_RCe], [2]];
983
+ export var ContextStartedDetails = [3, n0, _CSDo, 0, [], []];
984
+ export var ContextSucceededDetails = [3, n0, _CSDon, 0, [_R], [[() => EventResult, 0]]];
761
985
  export var Cors = [
762
986
  3,
763
987
  n0,
@@ -815,7 +1039,7 @@ export var CreateEventSourceMappingRequest = [
815
1039
  [
816
1040
  _ESA,
817
1041
  _FN,
818
- _E,
1042
+ _En,
819
1043
  _BSa,
820
1044
  _FCi,
821
1045
  _MBWIS,
@@ -878,18 +1102,18 @@ export var CreateFunctionRequest = [
878
1102
  0,
879
1103
  [
880
1104
  _FN,
881
- _R,
1105
+ _Ru,
882
1106
  _Ro,
883
1107
  _H,
884
1108
  _Cod,
885
1109
  _D,
886
- _Ti,
1110
+ _T,
887
1111
  _MS,
888
1112
  _Pu,
889
1113
  _VC,
890
1114
  _PT,
891
1115
  _DLC,
892
- _En,
1116
+ _Env,
893
1117
  _KMSKA,
894
1118
  _TC,
895
1119
  _Ta,
@@ -903,6 +1127,7 @@ export var CreateFunctionRequest = [
903
1127
  _LC,
904
1128
  _CPC,
905
1129
  _PTu,
1130
+ _DCu,
906
1131
  _TCe,
907
1132
  ],
908
1133
  [
@@ -932,6 +1157,7 @@ export var CreateFunctionRequest = [
932
1157
  () => LoggingConfig,
933
1158
  () => CapacityProviderConfig,
934
1159
  0,
1160
+ () => DurableConfig,
935
1161
  () => TenancyConfig,
936
1162
  ],
937
1163
  ];
@@ -959,7 +1185,7 @@ export var CreateFunctionUrlConfigResponse = [
959
1185
  n0,
960
1186
  _CFUCRr,
961
1187
  0,
962
- [_FU, _FA, _AT, _Co, _CT, _IM],
1188
+ [_FU, _FA, _AT, _Co, _CTr, _IM],
963
1189
  [0, 0, 0, () => Cors, 0, 0],
964
1190
  ];
965
1191
  export var DeadLetterConfig = [3, n0, _DLC, 0, [_TA], [0]];
@@ -1059,6 +1285,19 @@ export var DeleteProvisionedConcurrencyConfigRequest = [
1059
1285
  ];
1060
1286
  export var DestinationConfig = [3, n0, _DC, 0, [_OS, _OF], [() => OnSuccess, () => OnFailure]];
1061
1287
  export var DocumentDBEventSourceConfig = [3, n0, _DDBESC, 0, [_DN, _CN, _FD], [0, 0, 0]];
1288
+ export var DurableConfig = [3, n0, _DCu, 0, [_RPID, _ETx], [1, 1]];
1289
+ export var DurableExecutionAlreadyStartedException = [
1290
+ -3,
1291
+ n0,
1292
+ _DEASE,
1293
+ {
1294
+ [_e]: _c,
1295
+ [_hE]: 409,
1296
+ },
1297
+ [_Ty, _M],
1298
+ [0, 0],
1299
+ ];
1300
+ TypeRegistry.for(n0).registerError(DurableExecutionAlreadyStartedException, __DurableExecutionAlreadyStartedException);
1062
1301
  export var EC2AccessDeniedException = [
1063
1302
  -3,
1064
1303
  n0,
@@ -1067,7 +1306,7 @@ export var EC2AccessDeniedException = [
1067
1306
  [_e]: _se,
1068
1307
  [_hE]: 502,
1069
1308
  },
1070
- [_T, _M],
1309
+ [_Ty, _M],
1071
1310
  [0, 0],
1072
1311
  ];
1073
1312
  TypeRegistry.for(n0).registerError(EC2AccessDeniedException, __EC2AccessDeniedException);
@@ -1079,7 +1318,7 @@ export var EC2ThrottledException = [
1079
1318
  [_e]: _se,
1080
1319
  [_hE]: 502,
1081
1320
  },
1082
- [_T, _M],
1321
+ [_Ty, _M],
1083
1322
  [0, 0],
1084
1323
  ];
1085
1324
  TypeRegistry.for(n0).registerError(EC2ThrottledException, __EC2ThrottledException);
@@ -1091,7 +1330,7 @@ export var EC2UnexpectedException = [
1091
1330
  [_e]: _se,
1092
1331
  [_hE]: 502,
1093
1332
  },
1094
- [_T, _M, _ECEC],
1333
+ [_Ty, _M, _ECEC],
1095
1334
  [0, 0, 0],
1096
1335
  ];
1097
1336
  TypeRegistry.for(n0).registerError(EC2UnexpectedException, __EC2UnexpectedException);
@@ -1103,7 +1342,7 @@ export var EFSIOException = [
1103
1342
  [_e]: _c,
1104
1343
  [_hE]: 410,
1105
1344
  },
1106
- [_T, _M],
1345
+ [_Ty, _M],
1107
1346
  [0, 0],
1108
1347
  ];
1109
1348
  TypeRegistry.for(n0).registerError(EFSIOException, __EFSIOException);
@@ -1115,7 +1354,7 @@ export var EFSMountConnectivityException = [
1115
1354
  [_e]: _c,
1116
1355
  [_hE]: 408,
1117
1356
  },
1118
- [_T, _M],
1357
+ [_Ty, _M],
1119
1358
  [0, 0],
1120
1359
  ];
1121
1360
  TypeRegistry.for(n0).registerError(EFSMountConnectivityException, __EFSMountConnectivityException);
@@ -1127,7 +1366,7 @@ export var EFSMountFailureException = [
1127
1366
  [_e]: _c,
1128
1367
  [_hE]: 403,
1129
1368
  },
1130
- [_T, _M],
1369
+ [_Ty, _M],
1131
1370
  [0, 0],
1132
1371
  ];
1133
1372
  TypeRegistry.for(n0).registerError(EFSMountFailureException, __EFSMountFailureException);
@@ -1139,7 +1378,7 @@ export var EFSMountTimeoutException = [
1139
1378
  [_e]: _c,
1140
1379
  [_hE]: 408,
1141
1380
  },
1142
- [_T, _M],
1381
+ [_Ty, _M],
1143
1382
  [0, 0],
1144
1383
  ];
1145
1384
  TypeRegistry.for(n0).registerError(EFSMountTimeoutException, __EFSMountTimeoutException);
@@ -1151,24 +1390,112 @@ export var ENILimitReachedException = [
1151
1390
  [_e]: _se,
1152
1391
  [_hE]: 502,
1153
1392
  },
1154
- [_T, _M],
1393
+ [_Ty, _M],
1155
1394
  [0, 0],
1156
1395
  ];
1157
1396
  TypeRegistry.for(n0).registerError(ENILimitReachedException, __ENILimitReachedException);
1158
- export var Environment = [3, n0, _En, 0, [_V], [[() => EnvironmentVariables, 0]]];
1397
+ export var Environment = [3, n0, _Env, 0, [_V], [[() => EnvironmentVariables, 0]]];
1159
1398
  export var EnvironmentError = [3, n0, _EE, 0, [_EC, _M], [0, [() => SensitiveString, 0]]];
1160
1399
  export var EnvironmentResponse = [
1161
1400
  3,
1162
1401
  n0,
1163
1402
  _ER,
1164
1403
  0,
1165
- [_V, _Er],
1404
+ [_V, _E],
1166
1405
  [
1167
1406
  [() => EnvironmentVariables, 0],
1168
1407
  [() => EnvironmentError, 0],
1169
1408
  ],
1170
1409
  ];
1171
1410
  export var EphemeralStorage = [3, n0, _ES, 0, [_Si], [1]];
1411
+ export var ErrorObject = [
1412
+ 3,
1413
+ n0,
1414
+ _EO,
1415
+ 0,
1416
+ [_EM, _ET, _ED, _ST],
1417
+ [
1418
+ [() => ErrorMessage, 0],
1419
+ [() => ErrorType, 0],
1420
+ [() => ErrorData, 0],
1421
+ [() => StackTraceEntries, 0],
1422
+ ],
1423
+ ];
1424
+ export var Event = [
1425
+ 3,
1426
+ n0,
1427
+ _Ev,
1428
+ 0,
1429
+ [
1430
+ _ETv,
1431
+ _STu,
1432
+ _EI,
1433
+ _Id,
1434
+ _N,
1435
+ _ETve,
1436
+ _PI,
1437
+ _ESD,
1438
+ _ESDx,
1439
+ _EFD,
1440
+ _ETOD,
1441
+ _ESDxe,
1442
+ _CSDo,
1443
+ _CSDon,
1444
+ _CFDo,
1445
+ _WSD,
1446
+ _WSDa,
1447
+ _WCD,
1448
+ _SSD,
1449
+ _SSDt,
1450
+ _SFD,
1451
+ _CISD,
1452
+ _CISDha,
1453
+ _CIFD,
1454
+ _CITOD,
1455
+ _CISDh,
1456
+ _CSD,
1457
+ _CSDa,
1458
+ _CFD,
1459
+ _CTOD,
1460
+ _ICD,
1461
+ ],
1462
+ [
1463
+ 0,
1464
+ 0,
1465
+ 1,
1466
+ 0,
1467
+ 0,
1468
+ 4,
1469
+ 0,
1470
+ [() => ExecutionStartedDetails, 0],
1471
+ [() => ExecutionSucceededDetails, 0],
1472
+ [() => ExecutionFailedDetails, 0],
1473
+ [() => ExecutionTimedOutDetails, 0],
1474
+ [() => ExecutionStoppedDetails, 0],
1475
+ () => ContextStartedDetails,
1476
+ [() => ContextSucceededDetails, 0],
1477
+ [() => ContextFailedDetails, 0],
1478
+ () => WaitStartedDetails,
1479
+ () => WaitSucceededDetails,
1480
+ [() => WaitCancelledDetails, 0],
1481
+ () => StepStartedDetails,
1482
+ [() => StepSucceededDetails, 0],
1483
+ [() => StepFailedDetails, 0],
1484
+ [() => ChainedInvokeStartedDetails, 0],
1485
+ [() => ChainedInvokeSucceededDetails, 0],
1486
+ [() => ChainedInvokeFailedDetails, 0],
1487
+ [() => ChainedInvokeTimedOutDetails, 0],
1488
+ [() => ChainedInvokeStoppedDetails, 0],
1489
+ () => CallbackStartedDetails,
1490
+ [() => CallbackSucceededDetails, 0],
1491
+ [() => CallbackFailedDetails, 0],
1492
+ [() => CallbackTimedOutDetails, 0],
1493
+ [() => InvocationCompletedDetails, 0],
1494
+ ],
1495
+ ];
1496
+ export var EventError = [3, n0, _EEv, 0, [_Pa, _Tr], [[() => ErrorObject, 0], 2]];
1497
+ export var EventInput = [3, n0, _EIv, 0, [_Pa, _Tr], [[() => InputPayload, 0], 2]];
1498
+ export var EventResult = [3, n0, _ERv, 0, [_Pa, _Tr], [[() => OperationPayload, 0], 2]];
1172
1499
  export var EventSourceMappingConfiguration = [
1173
1500
  3,
1174
1501
  n0,
@@ -1244,8 +1571,15 @@ export var EventSourceMappingConfiguration = [
1244
1571
  ],
1245
1572
  ];
1246
1573
  export var EventSourceMappingMetricsConfig = [3, n0, _ESMMC, 0, [_Me], [64 | 0]];
1574
+ export var Execution = [3, n0, _Ex, 0, [_DEA, _DEN, _FA, _Sta, _STt, _ETn], [0, 0, 0, 0, 4, 4]];
1575
+ export var ExecutionDetails = [3, n0, _EDx, 0, [_IP], [[() => InputPayload, 0]]];
1576
+ export var ExecutionFailedDetails = [3, n0, _EFD, 0, [_E], [[() => EventError, 0]]];
1577
+ export var ExecutionStartedDetails = [3, n0, _ESD, 0, [_I, _ETx], [[() => EventInput, 0], 1]];
1578
+ export var ExecutionStoppedDetails = [3, n0, _ESDxe, 0, [_E], [[() => EventError, 0]]];
1579
+ export var ExecutionSucceededDetails = [3, n0, _ESDx, 0, [_R], [[() => EventResult, 0]]];
1580
+ export var ExecutionTimedOutDetails = [3, n0, _ETOD, 0, [_E], [[() => EventError, 0]]];
1247
1581
  export var FileSystemConfig = [3, n0, _FSCi, 0, [_Arn, _LMP], [0, 0]];
1248
- export var Filter = [3, n0, _F, 0, [_Pa], [0]];
1582
+ export var Filter = [3, n0, _F, 0, [_Pat], [0]];
1249
1583
  export var FilterCriteria = [3, n0, _FCi, 0, [_Fi], [() => FilterList]];
1250
1584
  export var FilterCriteriaError = [3, n0, _FCE, 0, [_EC, _M], [0, 0]];
1251
1585
  export var FunctionCode = [
@@ -1272,19 +1606,19 @@ export var FunctionConfiguration = [
1272
1606
  [
1273
1607
  _FN,
1274
1608
  _FA,
1275
- _R,
1609
+ _Ru,
1276
1610
  _Ro,
1277
1611
  _H,
1278
1612
  _CS,
1279
1613
  _D,
1280
- _Ti,
1614
+ _T,
1281
1615
  _MS,
1282
1616
  _LM,
1283
1617
  _CSo,
1284
1618
  _Ve,
1285
1619
  _VC,
1286
1620
  _DLC,
1287
- _En,
1621
+ _Env,
1288
1622
  _KMSKA,
1289
1623
  _TC,
1290
1624
  _MAa,
@@ -1308,6 +1642,7 @@ export var FunctionConfiguration = [
1308
1642
  _LC,
1309
1643
  _CPC,
1310
1644
  _CSon,
1645
+ _DCu,
1311
1646
  _TCe,
1312
1647
  ],
1313
1648
  [
@@ -1349,6 +1684,7 @@ export var FunctionConfiguration = [
1349
1684
  () => LoggingConfig,
1350
1685
  () => CapacityProviderConfig,
1351
1686
  0,
1687
+ () => DurableConfig,
1352
1688
  () => TenancyConfig,
1353
1689
  ],
1354
1690
  ];
@@ -1366,7 +1702,7 @@ export var FunctionUrlConfig = [
1366
1702
  n0,
1367
1703
  _FUC,
1368
1704
  0,
1369
- [_FU, _FA, _CT, _LMT, _Co, _AT, _IM],
1705
+ [_FU, _FA, _CTr, _LMT, _Co, _AT, _IM],
1370
1706
  [0, 0, 0, 0, () => Cors, 0, 0],
1371
1707
  ];
1372
1708
  export var FunctionVersionsByCapacityProviderListItem = [3, n0, _FVBCPLI, 0, [_FA, _St], [0, 0]];
@@ -1378,7 +1714,7 @@ export var FunctionVersionsPerCapacityProviderLimitExceededException = [
1378
1714
  [_e]: _c,
1379
1715
  [_hE]: 400,
1380
1716
  },
1381
- [_T, _m],
1717
+ [_Ty, _m],
1382
1718
  [0, 0],
1383
1719
  ];
1384
1720
  TypeRegistry.for(n0).registerError(FunctionVersionsPerCapacityProviderLimitExceededException, __FunctionVersionsPerCapacityProviderLimitExceededException);
@@ -1406,6 +1742,93 @@ export var GetCapacityProviderRequest = [3, n0, _GCPR, 0, [_CPN], [[0, 1]]];
1406
1742
  export var GetCapacityProviderResponse = [3, n0, _GCPRe, 0, [_CP], [() => CapacityProvider]];
1407
1743
  export var GetCodeSigningConfigRequest = [3, n0, _GCSCR, 0, [_CSCA], [[0, 1]]];
1408
1744
  export var GetCodeSigningConfigResponse = [3, n0, _GCSCRe, 0, [_CSC], [() => CodeSigningConfig]];
1745
+ export var GetDurableExecutionHistoryRequest = [
1746
+ 3,
1747
+ n0,
1748
+ _GDEHR,
1749
+ 0,
1750
+ [_DEA, _IED, _MI, _Ma, _RO],
1751
+ [
1752
+ [0, 1],
1753
+ [
1754
+ 2,
1755
+ {
1756
+ [_hQ]: _IED,
1757
+ },
1758
+ ],
1759
+ [
1760
+ 1,
1761
+ {
1762
+ [_hQ]: _MI,
1763
+ },
1764
+ ],
1765
+ [
1766
+ 0,
1767
+ {
1768
+ [_hQ]: _Ma,
1769
+ },
1770
+ ],
1771
+ [
1772
+ 2,
1773
+ {
1774
+ [_hQ]: _RO,
1775
+ },
1776
+ ],
1777
+ ],
1778
+ ];
1779
+ export var GetDurableExecutionHistoryResponse = [
1780
+ 3,
1781
+ n0,
1782
+ _GDEHRe,
1783
+ 0,
1784
+ [_Eve, _NM],
1785
+ [[() => Events, 0], 0],
1786
+ ];
1787
+ export var GetDurableExecutionRequest = [3, n0, _GDER, 0, [_DEA], [[0, 1]]];
1788
+ export var GetDurableExecutionResponse = [
1789
+ 3,
1790
+ n0,
1791
+ _GDERe,
1792
+ 0,
1793
+ [_DEA, _DEN, _FA, _IP, _R, _E, _STt, _Sta, _ETn, _Ve, _TH],
1794
+ [0, 0, 0, [() => InputPayload, 0], [() => OutputPayload, 0], [() => ErrorObject, 0], 4, 0, 4, 0, () => TraceHeader],
1795
+ ];
1796
+ export var GetDurableExecutionStateRequest = [
1797
+ 3,
1798
+ n0,
1799
+ _GDESR,
1800
+ 0,
1801
+ [_DEA, _CT, _Ma, _MI],
1802
+ [
1803
+ [0, 1],
1804
+ [
1805
+ 0,
1806
+ {
1807
+ [_hQ]: _CT,
1808
+ },
1809
+ ],
1810
+ [
1811
+ 0,
1812
+ {
1813
+ [_hQ]: _Ma,
1814
+ },
1815
+ ],
1816
+ [
1817
+ 1,
1818
+ {
1819
+ [_hQ]: _MI,
1820
+ },
1821
+ ],
1822
+ ],
1823
+ ];
1824
+ export var GetDurableExecutionStateResponse = [
1825
+ 3,
1826
+ n0,
1827
+ _GDESRe,
1828
+ 0,
1829
+ [_O, _NM],
1830
+ [[() => Operations, 0], 0],
1831
+ ];
1409
1832
  export var GetEventSourceMappingRequest = [3, n0, _GESMR, 0, [_UUID], [[0, 1]]];
1410
1833
  export var GetFunctionCodeSigningConfigRequest = [3, n0, _GFCSCR, 0, [_FN], [[0, 1]]];
1411
1834
  export var GetFunctionCodeSigningConfigResponse = [3, n0, _GFCSCRe, 0, [_CSCA, _FN], [0, 0]];
@@ -1514,7 +1937,7 @@ export var GetFunctionUrlConfigResponse = [
1514
1937
  n0,
1515
1938
  _GFUCRe,
1516
1939
  0,
1517
- [_FU, _FA, _AT, _Co, _CT, _LMT, _IM],
1940
+ [_FU, _FA, _AT, _Co, _CTr, _LMT, _IM],
1518
1941
  [0, 0, 0, () => Cors, 0, 0, 0],
1519
1942
  ];
1520
1943
  export var GetLayerVersionByArnRequest = [
@@ -1560,7 +1983,7 @@ export var GetLayerVersionResponse = [
1560
1983
  n0,
1561
1984
  _GLVRe,
1562
1985
  0,
1563
- [_Cont, _LA, _LVA, _D, _CD, _Ve, _CR, _LI, _CA],
1986
+ [_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI, _CA],
1564
1987
  [() => LayerVersionContentOutput, 0, 0, 0, 0, 1, 64 | 0, 0, 64 | 0],
1565
1988
  ];
1566
1989
  export var GetPolicyRequest = [
@@ -1635,7 +2058,7 @@ export var ImageConfigResponse = [
1635
2058
  n0,
1636
2059
  _ICR,
1637
2060
  0,
1638
- [_IC, _Er],
2061
+ [_IC, _E],
1639
2062
  [() => ImageConfig, [() => ImageConfigError, 0]],
1640
2063
  ];
1641
2064
  export var InstanceRequirements = [3, n0, _IR, 0, [_Ar, _AIT, _EIT], [64 | 0, 64 | 0, 64 | 0]];
@@ -1647,7 +2070,7 @@ export var InvalidCodeSignatureException = [
1647
2070
  [_e]: _c,
1648
2071
  [_hE]: 400,
1649
2072
  },
1650
- [_T, _M],
2073
+ [_Ty, _M],
1651
2074
  [0, 0],
1652
2075
  ];
1653
2076
  TypeRegistry.for(n0).registerError(InvalidCodeSignatureException, __InvalidCodeSignatureException);
@@ -1659,7 +2082,7 @@ export var InvalidParameterValueException = [
1659
2082
  [_e]: _c,
1660
2083
  [_hE]: 400,
1661
2084
  },
1662
- [_T, _m],
2085
+ [_Ty, _m],
1663
2086
  [0, 0],
1664
2087
  ];
1665
2088
  TypeRegistry.for(n0).registerError(InvalidParameterValueException, __InvalidParameterValueException);
@@ -1671,7 +2094,7 @@ export var InvalidRequestContentException = [
1671
2094
  [_e]: _c,
1672
2095
  [_hE]: 400,
1673
2096
  },
1674
- [_T, _m],
2097
+ [_Ty, _m],
1675
2098
  [0, 0],
1676
2099
  ];
1677
2100
  TypeRegistry.for(n0).registerError(InvalidRequestContentException, __InvalidRequestContentException);
@@ -1683,7 +2106,7 @@ export var InvalidRuntimeException = [
1683
2106
  [_e]: _se,
1684
2107
  [_hE]: 502,
1685
2108
  },
1686
- [_T, _M],
2109
+ [_Ty, _M],
1687
2110
  [0, 0],
1688
2111
  ];
1689
2112
  TypeRegistry.for(n0).registerError(InvalidRuntimeException, __InvalidRuntimeException);
@@ -1695,7 +2118,7 @@ export var InvalidSecurityGroupIDException = [
1695
2118
  [_e]: _se,
1696
2119
  [_hE]: 502,
1697
2120
  },
1698
- [_T, _M],
2121
+ [_Ty, _M],
1699
2122
  [0, 0],
1700
2123
  ];
1701
2124
  TypeRegistry.for(n0).registerError(InvalidSecurityGroupIDException, __InvalidSecurityGroupIDException);
@@ -1707,7 +2130,7 @@ export var InvalidSubnetIDException = [
1707
2130
  [_e]: _se,
1708
2131
  [_hE]: 502,
1709
2132
  },
1710
- [_T, _M],
2133
+ [_Ty, _M],
1711
2134
  [0, 0],
1712
2135
  ];
1713
2136
  TypeRegistry.for(n0).registerError(InvalidSubnetIDException, __InvalidSubnetIDException);
@@ -1719,16 +2142,24 @@ export var InvalidZipFileException = [
1719
2142
  [_e]: _se,
1720
2143
  [_hE]: 502,
1721
2144
  },
1722
- [_T, _M],
2145
+ [_Ty, _M],
1723
2146
  [0, 0],
1724
2147
  ];
1725
2148
  TypeRegistry.for(n0).registerError(InvalidZipFileException, __InvalidZipFileException);
2149
+ export var InvocationCompletedDetails = [
2150
+ 3,
2151
+ n0,
2152
+ _ICD,
2153
+ 0,
2154
+ [_STt, _ETn, _RIe, _E],
2155
+ [4, 4, 0, [() => EventError, 0]],
2156
+ ];
1726
2157
  export var InvocationRequest = [
1727
2158
  3,
1728
2159
  n0,
1729
2160
  _IRn,
1730
2161
  0,
1731
- [_FN, _IT, _LT, _CC, _Pay, _Q, _TI],
2162
+ [_FN, _IT, _LT, _CC, _DEN, _Pa, _Q, _TI],
1732
2163
  [
1733
2164
  [0, 1],
1734
2165
  [
@@ -1749,6 +2180,12 @@ export var InvocationRequest = [
1749
2180
  [_hH]: _XACC,
1750
2181
  },
1751
2182
  ],
2183
+ [
2184
+ 0,
2185
+ {
2186
+ [_hH]: _XADEN,
2187
+ },
2188
+ ],
1752
2189
  [() => _Blob, 16],
1753
2190
  [
1754
2191
  0,
@@ -1769,7 +2206,7 @@ export var InvocationResponse = [
1769
2206
  n0,
1770
2207
  _IRnv,
1771
2208
  0,
1772
- [_SCt, _FE, _LR, _Pay, _EV],
2209
+ [_SCt, _FE, _LR, _Pa, _EV, _DEA],
1773
2210
  [
1774
2211
  [1, 32],
1775
2212
  [
@@ -1791,6 +2228,12 @@ export var InvocationResponse = [
1791
2228
  [_hH]: _XAEV,
1792
2229
  },
1793
2230
  ],
2231
+ [
2232
+ 0,
2233
+ {
2234
+ [_hH]: _XADEA,
2235
+ },
2236
+ ],
1794
2237
  ],
1795
2238
  ];
1796
2239
  export var InvokeAsyncRequest = [
@@ -1810,7 +2253,7 @@ export var InvokeResponseStreamUpdate = [
1810
2253
  n0,
1811
2254
  _IRSU,
1812
2255
  0,
1813
- [_Pay],
2256
+ [_Pa],
1814
2257
  [
1815
2258
  [
1816
2259
  () => _Blob,
@@ -1825,7 +2268,7 @@ export var InvokeWithResponseStreamCompleteEvent = [
1825
2268
  n0,
1826
2269
  _IWRSCE,
1827
2270
  0,
1828
- [_EC, _ED, _LR],
2271
+ [_EC, _EDr, _LR],
1829
2272
  [0, 0, 0],
1830
2273
  ];
1831
2274
  export var InvokeWithResponseStreamRequest = [
@@ -1833,7 +2276,7 @@ export var InvokeWithResponseStreamRequest = [
1833
2276
  n0,
1834
2277
  _IWRSR,
1835
2278
  0,
1836
- [_FN, _IT, _LT, _CC, _Q, _Pay, _TI],
2279
+ [_FN, _IT, _LT, _CC, _Q, _Pa, _TI],
1837
2280
  [
1838
2281
  [0, 1],
1839
2282
  [
@@ -1892,7 +2335,7 @@ export var InvokeWithResponseStreamResponse = [
1892
2335
  ],
1893
2336
  ],
1894
2337
  ];
1895
- export var KafkaSchemaRegistryAccessConfig = [3, n0, _KSRAC, 0, [_T, _URI], [0, 0]];
2338
+ export var KafkaSchemaRegistryAccessConfig = [3, n0, _KSRAC, 0, [_Ty, _URI], [0, 0]];
1896
2339
  export var KafkaSchemaRegistryConfig = [
1897
2340
  3,
1898
2341
  n0,
@@ -1910,7 +2353,7 @@ export var KMSAccessDeniedException = [
1910
2353
  [_e]: _se,
1911
2354
  [_hE]: 502,
1912
2355
  },
1913
- [_T, _M],
2356
+ [_Ty, _M],
1914
2357
  [0, 0],
1915
2358
  ];
1916
2359
  TypeRegistry.for(n0).registerError(KMSAccessDeniedException, __KMSAccessDeniedException);
@@ -1922,7 +2365,7 @@ export var KMSDisabledException = [
1922
2365
  [_e]: _se,
1923
2366
  [_hE]: 502,
1924
2367
  },
1925
- [_T, _M],
2368
+ [_Ty, _M],
1926
2369
  [0, 0],
1927
2370
  ];
1928
2371
  TypeRegistry.for(n0).registerError(KMSDisabledException, __KMSDisabledException);
@@ -1934,7 +2377,7 @@ export var KMSInvalidStateException = [
1934
2377
  [_e]: _se,
1935
2378
  [_hE]: 502,
1936
2379
  },
1937
- [_T, _M],
2380
+ [_Ty, _M],
1938
2381
  [0, 0],
1939
2382
  ];
1940
2383
  TypeRegistry.for(n0).registerError(KMSInvalidStateException, __KMSInvalidStateException);
@@ -1946,7 +2389,7 @@ export var KMSNotFoundException = [
1946
2389
  [_e]: _se,
1947
2390
  [_hE]: 502,
1948
2391
  },
1949
- [_T, _M],
2392
+ [_Ty, _M],
1950
2393
  [0, 0],
1951
2394
  ];
1952
2395
  TypeRegistry.for(n0).registerError(KMSNotFoundException, __KMSNotFoundException);
@@ -1988,7 +2431,7 @@ export var LayerVersionsListItem = [
1988
2431
  n0,
1989
2432
  _LVLI,
1990
2433
  0,
1991
- [_LVA, _Ve, _D, _CD, _CR, _LI, _CA],
2434
+ [_LVA, _Ve, _D, _CDr, _CR, _LI, _CA],
1992
2435
  [0, 1, 0, 0, 64 | 0, 0, 64 | 0],
1993
2436
  ];
1994
2437
  export var ListAliasesRequest = [
@@ -2084,6 +2527,72 @@ export var ListCodeSigningConfigsResponse = [
2084
2527
  [_NM, _CSCo],
2085
2528
  [0, () => CodeSigningConfigList],
2086
2529
  ];
2530
+ export var ListDurableExecutionsByFunctionRequest = [
2531
+ 3,
2532
+ n0,
2533
+ _LDEBFR,
2534
+ 0,
2535
+ [_FN, _Q, _DEN, _Stat, _SAt, _SBt, _RO, _Ma, _MI],
2536
+ [
2537
+ [0, 1],
2538
+ [
2539
+ 0,
2540
+ {
2541
+ [_hQ]: _Q,
2542
+ },
2543
+ ],
2544
+ [
2545
+ 0,
2546
+ {
2547
+ [_hQ]: _DEN,
2548
+ },
2549
+ ],
2550
+ [
2551
+ 64 | 0,
2552
+ {
2553
+ [_hQ]: _Stat,
2554
+ },
2555
+ ],
2556
+ [
2557
+ 4,
2558
+ {
2559
+ [_hQ]: _SAt,
2560
+ },
2561
+ ],
2562
+ [
2563
+ 4,
2564
+ {
2565
+ [_hQ]: _SBt,
2566
+ },
2567
+ ],
2568
+ [
2569
+ 2,
2570
+ {
2571
+ [_hQ]: _RO,
2572
+ },
2573
+ ],
2574
+ [
2575
+ 0,
2576
+ {
2577
+ [_hQ]: _Ma,
2578
+ },
2579
+ ],
2580
+ [
2581
+ 1,
2582
+ {
2583
+ [_hQ]: _MI,
2584
+ },
2585
+ ],
2586
+ ],
2587
+ ];
2588
+ export var ListDurableExecutionsByFunctionResponse = [
2589
+ 3,
2590
+ n0,
2591
+ _LDEBFRi,
2592
+ 0,
2593
+ [_DE, _NM],
2594
+ [() => DurableExecutions, 0],
2595
+ ];
2087
2596
  export var ListEventSourceMappingsRequest = [
2088
2597
  3,
2089
2598
  n0,
@@ -2426,12 +2935,57 @@ export var NoPublishedVersionException = [
2426
2935
  [_e]: _c,
2427
2936
  [_hE]: 400,
2428
2937
  },
2429
- [_T, _M],
2938
+ [_Ty, _M],
2430
2939
  [0, 0],
2431
2940
  ];
2432
2941
  TypeRegistry.for(n0).registerError(NoPublishedVersionException, __NoPublishedVersionException);
2433
2942
  export var OnFailure = [3, n0, _OF, 0, [_De], [0]];
2434
2943
  export var OnSuccess = [3, n0, _OS, 0, [_De], [0]];
2944
+ export var Operation = [
2945
+ 3,
2946
+ n0,
2947
+ _Op,
2948
+ 0,
2949
+ [_Id, _PI, _N, _Ty, _STu, _STt, _ETn, _Sta, _EDx, _CDo, _SD, _WDa, _CD, _CID],
2950
+ [
2951
+ 0,
2952
+ 0,
2953
+ 0,
2954
+ 0,
2955
+ 0,
2956
+ 4,
2957
+ 4,
2958
+ 0,
2959
+ [() => ExecutionDetails, 0],
2960
+ [() => ContextDetails, 0],
2961
+ [() => StepDetails, 0],
2962
+ () => WaitDetails,
2963
+ [() => CallbackDetails, 0],
2964
+ [() => ChainedInvokeDetails, 0],
2965
+ ],
2966
+ ];
2967
+ export var OperationUpdate = [
2968
+ 3,
2969
+ n0,
2970
+ _OU,
2971
+ 0,
2972
+ [_Id, _PI, _N, _Ty, _STu, _A, _Pa, _E, _COo, _SO, _WO, _CO, _CIO],
2973
+ [
2974
+ 0,
2975
+ 0,
2976
+ 0,
2977
+ 0,
2978
+ 0,
2979
+ 0,
2980
+ [() => OperationPayload, 0],
2981
+ [() => ErrorObject, 0],
2982
+ () => ContextOptions,
2983
+ () => StepOptions,
2984
+ () => WaitOptions,
2985
+ () => CallbackOptions,
2986
+ () => ChainedInvokeOptions,
2987
+ ],
2988
+ ];
2435
2989
  export var PolicyLengthExceededException = [
2436
2990
  -3,
2437
2991
  n0,
@@ -2440,7 +2994,7 @@ export var PolicyLengthExceededException = [
2440
2994
  [_e]: _c,
2441
2995
  [_hE]: 400,
2442
2996
  },
2443
- [_T, _m],
2997
+ [_Ty, _m],
2444
2998
  [0, 0],
2445
2999
  ];
2446
3000
  TypeRegistry.for(n0).registerError(PolicyLengthExceededException, __PolicyLengthExceededException);
@@ -2452,7 +3006,7 @@ export var PreconditionFailedException = [
2452
3006
  [_e]: _c,
2453
3007
  [_hE]: 412,
2454
3008
  },
2455
- [_T, _m],
3009
+ [_Ty, _m],
2456
3010
  [0, 0],
2457
3011
  ];
2458
3012
  TypeRegistry.for(n0).registerError(PreconditionFailedException, __PreconditionFailedException);
@@ -2472,7 +3026,7 @@ export var ProvisionedConcurrencyConfigNotFoundException = [
2472
3026
  [_e]: _c,
2473
3027
  [_hE]: 404,
2474
3028
  },
2475
- [_T, _m],
3029
+ [_Ty, _m],
2476
3030
  [0, 0],
2477
3031
  ];
2478
3032
  TypeRegistry.for(n0).registerError(ProvisionedConcurrencyConfigNotFoundException, __ProvisionedConcurrencyConfigNotFoundException);
@@ -2490,7 +3044,7 @@ export var PublishLayerVersionResponse = [
2490
3044
  n0,
2491
3045
  _PLVRu,
2492
3046
  0,
2493
- [_Cont, _LA, _LVA, _D, _CD, _Ve, _CR, _LI, _CA],
3047
+ [_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI, _CA],
2494
3048
  [() => LayerVersionContentOutput, 0, 0, 0, 0, 1, 64 | 0, 0, 64 | 0],
2495
3049
  ];
2496
3050
  export var PublishVersionRequest = [
@@ -2602,7 +3156,7 @@ export var RecursiveInvocationException = [
2602
3156
  [_e]: _c,
2603
3157
  [_hE]: 400,
2604
3158
  },
2605
- [_T, _M],
3159
+ [_Ty, _M],
2606
3160
  [0, 0],
2607
3161
  ];
2608
3162
  TypeRegistry.for(n0).registerError(RecursiveInvocationException, __RecursiveInvocationException);
@@ -2655,7 +3209,7 @@ export var RequestTooLargeException = [
2655
3209
  [_e]: _c,
2656
3210
  [_hE]: 413,
2657
3211
  },
2658
- [_T, _m],
3212
+ [_Ty, _m],
2659
3213
  [0, 0],
2660
3214
  ];
2661
3215
  TypeRegistry.for(n0).registerError(RequestTooLargeException, __RequestTooLargeException);
@@ -2667,7 +3221,7 @@ export var ResourceConflictException = [
2667
3221
  [_e]: _c,
2668
3222
  [_hE]: 409,
2669
3223
  },
2670
- [_T, _m],
3224
+ [_Ty, _m],
2671
3225
  [0, 0],
2672
3226
  ];
2673
3227
  TypeRegistry.for(n0).registerError(ResourceConflictException, __ResourceConflictException);
@@ -2679,7 +3233,7 @@ export var ResourceInUseException = [
2679
3233
  [_e]: _c,
2680
3234
  [_hE]: 400,
2681
3235
  },
2682
- [_T, _M],
3236
+ [_Ty, _M],
2683
3237
  [0, 0],
2684
3238
  ];
2685
3239
  TypeRegistry.for(n0).registerError(ResourceInUseException, __ResourceInUseException);
@@ -2691,7 +3245,7 @@ export var ResourceNotFoundException = [
2691
3245
  [_e]: _c,
2692
3246
  [_hE]: 404,
2693
3247
  },
2694
- [_T, _M],
3248
+ [_Ty, _M],
2695
3249
  [0, 0],
2696
3250
  ];
2697
3251
  TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
@@ -2703,16 +3257,17 @@ export var ResourceNotReadyException = [
2703
3257
  [_e]: _se,
2704
3258
  [_hE]: 502,
2705
3259
  },
2706
- [_T, _m],
3260
+ [_Ty, _m],
2707
3261
  [0, 0],
2708
3262
  ];
2709
3263
  TypeRegistry.for(n0).registerError(ResourceNotReadyException, __ResourceNotReadyException);
3264
+ export var RetryDetails = [3, n0, _RD, 0, [_CAu, _NADS], [1, 1]];
2710
3265
  export var RuntimeVersionConfig = [
2711
3266
  3,
2712
3267
  n0,
2713
3268
  _RVC,
2714
3269
  0,
2715
- [_RVA, _Er],
3270
+ [_RVA, _E],
2716
3271
  [0, [() => RuntimeVersionError, 0]],
2717
3272
  ];
2718
3273
  export var RuntimeVersionError = [3, n0, _RVE, 0, [_EC, _M], [0, [() => SensitiveString, 0]]];
@@ -2726,6 +3281,32 @@ export var SelfManagedKafkaEventSourceConfig = [
2726
3281
  [_CGI, _SRC],
2727
3282
  [0, () => KafkaSchemaRegistryConfig],
2728
3283
  ];
3284
+ export var SendDurableExecutionCallbackFailureRequest = [
3285
+ 3,
3286
+ n0,
3287
+ _SDECFR,
3288
+ 0,
3289
+ [_CI, _E],
3290
+ [
3291
+ [0, 1],
3292
+ [() => ErrorObject, 16],
3293
+ ],
3294
+ ];
3295
+ export var SendDurableExecutionCallbackFailureResponse = [3, n0, _SDECFRe, 0, [], []];
3296
+ export var SendDurableExecutionCallbackHeartbeatRequest = [3, n0, _SDECHR, 0, [_CI], [[0, 1]]];
3297
+ export var SendDurableExecutionCallbackHeartbeatResponse = [3, n0, _SDECHRe, 0, [], []];
3298
+ export var SendDurableExecutionCallbackSuccessRequest = [
3299
+ 3,
3300
+ n0,
3301
+ _SDECSR,
3302
+ 0,
3303
+ [_CI, _R],
3304
+ [
3305
+ [0, 1],
3306
+ [() => BinaryOperationPayload, 16],
3307
+ ],
3308
+ ];
3309
+ export var SendDurableExecutionCallbackSuccessResponse = [3, n0, _SDECSRe, 0, [], []];
2729
3310
  export var SerializedRequestEntityTooLargeException = [
2730
3311
  -3,
2731
3312
  n0,
@@ -2734,7 +3315,7 @@ export var SerializedRequestEntityTooLargeException = [
2734
3315
  [_e]: _c,
2735
3316
  [_hE]: 413,
2736
3317
  },
2737
- [_T, _m],
3318
+ [_Ty, _m],
2738
3319
  [0, 0],
2739
3320
  ];
2740
3321
  TypeRegistry.for(n0).registerError(SerializedRequestEntityTooLargeException, __SerializedRequestEntityTooLargeException);
@@ -2746,7 +3327,7 @@ export var ServiceException = [
2746
3327
  [_e]: _se,
2747
3328
  [_hE]: 500,
2748
3329
  },
2749
- [_T, _M],
3330
+ [_Ty, _M],
2750
3331
  [0, 0],
2751
3332
  ];
2752
3333
  TypeRegistry.for(n0).registerError(ServiceException, __ServiceException);
@@ -2759,7 +3340,7 @@ export var SnapStartException = [
2759
3340
  [_e]: _c,
2760
3341
  [_hE]: 400,
2761
3342
  },
2762
- [_T, _M],
3343
+ [_Ty, _M],
2763
3344
  [0, 0],
2764
3345
  ];
2765
3346
  TypeRegistry.for(n0).registerError(SnapStartException, __SnapStartException);
@@ -2771,7 +3352,7 @@ export var SnapStartNotReadyException = [
2771
3352
  [_e]: _c,
2772
3353
  [_hE]: 409,
2773
3354
  },
2774
- [_T, _M],
3355
+ [_Ty, _M],
2775
3356
  [0, 0],
2776
3357
  ];
2777
3358
  TypeRegistry.for(n0).registerError(SnapStartNotReadyException, __SnapStartNotReadyException);
@@ -2784,11 +3365,49 @@ export var SnapStartTimeoutException = [
2784
3365
  [_e]: _c,
2785
3366
  [_hE]: 408,
2786
3367
  },
2787
- [_T, _M],
3368
+ [_Ty, _M],
2788
3369
  [0, 0],
2789
3370
  ];
2790
3371
  TypeRegistry.for(n0).registerError(SnapStartTimeoutException, __SnapStartTimeoutException);
2791
- export var SourceAccessConfiguration = [3, n0, _SACo, 0, [_T, _URI], [0, 0]];
3372
+ export var SourceAccessConfiguration = [3, n0, _SACo, 0, [_Ty, _URI], [0, 0]];
3373
+ export var StepDetails = [
3374
+ 3,
3375
+ n0,
3376
+ _SD,
3377
+ 0,
3378
+ [_Att, _NAT, _R, _E],
3379
+ [1, 4, [() => OperationPayload, 0], [() => ErrorObject, 0]],
3380
+ ];
3381
+ export var StepFailedDetails = [
3382
+ 3,
3383
+ n0,
3384
+ _SFD,
3385
+ 0,
3386
+ [_E, _RD],
3387
+ [[() => EventError, 0], () => RetryDetails],
3388
+ ];
3389
+ export var StepOptions = [3, n0, _SO, 0, [_NADS], [1]];
3390
+ export var StepStartedDetails = [3, n0, _SSD, 0, [], []];
3391
+ export var StepSucceededDetails = [
3392
+ 3,
3393
+ n0,
3394
+ _SSDt,
3395
+ 0,
3396
+ [_R, _RD],
3397
+ [[() => EventResult, 0], () => RetryDetails],
3398
+ ];
3399
+ export var StopDurableExecutionRequest = [
3400
+ 3,
3401
+ n0,
3402
+ _SDER,
3403
+ 0,
3404
+ [_DEA, _E],
3405
+ [
3406
+ [0, 1],
3407
+ [() => ErrorObject, 16],
3408
+ ],
3409
+ ];
3410
+ export var StopDurableExecutionResponse = [3, n0, _SDERt, 0, [_STto], [4]];
2792
3411
  export var SubnetIPAddressLimitReachedException = [
2793
3412
  -3,
2794
3413
  n0,
@@ -2797,7 +3416,7 @@ export var SubnetIPAddressLimitReachedException = [
2797
3416
  [_e]: _se,
2798
3417
  [_hE]: 502,
2799
3418
  },
2800
- [_T, _M],
3419
+ [_Ty, _M],
2801
3420
  [0, 0],
2802
3421
  ];
2803
3422
  TypeRegistry.for(n0).registerError(SubnetIPAddressLimitReachedException, __SubnetIPAddressLimitReachedException);
@@ -2813,7 +3432,7 @@ export var TooManyRequestsException = [
2813
3432
  [_e]: _c,
2814
3433
  [_hE]: 429,
2815
3434
  },
2816
- [_rAS, _T, _m, _Rea],
3435
+ [_rAS, _Ty, _m, _Rea],
2817
3436
  [
2818
3437
  [
2819
3438
  0,
@@ -2827,6 +3446,7 @@ export var TooManyRequestsException = [
2827
3446
  ],
2828
3447
  ];
2829
3448
  TypeRegistry.for(n0).registerError(TooManyRequestsException, __TooManyRequestsException);
3449
+ export var TraceHeader = [3, n0, _TH, 0, [_XATIm], [0]];
2830
3450
  export var TracingConfig = [3, n0, _TC, 0, [_Mo], [0]];
2831
3451
  export var TracingConfigResponse = [3, n0, _TCR, 0, [_Mo], [0]];
2832
3452
  export var UnsupportedMediaTypeException = [
@@ -2837,7 +3457,7 @@ export var UnsupportedMediaTypeException = [
2837
3457
  [_e]: _c,
2838
3458
  [_hE]: 415,
2839
3459
  },
2840
- [_T, _m],
3460
+ [_Ty, _m],
2841
3461
  [0, 0],
2842
3462
  ];
2843
3463
  TypeRegistry.for(n0).registerError(UnsupportedMediaTypeException, __UnsupportedMediaTypeException);
@@ -2898,7 +3518,7 @@ export var UpdateEventSourceMappingRequest = [
2898
3518
  [
2899
3519
  _UUID,
2900
3520
  _FN,
2901
- _E,
3521
+ _En,
2902
3522
  _BSa,
2903
3523
  _FCi,
2904
3524
  _MBWIS,
@@ -2955,7 +3575,7 @@ export var UpdateFunctionConfigurationRequest = [
2955
3575
  n0,
2956
3576
  _UFCRp,
2957
3577
  0,
2958
- [_FN, _Ro, _H, _D, _Ti, _MS, _VC, _En, _R, _DLC, _KMSKA, _TC, _RI, _L, _FSC, _IC, _ES, _SSn, _LC, _CPC],
3578
+ [_FN, _Ro, _H, _D, _T, _MS, _VC, _Env, _Ru, _DLC, _KMSKA, _TC, _RI, _L, _FSC, _IC, _ES, _SSn, _LC, _CPC, _DCu],
2959
3579
  [
2960
3580
  [0, 1],
2961
3581
  0,
@@ -2977,6 +3597,7 @@ export var UpdateFunctionConfigurationRequest = [
2977
3597
  () => SnapStart,
2978
3598
  () => LoggingConfig,
2979
3599
  () => CapacityProviderConfig,
3600
+ () => DurableConfig,
2980
3601
  ],
2981
3602
  ];
2982
3603
  export var UpdateFunctionEventInvokeConfigRequest = [
@@ -3022,7 +3643,7 @@ export var UpdateFunctionUrlConfigResponse = [
3022
3643
  n0,
3023
3644
  _UFUCRp,
3024
3645
  0,
3025
- [_FU, _FA, _AT, _Co, _CT, _LMT, _IM],
3646
+ [_FU, _FA, _AT, _Co, _CTr, _LMT, _IM],
3026
3647
  [0, 0, 0, () => Cors, 0, 0, 0],
3027
3648
  ];
3028
3649
  export var VpcConfig = [3, n0, _VC, 0, [_SIu, _SGI, _IAFDS], [64 | 0, 64 | 0, 2]];
@@ -3034,6 +3655,11 @@ export var VpcConfigResponse = [
3034
3655
  [_SIu, _SGI, _VI, _IAFDS],
3035
3656
  [64 | 0, 64 | 0, 0, 2],
3036
3657
  ];
3658
+ export var WaitCancelledDetails = [3, n0, _WCD, 0, [_E], [[() => EventError, 0]]];
3659
+ export var WaitDetails = [3, n0, _WDa, 0, [_SET], [4]];
3660
+ export var WaitOptions = [3, n0, _WO, 0, [_WS], [1]];
3661
+ export var WaitStartedDetails = [3, n0, _WSD, 0, [_Du, _SET], [1, 4]];
3662
+ export var WaitSucceededDetails = [3, n0, _WSDa, 0, [_Du], [1]];
3037
3663
  export var __Unit = "unit";
3038
3664
  export var LambdaServiceException = [-3, _sm, "LambdaServiceException", 0, [], []];
3039
3665
  TypeRegistry.for(_sm).registerError(LambdaServiceException, __LambdaServiceException);
@@ -3054,9 +3680,12 @@ export var CapacityProviderSubnetIds = 64 | 0;
3054
3680
  export var CodeSigningConfigList = [1, n0, _CSCL, 0, () => CodeSigningConfig];
3055
3681
  export var CompatibleArchitectures = 64 | 0;
3056
3682
  export var CompatibleRuntimes = 64 | 0;
3683
+ export var DurableExecutions = [1, n0, _DE, 0, () => Execution];
3057
3684
  export var EndpointLists = 64 | 0;
3685
+ export var Events = [1, n0, _Eve, 0, [() => Event, 0]];
3058
3686
  export var EventSourceMappingMetricList = 64 | 0;
3059
3687
  export var EventSourceMappingsList = [1, n0, _ESML, 0, () => EventSourceMappingConfiguration];
3688
+ export var ExecutionStatusList = 64 | 0;
3060
3689
  export var FileSystemConfigList = [1, n0, _FSCL, 0, () => FileSystemConfig];
3061
3690
  export var FilterList = [1, n0, _FL, 0, () => Filter];
3062
3691
  export var FunctionArnList = 64 | 0;
@@ -3085,6 +3714,8 @@ export var LayerList = 64 | 0;
3085
3714
  export var LayersList = [1, n0, _LL, 0, () => LayersListItem];
3086
3715
  export var LayersReferenceList = [1, n0, _LRL, 0, () => Layer];
3087
3716
  export var LayerVersionsList = [1, n0, _LVL, 0, () => LayerVersionsListItem];
3717
+ export var Operations = [1, n0, _O, 0, [() => Operation, 0]];
3718
+ export var OperationUpdates = [1, n0, _OUp, 0, [() => OperationUpdate, 0]];
3088
3719
  export var ProvisionedConcurrencyConfigList = [
3089
3720
  1,
3090
3721
  n0,
@@ -3096,6 +3727,7 @@ export var Queues = 64 | 0;
3096
3727
  export var SecurityGroupIds = 64 | 0;
3097
3728
  export var SigningProfileVersionArns = 64 | 0;
3098
3729
  export var SourceAccessConfigurations = [1, n0, _SAC, 0, () => SourceAccessConfiguration];
3730
+ export var StackTraceEntries = [1, n0, _STEt, 0, [() => StackTraceEntry, 0]];
3099
3731
  export var StringList = 64 | 0;
3100
3732
  export var SubnetIds = 64 | 0;
3101
3733
  export var TagKeyList = 64 | 0;
@@ -3141,6 +3773,16 @@ export var AddPermission = [
3141
3773
  () => AddPermissionRequest,
3142
3774
  () => AddPermissionResponse,
3143
3775
  ];
3776
+ export var CheckpointDurableExecution = [
3777
+ 9,
3778
+ n0,
3779
+ _CDE,
3780
+ {
3781
+ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/checkpoint", 200],
3782
+ },
3783
+ () => CheckpointDurableExecutionRequest,
3784
+ () => CheckpointDurableExecutionResponse,
3785
+ ];
3144
3786
  export var CreateAlias = [
3145
3787
  9,
3146
3788
  n0,
@@ -3351,6 +3993,36 @@ export var GetCodeSigningConfig = [
3351
3993
  () => GetCodeSigningConfigRequest,
3352
3994
  () => GetCodeSigningConfigResponse,
3353
3995
  ];
3996
+ export var GetDurableExecution = [
3997
+ 9,
3998
+ n0,
3999
+ _GDE,
4000
+ {
4001
+ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}", 200],
4002
+ },
4003
+ () => GetDurableExecutionRequest,
4004
+ () => GetDurableExecutionResponse,
4005
+ ];
4006
+ export var GetDurableExecutionHistory = [
4007
+ 9,
4008
+ n0,
4009
+ _GDEH,
4010
+ {
4011
+ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/history", 200],
4012
+ },
4013
+ () => GetDurableExecutionHistoryRequest,
4014
+ () => GetDurableExecutionHistoryResponse,
4015
+ ];
4016
+ export var GetDurableExecutionState = [
4017
+ 9,
4018
+ n0,
4019
+ _GDES,
4020
+ {
4021
+ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/state", 200],
4022
+ },
4023
+ () => GetDurableExecutionStateRequest,
4024
+ () => GetDurableExecutionStateResponse,
4025
+ ];
3354
4026
  export var GetEventSourceMapping = [
3355
4027
  9,
3356
4028
  n0,
@@ -3504,7 +4176,7 @@ export var GetRuntimeManagementConfig = [
3504
4176
  export var Invoke = [
3505
4177
  9,
3506
4178
  n0,
3507
- _I,
4179
+ _In,
3508
4180
  {
3509
4181
  [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/invocations", 200],
3510
4182
  },
@@ -3561,6 +4233,16 @@ export var ListCodeSigningConfigs = [
3561
4233
  () => ListCodeSigningConfigsRequest,
3562
4234
  () => ListCodeSigningConfigsResponse,
3563
4235
  ];
4236
+ export var ListDurableExecutionsByFunction = [
4237
+ 9,
4238
+ n0,
4239
+ _LDEBF,
4240
+ {
4241
+ [_h]: ["GET", "/2025-12-01/functions/{FunctionName}/durable-executions", 200],
4242
+ },
4243
+ () => ListDurableExecutionsByFunctionRequest,
4244
+ () => ListDurableExecutionsByFunctionResponse,
4245
+ ];
3564
4246
  export var ListEventSourceMappings = [
3565
4247
  9,
3566
4248
  n0,
@@ -3781,6 +4463,46 @@ export var RemovePermission = [
3781
4463
  () => RemovePermissionRequest,
3782
4464
  () => __Unit,
3783
4465
  ];
4466
+ export var SendDurableExecutionCallbackFailure = [
4467
+ 9,
4468
+ n0,
4469
+ _SDECF,
4470
+ {
4471
+ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/fail", 200],
4472
+ },
4473
+ () => SendDurableExecutionCallbackFailureRequest,
4474
+ () => SendDurableExecutionCallbackFailureResponse,
4475
+ ];
4476
+ export var SendDurableExecutionCallbackHeartbeat = [
4477
+ 9,
4478
+ n0,
4479
+ _SDECH,
4480
+ {
4481
+ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/heartbeat", 200],
4482
+ },
4483
+ () => SendDurableExecutionCallbackHeartbeatRequest,
4484
+ () => SendDurableExecutionCallbackHeartbeatResponse,
4485
+ ];
4486
+ export var SendDurableExecutionCallbackSuccess = [
4487
+ 9,
4488
+ n0,
4489
+ _SDECS,
4490
+ {
4491
+ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/succeed", 200],
4492
+ },
4493
+ () => SendDurableExecutionCallbackSuccessRequest,
4494
+ () => SendDurableExecutionCallbackSuccessResponse,
4495
+ ];
4496
+ export var StopDurableExecution = [
4497
+ 9,
4498
+ n0,
4499
+ _SDE,
4500
+ {
4501
+ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/stop", 200],
4502
+ },
4503
+ () => StopDurableExecutionRequest,
4504
+ () => StopDurableExecutionResponse,
4505
+ ];
3784
4506
  export var TagResource = [
3785
4507
  9,
3786
4508
  n0,