@aws-sdk/client-lambda 3.32.0 → 3.36.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 (910) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist-cjs/Lambda.js +886 -0
  3. package/dist-cjs/LambdaClient.js +49 -0
  4. package/dist-cjs/commands/AddLayerVersionPermissionCommand.js +65 -0
  5. package/dist-cjs/commands/AddPermissionCommand.js +72 -0
  6. package/dist-cjs/commands/CreateAliasCommand.js +65 -0
  7. package/dist-cjs/commands/CreateCodeSigningConfigCommand.js +62 -0
  8. package/dist-cjs/commands/CreateEventSourceMappingCommand.js +124 -0
  9. package/dist-cjs/commands/CreateFunctionCommand.js +106 -0
  10. package/dist-cjs/commands/DeleteAliasCommand.js +60 -0
  11. package/dist-cjs/commands/DeleteCodeSigningConfigCommand.js +61 -0
  12. package/dist-cjs/commands/DeleteEventSourceMappingCommand.js +63 -0
  13. package/dist-cjs/commands/DeleteFunctionCodeSigningConfigCommand.js +60 -0
  14. package/dist-cjs/commands/DeleteFunctionCommand.js +65 -0
  15. package/dist-cjs/commands/DeleteFunctionConcurrencyCommand.js +60 -0
  16. package/dist-cjs/commands/DeleteFunctionEventInvokeConfigCommand.js +61 -0
  17. package/dist-cjs/commands/DeleteLayerVersionCommand.js +62 -0
  18. package/dist-cjs/commands/DeleteProvisionedConcurrencyConfigCommand.js +60 -0
  19. package/dist-cjs/commands/GetAccountSettingsCommand.js +60 -0
  20. package/dist-cjs/commands/GetAliasCommand.js +60 -0
  21. package/dist-cjs/commands/GetCodeSigningConfigCommand.js +60 -0
  22. package/dist-cjs/commands/GetEventSourceMappingCommand.js +61 -0
  23. package/dist-cjs/commands/GetFunctionCodeSigningConfigCommand.js +60 -0
  24. package/dist-cjs/commands/GetFunctionCommand.js +62 -0
  25. package/dist-cjs/commands/GetFunctionConcurrencyCommand.js +61 -0
  26. package/dist-cjs/commands/GetFunctionConfigurationCommand.js +62 -0
  27. package/dist-cjs/commands/GetFunctionEventInvokeConfigCommand.js +61 -0
  28. package/dist-cjs/commands/GetLayerVersionByArnCommand.js +62 -0
  29. package/dist-cjs/commands/GetLayerVersionCommand.js +62 -0
  30. package/dist-cjs/commands/GetLayerVersionPolicyCommand.js +61 -0
  31. package/dist-cjs/commands/GetPolicyCommand.js +60 -0
  32. package/dist-cjs/commands/GetProvisionedConcurrencyConfigCommand.js +60 -0
  33. package/dist-cjs/commands/InvokeAsyncCommand.js +65 -0
  34. package/dist-cjs/commands/InvokeCommand.js +86 -0
  35. package/dist-cjs/commands/ListAliasesCommand.js +61 -0
  36. package/dist-cjs/commands/ListCodeSigningConfigsCommand.js +62 -0
  37. package/dist-cjs/commands/ListEventSourceMappingsCommand.js +61 -0
  38. package/dist-cjs/commands/ListFunctionEventInvokeConfigsCommand.js +61 -0
  39. package/dist-cjs/commands/ListFunctionsByCodeSigningConfigCommand.js +61 -0
  40. package/dist-cjs/commands/ListFunctionsCommand.js +68 -0
  41. package/dist-cjs/commands/ListLayerVersionsCommand.js +63 -0
  42. package/dist-cjs/commands/ListLayersCommand.js +65 -0
  43. package/dist-cjs/commands/ListProvisionedConcurrencyConfigsCommand.js +60 -0
  44. package/dist-cjs/commands/ListTagsCommand.js +61 -0
  45. package/dist-cjs/commands/ListVersionsByFunctionCommand.js +61 -0
  46. package/dist-cjs/commands/PublishLayerVersionCommand.js +63 -0
  47. package/dist-cjs/commands/PublishVersionCommand.js +68 -0
  48. package/dist-cjs/commands/PutFunctionCodeSigningConfigCommand.js +61 -0
  49. package/dist-cjs/commands/PutFunctionConcurrencyCommand.js +68 -0
  50. package/dist-cjs/commands/PutFunctionEventInvokeConfigCommand.js +70 -0
  51. package/dist-cjs/commands/PutProvisionedConcurrencyConfigCommand.js +60 -0
  52. package/dist-cjs/commands/RemoveLayerVersionPermissionCommand.js +62 -0
  53. package/dist-cjs/commands/RemovePermissionCommand.js +61 -0
  54. package/dist-cjs/commands/TagResourceCommand.js +60 -0
  55. package/dist-cjs/commands/UntagResourceCommand.js +60 -0
  56. package/dist-cjs/commands/UpdateAliasCommand.js +60 -0
  57. package/dist-cjs/commands/UpdateCodeSigningConfigCommand.js +61 -0
  58. package/dist-cjs/commands/UpdateEventSourceMappingCommand.js +85 -0
  59. package/dist-cjs/commands/UpdateFunctionCodeCommand.js +68 -0
  60. package/dist-cjs/commands/UpdateFunctionConfigurationCommand.js +74 -0
  61. package/dist-cjs/commands/UpdateFunctionEventInvokeConfigCommand.js +61 -0
  62. package/dist-cjs/endpoints.js +85 -0
  63. package/dist-cjs/index.js +78 -0
  64. package/dist-cjs/models/index.js +4 -0
  65. package/dist-cjs/models/models_0.js +1593 -0
  66. package/dist-cjs/pagination/Interfaces.js +2 -0
  67. package/dist-cjs/pagination/ListAliasesPaginator.js +45 -0
  68. package/dist-cjs/pagination/ListCodeSigningConfigsPaginator.js +45 -0
  69. package/dist-cjs/pagination/ListEventSourceMappingsPaginator.js +45 -0
  70. package/dist-cjs/pagination/ListFunctionEventInvokeConfigsPaginator.js +45 -0
  71. package/dist-cjs/pagination/ListFunctionsByCodeSigningConfigPaginator.js +45 -0
  72. package/dist-cjs/pagination/ListFunctionsPaginator.js +45 -0
  73. package/dist-cjs/pagination/ListLayerVersionsPaginator.js +45 -0
  74. package/dist-cjs/pagination/ListLayersPaginator.js +45 -0
  75. package/dist-cjs/pagination/ListProvisionedConcurrencyConfigsPaginator.js +45 -0
  76. package/dist-cjs/pagination/ListVersionsByFunctionPaginator.js +45 -0
  77. package/dist-cjs/protocols/Aws_restJson1.js +9491 -0
  78. package/dist-cjs/runtimeConfig.browser.js +41 -0
  79. package/dist-cjs/runtimeConfig.js +46 -0
  80. package/dist-cjs/runtimeConfig.native.js +19 -0
  81. package/dist-cjs/runtimeConfig.shared.js +20 -0
  82. package/dist-cjs/waiters/waitForFunctionActive.js +63 -0
  83. package/dist-cjs/waiters/waitForFunctionExists.js +40 -0
  84. package/dist-cjs/waiters/waitForFunctionUpdated.js +63 -0
  85. package/dist-es/Lambda.js +880 -0
  86. package/dist-es/LambdaClient.js +37 -0
  87. package/dist-es/commands/AddLayerVersionPermissionCommand.js +39 -0
  88. package/dist-es/commands/AddPermissionCommand.js +39 -0
  89. package/dist-es/commands/CreateAliasCommand.js +39 -0
  90. package/dist-es/commands/CreateCodeSigningConfigCommand.js +39 -0
  91. package/dist-es/commands/CreateEventSourceMappingCommand.js +39 -0
  92. package/dist-es/commands/CreateFunctionCommand.js +39 -0
  93. package/dist-es/commands/DeleteAliasCommand.js +39 -0
  94. package/dist-es/commands/DeleteCodeSigningConfigCommand.js +39 -0
  95. package/dist-es/commands/DeleteEventSourceMappingCommand.js +39 -0
  96. package/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +39 -0
  97. package/dist-es/commands/DeleteFunctionCommand.js +39 -0
  98. package/dist-es/commands/DeleteFunctionConcurrencyCommand.js +39 -0
  99. package/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +39 -0
  100. package/dist-es/commands/DeleteLayerVersionCommand.js +39 -0
  101. package/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +39 -0
  102. package/dist-es/commands/GetAccountSettingsCommand.js +39 -0
  103. package/dist-es/commands/GetAliasCommand.js +39 -0
  104. package/dist-es/commands/GetCodeSigningConfigCommand.js +39 -0
  105. package/dist-es/commands/GetEventSourceMappingCommand.js +39 -0
  106. package/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +39 -0
  107. package/dist-es/commands/GetFunctionCommand.js +39 -0
  108. package/dist-es/commands/GetFunctionConcurrencyCommand.js +39 -0
  109. package/dist-es/commands/GetFunctionConfigurationCommand.js +39 -0
  110. package/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +39 -0
  111. package/dist-es/commands/GetLayerVersionByArnCommand.js +39 -0
  112. package/dist-es/commands/GetLayerVersionCommand.js +39 -0
  113. package/dist-es/commands/GetLayerVersionPolicyCommand.js +39 -0
  114. package/dist-es/commands/GetPolicyCommand.js +39 -0
  115. package/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +39 -0
  116. package/dist-es/commands/InvokeAsyncCommand.js +39 -0
  117. package/dist-es/commands/InvokeCommand.js +39 -0
  118. package/dist-es/commands/ListAliasesCommand.js +39 -0
  119. package/dist-es/commands/ListCodeSigningConfigsCommand.js +39 -0
  120. package/dist-es/commands/ListEventSourceMappingsCommand.js +39 -0
  121. package/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +39 -0
  122. package/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +39 -0
  123. package/dist-es/commands/ListFunctionsCommand.js +39 -0
  124. package/dist-es/commands/ListLayerVersionsCommand.js +39 -0
  125. package/dist-es/commands/ListLayersCommand.js +39 -0
  126. package/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +39 -0
  127. package/dist-es/commands/ListTagsCommand.js +39 -0
  128. package/dist-es/commands/ListVersionsByFunctionCommand.js +39 -0
  129. package/dist-es/commands/PublishLayerVersionCommand.js +39 -0
  130. package/dist-es/commands/PublishVersionCommand.js +39 -0
  131. package/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +39 -0
  132. package/dist-es/commands/PutFunctionConcurrencyCommand.js +39 -0
  133. package/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +39 -0
  134. package/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +39 -0
  135. package/dist-es/commands/RemoveLayerVersionPermissionCommand.js +39 -0
  136. package/dist-es/commands/RemovePermissionCommand.js +39 -0
  137. package/dist-es/commands/TagResourceCommand.js +39 -0
  138. package/dist-es/commands/UntagResourceCommand.js +39 -0
  139. package/dist-es/commands/UpdateAliasCommand.js +39 -0
  140. package/dist-es/commands/UpdateCodeSigningConfigCommand.js +39 -0
  141. package/dist-es/commands/UpdateEventSourceMappingCommand.js +39 -0
  142. package/dist-es/commands/UpdateFunctionCodeCommand.js +39 -0
  143. package/dist-es/commands/UpdateFunctionConfigurationCommand.js +39 -0
  144. package/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +39 -0
  145. package/dist-es/endpoints.js +81 -0
  146. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  147. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  148. package/dist-es/models/models_0.js +778 -0
  149. package/dist-es/pagination/Interfaces.js +1 -0
  150. package/dist-es/pagination/ListAliasesPaginator.js +74 -0
  151. package/dist-es/pagination/ListCodeSigningConfigsPaginator.js +74 -0
  152. package/dist-es/pagination/ListEventSourceMappingsPaginator.js +74 -0
  153. package/dist-es/pagination/ListFunctionEventInvokeConfigsPaginator.js +74 -0
  154. package/dist-es/pagination/ListFunctionsByCodeSigningConfigPaginator.js +74 -0
  155. package/dist-es/pagination/ListFunctionsPaginator.js +74 -0
  156. package/dist-es/pagination/ListLayerVersionsPaginator.js +74 -0
  157. package/dist-es/pagination/ListLayersPaginator.js +74 -0
  158. package/dist-es/pagination/ListProvisionedConcurrencyConfigsPaginator.js +74 -0
  159. package/dist-es/pagination/ListVersionsByFunctionPaginator.js +74 -0
  160. package/dist-es/protocols/Aws_restJson1.js +10392 -0
  161. package/dist-es/runtimeConfig.browser.js +16 -0
  162. package/dist-es/runtimeConfig.js +21 -0
  163. package/dist-es/runtimeConfig.native.js +8 -0
  164. package/dist-es/runtimeConfig.shared.js +13 -0
  165. package/dist-es/waiters/waitForFunctionActive.js +69 -0
  166. package/dist-es/waiters/waitForFunctionExists.js +45 -0
  167. package/dist-es/waiters/waitForFunctionUpdated.js +69 -0
  168. package/dist-types/Lambda.d.ts +714 -0
  169. package/dist-types/LambdaClient.d.ts +196 -0
  170. package/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +40 -0
  171. package/dist-types/commands/AddPermissionCommand.d.ts +47 -0
  172. package/dist-types/commands/CreateAliasCommand.d.ts +40 -0
  173. package/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +37 -0
  174. package/dist-types/commands/CreateEventSourceMappingCommand.d.ts +99 -0
  175. package/dist-types/commands/CreateFunctionCommand.d.ts +81 -0
  176. package/dist-types/commands/DeleteAliasCommand.d.ts +35 -0
  177. package/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +36 -0
  178. package/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +38 -0
  179. package/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +35 -0
  180. package/dist-types/commands/DeleteFunctionCommand.d.ts +40 -0
  181. package/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +35 -0
  182. package/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +36 -0
  183. package/dist-types/commands/DeleteLayerVersionCommand.d.ts +37 -0
  184. package/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +35 -0
  185. package/dist-types/commands/GetAccountSettingsCommand.d.ts +35 -0
  186. package/dist-types/commands/GetAliasCommand.d.ts +35 -0
  187. package/dist-types/commands/GetCodeSigningConfigCommand.d.ts +35 -0
  188. package/dist-types/commands/GetEventSourceMappingCommand.d.ts +36 -0
  189. package/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +35 -0
  190. package/dist-types/commands/GetFunctionCommand.d.ts +37 -0
  191. package/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +36 -0
  192. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +37 -0
  193. package/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +36 -0
  194. package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +37 -0
  195. package/dist-types/commands/GetLayerVersionCommand.d.ts +37 -0
  196. package/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +36 -0
  197. package/dist-types/commands/GetPolicyCommand.d.ts +35 -0
  198. package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +35 -0
  199. package/dist-types/commands/InvokeAsyncCommand.d.ts +51 -0
  200. package/dist-types/commands/InvokeCommand.d.ts +61 -0
  201. package/dist-types/commands/ListAliasesCommand.d.ts +36 -0
  202. package/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +37 -0
  203. package/dist-types/commands/ListEventSourceMappingsCommand.d.ts +36 -0
  204. package/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +36 -0
  205. package/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +36 -0
  206. package/dist-types/commands/ListFunctionsCommand.d.ts +43 -0
  207. package/dist-types/commands/ListLayerVersionsCommand.d.ts +38 -0
  208. package/dist-types/commands/ListLayersCommand.d.ts +40 -0
  209. package/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +35 -0
  210. package/dist-types/commands/ListTagsCommand.d.ts +36 -0
  211. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +36 -0
  212. package/dist-types/commands/PublishLayerVersionCommand.d.ts +38 -0
  213. package/dist-types/commands/PublishVersionCommand.d.ts +43 -0
  214. package/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +36 -0
  215. package/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +43 -0
  216. package/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +45 -0
  217. package/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +35 -0
  218. package/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +37 -0
  219. package/dist-types/commands/RemovePermissionCommand.d.ts +36 -0
  220. package/dist-types/commands/TagResourceCommand.d.ts +35 -0
  221. package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
  222. package/dist-types/commands/UpdateAliasCommand.d.ts +35 -0
  223. package/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +36 -0
  224. package/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +60 -0
  225. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +43 -0
  226. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +49 -0
  227. package/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +36 -0
  228. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  229. package/{index.ts → dist-types/index.d.ts} +0 -0
  230. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  231. package/dist-types/models/models_0.d.ts +4706 -0
  232. package/dist-types/pagination/Interfaces.d.ts +6 -0
  233. package/dist-types/pagination/ListAliasesPaginator.d.ts +4 -0
  234. package/dist-types/pagination/ListCodeSigningConfigsPaginator.d.ts +4 -0
  235. package/dist-types/pagination/ListEventSourceMappingsPaginator.d.ts +4 -0
  236. package/dist-types/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +4 -0
  237. package/dist-types/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +4 -0
  238. package/dist-types/pagination/ListFunctionsPaginator.d.ts +4 -0
  239. package/dist-types/pagination/ListLayerVersionsPaginator.d.ts +4 -0
  240. package/dist-types/pagination/ListLayersPaginator.d.ts +4 -0
  241. package/dist-types/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +4 -0
  242. package/dist-types/pagination/ListVersionsByFunctionPaginator.d.ts +4 -0
  243. package/dist-types/protocols/Aws_restJson1.d.ts +176 -0
  244. package/dist-types/runtimeConfig.browser.d.ts +37 -0
  245. package/dist-types/runtimeConfig.d.ts +37 -0
  246. package/dist-types/runtimeConfig.native.d.ts +36 -0
  247. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  248. package/dist-types/ts3.4/Lambda.d.ts +714 -0
  249. package/dist-types/ts3.4/LambdaClient.d.ts +196 -0
  250. package/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +40 -0
  251. package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +47 -0
  252. package/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +40 -0
  253. package/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +37 -0
  254. package/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +99 -0
  255. package/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +81 -0
  256. package/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +35 -0
  257. package/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +36 -0
  258. package/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +38 -0
  259. package/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +35 -0
  260. package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +40 -0
  261. package/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +35 -0
  262. package/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +36 -0
  263. package/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +37 -0
  264. package/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +35 -0
  265. package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +35 -0
  266. package/dist-types/ts3.4/commands/GetAliasCommand.d.ts +35 -0
  267. package/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +35 -0
  268. package/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +36 -0
  269. package/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +35 -0
  270. package/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +37 -0
  271. package/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +36 -0
  272. package/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +37 -0
  273. package/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +36 -0
  274. package/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +37 -0
  275. package/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +37 -0
  276. package/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +36 -0
  277. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +35 -0
  278. package/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +35 -0
  279. package/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +51 -0
  280. package/dist-types/ts3.4/commands/InvokeCommand.d.ts +61 -0
  281. package/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +36 -0
  282. package/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +37 -0
  283. package/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +36 -0
  284. package/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +36 -0
  285. package/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +36 -0
  286. package/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +43 -0
  287. package/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +38 -0
  288. package/dist-types/ts3.4/commands/ListLayersCommand.d.ts +40 -0
  289. package/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +35 -0
  290. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +36 -0
  291. package/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +36 -0
  292. package/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +38 -0
  293. package/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +43 -0
  294. package/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +36 -0
  295. package/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +43 -0
  296. package/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +45 -0
  297. package/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +35 -0
  298. package/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +37 -0
  299. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +36 -0
  300. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  301. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  302. package/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +35 -0
  303. package/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +36 -0
  304. package/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +60 -0
  305. package/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +43 -0
  306. package/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +49 -0
  307. package/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +36 -0
  308. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  309. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  310. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  311. package/dist-types/ts3.4/models/models_0.d.ts +4706 -0
  312. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  313. package/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +4 -0
  314. package/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +4 -0
  315. package/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +4 -0
  316. package/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +4 -0
  317. package/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +4 -0
  318. package/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +4 -0
  319. package/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +4 -0
  320. package/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +4 -0
  321. package/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +4 -0
  322. package/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +4 -0
  323. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +176 -0
  324. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
  325. package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
  326. package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
  327. package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
  328. package/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +14 -0
  329. package/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +14 -0
  330. package/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +14 -0
  331. package/dist-types/waiters/waitForFunctionActive.d.ts +14 -0
  332. package/dist-types/waiters/waitForFunctionExists.d.ts +14 -0
  333. package/dist-types/waiters/waitForFunctionUpdated.d.ts +14 -0
  334. package/package.json +53 -50
  335. package/Lambda.ts +0 -2323
  336. package/LambdaClient.ts +0 -517
  337. package/commands/AddLayerVersionPermissionCommand.ts +0 -102
  338. package/commands/AddPermissionCommand.ts +0 -105
  339. package/commands/CreateAliasCommand.ts +0 -99
  340. package/commands/CreateCodeSigningConfigCommand.ts +0 -96
  341. package/commands/CreateEventSourceMappingCommand.ts +0 -158
  342. package/commands/CreateFunctionCommand.ts +0 -138
  343. package/commands/DeleteAliasCommand.ts +0 -94
  344. package/commands/DeleteCodeSigningConfigCommand.ts +0 -95
  345. package/commands/DeleteEventSourceMappingCommand.ts +0 -96
  346. package/commands/DeleteFunctionCodeSigningConfigCommand.ts +0 -100
  347. package/commands/DeleteFunctionCommand.ts +0 -99
  348. package/commands/DeleteFunctionConcurrencyCommand.ts +0 -97
  349. package/commands/DeleteFunctionEventInvokeConfigCommand.ts +0 -101
  350. package/commands/DeleteLayerVersionCommand.ts +0 -96
  351. package/commands/DeleteProvisionedConcurrencyConfigCommand.ts +0 -100
  352. package/commands/GetAccountSettingsCommand.ts +0 -94
  353. package/commands/GetAliasCommand.ts +0 -90
  354. package/commands/GetCodeSigningConfigCommand.ts +0 -94
  355. package/commands/GetEventSourceMappingCommand.ts +0 -94
  356. package/commands/GetFunctionCodeSigningConfigCommand.ts +0 -99
  357. package/commands/GetFunctionCommand.ts +0 -96
  358. package/commands/GetFunctionConcurrencyCommand.ts +0 -95
  359. package/commands/GetFunctionConfigurationCommand.ts +0 -96
  360. package/commands/GetFunctionEventInvokeConfigCommand.ts +0 -98
  361. package/commands/GetLayerVersionByArnCommand.ts +0 -96
  362. package/commands/GetLayerVersionCommand.ts +0 -96
  363. package/commands/GetLayerVersionPolicyCommand.ts +0 -95
  364. package/commands/GetPolicyCommand.ts +0 -94
  365. package/commands/GetProvisionedConcurrencyConfigCommand.ts +0 -102
  366. package/commands/InvokeAsyncCommand.ts +0 -108
  367. package/commands/InvokeCommand.ts +0 -113
  368. package/commands/ListAliasesCommand.ts +0 -95
  369. package/commands/ListCodeSigningConfigsCommand.ts +0 -96
  370. package/commands/ListEventSourceMappingsCommand.ts +0 -95
  371. package/commands/ListFunctionEventInvokeConfigsCommand.ts +0 -103
  372. package/commands/ListFunctionsByCodeSigningConfigCommand.ts +0 -103
  373. package/commands/ListFunctionsCommand.ts +0 -102
  374. package/commands/ListLayerVersionsCommand.ts +0 -96
  375. package/commands/ListLayersCommand.ts +0 -96
  376. package/commands/ListProvisionedConcurrencyConfigsCommand.ts +0 -105
  377. package/commands/ListTagsCommand.ts +0 -91
  378. package/commands/ListVersionsByFunctionCommand.ts +0 -95
  379. package/commands/PublishLayerVersionCommand.ts +0 -97
  380. package/commands/PublishVersionCommand.ts +0 -102
  381. package/commands/PutFunctionCodeSigningConfigCommand.ts +0 -100
  382. package/commands/PutFunctionConcurrencyCommand.ts +0 -102
  383. package/commands/PutFunctionEventInvokeConfigCommand.ts +0 -107
  384. package/commands/PutProvisionedConcurrencyConfigCommand.ts +0 -102
  385. package/commands/RemoveLayerVersionPermissionCommand.ts +0 -99
  386. package/commands/RemovePermissionCommand.ts +0 -95
  387. package/commands/TagResourceCommand.ts +0 -94
  388. package/commands/UntagResourceCommand.ts +0 -94
  389. package/commands/UpdateAliasCommand.ts +0 -94
  390. package/commands/UpdateCodeSigningConfigCommand.ts +0 -95
  391. package/commands/UpdateEventSourceMappingCommand.ts +0 -117
  392. package/commands/UpdateFunctionCodeCommand.ts +0 -102
  393. package/commands/UpdateFunctionConfigurationCommand.ts +0 -111
  394. package/commands/UpdateFunctionEventInvokeConfigCommand.ts +0 -101
  395. package/dist/cjs/Lambda.js +0 -887
  396. package/dist/cjs/Lambda.js.map +0 -1
  397. package/dist/cjs/LambdaClient.js +0 -50
  398. package/dist/cjs/LambdaClient.js.map +0 -1
  399. package/dist/cjs/commands/AddLayerVersionPermissionCommand.js +0 -66
  400. package/dist/cjs/commands/AddLayerVersionPermissionCommand.js.map +0 -1
  401. package/dist/cjs/commands/AddPermissionCommand.js +0 -72
  402. package/dist/cjs/commands/AddPermissionCommand.js.map +0 -1
  403. package/dist/cjs/commands/CreateAliasCommand.js +0 -66
  404. package/dist/cjs/commands/CreateAliasCommand.js.map +0 -1
  405. package/dist/cjs/commands/CreateCodeSigningConfigCommand.js +0 -63
  406. package/dist/cjs/commands/CreateCodeSigningConfigCommand.js.map +0 -1
  407. package/dist/cjs/commands/CreateEventSourceMappingCommand.js +0 -125
  408. package/dist/cjs/commands/CreateEventSourceMappingCommand.js.map +0 -1
  409. package/dist/cjs/commands/CreateFunctionCommand.js +0 -105
  410. package/dist/cjs/commands/CreateFunctionCommand.js.map +0 -1
  411. package/dist/cjs/commands/DeleteAliasCommand.js +0 -61
  412. package/dist/cjs/commands/DeleteAliasCommand.js.map +0 -1
  413. package/dist/cjs/commands/DeleteCodeSigningConfigCommand.js +0 -62
  414. package/dist/cjs/commands/DeleteCodeSigningConfigCommand.js.map +0 -1
  415. package/dist/cjs/commands/DeleteEventSourceMappingCommand.js +0 -63
  416. package/dist/cjs/commands/DeleteEventSourceMappingCommand.js.map +0 -1
  417. package/dist/cjs/commands/DeleteFunctionCodeSigningConfigCommand.js +0 -61
  418. package/dist/cjs/commands/DeleteFunctionCodeSigningConfigCommand.js.map +0 -1
  419. package/dist/cjs/commands/DeleteFunctionCommand.js +0 -66
  420. package/dist/cjs/commands/DeleteFunctionCommand.js.map +0 -1
  421. package/dist/cjs/commands/DeleteFunctionConcurrencyCommand.js +0 -61
  422. package/dist/cjs/commands/DeleteFunctionConcurrencyCommand.js.map +0 -1
  423. package/dist/cjs/commands/DeleteFunctionEventInvokeConfigCommand.js +0 -62
  424. package/dist/cjs/commands/DeleteFunctionEventInvokeConfigCommand.js.map +0 -1
  425. package/dist/cjs/commands/DeleteLayerVersionCommand.js +0 -63
  426. package/dist/cjs/commands/DeleteLayerVersionCommand.js.map +0 -1
  427. package/dist/cjs/commands/DeleteProvisionedConcurrencyConfigCommand.js +0 -61
  428. package/dist/cjs/commands/DeleteProvisionedConcurrencyConfigCommand.js.map +0 -1
  429. package/dist/cjs/commands/GetAccountSettingsCommand.js +0 -61
  430. package/dist/cjs/commands/GetAccountSettingsCommand.js.map +0 -1
  431. package/dist/cjs/commands/GetAliasCommand.js +0 -61
  432. package/dist/cjs/commands/GetAliasCommand.js.map +0 -1
  433. package/dist/cjs/commands/GetCodeSigningConfigCommand.js +0 -61
  434. package/dist/cjs/commands/GetCodeSigningConfigCommand.js.map +0 -1
  435. package/dist/cjs/commands/GetEventSourceMappingCommand.js +0 -61
  436. package/dist/cjs/commands/GetEventSourceMappingCommand.js.map +0 -1
  437. package/dist/cjs/commands/GetFunctionCodeSigningConfigCommand.js +0 -61
  438. package/dist/cjs/commands/GetFunctionCodeSigningConfigCommand.js.map +0 -1
  439. package/dist/cjs/commands/GetFunctionCommand.js +0 -63
  440. package/dist/cjs/commands/GetFunctionCommand.js.map +0 -1
  441. package/dist/cjs/commands/GetFunctionConcurrencyCommand.js +0 -62
  442. package/dist/cjs/commands/GetFunctionConcurrencyCommand.js.map +0 -1
  443. package/dist/cjs/commands/GetFunctionConfigurationCommand.js +0 -63
  444. package/dist/cjs/commands/GetFunctionConfigurationCommand.js.map +0 -1
  445. package/dist/cjs/commands/GetFunctionEventInvokeConfigCommand.js +0 -62
  446. package/dist/cjs/commands/GetFunctionEventInvokeConfigCommand.js.map +0 -1
  447. package/dist/cjs/commands/GetLayerVersionByArnCommand.js +0 -63
  448. package/dist/cjs/commands/GetLayerVersionByArnCommand.js.map +0 -1
  449. package/dist/cjs/commands/GetLayerVersionCommand.js +0 -63
  450. package/dist/cjs/commands/GetLayerVersionCommand.js.map +0 -1
  451. package/dist/cjs/commands/GetLayerVersionPolicyCommand.js +0 -62
  452. package/dist/cjs/commands/GetLayerVersionPolicyCommand.js.map +0 -1
  453. package/dist/cjs/commands/GetPolicyCommand.js +0 -61
  454. package/dist/cjs/commands/GetPolicyCommand.js.map +0 -1
  455. package/dist/cjs/commands/GetProvisionedConcurrencyConfigCommand.js +0 -61
  456. package/dist/cjs/commands/GetProvisionedConcurrencyConfigCommand.js.map +0 -1
  457. package/dist/cjs/commands/InvokeAsyncCommand.js +0 -66
  458. package/dist/cjs/commands/InvokeAsyncCommand.js.map +0 -1
  459. package/dist/cjs/commands/InvokeCommand.js +0 -87
  460. package/dist/cjs/commands/InvokeCommand.js.map +0 -1
  461. package/dist/cjs/commands/ListAliasesCommand.js +0 -62
  462. package/dist/cjs/commands/ListAliasesCommand.js.map +0 -1
  463. package/dist/cjs/commands/ListCodeSigningConfigsCommand.js +0 -63
  464. package/dist/cjs/commands/ListCodeSigningConfigsCommand.js.map +0 -1
  465. package/dist/cjs/commands/ListEventSourceMappingsCommand.js +0 -62
  466. package/dist/cjs/commands/ListEventSourceMappingsCommand.js.map +0 -1
  467. package/dist/cjs/commands/ListFunctionEventInvokeConfigsCommand.js +0 -62
  468. package/dist/cjs/commands/ListFunctionEventInvokeConfigsCommand.js.map +0 -1
  469. package/dist/cjs/commands/ListFunctionsByCodeSigningConfigCommand.js +0 -62
  470. package/dist/cjs/commands/ListFunctionsByCodeSigningConfigCommand.js.map +0 -1
  471. package/dist/cjs/commands/ListFunctionsCommand.js +0 -69
  472. package/dist/cjs/commands/ListFunctionsCommand.js.map +0 -1
  473. package/dist/cjs/commands/ListLayerVersionsCommand.js +0 -63
  474. package/dist/cjs/commands/ListLayerVersionsCommand.js.map +0 -1
  475. package/dist/cjs/commands/ListLayersCommand.js +0 -63
  476. package/dist/cjs/commands/ListLayersCommand.js.map +0 -1
  477. package/dist/cjs/commands/ListProvisionedConcurrencyConfigsCommand.js +0 -61
  478. package/dist/cjs/commands/ListProvisionedConcurrencyConfigsCommand.js.map +0 -1
  479. package/dist/cjs/commands/ListTagsCommand.js +0 -62
  480. package/dist/cjs/commands/ListTagsCommand.js.map +0 -1
  481. package/dist/cjs/commands/ListVersionsByFunctionCommand.js +0 -62
  482. package/dist/cjs/commands/ListVersionsByFunctionCommand.js.map +0 -1
  483. package/dist/cjs/commands/PublishLayerVersionCommand.js +0 -64
  484. package/dist/cjs/commands/PublishLayerVersionCommand.js.map +0 -1
  485. package/dist/cjs/commands/PublishVersionCommand.js +0 -69
  486. package/dist/cjs/commands/PublishVersionCommand.js.map +0 -1
  487. package/dist/cjs/commands/PutFunctionCodeSigningConfigCommand.js +0 -62
  488. package/dist/cjs/commands/PutFunctionCodeSigningConfigCommand.js.map +0 -1
  489. package/dist/cjs/commands/PutFunctionConcurrencyCommand.js +0 -69
  490. package/dist/cjs/commands/PutFunctionConcurrencyCommand.js.map +0 -1
  491. package/dist/cjs/commands/PutFunctionEventInvokeConfigCommand.js +0 -71
  492. package/dist/cjs/commands/PutFunctionEventInvokeConfigCommand.js.map +0 -1
  493. package/dist/cjs/commands/PutProvisionedConcurrencyConfigCommand.js +0 -61
  494. package/dist/cjs/commands/PutProvisionedConcurrencyConfigCommand.js.map +0 -1
  495. package/dist/cjs/commands/RemoveLayerVersionPermissionCommand.js +0 -63
  496. package/dist/cjs/commands/RemoveLayerVersionPermissionCommand.js.map +0 -1
  497. package/dist/cjs/commands/RemovePermissionCommand.js +0 -62
  498. package/dist/cjs/commands/RemovePermissionCommand.js.map +0 -1
  499. package/dist/cjs/commands/TagResourceCommand.js +0 -61
  500. package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
  501. package/dist/cjs/commands/UntagResourceCommand.js +0 -61
  502. package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
  503. package/dist/cjs/commands/UpdateAliasCommand.js +0 -61
  504. package/dist/cjs/commands/UpdateAliasCommand.js.map +0 -1
  505. package/dist/cjs/commands/UpdateCodeSigningConfigCommand.js +0 -62
  506. package/dist/cjs/commands/UpdateCodeSigningConfigCommand.js.map +0 -1
  507. package/dist/cjs/commands/UpdateEventSourceMappingCommand.js +0 -84
  508. package/dist/cjs/commands/UpdateEventSourceMappingCommand.js.map +0 -1
  509. package/dist/cjs/commands/UpdateFunctionCodeCommand.js +0 -69
  510. package/dist/cjs/commands/UpdateFunctionCodeCommand.js.map +0 -1
  511. package/dist/cjs/commands/UpdateFunctionConfigurationCommand.js +0 -75
  512. package/dist/cjs/commands/UpdateFunctionConfigurationCommand.js.map +0 -1
  513. package/dist/cjs/commands/UpdateFunctionEventInvokeConfigCommand.js +0 -62
  514. package/dist/cjs/commands/UpdateFunctionEventInvokeConfigCommand.js.map +0 -1
  515. package/dist/cjs/endpoints.js +0 -86
  516. package/dist/cjs/endpoints.js.map +0 -1
  517. package/dist/cjs/index.js +0 -79
  518. package/dist/cjs/index.js.map +0 -1
  519. package/dist/cjs/models/index.js +0 -5
  520. package/dist/cjs/models/index.js.map +0 -1
  521. package/dist/cjs/models/models_0.js +0 -1589
  522. package/dist/cjs/models/models_0.js.map +0 -1
  523. package/dist/cjs/package.json +0 -92
  524. package/dist/cjs/pagination/Interfaces.js +0 -3
  525. package/dist/cjs/pagination/Interfaces.js.map +0 -1
  526. package/dist/cjs/pagination/ListAliasesPaginator.js +0 -46
  527. package/dist/cjs/pagination/ListAliasesPaginator.js.map +0 -1
  528. package/dist/cjs/pagination/ListCodeSigningConfigsPaginator.js +0 -46
  529. package/dist/cjs/pagination/ListCodeSigningConfigsPaginator.js.map +0 -1
  530. package/dist/cjs/pagination/ListEventSourceMappingsPaginator.js +0 -46
  531. package/dist/cjs/pagination/ListEventSourceMappingsPaginator.js.map +0 -1
  532. package/dist/cjs/pagination/ListFunctionEventInvokeConfigsPaginator.js +0 -46
  533. package/dist/cjs/pagination/ListFunctionEventInvokeConfigsPaginator.js.map +0 -1
  534. package/dist/cjs/pagination/ListFunctionsByCodeSigningConfigPaginator.js +0 -46
  535. package/dist/cjs/pagination/ListFunctionsByCodeSigningConfigPaginator.js.map +0 -1
  536. package/dist/cjs/pagination/ListFunctionsPaginator.js +0 -46
  537. package/dist/cjs/pagination/ListFunctionsPaginator.js.map +0 -1
  538. package/dist/cjs/pagination/ListLayerVersionsPaginator.js +0 -46
  539. package/dist/cjs/pagination/ListLayerVersionsPaginator.js.map +0 -1
  540. package/dist/cjs/pagination/ListLayersPaginator.js +0 -46
  541. package/dist/cjs/pagination/ListLayersPaginator.js.map +0 -1
  542. package/dist/cjs/pagination/ListProvisionedConcurrencyConfigsPaginator.js +0 -46
  543. package/dist/cjs/pagination/ListProvisionedConcurrencyConfigsPaginator.js.map +0 -1
  544. package/dist/cjs/pagination/ListVersionsByFunctionPaginator.js +0 -46
  545. package/dist/cjs/pagination/ListVersionsByFunctionPaginator.js.map +0 -1
  546. package/dist/cjs/protocols/Aws_restJson1.js +0 -9400
  547. package/dist/cjs/protocols/Aws_restJson1.js.map +0 -1
  548. package/dist/cjs/runtimeConfig.browser.js +0 -41
  549. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  550. package/dist/cjs/runtimeConfig.js +0 -46
  551. package/dist/cjs/runtimeConfig.js.map +0 -1
  552. package/dist/cjs/runtimeConfig.native.js +0 -20
  553. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  554. package/dist/cjs/runtimeConfig.shared.js +0 -21
  555. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  556. package/dist/cjs/waiters/waitForFunctionActive.js +0 -64
  557. package/dist/cjs/waiters/waitForFunctionActive.js.map +0 -1
  558. package/dist/cjs/waiters/waitForFunctionExists.js +0 -41
  559. package/dist/cjs/waiters/waitForFunctionExists.js.map +0 -1
  560. package/dist/cjs/waiters/waitForFunctionUpdated.js +0 -64
  561. package/dist/cjs/waiters/waitForFunctionUpdated.js.map +0 -1
  562. package/dist/es/Lambda.js +0 -890
  563. package/dist/es/Lambda.js.map +0 -1
  564. package/dist/es/LambdaClient.js +0 -52
  565. package/dist/es/LambdaClient.js.map +0 -1
  566. package/dist/es/commands/AddLayerVersionPermissionCommand.js +0 -70
  567. package/dist/es/commands/AddLayerVersionPermissionCommand.js.map +0 -1
  568. package/dist/es/commands/AddPermissionCommand.js +0 -76
  569. package/dist/es/commands/AddPermissionCommand.js.map +0 -1
  570. package/dist/es/commands/CreateAliasCommand.js +0 -70
  571. package/dist/es/commands/CreateAliasCommand.js.map +0 -1
  572. package/dist/es/commands/CreateCodeSigningConfigCommand.js +0 -67
  573. package/dist/es/commands/CreateCodeSigningConfigCommand.js.map +0 -1
  574. package/dist/es/commands/CreateEventSourceMappingCommand.js +0 -129
  575. package/dist/es/commands/CreateEventSourceMappingCommand.js.map +0 -1
  576. package/dist/es/commands/CreateFunctionCommand.js +0 -109
  577. package/dist/es/commands/CreateFunctionCommand.js.map +0 -1
  578. package/dist/es/commands/DeleteAliasCommand.js +0 -65
  579. package/dist/es/commands/DeleteAliasCommand.js.map +0 -1
  580. package/dist/es/commands/DeleteCodeSigningConfigCommand.js +0 -66
  581. package/dist/es/commands/DeleteCodeSigningConfigCommand.js.map +0 -1
  582. package/dist/es/commands/DeleteEventSourceMappingCommand.js +0 -67
  583. package/dist/es/commands/DeleteEventSourceMappingCommand.js.map +0 -1
  584. package/dist/es/commands/DeleteFunctionCodeSigningConfigCommand.js +0 -65
  585. package/dist/es/commands/DeleteFunctionCodeSigningConfigCommand.js.map +0 -1
  586. package/dist/es/commands/DeleteFunctionCommand.js +0 -70
  587. package/dist/es/commands/DeleteFunctionCommand.js.map +0 -1
  588. package/dist/es/commands/DeleteFunctionConcurrencyCommand.js +0 -65
  589. package/dist/es/commands/DeleteFunctionConcurrencyCommand.js.map +0 -1
  590. package/dist/es/commands/DeleteFunctionEventInvokeConfigCommand.js +0 -66
  591. package/dist/es/commands/DeleteFunctionEventInvokeConfigCommand.js.map +0 -1
  592. package/dist/es/commands/DeleteLayerVersionCommand.js +0 -67
  593. package/dist/es/commands/DeleteLayerVersionCommand.js.map +0 -1
  594. package/dist/es/commands/DeleteProvisionedConcurrencyConfigCommand.js +0 -65
  595. package/dist/es/commands/DeleteProvisionedConcurrencyConfigCommand.js.map +0 -1
  596. package/dist/es/commands/GetAccountSettingsCommand.js +0 -65
  597. package/dist/es/commands/GetAccountSettingsCommand.js.map +0 -1
  598. package/dist/es/commands/GetAliasCommand.js +0 -65
  599. package/dist/es/commands/GetAliasCommand.js.map +0 -1
  600. package/dist/es/commands/GetCodeSigningConfigCommand.js +0 -65
  601. package/dist/es/commands/GetCodeSigningConfigCommand.js.map +0 -1
  602. package/dist/es/commands/GetEventSourceMappingCommand.js +0 -65
  603. package/dist/es/commands/GetEventSourceMappingCommand.js.map +0 -1
  604. package/dist/es/commands/GetFunctionCodeSigningConfigCommand.js +0 -65
  605. package/dist/es/commands/GetFunctionCodeSigningConfigCommand.js.map +0 -1
  606. package/dist/es/commands/GetFunctionCommand.js +0 -67
  607. package/dist/es/commands/GetFunctionCommand.js.map +0 -1
  608. package/dist/es/commands/GetFunctionConcurrencyCommand.js +0 -66
  609. package/dist/es/commands/GetFunctionConcurrencyCommand.js.map +0 -1
  610. package/dist/es/commands/GetFunctionConfigurationCommand.js +0 -67
  611. package/dist/es/commands/GetFunctionConfigurationCommand.js.map +0 -1
  612. package/dist/es/commands/GetFunctionEventInvokeConfigCommand.js +0 -66
  613. package/dist/es/commands/GetFunctionEventInvokeConfigCommand.js.map +0 -1
  614. package/dist/es/commands/GetLayerVersionByArnCommand.js +0 -67
  615. package/dist/es/commands/GetLayerVersionByArnCommand.js.map +0 -1
  616. package/dist/es/commands/GetLayerVersionCommand.js +0 -67
  617. package/dist/es/commands/GetLayerVersionCommand.js.map +0 -1
  618. package/dist/es/commands/GetLayerVersionPolicyCommand.js +0 -66
  619. package/dist/es/commands/GetLayerVersionPolicyCommand.js.map +0 -1
  620. package/dist/es/commands/GetPolicyCommand.js +0 -65
  621. package/dist/es/commands/GetPolicyCommand.js.map +0 -1
  622. package/dist/es/commands/GetProvisionedConcurrencyConfigCommand.js +0 -65
  623. package/dist/es/commands/GetProvisionedConcurrencyConfigCommand.js.map +0 -1
  624. package/dist/es/commands/InvokeAsyncCommand.js +0 -70
  625. package/dist/es/commands/InvokeAsyncCommand.js.map +0 -1
  626. package/dist/es/commands/InvokeCommand.js +0 -91
  627. package/dist/es/commands/InvokeCommand.js.map +0 -1
  628. package/dist/es/commands/ListAliasesCommand.js +0 -66
  629. package/dist/es/commands/ListAliasesCommand.js.map +0 -1
  630. package/dist/es/commands/ListCodeSigningConfigsCommand.js +0 -67
  631. package/dist/es/commands/ListCodeSigningConfigsCommand.js.map +0 -1
  632. package/dist/es/commands/ListEventSourceMappingsCommand.js +0 -66
  633. package/dist/es/commands/ListEventSourceMappingsCommand.js.map +0 -1
  634. package/dist/es/commands/ListFunctionEventInvokeConfigsCommand.js +0 -66
  635. package/dist/es/commands/ListFunctionEventInvokeConfigsCommand.js.map +0 -1
  636. package/dist/es/commands/ListFunctionsByCodeSigningConfigCommand.js +0 -66
  637. package/dist/es/commands/ListFunctionsByCodeSigningConfigCommand.js.map +0 -1
  638. package/dist/es/commands/ListFunctionsCommand.js +0 -73
  639. package/dist/es/commands/ListFunctionsCommand.js.map +0 -1
  640. package/dist/es/commands/ListLayerVersionsCommand.js +0 -67
  641. package/dist/es/commands/ListLayerVersionsCommand.js.map +0 -1
  642. package/dist/es/commands/ListLayersCommand.js +0 -67
  643. package/dist/es/commands/ListLayersCommand.js.map +0 -1
  644. package/dist/es/commands/ListProvisionedConcurrencyConfigsCommand.js +0 -65
  645. package/dist/es/commands/ListProvisionedConcurrencyConfigsCommand.js.map +0 -1
  646. package/dist/es/commands/ListTagsCommand.js +0 -66
  647. package/dist/es/commands/ListTagsCommand.js.map +0 -1
  648. package/dist/es/commands/ListVersionsByFunctionCommand.js +0 -66
  649. package/dist/es/commands/ListVersionsByFunctionCommand.js.map +0 -1
  650. package/dist/es/commands/PublishLayerVersionCommand.js +0 -68
  651. package/dist/es/commands/PublishLayerVersionCommand.js.map +0 -1
  652. package/dist/es/commands/PublishVersionCommand.js +0 -73
  653. package/dist/es/commands/PublishVersionCommand.js.map +0 -1
  654. package/dist/es/commands/PutFunctionCodeSigningConfigCommand.js +0 -66
  655. package/dist/es/commands/PutFunctionCodeSigningConfigCommand.js.map +0 -1
  656. package/dist/es/commands/PutFunctionConcurrencyCommand.js +0 -73
  657. package/dist/es/commands/PutFunctionConcurrencyCommand.js.map +0 -1
  658. package/dist/es/commands/PutFunctionEventInvokeConfigCommand.js +0 -75
  659. package/dist/es/commands/PutFunctionEventInvokeConfigCommand.js.map +0 -1
  660. package/dist/es/commands/PutProvisionedConcurrencyConfigCommand.js +0 -65
  661. package/dist/es/commands/PutProvisionedConcurrencyConfigCommand.js.map +0 -1
  662. package/dist/es/commands/RemoveLayerVersionPermissionCommand.js +0 -67
  663. package/dist/es/commands/RemoveLayerVersionPermissionCommand.js.map +0 -1
  664. package/dist/es/commands/RemovePermissionCommand.js +0 -66
  665. package/dist/es/commands/RemovePermissionCommand.js.map +0 -1
  666. package/dist/es/commands/TagResourceCommand.js +0 -65
  667. package/dist/es/commands/TagResourceCommand.js.map +0 -1
  668. package/dist/es/commands/UntagResourceCommand.js +0 -65
  669. package/dist/es/commands/UntagResourceCommand.js.map +0 -1
  670. package/dist/es/commands/UpdateAliasCommand.js +0 -65
  671. package/dist/es/commands/UpdateAliasCommand.js.map +0 -1
  672. package/dist/es/commands/UpdateCodeSigningConfigCommand.js +0 -66
  673. package/dist/es/commands/UpdateCodeSigningConfigCommand.js.map +0 -1
  674. package/dist/es/commands/UpdateEventSourceMappingCommand.js +0 -88
  675. package/dist/es/commands/UpdateEventSourceMappingCommand.js.map +0 -1
  676. package/dist/es/commands/UpdateFunctionCodeCommand.js +0 -73
  677. package/dist/es/commands/UpdateFunctionCodeCommand.js.map +0 -1
  678. package/dist/es/commands/UpdateFunctionConfigurationCommand.js +0 -79
  679. package/dist/es/commands/UpdateFunctionConfigurationCommand.js.map +0 -1
  680. package/dist/es/commands/UpdateFunctionEventInvokeConfigCommand.js +0 -66
  681. package/dist/es/commands/UpdateFunctionEventInvokeConfigCommand.js.map +0 -1
  682. package/dist/es/endpoints.js +0 -82
  683. package/dist/es/endpoints.js.map +0 -1
  684. package/dist/es/index.js +0 -76
  685. package/dist/es/index.js.map +0 -1
  686. package/dist/es/models/index.js +0 -2
  687. package/dist/es/models/index.js.map +0 -1
  688. package/dist/es/models/models_0.js +0 -1248
  689. package/dist/es/models/models_0.js.map +0 -1
  690. package/dist/es/package.json +0 -92
  691. package/dist/es/pagination/Interfaces.js +0 -2
  692. package/dist/es/pagination/Interfaces.js.map +0 -1
  693. package/dist/es/pagination/ListAliasesPaginator.js +0 -87
  694. package/dist/es/pagination/ListAliasesPaginator.js.map +0 -1
  695. package/dist/es/pagination/ListCodeSigningConfigsPaginator.js +0 -87
  696. package/dist/es/pagination/ListCodeSigningConfigsPaginator.js.map +0 -1
  697. package/dist/es/pagination/ListEventSourceMappingsPaginator.js +0 -87
  698. package/dist/es/pagination/ListEventSourceMappingsPaginator.js.map +0 -1
  699. package/dist/es/pagination/ListFunctionEventInvokeConfigsPaginator.js +0 -87
  700. package/dist/es/pagination/ListFunctionEventInvokeConfigsPaginator.js.map +0 -1
  701. package/dist/es/pagination/ListFunctionsByCodeSigningConfigPaginator.js +0 -87
  702. package/dist/es/pagination/ListFunctionsByCodeSigningConfigPaginator.js.map +0 -1
  703. package/dist/es/pagination/ListFunctionsPaginator.js +0 -87
  704. package/dist/es/pagination/ListFunctionsPaginator.js.map +0 -1
  705. package/dist/es/pagination/ListLayerVersionsPaginator.js +0 -87
  706. package/dist/es/pagination/ListLayerVersionsPaginator.js.map +0 -1
  707. package/dist/es/pagination/ListLayersPaginator.js +0 -87
  708. package/dist/es/pagination/ListLayersPaginator.js.map +0 -1
  709. package/dist/es/pagination/ListProvisionedConcurrencyConfigsPaginator.js +0 -87
  710. package/dist/es/pagination/ListProvisionedConcurrencyConfigsPaginator.js.map +0 -1
  711. package/dist/es/pagination/ListVersionsByFunctionPaginator.js +0 -87
  712. package/dist/es/pagination/ListVersionsByFunctionPaginator.js.map +0 -1
  713. package/dist/es/protocols/Aws_restJson1.js +0 -10311
  714. package/dist/es/protocols/Aws_restJson1.js.map +0 -1
  715. package/dist/es/runtimeConfig.browser.js +0 -20
  716. package/dist/es/runtimeConfig.browser.js.map +0 -1
  717. package/dist/es/runtimeConfig.js +0 -25
  718. package/dist/es/runtimeConfig.js.map +0 -1
  719. package/dist/es/runtimeConfig.native.js +0 -12
  720. package/dist/es/runtimeConfig.native.js.map +0 -1
  721. package/dist/es/runtimeConfig.shared.js +0 -17
  722. package/dist/es/runtimeConfig.shared.js.map +0 -1
  723. package/dist/es/waiters/waitForFunctionActive.js +0 -79
  724. package/dist/es/waiters/waitForFunctionActive.js.map +0 -1
  725. package/dist/es/waiters/waitForFunctionExists.js +0 -55
  726. package/dist/es/waiters/waitForFunctionExists.js.map +0 -1
  727. package/dist/es/waiters/waitForFunctionUpdated.js +0 -79
  728. package/dist/es/waiters/waitForFunctionUpdated.js.map +0 -1
  729. package/dist/types/Lambda.d.ts +0 -703
  730. package/dist/types/LambdaClient.d.ts +0 -196
  731. package/dist/types/commands/AddLayerVersionPermissionCommand.d.ts +0 -40
  732. package/dist/types/commands/AddPermissionCommand.d.ts +0 -46
  733. package/dist/types/commands/CreateAliasCommand.d.ts +0 -40
  734. package/dist/types/commands/CreateCodeSigningConfigCommand.d.ts +0 -37
  735. package/dist/types/commands/CreateEventSourceMappingCommand.d.ts +0 -99
  736. package/dist/types/commands/CreateFunctionCommand.d.ts +0 -79
  737. package/dist/types/commands/DeleteAliasCommand.d.ts +0 -35
  738. package/dist/types/commands/DeleteCodeSigningConfigCommand.d.ts +0 -36
  739. package/dist/types/commands/DeleteEventSourceMappingCommand.d.ts +0 -37
  740. package/dist/types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +0 -35
  741. package/dist/types/commands/DeleteFunctionCommand.d.ts +0 -40
  742. package/dist/types/commands/DeleteFunctionConcurrencyCommand.d.ts +0 -35
  743. package/dist/types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +0 -36
  744. package/dist/types/commands/DeleteLayerVersionCommand.d.ts +0 -37
  745. package/dist/types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +0 -35
  746. package/dist/types/commands/GetAccountSettingsCommand.d.ts +0 -35
  747. package/dist/types/commands/GetAliasCommand.d.ts +0 -35
  748. package/dist/types/commands/GetCodeSigningConfigCommand.d.ts +0 -35
  749. package/dist/types/commands/GetEventSourceMappingCommand.d.ts +0 -35
  750. package/dist/types/commands/GetFunctionCodeSigningConfigCommand.d.ts +0 -35
  751. package/dist/types/commands/GetFunctionCommand.d.ts +0 -37
  752. package/dist/types/commands/GetFunctionConcurrencyCommand.d.ts +0 -36
  753. package/dist/types/commands/GetFunctionConfigurationCommand.d.ts +0 -37
  754. package/dist/types/commands/GetFunctionEventInvokeConfigCommand.d.ts +0 -36
  755. package/dist/types/commands/GetLayerVersionByArnCommand.d.ts +0 -37
  756. package/dist/types/commands/GetLayerVersionCommand.d.ts +0 -37
  757. package/dist/types/commands/GetLayerVersionPolicyCommand.d.ts +0 -36
  758. package/dist/types/commands/GetPolicyCommand.d.ts +0 -35
  759. package/dist/types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +0 -35
  760. package/dist/types/commands/InvokeAsyncCommand.d.ts +0 -51
  761. package/dist/types/commands/InvokeCommand.d.ts +0 -61
  762. package/dist/types/commands/ListAliasesCommand.d.ts +0 -36
  763. package/dist/types/commands/ListCodeSigningConfigsCommand.d.ts +0 -37
  764. package/dist/types/commands/ListEventSourceMappingsCommand.d.ts +0 -36
  765. package/dist/types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +0 -36
  766. package/dist/types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +0 -36
  767. package/dist/types/commands/ListFunctionsCommand.d.ts +0 -43
  768. package/dist/types/commands/ListLayerVersionsCommand.d.ts +0 -37
  769. package/dist/types/commands/ListLayersCommand.d.ts +0 -37
  770. package/dist/types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +0 -35
  771. package/dist/types/commands/ListTagsCommand.d.ts +0 -36
  772. package/dist/types/commands/ListVersionsByFunctionCommand.d.ts +0 -36
  773. package/dist/types/commands/PublishLayerVersionCommand.d.ts +0 -38
  774. package/dist/types/commands/PublishVersionCommand.d.ts +0 -43
  775. package/dist/types/commands/PutFunctionCodeSigningConfigCommand.d.ts +0 -36
  776. package/dist/types/commands/PutFunctionConcurrencyCommand.d.ts +0 -43
  777. package/dist/types/commands/PutFunctionEventInvokeConfigCommand.d.ts +0 -45
  778. package/dist/types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +0 -35
  779. package/dist/types/commands/RemoveLayerVersionPermissionCommand.d.ts +0 -37
  780. package/dist/types/commands/RemovePermissionCommand.d.ts +0 -36
  781. package/dist/types/commands/TagResourceCommand.d.ts +0 -35
  782. package/dist/types/commands/UntagResourceCommand.d.ts +0 -35
  783. package/dist/types/commands/UpdateAliasCommand.d.ts +0 -35
  784. package/dist/types/commands/UpdateCodeSigningConfigCommand.d.ts +0 -36
  785. package/dist/types/commands/UpdateEventSourceMappingCommand.d.ts +0 -58
  786. package/dist/types/commands/UpdateFunctionCodeCommand.d.ts +0 -43
  787. package/dist/types/commands/UpdateFunctionConfigurationCommand.d.ts +0 -49
  788. package/dist/types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +0 -36
  789. package/dist/types/models/models_0.d.ts +0 -4645
  790. package/dist/types/pagination/Interfaces.d.ts +0 -6
  791. package/dist/types/pagination/ListAliasesPaginator.d.ts +0 -4
  792. package/dist/types/pagination/ListCodeSigningConfigsPaginator.d.ts +0 -4
  793. package/dist/types/pagination/ListEventSourceMappingsPaginator.d.ts +0 -4
  794. package/dist/types/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +0 -4
  795. package/dist/types/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +0 -4
  796. package/dist/types/pagination/ListFunctionsPaginator.d.ts +0 -4
  797. package/dist/types/pagination/ListLayerVersionsPaginator.d.ts +0 -4
  798. package/dist/types/pagination/ListLayersPaginator.d.ts +0 -4
  799. package/dist/types/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +0 -4
  800. package/dist/types/pagination/ListVersionsByFunctionPaginator.d.ts +0 -4
  801. package/dist/types/protocols/Aws_restJson1.d.ts +0 -176
  802. package/dist/types/runtimeConfig.browser.d.ts +0 -36
  803. package/dist/types/runtimeConfig.d.ts +0 -36
  804. package/dist/types/runtimeConfig.native.d.ts +0 -35
  805. package/dist/types/ts3.4/Lambda.d.ts +0 -703
  806. package/dist/types/ts3.4/LambdaClient.d.ts +0 -196
  807. package/dist/types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +0 -40
  808. package/dist/types/ts3.4/commands/AddPermissionCommand.d.ts +0 -46
  809. package/dist/types/ts3.4/commands/CreateAliasCommand.d.ts +0 -40
  810. package/dist/types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +0 -37
  811. package/dist/types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +0 -99
  812. package/dist/types/ts3.4/commands/CreateFunctionCommand.d.ts +0 -79
  813. package/dist/types/ts3.4/commands/DeleteAliasCommand.d.ts +0 -35
  814. package/dist/types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +0 -36
  815. package/dist/types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +0 -37
  816. package/dist/types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +0 -35
  817. package/dist/types/ts3.4/commands/DeleteFunctionCommand.d.ts +0 -40
  818. package/dist/types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +0 -35
  819. package/dist/types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +0 -36
  820. package/dist/types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +0 -37
  821. package/dist/types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +0 -35
  822. package/dist/types/ts3.4/commands/GetAccountSettingsCommand.d.ts +0 -35
  823. package/dist/types/ts3.4/commands/GetAliasCommand.d.ts +0 -35
  824. package/dist/types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +0 -35
  825. package/dist/types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +0 -35
  826. package/dist/types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +0 -35
  827. package/dist/types/ts3.4/commands/GetFunctionCommand.d.ts +0 -37
  828. package/dist/types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +0 -36
  829. package/dist/types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +0 -37
  830. package/dist/types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +0 -36
  831. package/dist/types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +0 -37
  832. package/dist/types/ts3.4/commands/GetLayerVersionCommand.d.ts +0 -37
  833. package/dist/types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +0 -36
  834. package/dist/types/ts3.4/commands/GetPolicyCommand.d.ts +0 -35
  835. package/dist/types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +0 -35
  836. package/dist/types/ts3.4/commands/InvokeAsyncCommand.d.ts +0 -51
  837. package/dist/types/ts3.4/commands/InvokeCommand.d.ts +0 -61
  838. package/dist/types/ts3.4/commands/ListAliasesCommand.d.ts +0 -36
  839. package/dist/types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +0 -37
  840. package/dist/types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +0 -36
  841. package/dist/types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +0 -36
  842. package/dist/types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +0 -36
  843. package/dist/types/ts3.4/commands/ListFunctionsCommand.d.ts +0 -43
  844. package/dist/types/ts3.4/commands/ListLayerVersionsCommand.d.ts +0 -37
  845. package/dist/types/ts3.4/commands/ListLayersCommand.d.ts +0 -37
  846. package/dist/types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +0 -35
  847. package/dist/types/ts3.4/commands/ListTagsCommand.d.ts +0 -36
  848. package/dist/types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +0 -36
  849. package/dist/types/ts3.4/commands/PublishLayerVersionCommand.d.ts +0 -38
  850. package/dist/types/ts3.4/commands/PublishVersionCommand.d.ts +0 -43
  851. package/dist/types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +0 -36
  852. package/dist/types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +0 -43
  853. package/dist/types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +0 -45
  854. package/dist/types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +0 -35
  855. package/dist/types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +0 -37
  856. package/dist/types/ts3.4/commands/RemovePermissionCommand.d.ts +0 -36
  857. package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -35
  858. package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -35
  859. package/dist/types/ts3.4/commands/UpdateAliasCommand.d.ts +0 -35
  860. package/dist/types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +0 -36
  861. package/dist/types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +0 -58
  862. package/dist/types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +0 -43
  863. package/dist/types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +0 -49
  864. package/dist/types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +0 -36
  865. package/dist/types/ts3.4/models/models_0.d.ts +0 -4645
  866. package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
  867. package/dist/types/ts3.4/pagination/ListAliasesPaginator.d.ts +0 -4
  868. package/dist/types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +0 -4
  869. package/dist/types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +0 -4
  870. package/dist/types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +0 -4
  871. package/dist/types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +0 -4
  872. package/dist/types/ts3.4/pagination/ListFunctionsPaginator.d.ts +0 -4
  873. package/dist/types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +0 -4
  874. package/dist/types/ts3.4/pagination/ListLayersPaginator.d.ts +0 -4
  875. package/dist/types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +0 -4
  876. package/dist/types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +0 -4
  877. package/dist/types/ts3.4/protocols/Aws_restJson1.d.ts +0 -176
  878. package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
  879. package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
  880. package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
  881. package/dist/types/ts3.4/waiters/waitForFunctionActive.d.ts +0 -14
  882. package/dist/types/ts3.4/waiters/waitForFunctionExists.d.ts +0 -14
  883. package/dist/types/ts3.4/waiters/waitForFunctionUpdated.d.ts +0 -14
  884. package/dist/types/waiters/waitForFunctionActive.d.ts +0 -14
  885. package/dist/types/waiters/waitForFunctionExists.d.ts +0 -14
  886. package/dist/types/waiters/waitForFunctionUpdated.d.ts +0 -14
  887. package/endpoints.ts +0 -86
  888. package/jest.config.js +0 -4
  889. package/models/models_0.ts +0 -5632
  890. package/pagination/Interfaces.ts +0 -7
  891. package/pagination/ListAliasesPaginator.ts +0 -54
  892. package/pagination/ListCodeSigningConfigsPaginator.ts +0 -58
  893. package/pagination/ListEventSourceMappingsPaginator.ts +0 -58
  894. package/pagination/ListFunctionEventInvokeConfigsPaginator.ts +0 -58
  895. package/pagination/ListFunctionsByCodeSigningConfigPaginator.ts +0 -58
  896. package/pagination/ListFunctionsPaginator.ts +0 -58
  897. package/pagination/ListLayerVersionsPaginator.ts +0 -58
  898. package/pagination/ListLayersPaginator.ts +0 -54
  899. package/pagination/ListProvisionedConcurrencyConfigsPaginator.ts +0 -58
  900. package/pagination/ListVersionsByFunctionPaginator.ts +0 -58
  901. package/protocols/Aws_restJson1.ts +0 -10630
  902. package/runtimeConfig.browser.ts +0 -40
  903. package/runtimeConfig.native.ts +0 -16
  904. package/runtimeConfig.shared.ts +0 -16
  905. package/runtimeConfig.ts +0 -45
  906. package/tsconfig.es.json +0 -12
  907. package/tsconfig.json +0 -32
  908. package/waiters/waitForFunctionActive.ts +0 -65
  909. package/waiters/waitForFunctionExists.ts +0 -42
  910. package/waiters/waitForFunctionUpdated.ts +0 -65
