@aws-sdk/client-lambda 3.942.0 → 3.943.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/index.js +1037 -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 +59 -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 +17 -1
  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 +9 -1
  29. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +9 -1
  30. package/dist-types/commands/InvokeCommand.d.ts +7 -0
  31. package/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +106 -0
  32. package/dist-types/commands/ListFunctionsCommand.d.ts +9 -1
  33. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +13 -1
  34. package/dist-types/commands/PublishVersionCommand.d.ts +5 -1
  35. package/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +92 -0
  36. package/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +84 -0
  37. package/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +91 -0
  38. package/dist-types/commands/StopDurableExecutionCommand.d.ts +94 -0
  39. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +5 -1
  40. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +17 -1
  41. package/dist-types/commands/index.d.ts +9 -0
  42. package/dist-types/models/enums.d.ts +99 -0
  43. package/dist-types/models/errors.d.ts +36 -0
  44. package/dist-types/models/models_0.d.ts +1510 -173
  45. package/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +7 -0
  46. package/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +7 -0
  47. package/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +7 -0
  48. package/dist-types/pagination/index.d.ts +3 -0
  49. package/dist-types/schemas/schemas_0.d.ts +90 -0
  50. package/dist-types/ts3.4/Lambda.d.ts +171 -0
  51. package/dist-types/ts3.4/LambdaClient.d.ts +54 -0
  52. package/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +51 -0
  54. package/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +51 -0
  58. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +51 -0
  59. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +60 -0
  60. package/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +51 -0
  61. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  62. package/dist-types/ts3.4/models/enums.d.ts +67 -0
  63. package/dist-types/ts3.4/models/errors.d.ts +21 -0
  64. package/dist-types/ts3.4/models/models_0.d.ts +322 -0
  65. package/dist-types/ts3.4/pagination/GetDurableExecutionHistoryPaginator.d.ts +11 -0
  66. package/dist-types/ts3.4/pagination/GetDurableExecutionStatePaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +11 -0
  68. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  69. package/dist-types/ts3.4/schemas/schemas_0.d.ts +90 -0
  70. package/package.json +5 -5
package/dist-cjs/index.js CHANGED
@@ -332,6 +332,22 @@ let InvalidCodeSignatureException$1 = class InvalidCodeSignatureException extend
332
332
  this.Message = opts.Message;
333
333
  }
334
334
  };
335
+ let DurableExecutionAlreadyStartedException$1 = class DurableExecutionAlreadyStartedException extends LambdaServiceException$1 {
336
+ name = "DurableExecutionAlreadyStartedException";
337
+ $fault = "client";
338
+ Type;
339
+ Message;
340
+ constructor(opts) {
341
+ super({
342
+ name: "DurableExecutionAlreadyStartedException",
343
+ $fault: "client",
344
+ ...opts,
345
+ });
346
+ Object.setPrototypeOf(this, DurableExecutionAlreadyStartedException.prototype);
347
+ this.Type = opts.Type;
348
+ this.Message = opts.Message;
349
+ }
350
+ };
335
351
  let EC2AccessDeniedException$1 = class EC2AccessDeniedException extends LambdaServiceException$1 {
336
352
  name = "EC2AccessDeniedException";
337
353
  $fault = "server";
@@ -770,6 +786,22 @@ let ProvisionedConcurrencyConfigNotFoundException$1 = class ProvisionedConcurren
770
786
  this.Type = opts.Type;
771
787
  }
772
788
  };
789
+ let CallbackTimeoutException$1 = class CallbackTimeoutException extends LambdaServiceException$1 {
790
+ name = "CallbackTimeoutException";
791
+ $fault = "client";
792
+ Type;
793
+ Message;
794
+ constructor(opts) {
795
+ super({
796
+ name: "CallbackTimeoutException",
797
+ $fault: "client",
798
+ ...opts,
799
+ });
800
+ Object.setPrototypeOf(this, CallbackTimeoutException.prototype);
801
+ this.Type = opts.Type;
802
+ this.Message = opts.Message;
803
+ }
804
+ };
773
805
 
774
806
  const _A = "Action";
775
807
  const _AA = "AliasArn";
@@ -803,8 +835,10 @@ const _Al = "Aliases";
803
835
  const _Ar = "Architectures";
804
836
  const _Arn = "Arn";
805
837
  const _At = "Attribute";
838
+ const _Att = "Attempt";
806
839
  const _B = "Blob";
807
840
  const _BBOFE = "BisectBatchOnFunctionError";
841
+ const _BOP = "BinaryOperationPayload";
808
842
  const _BS = "BlobStream";
809
843
  const _BSa = "BatchSize";
810
844
  const _C = "Concurrency";
@@ -812,6 +846,7 @@ const _CA = "CompatibleArchitectures";
812
846
  const _CAR = "CreateAliasRequest";
813
847
  const _CAo = "CompatibleArchitecture";
814
848
  const _CAr = "CreateAlias";
849
+ const _CAu = "CurrentAttempt";
815
850
  const _CC = "ClientContext";
816
851
  const _CCP = "CreateCapacityProvider";
817
852
  const _CCPR = "CreateCapacityProviderRequest";
@@ -819,17 +854,34 @@ const _CCPRr = "CreateCapacityProviderResponse";
819
854
  const _CCSC = "CreateCodeSigningConfig";
820
855
  const _CCSCR = "CreateCodeSigningConfigRequest";
821
856
  const _CCSCRr = "CreateCodeSigningConfigResponse";
822
- const _CD = "CreatedDate";
857
+ const _CD = "CallbackDetails";
858
+ const _CDE = "CheckpointDurableExecution";
859
+ const _CDER = "CheckpointDurableExecutionRequest";
860
+ const _CDERh = "CheckpointDurableExecutionResponse";
861
+ const _CDo = "ContextDetails";
862
+ const _CDr = "CreatedDate";
823
863
  const _CE = "ConcurrentExecutions";
824
864
  const _CESM = "CreateEventSourceMapping";
825
865
  const _CESMR = "CreateEventSourceMappingRequest";
826
866
  const _CF = "CreateFunction";
867
+ const _CFD = "CallbackFailedDetails";
868
+ const _CFDo = "ContextFailedDetails";
827
869
  const _CFR = "CreateFunctionRequest";
828
870
  const _CFUC = "CreateFunctionUrlConfig";
829
871
  const _CFUCR = "CreateFunctionUrlConfigRequest";
830
872
  const _CFUCRr = "CreateFunctionUrlConfigResponse";
831
873
  const _CGI = "ConsumerGroupId";
874
+ const _CI = "CallbackId";
875
+ const _CID = "ChainedInvokeDetails";
876
+ const _CIFD = "ChainedInvokeFailedDetails";
877
+ const _CIO = "ChainedInvokeOptions";
878
+ const _CISD = "ChainedInvokeStartedDetails";
879
+ const _CISDh = "ChainedInvokeStoppedDetails";
880
+ const _CISDha = "ChainedInvokeSucceededDetails";
881
+ const _CITOD = "ChainedInvokeTimedOutDetails";
832
882
  const _CN = "CollectionName";
883
+ const _CO = "CallbackOptions";
884
+ const _COo = "ContextOptions";
833
885
  const _CP = "CapacityProvider";
834
886
  const _CPA = "CapacityProviderArn";
835
887
  const _CPC = "CapacityProviderConfig";
@@ -851,14 +903,23 @@ const _CSCI = "CodeSigningConfigId";
851
903
  const _CSCL = "CodeSigningConfigList";
852
904
  const _CSCNFE = "CodeSigningConfigNotFoundException";
853
905
  const _CSCo = "CodeSigningConfigs";
906
+ const _CSD = "CallbackStartedDetails";
907
+ const _CSDa = "CallbackSucceededDetails";
908
+ const _CSDo = "ContextStartedDetails";
909
+ const _CSDon = "ContextSucceededDetails";
854
910
  const _CSEE = "CodeStorageExceededException";
855
911
  const _CSP = "CodeSigningPolicies";
856
912
  const _CSU = "CodeSizeUnzipped";
857
913
  const _CSZ = "CodeSizeZipped";
858
914
  const _CSo = "CodeSha256";
859
915
  const _CSon = "ConfigSha256";
860
- const _CT = "CreationTime";
916
+ const _CT = "CheckpointToken";
917
+ const _CTE = "CallbackTimeoutException";
918
+ const _CTOD = "CallbackTimedOutDetails";
861
919
  const _CT_ = "Content-Type";
920
+ const _CTl = "ClientToken";
921
+ const _CTr = "CreationTime";
922
+ const _CUES = "CheckpointUpdatedExecutionState";
862
923
  const _CVFE = "CodeVerificationFailedException";
863
924
  const _Co = "Cors";
864
925
  const _Cod = "Code";
@@ -875,7 +936,12 @@ const _DCPRe = "DeleteCapacityProviderResponse";
875
936
  const _DCSC = "DeleteCodeSigningConfig";
876
937
  const _DCSCR = "DeleteCodeSigningConfigRequest";
877
938
  const _DCSCRe = "DeleteCodeSigningConfigResponse";
939
+ const _DCu = "DurableConfig";
878
940
  const _DDBESC = "DocumentDBEventSourceConfig";
941
+ const _DE = "DurableExecutions";
942
+ const _DEA = "DurableExecutionArn";
943
+ const _DEASE = "DurableExecutionAlreadyStartedException";
944
+ const _DEN = "DurableExecutionName";
879
945
  const _DESM = "DeleteEventSourceMapping";
880
946
  const _DESMR = "DeleteEventSourceMappingRequest";
881
947
  const _DF = "DeleteFunction";
@@ -897,27 +963,40 @@ const _DPCC = "DeleteProvisionedConcurrencyConfig";
897
963
  const _DPCCR = "DeleteProvisionedConcurrencyConfigRequest";
898
964
  const _DR = "DryRun";
899
965
  const _De = "Destination";
900
- const _E = "Enabled";
966
+ const _Du = "Duration";
967
+ const _E = "Error";
901
968
  const _EC = "ErrorCode";
902
969
  const _ECADE = "EC2AccessDeniedException";
903
970
  const _ECEC = "EC2ErrorCode";
904
971
  const _ECTE = "EC2ThrottledException";
905
972
  const _ECUE = "EC2UnexpectedException";
906
- const _ED = "ErrorDetails";
973
+ const _ED = "ErrorData";
974
+ const _EDr = "ErrorDetails";
975
+ const _EDx = "ExecutionDetails";
907
976
  const _EE = "EnvironmentError";
908
977
  const _EEMGBPVC = "ExecutionEnvironmentMemoryGiBPerVCpu";
978
+ const _EEv = "EventError";
979
+ const _EFD = "ExecutionFailedDetails";
909
980
  const _EFSIOE = "EFSIOException";
910
981
  const _EFSMCE = "EFSMountConnectivityException";
911
982
  const _EFSMFE = "EFSMountFailureException";
912
983
  const _EFSMTE = "EFSMountTimeoutException";
913
984
  const _EH = "ExposeHeaders";
985
+ const _EI = "EventId";
914
986
  const _EIT = "ExcludedInstanceTypes";
987
+ const _EIv = "EventInput";
988
+ const _EM = "ErrorMessage";
915
989
  const _ENILRE = "ENILimitReachedException";
990
+ const _EO = "ErrorObject";
916
991
  const _EP = "EntryPoint";
917
992
  const _ER = "EnvironmentResponse";
918
993
  const _ERF = "EventRecordFormat";
994
+ const _ERv = "EventResult";
919
995
  const _ES = "EphemeralStorage";
920
996
  const _ESA = "EventSourceArn";
997
+ const _ESD = "ExecutionStartedDetails";
998
+ const _ESDx = "ExecutionSucceededDetails";
999
+ const _ESDxe = "ExecutionStoppedDetails";
921
1000
  const _ESM = "EventSourceMappings";
922
1001
  const _ESMA = "EventSourceMappingArn";
923
1002
  const _ESMC = "EventSourceMappingConfiguration";
@@ -925,13 +1004,22 @@ const _ESML = "EventSourceMappingsList";
925
1004
  const _ESMMC = "EventSourceMappingMetricsConfig";
926
1005
  const _EST = "EventSourceToken";
927
1006
  const _ESv = "EventStream";
1007
+ const _ET = "ErrorType";
1008
+ const _ETOD = "ExecutionTimedOutDetails";
1009
+ const _ETn = "EndTimestamp";
1010
+ const _ETv = "EventType";
1011
+ const _ETve = "EventTimestamp";
1012
+ const _ETx = "ExecutionTimeout";
928
1013
  const _EV = "ExecutedVersion";
929
1014
  const _EVN = "EnvironmentVariableName";
930
1015
  const _EVV = "EnvironmentVariableValue";
931
1016
  const _EVn = "EnvironmentVariables";
932
- const _En = "Environment";
1017
+ const _En = "Enabled";
933
1018
  const _End = "Endpoints";
934
- const _Er = "Error";
1019
+ const _Env = "Environment";
1020
+ const _Ev = "Event";
1021
+ const _Eve = "Events";
1022
+ const _Ex = "Execution";
935
1023
  const _F = "Filter";
936
1024
  const _FA = "FunctionArn";
937
1025
  const _FAu = "FunctionArns";
@@ -978,6 +1066,15 @@ const _GCPRe = "GetCapacityProviderResponse";
978
1066
  const _GCSC = "GetCodeSigningConfig";
979
1067
  const _GCSCR = "GetCodeSigningConfigRequest";
980
1068
  const _GCSCRe = "GetCodeSigningConfigResponse";
1069
+ const _GDE = "GetDurableExecution";
1070
+ const _GDEH = "GetDurableExecutionHistory";
1071
+ const _GDEHR = "GetDurableExecutionHistoryRequest";
1072
+ const _GDEHRe = "GetDurableExecutionHistoryResponse";
1073
+ const _GDER = "GetDurableExecutionRequest";
1074
+ const _GDERe = "GetDurableExecutionResponse";
1075
+ const _GDES = "GetDurableExecutionState";
1076
+ const _GDESR = "GetDurableExecutionStateRequest";
1077
+ const _GDESRe = "GetDurableExecutionStateResponse";
981
1078
  const _GESM = "GetEventSourceMapping";
982
1079
  const _GESMR = "GetEventSourceMappingRequest";
983
1080
  const _GF = "GetFunction";
