@aws-sdk/client-lambda 3.940.0 → 3.943.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/README.md +136 -0
  2. package/dist-cjs/index.js +1663 -100
  3. package/dist-es/Lambda.js +34 -0
  4. package/dist-es/commands/CheckpointDurableExecutionCommand.js +16 -0
  5. package/dist-es/commands/CreateCapacityProviderCommand.js +16 -0
  6. package/dist-es/commands/DeleteCapacityProviderCommand.js +16 -0
  7. package/dist-es/commands/GetCapacityProviderCommand.js +16 -0
  8. package/dist-es/commands/GetDurableExecutionCommand.js +16 -0
  9. package/dist-es/commands/GetDurableExecutionHistoryCommand.js +16 -0
  10. package/dist-es/commands/GetDurableExecutionStateCommand.js +16 -0
  11. package/dist-es/commands/GetFunctionScalingConfigCommand.js +16 -0
  12. package/dist-es/commands/ListCapacityProvidersCommand.js +16 -0
  13. package/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +16 -0
  14. package/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +16 -0
  15. package/dist-es/commands/PutFunctionScalingConfigCommand.js +16 -0
  16. package/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +16 -0
  17. package/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +16 -0
  18. package/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +16 -0
  19. package/dist-es/commands/StopDurableExecutionCommand.js +16 -0
  20. package/dist-es/commands/UpdateCapacityProviderCommand.js +16 -0
  21. package/dist-es/commands/index.js +17 -0
  22. package/dist-es/models/enums.js +109 -6
  23. package/dist-es/models/errors.js +76 -0
  24. package/dist-es/pagination/GetDurableExecutionHistoryPaginator.js +4 -0
  25. package/dist-es/pagination/GetDurableExecutionStatePaginator.js +4 -0
  26. package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
  27. package/dist-es/pagination/ListDurableExecutionsByFunctionPaginator.js +4 -0
  28. package/dist-es/pagination/ListFunctionVersionsByCapacityProviderPaginator.js +4 -0
  29. package/dist-es/pagination/index.js +5 -0
  30. package/dist-es/schemas/schemas_0.js +1216 -95
  31. package/dist-types/Lambda.d.ts +120 -0
  32. package/dist-types/LambdaClient.d.ts +19 -2
  33. package/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +190 -0
  34. package/dist-types/commands/CreateCapacityProviderCommand.d.ts +162 -0
  35. package/dist-types/commands/CreateFunctionCommand.d.ts +38 -3
  36. package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +126 -0
  37. package/dist-types/commands/DeleteFunctionCommand.d.ts +6 -4
  38. package/dist-types/commands/GetCapacityProviderCommand.d.ts +123 -0
  39. package/dist-types/commands/GetDurableExecutionCommand.d.ts +105 -0
  40. package/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +259 -0
  41. package/dist-types/commands/GetDurableExecutionStateCommand.d.ts +152 -0
  42. package/dist-types/commands/GetFunctionCommand.d.ts +19 -3
  43. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +19 -3
  44. package/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +95 -0
  45. package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
  46. package/dist-types/commands/InvokeCommand.d.ts +11 -1
  47. package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +4 -1
  48. package/dist-types/commands/ListCapacityProvidersCommand.d.ts +125 -0
  49. package/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +106 -0
  50. package/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +95 -0
  51. package/dist-types/commands/ListFunctionsCommand.d.ts +19 -3
  52. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +23 -3
  53. package/dist-types/commands/PublishVersionCommand.d.ts +19 -3
  54. package/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +94 -0
  55. package/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +92 -0
  56. package/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +84 -0
  57. package/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +91 -0
  58. package/dist-types/commands/StopDurableExecutionCommand.d.ts +94 -0
  59. package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +136 -0
  60. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +16 -3
  61. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +34 -3
  62. package/dist-types/commands/index.d.ts +17 -0
  63. package/dist-types/models/enums.d.ts +189 -14
  64. package/dist-types/models/errors.d.ts +89 -1
  65. package/dist-types/models/models_0.d.ts +3205 -1373
  66. package/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +7 -0
  67. package/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +7 -0
  68. package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
  69. package/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +7 -0
  70. package/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +7 -0
  71. package/dist-types/pagination/index.d.ts +5 -0
  72. package/dist-types/schemas/schemas_0.d.ts +134 -0
  73. package/dist-types/ts3.4/Lambda.d.ts +314 -0
  74. package/dist-types/ts3.4/LambdaClient.d.ts +102 -0
  75. package/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +51 -0
  78. package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +8 -3
  79. package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +51 -0
  80. package/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +51 -0
  81. package/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +51 -0
  82. package/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +51 -0
  83. package/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +51 -0
  85. package/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +51 -0
  86. package/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +51 -0
  87. package/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +51 -0
  89. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +51 -0
  90. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +60 -0
  91. package/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +51 -0
  92. package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
  93. package/dist-types/ts3.4/commands/index.d.ts +17 -0
  94. package/dist-types/ts3.4/models/enums.d.ts +126 -7
  95. package/dist-types/ts3.4/models/errors.d.ts +52 -0
  96. package/dist-types/ts3.4/models/models_0.d.ts +494 -42
  97. package/dist-types/ts3.4/pagination/GetDurableExecutionHistoryPaginator.d.ts +11 -0
  98. package/dist-types/ts3.4/pagination/GetDurableExecutionStatePaginator.d.ts +11 -0
  99. package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
  100. package/dist-types/ts3.4/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +11 -0
  101. package/dist-types/ts3.4/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +11 -0
  102. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  103. package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
  104. package/package.json +5 -5
package/dist-cjs/index.js CHANGED
@@ -226,6 +226,20 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends LambdaSe
226
226
  this.Reason = opts.Reason;
227
227
  }
228
228
  };
229
+ let CapacityProviderLimitExceededException$1 = class CapacityProviderLimitExceededException extends LambdaServiceException$1 {
230
+ name = "CapacityProviderLimitExceededException";
231
+ $fault = "client";
232
+ Type;
233
+ constructor(opts) {
234
+ super({
235
+ name: "CapacityProviderLimitExceededException",
236
+ $fault: "client",
237
+ ...opts,
238
+ });
239
+ Object.setPrototypeOf(this, CapacityProviderLimitExceededException.prototype);
240
+ this.Type = opts.Type;
241
+ }
242
+ };
229
243
  let ResourceInUseException$1 = class ResourceInUseException extends LambdaServiceException$1 {
230
244
  name = "ResourceInUseException";
231
245
  $fault = "client";
@@ -288,6 +302,20 @@ let CodeVerificationFailedException$1 = class CodeVerificationFailedException ex
288
302
  this.Message = opts.Message;
289
303
  }
290
304
  };
305
+ let FunctionVersionsPerCapacityProviderLimitExceededException$1 = class FunctionVersionsPerCapacityProviderLimitExceededException extends LambdaServiceException$1 {
306
+ name = "FunctionVersionsPerCapacityProviderLimitExceededException";
307
+ $fault = "client";
308
+ Type;
309
+ constructor(opts) {
310
+ super({
311
+ name: "FunctionVersionsPerCapacityProviderLimitExceededException",
312
+ $fault: "client",
313
+ ...opts,
314
+ });
315
+ Object.setPrototypeOf(this, FunctionVersionsPerCapacityProviderLimitExceededException.prototype);
316
+ this.Type = opts.Type;
317
+ }
318
+ };
291
319
  let InvalidCodeSignatureException$1 = class InvalidCodeSignatureException extends LambdaServiceException$1 {
292
320
  name = "InvalidCodeSignatureException";
293
321
  $fault = "client";
@@ -304,6 +332,22 @@ let InvalidCodeSignatureException$1 = class InvalidCodeSignatureException extend
304
332
  this.Message = opts.Message;
305
333
  }
306
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
+ };
307
351
  let EC2AccessDeniedException$1 = class EC2AccessDeniedException extends LambdaServiceException$1 {
308
352
  name = "EC2AccessDeniedException";
309
353
  $fault = "server";
@@ -576,6 +620,22 @@ let KMSNotFoundException$1 = class KMSNotFoundException extends LambdaServiceExc
576
620
  this.Message = opts.Message;
577
621
  }
578
622
  };
623
+ let NoPublishedVersionException$1 = class NoPublishedVersionException extends LambdaServiceException$1 {
624
+ name = "NoPublishedVersionException";
625
+ $fault = "client";
626
+ Type;
627
+ Message;
628
+ constructor(opts) {
629
+ super({
630
+ name: "NoPublishedVersionException",
631
+ $fault: "client",
632
+ ...opts,
633
+ });
634
+ Object.setPrototypeOf(this, NoPublishedVersionException.prototype);
635
+ this.Type = opts.Type;
636
+ this.Message = opts.Message;
637
+ }
638
+ };
579
639
  let RecursiveInvocationException$1 = class RecursiveInvocationException extends LambdaServiceException$1 {
580
640
  name = "RecursiveInvocationException";
581
641
  $fault = "client";
@@ -726,13 +786,31 @@ let ProvisionedConcurrencyConfigNotFoundException$1 = class ProvisionedConcurren
726
786
  this.Type = opts.Type;
727
787
  }
728
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
+ };
729
805
 
730
806
  const _A = "Action";
731
807
  const _AA = "AliasArn";
732
808
  const _AC = "AliasConfiguration";
733
809
  const _ACc = "AccessConfigs";
734
810
  const _ACl = "AllowCredentials";
811
+ const _AFSC = "AppliedFunctionScalingConfig";
735
812
  const _AH = "AllowHeaders";
813
+ const _AIT = "AllowedInstanceTypes";
736
814
  const _AL = "AccountLimit";
737
815
  const _ALL = "ApplicationLogLevel";
738
816
  const _ALVP = "AddLayerVersionPermission";
@@ -757,8 +835,10 @@ const _Al = "Aliases";
757
835
  const _Ar = "Architectures";
758
836
  const _Arn = "Arn";
759
837
  const _At = "Attribute";
838
+ const _Att = "Attempt";
760
839
  const _B = "Blob";
761
840
  const _BBOFE = "BisectBatchOnFunctionError";
841
+ const _BOP = "BinaryOperationPayload";
762
842
  const _BS = "BlobStream";
763
843
  const _BSa = "BatchSize";
764
844
  const _C = "Concurrency";
@@ -766,21 +846,54 @@ const _CA = "CompatibleArchitectures";
766
846
  const _CAR = "CreateAliasRequest";
767
847
  const _CAo = "CompatibleArchitecture";
768
848
  const _CAr = "CreateAlias";
849
+ const _CAu = "CurrentAttempt";
769
850
  const _CC = "ClientContext";
851
+ const _CCP = "CreateCapacityProvider";
852
+ const _CCPR = "CreateCapacityProviderRequest";
853
+ const _CCPRr = "CreateCapacityProviderResponse";
770
854
  const _CCSC = "CreateCodeSigningConfig";
771
855
  const _CCSCR = "CreateCodeSigningConfigRequest";
772
856
  const _CCSCRr = "CreateCodeSigningConfigResponse";
773
- 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";
774
863
  const _CE = "ConcurrentExecutions";
775
864
  const _CESM = "CreateEventSourceMapping";
776
865
  const _CESMR = "CreateEventSourceMappingRequest";
777
866
  const _CF = "CreateFunction";
867
+ const _CFD = "CallbackFailedDetails";
868
+ const _CFDo = "ContextFailedDetails";
778
869
  const _CFR = "CreateFunctionRequest";
779
870
  const _CFUC = "CreateFunctionUrlConfig";
780
871
  const _CFUCR = "CreateFunctionUrlConfigRequest";
781
872
  const _CFUCRr = "CreateFunctionUrlConfigResponse";
782
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";
783
882
  const _CN = "CollectionName";
883
+ const _CO = "CallbackOptions";
884
+ const _COo = "ContextOptions";
885
+ const _CP = "CapacityProvider";
886
+ const _CPA = "CapacityProviderArn";
887
+ const _CPC = "CapacityProviderConfig";
888
+ const _CPL = "CapacityProvidersList";
889
+ const _CPLEE = "CapacityProviderLimitExceededException";
890
+ const _CPN = "CapacityProviderName";
891
+ const _CPORA = "CapacityProviderOperatorRoleArn";
892
+ const _CPPC = "CapacityProviderPermissionsConfig";
893
+ const _CPSC = "CapacityProviderScalingConfig";
894
+ const _CPSPL = "CapacityProviderScalingPoliciesList";
895
+ const _CPVC = "CapacityProviderVpcConfig";
896
+ const _CPa = "CapacityProviders";
784
897
  const _CR = "CompatibleRuntimes";
785
898
  const _CRo = "CompatibleRuntime";
786
899
  const _CS = "CodeSize";
@@ -790,13 +903,23 @@ const _CSCI = "CodeSigningConfigId";
790
903
  const _CSCL = "CodeSigningConfigList";
791
904
  const _CSCNFE = "CodeSigningConfigNotFoundException";
792
905
  const _CSCo = "CodeSigningConfigs";
906
+ const _CSD = "CallbackStartedDetails";
907
+ const _CSDa = "CallbackSucceededDetails";
908
+ const _CSDo = "ContextStartedDetails";
909
+ const _CSDon = "ContextSucceededDetails";
793
910
  const _CSEE = "CodeStorageExceededException";
794
911
  const _CSP = "CodeSigningPolicies";
795
912
  const _CSU = "CodeSizeUnzipped";
796
913
  const _CSZ = "CodeSizeZipped";
797
914
  const _CSo = "CodeSha256";
798
- const _CT = "CreationTime";
915
+ const _CSon = "ConfigSha256";
916
+ const _CT = "CheckpointToken";
917
+ const _CTE = "CallbackTimeoutException";
918
+ const _CTOD = "CallbackTimedOutDetails";
799
919
  const _CT_ = "Content-Type";
920
+ const _CTl = "ClientToken";
921
+ const _CTr = "CreationTime";
922
+ const _CUES = "CheckpointUpdatedExecutionState";
800
923
  const _CVFE = "CodeVerificationFailedException";
801
924
  const _Co = "Cors";
802
925
  const _Cod = "Code";
@@ -807,10 +930,18 @@ const _D = "Description";
807
930
  const _DA = "DeleteAlias";
808
931
  const _DAR = "DeleteAliasRequest";
809
932
  const _DC = "DestinationConfig";
933
+ const _DCP = "DeleteCapacityProvider";
934
+ const _DCPR = "DeleteCapacityProviderRequest";
935
+ const _DCPRe = "DeleteCapacityProviderResponse";
810
936
  const _DCSC = "DeleteCodeSigningConfig";
811
937
  const _DCSCR = "DeleteCodeSigningConfigRequest";
812
938
  const _DCSCRe = "DeleteCodeSigningConfigResponse";
939
+ const _DCu = "DurableConfig";
813
940
  const _DDBESC = "DocumentDBEventSourceConfig";
941
+ const _DE = "DurableExecutions";
942
+ const _DEA = "DurableExecutionArn";
943
+ const _DEASE = "DurableExecutionAlreadyStartedException";
944
+ const _DEN = "DurableExecutionName";
814
945
  const _DESM = "DeleteEventSourceMapping";
815
946
  const _DESMR = "DeleteEventSourceMappingRequest";
816
947
  const _DF = "DeleteFunction";
@@ -821,6 +952,7 @@ const _DFCSCR = "DeleteFunctionCodeSigningConfigRequest";
821
952
  const _DFEIC = "DeleteFunctionEventInvokeConfig";
822
953
  const _DFEICR = "DeleteFunctionEventInvokeConfigRequest";
823
954
  const _DFR = "DeleteFunctionRequest";
955
+ const _DFRe = "DeleteFunctionResponse";
824
956
  const _DFUC = "DeleteFunctionUrlConfig";
825
957
  const _DFUCR = "DeleteFunctionUrlConfigRequest";
826
958
  const _DLC = "DeadLetterConfig";
@@ -831,25 +963,40 @@ const _DPCC = "DeleteProvisionedConcurrencyConfig";
831
963
  const _DPCCR = "DeleteProvisionedConcurrencyConfigRequest";
832
964
  const _DR = "DryRun";
833
965
  const _De = "Destination";
834
- const _E = "Enabled";
966
+ const _Du = "Duration";
967
+ const _E = "Error";
835
968
  const _EC = "ErrorCode";
836
969
  const _ECADE = "EC2AccessDeniedException";
837
970
  const _ECEC = "EC2ErrorCode";
838
971
  const _ECTE = "EC2ThrottledException";
839
972
  const _ECUE = "EC2UnexpectedException";
840
- const _ED = "ErrorDetails";
973
+ const _ED = "ErrorData";
974
+ const _EDr = "ErrorDetails";
975
+ const _EDx = "ExecutionDetails";
841
976
  const _EE = "EnvironmentError";
977
+ const _EEMGBPVC = "ExecutionEnvironmentMemoryGiBPerVCpu";
978
+ const _EEv = "EventError";
979
+ const _EFD = "ExecutionFailedDetails";
842
980
  const _EFSIOE = "EFSIOException";
