@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,425 @@
1
+ export declare const ThrottleReason: {
2
+ readonly CallerRateLimitExceeded: "CallerRateLimitExceeded";
3
+ readonly ConcurrentInvocationLimitExceeded: "ConcurrentInvocationLimitExceeded";
4
+ readonly ConcurrentSnapshotCreateLimitExceeded: "ConcurrentSnapshotCreateLimitExceeded";
5
+ readonly FunctionInvocationRateLimitExceeded: "FunctionInvocationRateLimitExceeded";
6
+ readonly ReservedFunctionConcurrentInvocationLimitExceeded: "ReservedFunctionConcurrentInvocationLimitExceeded";
7
+ readonly ReservedFunctionInvocationRateLimitExceeded: "ReservedFunctionInvocationRateLimitExceeded";
8
+ };
9
+ export type ThrottleReason =
10
+ (typeof ThrottleReason)[keyof typeof ThrottleReason];
11
+ export declare const FunctionUrlAuthType: {
12
+ readonly AWS_IAM: "AWS_IAM";
13
+ readonly NONE: "NONE";
14
+ };
15
+ export type FunctionUrlAuthType =
16
+ (typeof FunctionUrlAuthType)[keyof typeof FunctionUrlAuthType];
17
+ export declare const KafkaSchemaRegistryAuthType: {
18
+ readonly BASIC_AUTH: "BASIC_AUTH";
19
+ readonly CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH";
20
+ readonly SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE";
21
+ };
22
+ export type KafkaSchemaRegistryAuthType =
23
+ (typeof KafkaSchemaRegistryAuthType)[keyof typeof KafkaSchemaRegistryAuthType];
24
+ export declare const SchemaRegistryEventRecordFormat: {
25
+ readonly JSON: "JSON";
26
+ readonly SOURCE: "SOURCE";
27
+ };
28
+ export type SchemaRegistryEventRecordFormat =
29
+ (typeof SchemaRegistryEventRecordFormat)[keyof typeof SchemaRegistryEventRecordFormat];
30
+ export declare const KafkaSchemaValidationAttribute: {
31
+ readonly KEY: "KEY";
32
+ readonly VALUE: "VALUE";
33
+ };
34
+ export type KafkaSchemaValidationAttribute =
35
+ (typeof KafkaSchemaValidationAttribute)[keyof typeof KafkaSchemaValidationAttribute];
36
+ export declare const ApplicationLogLevel: {
37
+ readonly Debug: "DEBUG";
38
+ readonly Error: "ERROR";
39
+ readonly Fatal: "FATAL";
40
+ readonly Info: "INFO";
41
+ readonly Trace: "TRACE";
42
+ readonly Warn: "WARN";
43
+ };
44
+ export type ApplicationLogLevel =
45
+ (typeof ApplicationLogLevel)[keyof typeof ApplicationLogLevel];
46
+ export declare const Architecture: {
47
+ readonly arm64: "arm64";
48
+ readonly x86_64: "x86_64";
49
+ };
50
+ export type Architecture = (typeof Architecture)[keyof typeof Architecture];
51
+ export declare const CapacityProviderScalingMode: {
52
+ readonly Auto: "Auto";
53
+ readonly Manual: "Manual";
54
+ };
55
+ export type CapacityProviderScalingMode =
56
+ (typeof CapacityProviderScalingMode)[keyof typeof CapacityProviderScalingMode];
57
+ export declare const CapacityProviderPredefinedMetricType: {
58
+ readonly LambdaCapacityProviderAverageCPUUtilization: "LambdaCapacityProviderAverageCPUUtilization";
59
+ };
60
+ export type CapacityProviderPredefinedMetricType =
61
+ (typeof CapacityProviderPredefinedMetricType)[keyof typeof CapacityProviderPredefinedMetricType];
62
+ export declare const CapacityProviderState: {
63
+ readonly Active: "Active";
64
+ readonly Deleting: "Deleting";
65
+ readonly Failed: "Failed";
66
+ readonly Pending: "Pending";
67
+ };
68
+ export type CapacityProviderState =
69
+ (typeof CapacityProviderState)[keyof typeof CapacityProviderState];
70
+ export declare const State: {
71
+ readonly Active: "Active";
72
+ readonly ActiveNonInvocable: "ActiveNonInvocable";
73
+ readonly Deactivated: "Deactivated";
74
+ readonly Deactivating: "Deactivating";
75
+ readonly Deleting: "Deleting";
76
+ readonly Failed: "Failed";
77
+ readonly Inactive: "Inactive";
78
+ readonly Pending: "Pending";
79
+ };
80
+ export type State = (typeof State)[keyof typeof State];
81
+ export declare const OperationAction: {
82
+ readonly CANCEL: "CANCEL";
83
+ readonly FAIL: "FAIL";
84
+ readonly RETRY: "RETRY";
85
+ readonly START: "START";
86
+ readonly SUCCEED: "SUCCEED";
87
+ };
88
+ export type OperationAction =
89
+ (typeof OperationAction)[keyof typeof OperationAction];
90
+ export declare const OperationType: {
91
+ readonly CALLBACK: "CALLBACK";
92
+ readonly CHAINED_INVOKE: "CHAINED_INVOKE";
93
+ readonly CONTEXT: "CONTEXT";
94
+ readonly EXECUTION: "EXECUTION";
95
+ readonly STEP: "STEP";
96
+ readonly WAIT: "WAIT";
97
+ };
98
+ export type OperationType = (typeof OperationType)[keyof typeof OperationType];
99
+ export declare const OperationStatus: {
100
+ readonly CANCELLED: "CANCELLED";
101
+ readonly FAILED: "FAILED";
102
+ readonly PENDING: "PENDING";
103
+ readonly READY: "READY";
104
+ readonly STARTED: "STARTED";
105
+ readonly STOPPED: "STOPPED";
106
+ readonly SUCCEEDED: "SUCCEEDED";
107
+ readonly TIMED_OUT: "TIMED_OUT";
108
+ };
109
+ export type OperationStatus =
110
+ (typeof OperationStatus)[keyof typeof OperationStatus];
111
+ export declare const CodeSigningPolicy: {
112
+ readonly Enforce: "Enforce";
113
+ readonly Warn: "Warn";
114
+ };
115
+ export type CodeSigningPolicy =
116
+ (typeof CodeSigningPolicy)[keyof typeof CodeSigningPolicy];
117
+ export declare const FullDocument: {
118
+ readonly Default: "Default";
119
+ readonly UpdateLookup: "UpdateLookup";
120
+ };
121
+ export type FullDocument = (typeof FullDocument)[keyof typeof FullDocument];
122
+ export declare const FunctionResponseType: {
123
+ readonly ReportBatchItemFailures: "ReportBatchItemFailures";
124
+ };
125
+ export type FunctionResponseType =
126
+ (typeof FunctionResponseType)[keyof typeof FunctionResponseType];
127
+ export declare const EventSourceMappingSystemLogLevel: {
128
+ readonly Debug: "DEBUG";
129
+ readonly Info: "INFO";
130
+ readonly Warn: "WARN";
131
+ };
132
+ export type EventSourceMappingSystemLogLevel =
133
+ (typeof EventSourceMappingSystemLogLevel)[keyof typeof EventSourceMappingSystemLogLevel];
134
+ export declare const EventSourceMappingMetric: {
135
+ readonly ErrorCount: "ErrorCount";
136
+ readonly EventCount: "EventCount";
137
+ readonly KafkaMetrics: "KafkaMetrics";
138
+ };
139
+ export type EventSourceMappingMetric =
140
+ (typeof EventSourceMappingMetric)[keyof typeof EventSourceMappingMetric];
141
+ export declare const EndPointType: {
142
+ readonly KAFKA_BOOTSTRAP_SERVERS: "KAFKA_BOOTSTRAP_SERVERS";
143
+ };
144
+ export type EndPointType = (typeof EndPointType)[keyof typeof EndPointType];
145
+ export declare const SourceAccessType: {
146
+ readonly BASIC_AUTH: "BASIC_AUTH";
147
+ readonly CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH";
148
+ readonly SASL_SCRAM_256_AUTH: "SASL_SCRAM_256_AUTH";
149
+ readonly SASL_SCRAM_512_AUTH: "SASL_SCRAM_512_AUTH";
150
+ readonly SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE";
151
+ readonly VIRTUAL_HOST: "VIRTUAL_HOST";
152
+ readonly VPC_SECURITY_GROUP: "VPC_SECURITY_GROUP";
153
+ readonly VPC_SUBNET: "VPC_SUBNET";
154
+ };
155
+ export type SourceAccessType =
156
+ (typeof SourceAccessType)[keyof typeof SourceAccessType];
157
+ export declare const EventSourcePosition: {
158
+ readonly AT_TIMESTAMP: "AT_TIMESTAMP";
159
+ readonly LATEST: "LATEST";
160
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
161
+ };
162
+ export type EventSourcePosition =
163
+ (typeof EventSourcePosition)[keyof typeof EventSourcePosition];
164
+ export declare const LogFormat: {
165
+ readonly Json: "JSON";
166
+ readonly Text: "Text";
167
+ };
168
+ export type LogFormat = (typeof LogFormat)[keyof typeof LogFormat];
169
+ export declare const SystemLogLevel: {
170
+ readonly Debug: "DEBUG";
171
+ readonly Info: "INFO";
172
+ readonly Warn: "WARN";
173
+ };
174
+ export type SystemLogLevel =
175
+ (typeof SystemLogLevel)[keyof typeof SystemLogLevel];
176
+ export declare const PackageType: {
177
+ readonly Image: "Image";
178
+ readonly Zip: "Zip";
179
+ };
180
+ export type PackageType = (typeof PackageType)[keyof typeof PackageType];
181
+ export declare const FunctionVersionLatestPublished: {
182
+ readonly LATEST_PUBLISHED: "LATEST_PUBLISHED";
183
+ };
184
+ export type FunctionVersionLatestPublished =
185
+ (typeof FunctionVersionLatestPublished)[keyof typeof FunctionVersionLatestPublished];
186
+ export declare const Runtime: {
187
+ readonly dotnet10: "dotnet10";
188
+ readonly dotnet6: "dotnet6";
189
+ readonly dotnet8: "dotnet8";
190
+ readonly dotnetcore10: "dotnetcore1.0";
191
+ readonly dotnetcore20: "dotnetcore2.0";
192
+ readonly dotnetcore21: "dotnetcore2.1";
193
+ readonly dotnetcore31: "dotnetcore3.1";
194
+ readonly go1x: "go1.x";
195
+ readonly java11: "java11";
196
+ readonly java17: "java17";
197
+ readonly java21: "java21";
198
+ readonly java25: "java25";
199
+ readonly java8: "java8";
200
+ readonly java8al2: "java8.al2";
201
+ readonly nodejs: "nodejs";
202
+ readonly nodejs10x: "nodejs10.x";
203
+ readonly nodejs12x: "nodejs12.x";
204
+ readonly nodejs14x: "nodejs14.x";
205
+ readonly nodejs16x: "nodejs16.x";
206
+ readonly nodejs18x: "nodejs18.x";
207
+ readonly nodejs20x: "nodejs20.x";
208
+ readonly nodejs22x: "nodejs22.x";
209
+ readonly nodejs24x: "nodejs24.x";
210
+ readonly nodejs43: "nodejs4.3";
211
+ readonly nodejs43edge: "nodejs4.3-edge";
212
+ readonly nodejs610: "nodejs6.10";
213
+ readonly nodejs810: "nodejs8.10";
214
+ readonly provided: "provided";
215
+ readonly providedal2: "provided.al2";
216
+ readonly providedal2023: "provided.al2023";
217
+ readonly python27: "python2.7";
218
+ readonly python310: "python3.10";
219
+ readonly python311: "python3.11";
220
+ readonly python312: "python3.12";
221
+ readonly python313: "python3.13";
222
+ readonly python314: "python3.14";
223
+ readonly python36: "python3.6";
224
+ readonly python37: "python3.7";
225
+ readonly python38: "python3.8";
226
+ readonly python39: "python3.9";
227
+ readonly ruby25: "ruby2.5";
228
+ readonly ruby27: "ruby2.7";
229
+ readonly ruby32: "ruby3.2";
230
+ readonly ruby33: "ruby3.3";
231
+ readonly ruby34: "ruby3.4";
232
+ };
233
+ export type Runtime = (typeof Runtime)[keyof typeof Runtime];
234
+ export declare const SnapStartApplyOn: {
235
+ readonly None: "None";
236
+ readonly PublishedVersions: "PublishedVersions";
237
+ };
238
+ export type SnapStartApplyOn =
239
+ (typeof SnapStartApplyOn)[keyof typeof SnapStartApplyOn];
240
+ export declare const TenantIsolationMode: {
241
+ readonly PER_TENANT: "PER_TENANT";
242
+ };
243
+ export type TenantIsolationMode =
244
+ (typeof TenantIsolationMode)[keyof typeof TenantIsolationMode];
245
+ export declare const TracingMode: {
246
+ readonly Active: "Active";
247
+ readonly PassThrough: "PassThrough";
248
+ };
249
+ export type TracingMode = (typeof TracingMode)[keyof typeof TracingMode];
250
+ export declare const LastUpdateStatus: {
251
+ readonly Failed: "Failed";
252
+ readonly InProgress: "InProgress";
253
+ readonly Successful: "Successful";
254
+ };
255
+ export type LastUpdateStatus =
256
+ (typeof LastUpdateStatus)[keyof typeof LastUpdateStatus];
257
+ export declare const LastUpdateStatusReasonCode: {
258
+ readonly CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded";
259
+ readonly DisabledKMSKey: "DisabledKMSKey";
260
+ readonly DisallowedByVpcEncryptionControl: "DisallowedByVpcEncryptionControl";
261
+ readonly EC2RequestLimitExceeded: "EC2RequestLimitExceeded";
262
+ readonly EFSIOError: "EFSIOError";
263
+ readonly EFSMountConnectivityError: "EFSMountConnectivityError";
264
+ readonly EFSMountFailure: "EFSMountFailure";
265
+ readonly EFSMountTimeout: "EFSMountTimeout";
266
+ readonly EniLimitExceeded: "EniLimitExceeded";
267
+ readonly FunctionError: "FunctionError";
268
+ readonly FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError";
269
+ readonly FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted";
270
+ readonly FunctionErrorInitTimeout: "FunctionError.InitTimeout";
271
+ readonly FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint";
272
+ readonly FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory";
273
+ readonly FunctionErrorPermissionDenied: "FunctionError.PermissionDenied";
274
+ readonly FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError";
275
+ readonly FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions";
276
+ readonly ImageAccessDenied: "ImageAccessDenied";
277
+ readonly ImageDeleted: "ImageDeleted";
278
+ readonly InsufficientCapacity: "InsufficientCapacity";
279
+ readonly InsufficientRolePermissions: "InsufficientRolePermissions";
280
+ readonly InternalError: "InternalError";
281
+ readonly InvalidConfiguration: "InvalidConfiguration";
282
+ readonly InvalidImage: "InvalidImage";
283
+ readonly InvalidRuntime: "InvalidRuntime";
284
+ readonly InvalidSecurityGroup: "InvalidSecurityGroup";
285
+ readonly InvalidStateKMSKey: "InvalidStateKMSKey";
286
+ readonly InvalidSubnet: "InvalidSubnet";
287
+ readonly InvalidZipFileException: "InvalidZipFileException";
288
+ readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
289
+ readonly KMSKeyNotFound: "KMSKeyNotFound";
290
+ readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
291
+ readonly VcpuLimitExceeded: "VcpuLimitExceeded";
292
+ };
293
+ export type LastUpdateStatusReasonCode =
294
+ (typeof LastUpdateStatusReasonCode)[keyof typeof LastUpdateStatusReasonCode];
295
+ export declare const SnapStartOptimizationStatus: {
296
+ readonly Off: "Off";
297
+ readonly On: "On";
298
+ };
299
+ export type SnapStartOptimizationStatus =
300
+ (typeof SnapStartOptimizationStatus)[keyof typeof SnapStartOptimizationStatus];
301
+ export declare const StateReasonCode: {
302
+ readonly CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded";
303
+ readonly Creating: "Creating";
304
+ readonly DisabledKMSKey: "DisabledKMSKey";
305
+ readonly DisallowedByVpcEncryptionControl: "DisallowedByVpcEncryptionControl";
306
+ readonly DrainingDurableExecutions: "DrainingDurableExecutions";
307
+ readonly EC2RequestLimitExceeded: "EC2RequestLimitExceeded";
308
+ readonly EFSIOError: "EFSIOError";
309
+ readonly EFSMountConnectivityError: "EFSMountConnectivityError";
310
+ readonly EFSMountFailure: "EFSMountFailure";
311
+ readonly EFSMountTimeout: "EFSMountTimeout";
312
+ readonly EniLimitExceeded: "EniLimitExceeded";
313
+ readonly FunctionError: "FunctionError";
314
+ readonly FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError";
315
+ readonly FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted";
316
+ readonly FunctionErrorInitTimeout: "FunctionError.InitTimeout";
317
+ readonly FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint";
318
+ readonly FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory";
319
+ readonly FunctionErrorPermissionDenied: "FunctionError.PermissionDenied";
320
+ readonly FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError";
321
+ readonly FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions";
322
+ readonly Idle: "Idle";
323
+ readonly ImageAccessDenied: "ImageAccessDenied";
324
+ readonly ImageDeleted: "ImageDeleted";
325
+ readonly InsufficientCapacity: "InsufficientCapacity";
326
+ readonly InsufficientRolePermissions: "InsufficientRolePermissions";
327
+ readonly InternalError: "InternalError";
328
+ readonly InvalidConfiguration: "InvalidConfiguration";
329
+ readonly InvalidImage: "InvalidImage";
330
+ readonly InvalidRuntime: "InvalidRuntime";
331
+ readonly InvalidSecurityGroup: "InvalidSecurityGroup";
332
+ readonly InvalidStateKMSKey: "InvalidStateKMSKey";
333
+ readonly InvalidSubnet: "InvalidSubnet";
334
+ readonly InvalidZipFileException: "InvalidZipFileException";
335
+ readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
336
+ readonly KMSKeyNotFound: "KMSKeyNotFound";
337
+ readonly Restoring: "Restoring";
338
+ readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
339
+ readonly VcpuLimitExceeded: "VcpuLimitExceeded";
340
+ };
341
+ export type StateReasonCode =
342
+ (typeof StateReasonCode)[keyof typeof StateReasonCode];
343
+ export declare const InvokeMode: {
344
+ readonly BUFFERED: "BUFFERED";
345
+ readonly RESPONSE_STREAM: "RESPONSE_STREAM";
346
+ };
347
+ export type InvokeMode = (typeof InvokeMode)[keyof typeof InvokeMode];
348
+ export declare const RecursiveLoop: {
349
+ readonly Allow: "Allow";
350
+ readonly Terminate: "Terminate";
351
+ };
352
+ export type RecursiveLoop = (typeof RecursiveLoop)[keyof typeof RecursiveLoop];
353
+ export declare const UpdateRuntimeOn: {
354
+ readonly Auto: "Auto";
355
+ readonly FunctionUpdate: "FunctionUpdate";
356
+ readonly Manual: "Manual";
357
+ };
358
+ export type UpdateRuntimeOn =
359
+ (typeof UpdateRuntimeOn)[keyof typeof UpdateRuntimeOn];
360
+ export declare const InvocationType: {
361
+ readonly DryRun: "DryRun";
362
+ readonly Event: "Event";
363
+ readonly RequestResponse: "RequestResponse";
364
+ };
365
+ export type InvocationType =
366
+ (typeof InvocationType)[keyof typeof InvocationType];
367
+ export declare const LogType: {
368
+ readonly None: "None";
369
+ readonly Tail: "Tail";
370
+ };
371
+ export type LogType = (typeof LogType)[keyof typeof LogType];
372
+ export declare const ResponseStreamingInvocationType: {
373
+ readonly DryRun: "DryRun";
374
+ readonly RequestResponse: "RequestResponse";
375
+ };
376
+ export type ResponseStreamingInvocationType =
377
+ (typeof ResponseStreamingInvocationType)[keyof typeof ResponseStreamingInvocationType];
378
+ export declare const FunctionVersion: {
379
+ readonly ALL: "ALL";
380
+ };
381
+ export type FunctionVersion =
382
+ (typeof FunctionVersion)[keyof typeof FunctionVersion];
383
+ export declare const ProvisionedConcurrencyStatusEnum: {
384
+ readonly FAILED: "FAILED";
385
+ readonly IN_PROGRESS: "IN_PROGRESS";
386
+ readonly READY: "READY";
387
+ };
388
+ export type ProvisionedConcurrencyStatusEnum =
389
+ (typeof ProvisionedConcurrencyStatusEnum)[keyof typeof ProvisionedConcurrencyStatusEnum];
390
+ export declare const ExecutionStatus: {
391
+ readonly FAILED: "FAILED";
392
+ readonly RUNNING: "RUNNING";
393
+ readonly STOPPED: "STOPPED";
394
+ readonly SUCCEEDED: "SUCCEEDED";
395
+ readonly TIMED_OUT: "TIMED_OUT";
396
+ };
397
+ export type ExecutionStatus =
398
+ (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
399
+ export declare const EventType: {
400
+ readonly CallbackFailed: "CallbackFailed";
401
+ readonly CallbackStarted: "CallbackStarted";
402
+ readonly CallbackSucceeded: "CallbackSucceeded";
403
+ readonly CallbackTimedOut: "CallbackTimedOut";
404
+ readonly ChainedInvokeFailed: "ChainedInvokeFailed";
405
+ readonly ChainedInvokeStarted: "ChainedInvokeStarted";
406
+ readonly ChainedInvokeStopped: "ChainedInvokeStopped";
407
+ readonly ChainedInvokeSucceeded: "ChainedInvokeSucceeded";
408
+ readonly ChainedInvokeTimedOut: "ChainedInvokeTimedOut";
409
+ readonly ContextFailed: "ContextFailed";
410
+ readonly ContextStarted: "ContextStarted";
411
+ readonly ContextSucceeded: "ContextSucceeded";
412
+ readonly ExecutionFailed: "ExecutionFailed";
413
+ readonly ExecutionStarted: "ExecutionStarted";
414
+ readonly ExecutionStopped: "ExecutionStopped";
415
+ readonly ExecutionSucceeded: "ExecutionSucceeded";
416
+ readonly ExecutionTimedOut: "ExecutionTimedOut";
417
+ readonly InvocationCompleted: "InvocationCompleted";
418
+ readonly StepFailed: "StepFailed";
419
+ readonly StepStarted: "StepStarted";
420
+ readonly StepSucceeded: "StepSucceeded";
421
+ readonly WaitCancelled: "WaitCancelled";
422
+ readonly WaitStarted: "WaitStarted";
423
+ readonly WaitSucceeded: "WaitSucceeded";
424
+ };
425
+ export type EventType = (typeof EventType)[keyof typeof EventType];