@@ -1020,18 +1117,23 @@ const _GRMC = "GetRuntimeManagementConfig";
1020
1117
  const _GRMCR = "GetRuntimeManagementConfigRequest";
1021
1118
  const _GRMCRe = "GetRuntimeManagementConfigResponse";
1022
1119
  const _H = "Handler";
1023
- const _I = "Invoke";
1120
+ const _HT = "HeartbeatTimeout";
1121
+ const _HTS = "HeartbeatTimeoutSeconds";
1122
+ const _I = "Input";
1024
1123
  const _IA = "InvokeArgs";
1025
1124
  const _IAFDS = "Ipv6AllowedForDualStack";
1026
1125
  const _IAR = "InvokeAsyncRequest";
1027
1126
  const _IARn = "InvokeAsyncResponse";
1028
1127
  const _IAn = "InvokeAsync";
1029
1128
  const _IC = "ImageConfig";
1129
+ const _ICD = "InvocationCompletedDetails";
1030
1130
  const _ICE = "ImageConfigError";
1031
1131
  const _ICR = "ImageConfigResponse";
1032
1132
  const _ICSE = "InvalidCodeSignatureException";
1033
1133
  const _ICn = "InvokeComplete";
1134
+ const _IED = "IncludeExecutionData";
1034
1135
  const _IM = "InvokeMode";
1136
+ const _IP = "InputPayload";
1035
1137
  const _IPVE = "InvalidParameterValueException";
1036
1138
  const _IR = "InstanceRequirements";
1037
1139
  const _IRCE = "InvalidRequestContentException";
@@ -1050,6 +1152,8 @@ const _IWRSR = "InvokeWithResponseStreamRequest";
1050
1152
  const _IWRSRE = "InvokeWithResponseStreamResponseEvent";
1051
1153
  const _IWRSRn = "InvokeWithResponseStreamResponse";
1052
1154
  const _IZFE = "InvalidZipFileException";
1155
+ const _Id = "Id";
1156
+ const _In = "Invoke";
1053
1157
  const _KKA = "KmsKeyArn";
1054
1158
  const _KMSADE = "KMSAccessDeniedException";
1055
1159
  const _KMSDE = "KMSDisabledException";
@@ -1073,6 +1177,9 @@ const _LCPRi = "ListCapacityProvidersResponse";
1073
1177
  const _LCSC = "ListCodeSigningConfigs";
1074
1178
  const _LCSCR = "ListCodeSigningConfigsRequest";
1075
1179
  const _LCSCRi = "ListCodeSigningConfigsResponse";
1180
+ const _LDEBF = "ListDurableExecutionsByFunction";
1181
+ const _LDEBFR = "ListDurableExecutionsByFunctionRequest";
1182
+ const _LDEBFRi = "ListDurableExecutionsByFunctionResponse";
1076
1183
  const _LESM = "ListEventSourceMappings";
1077
1184
  const _LESMR = "ListEventSourceMappingsRequest";
1078
1185
  const _LESMRi = "ListEventSourceMappingsResponse";
@@ -1153,12 +1260,21 @@ const _Ma = "Marker";
1153
1260
  const _Me = "Metrics";
1154
1261
  const _Mo = "Mode";
1155
1262
  const _N = "Name";
1263
+ const _NADS = "NextAttemptDelaySeconds";
1264
+ const _NAT = "NextAttemptTimestamp";
1265
+ const _NES = "NewExecutionState";
1156
1266
  const _NM = "NextMarker";
1157
1267
  const _NPVE = "NoPublishedVersionException";
1268
+ const _O = "Operations";
1158
1269
  const _OF = "OnFailure";
1159
1270
  const _OI = "OrganizationId";
1271
+ const _OP = "OperationPayload";
1272
+ const _OPu = "OutputPayload";
1160
1273
  const _OS = "OnSuccess";
1161
1274
  const _OSp = "OptimizationStatus";
1275
+ const _OU = "OperationUpdate";
1276
+ const _OUp = "OperationUpdates";
1277
+ const _Op = "Operation";
1162
1278
  const _P = "Principal";
1163
1279
  const _PC = "PermissionsConfig";
1164
1280
  const _PCC = "ProvisionedConcurrencyConfigs";
@@ -1184,6 +1300,7 @@ const _PFSC = "PutFunctionScalingConfig";
1184
1300
  const _PFSCR = "PutFunctionScalingConfigRequest";
1185
1301
  const _PFSCRu = "PutFunctionScalingConfigResponse";
1186
1302
  const _PGN = "PollerGroupName";
1303
+ const _PI = "ParentId";
1187
1304
  const _PLEE = "PolicyLengthExceededException";
1188
1305
  const _PLV = "PublishLayerVersion";
1189
1306
  const _PLVR = "PublishLayerVersionRequest";
@@ -1201,29 +1318,34 @@ const _PT = "PackageType";
1201
1318
  const _PTu = "PublishTo";
1202
1319
  const _PV = "PublishVersion";
1203
1320
  const _PVR = "PublishVersionRequest";
1204
- const _Pa = "Pattern";
1205
- const _Pay = "Payload";
1321
+ const _Pa = "Payload";
1322
+ const _Pat = "Pattern";
1206
1323
  const _Po = "Policy";
1207
1324
  const _Pu = "Publish";
1208
1325
  const _Q = "Qualifier";
1209
1326
  const _Qu = "Queues";
1210
- const _R = "Runtime";
1327
+ const _R = "Result";
1211
1328
  const _RA = "Retry-After";
1212
1329
  const _RC = "RoutingConfig";
1213
1330
  const _RCE = "ReservedConcurrentExecutions";
1214
1331
  const _RCEe = "ResourceConflictException";
1332
+ const _RCe = "ReplayChildren";
1333
+ const _RD = "RetryDetails";
1215
1334
  const _RFSC = "RequestedFunctionScalingConfig";
1216
1335
  const _RI = "RevisionId";
1217
1336
  const _RIE = "RecursiveInvocationException";
1218
1337
  const _RIU = "ResolvedImageUri";
1219
1338
  const _RIUE = "ResourceInUseException";
1339
+ const _RIe = "RequestId";
1220
1340
  const _RL = "RecursiveLoop";
1221
1341
  const _RLVP = "RemoveLayerVersionPermission";
1222
1342
  const _RLVPR = "RemoveLayerVersionPermissionRequest";
1223
1343
  const _RNFE = "ResourceNotFoundException";
1224
1344
  const _RNRE = "ResourceNotReadyException";
1345
+ const _RO = "ReverseOrder";
1225
1346
  const _RP = "RemovePermission";
1226
1347
  const _RPCE = "RequestedProvisionedConcurrentExecutions";
1348
+ const _RPID = "RetentionPeriodInDays";
1227
1349
  const _RPR = "RemovePermissionRequest";
1228
1350
  const _RSCT = "ResponseStreamContentType";
1229
1351
  const _RT = "RepositoryType";
@@ -1234,15 +1356,33 @@ const _RVE = "RuntimeVersionError";
1234
1356
  const _Re = "Resource";
1235
1357
  const _Rea = "Reason";
1236
1358
  const _Ro = "Role";
1359
+ const _Ru = "Runtime";
1237
1360
  const _S = "Statement";
1238
1361
  const _SA = "SourceArn";
1239
1362
  const _SAC = "SourceAccessConfigurations";
1240
1363
  const _SACo = "SourceAccessConfiguration";
1241
1364
  const _SAo = "SourceAccount";
1365
+ const _SAt = "StartedAfter";
1242
1366
  const _SB = "S3Bucket";
1367
+ const _SBt = "StartedBefore";
1243
1368
  const _SC = "ScalingConfig";
1244
1369
  const _SCt = "StatusCode";
1370
+ const _SD = "StepDetails";
1371
+ const _SDE = "StopDurableExecution";
1372
+ const _SDECF = "SendDurableExecutionCallbackFailure";
1373
+ const _SDECFR = "SendDurableExecutionCallbackFailureRequest";
1374
+ const _SDECFRe = "SendDurableExecutionCallbackFailureResponse";
1375
+ const _SDECH = "SendDurableExecutionCallbackHeartbeat";
1376
+ const _SDECHR = "SendDurableExecutionCallbackHeartbeatRequest";
1377
+ const _SDECHRe = "SendDurableExecutionCallbackHeartbeatResponse";
1378
+ const _SDECS = "SendDurableExecutionCallbackSuccess";
1379
+ const _SDECSR = "SendDurableExecutionCallbackSuccessRequest";
1380
+ const _SDECSRe = "SendDurableExecutionCallbackSuccessResponse";
1381
+ const _SDER = "StopDurableExecutionRequest";
1382
+ const _SDERt = "StopDurableExecutionResponse";
1245
1383
  const _SE = "ServiceException";
1384
+ const _SET = "ScheduledEndTimestamp";
1385
+ const _SFD = "StepFailedDetails";
1246
1386
  const _SGI = "SecurityGroupIds";
1247
1387
  const _SI = "StatementId";
1248
1388
  const _SIPALRE = "SubnetIPAddressLimitReachedException";
@@ -1254,6 +1394,7 @@ const _SLL = "SystemLogLevel";
1254
1394
  const _SM = "ScalingMode";
1255
1395
  const _SMES = "SelfManagedEventSource";
1256
1396
  const _SMKESC = "SelfManagedKafkaEventSourceConfig";
1397
+ const _SO = "StepOptions";
1257
1398
  const _SOV = "S3ObjectVersion";
1258
1399
  const _SP = "ScalingPolicies";
1259
1400
  const _SPT = "StartingPositionTimestamp";
@@ -1267,35 +1408,48 @@ const _SRETLE = "SerializedRequestEntityTooLargeException";
1267
1408
  const _SRURI = "SchemaRegistryURI";
1268
1409
  const _SRt = "StatusReason";
1269
1410
  const _SS = "SensitiveString";
1411
+ const _SSD = "StepStartedDetails";
1412
+ const _SSDt = "StepSucceededDetails";
1270
1413
  const _SSE = "SnapStartException";
1271
1414
  const _SSNRE = "SnapStartNotReadyException";
1272
1415
  const _SSR = "SnapStartResponse";
1273
1416
  const _SSTE = "SnapStartTimeoutException";
1274
1417
  const _SSn = "SnapStart";
1418
+ const _ST = "StackTrace";
1419
+ const _STE = "StackTraceEntry";
1420
+ const _STEt = "StackTraceEntries";
1275
1421
  const _STR = "StateTransitionReason";
1422
+ const _STt = "StartTimestamp";
1423
+ const _STto = "StopTimestamp";
1424
+ const _STu = "SubType";
1276
1425
  const _SVC = "SchemaValidationConfigs";
1277
1426
  const _Si = "Size";
1278
1427
  const _St = "State";
1279
1428
  const _Sta = "Status";
1280
- const _T = "Type";
1429
+ const _Stat = "Statuses";
1430
+ const _T = "Timeout";
1281
1431
  const _TA = "TargetArn";
1282
1432
  const _TC = "TracingConfig";
1283
1433
  const _TCR = "TracingConfigResponse";
1284
1434
  const _TCS = "TotalCodeSize";
1285
1435
  const _TCe = "TenancyConfig";
1286
1436
  const _TE = "TagsError";
1437
+ const _TH = "TraceHeader";
1287
1438
  const _TI = "TenantId";
1288
1439
  const _TIM = "TenantIsolationMode";
1289
1440
  const _TK = "TagKeys";
1290
1441
  const _TMRE = "TooManyRequestsException";
1291
1442
  const _TR = "TagResource";
1292
1443
  const _TRR = "TagResourceRequest";
1444
+ const _TS = "TimeoutSeconds";
1293
1445
  const _TTSP = "TargetTrackingScalingPolicy";
1294
1446
  const _TV = "TargetValue";
1295
1447
  const _TWIS = "TumblingWindowInSeconds";
1296
1448
  const _Ta = "Tags";
1297
- const _Ti = "Timeout";
1298
1449
  const _To = "Topics";
1450
+ const _Tr = "Truncated";
1451
+ const _Ty = "Type";
1452
+ const _U = "Updates";
1299
1453
  const _UA = "UpdateAlias";
1300
1454
  const _UAOD = "UntrustedArtifactOnDeployment";
1301
1455
  const _UAR = "UpdateAliasRequest";
@@ -1330,14 +1484,23 @@ const _VI = "VpcId";
1330
1484
  const _VN = "VersionNumber";
1331
1485
  const _Ve = "Version";
1332
1486
  const _Ver = "Versions";
1487
+ const _WCD = "WaitCancelledDetails";
1333
1488
  const _WD = "WorkingDirectory";
1489
+ const _WDa = "WaitDetails";
1490
+ const _WO = "WaitOptions";
1491
+ const _WS = "WaitSeconds";
1492
+ const _WSD = "WaitStartedDetails";
1493
+ const _WSDa = "WaitSucceededDetails";
1334
1494
  const _XACC = "X-Amz-Client-Context";
1495
+ const _XADEA = "X-Amz-Durable-Execution-Arn";
1496
+ const _XADEN = "X-Amz-Durable-Execution-Name";
1335
1497
  const _XAEV = "X-Amz-Executed-Version";
1336
1498
  const _XAFE = "X-Amz-Function-Error";
1337
1499
  const _XAIT = "X-Amz-Invocation-Type";
1338
1500
  const _XALR = "X-Amz-Log-Result";
1339
1501
  const _XALT = "X-Amz-Log-Type";
1340
1502
  const _XATI = "X-Amz-Tenant-Id";
1503
+ const _XATIm = "XAmznTraceId";
1341
1504
  const _ZF = "ZipFile";
1342
1505
  const _c = "client";
1343
1506
  const _e = "error";
@@ -1353,6 +1516,7 @@ const _se = "server";
1353
1516
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.lambda";
1354
1517
  const _tK = "tagKeys";
1355
1518
  const n0 = "com.amazonaws.lambda";
1519
+ var BinaryOperationPayload = [0, n0, _BOP, 8, 21];
1356
1520
  var _Blob = [0, n0, _B, 8, 21];