843
981
  const _EFSMCE = "EFSMountConnectivityException";
844
982
  const _EFSMFE = "EFSMountFailureException";
845
983
  const _EFSMTE = "EFSMountTimeoutException";
846
984
  const _EH = "ExposeHeaders";
985
+ const _EI = "EventId";
986
+ const _EIT = "ExcludedInstanceTypes";
987
+ const _EIv = "EventInput";
988
+ const _EM = "ErrorMessage";
847
989
  const _ENILRE = "ENILimitReachedException";
990
+ const _EO = "ErrorObject";
848
991
  const _EP = "EntryPoint";
849
992
  const _ER = "EnvironmentResponse";
850
993
  const _ERF = "EventRecordFormat";
994
+ const _ERv = "EventResult";
851
995
  const _ES = "EphemeralStorage";
852
996
  const _ESA = "EventSourceArn";
997
+ const _ESD = "ExecutionStartedDetails";
998
+ const _ESDx = "ExecutionSucceededDetails";
999
+ const _ESDxe = "ExecutionStoppedDetails";
853
1000
  const _ESM = "EventSourceMappings";
854
1001
  const _ESMA = "EventSourceMappingArn";
855
1002
  const _ESMC = "EventSourceMappingConfiguration";
@@ -857,13 +1004,22 @@ const _ESML = "EventSourceMappingsList";
857
1004
  const _ESMMC = "EventSourceMappingMetricsConfig";
858
1005
  const _EST = "EventSourceToken";
859
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";
860
1013
  const _EV = "ExecutedVersion";
861
1014
  const _EVN = "EnvironmentVariableName";
862
1015
  const _EVV = "EnvironmentVariableValue";
863
1016
  const _EVn = "EnvironmentVariables";
864
- const _En = "Environment";
1017
+ const _En = "Enabled";
865
1018
  const _End = "Endpoints";
866
- const _Er = "Error";
1019
+ const _Env = "Environment";
1020
+ const _Ev = "Event";
1021
+ const _Eve = "Events";
1022
+ const _Ex = "Execution";
867
1023
  const _F = "Filter";
868
1024
  const _FA = "FunctionArn";
869
1025
  const _FAu = "FunctionArns";
@@ -882,15 +1038,21 @@ const _FL = "FilterList";
882
1038
  const _FLu = "FunctionList";
883
1039
  const _FN = "FunctionName";
884
1040
  const _FRT = "FunctionResponseTypes";
1041
+ const _FS = "FunctionState";
885
1042
  const _FSC = "FileSystemConfigs";
886
1043
  const _FSCL = "FileSystemConfigList";
887
1044
  const _FSCi = "FileSystemConfig";
1045
+ const _FSCu = "FunctionScalingConfig";
888
1046
  const _FU = "FunctionUrl";
889
1047
  const _FUAT = "FunctionUrlAuthType";
890
1048
  const _FUC = "FunctionUrlConfig";
891
1049
  const _FUCL = "FunctionUrlConfigList";
892
1050
  const _FUCu = "FunctionUrlConfigs";
893
1051
  const _FV = "FunctionVersion";
1052
+ const _FVBCPL = "FunctionVersionsByCapacityProviderList";
1053
+ const _FVBCPLI = "FunctionVersionsByCapacityProviderListItem";
1054
+ const _FVPCPLEE = "FunctionVersionsPerCapacityProviderLimitExceededException";
1055
+ const _FVu = "FunctionVersions";
894
1056
  const _Fi = "Filters";
895
1057
  const _Fu = "Functions";
896
1058
  const _GA = "GetAlias";
@@ -898,9 +1060,21 @@ const _GAR = "GetAliasRequest";
898
1060
  const _GAS = "GetAccountSettings";
899
1061
  const _GASR = "GetAccountSettingsRequest";
900
1062
  const _GASRe = "GetAccountSettingsResponse";
1063
+ const _GCP = "GetCapacityProvider";
1064
+ const _GCPR = "GetCapacityProviderRequest";
1065
+ const _GCPRe = "GetCapacityProviderResponse";
901
1066
  const _GCSC = "GetCodeSigningConfig";
902
1067
  const _GCSCR = "GetCodeSigningConfigRequest";
903
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";
904
1078
  const _GESM = "GetEventSourceMapping";
905
1079
  const _GESMR = "GetEventSourceMappingRequest";
906
1080
  const _GF = "GetFunction";
@@ -919,6 +1093,9 @@ const _GFRC = "GetFunctionRecursionConfig";
919
1093
  const _GFRCR = "GetFunctionRecursionConfigRequest";
920
1094
  const _GFRCRe = "GetFunctionRecursionConfigResponse";
921
1095
  const _GFRe = "GetFunctionResponse";
1096
+ const _GFSC = "GetFunctionScalingConfig";
1097
+ const _GFSCR = "GetFunctionScalingConfigRequest";
1098
+ const _GFSCRe = "GetFunctionScalingConfigResponse";
922
1099
  const _GFUC = "GetFunctionUrlConfig";
923
1100
  const _GFUCR = "GetFunctionUrlConfigRequest";
924
1101
  const _GFUCRe = "GetFunctionUrlConfigResponse";
@@ -940,24 +1117,30 @@ const _GRMC = "GetRuntimeManagementConfig";
940
1117
  const _GRMCR = "GetRuntimeManagementConfigRequest";
941
1118
  const _GRMCRe = "GetRuntimeManagementConfigResponse";
942
1119
  const _H = "Handler";
943
- const _I = "Invoke";
1120
+ const _HT = "HeartbeatTimeout";
1121
+ const _HTS = "HeartbeatTimeoutSeconds";
1122
+ const _I = "Input";
944
1123
  const _IA = "InvokeArgs";
945
1124
  const _IAFDS = "Ipv6AllowedForDualStack";
946
1125
  const _IAR = "InvokeAsyncRequest";
947
1126
  const _IARn = "InvokeAsyncResponse";
948
1127
  const _IAn = "InvokeAsync";
949
1128
  const _IC = "ImageConfig";
1129
+ const _ICD = "InvocationCompletedDetails";
950
1130
  const _ICE = "ImageConfigError";
951
1131
  const _ICR = "ImageConfigResponse";
952
1132
  const _ICSE = "InvalidCodeSignatureException";
953
1133
  const _ICn = "InvokeComplete";
1134
+ const _IED = "IncludeExecutionData";
954
1135
  const _IM = "InvokeMode";
1136
+ const _IP = "InputPayload";
955
1137
  const _IPVE = "InvalidParameterValueException";
956
- const _IR = "InvocationRequest";
1138
+ const _IR = "InstanceRequirements";
957
1139
  const _IRCE = "InvalidRequestContentException";
958
1140
  const _IRE = "InvalidRuntimeException";
959
1141
  const _IRSU = "InvokeResponseStreamUpdate";
960
- const _IRn = "InvocationResponse";
1142
+ const _IRn = "InvocationRequest";
1143
+ const _IRnv = "InvocationResponse";
961
1144
  const _ISGIDE = "InvalidSecurityGroupIDException";
962
1145
  const _ISIDE = "InvalidSubnetIDException";
963
1146
  const _IT = "InvocationType";
@@ -969,6 +1152,9 @@ const _IWRSR = "InvokeWithResponseStreamRequest";
969
1152
  const _IWRSRE = "InvokeWithResponseStreamResponseEvent";
970
1153
  const _IWRSRn = "InvokeWithResponseStreamResponse";
971
1154
  const _IZFE = "InvalidZipFileException";
1155
+ const _Id = "Id";
1156
+ const _In = "Invoke";
1157
+ const _KKA = "KmsKeyArn";
972
1158
  const _KMSADE = "KMSAccessDeniedException";
973
1159
  const _KMSDE = "KMSDisabledException";
974
1160
  const _KMSISE = "KMSInvalidStateException";
@@ -985,9 +1171,15 @@ const _LAR = "ListAliasesRequest";
985
1171
  const _LARi = "ListAliasesResponse";
986
1172
  const _LAi = "ListAliases";
987
1173
  const _LC = "LoggingConfig";
1174
+ const _LCP = "ListCapacityProviders";
1175
+ const _LCPR = "ListCapacityProvidersRequest";
1176
+ const _LCPRi = "ListCapacityProvidersResponse";
988
1177
  const _LCSC = "ListCodeSigningConfigs";
989
1178
  const _LCSCR = "ListCodeSigningConfigsRequest";
990
1179
  const _LCSCRi = "ListCodeSigningConfigsResponse";
1180
+ const _LDEBF = "ListDurableExecutionsByFunction";
1181
+ const _LDEBFR = "ListDurableExecutionsByFunctionRequest";
1182
+ const _LDEBFRi = "ListDurableExecutionsByFunctionResponse";
991
1183
  const _LESM = "ListEventSourceMappings";
992
1184
  const _LESMR = "ListEventSourceMappingsRequest";
993
1185
  const _LESMRi = "ListEventSourceMappingsResponse";
@@ -1003,6 +1195,9 @@ const _LFRi = "ListFunctionsResponse";
1003
1195
  const _LFUC = "ListFunctionUrlConfigs";
1004
1196
  const _LFUCR = "ListFunctionUrlConfigsRequest";
1005
1197
  const _LFUCRi = "ListFunctionUrlConfigsResponse";
1198
+ const _LFVBCP = "ListFunctionVersionsByCapacityProvider";
1199
+ const _LFVBCPR = "ListFunctionVersionsByCapacityProviderRequest";
1200
+ const _LFVBCPRi = "ListFunctionVersionsByCapacityProviderResponse";
1006
1201
  const _LFi = "ListFunctions";
1007
1202
  const _LG = "LogGroup";
1008
1203
  const _LI = "LicenseInfo";
@@ -1015,6 +1210,7 @@ const _LLVR = "ListLayerVersionsRequest";
1015
1210
  const _LLVRi = "ListLayerVersionsResponse";
1016
1211
  const _LLi = "ListLayers";
1017
1212
  const _LM = "LastModified";
1213
+ const _LMICPC = "LambdaManagedInstancesCapacityProviderConfig";
1018
1214
  const _LMP = "LocalMountPath";
1019
1215
  const _LMT = "LastModifiedTime";
1020
1216
  const _LMV = "LatestMatchingVersion";
@@ -1050,6 +1246,8 @@ const _MBWIS = "MaximumBatchingWindowInSeconds";
1050
1246
  const _MC = "MetricsConfig";
1051
1247
  const _MCa = "MaximumConcurrency";
1052
1248
  const _MEAIS = "MaximumEventAgeInSeconds";
1249
+ const _MEE = "MinExecutionEnvironments";
1250
+ const _MEEa = "MaxExecutionEnvironments";
1053
1251
  const _MI = "MaxItems";
1054
1252
  const _MP = "MinimumPollers";
1055
1253
  const _MPa = "MaximumPollers";
@@ -1057,22 +1255,35 @@ const _MR = "MasterRegion";
1057
1255
  const _MRA = "MaximumRetryAttempts";
1058
1256
  const _MRAIS = "MaximumRecordAgeInSeconds";
1059
1257
  const _MS = "MemorySize";
1258
+ const _MVCC = "MaxVCpuCount";
1060
1259
  const _Ma = "Marker";
1061
1260
  const _Me = "Metrics";
1062
1261
  const _Mo = "Mode";
1063
1262
  const _N = "Name";
1263
+ const _NADS = "NextAttemptDelaySeconds";
1264
+ const _NAT = "NextAttemptTimestamp";
1265
+ const _NES = "NewExecutionState";
1064
1266
  const _NM = "NextMarker";
1267
+ const _NPVE = "NoPublishedVersionException";
1268
+ const _O = "Operations";
1065
1269
  const _OF = "OnFailure";
1066
1270
  const _OI = "OrganizationId";
1271
+ const _OP = "OperationPayload";
1272
+ const _OPu = "OutputPayload";
1067
1273
  const _OS = "OnSuccess";
1068
1274
  const _OSp = "OptimizationStatus";
1275
+ const _OU = "OperationUpdate";
1276
+ const _OUp = "OperationUpdates";
1277
+ const _Op = "Operation";
1069
1278
  const _P = "Principal";
1070
- const _PC = "PayloadChunk";
1279
+ const _PC = "PermissionsConfig";
1071
1280
  const _PCC = "ProvisionedConcurrencyConfigs";
1072
1281
  const _PCCL = "ProvisionedConcurrencyConfigList";
1073
1282
  const _PCCLI = "ProvisionedConcurrencyConfigListItem";
1074
1283
  const _PCCNFE = "ProvisionedConcurrencyConfigNotFoundException";
1075
1284
  const _PCE = "ProvisionedConcurrentExecutions";
1285
+ const _PCa = "PayloadChunk";
1286
+ const _PEEMC = "PerExecutionEnvironmentMaxConcurrency";
1076
1287
  const _PF = "ParallelizationFactor";
1077
1288
  const _PFC = "PutFunctionConcurrency";
1078
1289
  const _PFCR = "PutFunctionConcurrencyRequest";
@@ -1085,11 +1296,16 @@ const _PFEICR = "PutFunctionEventInvokeConfigRequest";
1085
1296
  const _PFRC = "PutFunctionRecursionConfig";
1086
1297
  const _PFRCR = "PutFunctionRecursionConfigRequest";
1087
1298
  const _PFRCRu = "PutFunctionRecursionConfigResponse";
1299
+ const _PFSC = "PutFunctionScalingConfig";
1300
+ const _PFSCR = "PutFunctionScalingConfigRequest";
1301
+ const _PFSCRu = "PutFunctionScalingConfigResponse";
1088
1302
  const _PGN = "PollerGroupName";
1303
+ const _PI = "ParentId";
1089
1304
  const _PLEE = "PolicyLengthExceededException";
1090
1305
  const _PLV = "PublishLayerVersion";
1091
1306
  const _PLVR = "PublishLayerVersionRequest";
1092
1307
  const _PLVRu = "PublishLayerVersionResponse";
1308
+ const _PMT = "PredefinedMetricType";
1093
1309
  const _POID = "PrincipalOrgID";
1094
1310
  const _PPC = "ProvisionedPollerConfig";
1095
1311
  const _PPCC = "PutProvisionedConcurrencyConfig";
@@ -1099,30 +1315,37 @@ const _PRMC = "PutRuntimeManagementConfig";
1099
1315
  const _PRMCR = "PutRuntimeManagementConfigRequest";
1100
1316
  const _PRMCRu = "PutRuntimeManagementConfigResponse";
1101
1317
  const _PT = "PackageType";
1318
+ const _PTu = "PublishTo";
1102
1319
  const _PV = "PublishVersion";
1103
1320
  const _PVR = "PublishVersionRequest";
1104
- const _Pa = "Pattern";
1105
- const _Pay = "Payload";
1321
+ const _Pa = "Payload";
1322
+ const _Pat = "Pattern";
1106
1323
  const _Po = "Policy";
1107
1324
  const _Pu = "Publish";
1108
1325
  const _Q = "Qualifier";
1109
1326
  const _Qu = "Queues";
1110
- const _R = "Runtime";
1327
+ const _R = "Result";
1111
1328
  const _RA = "Retry-After";
1112
1329
  const _RC = "RoutingConfig";
1113
1330
  const _RCE = "ReservedConcurrentExecutions";
1114
1331
  const _RCEe = "ResourceConflictException";
1332
+ const _RCe = "ReplayChildren";
1333
+ const _RD = "RetryDetails";
1334
+ const _RFSC = "RequestedFunctionScalingConfig";
1115
1335
  const _RI = "RevisionId";
1116
1336
  const _RIE = "RecursiveInvocationException";
1117
1337
  const _RIU = "ResolvedImageUri";
1118
1338
  const _RIUE = "ResourceInUseException";
1339
+ const _RIe = "RequestId";
1119
1340
  const _RL = "RecursiveLoop";
1120
1341
  const _RLVP = "RemoveLayerVersionPermission";
1121
1342
  const _RLVPR = "RemoveLayerVersionPermissionRequest";
1122
1343
  const _RNFE = "ResourceNotFoundException";
1123
1344
  const _RNRE = "ResourceNotReadyException";
1345
+ const _RO = "ReverseOrder";
1124
1346
  const _RP = "RemovePermission";
1125
1347
  const _RPCE = "RequestedProvisionedConcurrentExecutions";
1348
+ const _RPID = "RetentionPeriodInDays";
1126
1349
  const _RPR = "RemovePermissionRequest";
1127
1350
  const _RSCT = "ResponseStreamContentType";
1128
1351
  const _RT = "RepositoryType";
@@ -1133,15 +1356,33 @@ const _RVE = "RuntimeVersionError";
1133
1356
  const _Re = "Resource";
1134
1357
  const _Rea = "Reason";
1135
1358
  const _Ro = "Role";
1359
+ const _Ru = "Runtime";
1136
1360
  const _S = "Statement";
1137
1361
  const _SA = "SourceArn";
