@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,668 @@
1
+ import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ThrottleReason } from "./enums";
3
+ import { LambdaServiceException as __BaseException } from "./LambdaServiceException";
4
+ /**
5
+ * <p>One of the parameters in the request is not valid.</p>
6
+ * @public
7
+ */
8
+ export declare class InvalidParameterValueException extends __BaseException {
9
+ readonly name: "InvalidParameterValueException";
10
+ readonly $fault: "client";
11
+ /**
12
+ * <p>The exception type.</p>
13
+ * @public
14
+ */
15
+ Type?: string | undefined;
16
+ /**
17
+ * @internal
18
+ */
19
+ constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
20
+ }
21
+ /**
22
+ * <p>The permissions policy for the resource is too large. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
23
+ * @public
24
+ */
25
+ export declare class PolicyLengthExceededException extends __BaseException {
26
+ readonly name: "PolicyLengthExceededException";
27
+ readonly $fault: "client";
28
+ Type?: string | undefined;
29
+ /**
30
+ * @internal
31
+ */
32
+ constructor(opts: __ExceptionOptionType<PolicyLengthExceededException, __BaseException>);
33
+ }
34
+ /**
35
+ * <p>The RevisionId provided does not match the latest RevisionId for the Lambda function or alias.</p> <ul> <li> <p> <b>For AddPermission and RemovePermission API operations:</b> Call <code>GetPolicy</code> to retrieve the latest RevisionId for your resource.</p> </li> <li> <p> <b>For all other API operations:</b> Call <code>GetFunction</code> or <code>GetAlias</code> to retrieve the latest RevisionId for your resource.</p> </li> </ul>
36
+ * @public
37
+ */
38
+ export declare class PreconditionFailedException extends __BaseException {
39
+ readonly name: "PreconditionFailedException";
40
+ readonly $fault: "client";
41
+ /**
42
+ * <p>The exception type.</p>
43
+ * @public
44
+ */
45
+ Type?: string | undefined;
46
+ /**
47
+ * @internal
48
+ */
49
+ constructor(opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>);
50
+ }
51
+ /**
52
+ * <p>The resource already exists, or another operation is in progress.</p>
53
+ * @public
54
+ */
55
+ export declare class ResourceConflictException extends __BaseException {
56
+ readonly name: "ResourceConflictException";
57
+ readonly $fault: "client";
58
+ /**
59
+ * <p>The exception type.</p>
60
+ * @public
61
+ */
62
+ Type?: string | undefined;
63
+ /**
64
+ * @internal
65
+ */
66
+ constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
67
+ }
68
+ /**
69
+ * <p>The resource specified in the request does not exist.</p>
70
+ * @public
71
+ */
72
+ export declare class ResourceNotFoundException extends __BaseException {
73
+ readonly name: "ResourceNotFoundException";
74
+ readonly $fault: "client";
75
+ Type?: string | undefined;
76
+ Message?: string | undefined;
77
+ /**
78
+ * @internal
79
+ */
80
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
81
+ }
82
+ /**
83
+ * <p>The Lambda service encountered an internal error.</p>
84
+ * @public
85
+ */
86
+ export declare class ServiceException extends __BaseException {
87
+ readonly name: "ServiceException";
88
+ readonly $fault: "server";
89
+ Type?: string | undefined;
90
+ Message?: string | undefined;
91
+ /**
92
+ * @internal
93
+ */
94
+ constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
95
+ }
96
+ /**
97
+ * <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
98
+ * @public
99
+ */
100
+ export declare class TooManyRequestsException extends __BaseException {
101
+ readonly name: "TooManyRequestsException";
102
+ readonly $fault: "client";
103
+ /**
104
+ * <p>The number of seconds the caller should wait before retrying.</p>
105
+ * @public
106
+ */
107
+ retryAfterSeconds?: string | undefined;
108
+ Type?: string | undefined;
109
+ Reason?: ThrottleReason | undefined;
110
+ /**
111
+ * @internal
112
+ */
113
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
114
+ }
115
+ /**
116
+ * <p>The maximum number of capacity providers for your account has been exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a> </p>
117
+ * @public
118
+ */
119
+ export declare class CapacityProviderLimitExceededException extends __BaseException {
120
+ readonly name: "CapacityProviderLimitExceededException";
121
+ readonly $fault: "client";
122
+ /**
123
+ * <p>The exception type.</p>
124
+ * @public
125
+ */
126
+ Type?: string | undefined;
127
+ /**
128
+ * @internal
129
+ */
130
+ constructor(opts: __ExceptionOptionType<CapacityProviderLimitExceededException, __BaseException>);
131
+ }
132
+ /**
133
+ * <p>The operation conflicts with the resource's availability. For example, you tried to update an event source mapping in the CREATING state, or you tried to delete an event source mapping currently UPDATING.</p>
134
+ * @public
135
+ */
136
+ export declare class ResourceInUseException extends __BaseException {
137
+ readonly name: "ResourceInUseException";
138
+ readonly $fault: "client";
139
+ Type?: string | undefined;
140
+ Message?: string | undefined;
141
+ /**
142
+ * @internal
143
+ */
144
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
145
+ }
146
+ /**
147
+ * <p>The specified code signing configuration does not exist.</p>
148
+ * @public
149
+ */
150
+ export declare class CodeSigningConfigNotFoundException extends __BaseException {
151
+ readonly name: "CodeSigningConfigNotFoundException";
152
+ readonly $fault: "client";
153
+ Type?: string | undefined;
154
+ Message?: string | undefined;
155
+ /**
156
+ * @internal
157
+ */
158
+ constructor(opts: __ExceptionOptionType<CodeSigningConfigNotFoundException, __BaseException>);
159
+ }
160
+ /**
161
+ * <p>Your Amazon Web Services account has exceeded its maximum total code size. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
162
+ * @public
163
+ */
164
+ export declare class CodeStorageExceededException extends __BaseException {
165
+ readonly name: "CodeStorageExceededException";
166
+ readonly $fault: "client";
167
+ /**
168
+ * <p>The exception type.</p>
169
+ * @public
170
+ */
171
+ Type?: string | undefined;
172
+ /**
173
+ * @internal
174
+ */
175
+ constructor(opts: __ExceptionOptionType<CodeStorageExceededException, __BaseException>);
176
+ }
177
+ /**
178
+ * <p>The code signature failed one or more of the validation checks for signature mismatch or expiry, and the code signing policy is set to ENFORCE. Lambda blocks the deployment.</p>
179
+ * @public
180
+ */
181
+ export declare class CodeVerificationFailedException extends __BaseException {
182
+ readonly name: "CodeVerificationFailedException";
183
+ readonly $fault: "client";
184
+ Type?: string | undefined;
185
+ Message?: string | undefined;
186
+ /**
187
+ * @internal
188
+ */
189
+ constructor(opts: __ExceptionOptionType<CodeVerificationFailedException, __BaseException>);
190
+ }
191
+ /**
192
+ * <p>The maximum number of function versions that can be associated with a single capacity provider has been exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
193
+ * @public
194
+ */
195
+ export declare class FunctionVersionsPerCapacityProviderLimitExceededException extends __BaseException {
196
+ readonly name: "FunctionVersionsPerCapacityProviderLimitExceededException";
197
+ readonly $fault: "client";
198
+ /**
199
+ * <p>The exception type.</p>
200
+ * @public
201
+ */
202
+ Type?: string | undefined;
203
+ /**
204
+ * @internal
205
+ */
206
+ constructor(opts: __ExceptionOptionType<FunctionVersionsPerCapacityProviderLimitExceededException, __BaseException>);
207
+ }
208
+ /**
209
+ * <p>The code signature failed the integrity check. If the integrity check fails, then Lambda blocks deployment, even if the code signing policy is set to WARN.</p>
210
+ * @public
211
+ */
212
+ export declare class InvalidCodeSignatureException extends __BaseException {
213
+ readonly name: "InvalidCodeSignatureException";
214
+ readonly $fault: "client";
215
+ Type?: string | undefined;
216
+ Message?: string | undefined;
217
+ /**
218
+ * @internal
219
+ */
220
+ constructor(opts: __ExceptionOptionType<InvalidCodeSignatureException, __BaseException>);
221
+ }
222
+ /**
223
+ * <p>The durable execution with the specified name has already been started. Each durable execution name must be unique within the function. Use a different name or check the status of the existing execution.</p>
224
+ * @public
225
+ */
226
+ export declare class DurableExecutionAlreadyStartedException extends __BaseException {
227
+ readonly name: "DurableExecutionAlreadyStartedException";
228
+ readonly $fault: "client";
229
+ /**
230
+ * <p>The exception type.</p>
231
+ * @public
232
+ */
233
+ Type?: string | undefined;
234
+ Message?: string | undefined;
235
+ /**
236
+ * @internal
237
+ */
238
+ constructor(opts: __ExceptionOptionType<DurableExecutionAlreadyStartedException, __BaseException>);
239
+ }
240
+ /**
241
+ * <p>Need additional permissions to configure VPC settings.</p>
242
+ * @public
243
+ */
244
+ export declare class EC2AccessDeniedException extends __BaseException {
245
+ readonly name: "EC2AccessDeniedException";
246
+ readonly $fault: "server";
247
+ Type?: string | undefined;
248
+ Message?: string | undefined;
249
+ /**
250
+ * @internal
251
+ */
252
+ constructor(opts: __ExceptionOptionType<EC2AccessDeniedException, __BaseException>);
253
+ }
254
+ /**
255
+ * <p>Amazon EC2 throttled Lambda during Lambda function initialization using the execution role provided for the function.</p>
256
+ * @public
257
+ */
258
+ export declare class EC2ThrottledException extends __BaseException {
259
+ readonly name: "EC2ThrottledException";
260
+ readonly $fault: "server";
261
+ Type?: string | undefined;
262
+ Message?: string | undefined;
263
+ /**
264
+ * @internal
265
+ */
266
+ constructor(opts: __ExceptionOptionType<EC2ThrottledException, __BaseException>);
267
+ }
268
+ /**
269
+ * <p>Lambda received an unexpected Amazon EC2 client exception while setting up for the Lambda function.</p>
270
+ * @public
271
+ */
272
+ export declare class EC2UnexpectedException extends __BaseException {
273
+ readonly name: "EC2UnexpectedException";
274
+ readonly $fault: "server";
275
+ Type?: string | undefined;
276
+ Message?: string | undefined;
277
+ EC2ErrorCode?: string | undefined;
278
+ /**
279
+ * @internal
280
+ */
281
+ constructor(opts: __ExceptionOptionType<EC2UnexpectedException, __BaseException>);
282
+ }
283
+ /**
284
+ * <p>An error occurred when reading from or writing to a connected file system.</p>
285
+ * @public
286
+ */
287
+ export declare class EFSIOException extends __BaseException {
288
+ readonly name: "EFSIOException";
289
+ readonly $fault: "client";
290
+ Type?: string | undefined;
291
+ Message?: string | undefined;
292
+ /**
293
+ * @internal
294
+ */
295
+ constructor(opts: __ExceptionOptionType<EFSIOException, __BaseException>);
296
+ }
297
+ /**
298
+ * <p>The Lambda function couldn't make a network connection to the configured file system.</p>
299
+ * @public
300
+ */
301
+ export declare class EFSMountConnectivityException extends __BaseException {
302
+ readonly name: "EFSMountConnectivityException";
303
+ readonly $fault: "client";
304
+ Type?: string | undefined;
305
+ Message?: string | undefined;
306
+ /**
307
+ * @internal
308
+ */
309
+ constructor(opts: __ExceptionOptionType<EFSMountConnectivityException, __BaseException>);
310
+ }
311
+ /**
312
+ * <p>The Lambda function couldn't mount the configured file system due to a permission or configuration issue.</p>
313
+ * @public
314
+ */
315
+ export declare class EFSMountFailureException extends __BaseException {
316
+ readonly name: "EFSMountFailureException";
317
+ readonly $fault: "client";
318
+ Type?: string | undefined;
319
+ Message?: string | undefined;
320
+ /**
321
+ * @internal
322
+ */
323
+ constructor(opts: __ExceptionOptionType<EFSMountFailureException, __BaseException>);
324
+ }
325
+ /**
326
+ * <p>The Lambda function made a network connection to the configured file system, but the mount operation timed out.</p>
327
+ * @public
328
+ */
329
+ export declare class EFSMountTimeoutException extends __BaseException {
330
+ readonly name: "EFSMountTimeoutException";
331
+ readonly $fault: "client";
332
+ Type?: string | undefined;
333
+ Message?: string | undefined;
334
+ /**
335
+ * @internal
336
+ */
337
+ constructor(opts: __ExceptionOptionType<EFSMountTimeoutException, __BaseException>);
338
+ }
339
+ /**
340
+ * <p>Lambda couldn't create an elastic network interface in the VPC, specified as part of Lambda function configuration, because the limit for network interfaces has been reached. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
341
+ * @public
342
+ */
343
+ export declare class ENILimitReachedException extends __BaseException {
344
+ readonly name: "ENILimitReachedException";
345
+ readonly $fault: "server";
346
+ Type?: string | undefined;
347
+ Message?: string | undefined;
348
+ /**
349
+ * @internal
350
+ */
351
+ constructor(opts: __ExceptionOptionType<ENILimitReachedException, __BaseException>);
352
+ }
353
+ /**
354
+ * <p>The request body could not be parsed as JSON, or a request header is invalid. For example, the 'x-amzn-RequestId' header is not a valid UUID string.</p>
355
+ * @public
356
+ */
357
+ export declare class InvalidRequestContentException extends __BaseException {
358
+ readonly name: "InvalidRequestContentException";
359
+ readonly $fault: "client";
360
+ /**
361
+ * <p>The exception type.</p>
362
+ * @public
363
+ */
364
+ Type?: string | undefined;
365
+ /**
366
+ * @internal
367
+ */
368
+ constructor(opts: __ExceptionOptionType<InvalidRequestContentException, __BaseException>);
369
+ }
370
+ /**
371
+ * <p>The runtime or runtime version specified is not supported.</p>
372
+ * @public
373
+ */
374
+ export declare class InvalidRuntimeException extends __BaseException {
375
+ readonly name: "InvalidRuntimeException";
376
+ readonly $fault: "server";
377
+ Type?: string | undefined;
378
+ Message?: string | undefined;
379
+ /**
380
+ * @internal
381
+ */
382
+ constructor(opts: __ExceptionOptionType<InvalidRuntimeException, __BaseException>);
383
+ }
384
+ /**
385
+ * <p>The security group ID provided in the Lambda function VPC configuration is not valid.</p>
386
+ * @public
387
+ */
388
+ export declare class InvalidSecurityGroupIDException extends __BaseException {
389
+ readonly name: "InvalidSecurityGroupIDException";
390
+ readonly $fault: "server";
391
+ Type?: string | undefined;
392
+ Message?: string | undefined;
393
+ /**
394
+ * @internal
395
+ */
396
+ constructor(opts: __ExceptionOptionType<InvalidSecurityGroupIDException, __BaseException>);
397
+ }
398
+ /**
399
+ * <p>The subnet ID provided in the Lambda function VPC configuration is not valid.</p>
400
+ * @public
401
+ */
402
+ export declare class InvalidSubnetIDException extends __BaseException {
403
+ readonly name: "InvalidSubnetIDException";
404
+ readonly $fault: "server";
405
+ Type?: string | undefined;
406
+ Message?: string | undefined;
407
+ /**
408
+ * @internal
409
+ */
410
+ constructor(opts: __ExceptionOptionType<InvalidSubnetIDException, __BaseException>);
411
+ }
412
+ /**
413
+ * <p>Lambda could not unzip the deployment package.</p>
414
+ * @public
415
+ */
416
+ export declare class InvalidZipFileException extends __BaseException {
417
+ readonly name: "InvalidZipFileException";
418
+ readonly $fault: "server";
419
+ Type?: string | undefined;
420
+ Message?: string | undefined;
421
+ /**
422
+ * @internal
423
+ */
424
+ constructor(opts: __ExceptionOptionType<InvalidZipFileException, __BaseException>);
425
+ }
426
+ /**
427
+ * <p>Lambda couldn't decrypt the environment variables because KMS access was denied. Check the Lambda function's KMS permissions.</p>
428
+ * @public
429
+ */
430
+ export declare class KMSAccessDeniedException extends __BaseException {
431
+ readonly name: "KMSAccessDeniedException";
432
+ readonly $fault: "server";
433
+ Type?: string | undefined;
434
+ Message?: string | undefined;
435
+ /**
436
+ * @internal
437
+ */
438
+ constructor(opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>);
439
+ }
440
+ /**
441
+ * <p>Lambda couldn't decrypt the environment variables because the KMS key used is disabled. Check the Lambda function's KMS key settings.</p>
442
+ * @public
443
+ */
444
+ export declare class KMSDisabledException extends __BaseException {
445
+ readonly name: "KMSDisabledException";
446
+ readonly $fault: "server";
447
+ Type?: string | undefined;
448
+ Message?: string | undefined;
449
+ /**
450
+ * @internal
451
+ */
452
+ constructor(opts: __ExceptionOptionType<KMSDisabledException, __BaseException>);
453
+ }
454
+ /**
455
+ * <p>Lambda couldn't decrypt the environment variables because the state of the KMS key used is not valid for Decrypt. Check the function's KMS key settings.</p>
456
+ * @public
457
+ */
458
+ export declare class KMSInvalidStateException extends __BaseException {
459
+ readonly name: "KMSInvalidStateException";
460
+ readonly $fault: "server";
461
+ Type?: string | undefined;
462
+ Message?: string | undefined;
463
+ /**
464
+ * @internal
465
+ */
466
+ constructor(opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>);
467
+ }
468
+ /**
469
+ * <p>Lambda couldn't decrypt the environment variables because the KMS key was not found. Check the function's KMS key settings.</p>
470
+ * @public
471
+ */
472
+ export declare class KMSNotFoundException extends __BaseException {
473
+ readonly name: "KMSNotFoundException";
474
+ readonly $fault: "server";
475
+ Type?: string | undefined;
476
+ Message?: string | undefined;
477
+ /**
478
+ * @internal
479
+ */
480
+ constructor(opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>);
481
+ }
482
+ /**
483
+ * <p>The function has no published versions available.</p>
484
+ * @public
485
+ */
486
+ export declare class NoPublishedVersionException extends __BaseException {
487
+ readonly name: "NoPublishedVersionException";
488
+ readonly $fault: "client";
489
+ /**
490
+ * <p>The exception type.</p>
491
+ * @public
492
+ */
493
+ Type?: string | undefined;
494
+ Message?: string | undefined;
495
+ /**
496
+ * @internal
497
+ */
498
+ constructor(opts: __ExceptionOptionType<NoPublishedVersionException, __BaseException>);
499
+ }
500
+ /**
501
+ * <p>Lambda has detected your function being invoked in a recursive loop with other Amazon Web Services resources and stopped your function's invocation.</p>
502
+ * @public
503
+ */
504
+ export declare class RecursiveInvocationException extends __BaseException {
505
+ readonly name: "RecursiveInvocationException";
506
+ readonly $fault: "client";
507
+ /**
508
+ * <p>The exception type.</p>
509
+ * @public
510
+ */
511
+ Type?: string | undefined;
512
+ /**
513
+ * <p>The exception message.</p>
514
+ * @public
515
+ */
516
+ Message?: string | undefined;
517
+ /**
518
+ * @internal
519
+ */
520
+ constructor(opts: __ExceptionOptionType<RecursiveInvocationException, __BaseException>);
521
+ }
522
+ /**
523
+ * <p>The request payload exceeded the <code>Invoke</code> request body JSON input quota. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
524
+ * @public
525
+ */
526
+ export declare class RequestTooLargeException extends __BaseException {
527
+ readonly name: "RequestTooLargeException";
528
+ readonly $fault: "client";
529
+ Type?: string | undefined;
530
+ /**
531
+ * @internal
532
+ */
533
+ constructor(opts: __ExceptionOptionType<RequestTooLargeException, __BaseException>);
534
+ }
535
+ /**
536
+ * <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>
537
+ * @public
538
+ */
539
+ export declare class ResourceNotReadyException extends __BaseException {
540
+ readonly name: "ResourceNotReadyException";
541
+ readonly $fault: "server";
542
+ /**
543
+ * <p>The exception type.</p>
544
+ * @public
545
+ */
546
+ Type?: string | undefined;
547
+ /**
548
+ * @internal
549
+ */
550
+ constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
551
+ }
552
+ /**
553
+ * <p>The request payload exceeded the maximum allowed size for serialized request entities.</p>
554
+ * @public
555
+ */
556
+ export declare class SerializedRequestEntityTooLargeException extends __BaseException {
557
+ readonly name: "SerializedRequestEntityTooLargeException";
558
+ readonly $fault: "client";
559
+ /**
560
+ * <p>The error type.</p>
561
+ * @public
562
+ */
563
+ Type?: string | undefined;
564
+ /**
565
+ * @internal
566
+ */
567
+ constructor(opts: __ExceptionOptionType<SerializedRequestEntityTooLargeException, __BaseException>);
568
+ }
569
+ /**
570
+ * <p>The <code>afterRestore()</code> <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart-runtime-hooks.html">runtime hook</a> encountered an error. For more information, check the Amazon CloudWatch logs.</p>
571
+ * @public
572
+ */
573
+ export declare class SnapStartException extends __BaseException {
574
+ readonly name: "SnapStartException";
575
+ readonly $fault: "client";
576
+ Type?: string | undefined;
577
+ Message?: string | undefined;
578
+ /**
579
+ * @internal
580
+ */
581
+ constructor(opts: __ExceptionOptionType<SnapStartException, __BaseException>);
582
+ }
583
+ /**
584
+ * <p>Lambda is initializing your function. You can invoke the function when the <a href="https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html">function state</a> becomes <code>Active</code>.</p>
585
+ * @public
586
+ */
587
+ export declare class SnapStartNotReadyException extends __BaseException {
588
+ readonly name: "SnapStartNotReadyException";
589
+ readonly $fault: "client";
590
+ Type?: string | undefined;
591
+ Message?: string | undefined;
592
+ /**
593
+ * @internal
594
+ */
595
+ constructor(opts: __ExceptionOptionType<SnapStartNotReadyException, __BaseException>);
596
+ }
597
+ /**
598
+ * <p>Lambda couldn't restore the snapshot within the timeout limit.</p>
599
+ * @public
600
+ */
601
+ export declare class SnapStartTimeoutException extends __BaseException {
602
+ readonly name: "SnapStartTimeoutException";
603
+ readonly $fault: "client";
604
+ Type?: string | undefined;
605
+ Message?: string | undefined;
606
+ /**
607
+ * @internal
608
+ */
609
+ constructor(opts: __ExceptionOptionType<SnapStartTimeoutException, __BaseException>);
610
+ }
611
+ /**
612
+ * <p>Lambda couldn't set up VPC access for the Lambda function because one or more configured subnets has no available IP addresses.</p>
613
+ * @public
614
+ */
615
+ export declare class SubnetIPAddressLimitReachedException extends __BaseException {
616
+ readonly name: "SubnetIPAddressLimitReachedException";
617
+ readonly $fault: "server";
618
+ Type?: string | undefined;
619
+ Message?: string | undefined;
620
+ /**
621
+ * @internal
622
+ */
623
+ constructor(opts: __ExceptionOptionType<SubnetIPAddressLimitReachedException, __BaseException>);
624
+ }
625
+ /**
626
+ * <p>The content type of the <code>Invoke</code> request body is not JSON.</p>
627
+ * @public
628
+ */
629
+ export declare class UnsupportedMediaTypeException extends __BaseException {
630
+ readonly name: "UnsupportedMediaTypeException";
631
+ readonly $fault: "client";
632
+ Type?: string | undefined;
633
+ /**
634
+ * @internal
635
+ */
636
+ constructor(opts: __ExceptionOptionType<UnsupportedMediaTypeException, __BaseException>);
637
+ }
638
+ /**
639
+ * <p>The specified configuration does not exist.</p>
640
+ * @public
641
+ */
642
+ export declare class ProvisionedConcurrencyConfigNotFoundException extends __BaseException {
643
+ readonly name: "ProvisionedConcurrencyConfigNotFoundException";
644
+ readonly $fault: "client";
645
+ Type?: string | undefined;
646
+ /**
647
+ * @internal
648
+ */
649
+ constructor(opts: __ExceptionOptionType<ProvisionedConcurrencyConfigNotFoundException, __BaseException>);
650
+ }
651
+ /**
652
+ * <p>The callback ID token has either expired or the callback associated with the token has already been closed.</p>
653
+ * @public
654
+ */
655
+ export declare class CallbackTimeoutException extends __BaseException {
656
+ readonly name: "CallbackTimeoutException";
657
+ readonly $fault: "client";
658
+ /**
659
+ * <p>The exception type.</p>
660
+ * @public
661
+ */
662
+ Type?: string | undefined;
663
+ Message?: string | undefined;
664
+ /**
665
+ * @internal
666
+ */
667
+ constructor(opts: __ExceptionOptionType<CallbackTimeoutException, __BaseException>);
668
+ }