1357
1521
  var BlobStream = [
1358
1522
  0,
@@ -1365,7 +1529,14 @@ var BlobStream = [
1365
1529
  ];
1366
1530
  var EnvironmentVariableName = [0, n0, _EVN, 8, 0];
1367
1531
  var EnvironmentVariableValue = [0, n0, _EVV, 8, 0];
1532
+ var ErrorData = [0, n0, _ED, 8, 0];
1533
+ var ErrorMessage = [0, n0, _EM, 8, 0];
1534
+ var ErrorType = [0, n0, _ET, 8, 0];
1535
+ var InputPayload = [0, n0, _IP, 8, 0];
1536
+ var OperationPayload = [0, n0, _OP, 8, 0];
1537
+ var OutputPayload = [0, n0, _OPu, 8, 0];
1368
1538
  var SensitiveString = [0, n0, _SS, 8, 0];
1539
+ var StackTraceEntry = [0, n0, _STE, 8, 0];
1369
1540
  var AccountLimit = [3, n0, _AL, 0, [_TCS, _CSU, _CSZ, _CE, _UCE], [1, 1, 1, 1, 1]];
1370
1541
  var AccountUsage = [3, n0, _AU, 0, [_TCS, _FC], [1, 1]];
1371
1542
  var AddLayerVersionPermissionRequest = [
@@ -1435,6 +1606,31 @@ var AmazonManagedKafkaEventSourceConfig = [
1435
1606
  [_CGI, _SRC],
1436
1607
  [0, () => KafkaSchemaRegistryConfig],
1437
1608
  ];
1609
+ var CallbackDetails = [
1610
+ 3,
1611
+ n0,
1612
+ _CD,
1613
+ 0,
1614
+ [_CI, _R, _E],
1615
+ [0, [() => OperationPayload, 0], [() => ErrorObject, 0]],
1616
+ ];
1617
+ var CallbackFailedDetails = [3, n0, _CFD, 0, [_E], [[() => EventError, 0]]];
1618
+ var CallbackOptions = [3, n0, _CO, 0, [_TS, _HTS], [1, 1]];
1619
+ var CallbackStartedDetails = [3, n0, _CSD, 0, [_CI, _HT, _T], [0, 1, 1]];
1620
+ var CallbackSucceededDetails = [3, n0, _CSDa, 0, [_R], [[() => EventResult, 0]]];
1621
+ var CallbackTimedOutDetails = [3, n0, _CTOD, 0, [_E], [[() => EventError, 0]]];
1622
+ var CallbackTimeoutException = [
1623
+ -3,
1624
+ n0,
1625
+ _CTE,
1626
+ {
1627
+ [_e]: _c,
1628
+ [_hE]: 400,
1629
+ },
1630
+ [_Ty, _M],
1631
+ [0, 0],
1632
+ ];
1633
+ schema.TypeRegistry.for(n0).registerError(CallbackTimeoutException, CallbackTimeoutException$1);
1438
1634
  var CapacityProvider = [
1439
1635
  3,
1440
1636
  n0,
@@ -1468,7 +1664,7 @@ var CapacityProviderLimitExceededException = [
1468
1664
  [_e]: _c,
1469
1665
  [_hE]: 400,
1470
1666
  },
1471
- [_T, _m],
1667
+ [_Ty, _m],
1472
1668
  [0, 0],
1473
1669
  ];
1474
1670
  schema.TypeRegistry.for(n0).registerError(CapacityProviderLimitExceededException, CapacityProviderLimitExceededException$1);
@@ -1482,6 +1678,54 @@ var CapacityProviderScalingConfig = [
1482
1678
  [1, 0, () => CapacityProviderScalingPoliciesList],
1483
1679
  ];
1484
1680
  var CapacityProviderVpcConfig = [3, n0, _CPVC, 0, [_SIu, _SGI], [64 | 0, 64 | 0]];
1681
+ var ChainedInvokeDetails = [
1682
+ 3,
1683
+ n0,
1684
+ _CID,
1685
+ 0,
1686
+ [_R, _E],
1687
+ [
1688
+ [() => OperationPayload, 0],
1689
+ [() => ErrorObject, 0],
1690
+ ],
1691
+ ];
1692
+ var ChainedInvokeFailedDetails = [3, n0, _CIFD, 0, [_E], [[() => EventError, 0]]];
1693
+ var ChainedInvokeOptions = [3, n0, _CIO, 0, [_FN, _TI], [0, 0]];
1694
+ var ChainedInvokeStartedDetails = [
1695
+ 3,
1696
+ n0,
1697
+ _CISD,
1698
+ 0,
1699
+ [_FN, _TI, _I, _EV, _DEA],
1700
+ [0, 0, [() => EventInput, 0], 0, 0],
1701
+ ];
1702
+ var ChainedInvokeStoppedDetails = [3, n0, _CISDh, 0, [_E], [[() => EventError, 0]]];
1703
+ var ChainedInvokeSucceededDetails = [3, n0, _CISDha, 0, [_R], [[() => EventResult, 0]]];
1704
+ var ChainedInvokeTimedOutDetails = [3, n0, _CITOD, 0, [_E], [[() => EventError, 0]]];
1705
+ var CheckpointDurableExecutionRequest = [
1706
+ 3,
1707
+ n0,
1708
+ _CDER,
1709
+ 0,
1710
+ [_DEA, _CT, _U, _CTl],
1711
+ [[0, 1], 0, [() => OperationUpdates, 0], [0, 4]],
1712
+ ];
1713
+ var CheckpointDurableExecutionResponse = [
1714
+ 3,
1715
+ n0,
1716
+ _CDERh,
1717
+ 0,
1718
+ [_CT, _NES],
1719
+ [0, [() => CheckpointUpdatedExecutionState, 0]],
1720
+ ];
1721
+ var CheckpointUpdatedExecutionState = [
1722
+ 3,
1723
+ n0,
1724
+ _CUES,
1725
+ 0,
1726
+ [_O, _NM],
1727
+ [[() => Operations, 0], 0],
1728
+ ];
1485
1729
  var CodeSigningConfig = [
1486
1730
  3,
1487
1731
  n0,
@@ -1498,7 +1742,7 @@ var CodeSigningConfigNotFoundException = [
1498
1742
  [_e]: _c,
1499
1743
  [_hE]: 404,
1500
1744
  },
1501
- [_T, _M],
1745
+ [_Ty, _M],
1502
1746
  [0, 0],
1503
1747
  ];
1504
1748
  schema.TypeRegistry.for(n0).registerError(CodeSigningConfigNotFoundException, CodeSigningConfigNotFoundException$1);
@@ -1511,7 +1755,7 @@ var CodeStorageExceededException = [
1511
1755
  [_e]: _c,
1512
1756
  [_hE]: 400,
1513
1757
  },
1514
- [_T, _m],
1758
+ [_Ty, _m],
1515
1759
  [0, 0],
1516
1760
  ];
1517
1761
  schema.TypeRegistry.for(n0).registerError(CodeStorageExceededException, CodeStorageExceededException$1);
@@ -1523,11 +1767,23 @@ var CodeVerificationFailedException = [
1523
1767
  [_e]: _c,
1524
1768
  [_hE]: 400,
1525
1769
  },
1526
- [_T, _M],
1770
+ [_Ty, _M],
1527
1771
  [0, 0],
1528
1772
  ];
1529
1773
  schema.TypeRegistry.for(n0).registerError(CodeVerificationFailedException, CodeVerificationFailedException$1);
1530
1774
  var Concurrency = [3, n0, _C, 0, [_RCE], [1]];
1775
+ var ContextDetails = [
1776
+ 3,
1777
+ n0,
1778
+ _CDo,
1779
+ 0,
1780
+ [_RCe, _R, _E],
1781
+ [2, [() => OperationPayload, 0], [() => ErrorObject, 0]],
1782
+ ];
1783
+ var ContextFailedDetails = [3, n0, _CFDo, 0, [_E], [[() => EventError, 0]]];
1784
+ var ContextOptions = [3, n0, _COo, 0, [_RCe], [2]];
1785
+ var ContextStartedDetails = [3, n0, _CSDo, 0, [], []];
1786
+ var ContextSucceededDetails = [3, n0, _CSDon, 0, [_R], [[() => EventResult, 0]]];
1531
1787
  var Cors = [
1532
1788
  3,
1533
1789
  n0,
@@ -1585,7 +1841,7 @@ var CreateEventSourceMappingRequest = [
1585
1841
  [
1586
1842
  _ESA,
1587
1843
  _FN,
1588
- _E,
1844
+ _En,
1589
1845
  _BSa,
1590
1846
  _FCi,
1591
1847
  _MBWIS,
@@ -1648,18 +1904,18 @@ var CreateFunctionRequest = [
1648
1904
  0,
1649
1905
  [
1650
1906
  _FN,
1651
- _R,
1907
+ _Ru,
1652
1908
  _Ro,
1653
1909
  _H,
1654
1910
  _Cod,
1655
1911
  _D,
1656
- _Ti,
1912
+ _T,
1657
1913
  _MS,
1658
1914
  _Pu,
1659
1915
  _VC,
1660
1916
  _PT,
1661
1917
  _DLC,
1662
- _En,
1918
+ _Env,
1663
1919
  _KMSKA,
1664
1920
  _TC,
1665
1921
  _Ta,
@@ -1673,6 +1929,7 @@ var CreateFunctionRequest = [
1673
1929
  _LC,
1674
1930
  _CPC,
1675
1931
  _PTu,
1932
+ _DCu,
1676
1933
  _TCe,
1677
1934
  ],
1678
1935
  [
@@ -1702,6 +1959,7 @@ var CreateFunctionRequest = [
1702
1959
  () => LoggingConfig,
1703
1960
  () => CapacityProviderConfig,
1704
1961
  0,
1962
+ () => DurableConfig,
1705
1963
  () => TenancyConfig,
1706
1964
  ],
1707
1965
  ];
@@ -1729,7 +1987,7 @@ var CreateFunctionUrlConfigResponse = [
1729
1987
  n0,
1730
1988
  _CFUCRr,
1731
1989
  0,
1732
- [_FU, _FA, _AT, _Co, _CT, _IM],
1990
+ [_FU, _FA, _AT, _Co, _CTr, _IM],
1733
1991
  [0, 0, 0, () => Cors, 0, 0],
1734
1992
  ];
1735
1993
  var DeadLetterConfig = [3, n0, _DLC, 0, [_TA], [0]];
@@ -1829,6 +2087,19 @@ var DeleteProvisionedConcurrencyConfigRequest = [
1829
2087
  ];
1830
2088
  var DestinationConfig = [3, n0, _DC, 0, [_OS, _OF], [() => OnSuccess, () => OnFailure]];
1831
2089
  var DocumentDBEventSourceConfig = [3, n0, _DDBESC, 0, [_DN, _CN, _FD], [0, 0, 0]];
2090
+ var DurableConfig = [3, n0, _DCu, 0, [_RPID, _ETx], [1, 1]];
2091
+ var DurableExecutionAlreadyStartedException = [
2092
+ -3,
2093
+ n0,
2094
+ _DEASE,
2095
+ {
2096
+ [_e]: _c,
2097
+ [_hE]: 409,
2098
+ },
2099
+ [_Ty, _M],
2100
+ [0, 0],
2101
+ ];
2102
+ schema.TypeRegistry.for(n0).registerError(DurableExecutionAlreadyStartedException, DurableExecutionAlreadyStartedException$1);
1832
2103
  var EC2AccessDeniedException = [
1833
2104
  -3,
1834
2105
  n0,
@@ -1837,7 +2108,7 @@ var EC2AccessDeniedException = [
1837
2108
  [_e]: _se,
1838
2109
  [_hE]: 502,
1839
2110
  },
1840
- [_T, _M],
2111
+ [_Ty, _M],
1841
2112
  [0, 0],
1842
2113
  ];
1843
2114
  schema.TypeRegistry.for(n0).registerError(EC2AccessDeniedException, EC2AccessDeniedException$1);
@@ -1849,7 +2120,7 @@ var EC2ThrottledException = [
1849
2120
  [_e]: _se,
1850
2121
  [_hE]: 502,
1851
2122
  },
1852
- [_T, _M],
2123
+ [_Ty, _M],
1853
2124
  [0, 0],
1854
2125
  ];
1855
2126
  schema.TypeRegistry.for(n0).registerError(EC2ThrottledException, EC2ThrottledException$1);
@@ -1861,7 +2132,7 @@ var EC2UnexpectedException = [
1861
2132
  [_e]: _se,
1862
2133
  [_hE]: 502,
1863
2134
  },
1864
- [_T, _M, _ECEC],
2135
+ [_Ty, _M, _ECEC],
1865
2136
  [0, 0, 0],
1866
2137
  ];
1867
2138
  schema.TypeRegistry.for(n0).registerError(EC2UnexpectedException, EC2UnexpectedException$1);
@@ -1873,7 +2144,7 @@ var EFSIOException = [
1873
2144
  [_e]: _c,
1874
2145
  [_hE]: 410,
1875
2146
  },
1876
- [_T, _M],
2147
+ [_Ty, _M],
1877
2148
  [0, 0],
1878
2149
  ];
1879
2150
  schema.TypeRegistry.for(n0).registerError(EFSIOException, EFSIOException$1);
@@ -1885,7 +2156,7 @@ var EFSMountConnectivityException = [
1885
2156
  [_e]: _c,
1886
2157
  [_hE]: 408,
1887
2158
  },
1888
- [_T, _M],
2159
+ [_Ty, _M],
1889
2160
  [0, 0],
1890
2161
  ];
1891
2162
  schema.TypeRegistry.for(n0).registerError(EFSMountConnectivityException, EFSMountConnectivityException$1);
@@ -1897,7 +2168,7 @@ var EFSMountFailureException = [
1897
2168
  [_e]: _c,
1898
2169
  [_hE]: 403,
1899
2170
  },
1900
- [_T, _M],
2171
+ [_Ty, _M],
1901
2172
  [0, 0],
1902
2173
  ];
1903
2174
  schema.TypeRegistry.for(n0).registerError(EFSMountFailureException, EFSMountFailureException$1);
@@ -1909,7 +2180,7 @@ var EFSMountTimeoutException = [
1909
2180
  [_e]: _c,
1910
2181
  [_hE]: 408,
1911
2182
  },
1912
- [_T, _M],
2183
+ [_Ty, _M],
1913
2184
  [0, 0],
1914
2185
  ];
1915
2186
  schema.TypeRegistry.for(n0).registerError(EFSMountTimeoutException, EFSMountTimeoutException$1);