1138
1362
  const _SAC = "SourceAccessConfigurations";
1139
1363
  const _SACo = "SourceAccessConfiguration";
1140
1364
  const _SAo = "SourceAccount";
1365
+ const _SAt = "StartedAfter";
1141
1366
  const _SB = "S3Bucket";
1367
+ const _SBt = "StartedBefore";
1142
1368
  const _SC = "ScalingConfig";
1143
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";
1144
1383
  const _SE = "ServiceException";
1384
+ const _SET = "ScheduledEndTimestamp";
1385
+ const _SFD = "StepFailedDetails";
1145
1386
  const _SGI = "SecurityGroupIds";
1146
1387
  const _SI = "StatementId";
1147
1388
  const _SIPALRE = "SubnetIPAddressLimitReachedException";
@@ -1150,13 +1391,16 @@ const _SJA = "SigningJobArn";
1150
1391
  const _SK = "S3Key";
1151
1392
  const _SKMSKA = "SourceKMSKeyArn";
1152
1393
  const _SLL = "SystemLogLevel";
1394
+ const _SM = "ScalingMode";
1153
1395
  const _SMES = "SelfManagedEventSource";
1154
1396
  const _SMKESC = "SelfManagedKafkaEventSourceConfig";
1397
+ const _SO = "StepOptions";
1155
1398
  const _SOV = "S3ObjectVersion";
1156
- const _SP = "StartingPosition";
1399
+ const _SP = "ScalingPolicies";
1157
1400
  const _SPT = "StartingPositionTimestamp";
1158
1401
  const _SPVA = "SigningProfileVersionArns";
1159
1402
  const _SPVAi = "SigningProfileVersionArn";
1403
+ const _SPt = "StartingPosition";
1160
1404
  const _SR = "StateReason";
1161
1405
  const _SRC = "SchemaRegistryConfig";
1162
1406
  const _SRCt = "StateReasonCode";
@@ -1164,37 +1408,55 @@ const _SRETLE = "SerializedRequestEntityTooLargeException";
1164
1408
  const _SRURI = "SchemaRegistryURI";
1165
1409
  const _SRt = "StatusReason";
1166
1410
  const _SS = "SensitiveString";
1411
+ const _SSD = "StepStartedDetails";
1412
+ const _SSDt = "StepSucceededDetails";
1167
1413
  const _SSE = "SnapStartException";
1168
1414
  const _SSNRE = "SnapStartNotReadyException";
1169
1415
  const _SSR = "SnapStartResponse";
1170
1416
  const _SSTE = "SnapStartTimeoutException";
1171
1417
  const _SSn = "SnapStart";
1418
+ const _ST = "StackTrace";
1419
+ const _STE = "StackTraceEntry";
1420
+ const _STEt = "StackTraceEntries";
1172
1421
  const _STR = "StateTransitionReason";
1422
+ const _STt = "StartTimestamp";
1423
+ const _STto = "StopTimestamp";
1424
+ const _STu = "SubType";
1173
1425
  const _SVC = "SchemaValidationConfigs";
1174
1426
  const _Si = "Size";
1175
1427
  const _St = "State";
1176
1428
  const _Sta = "Status";
1177
- const _T = "Type";
1429
+ const _Stat = "Statuses";
1430
+ const _T = "Timeout";
1178
1431
  const _TA = "TargetArn";
1179
1432
  const _TC = "TracingConfig";
1180
1433
  const _TCR = "TracingConfigResponse";
1181
1434
  const _TCS = "TotalCodeSize";
1182
1435
  const _TCe = "TenancyConfig";
1183
1436
  const _TE = "TagsError";
1437
+ const _TH = "TraceHeader";
1184
1438
  const _TI = "TenantId";
1185
1439
  const _TIM = "TenantIsolationMode";
1186
1440
  const _TK = "TagKeys";
1187
1441
  const _TMRE = "TooManyRequestsException";
1188
1442
  const _TR = "TagResource";
1189
1443
  const _TRR = "TagResourceRequest";
1444
+ const _TS = "TimeoutSeconds";
1445
+ const _TTSP = "TargetTrackingScalingPolicy";
1446
+ const _TV = "TargetValue";
1190
1447
  const _TWIS = "TumblingWindowInSeconds";
1191
1448
  const _Ta = "Tags";
1192
- const _Ti = "Timeout";
1193
1449
  const _To = "Topics";
1450
+ const _Tr = "Truncated";
1451
+ const _Ty = "Type";
1452
+ const _U = "Updates";
1194
1453
  const _UA = "UpdateAlias";
1195
1454
  const _UAOD = "UntrustedArtifactOnDeployment";
1196
1455
  const _UAR = "UpdateAliasRequest";
1197
1456
  const _UCE = "UnreservedConcurrentExecutions";
1457
+ const _UCP = "UpdateCapacityProvider";
1458
+ const _UCPR = "UpdateCapacityProviderRequest";
1459
+ const _UCPRp = "UpdateCapacityProviderResponse";
1198
1460
  const _UCSC = "UpdateCodeSigningConfig";
1199
1461
  const _UCSCR = "UpdateCodeSigningConfigRequest";
1200
1462
  const _UCSCRp = "UpdateCodeSigningConfigResponse";
@@ -1222,14 +1484,23 @@ const _VI = "VpcId";
1222
1484
  const _VN = "VersionNumber";
1223
1485
  const _Ve = "Version";
1224
1486
  const _Ver = "Versions";
1487
+ const _WCD = "WaitCancelledDetails";
1225
1488
  const _WD = "WorkingDirectory";
1489
+ const _WDa = "WaitDetails";
1490
+ const _WO = "WaitOptions";
1491
+ const _WS = "WaitSeconds";
1492
+ const _WSD = "WaitStartedDetails";
1493
+ const _WSDa = "WaitSucceededDetails";
1226
1494
  const _XACC = "X-Amz-Client-Context";
1495
+ const _XADEA = "X-Amz-Durable-Execution-Arn";
1496
+ const _XADEN = "X-Amz-Durable-Execution-Name";
1227
1497
  const _XAEV = "X-Amz-Executed-Version";
1228
1498
  const _XAFE = "X-Amz-Function-Error";
1229
1499
  const _XAIT = "X-Amz-Invocation-Type";
1230
1500
  const _XALR = "X-Amz-Log-Result";
1231
1501
  const _XALT = "X-Amz-Log-Type";
1232
1502
  const _XATI = "X-Amz-Tenant-Id";
1503
+ const _XATIm = "XAmznTraceId";
1233
1504
  const _ZF = "ZipFile";
1234
1505
  const _c = "client";
1235
1506
  const _e = "error";
@@ -1245,6 +1516,7 @@ const _se = "server";
1245
1516
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.lambda";
1246
1517
  const _tK = "tagKeys";
1247
1518
  const n0 = "com.amazonaws.lambda";
1519
+ var BinaryOperationPayload = [0, n0, _BOP, 8, 21];
1248
1520
  var _Blob = [0, n0, _B, 8, 21];
1249
1521
  var BlobStream = [
1250
1522
  0,
@@ -1257,7 +1529,14 @@ var BlobStream = [
1257
1529
  ];
1258
1530
  var EnvironmentVariableName = [0, n0, _EVN, 8, 0];
1259
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];
1260
1538
  var SensitiveString = [0, n0, _SS, 8, 0];
1539
+ var StackTraceEntry = [0, n0, _STE, 8, 0];
1261
1540
  var AccountLimit = [3, n0, _AL, 0, [_TCS, _CSU, _CSZ, _CE, _UCE], [1, 1, 1, 1, 1]];
1262
1541
  var AccountUsage = [3, n0, _AU, 0, [_TCS, _FC], [1, 1]];
1263
1542
  var AddLayerVersionPermissionRequest = [
@@ -1327,6 +1606,126 @@ var AmazonManagedKafkaEventSourceConfig = [
1327
1606
  [_CGI, _SRC],
1328
1607
  [0, () => KafkaSchemaRegistryConfig],
1329
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);
1634
+ var CapacityProvider = [
1635
+ 3,
1636
+ n0,
1637
+ _CP,
1638
+ 0,
1639
+ [_CPA, _St, _VC, _PC, _IR, _CPSC, _KKA, _LM],
1640
+ [
1641
+ 0,
1642
+ 0,
1643
+ () => CapacityProviderVpcConfig,
1644
+ () => CapacityProviderPermissionsConfig,
1645
+ () => InstanceRequirements,
1646
+ () => CapacityProviderScalingConfig,
1647
+ 0,
1648
+ 0,
1649
+ ],
1650
+ ];
1651
+ var CapacityProviderConfig = [
1652
+ 3,
1653
+ n0,
1654
+ _CPC,
1655
+ 0,
1656
+ [_LMICPC],
1657
+ [() => LambdaManagedInstancesCapacityProviderConfig],
1658
+ ];
1659
+ var CapacityProviderLimitExceededException = [
1660
+ -3,
1661
+ n0,
1662
+ _CPLEE,
1663
+ {
1664
+ [_e]: _c,
1665
+ [_hE]: 400,
1666
+ },
1667
+ [_Ty, _m],
1668
+ [0, 0],
1669
+ ];
1670
+ schema.TypeRegistry.for(n0).registerError(CapacityProviderLimitExceededException, CapacityProviderLimitExceededException$1);
1671
+ var CapacityProviderPermissionsConfig = [3, n0, _CPPC, 0, [_CPORA], [0]];
1672
+ var CapacityProviderScalingConfig = [
1673
+ 3,
1674
+ n0,
1675
+ _CPSC,
1676
+ 0,
1677
+ [_MVCC, _SM, _SP],
1678
+ [1, 0, () => CapacityProviderScalingPoliciesList],
1679
+ ];
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
+ ];
1330
1729
  var CodeSigningConfig = [
1331
1730
  3,
1332
1731
  n0,
@@ -1343,7 +1742,7 @@ var CodeSigningConfigNotFoundException = [
1343
1742
  [_e]: _c,
1344
1743
  [_hE]: 404,
1345
1744
  },
1346
- [_T, _M],
1745
+ [_Ty, _M],
1347
1746
  [0, 0],
1348
1747
  ];
1349
1748
  schema.TypeRegistry.for(n0).registerError(CodeSigningConfigNotFoundException, CodeSigningConfigNotFoundException$1);
@@ -1356,7 +1755,7 @@ var CodeStorageExceededException = [
1356
1755
  [_e]: _c,
1357
1756
  [_hE]: 400,
1358
1757
  },
1359
- [_T, _m],
1758
+ [_Ty, _m],
1360
1759
  [0, 0],
1361
1760
  ];
1362
1761
  schema.TypeRegistry.for(n0).registerError(CodeStorageExceededException, CodeStorageExceededException$1);
@@ -1368,11 +1767,23 @@ var CodeVerificationFailedException = [
1368
1767
  [_e]: _c,
1369
1768
  [_hE]: 400,
1370
1769
  },
1371
- [_T, _M],
1770
+ [_Ty, _M],
1372
1771
  [0, 0],
1373
1772
  ];
1374
1773
  schema.TypeRegistry.for(n0).registerError(CodeVerificationFailedException, CodeVerificationFailedException$1);
1375
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]]];
1376
1787
  var Cors = [
1377
1788
  3,
1378
1789
  n0,
@@ -1389,6 +1800,23 @@ var CreateAliasRequest = [
1389
1800
  [_FN, _N, _FV, _D, _RC],
1390
1801
  [[0, 1], 0, 0, 0, () => AliasRoutingConfiguration],
1391
1802
  ];
1803
+ var CreateCapacityProviderRequest = [
1804
+ 3,
1805
+ n0,
1806
+ _CCPR,
1807
+ 0,
1808
+ [_CPN, _VC, _PC, _IR, _CPSC, _KKA, _Ta],
1809
+ [
1810
+ 0,
1811
+ () => CapacityProviderVpcConfig,
1812
+ () => CapacityProviderPermissionsConfig,
1813
+ () => InstanceRequirements,
1814
+ () => CapacityProviderScalingConfig,
1815
+ 0,
1816
+ 128 | 0,
1817
+ ],
1818
+ ];
1819
+ var CreateCapacityProviderResponse = [3, n0, _CCPRr, 0, [_CP], [() => CapacityProvider]];
1392
1820
  var CreateCodeSigningConfigRequest = [
1393
1821
  3,
1394
1822
  n0,
@@ -1413,12 +1841,12 @@ var CreateEventSourceMappingRequest = [
1413
1841
  [
1414
1842
  _ESA,
1415
1843
  _FN,
1416
- _E,
1844
+ _En,
1417
1845
  _BSa,
1418
1846
  _FCi,
1419
1847
  _MBWIS,
1420
1848
  _PF,
1421
- _SP,
1849
+ _SPt,
1422
1850
  _SPT,
1423
1851
  _DC,
1424
1852
  _MRAIS,
@@ -1476,18 +1904,18 @@ var CreateFunctionRequest = [
1476
1904
  0,
1477
1905
  [
1478
1906
  _FN,
1479
- _R,
1907
+ _Ru,
1480
1908
  _Ro,
1481
1909
  _H,
1482
1910
  _Cod,
1483
1911
  _D,
1484
- _Ti,
1912
+ _T,
1485
1913
  _MS,
1486
1914
  _Pu,
1487
1915
  _VC,
1488
1916
  _PT,
1489
1917
  _DLC,
1490
- _En,
1918
+ _Env,
1491
1919
  _KMSKA,
1492
1920
  _TC,
1493
1921
  _Ta,
@@ -1499,6 +1927,9 @@ var CreateFunctionRequest = [
1499
1927
  _ES,
1500
1928
  _SSn,
1501
1929
  _LC,
1930
+ _CPC,
1931
+ _PTu,
1932
+ _DCu,
1502
1933
  _TCe,
1503
1934
  ],
1504
1935
  [
@@ -1526,6 +1957,9 @@ var CreateFunctionRequest = [
1526
1957
  () => EphemeralStorage,
1527
1958
  () => SnapStart,
1528
1959
  () => LoggingConfig,
1960
+ () => CapacityProviderConfig,
1961
+ 0,
1962
+ () => DurableConfig,
1529
1963
  () => TenancyConfig,
1530
1964
  ],
1531
1965
  ];
@@ -1553,7 +1987,7 @@ var CreateFunctionUrlConfigResponse = [
1553
1987
  n0,
1554
1988
  _CFUCRr,
1555
1989
  0,
1556
- [_FU, _FA, _AT, _Co, _CT, _IM],
1990
+ [_FU, _FA, _AT, _Co, _CTr, _IM],
1557
1991
  [0, 0, 0, () => Cors, 0, 0],
1558
1992
  ];
1559
1993
  var DeadLetterConfig = [3, n0, _DLC, 0, [_TA], [0]];
@@ -1568,6 +2002,8 @@ var DeleteAliasRequest = [
1568
2002
  [0, 1],
1569
2003
  ],
1570
2004
  ];
2005
+ var DeleteCapacityProviderRequest = [3, n0, _DCPR, 0, [_CPN], [[0, 1]]];
2006
+ var DeleteCapacityProviderResponse = [3, n0, _DCPRe, 0, [_CP], [() => CapacityProvider]];
1571
2007
  var DeleteCodeSigningConfigRequest = [3, n0, _DCSCR, 0, [_CSCA], [[0, 1]]];
1572
2008
  var DeleteCodeSigningConfigResponse = [3, n0, _DCSCRe, 0, [], []];
1573
2009
  var DeleteEventSourceMappingRequest = [3, n0, _DESMR, 0, [_UUID], [[0, 1]]];
@@ -1605,6 +2041,7 @@ var DeleteFunctionRequest = [
1605
2041
  ],
1606
2042
  ],
1607
2043
  ];
2044
+ var DeleteFunctionResponse = [3, n0, _DFRe, 0, [_SCt], [[1, 32]]];
1608
2045
  var DeleteFunctionUrlConfigRequest = [
1609
2046
  3,
1610
2047
  n0,
@@ -1650,6 +2087,19 @@ var DeleteProvisionedConcurrencyConfigRequest = [
1650
2087
  ];
1651
2088
  var DestinationConfig = [3, n0, _DC, 0, [_OS, _OF], [() => OnSuccess, () => OnFailure]];
1652
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);
1653
2103
  var EC2AccessDeniedException = [
1654
2104
  -3,
1655
2105
  n0,
@@ -1658,7 +2108,7 @@ var EC2AccessDeniedException = [
1658
2108
  [_e]: _se,
1659
2109
  [_hE]: 502,
1660
2110
  },
1661
- [_T, _M],
2111
+ [_Ty, _M],
1662
2112
  [0, 0],
1663
2113
  ];
1664
2114
  schema.TypeRegistry.for(n0).registerError(EC2AccessDeniedException, EC2AccessDeniedException$1);
@@ -1670,7 +2120,7 @@ var EC2ThrottledException = [
1670
2120
  [_e]: _se,
1671
2121
  [_hE]: 502,
1672
2122
  },
1673
- [_T, _M],
2123
+ [_Ty, _M],
1674
2124
  [0, 0],
1675
2125
  ];
1676
2126
  schema.TypeRegistry.for(n0).registerError(EC2ThrottledException, EC2ThrottledException$1);
@@ -1682,7 +2132,7 @@ var EC2UnexpectedException = [
1682
2132
  [_e]: _se,
1683
2133
  [_hE]: 502,
1684
2134
  },
1685
- [_T, _M, _ECEC],
2135
+ [_Ty, _M, _ECEC],
1686
2136
  [0, 0, 0],
1687
2137
  ];
1688
2138
  schema.TypeRegistry.for(n0).registerError(EC2UnexpectedException, EC2UnexpectedException$1);
@@ -1694,7 +2144,7 @@ var EFSIOException = [
1694
2144
  [_e]: _c,
1695
2145
  [_hE]: 410,
1696
2146
  },
1697
- [_T, _M],
2147
+ [_Ty, _M],
1698
2148
  [0, 0],
1699
2149
  ];
