@depup/aws-sdk__client-lambda 3.1010.0-depup.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 (405) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +40 -0
  3. package/changes.json +46 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  5. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  6. package/dist-cjs/endpoint/ruleset.js +7 -0
  7. package/dist-cjs/index.js +2089 -0
  8. package/dist-cjs/models/LambdaServiceException.js +12 -0
  9. package/dist-cjs/models/errors.js +730 -0
  10. package/dist-cjs/runtimeConfig.browser.js +40 -0
  11. package/dist-cjs/runtimeConfig.js +55 -0
  12. package/dist-cjs/runtimeConfig.native.js +15 -0
  13. package/dist-cjs/runtimeConfig.shared.js +43 -0
  14. package/dist-cjs/schemas/schemas_0.js +2680 -0
  15. package/dist-es/Lambda.js +225 -0
  16. package/dist-es/LambdaClient.js +52 -0
  17. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  18. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  19. package/dist-es/commands/AddLayerVersionPermissionCommand.js +16 -0
  20. package/dist-es/commands/AddPermissionCommand.js +16 -0
  21. package/dist-es/commands/CheckpointDurableExecutionCommand.js +16 -0
  22. package/dist-es/commands/CreateAliasCommand.js +16 -0
  23. package/dist-es/commands/CreateCapacityProviderCommand.js +16 -0
  24. package/dist-es/commands/CreateCodeSigningConfigCommand.js +16 -0
  25. package/dist-es/commands/CreateEventSourceMappingCommand.js +16 -0
  26. package/dist-es/commands/CreateFunctionCommand.js +16 -0
  27. package/dist-es/commands/CreateFunctionUrlConfigCommand.js +16 -0
  28. package/dist-es/commands/DeleteAliasCommand.js +16 -0
  29. package/dist-es/commands/DeleteCapacityProviderCommand.js +16 -0
  30. package/dist-es/commands/DeleteCodeSigningConfigCommand.js +16 -0
  31. package/dist-es/commands/DeleteEventSourceMappingCommand.js +16 -0
  32. package/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +16 -0
  33. package/dist-es/commands/DeleteFunctionCommand.js +16 -0
  34. package/dist-es/commands/DeleteFunctionConcurrencyCommand.js +16 -0
  35. package/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +16 -0
  36. package/dist-es/commands/DeleteFunctionUrlConfigCommand.js +16 -0
  37. package/dist-es/commands/DeleteLayerVersionCommand.js +16 -0
  38. package/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +16 -0
  39. package/dist-es/commands/GetAccountSettingsCommand.js +16 -0
  40. package/dist-es/commands/GetAliasCommand.js +16 -0
  41. package/dist-es/commands/GetCapacityProviderCommand.js +16 -0
  42. package/dist-es/commands/GetCodeSigningConfigCommand.js +16 -0
  43. package/dist-es/commands/GetDurableExecutionCommand.js +16 -0
  44. package/dist-es/commands/GetDurableExecutionHistoryCommand.js +16 -0
  45. package/dist-es/commands/GetDurableExecutionStateCommand.js +16 -0
  46. package/dist-es/commands/GetEventSourceMappingCommand.js +16 -0
  47. package/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +16 -0
  48. package/dist-es/commands/GetFunctionCommand.js +16 -0
  49. package/dist-es/commands/GetFunctionConcurrencyCommand.js +16 -0
  50. package/dist-es/commands/GetFunctionConfigurationCommand.js +16 -0
  51. package/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +16 -0
  52. package/dist-es/commands/GetFunctionRecursionConfigCommand.js +16 -0
  53. package/dist-es/commands/GetFunctionScalingConfigCommand.js +16 -0
  54. package/dist-es/commands/GetFunctionUrlConfigCommand.js +16 -0
  55. package/dist-es/commands/GetLayerVersionByArnCommand.js +16 -0
  56. package/dist-es/commands/GetLayerVersionCommand.js +16 -0
  57. package/dist-es/commands/GetLayerVersionPolicyCommand.js +16 -0
  58. package/dist-es/commands/GetPolicyCommand.js +16 -0
  59. package/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +16 -0
  60. package/dist-es/commands/GetRuntimeManagementConfigCommand.js +16 -0
  61. package/dist-es/commands/InvokeAsyncCommand.js +16 -0
  62. package/dist-es/commands/InvokeCommand.js +16 -0
  63. package/dist-es/commands/InvokeWithResponseStreamCommand.js +20 -0
  64. package/dist-es/commands/ListAliasesCommand.js +16 -0
  65. package/dist-es/commands/ListCapacityProvidersCommand.js +16 -0
  66. package/dist-es/commands/ListCodeSigningConfigsCommand.js +16 -0
  67. package/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +16 -0
  68. package/dist-es/commands/ListEventSourceMappingsCommand.js +16 -0
  69. package/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +16 -0
  70. package/dist-es/commands/ListFunctionUrlConfigsCommand.js +16 -0
  71. package/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +16 -0
  72. package/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +16 -0
  73. package/dist-es/commands/ListFunctionsCommand.js +16 -0
  74. package/dist-es/commands/ListLayerVersionsCommand.js +16 -0
  75. package/dist-es/commands/ListLayersCommand.js +16 -0
  76. package/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +16 -0
  77. package/dist-es/commands/ListTagsCommand.js +16 -0
  78. package/dist-es/commands/ListVersionsByFunctionCommand.js +16 -0
  79. package/dist-es/commands/PublishLayerVersionCommand.js +16 -0
  80. package/dist-es/commands/PublishVersionCommand.js +16 -0
  81. package/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +16 -0
  82. package/dist-es/commands/PutFunctionConcurrencyCommand.js +16 -0
  83. package/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +16 -0
  84. package/dist-es/commands/PutFunctionRecursionConfigCommand.js +16 -0
  85. package/dist-es/commands/PutFunctionScalingConfigCommand.js +16 -0
  86. package/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +16 -0
  87. package/dist-es/commands/PutRuntimeManagementConfigCommand.js +16 -0
  88. package/dist-es/commands/RemoveLayerVersionPermissionCommand.js +16 -0
  89. package/dist-es/commands/RemovePermissionCommand.js +16 -0
  90. package/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +16 -0
  91. package/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +16 -0
  92. package/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +16 -0
  93. package/dist-es/commands/StopDurableExecutionCommand.js +16 -0
  94. package/dist-es/commands/TagResourceCommand.js +16 -0
  95. package/dist-es/commands/UntagResourceCommand.js +16 -0
  96. package/dist-es/commands/UpdateAliasCommand.js +16 -0
  97. package/dist-es/commands/UpdateCapacityProviderCommand.js +16 -0
  98. package/dist-es/commands/UpdateCodeSigningConfigCommand.js +16 -0
  99. package/dist-es/commands/UpdateEventSourceMappingCommand.js +16 -0
  100. package/dist-es/commands/UpdateFunctionCodeCommand.js +16 -0
  101. package/dist-es/commands/UpdateFunctionConfigurationCommand.js +16 -0
  102. package/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +16 -0
  103. package/dist-es/commands/UpdateFunctionUrlConfigCommand.js +16 -0
  104. package/dist-es/commands/index.js +85 -0
  105. package/dist-es/endpoint/EndpointParameters.js +13 -0
  106. package/dist-es/endpoint/endpointResolver.js +14 -0
  107. package/dist-es/endpoint/ruleset.js +4 -0
  108. package/dist-es/extensionConfiguration.js +1 -0
  109. package/dist-es/index.js +10 -0
  110. package/dist-es/models/LambdaServiceException.js +8 -0
  111. package/dist-es/models/enums.js +350 -0
  112. package/dist-es/models/errors.js +683 -0
  113. package/dist-es/models/models_0.js +1 -0
  114. package/dist-es/pagination/GetDurableExecutionHistoryPaginator.js +4 -0
  115. package/dist-es/pagination/GetDurableExecutionStatePaginator.js +4 -0
  116. package/dist-es/pagination/Interfaces.js +1 -0
  117. package/dist-es/pagination/ListAliasesPaginator.js +4 -0
  118. package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
  119. package/dist-es/pagination/ListCodeSigningConfigsPaginator.js +4 -0
  120. package/dist-es/pagination/ListDurableExecutionsByFunctionPaginator.js +4 -0
  121. package/dist-es/pagination/ListEventSourceMappingsPaginator.js +4 -0
  122. package/dist-es/pagination/ListFunctionEventInvokeConfigsPaginator.js +4 -0
  123. package/dist-es/pagination/ListFunctionUrlConfigsPaginator.js +4 -0
  124. package/dist-es/pagination/ListFunctionVersionsByCapacityProviderPaginator.js +4 -0
  125. package/dist-es/pagination/ListFunctionsByCodeSigningConfigPaginator.js +4 -0
  126. package/dist-es/pagination/ListFunctionsPaginator.js +4 -0
  127. package/dist-es/pagination/ListLayerVersionsPaginator.js +4 -0
  128. package/dist-es/pagination/ListLayersPaginator.js +4 -0
  129. package/dist-es/pagination/ListProvisionedConcurrencyConfigsPaginator.js +4 -0
  130. package/dist-es/pagination/ListVersionsByFunctionPaginator.js +4 -0
  131. package/dist-es/pagination/index.js +17 -0
  132. package/dist-es/runtimeConfig.browser.js +35 -0
  133. package/dist-es/runtimeConfig.js +50 -0
  134. package/dist-es/runtimeConfig.native.js +11 -0
  135. package/dist-es/runtimeConfig.shared.js +39 -0
  136. package/dist-es/runtimeExtensions.js +9 -0
  137. package/dist-es/schemas/schemas_0.js +2670 -0
  138. package/dist-es/waiters/index.js +6 -0
  139. package/dist-es/waiters/waitForFunctionActive.js +49 -0
  140. package/dist-es/waiters/waitForFunctionActiveV2.js +49 -0
  141. package/dist-es/waiters/waitForFunctionExists.js +26 -0
  142. package/dist-es/waiters/waitForFunctionUpdated.js +49 -0
  143. package/dist-es/waiters/waitForFunctionUpdatedV2.js +49 -0
  144. package/dist-es/waiters/waitForPublishedVersionActive.js +49 -0
  145. package/dist-types/Lambda.d.ts +760 -0
  146. package/dist-types/LambdaClient.d.ts +277 -0
  147. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  148. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  149. package/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +122 -0
  150. package/dist-types/commands/AddPermissionCommand.d.ts +144 -0
  151. package/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +190 -0
  152. package/dist-types/commands/CreateAliasCommand.d.ts +128 -0
  153. package/dist-types/commands/CreateCapacityProviderCommand.d.ts +162 -0
  154. package/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +104 -0
  155. package/dist-types/commands/CreateEventSourceMappingCommand.d.ts +336 -0
  156. package/dist-types/commands/CreateFunctionCommand.d.ts +379 -0
  157. package/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +128 -0
  158. package/dist-types/commands/DeleteAliasCommand.d.ts +99 -0
  159. package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +126 -0
  160. package/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +84 -0
  161. package/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +228 -0
  162. package/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +90 -0
  163. package/dist-types/commands/DeleteFunctionCommand.d.ts +104 -0
  164. package/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +100 -0
  165. package/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +102 -0
  166. package/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +85 -0
  167. package/dist-types/commands/DeleteLayerVersionCommand.d.ts +93 -0
  168. package/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +102 -0
  169. package/dist-types/commands/GetAccountSettingsCommand.d.ts +111 -0
  170. package/dist-types/commands/GetAliasCommand.d.ts +116 -0
  171. package/dist-types/commands/GetCapacityProviderCommand.d.ts +123 -0
  172. package/dist-types/commands/GetCodeSigningConfigCommand.d.ts +96 -0
  173. package/dist-types/commands/GetDurableExecutionCommand.d.ts +105 -0
  174. package/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +259 -0
  175. package/dist-types/commands/GetDurableExecutionStateCommand.d.ts +152 -0
  176. package/dist-types/commands/GetEventSourceMappingCommand.d.ts +227 -0
  177. package/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +87 -0
  178. package/dist-types/commands/GetFunctionCommand.d.ts +274 -0
  179. package/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +101 -0
  180. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +246 -0
  181. package/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +123 -0
  182. package/dist-types/commands/GetFunctionRecursionConfigCommand.d.ts +86 -0
  183. package/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +95 -0
  184. package/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +108 -0
  185. package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +131 -0
  186. package/dist-types/commands/GetLayerVersionCommand.d.ts +135 -0
  187. package/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +88 -0
  188. package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
  189. package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +135 -0
  190. package/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +89 -0
  191. package/dist-types/commands/InvokeAsyncCommand.d.ts +109 -0
  192. package/dist-types/commands/InvokeCommand.d.ts +237 -0
  193. package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +194 -0
  194. package/dist-types/commands/ListAliasesCommand.d.ts +138 -0
  195. package/dist-types/commands/ListCapacityProvidersCommand.d.ts +125 -0
  196. package/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +97 -0
  197. package/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +106 -0
  198. package/dist-types/commands/ListEventSourceMappingsCommand.d.ts +234 -0
  199. package/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +132 -0
  200. package/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +114 -0
  201. package/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +95 -0
  202. package/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +88 -0
  203. package/dist-types/commands/ListFunctionsCommand.d.ts +266 -0
  204. package/dist-types/commands/ListLayerVersionsCommand.d.ts +139 -0
  205. package/dist-types/commands/ListLayersCommand.d.ts +135 -0
  206. package/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +131 -0
  207. package/dist-types/commands/ListTagsCommand.d.ts +106 -0
  208. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +282 -0
  209. package/dist-types/commands/PublishLayerVersionCommand.d.ts +160 -0
  210. package/dist-types/commands/PublishVersionCommand.d.ts +258 -0
  211. package/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +94 -0
  212. package/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +106 -0
  213. package/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +135 -0
  214. package/dist-types/commands/PutFunctionRecursionConfigCommand.d.ts +90 -0
  215. package/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +94 -0
  216. package/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +116 -0
  217. package/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +94 -0
  218. package/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +105 -0
  219. package/dist-types/commands/RemovePermissionCommand.d.ts +105 -0
  220. package/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +92 -0
  221. package/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +84 -0
  222. package/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +91 -0
  223. package/dist-types/commands/StopDurableExecutionCommand.d.ts +94 -0
  224. package/dist-types/commands/TagResourceCommand.d.ts +106 -0
  225. package/dist-types/commands/UntagResourceCommand.d.ts +106 -0
  226. package/dist-types/commands/UpdateAliasCommand.d.ts +141 -0
  227. package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +136 -0
  228. package/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +105 -0
  229. package/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +323 -0
  230. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +264 -0
  231. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +324 -0
  232. package/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +140 -0
  233. package/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +129 -0
  234. package/dist-types/commands/index.d.ts +85 -0
  235. package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
  236. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  237. package/dist-types/endpoint/ruleset.d.ts +2 -0
  238. package/dist-types/extensionConfiguration.d.ts +9 -0
  239. package/dist-types/index.d.ts +18 -0
  240. package/dist-types/models/LambdaServiceException.d.ts +14 -0
  241. package/dist-types/models/enums.d.ts +702 -0
  242. package/dist-types/models/errors.d.ts +668 -0
  243. package/dist-types/models/models_0.d.ts +5953 -0
  244. package/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +7 -0
  245. package/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +7 -0
  246. package/dist-types/pagination/Interfaces.d.ts +8 -0
  247. package/dist-types/pagination/ListAliasesPaginator.d.ts +7 -0
  248. package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
  249. package/dist-types/pagination/ListCodeSigningConfigsPaginator.d.ts +7 -0
  250. package/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +7 -0
  251. package/dist-types/pagination/ListEventSourceMappingsPaginator.d.ts +7 -0
  252. package/dist-types/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +7 -0
  253. package/dist-types/pagination/ListFunctionUrlConfigsPaginator.d.ts +7 -0
  254. package/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +7 -0
  255. package/dist-types/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +7 -0
  256. package/dist-types/pagination/ListFunctionsPaginator.d.ts +7 -0
  257. package/dist-types/pagination/ListLayerVersionsPaginator.d.ts +7 -0
  258. package/dist-types/pagination/ListLayersPaginator.d.ts +7 -0
  259. package/dist-types/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +7 -0
  260. package/dist-types/pagination/ListVersionsByFunctionPaginator.d.ts +7 -0
  261. package/dist-types/pagination/index.d.ts +17 -0
  262. package/dist-types/runtimeConfig.browser.d.ts +56 -0
  263. package/dist-types/runtimeConfig.d.ts +56 -0
  264. package/dist-types/runtimeConfig.native.d.ts +55 -0
  265. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  266. package/dist-types/runtimeExtensions.d.ts +17 -0
  267. package/dist-types/schemas/schemas_0.d.ts +399 -0
  268. package/dist-types/ts3.4/Lambda.d.ts +1664 -0
  269. package/dist-types/ts3.4/LambdaClient.d.ts +637 -0
  270. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  271. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  272. package/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +51 -0
  273. package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +50 -0
  274. package/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +51 -0
  275. package/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +47 -0
  276. package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +51 -0
  277. package/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +51 -0
  278. package/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +51 -0
  279. package/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +50 -0
  280. package/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +51 -0
  281. package/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +45 -0
  282. package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +51 -0
  283. package/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +51 -0
  284. package/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +51 -0
  285. package/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +47 -0
  286. package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +50 -0
  287. package/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +47 -0
  288. package/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +47 -0
  289. package/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +47 -0
  290. package/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +46 -0
  291. package/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +47 -0
  292. package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +51 -0
  293. package/dist-types/ts3.4/commands/GetAliasCommand.d.ts +47 -0
  294. package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +51 -0
  295. package/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +51 -0
  296. package/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +51 -0
  297. package/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +51 -0
  298. package/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +51 -0
  299. package/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +51 -0
  300. package/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +51 -0
  301. package/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +47 -0
  302. package/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +51 -0
  303. package/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +51 -0
  304. package/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +51 -0
  305. package/dist-types/ts3.4/commands/GetFunctionRecursionConfigCommand.d.ts +51 -0
  306. package/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +51 -0
  307. package/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +51 -0
  308. package/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +51 -0
  309. package/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +50 -0
  310. package/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +51 -0
  311. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
  312. package/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +51 -0
  313. package/dist-types/ts3.4/commands/GetRuntimeManagementConfigCommand.d.ts +51 -0
  314. package/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +56 -0
  315. package/dist-types/ts3.4/commands/InvokeCommand.d.ts +59 -0
  316. package/dist-types/ts3.4/commands/InvokeWithResponseStreamCommand.d.ts +60 -0
  317. package/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +47 -0
  318. package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +51 -0
  319. package/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +51 -0
  320. package/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +51 -0
  321. package/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +51 -0
  322. package/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +51 -0
  323. package/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +51 -0
  324. package/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +51 -0
  325. package/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +51 -0
  326. package/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +50 -0
  327. package/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +51 -0
  328. package/dist-types/ts3.4/commands/ListLayersCommand.d.ts +47 -0
  329. package/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +51 -0
  330. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +47 -0
  331. package/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +51 -0
  332. package/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +51 -0
  333. package/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +50 -0
  334. package/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +51 -0
  335. package/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +48 -0
  336. package/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +51 -0
  337. package/dist-types/ts3.4/commands/PutFunctionRecursionConfigCommand.d.ts +51 -0
  338. package/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +51 -0
  339. package/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +51 -0
  340. package/dist-types/ts3.4/commands/PutRuntimeManagementConfigCommand.d.ts +51 -0
  341. package/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +47 -0
  342. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +45 -0
  343. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +51 -0
  344. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +51 -0
  345. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +60 -0
  346. package/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +51 -0
  347. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
  348. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
  349. package/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +47 -0
  350. package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
  351. package/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +51 -0
  352. package/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +51 -0
  353. package/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +51 -0
  354. package/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +51 -0
  355. package/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +51 -0
  356. package/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +51 -0
  357. package/dist-types/ts3.4/commands/index.d.ts +85 -0
  358. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  359. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  360. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  361. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  362. package/dist-types/ts3.4/index.d.ts +13 -0
  363. package/dist-types/ts3.4/models/LambdaServiceException.d.ts +9 -0
  364. package/dist-types/ts3.4/models/enums.d.ts +425 -0
  365. package/dist-types/ts3.4/models/errors.d.ts +409 -0
  366. package/dist-types/ts3.4/models/models_0.d.ts +1499 -0
  367. package/dist-types/ts3.4/pagination/GetDurableExecutionHistoryPaginator.d.ts +11 -0
  368. package/dist-types/ts3.4/pagination/GetDurableExecutionStatePaginator.d.ts +11 -0
  369. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  370. package/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +11 -0
  371. package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
  372. package/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +11 -0
  373. package/dist-types/ts3.4/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +11 -0
  374. package/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +11 -0
  375. package/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +11 -0
  376. package/dist-types/ts3.4/pagination/ListFunctionUrlConfigsPaginator.d.ts +11 -0
  377. package/dist-types/ts3.4/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +11 -0
  378. package/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +11 -0
  379. package/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +11 -0
  380. package/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +11 -0
  381. package/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +11 -0
  382. package/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +11 -0
  383. package/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +11 -0
  384. package/dist-types/ts3.4/pagination/index.d.ts +17 -0
  385. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +101 -0
  386. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  387. package/dist-types/ts3.4/runtimeConfig.native.d.ts +105 -0
  388. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  389. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  390. package/dist-types/ts3.4/schemas/schemas_0.d.ts +399 -0
  391. package/dist-types/ts3.4/waiters/index.d.ts +6 -0
  392. package/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +11 -0
  393. package/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +11 -0
  394. package/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +11 -0
  395. package/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +11 -0
  396. package/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +11 -0
  397. package/dist-types/ts3.4/waiters/waitForPublishedVersionActive.d.ts +11 -0
  398. package/dist-types/waiters/index.d.ts +6 -0
  399. package/dist-types/waiters/waitForFunctionActive.d.ts +14 -0
  400. package/dist-types/waiters/waitForFunctionActiveV2.d.ts +14 -0
  401. package/dist-types/waiters/waitForFunctionExists.d.ts +14 -0
  402. package/dist-types/waiters/waitForFunctionUpdated.d.ts +14 -0
  403. package/dist-types/waiters/waitForFunctionUpdatedV2.d.ts +14 -0
  404. package/dist-types/waiters/waitForPublishedVersionActive.d.ts +14 -0
  405. package/package.json +164 -0