@@ -1921,24 +2192,112 @@ var ENILimitReachedException = [
1921
2192
  [_e]: _se,
1922
2193
  [_hE]: 502,
1923
2194
  },
1924
- [_T, _M],
2195
+ [_Ty, _M],
1925
2196
  [0, 0],
1926
2197
  ];
1927
2198
  schema.TypeRegistry.for(n0).registerError(ENILimitReachedException, ENILimitReachedException$1);
1928
- var Environment = [3, n0, _En, 0, [_V], [[() => EnvironmentVariables, 0]]];
2199
+ var Environment = [3, n0, _Env, 0, [_V], [[() => EnvironmentVariables, 0]]];
1929
2200
  var EnvironmentError = [3, n0, _EE, 0, [_EC, _M], [0, [() => SensitiveString, 0]]];
1930
2201
  var EnvironmentResponse = [
1931
2202
  3,
1932
2203
  n0,
1933
2204
  _ER,
1934
2205
  0,
1935
- [_V, _Er],
2206
+ [_V, _E],
1936
2207
  [
1937
2208
  [() => EnvironmentVariables, 0],
1938
2209
  [() => EnvironmentError, 0],
1939
2210
  ],
1940
2211
  ];
1941
2212
  var EphemeralStorage = [3, n0, _ES, 0, [_Si], [1]];
2213
+ var ErrorObject = [
2214
+ 3,
2215
+ n0,
2216
+ _EO,
2217
+ 0,
2218
+ [_EM, _ET, _ED, _ST],
2219
+ [
2220
+ [() => ErrorMessage, 0],
2221
+ [() => ErrorType, 0],
2222
+ [() => ErrorData, 0],
2223
+ [() => StackTraceEntries, 0],
2224
+ ],
2225
+ ];
2226
+ var Event = [
2227
+ 3,
2228
+ n0,
2229
+ _Ev,
2230
+ 0,
2231
+ [
2232
+ _ETv,
2233
+ _STu,
2234
+ _EI,
2235
+ _Id,
2236
+ _N,
2237
+ _ETve,
2238
+ _PI,
2239
+ _ESD,
2240
+ _ESDx,
2241
+ _EFD,
2242
+ _ETOD,
2243
+ _ESDxe,
2244
+ _CSDo,
2245
+ _CSDon,
2246
+ _CFDo,
2247
+ _WSD,
2248
+ _WSDa,
2249
+ _WCD,
2250
+ _SSD,
2251
+ _SSDt,
2252
+ _SFD,
2253
+ _CISD,
2254
+ _CISDha,
2255
+ _CIFD,
2256
+ _CITOD,
2257
+ _CISDh,
2258
+ _CSD,
2259
+ _CSDa,
2260
+ _CFD,
2261
+ _CTOD,
2262
+ _ICD,
2263
+ ],
2264
+ [
2265
+ 0,
2266
+ 0,
2267
+ 1,
2268
+ 0,
2269
+ 0,
2270
+ 4,
2271
+ 0,
2272
+ [() => ExecutionStartedDetails, 0],
2273
+ [() => ExecutionSucceededDetails, 0],
2274
+ [() => ExecutionFailedDetails, 0],
2275
+ [() => ExecutionTimedOutDetails, 0],
2276
+ [() => ExecutionStoppedDetails, 0],
2277
+ () => ContextStartedDetails,
2278
+ [() => ContextSucceededDetails, 0],
2279
+ [() => ContextFailedDetails, 0],
2280
+ () => WaitStartedDetails,
2281
+ () => WaitSucceededDetails,
2282
+ [() => WaitCancelledDetails, 0],
2283
+ () => StepStartedDetails,
2284
+ [() => StepSucceededDetails, 0],
2285
+ [() => StepFailedDetails, 0],
2286
+ [() => ChainedInvokeStartedDetails, 0],
2287
+ [() => ChainedInvokeSucceededDetails, 0],
2288
+ [() => ChainedInvokeFailedDetails, 0],
2289
+ [() => ChainedInvokeTimedOutDetails, 0],
2290
+ [() => ChainedInvokeStoppedDetails, 0],
2291
+ () => CallbackStartedDetails,
2292
+ [() => CallbackSucceededDetails, 0],
2293
+ [() => CallbackFailedDetails, 0],
2294
+ [() => CallbackTimedOutDetails, 0],
2295
+ [() => InvocationCompletedDetails, 0],
2296
+ ],
2297
+ ];
2298
+ var EventError = [3, n0, _EEv, 0, [_Pa, _Tr], [[() => ErrorObject, 0], 2]];
2299
+ var EventInput = [3, n0, _EIv, 0, [_Pa, _Tr], [[() => InputPayload, 0], 2]];
2300
+ var EventResult = [3, n0, _ERv, 0, [_Pa, _Tr], [[() => OperationPayload, 0], 2]];
1942
2301
  var EventSourceMappingConfiguration = [
1943
2302
  3,
1944
2303
  n0,
@@ -2014,8 +2373,15 @@ var EventSourceMappingConfiguration = [
2014
2373
  ],
2015
2374
  ];
2016
2375
  var EventSourceMappingMetricsConfig = [3, n0, _ESMMC, 0, [_Me], [64 | 0]];
2376
+ var Execution = [3, n0, _Ex, 0, [_DEA, _DEN, _FA, _Sta, _STt, _ETn], [0, 0, 0, 0, 4, 4]];
2377
+ var ExecutionDetails = [3, n0, _EDx, 0, [_IP], [[() => InputPayload, 0]]];
2378
+ var ExecutionFailedDetails = [3, n0, _EFD, 0, [_E], [[() => EventError, 0]]];
2379
+ var ExecutionStartedDetails = [3, n0, _ESD, 0, [_I, _ETx], [[() => EventInput, 0], 1]];
2380
+ var ExecutionStoppedDetails = [3, n0, _ESDxe, 0, [_E], [[() => EventError, 0]]];
2381
+ var ExecutionSucceededDetails = [3, n0, _ESDx, 0, [_R], [[() => EventResult, 0]]];
2382
+ var ExecutionTimedOutDetails = [3, n0, _ETOD, 0, [_E], [[() => EventError, 0]]];
2017
2383
  var FileSystemConfig = [3, n0, _FSCi, 0, [_Arn, _LMP], [0, 0]];
2018
- var Filter = [3, n0, _F, 0, [_Pa], [0]];
2384
+ var Filter = [3, n0, _F, 0, [_Pat], [0]];
2019
2385
  var FilterCriteria = [3, n0, _FCi, 0, [_Fi], [() => FilterList]];
2020
2386
  var FilterCriteriaError = [3, n0, _FCE, 0, [_EC, _M], [0, 0]];
2021
2387
  var FunctionCode = [
@@ -2042,19 +2408,19 @@ var FunctionConfiguration = [
2042
2408
  [
2043
2409
  _FN,
2044
2410
  _FA,
2045
- _R,
2411
+ _Ru,
2046
2412
  _Ro,
2047
2413
  _H,
2048
2414
  _CS,
2049
2415
  _D,
2050
- _Ti,
2416
+ _T,
2051
2417
  _MS,
2052
2418
  _LM,
2053
2419
  _CSo,
2054
2420
  _Ve,
2055
2421
  _VC,
2056
2422
  _DLC,
2057
- _En,
2423
+ _Env,
2058
2424
  _KMSKA,
2059
2425
  _TC,
2060
2426
  _MAa,
@@ -2078,6 +2444,7 @@ var FunctionConfiguration = [
2078
2444
  _LC,
2079
2445
  _CPC,
2080
2446
  _CSon,
2447
+ _DCu,
2081
2448
  _TCe,
2082
2449
  ],
2083
2450
  [
@@ -2119,6 +2486,7 @@ var FunctionConfiguration = [
2119
2486
  () => LoggingConfig,
2120
2487
  () => CapacityProviderConfig,
2121
2488
  0,
2489
+ () => DurableConfig,
2122
2490
  () => TenancyConfig,
2123
2491
  ],
2124
2492
  ];
@@ -2136,7 +2504,7 @@ var FunctionUrlConfig = [
2136
2504
  n0,
2137
2505
  _FUC,
2138
2506
  0,
2139
- [_FU, _FA, _CT, _LMT, _Co, _AT, _IM],
2507
+ [_FU, _FA, _CTr, _LMT, _Co, _AT, _IM],
2140
2508
  [0, 0, 0, 0, () => Cors, 0, 0],
2141
2509
  ];
2142
2510
  var FunctionVersionsByCapacityProviderListItem = [3, n0, _FVBCPLI, 0, [_FA, _St], [0, 0]];
@@ -2148,7 +2516,7 @@ var FunctionVersionsPerCapacityProviderLimitExceededException = [
2148
2516
  [_e]: _c,
2149
2517
  [_hE]: 400,
2150
2518
  },
2151
- [_T, _m],
2519
+ [_Ty, _m],
2152
2520
  [0, 0],
2153
2521
  ];
2154
2522
  schema.TypeRegistry.for(n0).registerError(FunctionVersionsPerCapacityProviderLimitExceededException, FunctionVersionsPerCapacityProviderLimitExceededException$1);
@@ -2176,6 +2544,93 @@ var GetCapacityProviderRequest = [3, n0, _GCPR, 0, [_CPN], [[0, 1]]];
2176
2544
  var GetCapacityProviderResponse = [3, n0, _GCPRe, 0, [_CP], [() => CapacityProvider]];
2177
2545
  var GetCodeSigningConfigRequest = [3, n0, _GCSCR, 0, [_CSCA], [[0, 1]]];
2178
2546
  var GetCodeSigningConfigResponse = [3, n0, _GCSCRe, 0, [_CSC], [() => CodeSigningConfig]];
2547
+ var GetDurableExecutionHistoryRequest = [
2548
+ 3,
2549
+ n0,
2550
+ _GDEHR,
2551
+ 0,
2552
+ [_DEA, _IED, _MI, _Ma, _RO],
2553
+ [
2554
+ [0, 1],
2555
+ [
2556
+ 2,
2557
+ {
2558
+ [_hQ]: _IED,
2559
+ },
2560
+ ],
2561
+ [
2562
+ 1,
2563
+ {
2564
+ [_hQ]: _MI,
2565
+ },
2566
+ ],
2567
+ [
2568
+ 0,
2569
+ {
2570
+ [_hQ]: _Ma,
2571
+ },
2572
+ ],
2573
+ [
2574
+ 2,
2575
+ {
2576
+ [_hQ]: _RO,
2577
+ },
2578
+ ],
2579
+ ],
2580
+ ];
2581
+ var GetDurableExecutionHistoryResponse = [
2582
+ 3,
2583
+ n0,
2584
+ _GDEHRe,
2585
+ 0,
2586
+ [_Eve, _NM],
2587
+ [[() => Events, 0], 0],
2588
+ ];
2589
+ var GetDurableExecutionRequest = [3, n0, _GDER, 0, [_DEA], [[0, 1]]];
2590
+ var GetDurableExecutionResponse = [
2591
+ 3,
2592
+ n0,
2593
+ _GDERe,
2594
+ 0,
2595
+ [_DEA, _DEN, _FA, _IP, _R, _E, _STt, _Sta, _ETn, _Ve, _TH],
2596
+ [0, 0, 0, [() => InputPayload, 0], [() => OutputPayload, 0], [() => ErrorObject, 0], 4, 0, 4, 0, () => TraceHeader],
2597
+ ];
2598
+ var GetDurableExecutionStateRequest = [
2599
+ 3,
2600
+ n0,
2601
+ _GDESR,
2602
+ 0,
2603
+ [_DEA, _CT, _Ma, _MI],
2604
+ [
2605
+ [0, 1],
2606
+ [
2607
+ 0,
2608
+ {
2609
+ [_hQ]: _CT,
2610
+ },
2611
+ ],
2612
+ [
2613
+ 0,
2614
+ {
2615
+ [_hQ]: _Ma,
2616
+ },
2617
+ ],
2618
+ [
2619
+ 1,
2620
+ {
2621
+ [_hQ]: _MI,
2622
+ },
2623
+ ],
2624
+ ],
2625
+ ];
2626
+ var GetDurableExecutionStateResponse = [
2627
+ 3,
2628
+ n0,
2629
+ _GDESRe,
2630
+ 0,
2631
+ [_O, _NM],
2632
+ [[() => Operations, 0], 0],
2633
+ ];
2179
2634
  var GetEventSourceMappingRequest = [3, n0, _GESMR, 0, [_UUID], [[0, 1]]];
2180
2635
  var GetFunctionCodeSigningConfigRequest = [3, n0, _GFCSCR, 0, [_FN], [[0, 1]]];
2181
2636
  var GetFunctionCodeSigningConfigResponse = [3, n0, _GFCSCRe, 0, [_CSCA, _FN], [0, 0]];
@@ -2284,7 +2739,7 @@ var GetFunctionUrlConfigResponse = [
2284
2739
  n0,
2285
2740
  _GFUCRe,
2286
2741
  0,
2287
- [_FU, _FA, _AT, _Co, _CT, _LMT, _IM],
2742
+ [_FU, _FA, _AT, _Co, _CTr, _LMT, _IM],
2288
2743
  [0, 0, 0, () => Cors, 0, 0, 0],
2289
2744
  ];
2290
2745
  var GetLayerVersionByArnRequest = [
@@ -2330,7 +2785,7 @@ var GetLayerVersionResponse = [
2330
2785
  n0,
2331
2786
  _GLVRe,
2332
2787
  0,
2333
- [_Cont, _LA, _LVA, _D, _CD, _Ve, _CR, _LI, _CA],
2788
+ [_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI, _CA],
2334
2789
  [() => LayerVersionContentOutput, 0, 0, 0, 0, 1, 64 | 0, 0, 64 | 0],
2335
2790
  ];
2336
2791
  var GetPolicyRequest = [
@@ -2405,7 +2860,7 @@ var ImageConfigResponse = [
2405
2860
  n0,
2406
2861
  _ICR,
2407
2862
  0,
2408
- [_IC, _Er],
2863
+ [_IC, _E],
2409
2864
  [() => ImageConfig, [() => ImageConfigError, 0]],
2410
2865
  ];
2411
2866
  var InstanceRequirements = [3, n0, _IR, 0, [_Ar, _AIT, _EIT], [64 | 0, 64 | 0, 64 | 0]];
@@ -2417,7 +2872,7 @@ var InvalidCodeSignatureException = [
2417
2872
  [_e]: _c,
2418
2873
  [_hE]: 400,
2419
2874
  },
2420
- [_T, _M],
2875
+ [_Ty, _M],
2421
2876
  [0, 0],
2422
2877
  ];
2423
2878
  schema.TypeRegistry.for(n0).registerError(InvalidCodeSignatureException, InvalidCodeSignatureException$1);
@@ -2429,7 +2884,7 @@ var InvalidParameterValueException = [
2429
2884
  [_e]: _c,
2430
2885
  [_hE]: 400,
2431
2886
  },
2432
- [_T, _m],
2887
+ [_Ty, _m],
2433
2888
  [0, 0],
2434
2889
  ];
2435
2890
  schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException, InvalidParameterValueException$1);
@@ -2441,7 +2896,7 @@ var InvalidRequestContentException = [
2441
2896
  [_e]: _c,
2442
2897
  [_hE]: 400,
2443
2898
  },
2444
- [_T, _m],
2899
+ [_Ty, _m],
2445
2900
  [0, 0],
2446
2901
  ];