1700
2150
  schema.TypeRegistry.for(n0).registerError(EFSIOException, EFSIOException$1);
@@ -1706,7 +2156,7 @@ var EFSMountConnectivityException = [
1706
2156
  [_e]: _c,
1707
2157
  [_hE]: 408,
1708
2158
  },
1709
- [_T, _M],
2159
+ [_Ty, _M],
1710
2160
  [0, 0],
1711
2161
  ];
1712
2162
  schema.TypeRegistry.for(n0).registerError(EFSMountConnectivityException, EFSMountConnectivityException$1);
@@ -1718,7 +2168,7 @@ var EFSMountFailureException = [
1718
2168
  [_e]: _c,
1719
2169
  [_hE]: 403,
1720
2170
  },
1721
- [_T, _M],
2171
+ [_Ty, _M],
1722
2172
  [0, 0],
1723
2173
  ];
1724
2174
  schema.TypeRegistry.for(n0).registerError(EFSMountFailureException, EFSMountFailureException$1);
@@ -1730,7 +2180,7 @@ var EFSMountTimeoutException = [
1730
2180
  [_e]: _c,
1731
2181
  [_hE]: 408,
1732
2182
  },
1733
- [_T, _M],
2183
+ [_Ty, _M],
1734
2184
  [0, 0],
1735
2185
  ];
1736
2186
  schema.TypeRegistry.for(n0).registerError(EFSMountTimeoutException, EFSMountTimeoutException$1);
@@ -1742,24 +2192,112 @@ var ENILimitReachedException = [
1742
2192
  [_e]: _se,
1743
2193
  [_hE]: 502,
1744
2194
  },
1745
- [_T, _M],
2195
+ [_Ty, _M],
1746
2196
  [0, 0],
1747
2197
  ];
1748
2198
  schema.TypeRegistry.for(n0).registerError(ENILimitReachedException, ENILimitReachedException$1);
1749
- var Environment = [3, n0, _En, 0, [_V], [[() => EnvironmentVariables, 0]]];
2199
+ var Environment = [3, n0, _Env, 0, [_V], [[() => EnvironmentVariables, 0]]];
1750
2200
  var EnvironmentError = [3, n0, _EE, 0, [_EC, _M], [0, [() => SensitiveString, 0]]];
1751
2201
  var EnvironmentResponse = [
1752
2202
  3,
1753
2203
  n0,
1754
2204
  _ER,
1755
2205
  0,
1756
- [_V, _Er],
2206
+ [_V, _E],
1757
2207
  [
1758
2208
  [() => EnvironmentVariables, 0],
1759
2209
  [() => EnvironmentError, 0],
1760
2210
  ],
1761
2211
  ];
1762
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]];
1763
2301
  var EventSourceMappingConfiguration = [
1764
2302
  3,
1765
2303
  n0,
@@ -1767,7 +2305,7 @@ var EventSourceMappingConfiguration = [
1767
2305
  0,
1768
2306
  [
1769
2307
  _UUID,
1770
- _SP,
2308
+ _SPt,
1771
2309
  _SPT,
1772
2310
  _BSa,
1773
2311
  _MBWIS,
@@ -1835,8 +2373,15 @@ var EventSourceMappingConfiguration = [
1835
2373
  ],
1836
2374
  ];
1837
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]]];
1838
2383
  var FileSystemConfig = [3, n0, _FSCi, 0, [_Arn, _LMP], [0, 0]];
1839
- var Filter = [3, n0, _F, 0, [_Pa], [0]];
2384
+ var Filter = [3, n0, _F, 0, [_Pat], [0]];
1840
2385
  var FilterCriteria = [3, n0, _FCi, 0, [_Fi], [() => FilterList]];
1841
2386
  var FilterCriteriaError = [3, n0, _FCE, 0, [_EC, _M], [0, 0]];
1842
2387
  var FunctionCode = [
@@ -1863,19 +2408,19 @@ var FunctionConfiguration = [
1863
2408
  [
1864
2409
  _FN,
1865
2410
  _FA,
1866
- _R,
2411
+ _Ru,
1867
2412
  _Ro,
1868
2413
  _H,
1869
2414
  _CS,
1870
2415
  _D,
1871
- _Ti,
2416
+ _T,
1872
2417
  _MS,
1873
2418
  _LM,
1874
2419
  _CSo,
1875
2420
  _Ve,
1876
2421
  _VC,
1877
2422
  _DLC,
1878
- _En,
2423
+ _Env,
1879
2424
  _KMSKA,
1880
2425
  _TC,
1881
2426
  _MAa,
@@ -1897,6 +2442,9 @@ var FunctionConfiguration = [
1897
2442
  _SSn,
1898
2443
  _RVC,
1899
2444
  _LC,
2445
+ _CPC,
2446
+ _CSon,
2447
+ _DCu,
1900
2448
  _TCe,
1901
2449
  ],
1902
2450
  [
@@ -1936,6 +2484,9 @@ var FunctionConfiguration = [
1936
2484
  () => SnapStartResponse,
1937
2485
  [() => RuntimeVersionConfig, 0],
1938
2486
  () => LoggingConfig,
2487
+ () => CapacityProviderConfig,
2488
+ 0,
2489
+ () => DurableConfig,
1939
2490
  () => TenancyConfig,
1940
2491
  ],
1941
2492
  ];
@@ -1947,14 +2498,28 @@ var FunctionEventInvokeConfig = [
1947
2498
  [_LM, _FA, _MRA, _MEAIS, _DC],
1948
2499
  [4, 0, 1, 1, () => DestinationConfig],
1949
2500
  ];
2501
+ var FunctionScalingConfig = [3, n0, _FSCu, 0, [_MEE, _MEEa], [1, 1]];
1950
2502
  var FunctionUrlConfig = [
1951
2503
  3,
1952
2504
  n0,
1953
2505
  _FUC,
1954
2506
  0,
1955
- [_FU, _FA, _CT, _LMT, _Co, _AT, _IM],
2507
+ [_FU, _FA, _CTr, _LMT, _Co, _AT, _IM],
1956
2508
  [0, 0, 0, 0, () => Cors, 0, 0],
1957
2509
  ];
2510
+ var FunctionVersionsByCapacityProviderListItem = [3, n0, _FVBCPLI, 0, [_FA, _St], [0, 0]];
2511
+ var FunctionVersionsPerCapacityProviderLimitExceededException = [
2512
+ -3,
2513
+ n0,
2514
+ _FVPCPLEE,
2515
+ {
2516
+ [_e]: _c,
2517
+ [_hE]: 400,
2518
+ },
2519
+ [_Ty, _m],
2520
+ [0, 0],
2521
+ ];
2522
+ schema.TypeRegistry.for(n0).registerError(FunctionVersionsPerCapacityProviderLimitExceededException, FunctionVersionsPerCapacityProviderLimitExceededException$1);
1958
2523
  var GetAccountSettingsRequest = [3, n0, _GASR, 0, [], []];
1959
2524
  var GetAccountSettingsResponse = [
1960
2525
  3,
@@ -1975,8 +2540,97 @@ var GetAliasRequest = [
1975
2540
  [0, 1],
1976
2541
  ],
1977
2542
  ];
2543
+ var GetCapacityProviderRequest = [3, n0, _GCPR, 0, [_CPN], [[0, 1]]];
2544
+ var GetCapacityProviderResponse = [3, n0, _GCPRe, 0, [_CP], [() => CapacityProvider]];
1978
2545
  var GetCodeSigningConfigRequest = [3, n0, _GCSCR, 0, [_CSCA], [[0, 1]]];
1979
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
+ ];
1980
2634
  var GetEventSourceMappingRequest = [3, n0, _GESMR, 0, [_UUID], [[0, 1]]];
1981
2635
  var GetFunctionCodeSigningConfigRequest = [3, n0, _GFCSCR, 0, [_FN], [[0, 1]]];
1982
2636
  var GetFunctionCodeSigningConfigResponse = [3, n0, _GFCSCRe, 0, [_CSCA, _FN], [0, 0]];
@@ -2040,6 +2694,30 @@ var GetFunctionResponse = [
2040
2694
  [_Con, _Cod, _Ta, _TE, _C],
2041
2695
  [[() => FunctionConfiguration, 0], () => FunctionCodeLocation, 128 | 0, () => TagsError, () => Concurrency],
2042
2696
  ];
2697
+ var GetFunctionScalingConfigRequest = [
2698
+ 3,
2699
+ n0,
2700
+ _GFSCR,
2701
+ 0,
2702
+ [_FN, _Q],
2703
+ [
2704
+ [0, 1],
2705
+ [
2706
+ 0,
2707
+ {
2708
+ [_hQ]: _Q,
2709
+ },
2710
+ ],
2711
+ ],
2712
+ ];
2713
+ var GetFunctionScalingConfigResponse = [
2714
+ 3,
2715
+ n0,
2716
+ _GFSCRe,
2717
+ 0,
2718
+ [_FA, _AFSC, _RFSC],
2719
+ [0, () => FunctionScalingConfig, () => FunctionScalingConfig],
2720
+ ];
2043
2721
  var GetFunctionUrlConfigRequest = [
2044
2722
  3,
2045
2723
  n0,
@@ -2061,7 +2739,7 @@ var GetFunctionUrlConfigResponse = [
2061
2739
  n0,
2062
2740
  _GFUCRe,
2063
2741
  0,
2064
- [_FU, _FA, _AT, _Co, _CT, _LMT, _IM],
2742
+ [_FU, _FA, _AT, _Co, _CTr, _LMT, _IM],
2065
2743
  [0, 0, 0, () => Cors, 0, 0, 0],
2066
2744
  ];
2067
2745
  var GetLayerVersionByArnRequest = [
@@ -2107,7 +2785,7 @@ var GetLayerVersionResponse = [
2107
2785
  n0,
2108
2786
  _GLVRe,
2109
2787
  0,
2110
- [_Cont, _LA, _LVA, _D, _CD, _Ve, _CR, _LI, _CA],
2788
+ [_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI, _CA],
2111
2789
  [() => LayerVersionContentOutput, 0, 0, 0, 0, 1, 64 | 0, 0, 64 | 0],
2112
2790
  ];
2113
2791
  var GetPolicyRequest = [
@@ -2182,9 +2860,10 @@ var ImageConfigResponse = [
2182
2860
  n0,
2183
2861
  _ICR,
2184
2862
  0,
2185
- [_IC, _Er],
2863
+ [_IC, _E],
2186
2864
  [() => ImageConfig, [() => ImageConfigError, 0]],
2187
2865
  ];
2866
+ var InstanceRequirements = [3, n0, _IR, 0, [_Ar, _AIT, _EIT], [64 | 0, 64 | 0, 64 | 0]];
2188
2867
  var InvalidCodeSignatureException = [
2189
2868
  -3,
2190
2869
  n0,
@@ -2193,7 +2872,7 @@ var InvalidCodeSignatureException = [
2193
2872
  [_e]: _c,
2194
2873
  [_hE]: 400,
2195
2874
  },
2196
- [_T, _M],
2875
+ [_Ty, _M],
2197
2876
  [0, 0],
2198
2877
  ];
2199
2878
  schema.TypeRegistry.for(n0).registerError(InvalidCodeSignatureException, InvalidCodeSignatureException$1);
@@ -2205,7 +2884,7 @@ var InvalidParameterValueException = [
2205
2884
  [_e]: _c,
2206
2885
  [_hE]: 400,
2207
2886
  },
2208
- [_T, _m],
2887
+ [_Ty, _m],
2209
2888
  [0, 0],
2210
2889
  ];
2211
2890
  schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException, InvalidParameterValueException$1);
@@ -2217,7 +2896,7 @@ var InvalidRequestContentException = [
2217
2896
  [_e]: _c,
2218
2897
  [_hE]: 400,
2219
2898
  },
2220
- [_T, _m],
2899
+ [_Ty, _m],
2221
2900
  [0, 0],
2222
2901
  ];
2223
2902
  schema.TypeRegistry.for(n0).registerError(InvalidRequestContentException, InvalidRequestContentException$1);
@@ -2229,7 +2908,7 @@ var InvalidRuntimeException = [
2229
2908
  [_e]: _se,
2230
2909
  [_hE]: 502,
2231
2910
  },
2232
- [_T, _M],
2911
+ [_Ty, _M],
2233
2912
  [0, 0],
2234
2913
  ];
2235
2914
  schema.TypeRegistry.for(n0).registerError(InvalidRuntimeException, InvalidRuntimeException$1);
@@ -2241,7 +2920,7 @@ var InvalidSecurityGroupIDException = [
2241
2920
  [_e]: _se,
2242
2921
  [_hE]: 502,
2243
2922
  },
2244
- [_T, _M],
2923
+ [_Ty, _M],
2245
2924
  [0, 0],
2246
2925
  ];
2247
2926
  schema.TypeRegistry.for(n0).registerError(InvalidSecurityGroupIDException, InvalidSecurityGroupIDException$1);
@@ -2253,7 +2932,7 @@ var InvalidSubnetIDException = [
2253
2932
  [_e]: _se,
2254
2933
  [_hE]: 502,
2255
2934
  },
2256
- [_T, _M],
2935
+ [_Ty, _M],
2257
2936
  [0, 0],
2258
2937
  ];
2259
2938
  schema.TypeRegistry.for(n0).registerError(InvalidSubnetIDException, InvalidSubnetIDException$1);
@@ -2265,16 +2944,24 @@ var InvalidZipFileException = [
2265
2944
  [_e]: _se,
2266
2945
  [_hE]: 502,
2267
2946
  },
2268
- [_T, _M],
2947
+ [_Ty, _M],
2269
2948
  [0, 0],
2270
2949
  ];