@@ -0,0 +1,714 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AddLayerVersionPermissionCommandInput, AddLayerVersionPermissionCommandOutput } from "./commands/AddLayerVersionPermissionCommand";
3
+ import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand";
4
+ import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
5
+ import { CreateCodeSigningConfigCommandInput, CreateCodeSigningConfigCommandOutput } from "./commands/CreateCodeSigningConfigCommand";
6
+ import { CreateEventSourceMappingCommandInput, CreateEventSourceMappingCommandOutput } from "./commands/CreateEventSourceMappingCommand";
7
+ import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
8
+ import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
9
+ import { DeleteCodeSigningConfigCommandInput, DeleteCodeSigningConfigCommandOutput } from "./commands/DeleteCodeSigningConfigCommand";
10
+ import { DeleteEventSourceMappingCommandInput, DeleteEventSourceMappingCommandOutput } from "./commands/DeleteEventSourceMappingCommand";
11
+ import { DeleteFunctionCodeSigningConfigCommandInput, DeleteFunctionCodeSigningConfigCommandOutput } from "./commands/DeleteFunctionCodeSigningConfigCommand";
12
+ import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
13
+ import { DeleteFunctionConcurrencyCommandInput, DeleteFunctionConcurrencyCommandOutput } from "./commands/DeleteFunctionConcurrencyCommand";
14
+ import { DeleteFunctionEventInvokeConfigCommandInput, DeleteFunctionEventInvokeConfigCommandOutput } from "./commands/DeleteFunctionEventInvokeConfigCommand";
15
+ import { DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput } from "./commands/DeleteLayerVersionCommand";
16
+ import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "./commands/DeleteProvisionedConcurrencyConfigCommand";
17
+ import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
18
+ import { GetAliasCommandInput, GetAliasCommandOutput } from "./commands/GetAliasCommand";
19
+ import { GetCodeSigningConfigCommandInput, GetCodeSigningConfigCommandOutput } from "./commands/GetCodeSigningConfigCommand";
20
+ import { GetEventSourceMappingCommandInput, GetEventSourceMappingCommandOutput } from "./commands/GetEventSourceMappingCommand";
21
+ import { GetFunctionCodeSigningConfigCommandInput, GetFunctionCodeSigningConfigCommandOutput } from "./commands/GetFunctionCodeSigningConfigCommand";
22
+ import { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
23
+ import { GetFunctionConcurrencyCommandInput, GetFunctionConcurrencyCommandOutput } from "./commands/GetFunctionConcurrencyCommand";
24
+ import { GetFunctionConfigurationCommandInput, GetFunctionConfigurationCommandOutput } from "./commands/GetFunctionConfigurationCommand";
25
+ import { GetFunctionEventInvokeConfigCommandInput, GetFunctionEventInvokeConfigCommandOutput } from "./commands/GetFunctionEventInvokeConfigCommand";
26
+ import { GetLayerVersionByArnCommandInput, GetLayerVersionByArnCommandOutput } from "./commands/GetLayerVersionByArnCommand";
27
+ import { GetLayerVersionCommandInput, GetLayerVersionCommandOutput } from "./commands/GetLayerVersionCommand";
28
+ import { GetLayerVersionPolicyCommandInput, GetLayerVersionPolicyCommandOutput } from "./commands/GetLayerVersionPolicyCommand";
29
+ import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
30
+ import { GetProvisionedConcurrencyConfigCommandInput, GetProvisionedConcurrencyConfigCommandOutput } from "./commands/GetProvisionedConcurrencyConfigCommand";
31
+ import { InvokeAsyncCommandInput, InvokeAsyncCommandOutput } from "./commands/InvokeAsyncCommand";
32
+ import { InvokeCommandInput, InvokeCommandOutput } from "./commands/InvokeCommand";
33
+ import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
34
+ import { ListCodeSigningConfigsCommandInput, ListCodeSigningConfigsCommandOutput } from "./commands/ListCodeSigningConfigsCommand";
35
+ import { ListEventSourceMappingsCommandInput, ListEventSourceMappingsCommandOutput } from "./commands/ListEventSourceMappingsCommand";
36
+ import { ListFunctionEventInvokeConfigsCommandInput, ListFunctionEventInvokeConfigsCommandOutput } from "./commands/ListFunctionEventInvokeConfigsCommand";
37
+ import { ListFunctionsByCodeSigningConfigCommandInput, ListFunctionsByCodeSigningConfigCommandOutput } from "./commands/ListFunctionsByCodeSigningConfigCommand";
38
+ import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
39
+ import { ListLayersCommandInput, ListLayersCommandOutput } from "./commands/ListLayersCommand";
40
+ import { ListLayerVersionsCommandInput, ListLayerVersionsCommandOutput } from "./commands/ListLayerVersionsCommand";
41
+ import { ListProvisionedConcurrencyConfigsCommandInput, ListProvisionedConcurrencyConfigsCommandOutput } from "./commands/ListProvisionedConcurrencyConfigsCommand";
42
+ import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
43
+ import { ListVersionsByFunctionCommandInput, ListVersionsByFunctionCommandOutput } from "./commands/ListVersionsByFunctionCommand";
44
+ import { PublishLayerVersionCommandInput, PublishLayerVersionCommandOutput } from "./commands/PublishLayerVersionCommand";
45
+ import { PublishVersionCommandInput, PublishVersionCommandOutput } from "./commands/PublishVersionCommand";
46
+ import { PutFunctionCodeSigningConfigCommandInput, PutFunctionCodeSigningConfigCommandOutput } from "./commands/PutFunctionCodeSigningConfigCommand";
47
+ import { PutFunctionConcurrencyCommandInput, PutFunctionConcurrencyCommandOutput } from "./commands/PutFunctionConcurrencyCommand";
48
+ import { PutFunctionEventInvokeConfigCommandInput, PutFunctionEventInvokeConfigCommandOutput } from "./commands/PutFunctionEventInvokeConfigCommand";
49
+ import { PutProvisionedConcurrencyConfigCommandInput, PutProvisionedConcurrencyConfigCommandOutput } from "./commands/PutProvisionedConcurrencyConfigCommand";
50
+ import { RemoveLayerVersionPermissionCommandInput, RemoveLayerVersionPermissionCommandOutput } from "./commands/RemoveLayerVersionPermissionCommand";
51
+ import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "./commands/RemovePermissionCommand";
52
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
53
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
54
+ import { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand";
55
+ import { UpdateCodeSigningConfigCommandInput, UpdateCodeSigningConfigCommandOutput } from "./commands/UpdateCodeSigningConfigCommand";
56
+ import { UpdateEventSourceMappingCommandInput, UpdateEventSourceMappingCommandOutput } from "./commands/UpdateEventSourceMappingCommand";
57
+ import { UpdateFunctionCodeCommandInput, UpdateFunctionCodeCommandOutput } from "./commands/UpdateFunctionCodeCommand";
58
+ import { UpdateFunctionConfigurationCommandInput, UpdateFunctionConfigurationCommandOutput } from "./commands/UpdateFunctionConfigurationCommand";
59
+ import { UpdateFunctionEventInvokeConfigCommandInput, UpdateFunctionEventInvokeConfigCommandOutput } from "./commands/UpdateFunctionEventInvokeConfigCommand";
60
+ import { LambdaClient } from "./LambdaClient";
61
+ /**
62
+ * <fullname>Lambda</fullname>
63
+ * <p>
64
+ * <b>Overview</b>
65
+ * </p>
66
+ * <p>This is the <i>Lambda API Reference</i>. The Lambda Developer Guide provides additional
67
+ * information. For the service overview, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/welcome.html">What is
68
+ * Lambda</a>, and for information about how the service works, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html">Lambda: How it Works</a> in the <b>Lambda Developer Guide</b>.</p>
69
+ */
70
+ export declare class Lambda extends LambdaClient {
71
+ /**
72
+ * <p>Adds permissions to the resource-based policy of a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
73
+ * layer</a>. Use this action to grant layer
74
+ * usage permission to other accounts. You can grant permission to a single account, all accounts in an organization,
75
+ * or all Amazon Web Services accounts. </p>
76
+ * <p>To revoke permission, call <a>RemoveLayerVersionPermission</a> with the statement ID that you
77
+ * specified when you added it.</p>
78
+ */
79
+ addLayerVersionPermission(args: AddLayerVersionPermissionCommandInput, options?: __HttpHandlerOptions): Promise<AddLayerVersionPermissionCommandOutput>;
80
+ addLayerVersionPermission(args: AddLayerVersionPermissionCommandInput, cb: (err: any, data?: AddLayerVersionPermissionCommandOutput) => void): void;
81
+ addLayerVersionPermission(args: AddLayerVersionPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddLayerVersionPermissionCommandOutput) => void): void;
82
+ /**
83
+ * <p>Grants an Amazon Web Services service or another account permission to use a function. You can apply the policy at the
84
+ * function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier,
85
+ * the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.
86
+ * Note: Lambda does not support adding policies to version $LATEST.</p>
87
+ *
88
+ * <p>To grant permission to another account, specify the account ID as the <code>Principal</code>. For Amazon Web Services
89
+ * services, the principal is a domain-style identifier defined by the service, like <code>s3.amazonaws.com</code> or
90
+ * <code>sns.amazonaws.com</code>. For Amazon Web Services services, you can also specify the ARN of the associated resource as the
91
+ * <code>SourceArn</code>. If you grant permission to a service principal without specifying the source, other
92
+ * accounts could potentially configure resources in their account to invoke your Lambda function.</p>
93
+ *
94
+ * <p>This action adds a statement to a resource-based permissions policy for the function. For more information
95
+ * about function policies, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html">Lambda Function Policies</a>. </p>
96
+ */
97
+ addPermission(args: AddPermissionCommandInput, options?: __HttpHandlerOptions): Promise<AddPermissionCommandOutput>;
98
+ addPermission(args: AddPermissionCommandInput, cb: (err: any, data?: AddPermissionCommandOutput) => void): void;
99
+ addPermission(args: AddPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddPermissionCommandOutput) => void): void;
100
+ /**
101
+ * <p>Creates an <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a> for a
102
+ * Lambda function version. Use aliases to provide clients with a function identifier that you can update to invoke a
103
+ * different version.</p>
104
+ * <p>You can also map an alias to split invocation requests between two versions. Use the
105
+ * <code>RoutingConfig</code> parameter to specify a second version and the percentage of invocation requests that
106
+ * it receives.</p>
107
+ */
108
+ createAlias(args: CreateAliasCommandInput, options?: __HttpHandlerOptions): Promise<CreateAliasCommandOutput>;
109
+ createAlias(args: CreateAliasCommandInput, cb: (err: any, data?: CreateAliasCommandOutput) => void): void;
110
+ createAlias(args: CreateAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAliasCommandOutput) => void): void;
111
+ /**
112
+ * <p>Creates a code signing configuration. A <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-trustedcode.html">code signing configuration</a> defines a list of
113
+ * allowed signing profiles and defines the code-signing validation policy (action to be taken if deployment
114
+ * validation checks fail). </p>
115
+ */
116
+ createCodeSigningConfig(args: CreateCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateCodeSigningConfigCommandOutput>;
117
+ createCodeSigningConfig(args: CreateCodeSigningConfigCommandInput, cb: (err: any, data?: CreateCodeSigningConfigCommandOutput) => void): void;
118
+ createCodeSigningConfig(args: CreateCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCodeSigningConfigCommandOutput) => void): void;
119
+ /**
120
+ * <p>Creates a mapping between an event source and an Lambda function. Lambda reads items from the
121
+ * event source and triggers the function.</p>
122
+ * <p>For details about each event source type, see the following topics. </p>
123
+ * <ul>
124
+ * <li>
125
+ * <p>
126
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping">
127
+ * Configuring a Dynamo DB stream as an event source</a>
128
+ * </p>
129
+ * </li>
130
+ * <li>
131
+ * <p>
132
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping">
133
+ * Configuring a Kinesis stream as an event source</a>
134
+ * </p>
135
+ * </li>
136
+ * <li>
137
+ * <p>
138
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource"> Configuring an
139
+ * Amazon SQS queue as an event source</a>
140
+ * </p>
141
+ * </li>
142
+ * <li>
143
+ * <p>
144
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping">
145
+ * Configuring an MQ broker as an event source</a>
146
+ * </p>
147
+ * </li>
148
+ * <li>
149
+ * <p>
150
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html"> Configuring MSK as an event
151
+ * source</a>
152
+ * </p>
153
+ * </li>
154
+ * <li>
155
+ * <p>
156
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html"> Configuring Self-Managed Apache Kafka
157
+ * as an event source</a>
158
+ * </p>
159
+ * </li>
160
+ * </ul>
161
+ *
162
+ * <p>The following error handling options are only available for stream sources (DynamoDB and Kinesis):</p>
163
+ * <ul>
164
+ * <li>
165
+ * <p>
166
+ * <code>BisectBatchOnFunctionError</code> - If the function returns an error, split the batch in two and retry.</p>
167
+ * </li>
168
+ * <li>
169
+ * <p>
170
+ * <code>DestinationConfig</code> - Send discarded records to an Amazon SQS queue or Amazon SNS topic.</p>
171
+ * </li>
172
+ * <li>
173
+ * <p>
174
+ * <code>MaximumRecordAgeInSeconds</code> - Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires</p>
175
+ * </li>
176
+ * <li>
177
+ * <p>
178
+ * <code>MaximumRetryAttempts</code> - Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.</p>
179
+ * </li>
180
+ * <li>
181
+ * <p>
182
+ * <code>ParallelizationFactor</code> - Process multiple batches from each shard concurrently.</p>
183
+ * </li>
184
+ * </ul>
185
+ */
186
+ createEventSourceMapping(args: CreateEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Promise<CreateEventSourceMappingCommandOutput>;
187
+ createEventSourceMapping(args: CreateEventSourceMappingCommandInput, cb: (err: any, data?: CreateEventSourceMappingCommandOutput) => void): void;
188
+ createEventSourceMapping(args: CreateEventSourceMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEventSourceMappingCommandOutput) => void): void;
189
+ /**
190
+ * <p>Creates a Lambda function. To create a function, you need a <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html">deployment package</a> and an <a href="https://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role">execution role</a>. The
191
+ * deployment package is a .zip file archive or container image that contains your function code. The execution role grants the function permission to use Amazon Web Services
192
+ * services, such as Amazon CloudWatch Logs for log streaming and X-Ray for request tracing.</p>
193
+ *
194
+ * <p>You set the package type to <code>Image</code> if the deployment package is a
195
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html">container image</a>. For a container image,
196
+ * the code property must include the URI of a container image in the Amazon ECR registry.
197
+ * You do not need to specify the handler and runtime properties. </p>
198
+ *
199
+ * <p>You set the package type to <code>Zip</code> if the deployment package is a <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html#gettingstarted-package-zip">.zip file
200
+ * archive</a>. For a .zip file archive, the code property specifies the location of the
201
+ * .zip file. You must also specify the handler and runtime properties. The code in the
202
+ * deployment package must be compatible with the target instruction set architecture of the
203
+ * function (<code>x86-64</code> or <code>arm64</code>). If you do not specify the architecture, the default value is
204
+ * <code>x86-64</code>.</p>
205
+ *
206
+ * <p>When you create a function, Lambda provisions an instance of the function and its supporting resources. If
207
+ * your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or
208
+ * modify the function. The <code>State</code>, <code>StateReason</code>, and <code>StateReasonCode</code> fields in
209
+ * the response from <a>GetFunctionConfiguration</a> indicate when the function is ready to invoke. For
210
+ * more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html">Function
211
+ * States</a>.</p>
212
+ *
213
+ * <p>A function has an unpublished version, and can have published versions and aliases. The unpublished version
214
+ * changes when you update your function's code and configuration. A published version is a snapshot of your function
215
+ * code and configuration that can't be changed. An alias is a named resource that maps to a version, and can be
216
+ * changed to map to a different version. Use the <code>Publish</code> parameter to create version <code>1</code> of
217
+ * your function from its initial configuration.</p>
218
+ *
219
+ * <p>The other parameters let you configure version-specific and function-level settings. You can modify
220
+ * version-specific settings later with <a>UpdateFunctionConfiguration</a>. Function-level settings apply
221
+ * to both the unpublished and published versions of the function, and include tags (<a>TagResource</a>)
222
+ * and per-function concurrency limits (<a>PutFunctionConcurrency</a>).</p>
223
+ *
224
+ * <p>You can use code signing if your deployment package is a .zip file archive. To enable code signing for this function,
225
+ * specify the ARN of a code-signing configuration. When a user
226
+ * attempts to deploy a code package with <a>UpdateFunctionCode</a>, Lambda checks that the code
227
+ * package has a valid signature from a trusted publisher. The code-signing configuration
228
+ * includes set set of signing profiles, which define the trusted publishers for this function.</p>
229
+ *
230
+ * <p>If another account or an Amazon Web Services service invokes your function, use <a>AddPermission</a> to grant
231
+ * permission by creating a resource-based IAM policy. You can grant permissions at the function level, on a version,
232
+ * or on an alias.</p>
233
+ *
234
+ * <p>To invoke your function directly, use <a>Invoke</a>. To invoke your function in response to events
235
+ * in other Amazon Web Services services, create an event source mapping (<a>CreateEventSourceMapping</a>), or configure a
236
+ * function trigger in the other service. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-invocation.html">Invoking Functions</a>.</p>
237
+ */
238
+ createFunction(args: CreateFunctionCommandInput, options?: __HttpHandlerOptions): Promise<CreateFunctionCommandOutput>;
239
+ createFunction(args: CreateFunctionCommandInput, cb: (err: any, data?: CreateFunctionCommandOutput) => void): void;
240
+ createFunction(args: CreateFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFunctionCommandOutput) => void): void;
241
+ /**
242
+ * <p>Deletes a Lambda function <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a>.</p>
243
+ */
244
+ deleteAlias(args: DeleteAliasCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAliasCommandOutput>;
245
+ deleteAlias(args: DeleteAliasCommandInput, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
246
+ deleteAlias(args: DeleteAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
247
+ /**
248
+ * <p>Deletes the code signing configuration. You can delete the code signing configuration only if no function is
249
+ * using it. </p>
250
+ */
251
+ deleteCodeSigningConfig(args: DeleteCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCodeSigningConfigCommandOutput>;
252
+ deleteCodeSigningConfig(args: DeleteCodeSigningConfigCommandInput, cb: (err: any, data?: DeleteCodeSigningConfigCommandOutput) => void): void;
253
+ deleteCodeSigningConfig(args: DeleteCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCodeSigningConfigCommandOutput) => void): void;
254
+ /**
255
+ * <p>Deletes an <a href="https://docs.aws.amazon.com/lambda/latest/dg/intro-invocation-modes.html">event source
256
+ * mapping</a>. You can get the identifier of a mapping from the output of <a>ListEventSourceMappings</a>.</p>
257
+ * <p>When you delete an event source mapping, it enters a <code>Deleting</code> state and might not be completely
258
+ * deleted for several seconds.</p>
259
+ */
260
+ deleteEventSourceMapping(args: DeleteEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEventSourceMappingCommandOutput>;
261
+ deleteEventSourceMapping(args: DeleteEventSourceMappingCommandInput, cb: (err: any, data?: DeleteEventSourceMappingCommandOutput) => void): void;
262
+ deleteEventSourceMapping(args: DeleteEventSourceMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventSourceMappingCommandOutput) => void): void;
263
+ /**
264
+ * <p>Deletes a Lambda function. To delete a specific function version, use the <code>Qualifier</code> parameter.
265
+ * Otherwise, all versions and aliases are deleted.</p>
266
+ *
267
+ * <p>To delete Lambda event source mappings that invoke a function, use <a>DeleteEventSourceMapping</a>.
268
+ * For Amazon Web Services services and resources that invoke your function directly, delete the trigger in the service where you
269
+ * originally configured it.</p>
270
+ */
271
+ deleteFunction(args: DeleteFunctionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFunctionCommandOutput>;
272
+ deleteFunction(args: DeleteFunctionCommandInput, cb: (err: any, data?: DeleteFunctionCommandOutput) => void): void;
273
+ deleteFunction(args: DeleteFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFunctionCommandOutput) => void): void;
274
+ /**
275
+ * <p>Removes the code signing configuration from the function.</p>
276
+ */
277
+ deleteFunctionCodeSigningConfig(args: DeleteFunctionCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFunctionCodeSigningConfigCommandOutput>;
278
+ deleteFunctionCodeSigningConfig(args: DeleteFunctionCodeSigningConfigCommandInput, cb: (err: any, data?: DeleteFunctionCodeSigningConfigCommandOutput) => void): void;
279
+ deleteFunctionCodeSigningConfig(args: DeleteFunctionCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFunctionCodeSigningConfigCommandOutput) => void): void;
280
+ /**
281
+ * <p>Removes a concurrent execution limit from a function.</p>
282
+ */
283
+ deleteFunctionConcurrency(args: DeleteFunctionConcurrencyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFunctionConcurrencyCommandOutput>;
284
+ deleteFunctionConcurrency(args: DeleteFunctionConcurrencyCommandInput, cb: (err: any, data?: DeleteFunctionConcurrencyCommandOutput) => void): void;
285
+ deleteFunctionConcurrency(args: DeleteFunctionConcurrencyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFunctionConcurrencyCommandOutput) => void): void;
286
+ /**
287
+ * <p>Deletes the configuration for asynchronous invocation for a function, version, or alias.</p>
288
+ * <p>To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.</p>
289
+ */
290
+ deleteFunctionEventInvokeConfig(args: DeleteFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFunctionEventInvokeConfigCommandOutput>;
291
+ deleteFunctionEventInvokeConfig(args: DeleteFunctionEventInvokeConfigCommandInput, cb: (err: any, data?: DeleteFunctionEventInvokeConfigCommandOutput) => void): void;
292
+ deleteFunctionEventInvokeConfig(args: DeleteFunctionEventInvokeConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFunctionEventInvokeConfigCommandOutput) => void): void;
293
+ /**
294
+ * <p>Deletes a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
295
+ * layer</a>. Deleted versions can no longer be viewed or added to functions. To avoid
296
+ * breaking functions, a copy of the version remains in Lambda until no functions refer to it.</p>
297
+ */
298
+ deleteLayerVersion(args: DeleteLayerVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLayerVersionCommandOutput>;
299
+ deleteLayerVersion(args: DeleteLayerVersionCommandInput, cb: (err: any, data?: DeleteLayerVersionCommandOutput) => void): void;
300
+ deleteLayerVersion(args: DeleteLayerVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLayerVersionCommandOutput) => void): void;
301
+ /**
302
+ * <p>Deletes the provisioned concurrency configuration for a function.</p>
303
+ */
304
+ deleteProvisionedConcurrencyConfig(args: DeleteProvisionedConcurrencyConfigCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProvisionedConcurrencyConfigCommandOutput>;
305
+ deleteProvisionedConcurrencyConfig(args: DeleteProvisionedConcurrencyConfigCommandInput, cb: (err: any, data?: DeleteProvisionedConcurrencyConfigCommandOutput) => void): void;
306
+ deleteProvisionedConcurrencyConfig(args: DeleteProvisionedConcurrencyConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProvisionedConcurrencyConfigCommandOutput) => void): void;
307
+ /**
308
+ * <p>Retrieves details about your account's <a href="https://docs.aws.amazon.com/lambda/latest/dg/limits.html">limits</a> and usage in an Amazon Web Services Region.</p>
309
+ */
310
+ getAccountSettings(args: GetAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountSettingsCommandOutput>;
311
+ getAccountSettings(args: GetAccountSettingsCommandInput, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
312
+ getAccountSettings(args: GetAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
313
+ /**
314
+ * <p>Returns details about a Lambda function <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a>.</p>
315
+ */
316
+ getAlias(args: GetAliasCommandInput, options?: __HttpHandlerOptions): Promise<GetAliasCommandOutput>;
317
+ getAlias(args: GetAliasCommandInput, cb: (err: any, data?: GetAliasCommandOutput) => void): void;
318
+ getAlias(args: GetAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAliasCommandOutput) => void): void;
319
+ /**
320
+ * <p>Returns information about the specified code signing configuration.</p>
321
+ */
322
+ getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetCodeSigningConfigCommandOutput>;
323
+ getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, cb: (err: any, data?: GetCodeSigningConfigCommandOutput) => void): void;
324
+ getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCodeSigningConfigCommandOutput) => void): void;
325
+ /**
326
+ * <p>Returns details about an event source mapping. You can get the identifier of a mapping from the output of
327
+ * <a>ListEventSourceMappings</a>.</p>
328
+ */
329
+ getEventSourceMapping(args: GetEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Promise<GetEventSourceMappingCommandOutput>;
330
+ getEventSourceMapping(args: GetEventSourceMappingCommandInput, cb: (err: any, data?: GetEventSourceMappingCommandOutput) => void): void;
331
+ getEventSourceMapping(args: GetEventSourceMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventSourceMappingCommandOutput) => void): void;
332
+ /**
333
+ * <p>Returns information about the function or function version, with a link to download the deployment package
334
+ * that's valid for 10 minutes. If you specify a function version, only details that are specific to that version are
335
+ * returned.</p>
336
+ */
337
+ getFunction(args: GetFunctionCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionCommandOutput>;
338
+ getFunction(args: GetFunctionCommandInput, cb: (err: any, data?: GetFunctionCommandOutput) => void): void;
339
+ getFunction(args: GetFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionCommandOutput) => void): void;
340
+ /**
341
+ * <p>Returns the code signing configuration for the specified function.</p>
342
+ */
343
+ getFunctionCodeSigningConfig(args: GetFunctionCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionCodeSigningConfigCommandOutput>;
344
+ getFunctionCodeSigningConfig(args: GetFunctionCodeSigningConfigCommandInput, cb: (err: any, data?: GetFunctionCodeSigningConfigCommandOutput) => void): void;
345
+ getFunctionCodeSigningConfig(args: GetFunctionCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionCodeSigningConfigCommandOutput) => void): void;
346
+ /**
347
+ * <p>Returns details about the reserved concurrency configuration for a function. To set a concurrency limit for a
348
+ * function, use <a>PutFunctionConcurrency</a>.</p>
349
+ */
350
+ getFunctionConcurrency(args: GetFunctionConcurrencyCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionConcurrencyCommandOutput>;
351
+ getFunctionConcurrency(args: GetFunctionConcurrencyCommandInput, cb: (err: any, data?: GetFunctionConcurrencyCommandOutput) => void): void;
352
+ getFunctionConcurrency(args: GetFunctionConcurrencyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionConcurrencyCommandOutput) => void): void;
353
+ /**
354
+ * <p>Returns the version-specific settings of a Lambda function or version. The output includes only options that
355
+ * can vary between versions of a function. To modify these settings, use <a>UpdateFunctionConfiguration</a>.</p>
356
+ * <p>To get all of a function's details, including function-level settings, use <a>GetFunction</a>.</p>
357
+ */
358
+ getFunctionConfiguration(args: GetFunctionConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionConfigurationCommandOutput>;
359
+ getFunctionConfiguration(args: GetFunctionConfigurationCommandInput, cb: (err: any, data?: GetFunctionConfigurationCommandOutput) => void): void;
360
+ getFunctionConfiguration(args: GetFunctionConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionConfigurationCommandOutput) => void): void;
361
+ /**
362
+ * <p>Retrieves the configuration for asynchronous invocation for a function, version, or alias.</p>
363
+ * <p>To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.</p>
364
+ */
365
+ getFunctionEventInvokeConfig(args: GetFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionEventInvokeConfigCommandOutput>;
366
+ getFunctionEventInvokeConfig(args: GetFunctionEventInvokeConfigCommandInput, cb: (err: any, data?: GetFunctionEventInvokeConfigCommandOutput) => void): void;
367
+ getFunctionEventInvokeConfig(args: GetFunctionEventInvokeConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionEventInvokeConfigCommandOutput) => void): void;
368
+ /**
369
+ * <p>Returns information about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
370
+ * layer</a>, with a link to download the layer archive
371
+ * that's valid for 10 minutes.</p>
372
+ */
373
+ getLayerVersion(args: GetLayerVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetLayerVersionCommandOutput>;
374
+ getLayerVersion(args: GetLayerVersionCommandInput, cb: (err: any, data?: GetLayerVersionCommandOutput) => void): void;
375
+ getLayerVersion(args: GetLayerVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLayerVersionCommandOutput) => void): void;
376
+ /**
377
+ * <p>Returns information about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
378
+ * layer</a>, with a link to download the layer archive
379
+ * that's valid for 10 minutes.</p>
380
+ */
381
+ getLayerVersionByArn(args: GetLayerVersionByArnCommandInput, options?: __HttpHandlerOptions): Promise<GetLayerVersionByArnCommandOutput>;
382
+ getLayerVersionByArn(args: GetLayerVersionByArnCommandInput, cb: (err: any, data?: GetLayerVersionByArnCommandOutput) => void): void;
383
+ getLayerVersionByArn(args: GetLayerVersionByArnCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLayerVersionByArnCommandOutput) => void): void;
384
+ /**
385
+ * <p>Returns the permission policy for a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
386
+ * layer</a>. For more information, see <a>AddLayerVersionPermission</a>.</p>
387
+ */
388
+ getLayerVersionPolicy(args: GetLayerVersionPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetLayerVersionPolicyCommandOutput>;
389
+ getLayerVersionPolicy(args: GetLayerVersionPolicyCommandInput, cb: (err: any, data?: GetLayerVersionPolicyCommandOutput) => void): void;
390
+ getLayerVersionPolicy(args: GetLayerVersionPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLayerVersionPolicyCommandOutput) => void): void;
391
+ /**
392
+ * <p>Returns the <a href="https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html">resource-based IAM policy</a> for a function, version, or alias.</p>
393
+ */
394
+ getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyCommandOutput>;
395
+ getPolicy(args: GetPolicyCommandInput, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
396
+ getPolicy(args: GetPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
397
+ /**
398
+ * <p>Retrieves the provisioned concurrency configuration for a function's alias or version.</p>
399
+ */
400
+ getProvisionedConcurrencyConfig(args: GetProvisionedConcurrencyConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetProvisionedConcurrencyConfigCommandOutput>;
401
+ getProvisionedConcurrencyConfig(args: GetProvisionedConcurrencyConfigCommandInput, cb: (err: any, data?: GetProvisionedConcurrencyConfigCommandOutput) => void): void;
402
+ getProvisionedConcurrencyConfig(args: GetProvisionedConcurrencyConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProvisionedConcurrencyConfigCommandOutput) => void): void;
403
+ /**
404
+ * <p>Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or
405
+ * asynchronously. To invoke a function asynchronously, set <code>InvocationType</code> to <code>Event</code>.</p>
406
+ *
407
+ * <p>For <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-sync.html">synchronous invocation</a>,
408
+ * details about the function response, including errors, are included in the response body and headers. For either
409
+ * invocation type, you can find more information in the <a href="https://docs.aws.amazon.com/lambda/latest/dg/monitoring-functions.html">execution log</a> and <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-x-ray.html">trace</a>.</p>
410
+ *
411
+ * <p>When an error occurs, your function may be invoked multiple times. Retry behavior varies by error type,
412
+ * client, event source, and invocation type. For example, if you invoke a function asynchronously and it returns an
413
+ * error, Lambda executes the function up to two more times. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/retries-on-errors.html">Retry Behavior</a>.</p>
414
+ *
415
+ * <p>For <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html">asynchronous invocation</a>,
416
+ * Lambda adds events to a queue before sending them to your function. If your function does not have enough capacity
417
+ * to keep up with the queue, events may be lost. Occasionally, your function may receive the same event multiple
418
+ * times, even if no error occurs. To retain events that were not processed, configure your function with a <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq">dead-letter queue</a>.</p>
419
+ *
420
+ * <p>The status code in the API response doesn't reflect function errors. Error codes are reserved for errors that
421
+ * prevent your function from executing, such as permissions errors, <a href="https://docs.aws.amazon.com/lambda/latest/dg/limits.html">limit errors</a>, or issues with your function's code and configuration.
422
+ * For example, Lambda returns <code>TooManyRequestsException</code> if executing the function would cause you to
423
+ * exceed a concurrency limit at either the account level (<code>ConcurrentInvocationLimitExceeded</code>) or
424
+ * function level (<code>ReservedFunctionConcurrentInvocationLimitExceeded</code>).</p>
425
+ *
426
+ * <p>For functions with a long timeout, your client might be disconnected during synchronous invocation while it
427
+ * waits for a response. Configure your HTTP client, SDK, firewall, proxy, or operating system to allow for long
428
+ * connections with timeout or keep-alive settings.</p>
429
+ *
430
+ * <p>This operation requires permission for the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_awslambda.html">lambda:InvokeFunction</a> action.</p>
431
+ */
432
+ invoke(args: InvokeCommandInput, options?: __HttpHandlerOptions): Promise<InvokeCommandOutput>;
433
+ invoke(args: InvokeCommandInput, cb: (err: any, data?: InvokeCommandOutput) => void): void;
434
+ invoke(args: InvokeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InvokeCommandOutput) => void): void;
435
+ /**
436
+ * @deprecated
437
+ *
438
+ * <important>
439
+ * <p>For asynchronous function invocation, use <a>Invoke</a>.</p>
440
+ * </important>
441
+ * <p>Invokes a function asynchronously.</p>
442
+ */
443
+ invokeAsync(args: InvokeAsyncCommandInput, options?: __HttpHandlerOptions): Promise<InvokeAsyncCommandOutput>;
444
+ invokeAsync(args: InvokeAsyncCommandInput, cb: (err: any, data?: InvokeAsyncCommandOutput) => void): void;
445
+ invokeAsync(args: InvokeAsyncCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InvokeAsyncCommandOutput) => void): void;
446
+ /**
447
+ * <p>Returns a list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">aliases</a>
448
+ * for a Lambda function.</p>
449
+ */
450
+ listAliases(args: ListAliasesCommandInput, options?: __HttpHandlerOptions): Promise<ListAliasesCommandOutput>;
451
+ listAliases(args: ListAliasesCommandInput, cb: (err: any, data?: ListAliasesCommandOutput) => void): void;
452
+ listAliases(args: ListAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAliasesCommandOutput) => void): void;
453
+ /**
454
+ * <p>Returns a list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuring-codesigning.html">code
455
+ * signing configurations</a>. A request returns up to 10,000 configurations per
456
+ * call. You can use the <code>MaxItems</code> parameter to return fewer configurations per call. </p>
457
+ */
458
+ listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListCodeSigningConfigsCommandOutput>;
459
+ listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, cb: (err: any, data?: ListCodeSigningConfigsCommandOutput) => void): void;
460
+ listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCodeSigningConfigsCommandOutput) => void): void;
461
+ /**
462
+ * <p>Lists event source mappings. Specify an <code>EventSourceArn</code> to only show event source mappings for a
463
+ * single event source.</p>
464
+ */
465
+ listEventSourceMappings(args: ListEventSourceMappingsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventSourceMappingsCommandOutput>;
466
+ listEventSourceMappings(args: ListEventSourceMappingsCommandInput, cb: (err: any, data?: ListEventSourceMappingsCommandOutput) => void): void;
467
+ listEventSourceMappings(args: ListEventSourceMappingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventSourceMappingsCommandOutput) => void): void;
468
+ /**
469
+ * <p>Retrieves a list of configurations for asynchronous invocation for a function.</p>
470
+ * <p>To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.</p>
471
+ */
472
+ listFunctionEventInvokeConfigs(args: ListFunctionEventInvokeConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionEventInvokeConfigsCommandOutput>;
473
+ listFunctionEventInvokeConfigs(args: ListFunctionEventInvokeConfigsCommandInput, cb: (err: any, data?: ListFunctionEventInvokeConfigsCommandOutput) => void): void;
474
+ listFunctionEventInvokeConfigs(args: ListFunctionEventInvokeConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionEventInvokeConfigsCommandOutput) => void): void;
475
+ /**
476
+ * <p>Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50
477
+ * functions per call.</p>
478
+ * <p>Set <code>FunctionVersion</code> to <code>ALL</code> to include all published versions of each function in
479
+ * addition to the unpublished version. </p>
480
+ * <note>
481
+ * <p>The <code>ListFunctions</code> action returns a subset of the <a>FunctionConfiguration</a> fields.
482
+ * To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus, LastUpdateStatusReason, LastUpdateStatusReasonCode)
483
+ * for a function or version, use <a>GetFunction</a>.</p>
484
+ * </note>
485
+ */
486
+ listFunctions(args: ListFunctionsCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionsCommandOutput>;
487
+ listFunctions(args: ListFunctionsCommandInput, cb: (err: any, data?: ListFunctionsCommandOutput) => void): void;
488
+ listFunctions(args: ListFunctionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionsCommandOutput) => void): void;
489
+ /**
490
+ * <p>List the functions that use the specified code signing configuration. You can use this method prior to deleting a
491
+ * code signing configuration, to verify that no functions are using it.</p>
492
+ */
493
+ listFunctionsByCodeSigningConfig(args: ListFunctionsByCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionsByCodeSigningConfigCommandOutput>;
494
+ listFunctionsByCodeSigningConfig(args: ListFunctionsByCodeSigningConfigCommandInput, cb: (err: any, data?: ListFunctionsByCodeSigningConfigCommandOutput) => void): void;
495
+ listFunctionsByCodeSigningConfig(args: ListFunctionsByCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionsByCodeSigningConfigCommandOutput) => void): void;
496
+ /**
497
+ * <p>Lists <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-layers.html">Lambda
498
+ * layers</a> and shows information about the latest version of each. Specify a
499
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime
500
+ * identifier</a> to list only layers that indicate that they're compatible with that
501
+ * runtime. Specify a compatible architecture to include only layers that are compatible with
502
+ * that <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architecture</a>.</p>
503
+ */
504
+ listLayers(args: ListLayersCommandInput, options?: __HttpHandlerOptions): Promise<ListLayersCommandOutput>;
505
+ listLayers(args: ListLayersCommandInput, cb: (err: any, data?: ListLayersCommandOutput) => void): void;
506
+ listLayers(args: ListLayersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLayersCommandOutput) => void): void;
507
+ /**
508
+ * <p>Lists the versions of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
509
+ * layer</a>. Versions that have been deleted aren't listed. Specify a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime identifier</a> to list only
510
+ * versions that indicate that they're compatible with that runtime. Specify a compatible architecture to include only
511
+ * layer versions that are compatible with that architecture.</p>
512
+ */
513
+ listLayerVersions(args: ListLayerVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListLayerVersionsCommandOutput>;
514
+ listLayerVersions(args: ListLayerVersionsCommandInput, cb: (err: any, data?: ListLayerVersionsCommandOutput) => void): void;
515
+ listLayerVersions(args: ListLayerVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLayerVersionsCommandOutput) => void): void;
516
+ /**
517
+ * <p>Retrieves a list of provisioned concurrency configurations for a function.</p>
518
+ */
519
+ listProvisionedConcurrencyConfigs(args: ListProvisionedConcurrencyConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListProvisionedConcurrencyConfigsCommandOutput>;
520
+ listProvisionedConcurrencyConfigs(args: ListProvisionedConcurrencyConfigsCommandInput, cb: (err: any, data?: ListProvisionedConcurrencyConfigsCommandOutput) => void): void;
521
+ listProvisionedConcurrencyConfigs(args: ListProvisionedConcurrencyConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProvisionedConcurrencyConfigsCommandOutput) => void): void;
522
+ /**
523
+ * <p>Returns a function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>. You can
524
+ * also view tags with <a>GetFunction</a>.</p>
525
+ */
526
+ listTags(args: ListTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsCommandOutput>;
527
+ listTags(args: ListTagsCommandInput, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
528
+ listTags(args: ListTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
529
+ /**
530
+ * <p>Returns a list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">versions</a>,
531
+ * with the version-specific configuration of each. Lambda returns up to 50 versions per call.</p>
532
+ */
533
+ listVersionsByFunction(args: ListVersionsByFunctionCommandInput, options?: __HttpHandlerOptions): Promise<ListVersionsByFunctionCommandOutput>;
534
+ listVersionsByFunction(args: ListVersionsByFunctionCommandInput, cb: (err: any, data?: ListVersionsByFunctionCommandOutput) => void): void;
535
+ listVersionsByFunction(args: ListVersionsByFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVersionsByFunctionCommandOutput) => void): void;
536
+ /**
537
+ * <p>Creates an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
538
+ * layer</a> from a ZIP archive. Each time you call <code>PublishLayerVersion</code> with the same
539
+ * layer name, a new version is created.</p>
540
+ * <p>Add layers to your function with <a>CreateFunction</a> or <a>UpdateFunctionConfiguration</a>.</p>
541
+ */
542
+ publishLayerVersion(args: PublishLayerVersionCommandInput, options?: __HttpHandlerOptions): Promise<PublishLayerVersionCommandOutput>;
543
+ publishLayerVersion(args: PublishLayerVersionCommandInput, cb: (err: any, data?: PublishLayerVersionCommandOutput) => void): void;
544
+ publishLayerVersion(args: PublishLayerVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishLayerVersionCommandOutput) => void): void;
545
+ /**
546
+ * <p>Creates a <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">version</a> from the
547
+ * current code and configuration of a function. Use versions to create a snapshot of your function code and
548
+ * configuration that doesn't change.</p>
549
+ *
550
+ * <p>Lambda doesn't publish a version if the function's configuration and code haven't changed since the last
551
+ * version. Use <a>UpdateFunctionCode</a> or <a>UpdateFunctionConfiguration</a> to update the
552
+ * function before publishing a version.</p>
553
+ *
554
+ * <p>Clients can invoke versions directly or with an alias. To create an alias, use <a>CreateAlias</a>.</p>
555
+ */
556
+ publishVersion(args: PublishVersionCommandInput, options?: __HttpHandlerOptions): Promise<PublishVersionCommandOutput>;
557
+ publishVersion(args: PublishVersionCommandInput, cb: (err: any, data?: PublishVersionCommandOutput) => void): void;
558
+ publishVersion(args: PublishVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishVersionCommandOutput) => void): void;
559
+ /**
560
+ * <p>Update the code signing configuration for the function. Changes to the code signing configuration take effect the
561
+ * next time a user tries to deploy a code package to the function. </p>
562
+ */
563
+ putFunctionCodeSigningConfig(args: PutFunctionCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Promise<PutFunctionCodeSigningConfigCommandOutput>;
564
+ putFunctionCodeSigningConfig(args: PutFunctionCodeSigningConfigCommandInput, cb: (err: any, data?: PutFunctionCodeSigningConfigCommandOutput) => void): void;
565
+ putFunctionCodeSigningConfig(args: PutFunctionCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutFunctionCodeSigningConfigCommandOutput) => void): void;
566
+ /**
567
+ * <p>Sets the maximum number of simultaneous executions for a function, and reserves capacity for that concurrency
568
+ * level.</p>
569
+ * <p>Concurrency settings apply to the function as a whole, including all published versions and the unpublished
570
+ * version. Reserving concurrency both ensures that your function has capacity to process the specified number of
571
+ * events simultaneously, and prevents it from scaling beyond that level. Use <a>GetFunction</a> to see
572
+ * the current setting for a function.</p>
573
+ * <p>Use <a>GetAccountSettings</a> to see your Regional concurrency limit. You can reserve concurrency
574
+ * for as many functions as you like, as long as you leave at least 100 simultaneous executions unreserved for
575
+ * functions that aren't configured with a per-function limit. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html">Managing Concurrency</a>.</p>
576
+ */
577
+ putFunctionConcurrency(args: PutFunctionConcurrencyCommandInput, options?: __HttpHandlerOptions): Promise<PutFunctionConcurrencyCommandOutput>;
578
+ putFunctionConcurrency(args: PutFunctionConcurrencyCommandInput, cb: (err: any, data?: PutFunctionConcurrencyCommandOutput) => void): void;
579
+ putFunctionConcurrency(args: PutFunctionConcurrencyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutFunctionConcurrencyCommandOutput) => void): void;
580
+ /**
581
+ * <p>Configures options for <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html">asynchronous
582
+ * invocation</a> on a function, version, or alias. If a configuration already exists for a function, version,
583
+ * or alias, this operation overwrites it. If you exclude any settings, they are removed. To set one option without
584
+ * affecting existing settings for other options, use <a>UpdateFunctionEventInvokeConfig</a>.</p>
585
+ * <p>By default, Lambda retries an asynchronous invocation twice if the function returns an error. It retains
586
+ * events in a queue for up to six hours. When an event fails all processing attempts or stays in the asynchronous
587
+ * invocation queue for too long, Lambda discards it. To retain discarded events, configure a dead-letter queue with
588
+ * <a>UpdateFunctionConfiguration</a>.</p>
589
+ * <p>To send an invocation record to a queue, topic, function, or event bus, specify a <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations">destination</a>. You can configure separate destinations for successful invocations (on-success) and events
590
+ * that fail all processing attempts (on-failure). You can configure destinations in addition to or instead of a
591
+ * dead-letter queue.</p>
592
+ */
593
+ putFunctionEventInvokeConfig(args: PutFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Promise<PutFunctionEventInvokeConfigCommandOutput>;
594
+ putFunctionEventInvokeConfig(args: PutFunctionEventInvokeConfigCommandInput, cb: (err: any, data?: PutFunctionEventInvokeConfigCommandOutput) => void): void;
595
+ putFunctionEventInvokeConfig(args: PutFunctionEventInvokeConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutFunctionEventInvokeConfigCommandOutput) => void): void;
596
+ /**
597
+ * <p>Adds a provisioned concurrency configuration to a function's alias or version.</p>
598
+ */
599
+ putProvisionedConcurrencyConfig(args: PutProvisionedConcurrencyConfigCommandInput, options?: __HttpHandlerOptions): Promise<PutProvisionedConcurrencyConfigCommandOutput>;
600
+ putProvisionedConcurrencyConfig(args: PutProvisionedConcurrencyConfigCommandInput, cb: (err: any, data?: PutProvisionedConcurrencyConfigCommandOutput) => void): void;
601
+ putProvisionedConcurrencyConfig(args: PutProvisionedConcurrencyConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutProvisionedConcurrencyConfigCommandOutput) => void): void;
602
+ /**
603
+ * <p>Removes a statement from the permissions policy for a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
604
+ * layer</a>. For more information, see
605
+ * <a>AddLayerVersionPermission</a>.</p>
606
+ */
607
+ removeLayerVersionPermission(args: RemoveLayerVersionPermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemoveLayerVersionPermissionCommandOutput>;
608
+ removeLayerVersionPermission(args: RemoveLayerVersionPermissionCommandInput, cb: (err: any, data?: RemoveLayerVersionPermissionCommandOutput) => void): void;
609
+ removeLayerVersionPermission(args: RemoveLayerVersionPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveLayerVersionPermissionCommandOutput) => void): void;
610
+ /**
611
+ * <p>Revokes function-use permission from an Amazon Web Services service or another account. You can get the ID of the statement
612
+ * from the output of <a>GetPolicy</a>.</p>
613
+ */
614
+ removePermission(args: RemovePermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemovePermissionCommandOutput>;
615
+ removePermission(args: RemovePermissionCommandInput, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
616
+ removePermission(args: RemovePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
617
+ /**
618
+ * <p>Adds <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> to a function.</p>
619
+ */
620
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
621
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
622
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
623
+ /**
624
+ * <p>Removes <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> from a function.</p>
625
+ */
626
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
627
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
628
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
629
+ /**
630
+ * <p>Updates the configuration of a Lambda function <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a>.</p>
631
+ */
632
+ updateAlias(args: UpdateAliasCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAliasCommandOutput>;
633
+ updateAlias(args: UpdateAliasCommandInput, cb: (err: any, data?: UpdateAliasCommandOutput) => void): void;
634
+ updateAlias(args: UpdateAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAliasCommandOutput) => void): void;
635
+ /**
636
+ * <p>Update the code signing configuration. Changes to the code signing configuration take effect the next time a
637
+ * user tries to deploy a code package to the function. </p>
638
+ */
639
+ updateCodeSigningConfig(args: UpdateCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCodeSigningConfigCommandOutput>;
640
+ updateCodeSigningConfig(args: UpdateCodeSigningConfigCommandInput, cb: (err: any, data?: UpdateCodeSigningConfigCommandOutput) => void): void;
641
+ updateCodeSigningConfig(args: UpdateCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCodeSigningConfigCommandOutput) => void): void;
642
+ /**
643
+ * <p>Updates an event source mapping. You can change the function that Lambda invokes, or pause
644
+ * invocation and resume later from the same location.</p>
645
+ *
646
+ * <p>The following error handling options are only available for stream sources (DynamoDB and Kinesis):</p>
647
+ * <ul>
648
+ * <li>
649
+ * <p>
650
+ * <code>BisectBatchOnFunctionError</code> - If the function returns an error, split the batch in two and retry.</p>
651
+ * </li>
652
+ * <li>
653
+ * <p>
654
+ * <code>DestinationConfig</code> - Send discarded records to an Amazon SQS queue or Amazon SNS topic.</p>
655
+ * </li>
656
+ * <li>
657
+ * <p>
658
+ * <code>MaximumRecordAgeInSeconds</code> - Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires</p>
659
+ * </li>
660
+ * <li>
661
+ * <p>
662
+ * <code>MaximumRetryAttempts</code> - Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.</p>
663
+ * </li>
664
+ * <li>
665
+ * <p>
666
+ * <code>ParallelizationFactor</code> - Process multiple batches from each shard concurrently.</p>
667
+ * </li>
668
+ * </ul>
669
+ */
670
+ updateEventSourceMapping(args: UpdateEventSourceMappingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventSourceMappingCommandOutput>;
671
+ updateEventSourceMapping(args: UpdateEventSourceMappingCommandInput, cb: (err: any, data?: UpdateEventSourceMappingCommandOutput) => void): void;
672
+ updateEventSourceMapping(args: UpdateEventSourceMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventSourceMappingCommandOutput) => void): void;
673
+ /**
674
+ * <p>Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed
675
+ * by a trusted publisher. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-trustedcode.html">Configuring code signing</a>.</p>
676
+ *
677
+ * <p>The function's code is locked when you publish a version. You can't modify the code of a published version,
678
+ * only the unpublished version.</p>
679
+ * <note>
680
+ * <p>For a function defined as a container image, Lambda resolves the image tag to an image digest. In Amazon ECR, if
681
+ * you update the image tag to a new image, Lambda does not automatically update the function.</p>
682
+ * </note>
683
+ */
684
+ updateFunctionCode(args: UpdateFunctionCodeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFunctionCodeCommandOutput>;
685
+ updateFunctionCode(args: UpdateFunctionCodeCommandInput, cb: (err: any, data?: UpdateFunctionCodeCommandOutput) => void): void;
686
+ updateFunctionCode(args: UpdateFunctionCodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFunctionCodeCommandOutput) => void): void;
687
+ /**
688
+ * <p>Modify the version-specific settings of a Lambda function.</p>
689
+ *
690
+ * <p>When you update a function, Lambda provisions an instance of the function and its supporting resources. If
691
+ * your function connects to a VPC, this process can take a minute. During this time, you can't modify the function,
692
+ * but you can still invoke it. The <code>LastUpdateStatus</code>, <code>LastUpdateStatusReason</code>, and
693
+ * <code>LastUpdateStatusReasonCode</code> fields in the response from <a>GetFunctionConfiguration</a>
694
+ * indicate when the update is complete and the function is processing events with the new configuration. For more
695
+ * information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html">Function
696
+ * States</a>.</p>
697
+ *
698
+ * <p>These settings can vary between versions of a function and are locked when you publish a version. You can't
699
+ * modify the configuration of a published version, only the unpublished version.</p>
700
+ *
701
+ * <p>To configure function concurrency, use <a>PutFunctionConcurrency</a>. To grant invoke permissions
702
+ * to an account or Amazon Web Services service, use <a>AddPermission</a>.</p>
703
+ */
704
+ updateFunctionConfiguration(args: UpdateFunctionConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFunctionConfigurationCommandOutput>;
705
+ updateFunctionConfiguration(args: UpdateFunctionConfigurationCommandInput, cb: (err: any, data?: UpdateFunctionConfigurationCommandOutput) => void): void;
706
+ updateFunctionConfiguration(args: UpdateFunctionConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFunctionConfigurationCommandOutput) => void): void;
707
+ /**
708
+ * <p>Updates the configuration for asynchronous invocation for a function, version, or alias.</p>
709
+ * <p>To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.</p>
710
+ */
711
+ updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFunctionEventInvokeConfigCommandOutput>;
712
+ updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, cb: (err: any, data?: UpdateFunctionEventInvokeConfigCommandOutput) => void): void;
713
+ updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFunctionEventInvokeConfigCommandOutput) => void): void;
714
+ }