2447
2902
  schema.TypeRegistry.for(n0).registerError(InvalidRequestContentException, InvalidRequestContentException$1);
@@ -2453,7 +2908,7 @@ var InvalidRuntimeException = [
2453
2908
  [_e]: _se,
2454
2909
  [_hE]: 502,
2455
2910
  },
2456
- [_T, _M],
2911
+ [_Ty, _M],
2457
2912
  [0, 0],
2458
2913
  ];
2459
2914
  schema.TypeRegistry.for(n0).registerError(InvalidRuntimeException, InvalidRuntimeException$1);
@@ -2465,7 +2920,7 @@ var InvalidSecurityGroupIDException = [
2465
2920
  [_e]: _se,
2466
2921
  [_hE]: 502,
2467
2922
  },
2468
- [_T, _M],
2923
+ [_Ty, _M],
2469
2924
  [0, 0],
2470
2925
  ];
2471
2926
  schema.TypeRegistry.for(n0).registerError(InvalidSecurityGroupIDException, InvalidSecurityGroupIDException$1);
@@ -2477,7 +2932,7 @@ var InvalidSubnetIDException = [
2477
2932
  [_e]: _se,
2478
2933
  [_hE]: 502,
2479
2934
  },
2480
- [_T, _M],
2935
+ [_Ty, _M],
2481
2936
  [0, 0],
2482
2937
  ];
2483
2938
  schema.TypeRegistry.for(n0).registerError(InvalidSubnetIDException, InvalidSubnetIDException$1);
@@ -2489,16 +2944,24 @@ var InvalidZipFileException = [
2489
2944
  [_e]: _se,
2490
2945
  [_hE]: 502,
2491
2946
  },
2492
- [_T, _M],
2947
+ [_Ty, _M],
2493
2948
  [0, 0],
2494
2949
  ];
2495
2950
  schema.TypeRegistry.for(n0).registerError(InvalidZipFileException, InvalidZipFileException$1);
2951
+ var InvocationCompletedDetails = [
2952
+ 3,
2953
+ n0,
2954
+ _ICD,
2955
+ 0,
2956
+ [_STt, _ETn, _RIe, _E],
2957
+ [4, 4, 0, [() => EventError, 0]],
2958
+ ];
2496
2959
  var InvocationRequest = [
2497
2960
  3,
2498
2961
  n0,
2499
2962
  _IRn,
2500
2963
  0,
2501
- [_FN, _IT, _LT, _CC, _Pay, _Q, _TI],
2964
+ [_FN, _IT, _LT, _CC, _DEN, _Pa, _Q, _TI],
2502
2965
  [
2503
2966
  [0, 1],
2504
2967
  [
@@ -2519,6 +2982,12 @@ var InvocationRequest = [
2519
2982
  [_hH]: _XACC,
2520
2983
  },
2521
2984
  ],
2985
+ [
2986
+ 0,
2987
+ {
2988
+ [_hH]: _XADEN,
2989
+ },
2990
+ ],
2522
2991
  [() => _Blob, 16],
2523
2992
  [
2524
2993
  0,
@@ -2539,7 +3008,7 @@ var InvocationResponse = [
2539
3008
  n0,
2540
3009
  _IRnv,
2541
3010
  0,
2542
- [_SCt, _FE, _LR, _Pay, _EV],
3011
+ [_SCt, _FE, _LR, _Pa, _EV, _DEA],
2543
3012
  [
2544
3013
  [1, 32],
2545
3014
  [
@@ -2561,6 +3030,12 @@ var InvocationResponse = [
2561
3030
  [_hH]: _XAEV,
2562
3031
  },
2563
3032
  ],
3033
+ [
3034
+ 0,
3035
+ {
3036
+ [_hH]: _XADEA,
3037
+ },
3038
+ ],
2564
3039
  ],
2565
3040
  ];
2566
3041
  var InvokeAsyncRequest = [
@@ -2580,7 +3055,7 @@ var InvokeResponseStreamUpdate = [
2580
3055
  n0,
2581
3056
  _IRSU,
2582
3057
  0,
2583
- [_Pay],
3058
+ [_Pa],
2584
3059
  [
2585
3060
  [
2586
3061
  () => _Blob,
@@ -2595,7 +3070,7 @@ var InvokeWithResponseStreamCompleteEvent = [
2595
3070
  n0,
2596
3071
  _IWRSCE,
2597
3072
  0,
2598
- [_EC, _ED, _LR],
3073
+ [_EC, _EDr, _LR],
2599
3074
  [0, 0, 0],
2600
3075
  ];
2601
3076
  var InvokeWithResponseStreamRequest = [
@@ -2603,7 +3078,7 @@ var InvokeWithResponseStreamRequest = [
2603
3078
  n0,
2604
3079
  _IWRSR,
2605
3080
  0,
2606
- [_FN, _IT, _LT, _CC, _Q, _Pay, _TI],
3081
+ [_FN, _IT, _LT, _CC, _Q, _Pa, _TI],
2607
3082
  [
2608
3083
  [0, 1],
2609
3084
  [
@@ -2662,7 +3137,7 @@ var InvokeWithResponseStreamResponse = [
2662
3137
  ],
2663
3138
  ],
2664
3139
  ];
2665
- var KafkaSchemaRegistryAccessConfig = [3, n0, _KSRAC, 0, [_T, _URI], [0, 0]];
3140
+ var KafkaSchemaRegistryAccessConfig = [3, n0, _KSRAC, 0, [_Ty, _URI], [0, 0]];
2666
3141
  var KafkaSchemaRegistryConfig = [
2667
3142
  3,
2668
3143
  n0,
@@ -2680,7 +3155,7 @@ var KMSAccessDeniedException = [
2680
3155
  [_e]: _se,
2681
3156
  [_hE]: 502,
2682
3157
  },
2683
- [_T, _M],
3158
+ [_Ty, _M],
2684
3159
  [0, 0],
2685
3160
  ];
2686
3161
  schema.TypeRegistry.for(n0).registerError(KMSAccessDeniedException, KMSAccessDeniedException$1);
@@ -2692,7 +3167,7 @@ var KMSDisabledException = [
2692
3167
  [_e]: _se,
2693
3168
  [_hE]: 502,
2694
3169
  },
2695
- [_T, _M],
3170
+ [_Ty, _M],
2696
3171
  [0, 0],
2697
3172
  ];
2698
3173
  schema.TypeRegistry.for(n0).registerError(KMSDisabledException, KMSDisabledException$1);
@@ -2704,7 +3179,7 @@ var KMSInvalidStateException = [
2704
3179
  [_e]: _se,
2705
3180
  [_hE]: 502,
2706
3181
  },
2707
- [_T, _M],
3182
+ [_Ty, _M],
2708
3183
  [0, 0],
2709
3184
  ];
2710
3185
  schema.TypeRegistry.for(n0).registerError(KMSInvalidStateException, KMSInvalidStateException$1);
@@ -2716,7 +3191,7 @@ var KMSNotFoundException = [
2716
3191
  [_e]: _se,
2717
3192
  [_hE]: 502,
2718
3193
  },
2719
- [_T, _M],
3194
+ [_Ty, _M],
2720
3195
  [0, 0],
2721
3196
  ];
2722
3197
  schema.TypeRegistry.for(n0).registerError(KMSNotFoundException, KMSNotFoundException$1);
@@ -2758,7 +3233,7 @@ var LayerVersionsListItem = [
2758
3233
  n0,
2759
3234
  _LVLI,
2760
3235
  0,
2761
- [_LVA, _Ve, _D, _CD, _CR, _LI, _CA],
3236
+ [_LVA, _Ve, _D, _CDr, _CR, _LI, _CA],
2762
3237
  [0, 1, 0, 0, 64 | 0, 0, 64 | 0],
2763
3238
  ];
2764
3239
  var ListAliasesRequest = [
@@ -2854,6 +3329,72 @@ var ListCodeSigningConfigsResponse = [
2854
3329
  [_NM, _CSCo],
2855
3330
  [0, () => CodeSigningConfigList],
2856
3331
  ];
3332
+ var ListDurableExecutionsByFunctionRequest = [
3333
+ 3,
3334
+ n0,
3335
+ _LDEBFR,
3336
+ 0,
3337
+ [_FN, _Q, _DEN, _Stat, _SAt, _SBt, _RO, _Ma, _MI],
3338
+ [
3339
+ [0, 1],
3340
+ [
3341
+ 0,
3342
+ {
3343
+ [_hQ]: _Q,
3344
+ },
3345
+ ],
3346
+ [
3347
+ 0,
3348
+ {
3349
+ [_hQ]: _DEN,
3350
+ },
3351
+ ],
3352
+ [
3353
+ 64 | 0,
3354
+ {
3355
+ [_hQ]: _Stat,
3356
+ },
3357
+ ],
3358
+ [
3359
+ 4,
3360
+ {
3361
+ [_hQ]: _SAt,
3362
+ },
3363
+ ],
3364
+ [
3365
+ 4,
3366
+ {
3367
+ [_hQ]: _SBt,
3368
+ },
3369
+ ],
3370
+ [
3371
+ 2,
3372
+ {
3373
+ [_hQ]: _RO,
3374
+ },
3375
+ ],
3376
+ [
3377
+ 0,
3378
+ {
3379
+ [_hQ]: _Ma,
3380
+ },
3381
+ ],
3382
+ [
3383
+ 1,
3384
+ {
3385
+ [_hQ]: _MI,
3386
+ },
3387
+ ],
3388
+ ],
3389
+ ];
3390
+ var ListDurableExecutionsByFunctionResponse = [
3391
+ 3,
3392
+ n0,
3393
+ _LDEBFRi,
3394
+ 0,
3395
+ [_DE, _NM],
3396
+ [() => DurableExecutions, 0],
3397
+ ];
2857
3398
  var ListEventSourceMappingsRequest = [
2858
3399
  3,
2859
3400
  n0,
@@ -3196,12 +3737,57 @@ var NoPublishedVersionException = [
3196
3737
  [_e]: _c,
3197
3738
  [_hE]: 400,
3198
3739
  },
3199
- [_T, _M],
3740
+ [_Ty, _M],
3200
3741
  [0, 0],
3201
3742
  ];
3202
3743
  schema.TypeRegistry.for(n0).registerError(NoPublishedVersionException, NoPublishedVersionException$1);
3203
3744
  var OnFailure = [3, n0, _OF, 0, [_De], [0]];
3204
3745
  var OnSuccess = [3, n0, _OS, 0, [_De], [0]];
3746
+ var Operation = [
3747
+ 3,
3748
+ n0,
3749
+ _Op,
3750
+ 0,
3751
+ [_Id, _PI, _N, _Ty, _STu, _STt, _ETn, _Sta, _EDx, _CDo, _SD, _WDa, _CD, _CID],
3752
+ [
3753
+ 0,
3754
+ 0,
3755
+ 0,
3756
+ 0,
3757
+ 0,
3758
+ 4,
3759
+ 4,
3760
+ 0,
3761
+ [() => ExecutionDetails, 0],
3762
+ [() => ContextDetails, 0],
3763
+ [() => StepDetails, 0],
3764
+ () => WaitDetails,
3765
+ [() => CallbackDetails, 0],
3766
+ [() => ChainedInvokeDetails, 0],
3767
+ ],
3768
+ ];
3769
+ var OperationUpdate = [
3770
+ 3,
3771
+ n0,
3772
+ _OU,
3773
+ 0,
3774
+ [_Id, _PI, _N, _Ty, _STu, _A, _Pa, _E, _COo, _SO, _WO, _CO, _CIO],
3775
+ [
3776
+ 0,
3777
+ 0,
3778
+ 0,
3779
+ 0,
3780
+ 0,
3781
+ 0,
3782
+ [() => OperationPayload, 0],
3783
+ [() => ErrorObject, 0],
3784
+ () => ContextOptions,
3785
+ () => StepOptions,
3786
+ () => WaitOptions,
3787
+ () => CallbackOptions,
3788
+ () => ChainedInvokeOptions,
3789
+ ],
3790
+ ];
3205
3791
  var PolicyLengthExceededException = [
3206
3792
  -3,
3207
3793
  n0,
@@ -3210,7 +3796,7 @@ var PolicyLengthExceededException = [
3210
3796
  [_e]: _c,
3211
3797
  [_hE]: 400,
3212
3798
  },
3213
- [_T, _m],
3799
+ [_Ty, _m],
3214
3800
  [0, 0],
3215
3801
  ];
3216
3802
  schema.TypeRegistry.for(n0).registerError(PolicyLengthExceededException, PolicyLengthExceededException$1);
@@ -3222,7 +3808,7 @@ var PreconditionFailedException = [
3222
3808
  [_e]: _c,
3223
3809
  [_hE]: 412,
3224
3810
  },
3225
- [_T, _m],
3811
+ [_Ty, _m],
3226
3812
  [0, 0],
3227
3813
  ];
3228
3814
  schema.TypeRegistry.for(n0).registerError(PreconditionFailedException, PreconditionFailedException$1);
@@ -3242,7 +3828,7 @@ var ProvisionedConcurrencyConfigNotFoundException = [
3242
3828
  [_e]: _c,
3243
3829
  [_hE]: 404,
3244
3830
  },
3245
- [_T, _m],
3831
+ [_Ty, _m],
3246
3832
  [0, 0],
3247
3833
  ];
3248
3834
  schema.TypeRegistry.for(n0).registerError(ProvisionedConcurrencyConfigNotFoundException, ProvisionedConcurrencyConfigNotFoundException$1);
@@ -3260,7 +3846,7 @@ var PublishLayerVersionResponse = [
3260
3846
  n0,
3261
3847
  _PLVRu,
3262
3848
  0,
3263
- [_Cont, _LA, _LVA, _D, _CD, _Ve, _CR, _LI, _CA],
3849
+ [_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI, _CA],
3264
3850
  [() => LayerVersionContentOutput, 0, 0, 0, 0, 1, 64 | 0, 0, 64 | 0],
3265
3851
  ];
3266
3852
  var PublishVersionRequest = [
@@ -3372,7 +3958,7 @@ var RecursiveInvocationException = [
3372
3958
  [_e]: _c,
3373
3959
  [_hE]: 400,
3374
3960
  },
3375
- [_T, _M],
3961
+ [_Ty, _M],
3376
3962
  [0, 0],
3377
3963
  ];
3378
3964
  schema.TypeRegistry.for(n0).registerError(RecursiveInvocationException, RecursiveInvocationException$1);
@@ -3425,7 +4011,7 @@ var RequestTooLargeException = [
3425
4011
  [_e]: _c,
3426
4012
  [_hE]: 413,
3427
4013
  },
3428
- [_T, _m],
4014
+ [_Ty, _m],
3429
4015
  [0, 0],
3430
4016
  ];
3431
4017
  schema.TypeRegistry.for(n0).registerError(RequestTooLargeException, RequestTooLargeException$1);
@@ -3437,7 +4023,7 @@ var ResourceConflictException = [
3437
4023
  [_e]: _c,
3438
4024
  [_hE]: 409,
3439
4025
  },
3440
- [_T, _m],
4026
+ [_Ty, _m],
3441
4027
  [0, 0],
3442
4028
  ];
3443
4029
  schema.TypeRegistry.for(n0).registerError(ResourceConflictException, ResourceConflictException$1);
@@ -3449,7 +4035,7 @@ var ResourceInUseException = [
3449
4035
  [_e]: _c,
3450
4036
  [_hE]: 400,
3451
4037
  },
3452
- [_T, _M],
4038
+ [_Ty, _M],
3453
4039
  [0, 0],
3454
4040
  ];
3455
4041
  schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
@@ -3461,7 +4047,7 @@ var ResourceNotFoundException = [
3461
4047
  [_e]: _c,
3462
4048
  [_hE]: 404,
3463
4049
  },
3464
- [_T, _M],
4050
+ [_Ty, _M],
3465
4051
  [0, 0],
3466
4052
  ];
3467
4053
  schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
@@ -3473,16 +4059,17 @@ var ResourceNotReadyException = [
3473
4059
  [_e]: _se,
3474
4060
  [_hE]: 502,
3475
4061
  },
3476
- [_T, _m],
4062
+ [_Ty, _m],
3477
4063
  [0, 0],
3478
4064
  ];