2271
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
+ ];
2272
2959
  var InvocationRequest = [
2273
2960
  3,
2274
2961
  n0,
2275
- _IR,
2962
+ _IRn,
2276
2963
  0,
2277
- [_FN, _IT, _LT, _CC, _Pay, _Q, _TI],
2964
+ [_FN, _IT, _LT, _CC, _DEN, _Pa, _Q, _TI],
2278
2965
  [
2279
2966
  [0, 1],
2280
2967
  [
@@ -2295,6 +2982,12 @@ var InvocationRequest = [
2295
2982
  [_hH]: _XACC,
2296
2983
  },
2297
2984
  ],
2985
+ [
2986
+ 0,
2987
+ {
2988
+ [_hH]: _XADEN,
2989
+ },
2990
+ ],
2298
2991
  [() => _Blob, 16],
2299
2992
  [
2300
2993
  0,
@@ -2313,9 +3006,9 @@ var InvocationRequest = [
2313
3006
  var InvocationResponse = [
2314
3007
  3,
2315
3008
  n0,
2316
- _IRn,
3009
+ _IRnv,
2317
3010
  0,
2318
- [_SCt, _FE, _LR, _Pay, _EV],
3011
+ [_SCt, _FE, _LR, _Pa, _EV, _DEA],
2319
3012
  [
2320
3013
  [1, 32],
2321
3014
  [
@@ -2337,6 +3030,12 @@ var InvocationResponse = [
2337
3030
  [_hH]: _XAEV,
2338
3031
  },
2339
3032
  ],
3033
+ [
3034
+ 0,
3035
+ {
3036
+ [_hH]: _XADEA,
3037
+ },
3038
+ ],
2340
3039
  ],
2341
3040
  ];
2342
3041
  var InvokeAsyncRequest = [
@@ -2356,7 +3055,7 @@ var InvokeResponseStreamUpdate = [
2356
3055
  n0,
2357
3056
  _IRSU,
2358
3057
  0,
2359
- [_Pay],
3058
+ [_Pa],
2360
3059
  [
2361
3060
  [
2362
3061
  () => _Blob,
@@ -2371,7 +3070,7 @@ var InvokeWithResponseStreamCompleteEvent = [
2371
3070
  n0,
2372
3071
  _IWRSCE,
2373
3072
  0,
2374
- [_EC, _ED, _LR],
3073
+ [_EC, _EDr, _LR],
2375
3074
  [0, 0, 0],
2376
3075
  ];
2377
3076
  var InvokeWithResponseStreamRequest = [
@@ -2379,7 +3078,7 @@ var InvokeWithResponseStreamRequest = [
2379
3078
  n0,
2380
3079
  _IWRSR,
2381
3080
  0,
2382
- [_FN, _IT, _LT, _CC, _Q, _Pay, _TI],
3081
+ [_FN, _IT, _LT, _CC, _Q, _Pa, _TI],
2383
3082
  [
2384
3083
  [0, 1],
2385
3084
  [
@@ -2438,7 +3137,7 @@ var InvokeWithResponseStreamResponse = [
2438
3137
  ],
2439
3138
  ],
2440
3139
  ];
2441
- var KafkaSchemaRegistryAccessConfig = [3, n0, _KSRAC, 0, [_T, _URI], [0, 0]];
3140
+ var KafkaSchemaRegistryAccessConfig = [3, n0, _KSRAC, 0, [_Ty, _URI], [0, 0]];
2442
3141
  var KafkaSchemaRegistryConfig = [
2443
3142
  3,
2444
3143
  n0,
@@ -2456,7 +3155,7 @@ var KMSAccessDeniedException = [
2456
3155
  [_e]: _se,
2457
3156
  [_hE]: 502,
2458
3157
  },
2459
- [_T, _M],
3158
+ [_Ty, _M],
2460
3159
  [0, 0],
2461
3160
  ];
2462
3161
  schema.TypeRegistry.for(n0).registerError(KMSAccessDeniedException, KMSAccessDeniedException$1);
@@ -2468,7 +3167,7 @@ var KMSDisabledException = [
2468
3167
  [_e]: _se,
2469
3168
  [_hE]: 502,
2470
3169
  },
2471
- [_T, _M],
3170
+ [_Ty, _M],
2472
3171
  [0, 0],
2473
3172
  ];
2474
3173
  schema.TypeRegistry.for(n0).registerError(KMSDisabledException, KMSDisabledException$1);
@@ -2480,7 +3179,7 @@ var KMSInvalidStateException = [
2480
3179
  [_e]: _se,
2481
3180
  [_hE]: 502,
2482
3181
  },
2483
- [_T, _M],
3182
+ [_Ty, _M],
2484
3183
  [0, 0],
2485
3184
  ];
2486
3185
  schema.TypeRegistry.for(n0).registerError(KMSInvalidStateException, KMSInvalidStateException$1);
@@ -2492,10 +3191,18 @@ var KMSNotFoundException = [
2492
3191
  [_e]: _se,
2493
3192
  [_hE]: 502,
2494
3193
  },
2495
- [_T, _M],
3194
+ [_Ty, _M],
2496
3195
  [0, 0],
2497
3196
  ];
2498
3197
  schema.TypeRegistry.for(n0).registerError(KMSNotFoundException, KMSNotFoundException$1);
3198
+ var LambdaManagedInstancesCapacityProviderConfig = [
3199
+ 3,
3200
+ n0,
3201
+ _LMICPC,
3202
+ 0,
3203
+ [_CPA, _PEEMC, _EEMGBPVC],
3204
+ [0, 1, 1],
3205
+ ];
2499
3206
  var Layer = [3, n0, _La, 0, [_Arn, _CS, _SPVAi, _SJA], [0, 1, 0, 0]];
2500
3207
  var LayersListItem = [
2501
3208
  3,
@@ -2526,7 +3233,7 @@ var LayerVersionsListItem = [
2526
3233
  n0,
2527
3234
  _LVLI,
2528
3235
  0,
2529
- [_LVA, _Ve, _D, _CD, _CR, _LI, _CA],
3236
+ [_LVA, _Ve, _D, _CDr, _CR, _LI, _CA],
2530
3237
  [0, 1, 0, 0, 64 | 0, 0, 64 | 0],
2531
3238
  ];
2532
3239
  var ListAliasesRequest = [
@@ -2558,6 +3265,41 @@ var ListAliasesRequest = [
2558
3265
  ],
2559
3266
  ];
2560
3267
  var ListAliasesResponse = [3, n0, _LARi, 0, [_NM, _Al], [0, () => AliasList]];
3268
+ var ListCapacityProvidersRequest = [
3269
+ 3,
3270
+ n0,
3271
+ _LCPR,
3272
+ 0,
3273
+ [_St, _Ma, _MI],
3274
+ [
3275
+ [
3276
+ 0,
3277
+ {
3278
+ [_hQ]: _St,
3279
+ },
3280
+ ],
3281
+ [
3282
+ 0,
3283
+ {
3284
+ [_hQ]: _Ma,
3285
+ },
3286
+ ],
3287
+ [
3288
+ 1,
3289
+ {
3290
+ [_hQ]: _MI,
3291
+ },
3292
+ ],
3293
+ ],
3294
+ ];
3295
+ var ListCapacityProvidersResponse = [
3296
+ 3,
3297
+ n0,
3298
+ _LCPRi,
3299
+ 0,
3300
+ [_CPa, _NM],
3301
+ [() => CapacityProvidersList, 0],
3302
+ ];
2561
3303
  var ListCodeSigningConfigsRequest = [
2562
3304
  3,
2563
3305
  n0,
@@ -2587,6 +3329,72 @@ var ListCodeSigningConfigsResponse = [
2587
3329
  [_NM, _CSCo],
2588
3330
  [0, () => CodeSigningConfigList],
2589
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
+ ];
2590
3398
  var ListEventSourceMappingsRequest = [
2591
3399
  3,
2592
3400
  n0,
@@ -2752,6 +3560,36 @@ var ListFunctionUrlConfigsResponse = [
2752
3560
  [_FUCu, _NM],
2753
3561
  [() => FunctionUrlConfigList, 0],
2754
3562
  ];
3563
+ var ListFunctionVersionsByCapacityProviderRequest = [
3564
+ 3,
3565
+ n0,
3566
+ _LFVBCPR,
3567
+ 0,
3568
+ [_CPN, _Ma, _MI],
3569
+ [
3570
+ [0, 1],
3571
+ [
3572
+ 0,
3573
+ {
3574
+ [_hQ]: _Ma,
3575
+ },
3576
+ ],
3577
+ [
3578
+ 1,
3579
+ {
3580
+ [_hQ]: _MI,
3581
+ },
3582
+ ],
3583
+ ],
3584
+ ];
3585
+ var ListFunctionVersionsByCapacityProviderResponse = [
3586
+ 3,
3587
+ n0,
3588
+ _LFVBCPRi,
3589
+ 0,
3590
+ [_CPA, _FVu, _NM],
3591
+ [0, () => FunctionVersionsByCapacityProviderList, 0],
3592
+ ];
2755
3593
  var ListLayersRequest = [
2756
3594
  3,
2757
3595
  n0,
@@ -2891,8 +3729,65 @@ var ListVersionsByFunctionResponse = [
2891
3729
  [0, [() => FunctionList, 0]],
2892
3730
  ];
2893
3731
  var LoggingConfig = [3, n0, _LC, 0, [_LF, _ALL, _SLL, _LG], [0, 0, 0, 0]];
3732
+ var NoPublishedVersionException = [
3733
+ -3,
3734
+ n0,
3735
+ _NPVE,
3736
+ {
3737
+ [_e]: _c,
3738
+ [_hE]: 400,
3739
+ },
3740
+ [_Ty, _M],
3741
+ [0, 0],
3742
+ ];
3743
+ schema.TypeRegistry.for(n0).registerError(NoPublishedVersionException, NoPublishedVersionException$1);
2894
3744
  var OnFailure = [3, n0, _OF, 0, [_De], [0]];
2895
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
+ ];
2896
3791
  var PolicyLengthExceededException = [
2897
3792
  -3,
2898
3793
  n0,
@@ -2901,7 +3796,7 @@ var PolicyLengthExceededException = [
2901
3796
  [_e]: _c,
2902
3797
  [_hE]: 400,
2903
3798
  },
2904
- [_T, _m],
3799
+ [_Ty, _m],
2905
3800
  [0, 0],
2906
3801
  ];
2907
3802
  schema.TypeRegistry.for(n0).registerError(PolicyLengthExceededException, PolicyLengthExceededException$1);
@@ -2913,7 +3808,7 @@ var PreconditionFailedException = [
2913
3808
  [_e]: _c,
2914
3809
  [_hE]: 412,
2915
3810
  },
2916
- [_T, _m],
3811
+ [_Ty, _m],
2917
3812
  [0, 0],
2918
3813
  ];
2919
3814
  schema.TypeRegistry.for(n0).registerError(PreconditionFailedException, PreconditionFailedException$1);
@@ -2933,7 +3828,7 @@ var ProvisionedConcurrencyConfigNotFoundException = [
2933
3828
  [_e]: _c,
2934
3829
  [_hE]: 404,
2935
3830
  },
2936
- [_T, _m],
3831
+ [_Ty, _m],
2937
3832
  [0, 0],
2938
3833
  ];
2939
3834
  schema.TypeRegistry.for(n0).registerError(ProvisionedConcurrencyConfigNotFoundException, ProvisionedConcurrencyConfigNotFoundException$1);
@@ -2951,10 +3846,17 @@ var PublishLayerVersionResponse = [
2951
3846
  n0,
2952
3847
  _PLVRu,
2953
3848
  0,
2954
- [_Cont, _LA, _LVA, _D, _CD, _Ve, _CR, _LI, _CA],
3849
+ [_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI, _CA],
2955
3850
  [() => LayerVersionContentOutput, 0, 0, 0, 0, 1, 64 | 0, 0, 64 | 0],
2956
3851
  ];
2957
- var PublishVersionRequest = [3, n0, _PVR, 0, [_FN, _CSo, _D, _RI], [[0, 1], 0, 0, 0]];
3852
+ var PublishVersionRequest = [
3853
+ 3,
3854
+ n0,
3855
+ _PVR,
3856
+ 0,
3857
+ [_FN, _CSo, _D, _RI, _PTu],
3858
+ [[0, 1], 0, 0, 0, 0],
3859
+ ];
2958
3860
  var PutFunctionCodeSigningConfigRequest = [3, n0, _PFCSCR, 0, [_CSCA, _FN], [0, [0, 1]]];
2959
3861
  var PutFunctionCodeSigningConfigResponse = [3, n0, _PFCSCRu, 0, [_CSCA, _FN], [0, 0]];
2960
3862
  var PutFunctionConcurrencyRequest = [3, n0, _PFCR, 0, [_FN, _RCE], [[0, 1], 1]];
@@ -2979,6 +3881,24 @@ var PutFunctionEventInvokeConfigRequest = [
2979
3881
  ];
2980
3882
  var PutFunctionRecursionConfigRequest = [3, n0, _PFRCR, 0, [_FN, _RL], [[0, 1], 0]];
2981
3883
  var PutFunctionRecursionConfigResponse = [3, n0, _PFRCRu, 0, [_RL], [0]];
3884
+ var PutFunctionScalingConfigRequest = [
3885
+ 3,
3886
+ n0,
3887
+ _PFSCR,
3888
+ 0,
3889
+ [_FN, _Q, _FSCu],
3890
+ [
3891
+ [0, 1],
3892
+ [
3893
+ 0,
3894
+ {
3895
+ [_hQ]: _Q,
3896
+ },
3897
+ ],
3898
+ () => FunctionScalingConfig,
3899
+ ],
3900
+ ];
3901
+ var PutFunctionScalingConfigResponse = [3, n0, _PFSCRu, 0, [_FS], [0]];
2982
3902
  var PutProvisionedConcurrencyConfigRequest = [
2983
3903
  3,
2984
3904
  n0,
@@ -3038,7 +3958,7 @@ var RecursiveInvocationException = [
3038
3958
  [_e]: _c,
3039
3959
  [_hE]: 400,
3040
3960
  },
3041
- [_T, _M],
3961
+ [_Ty, _M],
3042
3962
  [0, 0],
3043
3963
  ];
3044
3964
  schema.TypeRegistry.for(n0).registerError(RecursiveInvocationException, RecursiveInvocationException$1);
@@ -3091,7 +4011,7 @@ var RequestTooLargeException = [
3091
4011
  [_e]: _c,
3092
4012
  [_hE]: 413,
3093
4013
  },
3094
- [_T, _m],
4014
+ [_Ty, _m],
3095
4015
  [0, 0],
3096
4016
  ];
3097
4017
  schema.TypeRegistry.for(n0).registerError(RequestTooLargeException, RequestTooLargeException$1);
@@ -3103,7 +4023,7 @@ var ResourceConflictException = [
3103
4023
  [_e]: _c,
3104
4024
  [_hE]: 409,
3105
4025
  },
3106
- [_T, _m],
4026
+ [_Ty, _m],
3107
4027
  [0, 0],
3108
4028
  ];
3109
4029
  schema.TypeRegistry.for(n0).registerError(ResourceConflictException, ResourceConflictException$1);
@@ -3115,7 +4035,7 @@ var ResourceInUseException = [
3115
4035
  [_e]: _c,
3116
4036
  [_hE]: 400,
3117
4037
  },
3118
- [_T, _M],
4038
+ [_Ty, _M],
3119
4039
  [0, 0],
3120
4040
  ];
3121
4041
  schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
@@ -3127,7 +4047,7 @@ var ResourceNotFoundException = [
3127
4047
  [_e]: _c,
3128
4048
  [_hE]: 404,
3129
4049
  },
3130
- [_T, _M],
4050
+ [_Ty, _M],
3131
4051
  [0, 0],
3132
4052
  ];
3133
4053
  schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
@@ -3139,16 +4059,17 @@ var ResourceNotReadyException = [
3139
4059
  [_e]: _se,
3140
4060
  [_hE]: 502,
3141
4061
  },
3142
- [_T, _m],
4062
+ [_Ty, _m],
3143
4063
  [0, 0],
3144
4064
  ];
3145
4065
  schema.TypeRegistry.for(n0).registerError(ResourceNotReadyException, ResourceNotReadyException$1);
4066
+ var RetryDetails = [3, n0, _RD, 0, [_CAu, _NADS], [1, 1]];
3146
4067
  var RuntimeVersionConfig = [
3147
4068
  3,
3148
4069
  n0,
3149
4070
  _RVC,
3150
4071
  0,
3151
- [_RVA, _Er],
4072
+ [_RVA, _E],
3152
4073
  [0, [() => RuntimeVersionError, 0]],
3153
4074
  ];
3154
4075
  var RuntimeVersionError = [3, n0, _RVE, 0, [_EC, _M], [0, [() => SensitiveString, 0]]];
@@ -3162,6 +4083,32 @@ var SelfManagedKafkaEventSourceConfig = [
3162
4083
  [_CGI, _SRC],
3163
4084
  [0, () => KafkaSchemaRegistryConfig],
3164
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, [], []];
3165
4112
  var SerializedRequestEntityTooLargeException = [
3166
4113
  -3,
3167
4114
  n0,
@@ -3170,7 +4117,7 @@ var SerializedRequestEntityTooLargeException = [
3170
4117
  [_e]: _c,
3171
4118
  [_hE]: 413,
3172
4119
  },
3173
- [_T, _m],
4120
+ [_Ty, _m],
3174
4121
  [0, 0],
3175
4122
  ];
3176
4123
  schema.TypeRegistry.for(n0).registerError(SerializedRequestEntityTooLargeException, SerializedRequestEntityTooLargeException$1);
@@ -3182,7 +4129,7 @@ var ServiceException = [
3182
4129
  [_e]: _se,
3183
4130
  [_hE]: 500,
3184
4131
  },
3185
- [_T, _M],
4132
+ [_Ty, _M],
3186
4133
  [0, 0],
3187
4134
  ];
3188
4135
  schema.TypeRegistry.for(n0).registerError(ServiceException, ServiceException$1);
@@ -3195,7 +4142,7 @@ var SnapStartException = [
3195
4142
  [_e]: _c,
3196
4143
  [_hE]: 400,
3197
4144
  },
3198
- [_T, _M],
4145
+ [_Ty, _M],
3199
4146
  [0, 0],
3200
4147
  ];
3201
4148
  schema.TypeRegistry.for(n0).registerError(SnapStartException, SnapStartException$1);
@@ -3207,7 +4154,7 @@ var SnapStartNotReadyException = [
3207
4154
  [_e]: _c,
3208
4155
  [_hE]: 409,
3209
4156
  },
3210
- [_T, _M],
4157
+ [_Ty, _M],
3211
4158
  [0, 0],
3212
4159
  ];
3213
4160
  schema.TypeRegistry.for(n0).registerError(SnapStartNotReadyException, SnapStartNotReadyException$1);
@@ -3220,11 +4167,49 @@ var SnapStartTimeoutException = [
3220
4167
  [_e]: _c,
3221
4168
  [_hE]: 408,
3222
4169
  },
3223
- [_T, _M],
4170
+ [_Ty, _M],
3224
4171
  [0, 0],
3225
4172
  ];