@@ -0,0 +1,730 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CallbackTimeoutException = exports.ProvisionedConcurrencyConfigNotFoundException = exports.UnsupportedMediaTypeException = exports.SubnetIPAddressLimitReachedException = exports.SnapStartTimeoutException = exports.SnapStartNotReadyException = exports.SnapStartException = exports.SerializedRequestEntityTooLargeException = exports.ResourceNotReadyException = exports.RequestTooLargeException = exports.RecursiveInvocationException = exports.NoPublishedVersionException = exports.KMSNotFoundException = exports.KMSInvalidStateException = exports.KMSDisabledException = exports.KMSAccessDeniedException = exports.InvalidZipFileException = exports.InvalidSubnetIDException = exports.InvalidSecurityGroupIDException = exports.InvalidRuntimeException = exports.InvalidRequestContentException = exports.ENILimitReachedException = exports.EFSMountTimeoutException = exports.EFSMountFailureException = exports.EFSMountConnectivityException = exports.EFSIOException = exports.EC2UnexpectedException = exports.EC2ThrottledException = exports.EC2AccessDeniedException = exports.DurableExecutionAlreadyStartedException = exports.InvalidCodeSignatureException = exports.FunctionVersionsPerCapacityProviderLimitExceededException = exports.CodeVerificationFailedException = exports.CodeStorageExceededException = exports.CodeSigningConfigNotFoundException = exports.ResourceInUseException = exports.CapacityProviderLimitExceededException = exports.TooManyRequestsException = exports.ServiceException = exports.ResourceNotFoundException = exports.ResourceConflictException = exports.PreconditionFailedException = exports.PolicyLengthExceededException = exports.InvalidParameterValueException = void 0;
4
+ const LambdaServiceException_1 = require("./LambdaServiceException");
5
+ class InvalidParameterValueException extends LambdaServiceException_1.LambdaServiceException {
6
+ name = "InvalidParameterValueException";
7
+ $fault = "client";
8
+ Type;
9
+ constructor(opts) {
10
+ super({
11
+ name: "InvalidParameterValueException",
12
+ $fault: "client",
13
+ ...opts,
14
+ });
15
+ Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
16
+ this.Type = opts.Type;
17
+ }
18
+ }
19
+ exports.InvalidParameterValueException = InvalidParameterValueException;
20
+ class PolicyLengthExceededException extends LambdaServiceException_1.LambdaServiceException {
21
+ name = "PolicyLengthExceededException";
22
+ $fault = "client";
23
+ Type;
24
+ constructor(opts) {
25
+ super({
26
+ name: "PolicyLengthExceededException",
27
+ $fault: "client",
28
+ ...opts,
29
+ });
30
+ Object.setPrototypeOf(this, PolicyLengthExceededException.prototype);
31
+ this.Type = opts.Type;
32
+ }
33
+ }
34
+ exports.PolicyLengthExceededException = PolicyLengthExceededException;
35
+ class PreconditionFailedException extends LambdaServiceException_1.LambdaServiceException {
36
+ name = "PreconditionFailedException";
37
+ $fault = "client";
38
+ Type;
39
+ constructor(opts) {
40
+ super({
41
+ name: "PreconditionFailedException",
42
+ $fault: "client",
43
+ ...opts,
44
+ });
45
+ Object.setPrototypeOf(this, PreconditionFailedException.prototype);
46
+ this.Type = opts.Type;
47
+ }
48
+ }
49
+ exports.PreconditionFailedException = PreconditionFailedException;
50
+ class ResourceConflictException extends LambdaServiceException_1.LambdaServiceException {
51
+ name = "ResourceConflictException";
52
+ $fault = "client";
53
+ Type;
54
+ constructor(opts) {
55
+ super({
56
+ name: "ResourceConflictException",
57
+ $fault: "client",
58
+ ...opts,
59
+ });
60
+ Object.setPrototypeOf(this, ResourceConflictException.prototype);
61
+ this.Type = opts.Type;
62
+ }
63
+ }
64
+ exports.ResourceConflictException = ResourceConflictException;
65
+ class ResourceNotFoundException extends LambdaServiceException_1.LambdaServiceException {
66
+ name = "ResourceNotFoundException";
67
+ $fault = "client";
68
+ Type;
69
+ Message;
70
+ constructor(opts) {
71
+ super({
72
+ name: "ResourceNotFoundException",
73
+ $fault: "client",
74
+ ...opts,
75
+ });
76
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
77
+ this.Type = opts.Type;
78
+ this.Message = opts.Message;
79
+ }
80
+ }
81
+ exports.ResourceNotFoundException = ResourceNotFoundException;
82
+ class ServiceException extends LambdaServiceException_1.LambdaServiceException {
83
+ name = "ServiceException";
84
+ $fault = "server";
85
+ Type;
86
+ Message;
87
+ constructor(opts) {
88
+ super({
89
+ name: "ServiceException",
90
+ $fault: "server",
91
+ ...opts,
92
+ });
93
+ Object.setPrototypeOf(this, ServiceException.prototype);
94
+ this.Type = opts.Type;
95
+ this.Message = opts.Message;
96
+ }
97
+ }
98
+ exports.ServiceException = ServiceException;
99
+ class TooManyRequestsException extends LambdaServiceException_1.LambdaServiceException {
100
+ name = "TooManyRequestsException";
101
+ $fault = "client";
102
+ retryAfterSeconds;
103
+ Type;
104
+ Reason;
105
+ constructor(opts) {
106
+ super({
107
+ name: "TooManyRequestsException",
108
+ $fault: "client",
109
+ ...opts,
110
+ });
111
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
112
+ this.retryAfterSeconds = opts.retryAfterSeconds;
113
+ this.Type = opts.Type;
114
+ this.Reason = opts.Reason;
115
+ }
116
+ }
117
+ exports.TooManyRequestsException = TooManyRequestsException;
118
+ class CapacityProviderLimitExceededException extends LambdaServiceException_1.LambdaServiceException {
119
+ name = "CapacityProviderLimitExceededException";
120
+ $fault = "client";
121
+ Type;
122
+ constructor(opts) {
123
+ super({
124
+ name: "CapacityProviderLimitExceededException",
125
+ $fault: "client",
126
+ ...opts,
127
+ });
128
+ Object.setPrototypeOf(this, CapacityProviderLimitExceededException.prototype);
129
+ this.Type = opts.Type;
130
+ }
131
+ }
132
+ exports.CapacityProviderLimitExceededException = CapacityProviderLimitExceededException;
133
+ class ResourceInUseException extends LambdaServiceException_1.LambdaServiceException {
134
+ name = "ResourceInUseException";
135
+ $fault = "client";
136
+ Type;
137
+ Message;
138
+ constructor(opts) {
139
+ super({
140
+ name: "ResourceInUseException",
141
+ $fault: "client",
142
+ ...opts,
143
+ });
144
+ Object.setPrototypeOf(this, ResourceInUseException.prototype);
145
+ this.Type = opts.Type;
146
+ this.Message = opts.Message;
147
+ }
148
+ }
149
+ exports.ResourceInUseException = ResourceInUseException;
150
+ class CodeSigningConfigNotFoundException extends LambdaServiceException_1.LambdaServiceException {
151
+ name = "CodeSigningConfigNotFoundException";
152
+ $fault = "client";
153
+ Type;
154
+ Message;
155
+ constructor(opts) {
156
+ super({
157
+ name: "CodeSigningConfigNotFoundException",
158
+ $fault: "client",
159
+ ...opts,
160
+ });
161
+ Object.setPrototypeOf(this, CodeSigningConfigNotFoundException.prototype);
162
+ this.Type = opts.Type;
163
+ this.Message = opts.Message;
164
+ }
165
+ }
166
+ exports.CodeSigningConfigNotFoundException = CodeSigningConfigNotFoundException;
167
+ class CodeStorageExceededException extends LambdaServiceException_1.LambdaServiceException {
168
+ name = "CodeStorageExceededException";
169
+ $fault = "client";
170
+ Type;
171
+ constructor(opts) {
172
+ super({
173
+ name: "CodeStorageExceededException",
174
+ $fault: "client",
175
+ ...opts,
176
+ });
177
+ Object.setPrototypeOf(this, CodeStorageExceededException.prototype);
178
+ this.Type = opts.Type;
179
+ }
180
+ }
181
+ exports.CodeStorageExceededException = CodeStorageExceededException;
182
+ class CodeVerificationFailedException extends LambdaServiceException_1.LambdaServiceException {
183
+ name = "CodeVerificationFailedException";
184
+ $fault = "client";
185
+ Type;
186
+ Message;
187
+ constructor(opts) {
188
+ super({
189
+ name: "CodeVerificationFailedException",
190
+ $fault: "client",
191
+ ...opts,
192
+ });
193
+ Object.setPrototypeOf(this, CodeVerificationFailedException.prototype);
194
+ this.Type = opts.Type;
195
+ this.Message = opts.Message;
196
+ }
197
+ }
198
+ exports.CodeVerificationFailedException = CodeVerificationFailedException;
199
+ class FunctionVersionsPerCapacityProviderLimitExceededException extends LambdaServiceException_1.LambdaServiceException {
200
+ name = "FunctionVersionsPerCapacityProviderLimitExceededException";
201
+ $fault = "client";
202
+ Type;
203
+ constructor(opts) {
204
+ super({
205
+ name: "FunctionVersionsPerCapacityProviderLimitExceededException",
206
+ $fault: "client",
207
+ ...opts,
208
+ });
209
+ Object.setPrototypeOf(this, FunctionVersionsPerCapacityProviderLimitExceededException.prototype);
210
+ this.Type = opts.Type;
211
+ }
212
+ }
213
+ exports.FunctionVersionsPerCapacityProviderLimitExceededException = FunctionVersionsPerCapacityProviderLimitExceededException;
214
+ class InvalidCodeSignatureException extends LambdaServiceException_1.LambdaServiceException {
215
+ name = "InvalidCodeSignatureException";
216
+ $fault = "client";
217
+ Type;
218
+ Message;
219
+ constructor(opts) {
220
+ super({
221
+ name: "InvalidCodeSignatureException",
222
+ $fault: "client",
223
+ ...opts,
224
+ });
225
+ Object.setPrototypeOf(this, InvalidCodeSignatureException.prototype);
226
+ this.Type = opts.Type;
227
+ this.Message = opts.Message;
228
+ }
229
+ }
230
+ exports.InvalidCodeSignatureException = InvalidCodeSignatureException;
231
+ class DurableExecutionAlreadyStartedException extends LambdaServiceException_1.LambdaServiceException {
232
+ name = "DurableExecutionAlreadyStartedException";
233
+ $fault = "client";
234
+ Type;
235
+ Message;
236
+ constructor(opts) {
237
+ super({
238
+ name: "DurableExecutionAlreadyStartedException",
239
+ $fault: "client",
240
+ ...opts,
241
+ });
242
+ Object.setPrototypeOf(this, DurableExecutionAlreadyStartedException.prototype);
243
+ this.Type = opts.Type;
244
+ this.Message = opts.Message;
245
+ }
246
+ }
247
+ exports.DurableExecutionAlreadyStartedException = DurableExecutionAlreadyStartedException;
248
+ class EC2AccessDeniedException extends LambdaServiceException_1.LambdaServiceException {
249
+ name = "EC2AccessDeniedException";
250
+ $fault = "server";
251
+ Type;
252
+ Message;
253
+ constructor(opts) {
254
+ super({
255
+ name: "EC2AccessDeniedException",
256
+ $fault: "server",
257
+ ...opts,
258
+ });
259
+ Object.setPrototypeOf(this, EC2AccessDeniedException.prototype);
260
+ this.Type = opts.Type;
261
+ this.Message = opts.Message;
262
+ }
263
+ }
264
+ exports.EC2AccessDeniedException = EC2AccessDeniedException;
265
+ class EC2ThrottledException extends LambdaServiceException_1.LambdaServiceException {
266
+ name = "EC2ThrottledException";
267
+ $fault = "server";
268
+ Type;
269
+ Message;
270
+ constructor(opts) {
271
+ super({
272
+ name: "EC2ThrottledException",
273
+ $fault: "server",
274
+ ...opts,
275
+ });
276
+ Object.setPrototypeOf(this, EC2ThrottledException.prototype);
277
+ this.Type = opts.Type;
278
+ this.Message = opts.Message;
279
+ }
280
+ }
281
+ exports.EC2ThrottledException = EC2ThrottledException;
282
+ class EC2UnexpectedException extends LambdaServiceException_1.LambdaServiceException {
283
+ name = "EC2UnexpectedException";
284
+ $fault = "server";
285
+ Type;
286
+ Message;
287
+ EC2ErrorCode;
288
+ constructor(opts) {
289
+ super({
290
+ name: "EC2UnexpectedException",
291
+ $fault: "server",
292
+ ...opts,
293
+ });
294
+ Object.setPrototypeOf(this, EC2UnexpectedException.prototype);
295
+ this.Type = opts.Type;
296
+ this.Message = opts.Message;
297
+ this.EC2ErrorCode = opts.EC2ErrorCode;
298
+ }
299
+ }
300
+ exports.EC2UnexpectedException = EC2UnexpectedException;
301
+ class EFSIOException extends LambdaServiceException_1.LambdaServiceException {
302
+ name = "EFSIOException";
303
+ $fault = "client";
304
+ Type;
305
+ Message;
306
+ constructor(opts) {
307
+ super({
308
+ name: "EFSIOException",
309
+ $fault: "client",
310
+ ...opts,
311
+ });
312
+ Object.setPrototypeOf(this, EFSIOException.prototype);
313
+ this.Type = opts.Type;
314
+ this.Message = opts.Message;
315
+ }
316
+ }
317
+ exports.EFSIOException = EFSIOException;
318
+ class EFSMountConnectivityException extends LambdaServiceException_1.LambdaServiceException {
319
+ name = "EFSMountConnectivityException";
320
+ $fault = "client";
321
+ Type;
322
+ Message;
323
+ constructor(opts) {
324
+ super({
325
+ name: "EFSMountConnectivityException",
326
+ $fault: "client",
327
+ ...opts,
328
+ });
329
+ Object.setPrototypeOf(this, EFSMountConnectivityException.prototype);
330
+ this.Type = opts.Type;
331
+ this.Message = opts.Message;
332
+ }
333
+ }
334
+ exports.EFSMountConnectivityException = EFSMountConnectivityException;
335
+ class EFSMountFailureException extends LambdaServiceException_1.LambdaServiceException {
336
+ name = "EFSMountFailureException";
337
+ $fault = "client";
338
+ Type;
339
+ Message;
340
+ constructor(opts) {
341
+ super({
342
+ name: "EFSMountFailureException",
343
+ $fault: "client",
344
+ ...opts,
345
+ });
346
+ Object.setPrototypeOf(this, EFSMountFailureException.prototype);
347
+ this.Type = opts.Type;
348
+ this.Message = opts.Message;
349
+ }
350
+ }
351
+ exports.EFSMountFailureException = EFSMountFailureException;
352
+ class EFSMountTimeoutException extends LambdaServiceException_1.LambdaServiceException {
353
+ name = "EFSMountTimeoutException";
354
+ $fault = "client";
355
+ Type;
356
+ Message;
357
+ constructor(opts) {
358
+ super({
359
+ name: "EFSMountTimeoutException",
360
+ $fault: "client",
361
+ ...opts,
362
+ });
363
+ Object.setPrototypeOf(this, EFSMountTimeoutException.prototype);
364
+ this.Type = opts.Type;
365
+ this.Message = opts.Message;
366
+ }
367
+ }
368
+ exports.EFSMountTimeoutException = EFSMountTimeoutException;
369
+ class ENILimitReachedException extends LambdaServiceException_1.LambdaServiceException {
370
+ name = "ENILimitReachedException";
371
+ $fault = "server";
372
+ Type;
373
+ Message;
374
+ constructor(opts) {
375
+ super({
376
+ name: "ENILimitReachedException",
377
+ $fault: "server",
378
+ ...opts,
379
+ });
380
+ Object.setPrototypeOf(this, ENILimitReachedException.prototype);
381
+ this.Type = opts.Type;
382
+ this.Message = opts.Message;
383
+ }
384
+ }
385
+ exports.ENILimitReachedException = ENILimitReachedException;
386
+ class InvalidRequestContentException extends LambdaServiceException_1.LambdaServiceException {
387
+ name = "InvalidRequestContentException";
388
+ $fault = "client";
389
+ Type;
390
+ constructor(opts) {
391
+ super({
392
+ name: "InvalidRequestContentException",
393
+ $fault: "client",
394
+ ...opts,
395
+ });
396
+ Object.setPrototypeOf(this, InvalidRequestContentException.prototype);
397
+ this.Type = opts.Type;
398
+ }
399
+ }
400
+ exports.InvalidRequestContentException = InvalidRequestContentException;
401
+ class InvalidRuntimeException extends LambdaServiceException_1.LambdaServiceException {
402
+ name = "InvalidRuntimeException";
403
+ $fault = "server";
404
+ Type;
405
+ Message;
406
+ constructor(opts) {
407
+ super({
408
+ name: "InvalidRuntimeException",
409
+ $fault: "server",
410
+ ...opts,
411
+ });
412
+ Object.setPrototypeOf(this, InvalidRuntimeException.prototype);
413
+ this.Type = opts.Type;
414
+ this.Message = opts.Message;
415
+ }
416
+ }
417
+ exports.InvalidRuntimeException = InvalidRuntimeException;
418
+ class InvalidSecurityGroupIDException extends LambdaServiceException_1.LambdaServiceException {
419
+ name = "InvalidSecurityGroupIDException";
420
+ $fault = "server";
421
+ Type;
422
+ Message;
423
+ constructor(opts) {
424
+ super({
425
+ name: "InvalidSecurityGroupIDException",
426
+ $fault: "server",
427
+ ...opts,
428
+ });
429
+ Object.setPrototypeOf(this, InvalidSecurityGroupIDException.prototype);
430
+ this.Type = opts.Type;
431
+ this.Message = opts.Message;
432
+ }
433
+ }
434
+ exports.InvalidSecurityGroupIDException = InvalidSecurityGroupIDException;
435
+ class InvalidSubnetIDException extends LambdaServiceException_1.LambdaServiceException {
436
+ name = "InvalidSubnetIDException";
437
+ $fault = "server";
438
+ Type;
439
+ Message;
440
+ constructor(opts) {
441
+ super({
442
+ name: "InvalidSubnetIDException",
443
+ $fault: "server",
444
+ ...opts,
445
+ });
446
+ Object.setPrototypeOf(this, InvalidSubnetIDException.prototype);
447
+ this.Type = opts.Type;
448
+ this.Message = opts.Message;
449
+ }
450
+ }
451
+ exports.InvalidSubnetIDException = InvalidSubnetIDException;
452
+ class InvalidZipFileException extends LambdaServiceException_1.LambdaServiceException {
453
+ name = "InvalidZipFileException";
454
+ $fault = "server";
455
+ Type;
456
+ Message;
457
+ constructor(opts) {
458
+ super({
459
+ name: "InvalidZipFileException",
460
+ $fault: "server",
461
+ ...opts,
462
+ });
463
+ Object.setPrototypeOf(this, InvalidZipFileException.prototype);
464
+ this.Type = opts.Type;
465
+ this.Message = opts.Message;
466
+ }
467
+ }
468
+ exports.InvalidZipFileException = InvalidZipFileException;
469
+ class KMSAccessDeniedException extends LambdaServiceException_1.LambdaServiceException {
470
+ name = "KMSAccessDeniedException";
471
+ $fault = "server";
472
+ Type;
473
+ Message;
474
+ constructor(opts) {
475
+ super({
476
+ name: "KMSAccessDeniedException",
477
+ $fault: "server",
478
+ ...opts,
479
+ });
480
+ Object.setPrototypeOf(this, KMSAccessDeniedException.prototype);
481
+ this.Type = opts.Type;
482
+ this.Message = opts.Message;
483
+ }
484
+ }
485
+ exports.KMSAccessDeniedException = KMSAccessDeniedException;
486
+ class KMSDisabledException extends LambdaServiceException_1.LambdaServiceException {
487
+ name = "KMSDisabledException";
488
+ $fault = "server";
489
+ Type;
490
+ Message;
491
+ constructor(opts) {
492
+ super({
493
+ name: "KMSDisabledException",
494
+ $fault: "server",
495
+ ...opts,
496
+ });
497
+ Object.setPrototypeOf(this, KMSDisabledException.prototype);
498
+ this.Type = opts.Type;
499
+ this.Message = opts.Message;
500
+ }
501
+ }
502
+ exports.KMSDisabledException = KMSDisabledException;
503
+ class KMSInvalidStateException extends LambdaServiceException_1.LambdaServiceException {
504
+ name = "KMSInvalidStateException";
505
+ $fault = "server";
506
+ Type;
507
+ Message;
508
+ constructor(opts) {
509
+ super({
510
+ name: "KMSInvalidStateException",
511
+ $fault: "server",
512
+ ...opts,
513
+ });
514
+ Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
515
+ this.Type = opts.Type;
516
+ this.Message = opts.Message;
517
+ }
518
+ }
519
+ exports.KMSInvalidStateException = KMSInvalidStateException;
520
+ class KMSNotFoundException extends LambdaServiceException_1.LambdaServiceException {
521
+ name = "KMSNotFoundException";
522
+ $fault = "server";
523
+ Type;
524
+ Message;
525
+ constructor(opts) {
526
+ super({
527
+ name: "KMSNotFoundException",
528
+ $fault: "server",
529
+ ...opts,
530
+ });
531
+ Object.setPrototypeOf(this, KMSNotFoundException.prototype);
532
+ this.Type = opts.Type;
533
+ this.Message = opts.Message;
534
+ }
535
+ }
536
+ exports.KMSNotFoundException = KMSNotFoundException;
537
+ class NoPublishedVersionException extends LambdaServiceException_1.LambdaServiceException {
538
+ name = "NoPublishedVersionException";
539
+ $fault = "client";
540
+ Type;
541
+ Message;
542
+ constructor(opts) {
543
+ super({
544
+ name: "NoPublishedVersionException",
545
+ $fault: "client",
546
+ ...opts,
547
+ });
548
+ Object.setPrototypeOf(this, NoPublishedVersionException.prototype);
549
+ this.Type = opts.Type;
550
+ this.Message = opts.Message;
551
+ }
552
+ }
553
+ exports.NoPublishedVersionException = NoPublishedVersionException;
554
+ class RecursiveInvocationException extends LambdaServiceException_1.LambdaServiceException {
555
+ name = "RecursiveInvocationException";
556
+ $fault = "client";
557
+ Type;
558
+ Message;
559
+ constructor(opts) {
560
+ super({
561
+ name: "RecursiveInvocationException",
562
+ $fault: "client",
563
+ ...opts,
564
+ });
565
+ Object.setPrototypeOf(this, RecursiveInvocationException.prototype);
566
+ this.Type = opts.Type;
567
+ this.Message = opts.Message;
568
+ }
569
+ }
570
+ exports.RecursiveInvocationException = RecursiveInvocationException;
571
+ class RequestTooLargeException extends LambdaServiceException_1.LambdaServiceException {
572
+ name = "RequestTooLargeException";
573
+ $fault = "client";
574
+ Type;
575
+ constructor(opts) {
576
+ super({
577
+ name: "RequestTooLargeException",
578
+ $fault: "client",
579
+ ...opts,
580
+ });
581
+ Object.setPrototypeOf(this, RequestTooLargeException.prototype);
582
+ this.Type = opts.Type;
583
+ }
584
+ }
585
+ exports.RequestTooLargeException = RequestTooLargeException;
586
+ class ResourceNotReadyException extends LambdaServiceException_1.LambdaServiceException {
587
+ name = "ResourceNotReadyException";
588
+ $fault = "server";
589
+ Type;
590
+ constructor(opts) {
591
+ super({
592
+ name: "ResourceNotReadyException",
593
+ $fault: "server",
594
+ ...opts,
595
+ });
596
+ Object.setPrototypeOf(this, ResourceNotReadyException.prototype);
597
+ this.Type = opts.Type;
598
+ }
599
+ }
600
+ exports.ResourceNotReadyException = ResourceNotReadyException;
601
+ class SerializedRequestEntityTooLargeException extends LambdaServiceException_1.LambdaServiceException {
602
+ name = "SerializedRequestEntityTooLargeException";
603
+ $fault = "client";
604
+ Type;
605
+ constructor(opts) {
606
+ super({
607
+ name: "SerializedRequestEntityTooLargeException",
608
+ $fault: "client",
609
+ ...opts,
610
+ });
611
+ Object.setPrototypeOf(this, SerializedRequestEntityTooLargeException.prototype);
612
+ this.Type = opts.Type;
613
+ }
614
+ }
615
+ exports.SerializedRequestEntityTooLargeException = SerializedRequestEntityTooLargeException;
616
+ class SnapStartException extends LambdaServiceException_1.LambdaServiceException {
617
+ name = "SnapStartException";
618
+ $fault = "client";
619
+ Type;
620
+ Message;
621
+ constructor(opts) {
622
+ super({
623
+ name: "SnapStartException",
624
+ $fault: "client",
625
+ ...opts,
626
+ });
627
+ Object.setPrototypeOf(this, SnapStartException.prototype);
628
+ this.Type = opts.Type;
629
+ this.Message = opts.Message;
630
+ }
631
+ }
632
+ exports.SnapStartException = SnapStartException;
633
+ class SnapStartNotReadyException extends LambdaServiceException_1.LambdaServiceException {
634
+ name = "SnapStartNotReadyException";
635
+ $fault = "client";
636
+ Type;
637
+ Message;
638
+ constructor(opts) {
639
+ super({
640
+ name: "SnapStartNotReadyException",
641
+ $fault: "client",
642
+ ...opts,
643
+ });
644
+ Object.setPrototypeOf(this, SnapStartNotReadyException.prototype);
645
+ this.Type = opts.Type;
646
+ this.Message = opts.Message;
647
+ }
648
+ }
649
+ exports.SnapStartNotReadyException = SnapStartNotReadyException;
650
+ class SnapStartTimeoutException extends LambdaServiceException_1.LambdaServiceException {
651
+ name = "SnapStartTimeoutException";
652
+ $fault = "client";
653
+ Type;
654
+ Message;
655
+ constructor(opts) {
656
+ super({
657
+ name: "SnapStartTimeoutException",
658
+ $fault: "client",
659
+ ...opts,
660
+ });
661
+ Object.setPrototypeOf(this, SnapStartTimeoutException.prototype);
662
+ this.Type = opts.Type;
663
+ this.Message = opts.Message;
664
+ }
665
+ }
666
+ exports.SnapStartTimeoutException = SnapStartTimeoutException;
667
+ class SubnetIPAddressLimitReachedException extends LambdaServiceException_1.LambdaServiceException {
668
+ name = "SubnetIPAddressLimitReachedException";
669
+ $fault = "server";
670
+ Type;
671
+ Message;
672
+ constructor(opts) {
673
+ super({
674
+ name: "SubnetIPAddressLimitReachedException",
675
+ $fault: "server",
676
+ ...opts,
677
+ });
678
+ Object.setPrototypeOf(this, SubnetIPAddressLimitReachedException.prototype);
679
+ this.Type = opts.Type;
680
+ this.Message = opts.Message;
681
+ }
682
+ }
683
+ exports.SubnetIPAddressLimitReachedException = SubnetIPAddressLimitReachedException;
684
+ class UnsupportedMediaTypeException extends LambdaServiceException_1.LambdaServiceException {
685
+ name = "UnsupportedMediaTypeException";
686
+ $fault = "client";
687
+ Type;
688
+ constructor(opts) {
689
+ super({
690
+ name: "UnsupportedMediaTypeException",
691
+ $fault: "client",
692
+ ...opts,
693
+ });
694
+ Object.setPrototypeOf(this, UnsupportedMediaTypeException.prototype);
695
+ this.Type = opts.Type;
696
+ }
697
+ }
698
+ exports.UnsupportedMediaTypeException = UnsupportedMediaTypeException;
699
+ class ProvisionedConcurrencyConfigNotFoundException extends LambdaServiceException_1.LambdaServiceException {
700
+ name = "ProvisionedConcurrencyConfigNotFoundException";
701
+ $fault = "client";
702
+ Type;
703
+ constructor(opts) {
704
+ super({
705
+ name: "ProvisionedConcurrencyConfigNotFoundException",
706
+ $fault: "client",
707
+ ...opts,
708
+ });
709
+ Object.setPrototypeOf(this, ProvisionedConcurrencyConfigNotFoundException.prototype);
710
+ this.Type = opts.Type;
711
+ }
712
+ }
713
+ exports.ProvisionedConcurrencyConfigNotFoundException = ProvisionedConcurrencyConfigNotFoundException;
714
+ class CallbackTimeoutException extends LambdaServiceException_1.LambdaServiceException {
715
+ name = "CallbackTimeoutException";
716
+ $fault = "client";
717
+ Type;
718
+ Message;
719
+ constructor(opts) {
720
+ super({
721
+ name: "CallbackTimeoutException",
722
+ $fault: "client",
723
+ ...opts,
724
+ });
725
+ Object.setPrototypeOf(this, CallbackTimeoutException.prototype);
726
+ this.Type = opts.Type;
727
+ this.Message = opts.Message;
728
+ }
729
+ }
730
+ exports.CallbackTimeoutException = CallbackTimeoutException;