3479
4065
  schema.TypeRegistry.for(n0).registerError(ResourceNotReadyException, ResourceNotReadyException$1);
4066
+ var RetryDetails = [3, n0, _RD, 0, [_CAu, _NADS], [1, 1]];
3480
4067
  var RuntimeVersionConfig = [
3481
4068
  3,
3482
4069
  n0,
3483
4070
  _RVC,
3484
4071
  0,
3485
- [_RVA, _Er],
4072
+ [_RVA, _E],
3486
4073
  [0, [() => RuntimeVersionError, 0]],
3487
4074
  ];
3488
4075
  var RuntimeVersionError = [3, n0, _RVE, 0, [_EC, _M], [0, [() => SensitiveString, 0]]];
@@ -3496,6 +4083,32 @@ var SelfManagedKafkaEventSourceConfig = [
3496
4083
  [_CGI, _SRC],
3497
4084
  [0, () => KafkaSchemaRegistryConfig],
3498
4085
  ];
4086
+ var SendDurableExecutionCallbackFailureRequest = [
4087
+ 3,
4088
+ n0,
4089
+ _SDECFR,
4090
+ 0,
4091
+ [_CI, _E],
4092
+ [
4093
+ [0, 1],
4094
+ [() => ErrorObject, 16],
4095
+ ],
4096
+ ];
4097
+ var SendDurableExecutionCallbackFailureResponse = [3, n0, _SDECFRe, 0, [], []];
4098
+ var SendDurableExecutionCallbackHeartbeatRequest = [3, n0, _SDECHR, 0, [_CI], [[0, 1]]];
4099
+ var SendDurableExecutionCallbackHeartbeatResponse = [3, n0, _SDECHRe, 0, [], []];
4100
+ var SendDurableExecutionCallbackSuccessRequest = [
4101
+ 3,
4102
+ n0,
4103
+ _SDECSR,
4104
+ 0,
4105
+ [_CI, _R],
4106
+ [
4107
+ [0, 1],
4108
+ [() => BinaryOperationPayload, 16],
4109
+ ],
4110
+ ];
4111
+ var SendDurableExecutionCallbackSuccessResponse = [3, n0, _SDECSRe, 0, [], []];
3499
4112
  var SerializedRequestEntityTooLargeException = [
3500
4113
  -3,
3501
4114
  n0,
@@ -3504,7 +4117,7 @@ var SerializedRequestEntityTooLargeException = [
3504
4117
  [_e]: _c,
3505
4118
  [_hE]: 413,
3506
4119
  },
3507
- [_T, _m],
4120
+ [_Ty, _m],
3508
4121
  [0, 0],
3509
4122
  ];
3510
4123
  schema.TypeRegistry.for(n0).registerError(SerializedRequestEntityTooLargeException, SerializedRequestEntityTooLargeException$1);
@@ -3516,7 +4129,7 @@ var ServiceException = [
3516
4129
  [_e]: _se,
3517
4130
  [_hE]: 500,
3518
4131
  },
3519
- [_T, _M],
4132
+ [_Ty, _M],
3520
4133
  [0, 0],
3521
4134
  ];
3522
4135
  schema.TypeRegistry.for(n0).registerError(ServiceException, ServiceException$1);
@@ -3529,7 +4142,7 @@ var SnapStartException = [
3529
4142
  [_e]: _c,
3530
4143
  [_hE]: 400,
3531
4144
  },
3532
- [_T, _M],
4145
+ [_Ty, _M],
3533
4146
  [0, 0],
3534
4147
  ];
3535
4148
  schema.TypeRegistry.for(n0).registerError(SnapStartException, SnapStartException$1);
@@ -3541,7 +4154,7 @@ var SnapStartNotReadyException = [
3541
4154
  [_e]: _c,
3542
4155
  [_hE]: 409,
3543
4156
  },
3544
- [_T, _M],
4157
+ [_Ty, _M],
3545
4158
  [0, 0],
3546
4159
  ];
3547
4160
  schema.TypeRegistry.for(n0).registerError(SnapStartNotReadyException, SnapStartNotReadyException$1);
@@ -3554,11 +4167,49 @@ var SnapStartTimeoutException = [
3554
4167
  [_e]: _c,
3555
4168
  [_hE]: 408,
3556
4169
  },
3557
- [_T, _M],
4170
+ [_Ty, _M],
3558
4171
  [0, 0],
3559
4172
  ];
3560
4173
  schema.TypeRegistry.for(n0).registerError(SnapStartTimeoutException, SnapStartTimeoutException$1);
3561
- var SourceAccessConfiguration = [3, n0, _SACo, 0, [_T, _URI], [0, 0]];
4174
+ var SourceAccessConfiguration = [3, n0, _SACo, 0, [_Ty, _URI], [0, 0]];
4175
+ var StepDetails = [
4176
+ 3,
4177
+ n0,
4178
+ _SD,
4179
+ 0,
4180
+ [_Att, _NAT, _R, _E],
4181
+ [1, 4, [() => OperationPayload, 0], [() => ErrorObject, 0]],
4182
+ ];
4183
+ var StepFailedDetails = [
4184
+ 3,
4185
+ n0,
4186
+ _SFD,
4187
+ 0,
4188
+ [_E, _RD],
4189
+ [[() => EventError, 0], () => RetryDetails],
4190
+ ];
4191
+ var StepOptions = [3, n0, _SO, 0, [_NADS], [1]];
4192
+ var StepStartedDetails = [3, n0, _SSD, 0, [], []];
4193
+ var StepSucceededDetails = [
4194
+ 3,
4195
+ n0,
4196
+ _SSDt,
4197
+ 0,
4198
+ [_R, _RD],
4199
+ [[() => EventResult, 0], () => RetryDetails],
4200
+ ];
4201
+ var StopDurableExecutionRequest = [
4202
+ 3,
4203
+ n0,
4204
+ _SDER,
4205
+ 0,
4206
+ [_DEA, _E],
4207
+ [
4208
+ [0, 1],
4209
+ [() => ErrorObject, 16],
4210
+ ],
4211
+ ];
4212
+ var StopDurableExecutionResponse = [3, n0, _SDERt, 0, [_STto], [4]];
3562
4213
  var SubnetIPAddressLimitReachedException = [
3563
4214
  -3,
3564
4215
  n0,
@@ -3567,7 +4218,7 @@ var SubnetIPAddressLimitReachedException = [
3567
4218
  [_e]: _se,
3568
4219
  [_hE]: 502,
3569
4220
  },
3570
- [_T, _M],
4221
+ [_Ty, _M],
3571
4222
  [0, 0],
3572
4223
  ];
3573
4224
  schema.TypeRegistry.for(n0).registerError(SubnetIPAddressLimitReachedException, SubnetIPAddressLimitReachedException$1);
@@ -3583,7 +4234,7 @@ var TooManyRequestsException = [
3583
4234
  [_e]: _c,
3584
4235
  [_hE]: 429,
3585
4236
  },