3226
4173
  schema.TypeRegistry.for(n0).registerError(SnapStartTimeoutException, SnapStartTimeoutException$1);
3227
- 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]];
3228
4213
  var SubnetIPAddressLimitReachedException = [
3229
4214
  -3,
3230
4215
  n0,
@@ -3233,12 +4218,13 @@ var SubnetIPAddressLimitReachedException = [
3233
4218
  [_e]: _se,
3234
4219
  [_hE]: 502,
3235
4220
  },
3236
- [_T, _M],
4221
+ [_Ty, _M],
3237
4222
  [0, 0],
3238
4223
  ];
3239
4224
  schema.TypeRegistry.for(n0).registerError(SubnetIPAddressLimitReachedException, SubnetIPAddressLimitReachedException$1);
3240
4225
  var TagResourceRequest = [3, n0, _TRR, 0, [_Re, _Ta], [[0, 1], 128 | 0]];
3241
4226
  var TagsError = [3, n0, _TE, 0, [_EC, _M], [0, 0]];
4227
+ var TargetTrackingScalingPolicy = [3, n0, _TTSP, 0, [_PMT, _TV], [0, 1]];
3242
4228
  var TenancyConfig = [3, n0, _TCe, 0, [_TIM], [0]];
3243
4229
  var TooManyRequestsException = [
3244
4230
  -3,
@@ -3248,7 +4234,7 @@ var TooManyRequestsException = [
3248
4234
  [_e]: _c,
3249
4235
  [_hE]: 429,
3250
4236
  },
3251
- [_rAS, _T, _m, _Rea],
4237
+ [_rAS, _Ty, _m, _Rea],
3252
4238
  [
3253
4239
  [
3254
4240
  0,
@@ -3262,6 +4248,7 @@ var TooManyRequestsException = [
3262
4248
  ],
3263
4249
  ];
3264
4250
  schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
4251
+ var TraceHeader = [3, n0, _TH, 0, [_XATIm], [0]];
3265
4252
  var TracingConfig = [3, n0, _TC, 0, [_Mo], [0]];
3266
4253
  var TracingConfigResponse = [3, n0, _TCR, 0, [_Mo], [0]];
3267
4254
  var UnsupportedMediaTypeException = [
@@ -3272,7 +4259,7 @@ var UnsupportedMediaTypeException = [
3272
4259
  [_e]: _c,
3273
4260
  [_hE]: 415,
3274
4261
  },
3275
- [_T, _m],
4262
+ [_Ty, _m],
3276
4263
  [0, 0],
3277
4264
  ];
3278
4265
  schema.TypeRegistry.for(n0).registerError(UnsupportedMediaTypeException, UnsupportedMediaTypeException$1);
@@ -3300,6 +4287,15 @@ var UpdateAliasRequest = [
3300
4287
  [_FN, _N, _FV, _D, _RC, _RI],
3301
4288
  [[0, 1], [0, 1], 0, 0, () => AliasRoutingConfiguration, 0],
3302
4289
  ];
4290
+ var UpdateCapacityProviderRequest = [
4291
+ 3,
4292
+ n0,
4293
+ _UCPR,
4294
+ 0,
4295
+ [_CPN, _CPSC],
4296
+ [[0, 1], () => CapacityProviderScalingConfig],
4297
+ ];
4298
+ var UpdateCapacityProviderResponse = [3, n0, _UCPRp, 0, [_CP], [() => CapacityProvider]];
3303
4299
  var UpdateCodeSigningConfigRequest = [
3304
4300
  3,
3305
4301
  n0,
@@ -3324,7 +4320,7 @@ var UpdateEventSourceMappingRequest = [
3324
4320
  [
3325
4321
  _UUID,
3326
4322
  _FN,
3327
- _E,
4323
+ _En,
3328
4324
  _BSa,
3329
4325
  _FCi,
3330
4326
  _MBWIS,
@@ -3373,15 +4369,15 @@ var UpdateFunctionCodeRequest = [
3373
4369
  n0,
3374
4370
  _UFCR,
3375
4371
  0,
3376
- [_FN, _ZF, _SB, _SK, _SOV, _IU, _Pu, _DR, _RI, _Ar, _SKMSKA],
3377
- [[0, 1], [() => _Blob, 0], 0, 0, 0, 0, 2, 2, 0, 64 | 0, 0],
4372
+ [_FN, _ZF, _SB, _SK, _SOV, _IU, _Pu, _DR, _RI, _Ar, _SKMSKA, _PTu],
4373
+ [[0, 1], [() => _Blob, 0], 0, 0, 0, 0, 2, 2, 0, 64 | 0, 0, 0],
3378
4374
  ];
3379
4375
  var UpdateFunctionConfigurationRequest = [
3380
4376
  3,
3381
4377
  n0,
3382
4378
  _UFCRp,
3383
4379
  0,
3384
- [_FN, _Ro, _H, _D, _Ti, _MS, _VC, _En, _R, _DLC, _KMSKA, _TC, _RI, _L, _FSC, _IC, _ES, _SSn, _LC],
4380
+ [_FN, _Ro, _H, _D, _T, _MS, _VC, _Env, _Ru, _DLC, _KMSKA, _TC, _RI, _L, _FSC, _IC, _ES, _SSn, _LC, _CPC, _DCu],
3385
4381
  [
3386
4382
  [0, 1],
3387
4383
  0,
@@ -3402,6 +4398,8 @@ var UpdateFunctionConfigurationRequest = [
3402
4398
  () => EphemeralStorage,
3403
4399
  () => SnapStart,
3404
4400
  () => LoggingConfig,
4401
+ () => CapacityProviderConfig,
4402
+ () => DurableConfig,
3405
4403
  ],
3406
4404
  ];
3407
4405
  var UpdateFunctionEventInvokeConfigRequest = [
@@ -3447,7 +4445,7 @@ var UpdateFunctionUrlConfigResponse = [
3447
4445
  n0,
3448
4446
  _UFUCRp,
3449
4447
  0,
3450
- [_FU, _FA, _AT, _Co, _CT, _LMT, _IM],
4448
+ [_FU, _FA, _AT, _Co, _CTr, _LMT, _IM],
3451
4449
  [0, 0, 0, () => Cors, 0, 0, 0],
3452
4450
  ];
3453
4451
  var VpcConfig = [3, n0, _VC, 0, [_SIu, _SGI, _IAFDS], [64 | 0, 64 | 0, 2]];
@@ -3459,17 +4457,39 @@ var VpcConfigResponse = [
3459
4457
  [_SIu, _SGI, _VI, _IAFDS],
3460
4458
  [64 | 0, 64 | 0, 0, 2],
3461
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]];
3462
4465
  var __Unit = "unit";
3463
4466
  var LambdaServiceException = [-3, _sm, "LambdaServiceException", 0, [], []];
3464
4467
  schema.TypeRegistry.for(_sm).registerError(LambdaServiceException, LambdaServiceException$1);
3465
4468
  var AliasList = [1, n0, _ALl, 0, () => AliasConfiguration];
4469
+ var CapacityProviderScalingPoliciesList = [
4470
+ 1,
4471
+ n0,
4472
+ _CPSPL,
4473
+ 0,
4474
+ () => TargetTrackingScalingPolicy,
4475
+ ];
4476
+ var CapacityProvidersList = [1, n0, _CPL, 0, () => CapacityProvider];
3466
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]];
3467
4480
  var EventSourceMappingsList = [1, n0, _ESML, 0, () => EventSourceMappingConfiguration];
3468
4481
  var FileSystemConfigList = [1, n0, _FSCL, 0, () => FileSystemConfig];
3469
4482
  var FilterList = [1, n0, _FL, 0, () => Filter];
3470
4483
  var FunctionEventInvokeConfigList = [1, n0, _FEICL, 0, () => FunctionEventInvokeConfig];
3471
4484
  var FunctionList = [1, n0, _FLu, 0, [() => FunctionConfiguration, 0]];
3472
4485
  var FunctionUrlConfigList = [1, n0, _FUCL, 0, () => FunctionUrlConfig];
4486
+ var FunctionVersionsByCapacityProviderList = [
4487
+ 1,
4488
+ n0,
4489
+ _FVBCPL,
4490
+ 0,
4491
+ () => FunctionVersionsByCapacityProviderListItem,
4492
+ ];
3473
4493
  var KafkaSchemaRegistryAccessConfigList = [
3474
4494
  1,
3475
4495
  n0,
@@ -3481,6 +4501,8 @@ var KafkaSchemaValidationConfigList = [1, n0, _KSVCL, 0, () => KafkaSchemaValida
3481
4501
  var LayersList = [1, n0, _LL, 0, () => LayersListItem];
3482
4502
  var LayersReferenceList = [1, n0, _LRL, 0, () => Layer];
3483
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]];
3484
4506
  var ProvisionedConcurrencyConfigList = [
3485
4507
  1,
3486
4508
  n0,
@@ -3489,6 +4511,7 @@ var ProvisionedConcurrencyConfigList = [
3489
4511
  () => ProvisionedConcurrencyConfigListItem,
3490
4512
  ];
3491
4513
  var SourceAccessConfigurations = [1, n0, _SAC, 0, () => SourceAccessConfiguration];
4514
+ var StackTraceEntries = [1, n0, _STEt, 0, [() => StackTraceEntry, 0]];
3492
4515
  var EnvironmentVariables = [
3493
4516
  2,
3494
4517
  n0,
@@ -3504,7 +4527,7 @@ var InvokeWithResponseStreamResponseEvent = [
3504
4527
  {
3505
4528
  [_s]: 1,
3506
4529
  },
3507
- [_PC, _ICn],
4530
+ [_PCa, _ICn],
3508
4531
  [[() => InvokeResponseStreamUpdate, 0], () => InvokeWithResponseStreamCompleteEvent],
3509
4532
  ];
3510
4533
  var AddLayerVersionPermission = [
@@ -3527,6 +4550,16 @@ var AddPermission = [
3527
4550
  () => AddPermissionRequest,
3528
4551
  () => AddPermissionResponse,
3529
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
+ ];
3530
4563
  var CreateAlias = [
3531
4564
  9,
3532
4565
  n0,
@@ -3537,6 +4570,16 @@ var CreateAlias = [
3537
4570
  () => CreateAliasRequest,
3538
4571
  () => AliasConfiguration,
3539
4572
  ];
4573
+ var CreateCapacityProvider = [
4574
+ 9,
4575
+ n0,
4576
+ _CCP,
4577
+ {
4578
+ [_h]: ["POST", "/2025-11-30/capacity-providers", 202],
4579
+ },
4580
+ () => CreateCapacityProviderRequest,
4581
+ () => CreateCapacityProviderResponse,
4582
+ ];
3540
4583
  var CreateCodeSigningConfig = [
3541
4584
  9,
3542
4585
  n0,
@@ -3587,6 +4630,16 @@ var DeleteAlias = [
3587
4630
  () => DeleteAliasRequest,
3588
4631
  () => __Unit,
3589
4632
  ];
4633
+ var DeleteCapacityProvider = [
4634
+ 9,
4635
+ n0,
4636
+ _DCP,
4637
+ {
4638
+ [_h]: ["DELETE", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202],
4639
+ },
4640
+ () => DeleteCapacityProviderRequest,
4641
+ () => DeleteCapacityProviderResponse,
4642
+ ];
3590
4643
  var DeleteCodeSigningConfig = [
3591
4644
  9,
3592
4645
  n0,
@@ -3612,10 +4665,10 @@ var DeleteFunction = [
3612
4665
  n0,
3613
4666
  _DF,
3614
4667
  {
3615
- [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}", 204],
4668
+ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}", 200],
3616
4669
  },
3617
4670
  () => DeleteFunctionRequest,
3618
- () => __Unit,
4671
+ () => DeleteFunctionResponse,
3619
4672
  ];
3620
4673
  var DeleteFunctionCodeSigningConfig = [
3621
4674
  9,
@@ -3697,6 +4750,16 @@ var GetAlias = [
3697
4750
  () => GetAliasRequest,
3698
4751
  () => AliasConfiguration,
3699
4752
  ];
4753
+ var GetCapacityProvider = [
4754
+ 9,
4755
+ n0,
4756
+ _GCP,
4757
+ {
4758
+ [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}", 200],
4759
+ },
4760
+ () => GetCapacityProviderRequest,
4761
+ () => GetCapacityProviderResponse,
4762
+ ];
3700
4763
  var GetCodeSigningConfig = [
3701
4764
  9,
3702
4765
  n0,
@@ -3707,6 +4770,36 @@ var GetCodeSigningConfig = [
3707
4770
  () => GetCodeSigningConfigRequest,
3708
4771
  () => GetCodeSigningConfigResponse,
3709
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
+ ];
3710
4803
  var GetEventSourceMapping = [
3711
4804
  9,
3712
4805
  n0,
@@ -3777,6 +4870,16 @@ var GetFunctionRecursionConfig = [
3777
4870
  () => GetFunctionRecursionConfigRequest,
3778
4871
  () => GetFunctionRecursionConfigResponse,
3779
4872
  ];
4873
+ var GetFunctionScalingConfig = [
4874
+ 9,
4875
+ n0,
4876
+ _GFSC,
4877
+ {
4878
+ [_h]: ["GET", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 200],
4879
+ },
4880
+ () => GetFunctionScalingConfigRequest,
4881
+ () => GetFunctionScalingConfigResponse,
4882
+ ];
3780
4883
  var GetFunctionUrlConfig = [
3781
4884
  9,
3782
4885
  n0,
@@ -3850,7 +4953,7 @@ var GetRuntimeManagementConfig = [
3850
4953
  var Invoke = [
3851
4954
  9,
3852
4955
  n0,
3853
- _I,
4956
+ _In,
3854
4957
  {
3855
4958
  [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/invocations", 200],
3856
4959
  },
@@ -3887,6 +4990,16 @@ var ListAliases = [
3887
4990
  () => ListAliasesRequest,
3888
4991
  () => ListAliasesResponse,
3889
4992
  ];
4993
+ var ListCapacityProviders = [
4994
+ 9,
4995
+ n0,
4996
+ _LCP,
4997
+ {
4998
+ [_h]: ["GET", "/2025-11-30/capacity-providers", 200],
4999
+ },
5000
+ () => ListCapacityProvidersRequest,
5001
+ () => ListCapacityProvidersResponse,
5002
+ ];
3890
5003
  var ListCodeSigningConfigs = [
3891
5004
  9,
3892
5005
  n0,
@@ -3897,6 +5010,16 @@ var ListCodeSigningConfigs = [
3897
5010
  () => ListCodeSigningConfigsRequest,
3898
5011
  () => ListCodeSigningConfigsResponse,
3899
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
+ ];
3900
5023
  var ListEventSourceMappings = [
3901
5024
  9,
3902
5025
  n0,
@@ -3947,6 +5070,16 @@ var ListFunctionUrlConfigs = [
3947
5070
  () => ListFunctionUrlConfigsRequest,
3948
5071
  () => ListFunctionUrlConfigsResponse,
3949
5072
  ];
5073
+ var ListFunctionVersionsByCapacityProvider = [
5074
+ 9,
5075
+ n0,
5076
+ _LFVBCP,
5077
+ {
5078
+ [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}/function-versions", 200],
5079
+ },
5080
+ () => ListFunctionVersionsByCapacityProviderRequest,
5081
+ () => ListFunctionVersionsByCapacityProviderResponse,
5082
+ ];
3950
5083
  var ListLayers = [
3951
5084
  9,
3952
5085
  n0,
@@ -4057,6 +5190,16 @@ var PutFunctionRecursionConfig = [
4057
5190
  () => PutFunctionRecursionConfigRequest,
4058
5191
  () => PutFunctionRecursionConfigResponse,
4059
5192
  ];
5193
+ var PutFunctionScalingConfig = [
5194
+ 9,
5195
+ n0,
5196
+ _PFSC,
5197
+ {
5198
+ [_h]: ["PUT", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 202],
5199
+ },
5200
+ () => PutFunctionScalingConfigRequest,
5201
+ () => PutFunctionScalingConfigResponse,
5202
+ ];
4060
5203
  var PutProvisionedConcurrencyConfig = [
4061
5204
  9,
4062
5205
  n0,
@@ -4097,6 +5240,46 @@ var RemovePermission = [
4097
5240
  () => RemovePermissionRequest,
4098
5241
  () => __Unit,
4099
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
+ ];
4100
5283
  var TagResource = [
4101
5284
  9,
4102
5285
  n0,
@@ -4127,6 +5310,16 @@ var UpdateAlias = [
4127
5310
  () => UpdateAliasRequest,
4128
5311
  () => AliasConfiguration,
4129
5312
  ];
5313
+ var UpdateCapacityProvider = [
5314
+ 9,
5315
+ n0,
5316
+ _UCP,
5317
+ {
5318
+ [_h]: ["PUT", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202],
5319
+ },
5320
+ () => UpdateCapacityProviderRequest,
5321
+ () => UpdateCapacityProviderResponse,
5322
+ ];
4130
5323
  var UpdateCodeSigningConfig = [
4131
5324
  9,
4132
5325
  n0,
@@ -4212,6 +5405,18 @@ class AddPermissionCommand extends smithyClient.Command
4212
5405
  .build() {
4213
5406
  }
4214
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
+
4215
5420
  class CreateAliasCommand extends smithyClient.Command
4216
5421
  .classBuilder()
4217
5422
  .ep(commonParams)
@@ -4224,6 +5429,18 @@ class CreateAliasCommand extends smithyClient.Command
4224
5429
  .build() {
4225
5430
  }
4226
5431
 
5432
+ class CreateCapacityProviderCommand extends smithyClient.Command
5433
+ .classBuilder()
5434
+ .ep(commonParams)
5435
+ .m(function (Command, cs, config, o) {
5436
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5437
+ })
5438
+ .s("AWSGirApiService", "CreateCapacityProvider", {})
5439
+ .n("LambdaClient", "CreateCapacityProviderCommand")
5440
+ .sc(CreateCapacityProvider)
5441
+ .build() {
5442
+ }
5443
+
4227
5444
  class CreateCodeSigningConfigCommand extends smithyClient.Command
4228
5445
  .classBuilder()
4229
5446
  .ep(commonParams)
@@ -4284,6 +5501,18 @@ class DeleteAliasCommand extends smithyClient.Command
4284
5501
  .build() {
4285
5502
  }
4286
5503
 
5504
+ class DeleteCapacityProviderCommand extends smithyClient.Command
5505
+ .classBuilder()
5506
+ .ep(commonParams)
5507
+ .m(function (Command, cs, config, o) {
5508
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5509
+ })
5510
+ .s("AWSGirApiService", "DeleteCapacityProvider", {})
5511
+ .n("LambdaClient", "DeleteCapacityProviderCommand")
5512
+ .sc(DeleteCapacityProvider)
5513
+ .build() {
5514
+ }
5515
+
4287
5516
  class DeleteCodeSigningConfigCommand extends smithyClient.Command
4288
5517
  .classBuilder()
4289
5518
  .ep(commonParams)
@@ -4416,6 +5645,18 @@ class GetAliasCommand extends smithyClient.Command
4416
5645
  .build() {
4417
5646
  }
4418
5647
 
5648
+ class GetCapacityProviderCommand extends smithyClient.Command
5649
+ .classBuilder()
5650
+ .ep(commonParams)
5651
+ .m(function (Command, cs, config, o) {
5652
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5653
+ })
5654
+ .s("AWSGirApiService", "GetCapacityProvider", {})
5655
+ .n("LambdaClient", "GetCapacityProviderCommand")
5656
+ .sc(GetCapacityProvider)
5657
+ .build() {
5658
+ }
5659
+
4419
5660
  class GetCodeSigningConfigCommand extends smithyClient.Command
4420
5661
  .classBuilder()
4421
5662
  .ep(commonParams)
@@ -4428,6 +5669,42 @@ class GetCodeSigningConfigCommand extends smithyClient.Command
4428
5669
  .build() {
4429
5670
  }
4430
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
+
4431
5708
  class GetEventSourceMappingCommand extends smithyClient.Command
4432
5709
  .classBuilder()
4433
5710
  .ep(commonParams)
@@ -4512,6 +5789,18 @@ class GetFunctionRecursionConfigCommand extends smithyClient.Command
4512
5789
  .build() {
4513
5790
  }
4514
5791
 
5792
+ class GetFunctionScalingConfigCommand extends smithyClient.Command
5793
+ .classBuilder()
5794
+ .ep(commonParams)
5795
+ .m(function (Command, cs, config, o) {
5796
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5797
+ })
5798
+ .s("AWSGirApiService", "GetFunctionScalingConfig", {})
5799
+ .n("LambdaClient", "GetFunctionScalingConfigCommand")
5800
+ .sc(GetFunctionScalingConfig)
5801
+ .build() {
5802
+ }
5803
+
4515
5804
  class GetFunctionUrlConfigCommand extends smithyClient.Command
4516
5805
  .classBuilder()
4517
5806
  .ep(commonParams)
@@ -4648,6 +5937,18 @@ class ListAliasesCommand extends smithyClient.Command
4648
5937
  .build() {
4649
5938
  }
4650
5939
 
5940
+ class ListCapacityProvidersCommand extends smithyClient.Command
5941
+ .classBuilder()
5942
+ .ep(commonParams)
5943
+ .m(function (Command, cs, config, o) {
5944
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5945
+ })
5946
+ .s("AWSGirApiService", "ListCapacityProviders", {})
5947
+ .n("LambdaClient", "ListCapacityProvidersCommand")
5948
+ .sc(ListCapacityProviders)
5949
+ .build() {
5950
+ }
5951
+
4651
5952
  class ListCodeSigningConfigsCommand extends smithyClient.Command
4652
5953
  .classBuilder()
4653
5954
  .ep(commonParams)
@@ -4660,6 +5961,18 @@ class ListCodeSigningConfigsCommand extends smithyClient.Command
4660
5961
  .build() {
4661
5962
  }
4662
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
+
4663
5976
  class ListEventSourceMappingsCommand extends smithyClient.Command
4664
5977
  .classBuilder()
4665
5978
  .ep(commonParams)
@@ -4720,6 +6033,18 @@ class ListFunctionUrlConfigsCommand extends smithyClient.Command
4720
6033
  .build() {
4721
6034
  }
4722
6035
 
6036
+ class ListFunctionVersionsByCapacityProviderCommand extends smithyClient.Command
6037
+ .classBuilder()
6038
+ .ep(commonParams)
6039
+ .m(function (Command, cs, config, o) {
6040
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
6041
+ })
6042
+ .s("AWSGirApiService", "ListFunctionVersionsByCapacityProvider", {})
6043
+ .n("LambdaClient", "ListFunctionVersionsByCapacityProviderCommand")
6044
+ .sc(ListFunctionVersionsByCapacityProvider)
6045
+ .build() {
6046
+ }
6047
+
4723
6048
  class ListLayersCommand extends smithyClient.Command
4724
6049
  .classBuilder()
4725
6050
  .ep(commonParams)
@@ -4852,6 +6177,18 @@ class PutFunctionRecursionConfigCommand extends smithyClient.Command
4852
6177
  .build() {
4853
6178
  }
4854
6179
 
6180
+ class PutFunctionScalingConfigCommand extends smithyClient.Command
6181
+ .classBuilder()
6182
+ .ep(commonParams)
6183
+ .m(function (Command, cs, config, o) {
6184
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
6185
+ })
6186
+ .s("AWSGirApiService", "PutFunctionScalingConfig", {})
6187
+ .n("LambdaClient", "PutFunctionScalingConfigCommand")
6188
+ .sc(PutFunctionScalingConfig)
6189
+ .build() {
6190
+ }
6191
+
4855
6192
  class PutProvisionedConcurrencyConfigCommand extends smithyClient.Command
4856
6193
  .classBuilder()
4857
6194
  .ep(commonParams)
@@ -4900,6 +6237,54 @@ class RemovePermissionCommand extends smithyClient.Command
4900
6237
  .build() {
4901
6238
  }
4902
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
+
4903
6288
  class TagResourceCommand extends smithyClient.Command
4904
6289
  .classBuilder()
4905
6290
  .ep(commonParams)
@@ -4936,6 +6321,18 @@ class UpdateAliasCommand extends smithyClient.Command
4936
6321
  .build() {
4937
6322
  }
4938
6323
 
6324
+ class UpdateCapacityProviderCommand extends smithyClient.Command
6325
+ .classBuilder()
6326
+ .ep(commonParams)
6327
+ .m(function (Command, cs, config, o) {
6328
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
6329
+ })
6330
+ .s("AWSGirApiService", "UpdateCapacityProvider", {})
6331
+ .n("LambdaClient", "UpdateCapacityProviderCommand")
6332
+ .sc(UpdateCapacityProvider)
6333
+ .build() {
6334
+ }
6335
+
4939
6336
  class UpdateCodeSigningConfigCommand extends smithyClient.Command
4940
6337
  .classBuilder()
4941
6338
  .ep(commonParams)
@@ -5011,12 +6408,15 @@ class UpdateFunctionUrlConfigCommand extends smithyClient.Command
5011
6408
  const commands = {
5012
6409
  AddLayerVersionPermissionCommand,
5013
6410
  AddPermissionCommand,
6411
+ CheckpointDurableExecutionCommand,
5014
6412
  CreateAliasCommand,
6413
+ CreateCapacityProviderCommand,
5015
6414
  CreateCodeSigningConfigCommand,
5016
6415
  CreateEventSourceMappingCommand,
5017
6416
  CreateFunctionCommand,
5018
6417
  CreateFunctionUrlConfigCommand,
5019
6418
  DeleteAliasCommand,
6419
+ DeleteCapacityProviderCommand,
5020
6420
  DeleteCodeSigningConfigCommand,
5021
6421
  DeleteEventSourceMappingCommand,
5022
6422
  DeleteFunctionCommand,
@@ -5028,7 +6428,11 @@ const commands = {
5028
6428
  DeleteProvisionedConcurrencyConfigCommand,
5029
6429
  GetAccountSettingsCommand,
5030
6430
  GetAliasCommand,
6431
+ GetCapacityProviderCommand,
5031
6432
  GetCodeSigningConfigCommand,
6433
+ GetDurableExecutionCommand,
6434
+ GetDurableExecutionHistoryCommand,
6435
+ GetDurableExecutionStateCommand,
5032
6436
  GetEventSourceMappingCommand,
5033
6437
  GetFunctionCommand,
5034
6438
  GetFunctionCodeSigningConfigCommand,
@@ -5036,6 +6440,7 @@ const commands = {
5036
6440
  GetFunctionConfigurationCommand,
5037
6441
  GetFunctionEventInvokeConfigCommand,
5038
6442
  GetFunctionRecursionConfigCommand,
6443
+ GetFunctionScalingConfigCommand,
5039
6444
  GetFunctionUrlConfigCommand,
5040
6445
  GetLayerVersionCommand,
5041
6446
  GetLayerVersionByArnCommand,
@@ -5047,12 +6452,15 @@ const commands = {
5047
6452
  InvokeAsyncCommand,
5048
6453
  InvokeWithResponseStreamCommand,
5049
6454
  ListAliasesCommand,
6455
+ ListCapacityProvidersCommand,
5050
6456
  ListCodeSigningConfigsCommand,
6457
+ ListDurableExecutionsByFunctionCommand,
5051
6458
  ListEventSourceMappingsCommand,
5052
6459
  ListFunctionEventInvokeConfigsCommand,
5053
6460
  ListFunctionsCommand,
5054
6461
  ListFunctionsByCodeSigningConfigCommand,
5055
6462
  ListFunctionUrlConfigsCommand,
6463
+ ListFunctionVersionsByCapacityProviderCommand,
5056
6464
  ListLayersCommand,
5057
6465
  ListLayerVersionsCommand,
5058
6466
  ListProvisionedConcurrencyConfigsCommand,
@@ -5064,13 +6472,19 @@ const commands = {
5064
6472
  PutFunctionConcurrencyCommand,
5065
6473
  PutFunctionEventInvokeConfigCommand,
5066
6474
  PutFunctionRecursionConfigCommand,
6475
+ PutFunctionScalingConfigCommand,
5067
6476
  PutProvisionedConcurrencyConfigCommand,
5068
6477
  PutRuntimeManagementConfigCommand,
5069
6478
  RemoveLayerVersionPermissionCommand,
5070
6479
  RemovePermissionCommand,
6480
+ SendDurableExecutionCallbackFailureCommand,
6481
+ SendDurableExecutionCallbackHeartbeatCommand,
6482
+ SendDurableExecutionCallbackSuccessCommand,
6483
+ StopDurableExecutionCommand,
5071
6484
  TagResourceCommand,
5072
6485
  UntagResourceCommand,
5073
6486
  UpdateAliasCommand,
6487
+ UpdateCapacityProviderCommand,
5074
6488
  UpdateCodeSigningConfigCommand,
5075
6489
  UpdateEventSourceMappingCommand,
5076
6490
  UpdateFunctionCodeCommand,
@@ -5082,16 +6496,26 @@ class Lambda extends LambdaClient {
5082
6496
  }
5083
6497
  smithyClient.createAggregatedClient(commands, Lambda);
5084
6498
 
6499
+ const paginateGetDurableExecutionHistory = core.createPaginator(LambdaClient, GetDurableExecutionHistoryCommand, "Marker", "NextMarker", "MaxItems");
6500
+
6501
+ const paginateGetDurableExecutionState = core.createPaginator(LambdaClient, GetDurableExecutionStateCommand, "Marker", "NextMarker", "MaxItems");
6502
+
5085
6503
  const paginateListAliases = core.createPaginator(LambdaClient, ListAliasesCommand, "Marker", "NextMarker", "MaxItems");
5086
6504
 
6505
+ const paginateListCapacityProviders = core.createPaginator(LambdaClient, ListCapacityProvidersCommand, "Marker", "NextMarker", "MaxItems");
6506
+
5087
6507
  const paginateListCodeSigningConfigs = core.createPaginator(LambdaClient, ListCodeSigningConfigsCommand, "Marker", "NextMarker", "MaxItems");
5088
6508
 
6509
+ const paginateListDurableExecutionsByFunction = core.createPaginator(LambdaClient, ListDurableExecutionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
6510
+
5089
6511
  const paginateListEventSourceMappings = core.createPaginator(LambdaClient, ListEventSourceMappingsCommand, "Marker", "NextMarker", "MaxItems");
5090
6512
 
5091
6513
  const paginateListFunctionEventInvokeConfigs = core.createPaginator(LambdaClient, ListFunctionEventInvokeConfigsCommand, "Marker", "NextMarker", "MaxItems");
5092
6514
 
5093
6515
  const paginateListFunctionUrlConfigs = core.createPaginator(LambdaClient, ListFunctionUrlConfigsCommand, "Marker", "NextMarker", "MaxItems");
5094
6516
 
6517
+ const paginateListFunctionVersionsByCapacityProvider = core.createPaginator(LambdaClient, ListFunctionVersionsByCapacityProviderCommand, "Marker", "NextMarker", "MaxItems");
6518
+
5095
6519
  const paginateListFunctionsByCodeSigningConfig = core.createPaginator(LambdaClient, ListFunctionsByCodeSigningConfigCommand, "Marker", "NextMarker", "MaxItems");
5096
6520
 
5097
6521
  const paginateListFunctions = core.createPaginator(LambdaClient, ListFunctionsCommand, "Marker", "NextMarker", "MaxItems");
@@ -5406,6 +6830,54 @@ const Architecture = {
5406
6830
  arm64: "arm64",
5407
6831
  x86_64: "x86_64",
5408
6832
  };
6833
+ const CapacityProviderScalingMode = {
6834
+ Auto: "Auto",
6835
+ Manual: "Manual",
6836
+ };
6837
+ const CapacityProviderPredefinedMetricType = {
6838
+ LambdaCapacityProviderAverageCPUUtilization: "LambdaCapacityProviderAverageCPUUtilization",
6839
+ };
6840
+ const CapacityProviderState = {
6841
+ Active: "Active",
6842
+ Deleting: "Deleting",
6843
+ Failed: "Failed",
6844
+ Pending: "Pending",
6845
+ };
6846
+ const State = {
6847
+ Active: "Active",
6848
+ ActiveNonInvocable: "ActiveNonInvocable",
6849
+ Deactivated: "Deactivated",
6850
+ Deactivating: "Deactivating",
6851
+ Deleting: "Deleting",
6852
+ Failed: "Failed",
6853
+ Inactive: "Inactive",
6854
+ Pending: "Pending",
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
+ };
5409
6881
  const CodeSigningPolicy = {
5410
6882
  Enforce: "Enforce",
5411
6883
  Warn: "Warn",
@@ -5451,6 +6923,9 @@ const PackageType = {
5451
6923
  Image: "Image",
5452
6924
  Zip: "Zip",
5453
6925
  };
6926
+ const FunctionVersionLatestPublished = {
6927
+ LATEST_PUBLISHED: "LATEST_PUBLISHED",
6928
+ };
5454
6929
  const Runtime = {
5455
6930
  dotnet6: "dotnet6",
5456
6931
  dotnet8: "dotnet8",
@@ -5514,15 +6989,26 @@ const LastUpdateStatus = {
5514
6989
  Successful: "Successful",
5515
6990
  };
5516
6991
  const LastUpdateStatusReasonCode = {
6992
+ CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded",
5517
6993
  DisabledKMSKey: "DisabledKMSKey",
6994
+ EC2RequestLimitExceeded: "EC2RequestLimitExceeded",
5518
6995
  EFSIOError: "EFSIOError",
5519
6996
  EFSMountConnectivityError: "EFSMountConnectivityError",
5520
6997
  EFSMountFailure: "EFSMountFailure",
5521
6998
  EFSMountTimeout: "EFSMountTimeout",
5522
6999
  EniLimitExceeded: "EniLimitExceeded",
5523
7000
  FunctionError: "FunctionError",
7001
+ FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError",
7002
+ FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted",
7003
+ FunctionErrorInitTimeout: "FunctionError.InitTimeout",
7004
+ FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint",
7005
+ FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory",
7006
+ FunctionErrorPermissionDenied: "FunctionError.PermissionDenied",
7007
+ FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError",
7008
+ FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions",
5524
7009
  ImageAccessDenied: "ImageAccessDenied",
5525
7010
  ImageDeleted: "ImageDeleted",
7011
+ InsufficientCapacity: "InsufficientCapacity",
5526
7012
  InsufficientRolePermissions: "InsufficientRolePermissions",
5527
7013
  InternalError: "InternalError",
5528
7014
  InvalidConfiguration: "InvalidConfiguration",
@@ -5535,29 +7021,36 @@ const LastUpdateStatusReasonCode = {
5535
7021
  KMSKeyAccessDenied: "KMSKeyAccessDenied",
5536
7022
  KMSKeyNotFound: "KMSKeyNotFound",
5537
7023
  SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
7024
+ VcpuLimitExceeded: "VcpuLimitExceeded",
5538
7025
  };
5539
7026
  const SnapStartOptimizationStatus = {
5540
7027
  Off: "Off",
5541
7028
  On: "On",
5542
7029
  };
5543
- const State = {
5544
- Active: "Active",
5545
- Failed: "Failed",
5546
- Inactive: "Inactive",
5547
- Pending: "Pending",
5548
- };
5549
7030
  const StateReasonCode = {
7031
+ CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded",
5550
7032
  Creating: "Creating",
5551
7033
  DisabledKMSKey: "DisabledKMSKey",
7034
+ DrainingDurableExecutions: "DrainingDurableExecutions",
7035
+ EC2RequestLimitExceeded: "EC2RequestLimitExceeded",
5552
7036
  EFSIOError: "EFSIOError",
5553
7037
  EFSMountConnectivityError: "EFSMountConnectivityError",
5554
7038
  EFSMountFailure: "EFSMountFailure",
5555
7039
  EFSMountTimeout: "EFSMountTimeout",
5556
7040
  EniLimitExceeded: "EniLimitExceeded",
5557
7041
  FunctionError: "FunctionError",
7042
+ FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError",
7043
+ FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted",
7044
+ FunctionErrorInitTimeout: "FunctionError.InitTimeout",
7045
+ FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint",
7046
+ FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory",
7047
+ FunctionErrorPermissionDenied: "FunctionError.PermissionDenied",
7048
+ FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError",
7049
+ FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions",
5558
7050
  Idle: "Idle",
5559
7051
  ImageAccessDenied: "ImageAccessDenied",
5560
7052
  ImageDeleted: "ImageDeleted",
7053
+ InsufficientCapacity: "InsufficientCapacity",
5561
7054
  InsufficientRolePermissions: "InsufficientRolePermissions",
5562
7055
  InternalError: "InternalError",
5563
7056
  InvalidConfiguration: "InvalidConfiguration",
@@ -5571,6 +7064,7 @@ const StateReasonCode = {
5571
7064
  KMSKeyNotFound: "KMSKeyNotFound",
5572
7065
  Restoring: "Restoring",
5573
7066
  SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
7067
+ VcpuLimitExceeded: "VcpuLimitExceeded",
5574
7068
  };
5575
7069
  const InvokeMode = {
5576
7070
  BUFFERED: "BUFFERED",
@@ -5606,6 +7100,39 @@ const ProvisionedConcurrencyStatusEnum = {
5606
7100
  IN_PROGRESS: "IN_PROGRESS",
5607
7101
  READY: "READY",
5608
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
+ };
5609
7136
 
5610
7137
  Object.defineProperty(exports, "$Command", {
5611
7138
  enumerable: true,
@@ -5619,16 +7146,24 @@ exports.AddLayerVersionPermissionCommand = AddLayerVersionPermissionCommand;
5619
7146
  exports.AddPermissionCommand = AddPermissionCommand;
5620
7147
  exports.ApplicationLogLevel = ApplicationLogLevel;
5621
7148
  exports.Architecture = Architecture;
7149
+ exports.CallbackTimeoutException = CallbackTimeoutException$1;
7150
+ exports.CapacityProviderLimitExceededException = CapacityProviderLimitExceededException$1;
7151
+ exports.CapacityProviderPredefinedMetricType = CapacityProviderPredefinedMetricType;
7152
+ exports.CapacityProviderScalingMode = CapacityProviderScalingMode;
7153
+ exports.CapacityProviderState = CapacityProviderState;
7154
+ exports.CheckpointDurableExecutionCommand = CheckpointDurableExecutionCommand;
5622
7155
  exports.CodeSigningConfigNotFoundException = CodeSigningConfigNotFoundException$1;
5623
7156
  exports.CodeSigningPolicy = CodeSigningPolicy;
5624
7157
  exports.CodeStorageExceededException = CodeStorageExceededException$1;
5625
7158
  exports.CodeVerificationFailedException = CodeVerificationFailedException$1;
5626
7159
  exports.CreateAliasCommand = CreateAliasCommand;
7160
+ exports.CreateCapacityProviderCommand = CreateCapacityProviderCommand;
5627
7161
  exports.CreateCodeSigningConfigCommand = CreateCodeSigningConfigCommand;
5628
7162
  exports.CreateEventSourceMappingCommand = CreateEventSourceMappingCommand;
5629
7163
  exports.CreateFunctionCommand = CreateFunctionCommand;
5630
7164
  exports.CreateFunctionUrlConfigCommand = CreateFunctionUrlConfigCommand;
5631
7165
  exports.DeleteAliasCommand = DeleteAliasCommand;
7166
+ exports.DeleteCapacityProviderCommand = DeleteCapacityProviderCommand;
5632
7167
  exports.DeleteCodeSigningConfigCommand = DeleteCodeSigningConfigCommand;
5633
7168
  exports.DeleteEventSourceMappingCommand = DeleteEventSourceMappingCommand;
5634
7169
  exports.DeleteFunctionCodeSigningConfigCommand = DeleteFunctionCodeSigningConfigCommand;
@@ -5638,6 +7173,7 @@ exports.DeleteFunctionEventInvokeConfigCommand = DeleteFunctionEventInvokeConfig
5638
7173
  exports.DeleteFunctionUrlConfigCommand = DeleteFunctionUrlConfigCommand;
5639
7174
  exports.DeleteLayerVersionCommand = DeleteLayerVersionCommand;
5640
7175
  exports.DeleteProvisionedConcurrencyConfigCommand = DeleteProvisionedConcurrencyConfigCommand;
7176
+ exports.DurableExecutionAlreadyStartedException = DurableExecutionAlreadyStartedException$1;
5641
7177
  exports.EC2AccessDeniedException = EC2AccessDeniedException$1;
5642
7178
  exports.EC2ThrottledException = EC2ThrottledException$1;
5643
7179
  exports.EC2UnexpectedException = EC2UnexpectedException$1;
@@ -5649,13 +7185,21 @@ exports.ENILimitReachedException = ENILimitReachedException$1;
5649
7185
  exports.EndPointType = EndPointType;
5650
7186
  exports.EventSourceMappingMetric = EventSourceMappingMetric;
5651
7187
  exports.EventSourcePosition = EventSourcePosition;
7188
+ exports.EventType = EventType;
7189
+ exports.ExecutionStatus = ExecutionStatus;
5652
7190
  exports.FullDocument = FullDocument;
5653
7191
  exports.FunctionResponseType = FunctionResponseType;
5654
7192
  exports.FunctionUrlAuthType = FunctionUrlAuthType;
5655
7193
  exports.FunctionVersion = FunctionVersion;
7194
+ exports.FunctionVersionLatestPublished = FunctionVersionLatestPublished;
7195
+ exports.FunctionVersionsPerCapacityProviderLimitExceededException = FunctionVersionsPerCapacityProviderLimitExceededException$1;
5656
7196
  exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
5657
7197
  exports.GetAliasCommand = GetAliasCommand;
7198
+ exports.GetCapacityProviderCommand = GetCapacityProviderCommand;
5658
7199
  exports.GetCodeSigningConfigCommand = GetCodeSigningConfigCommand;
7200
+ exports.GetDurableExecutionCommand = GetDurableExecutionCommand;
7201
+ exports.GetDurableExecutionHistoryCommand = GetDurableExecutionHistoryCommand;
7202
+ exports.GetDurableExecutionStateCommand = GetDurableExecutionStateCommand;
5659
7203
  exports.GetEventSourceMappingCommand = GetEventSourceMappingCommand;
5660
7204
  exports.GetFunctionCodeSigningConfigCommand = GetFunctionCodeSigningConfigCommand;
5661
7205
  exports.GetFunctionCommand = GetFunctionCommand;
@@ -5663,6 +7207,7 @@ exports.GetFunctionConcurrencyCommand = GetFunctionConcurrencyCommand;
5663
7207
  exports.GetFunctionConfigurationCommand = GetFunctionConfigurationCommand;
5664
7208
  exports.GetFunctionEventInvokeConfigCommand = GetFunctionEventInvokeConfigCommand;
5665
7209
  exports.GetFunctionRecursionConfigCommand = GetFunctionRecursionConfigCommand;
7210
+ exports.GetFunctionScalingConfigCommand = GetFunctionScalingConfigCommand;
5666
7211
  exports.GetFunctionUrlConfigCommand = GetFunctionUrlConfigCommand;
5667
7212
  exports.GetLayerVersionByArnCommand = GetLayerVersionByArnCommand;
5668
7213
  exports.GetLayerVersionCommand = GetLayerVersionCommand;
@@ -5694,10 +7239,13 @@ exports.LambdaServiceException = LambdaServiceException$1;
5694
7239
  exports.LastUpdateStatus = LastUpdateStatus;
5695
7240
  exports.LastUpdateStatusReasonCode = LastUpdateStatusReasonCode;
5696
7241
  exports.ListAliasesCommand = ListAliasesCommand;
7242
+ exports.ListCapacityProvidersCommand = ListCapacityProvidersCommand;
5697
7243
  exports.ListCodeSigningConfigsCommand = ListCodeSigningConfigsCommand;
7244
+ exports.ListDurableExecutionsByFunctionCommand = ListDurableExecutionsByFunctionCommand;
5698
7245
  exports.ListEventSourceMappingsCommand = ListEventSourceMappingsCommand;
5699
7246
  exports.ListFunctionEventInvokeConfigsCommand = ListFunctionEventInvokeConfigsCommand;
5700
7247
  exports.ListFunctionUrlConfigsCommand = ListFunctionUrlConfigsCommand;
7248
+ exports.ListFunctionVersionsByCapacityProviderCommand = ListFunctionVersionsByCapacityProviderCommand;
5701
7249
  exports.ListFunctionsByCodeSigningConfigCommand = ListFunctionsByCodeSigningConfigCommand;
5702
7250
  exports.ListFunctionsCommand = ListFunctionsCommand;
5703
7251
  exports.ListLayerVersionsCommand = ListLayerVersionsCommand;
@@ -5707,6 +7255,10 @@ exports.ListTagsCommand = ListTagsCommand;
5707
7255
  exports.ListVersionsByFunctionCommand = ListVersionsByFunctionCommand;
5708
7256
  exports.LogFormat = LogFormat;
5709
7257
  exports.LogType = LogType;
7258
+ exports.NoPublishedVersionException = NoPublishedVersionException$1;
7259
+ exports.OperationAction = OperationAction;
7260
+ exports.OperationStatus = OperationStatus;
7261
+ exports.OperationType = OperationType;
5710
7262
  exports.PackageType = PackageType;
5711
7263
  exports.PolicyLengthExceededException = PolicyLengthExceededException$1;
5712
7264
  exports.PreconditionFailedException = PreconditionFailedException$1;
@@ -5718,6 +7270,7 @@ exports.PutFunctionCodeSigningConfigCommand = PutFunctionCodeSigningConfigComman
5718
7270
  exports.PutFunctionConcurrencyCommand = PutFunctionConcurrencyCommand;
5719
7271
  exports.PutFunctionEventInvokeConfigCommand = PutFunctionEventInvokeConfigCommand;
5720
7272
  exports.PutFunctionRecursionConfigCommand = PutFunctionRecursionConfigCommand;
7273
+ exports.PutFunctionScalingConfigCommand = PutFunctionScalingConfigCommand;
5721
7274
  exports.PutProvisionedConcurrencyConfigCommand = PutProvisionedConcurrencyConfigCommand;
5722
7275
  exports.PutRuntimeManagementConfigCommand = PutRuntimeManagementConfigCommand;
5723
7276
  exports.RecursiveInvocationException = RecursiveInvocationException$1;
@@ -5732,6 +7285,9 @@ exports.ResourceNotReadyException = ResourceNotReadyException$1;
5732
7285
  exports.ResponseStreamingInvocationType = ResponseStreamingInvocationType;
5733
7286
  exports.Runtime = Runtime;
5734
7287
  exports.SchemaRegistryEventRecordFormat = SchemaRegistryEventRecordFormat;
7288
+ exports.SendDurableExecutionCallbackFailureCommand = SendDurableExecutionCallbackFailureCommand;
7289
+ exports.SendDurableExecutionCallbackHeartbeatCommand = SendDurableExecutionCallbackHeartbeatCommand;
7290
+ exports.SendDurableExecutionCallbackSuccessCommand = SendDurableExecutionCallbackSuccessCommand;
5735
7291
  exports.SerializedRequestEntityTooLargeException = SerializedRequestEntityTooLargeException$1;
5736
7292
  exports.ServiceException = ServiceException$1;
5737
7293
  exports.SnapStartApplyOn = SnapStartApplyOn;
@@ -5742,6 +7298,7 @@ exports.SnapStartTimeoutException = SnapStartTimeoutException$1;
5742
7298
  exports.SourceAccessType = SourceAccessType;
5743
7299
  exports.State = State;
5744
7300
  exports.StateReasonCode = StateReasonCode;
7301
+ exports.StopDurableExecutionCommand = StopDurableExecutionCommand;
5745
7302
  exports.SubnetIPAddressLimitReachedException = SubnetIPAddressLimitReachedException$1;
5746
7303
  exports.SystemLogLevel = SystemLogLevel;
5747
7304
  exports.TagResourceCommand = TagResourceCommand;
@@ -5752,6 +7309,7 @@ exports.TracingMode = TracingMode;
5752
7309
  exports.UnsupportedMediaTypeException = UnsupportedMediaTypeException$1;
5753
7310
  exports.UntagResourceCommand = UntagResourceCommand;
5754
7311
  exports.UpdateAliasCommand = UpdateAliasCommand;
7312
+ exports.UpdateCapacityProviderCommand = UpdateCapacityProviderCommand;
5755
7313
  exports.UpdateCodeSigningConfigCommand = UpdateCodeSigningConfigCommand;
5756
7314
  exports.UpdateEventSourceMappingCommand = UpdateEventSourceMappingCommand;
5757
7315
  exports.UpdateFunctionCodeCommand = UpdateFunctionCodeCommand;
@@ -5759,11 +7317,16 @@ exports.UpdateFunctionConfigurationCommand = UpdateFunctionConfigurationCommand;
5759
7317
  exports.UpdateFunctionEventInvokeConfigCommand = UpdateFunctionEventInvokeConfigCommand;
5760
7318
  exports.UpdateFunctionUrlConfigCommand = UpdateFunctionUrlConfigCommand;
5761
7319
  exports.UpdateRuntimeOn = UpdateRuntimeOn;
7320
+ exports.paginateGetDurableExecutionHistory = paginateGetDurableExecutionHistory;
7321
+ exports.paginateGetDurableExecutionState = paginateGetDurableExecutionState;
5762
7322
  exports.paginateListAliases = paginateListAliases;
7323
+ exports.paginateListCapacityProviders = paginateListCapacityProviders;
5763
7324
  exports.paginateListCodeSigningConfigs = paginateListCodeSigningConfigs;
7325
+ exports.paginateListDurableExecutionsByFunction = paginateListDurableExecutionsByFunction;
5764
7326
  exports.paginateListEventSourceMappings = paginateListEventSourceMappings;
5765
7327
  exports.paginateListFunctionEventInvokeConfigs = paginateListFunctionEventInvokeConfigs;
5766
7328
  exports.paginateListFunctionUrlConfigs = paginateListFunctionUrlConfigs;
7329
+ exports.paginateListFunctionVersionsByCapacityProvider = paginateListFunctionVersionsByCapacityProvider;
5767
7330
  exports.paginateListFunctions = paginateListFunctions;
5768
7331
  exports.paginateListFunctionsByCodeSigningConfig = paginateListFunctionsByCodeSigningConfig;
5769
7332
  exports.paginateListLayerVersions = paginateListLayerVersions;