3586
- [_rAS, _T, _m, _Rea],
4237
+ [_rAS, _Ty, _m, _Rea],
3587
4238
  [
3588
4239
  [
3589
4240
  0,
@@ -3597,6 +4248,7 @@ var TooManyRequestsException = [
3597
4248
  ],
3598
4249
  ];
3599
4250
  schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
4251
+ var TraceHeader = [3, n0, _TH, 0, [_XATIm], [0]];
3600
4252
  var TracingConfig = [3, n0, _TC, 0, [_Mo], [0]];
3601
4253
  var TracingConfigResponse = [3, n0, _TCR, 0, [_Mo], [0]];
3602
4254
  var UnsupportedMediaTypeException = [
@@ -3607,7 +4259,7 @@ var UnsupportedMediaTypeException = [
3607
4259
  [_e]: _c,
3608
4260
  [_hE]: 415,
3609
4261
  },
3610
- [_T, _m],
4262
+ [_Ty, _m],
3611
4263
  [0, 0],
3612
4264
  ];
3613
4265
  schema.TypeRegistry.for(n0).registerError(UnsupportedMediaTypeException, UnsupportedMediaTypeException$1);
@@ -3668,7 +4320,7 @@ var UpdateEventSourceMappingRequest = [
3668
4320
  [
3669
4321
  _UUID,
3670
4322
  _FN,
3671
- _E,
4323
+ _En,
3672
4324
  _BSa,
3673
4325
  _FCi,
3674
4326
  _MBWIS,
@@ -3725,7 +4377,7 @@ var UpdateFunctionConfigurationRequest = [
3725
4377
  n0,
3726
4378
  _UFCRp,
3727
4379
  0,
3728
- [_FN, _Ro, _H, _D, _Ti, _MS, _VC, _En, _R, _DLC, _KMSKA, _TC, _RI, _L, _FSC, _IC, _ES, _SSn, _LC, _CPC],
4380
+ [_FN, _Ro, _H, _D, _T, _MS, _VC, _Env, _Ru, _DLC, _KMSKA, _TC, _RI, _L, _FSC, _IC, _ES, _SSn, _LC, _CPC, _DCu],
3729
4381
  [
3730
4382
  [0, 1],
3731
4383
  0,
@@ -3747,6 +4399,7 @@ var UpdateFunctionConfigurationRequest = [
3747
4399
  () => SnapStart,
3748
4400
  () => LoggingConfig,
3749
4401
  () => CapacityProviderConfig,
4402
+ () => DurableConfig,
3750
4403
  ],
3751
4404
  ];
3752
4405
  var UpdateFunctionEventInvokeConfigRequest = [
@@ -3792,7 +4445,7 @@ var UpdateFunctionUrlConfigResponse = [
3792
4445
  n0,
3793
4446
  _UFUCRp,
3794
4447
  0,
3795
- [_FU, _FA, _AT, _Co, _CT, _LMT, _IM],
4448
+ [_FU, _FA, _AT, _Co, _CTr, _LMT, _IM],
3796
4449
  [0, 0, 0, () => Cors, 0, 0, 0],
3797
4450
  ];
3798
4451
  var VpcConfig = [3, n0, _VC, 0, [_SIu, _SGI, _IAFDS], [64 | 0, 64 | 0, 2]];
@@ -3804,6 +4457,11 @@ var VpcConfigResponse = [
3804
4457
  [_SIu, _SGI, _VI, _IAFDS],
3805
4458
  [64 | 0, 64 | 0, 0, 2],
3806
4459
  ];
4460
+ var WaitCancelledDetails = [3, n0, _WCD, 0, [_E], [[() => EventError, 0]]];
4461
+ var WaitDetails = [3, n0, _WDa, 0, [_SET], [4]];
4462
+ var WaitOptions = [3, n0, _WO, 0, [_WS], [1]];
4463
+ var WaitStartedDetails = [3, n0, _WSD, 0, [_Du, _SET], [1, 4]];
4464
+ var WaitSucceededDetails = [3, n0, _WSDa, 0, [_Du], [1]];
3807
4465
  var __Unit = "unit";
3808
4466
  var LambdaServiceException = [-3, _sm, "LambdaServiceException", 0, [], []];
3809
4467
  schema.TypeRegistry.for(_sm).registerError(LambdaServiceException, LambdaServiceException$1);
@@ -3817,6 +4475,8 @@ var CapacityProviderScalingPoliciesList = [
3817
4475
  ];
3818
4476
  var CapacityProvidersList = [1, n0, _CPL, 0, () => CapacityProvider];
3819
4477
  var CodeSigningConfigList = [1, n0, _CSCL, 0, () => CodeSigningConfig];
4478
+ var DurableExecutions = [1, n0, _DE, 0, () => Execution];
4479
+ var Events = [1, n0, _Eve, 0, [() => Event, 0]];
3820
4480
  var EventSourceMappingsList = [1, n0, _ESML, 0, () => EventSourceMappingConfiguration];
3821
4481
  var FileSystemConfigList = [1, n0, _FSCL, 0, () => FileSystemConfig];
3822
4482
  var FilterList = [1, n0, _FL, 0, () => Filter];
@@ -3841,6 +4501,8 @@ var KafkaSchemaValidationConfigList = [1, n0, _KSVCL, 0, () => KafkaSchemaValida
3841
4501
  var LayersList = [1, n0, _LL, 0, () => LayersListItem];
3842
4502
  var LayersReferenceList = [1, n0, _LRL, 0, () => Layer];
3843
4503
  var LayerVersionsList = [1, n0, _LVL, 0, () => LayerVersionsListItem];
4504
+ var Operations = [1, n0, _O, 0, [() => Operation, 0]];
4505
+ var OperationUpdates = [1, n0, _OUp, 0, [() => OperationUpdate, 0]];
3844
4506
  var ProvisionedConcurrencyConfigList = [
3845
4507
  1,
3846
4508
  n0,
@@ -3849,6 +4511,7 @@ var ProvisionedConcurrencyConfigList = [
3849
4511
  () => ProvisionedConcurrencyConfigListItem,
3850
4512
  ];
3851
4513
  var SourceAccessConfigurations = [1, n0, _SAC, 0, () => SourceAccessConfiguration];
4514
+ var StackTraceEntries = [1, n0, _STEt, 0, [() => StackTraceEntry, 0]];
3852
4515
  var EnvironmentVariables = [
3853
4516
  2,
3854
4517
  n0,
@@ -3887,6 +4550,16 @@ var AddPermission = [
3887
4550
  () => AddPermissionRequest,
3888
4551
  () => AddPermissionResponse,
3889
4552
  ];
4553
+ var CheckpointDurableExecution = [
4554
+ 9,
4555
+ n0,
4556
+ _CDE,
4557
+ {
4558
+ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/checkpoint", 200],
4559
+ },
4560
+ () => CheckpointDurableExecutionRequest,
4561
+ () => CheckpointDurableExecutionResponse,
4562
+ ];
3890
4563
  var CreateAlias = [
3891
4564
  9,
3892
4565
  n0,
@@ -4097,6 +4770,36 @@ var GetCodeSigningConfig = [
4097
4770
  () => GetCodeSigningConfigRequest,
4098
4771
  () => GetCodeSigningConfigResponse,
4099
4772
  ];
4773
+ var GetDurableExecution = [
4774
+ 9,
4775
+ n0,
4776
+ _GDE,
4777
+ {
4778
+ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}", 200],
4779
+ },
4780
+ () => GetDurableExecutionRequest,
4781
+ () => GetDurableExecutionResponse,
4782
+ ];
4783
+ var GetDurableExecutionHistory = [
4784
+ 9,
4785
+ n0,
4786
+ _GDEH,
4787
+ {
4788
+ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/history", 200],
4789
+ },
4790
+ () => GetDurableExecutionHistoryRequest,
4791
+ () => GetDurableExecutionHistoryResponse,
4792
+ ];
4793
+ var GetDurableExecutionState = [
4794
+ 9,
4795
+ n0,
4796
+ _GDES,
4797
+ {
4798
+ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/state", 200],
4799
+ },
4800
+ () => GetDurableExecutionStateRequest,
4801
+ () => GetDurableExecutionStateResponse,
4802
+ ];
4100
4803
  var GetEventSourceMapping = [
4101
4804
  9,
4102
4805
  n0,
@@ -4250,7 +4953,7 @@ var GetRuntimeManagementConfig = [
4250
4953
  var Invoke = [
4251
4954
  9,
4252
4955
  n0,
4253
- _I,
4956
+ _In,
4254
4957
  {
4255
4958
  [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/invocations", 200],
4256
4959
  },
@@ -4307,6 +5010,16 @@ var ListCodeSigningConfigs = [
4307
5010
  () => ListCodeSigningConfigsRequest,
4308
5011
  () => ListCodeSigningConfigsResponse,
4309
5012
  ];
5013
+ var ListDurableExecutionsByFunction = [
5014
+ 9,
5015
+ n0,
5016
+ _LDEBF,
5017
+ {
5018
+ [_h]: ["GET", "/2025-12-01/functions/{FunctionName}/durable-executions", 200],
5019
+ },
5020
+ () => ListDurableExecutionsByFunctionRequest,
5021
+ () => ListDurableExecutionsByFunctionResponse,
5022
+ ];
4310
5023
  var ListEventSourceMappings = [
4311
5024
  9,
4312
5025
  n0,
@@ -4527,6 +5240,46 @@ var RemovePermission = [
4527
5240
  () => RemovePermissionRequest,
4528
5241
  () => __Unit,
4529
5242
  ];
5243
+ var SendDurableExecutionCallbackFailure = [
5244
+ 9,
5245
+ n0,
5246
+ _SDECF,
5247
+ {
5248
+ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/fail", 200],
5249
+ },
5250
+ () => SendDurableExecutionCallbackFailureRequest,
5251
+ () => SendDurableExecutionCallbackFailureResponse,
5252
+ ];
5253
+ var SendDurableExecutionCallbackHeartbeat = [
5254
+ 9,
5255
+ n0,
5256
+ _SDECH,
5257
+ {
5258
+ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/heartbeat", 200],
5259
+ },
5260
+ () => SendDurableExecutionCallbackHeartbeatRequest,
5261
+ () => SendDurableExecutionCallbackHeartbeatResponse,
5262
+ ];
5263
+ var SendDurableExecutionCallbackSuccess = [
5264
+ 9,
5265
+ n0,
5266
+ _SDECS,
5267
+ {
5268
+ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/succeed", 200],
5269
+ },
5270
+ () => SendDurableExecutionCallbackSuccessRequest,
5271
+ () => SendDurableExecutionCallbackSuccessResponse,
5272
+ ];
5273
+ var StopDurableExecution = [
5274
+ 9,
5275
+ n0,
5276
+ _SDE,
5277
+ {
5278
+ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/stop", 200],
5279
+ },
5280
+ () => StopDurableExecutionRequest,
5281
+ () => StopDurableExecutionResponse,
5282
+ ];
4530
5283
  var TagResource = [
4531
5284
  9,
4532
5285
  n0,
@@ -4652,6 +5405,18 @@ class AddPermissionCommand extends smithyClient.Command
4652
5405
  .build() {
4653
5406
  }
4654
5407
 
5408
+ class CheckpointDurableExecutionCommand extends smithyClient.Command
5409
+ .classBuilder()
5410
+ .ep(commonParams)
5411
+ .m(function (Command, cs, config, o) {
5412
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5413
+ })
5414
+ .s("AWSGirApiService", "CheckpointDurableExecution", {})
5415
+ .n("LambdaClient", "CheckpointDurableExecutionCommand")
5416
+ .sc(CheckpointDurableExecution)
5417
+ .build() {
5418
+ }
5419
+
4655
5420
  class CreateAliasCommand extends smithyClient.Command
4656
5421
  .classBuilder()
4657
5422
  .ep(commonParams)
@@ -4904,6 +5669,42 @@ class GetCodeSigningConfigCommand extends smithyClient.Command
4904
5669
  .build() {
4905
5670
  }
4906
5671
 
5672
+ class GetDurableExecutionCommand extends smithyClient.Command
5673
+ .classBuilder()
5674
+ .ep(commonParams)
5675
+ .m(function (Command, cs, config, o) {
5676
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5677
+ })
5678
+ .s("AWSGirApiService", "GetDurableExecution", {})
5679
+ .n("LambdaClient", "GetDurableExecutionCommand")
5680
+ .sc(GetDurableExecution)
5681
+ .build() {
5682
+ }
5683
+
5684
+ class GetDurableExecutionHistoryCommand extends smithyClient.Command
5685
+ .classBuilder()
5686
+ .ep(commonParams)
5687
+ .m(function (Command, cs, config, o) {
5688
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5689
+ })
5690
+ .s("AWSGirApiService", "GetDurableExecutionHistory", {})
5691
+ .n("LambdaClient", "GetDurableExecutionHistoryCommand")
5692
+ .sc(GetDurableExecutionHistory)
5693
+ .build() {
5694
+ }
5695
+
5696
+ class GetDurableExecutionStateCommand extends smithyClient.Command
5697
+ .classBuilder()
5698
+ .ep(commonParams)
5699
+ .m(function (Command, cs, config, o) {
5700
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5701
+ })
5702
+ .s("AWSGirApiService", "GetDurableExecutionState", {})
5703
+ .n("LambdaClient", "GetDurableExecutionStateCommand")
5704
+ .sc(GetDurableExecutionState)
5705
+ .build() {
5706
+ }
5707
+
4907
5708
  class GetEventSourceMappingCommand extends smithyClient.Command
4908
5709
  .classBuilder()
4909
5710
  .ep(commonParams)
@@ -5160,6 +5961,18 @@ class ListCodeSigningConfigsCommand extends smithyClient.Command
5160
5961
  .build() {
5161
5962
  }
5162
5963
 
5964
+ class ListDurableExecutionsByFunctionCommand extends smithyClient.Command
5965
+ .classBuilder()
5966
+ .ep(commonParams)
5967
+ .m(function (Command, cs, config, o) {
5968
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5969
+ })
5970
+ .s("AWSGirApiService", "ListDurableExecutionsByFunction", {})
5971
+ .n("LambdaClient", "ListDurableExecutionsByFunctionCommand")
5972
+ .sc(ListDurableExecutionsByFunction)
5973
+ .build() {
5974
+ }
5975
+
5163
5976
  class ListEventSourceMappingsCommand extends smithyClient.Command
5164
5977
  .classBuilder()
5165
5978
  .ep(commonParams)
@@ -5424,6 +6237,54 @@ class RemovePermissionCommand extends smithyClient.Command
5424
6237
  .build() {
5425
6238
  }
5426
6239
 
6240
+ class SendDurableExecutionCallbackFailureCommand extends smithyClient.Command
6241
+ .classBuilder()
6242
+ .ep(commonParams)
6243
+ .m(function (Command, cs, config, o) {
6244
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
6245
+ })
6246
+ .s("AWSGirApiService", "SendDurableExecutionCallbackFailure", {})
6247
+ .n("LambdaClient", "SendDurableExecutionCallbackFailureCommand")
6248
+ .sc(SendDurableExecutionCallbackFailure)
6249
+ .build() {
6250
+ }
6251
+
6252
+ class SendDurableExecutionCallbackHeartbeatCommand extends smithyClient.Command
6253
+ .classBuilder()
6254
+ .ep(commonParams)
6255
+ .m(function (Command, cs, config, o) {
6256
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
6257
+ })
6258
+ .s("AWSGirApiService", "SendDurableExecutionCallbackHeartbeat", {})
6259
+ .n("LambdaClient", "SendDurableExecutionCallbackHeartbeatCommand")
6260
+ .sc(SendDurableExecutionCallbackHeartbeat)
6261
+ .build() {
6262
+ }
6263
+
6264
+ class SendDurableExecutionCallbackSuccessCommand extends smithyClient.Command
6265
+ .classBuilder()
6266
+ .ep(commonParams)
6267
+ .m(function (Command, cs, config, o) {
6268
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
6269
+ })
6270
+ .s("AWSGirApiService", "SendDurableExecutionCallbackSuccess", {})
6271
+ .n("LambdaClient", "SendDurableExecutionCallbackSuccessCommand")
6272
+ .sc(SendDurableExecutionCallbackSuccess)
6273
+ .build() {
6274
+ }
6275
+
6276
+ class StopDurableExecutionCommand extends smithyClient.Command
6277
+ .classBuilder()
6278
+ .ep(commonParams)
6279
+ .m(function (Command, cs, config, o) {
6280
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
6281
+ })
6282
+ .s("AWSGirApiService", "StopDurableExecution", {})
6283
+ .n("LambdaClient", "StopDurableExecutionCommand")
6284
+ .sc(StopDurableExecution)
6285
+ .build() {
6286
+ }
6287
+
5427
6288
  class TagResourceCommand extends smithyClient.Command
5428
6289
  .classBuilder()
5429
6290
  .ep(commonParams)
@@ -5547,6 +6408,7 @@ class UpdateFunctionUrlConfigCommand extends smithyClient.Command
5547
6408
  const commands = {
5548
6409
  AddLayerVersionPermissionCommand,
5549
6410
  AddPermissionCommand,
6411
+ CheckpointDurableExecutionCommand,
5550
6412
  CreateAliasCommand,
5551
6413
  CreateCapacityProviderCommand,
5552
6414
  CreateCodeSigningConfigCommand,
@@ -5568,6 +6430,9 @@ const commands = {
5568
6430
  GetAliasCommand,
5569
6431
  GetCapacityProviderCommand,
5570
6432
  GetCodeSigningConfigCommand,
6433
+ GetDurableExecutionCommand,
6434
+ GetDurableExecutionHistoryCommand,
6435
+ GetDurableExecutionStateCommand,
5571
6436
  GetEventSourceMappingCommand,
5572
6437
  GetFunctionCommand,
5573
6438
  GetFunctionCodeSigningConfigCommand,
@@ -5589,6 +6454,7 @@ const commands = {
5589
6454
  ListAliasesCommand,
5590
6455
  ListCapacityProvidersCommand,
5591
6456
  ListCodeSigningConfigsCommand,
6457
+ ListDurableExecutionsByFunctionCommand,
5592
6458
  ListEventSourceMappingsCommand,
5593
6459
  ListFunctionEventInvokeConfigsCommand,
5594
6460
  ListFunctionsCommand,
@@ -5611,6 +6477,10 @@ const commands = {
5611
6477
  PutRuntimeManagementConfigCommand,
5612
6478
  RemoveLayerVersionPermissionCommand,
5613
6479
  RemovePermissionCommand,
6480
+ SendDurableExecutionCallbackFailureCommand,
6481
+ SendDurableExecutionCallbackHeartbeatCommand,
6482
+ SendDurableExecutionCallbackSuccessCommand,
6483
+ StopDurableExecutionCommand,
5614
6484
  TagResourceCommand,
5615
6485
  UntagResourceCommand,
5616
6486
  UpdateAliasCommand,
@@ -5626,12 +6496,18 @@ class Lambda extends LambdaClient {
5626
6496
  }
5627
6497
  smithyClient.createAggregatedClient(commands, Lambda);
5628
6498
 
6499
+ const paginateGetDurableExecutionHistory = core.createPaginator(LambdaClient, GetDurableExecutionHistoryCommand, "Marker", "NextMarker", "MaxItems");
6500
+
6501
+ const paginateGetDurableExecutionState = core.createPaginator(LambdaClient, GetDurableExecutionStateCommand, "Marker", "NextMarker", "MaxItems");
6502
+
5629
6503
  const paginateListAliases = core.createPaginator(LambdaClient, ListAliasesCommand, "Marker", "NextMarker", "MaxItems");
5630
6504
 
5631
6505
  const paginateListCapacityProviders = core.createPaginator(LambdaClient, ListCapacityProvidersCommand, "Marker", "NextMarker", "MaxItems");
5632
6506
 
5633
6507
  const paginateListCodeSigningConfigs = core.createPaginator(LambdaClient, ListCodeSigningConfigsCommand, "Marker", "NextMarker", "MaxItems");
5634
6508
 
6509
+ const paginateListDurableExecutionsByFunction = core.createPaginator(LambdaClient, ListDurableExecutionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
6510
+
5635
6511
  const paginateListEventSourceMappings = core.createPaginator(LambdaClient, ListEventSourceMappingsCommand, "Marker", "NextMarker", "MaxItems");
5636
6512
 
5637
6513
  const paginateListFunctionEventInvokeConfigs = core.createPaginator(LambdaClient, ListFunctionEventInvokeConfigsCommand, "Marker", "NextMarker", "MaxItems");
@@ -5977,6 +6853,31 @@ const State = {
5977
6853
  Inactive: "Inactive",
5978
6854
  Pending: "Pending",
5979
6855
  };
6856
+ const OperationAction = {
6857
+ CANCEL: "CANCEL",
6858
+ FAIL: "FAIL",
6859
+ RETRY: "RETRY",
6860
+ START: "START",
6861
+ SUCCEED: "SUCCEED",
6862
+ };
6863
+ const OperationType = {
6864
+ CALLBACK: "CALLBACK",
6865
+ CHAINED_INVOKE: "CHAINED_INVOKE",
6866
+ CONTEXT: "CONTEXT",
6867
+ EXECUTION: "EXECUTION",
6868
+ STEP: "STEP",
6869
+ WAIT: "WAIT",
6870
+ };
6871
+ const OperationStatus = {
6872
+ CANCELLED: "CANCELLED",
6873
+ FAILED: "FAILED",
6874
+ PENDING: "PENDING",
6875
+ READY: "READY",
6876
+ STARTED: "STARTED",
6877
+ STOPPED: "STOPPED",
6878
+ SUCCEEDED: "SUCCEEDED",
6879
+ TIMED_OUT: "TIMED_OUT",
6880
+ };
5980
6881
  const CodeSigningPolicy = {
5981
6882
  Enforce: "Enforce",
5982
6883
  Warn: "Warn",
@@ -6130,6 +7031,7 @@ const StateReasonCode = {
6130
7031
  CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded",
6131
7032
  Creating: "Creating",
6132
7033
  DisabledKMSKey: "DisabledKMSKey",
7034
+ DrainingDurableExecutions: "DrainingDurableExecutions",
6133
7035
  EC2RequestLimitExceeded: "EC2RequestLimitExceeded",
6134
7036
  EFSIOError: "EFSIOError",
6135
7037
  EFSMountConnectivityError: "EFSMountConnectivityError",
@@ -6198,6 +7100,39 @@ const ProvisionedConcurrencyStatusEnum = {
6198
7100
  IN_PROGRESS: "IN_PROGRESS",
6199
7101
  READY: "READY",
6200
7102
  };
7103
+ const ExecutionStatus = {
7104
+ FAILED: "FAILED",
7105
+ RUNNING: "RUNNING",
7106
+ STOPPED: "STOPPED",
7107
+ SUCCEEDED: "SUCCEEDED",
7108
+ TIMED_OUT: "TIMED_OUT",
7109
+ };
7110
+ const EventType = {
7111
+ CallbackFailed: "CallbackFailed",
7112
+ CallbackStarted: "CallbackStarted",
7113
+ CallbackSucceeded: "CallbackSucceeded",
7114
+ CallbackTimedOut: "CallbackTimedOut",
7115
+ ChainedInvokeFailed: "ChainedInvokeFailed",
7116
+ ChainedInvokeStarted: "ChainedInvokeStarted",
7117
+ ChainedInvokeStopped: "ChainedInvokeStopped",
7118
+ ChainedInvokeSucceeded: "ChainedInvokeSucceeded",
7119
+ ChainedInvokeTimedOut: "ChainedInvokeTimedOut",
7120
+ ContextFailed: "ContextFailed",
7121
+ ContextStarted: "ContextStarted",
7122
+ ContextSucceeded: "ContextSucceeded",
7123
+ ExecutionFailed: "ExecutionFailed",
7124
+ ExecutionStarted: "ExecutionStarted",
7125
+ ExecutionStopped: "ExecutionStopped",
7126
+ ExecutionSucceeded: "ExecutionSucceeded",
7127
+ ExecutionTimedOut: "ExecutionTimedOut",
7128
+ InvocationCompleted: "InvocationCompleted",
7129
+ StepFailed: "StepFailed",
7130
+ StepStarted: "StepStarted",
7131
+ StepSucceeded: "StepSucceeded",
7132
+ WaitCancelled: "WaitCancelled",
7133
+ WaitStarted: "WaitStarted",
7134
+ WaitSucceeded: "WaitSucceeded",
7135
+ };
6201
7136
 
6202
7137
  Object.defineProperty(exports, "$Command", {
6203
7138
  enumerable: true,
@@ -6211,10 +7146,12 @@ exports.AddLayerVersionPermissionCommand = AddLayerVersionPermissionCommand;
6211
7146
  exports.AddPermissionCommand = AddPermissionCommand;
6212
7147
  exports.ApplicationLogLevel = ApplicationLogLevel;
6213
7148
  exports.Architecture = Architecture;
7149
+ exports.CallbackTimeoutException = CallbackTimeoutException$1;
6214
7150
  exports.CapacityProviderLimitExceededException = CapacityProviderLimitExceededException$1;
6215
7151
  exports.CapacityProviderPredefinedMetricType = CapacityProviderPredefinedMetricType;
6216
7152
  exports.CapacityProviderScalingMode = CapacityProviderScalingMode;
6217
7153
  exports.CapacityProviderState = CapacityProviderState;
7154
+ exports.CheckpointDurableExecutionCommand = CheckpointDurableExecutionCommand;
6218
7155
  exports.CodeSigningConfigNotFoundException = CodeSigningConfigNotFoundException$1;
6219
7156
  exports.CodeSigningPolicy = CodeSigningPolicy;
6220
7157
  exports.CodeStorageExceededException = CodeStorageExceededException$1;
@@ -6236,6 +7173,7 @@ exports.DeleteFunctionEventInvokeConfigCommand = DeleteFunctionEventInvokeConfig
6236
7173
  exports.DeleteFunctionUrlConfigCommand = DeleteFunctionUrlConfigCommand;
6237
7174
  exports.DeleteLayerVersionCommand = DeleteLayerVersionCommand;
6238
7175
  exports.DeleteProvisionedConcurrencyConfigCommand = DeleteProvisionedConcurrencyConfigCommand;
7176
+ exports.DurableExecutionAlreadyStartedException = DurableExecutionAlreadyStartedException$1;
6239
7177
  exports.EC2AccessDeniedException = EC2AccessDeniedException$1;
6240
7178
  exports.EC2ThrottledException = EC2ThrottledException$1;
6241
7179
  exports.EC2UnexpectedException = EC2UnexpectedException$1;
@@ -6247,6 +7185,8 @@ exports.ENILimitReachedException = ENILimitReachedException$1;
6247
7185
  exports.EndPointType = EndPointType;
6248
7186
  exports.EventSourceMappingMetric = EventSourceMappingMetric;
6249
7187
  exports.EventSourcePosition = EventSourcePosition;
7188
+ exports.EventType = EventType;
7189
+ exports.ExecutionStatus = ExecutionStatus;
6250
7190
  exports.FullDocument = FullDocument;
6251
7191
  exports.FunctionResponseType = FunctionResponseType;
6252
7192
  exports.FunctionUrlAuthType = FunctionUrlAuthType;
@@ -6257,6 +7197,9 @@ exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
6257
7197
  exports.GetAliasCommand = GetAliasCommand;
6258
7198
  exports.GetCapacityProviderCommand = GetCapacityProviderCommand;
6259
7199
  exports.GetCodeSigningConfigCommand = GetCodeSigningConfigCommand;
7200
+ exports.GetDurableExecutionCommand = GetDurableExecutionCommand;
7201
+ exports.GetDurableExecutionHistoryCommand = GetDurableExecutionHistoryCommand;
7202
+ exports.GetDurableExecutionStateCommand = GetDurableExecutionStateCommand;
6260
7203
  exports.GetEventSourceMappingCommand = GetEventSourceMappingCommand;
6261
7204
  exports.GetFunctionCodeSigningConfigCommand = GetFunctionCodeSigningConfigCommand;
6262
7205
  exports.GetFunctionCommand = GetFunctionCommand;
@@ -6298,6 +7241,7 @@ exports.LastUpdateStatusReasonCode = LastUpdateStatusReasonCode;
6298
7241
  exports.ListAliasesCommand = ListAliasesCommand;
6299
7242
  exports.ListCapacityProvidersCommand = ListCapacityProvidersCommand;
6300
7243
  exports.ListCodeSigningConfigsCommand = ListCodeSigningConfigsCommand;
7244
+ exports.ListDurableExecutionsByFunctionCommand = ListDurableExecutionsByFunctionCommand;
6301
7245
  exports.ListEventSourceMappingsCommand = ListEventSourceMappingsCommand;
6302
7246
  exports.ListFunctionEventInvokeConfigsCommand = ListFunctionEventInvokeConfigsCommand;
6303
7247
  exports.ListFunctionUrlConfigsCommand = ListFunctionUrlConfigsCommand;
@@ -6312,6 +7256,9 @@ exports.ListVersionsByFunctionCommand = ListVersionsByFunctionCommand;
6312
7256
  exports.LogFormat = LogFormat;
6313
7257
  exports.LogType = LogType;
6314
7258
  exports.NoPublishedVersionException = NoPublishedVersionException$1;
7259
+ exports.OperationAction = OperationAction;
7260
+ exports.OperationStatus = OperationStatus;
7261
+ exports.OperationType = OperationType;
6315
7262
  exports.PackageType = PackageType;
6316
7263
  exports.PolicyLengthExceededException = PolicyLengthExceededException$1;
6317
7264
  exports.PreconditionFailedException = PreconditionFailedException$1;
@@ -6338,6 +7285,9 @@ exports.ResourceNotReadyException = ResourceNotReadyException$1;
6338
7285
  exports.ResponseStreamingInvocationType = ResponseStreamingInvocationType;
6339
7286
  exports.Runtime = Runtime;
6340
7287
  exports.SchemaRegistryEventRecordFormat = SchemaRegistryEventRecordFormat;
7288
+ exports.SendDurableExecutionCallbackFailureCommand = SendDurableExecutionCallbackFailureCommand;
7289
+ exports.SendDurableExecutionCallbackHeartbeatCommand = SendDurableExecutionCallbackHeartbeatCommand;
7290
+ exports.SendDurableExecutionCallbackSuccessCommand = SendDurableExecutionCallbackSuccessCommand;
6341
7291
  exports.SerializedRequestEntityTooLargeException = SerializedRequestEntityTooLargeException$1;
6342
7292
  exports.ServiceException = ServiceException$1;
6343
7293
  exports.SnapStartApplyOn = SnapStartApplyOn;
@@ -6348,6 +7298,7 @@ exports.SnapStartTimeoutException = SnapStartTimeoutException$1;
6348
7298
  exports.SourceAccessType = SourceAccessType;
6349
7299
  exports.State = State;
6350
7300
  exports.StateReasonCode = StateReasonCode;
7301
+ exports.StopDurableExecutionCommand = StopDurableExecutionCommand;
6351
7302
  exports.SubnetIPAddressLimitReachedException = SubnetIPAddressLimitReachedException$1;
6352
7303
  exports.SystemLogLevel = SystemLogLevel;
6353
7304
  exports.TagResourceCommand = TagResourceCommand;
@@ -6366,9 +7317,12 @@ exports.UpdateFunctionConfigurationCommand = UpdateFunctionConfigurationCommand;
6366
7317
  exports.UpdateFunctionEventInvokeConfigCommand = UpdateFunctionEventInvokeConfigCommand;
6367
7318
  exports.UpdateFunctionUrlConfigCommand = UpdateFunctionUrlConfigCommand;
6368
7319
  exports.UpdateRuntimeOn = UpdateRuntimeOn;
7320
+ exports.paginateGetDurableExecutionHistory = paginateGetDurableExecutionHistory;
7321
+ exports.paginateGetDurableExecutionState = paginateGetDurableExecutionState;
6369
7322
  exports.paginateListAliases = paginateListAliases;
6370
7323
  exports.paginateListCapacityProviders = paginateListCapacityProviders;
6371
7324
  exports.paginateListCodeSigningConfigs = paginateListCodeSigningConfigs;
7325
+ exports.paginateListDurableExecutionsByFunction = paginateListDurableExecutionsByFunction;
6372
7326
  exports.paginateListEventSourceMappings = paginateListEventSourceMappings;
6373
7327
  exports.paginateListFunctionEventInvokeConfigs = paginateListFunctionEventInvokeConfigs;
6374
7328
  exports.paginateListFunctionUrlConfigs = paginateListFunctionUrlConfigs;