@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,4706 @@
1
+ /// <reference types="node" />
2
+ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
3
+ import { Readable } from "stream";
4
+ /**
5
+ * <p>Limits that are related to concurrency and storage. All file and storage sizes are in bytes.</p>
6
+ */
7
+ export interface AccountLimit {
8
+ /**
9
+ * <p>The amount of storage space that you can use for all deployment packages and layer archives.</p>
10
+ */
11
+ TotalCodeSize?: number;
12
+ /**
13
+ * <p>The maximum size of a function's deployment package and layers when they're extracted.</p>
14
+ */
15
+ CodeSizeUnzipped?: number;
16
+ /**
17
+ * <p>The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger
18
+ * files.</p>
19
+ */
20
+ CodeSizeZipped?: number;
21
+ /**
22
+ * <p>The maximum number of simultaneous function executions.</p>
23
+ */
24
+ ConcurrentExecutions?: number;
25
+ /**
26
+ * <p>The maximum number of simultaneous function executions, minus the capacity that's reserved for individual
27
+ * functions with <a>PutFunctionConcurrency</a>.</p>
28
+ */
29
+ UnreservedConcurrentExecutions?: number;
30
+ }
31
+ export declare namespace AccountLimit {
32
+ /**
33
+ * @internal
34
+ */
35
+ const filterSensitiveLog: (obj: AccountLimit) => any;
36
+ }
37
+ /**
38
+ * <p>The number of functions and amount of storage in use.</p>
39
+ */
40
+ export interface AccountUsage {
41
+ /**
42
+ * <p>The amount of storage space, in bytes, that's being used by deployment packages and layer archives.</p>
43
+ */
44
+ TotalCodeSize?: number;
45
+ /**
46
+ * <p>The number of Lambda functions.</p>
47
+ */
48
+ FunctionCount?: number;
49
+ }
50
+ export declare namespace AccountUsage {
51
+ /**
52
+ * @internal
53
+ */
54
+ const filterSensitiveLog: (obj: AccountUsage) => any;
55
+ }
56
+ export interface AddLayerVersionPermissionRequest {
57
+ /**
58
+ * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
59
+ */
60
+ LayerName: string | undefined;
61
+ /**
62
+ * <p>The version number.</p>
63
+ */
64
+ VersionNumber: number | undefined;
65
+ /**
66
+ * <p>An identifier that distinguishes the policy from others on the same layer version.</p>
67
+ */
68
+ StatementId: string | undefined;
69
+ /**
70
+ * <p>The API action that grants access to the layer. For example, <code>lambda:GetLayerVersion</code>.</p>
71
+ */
72
+ Action: string | undefined;
73
+ /**
74
+ * <p>An account ID, or <code>*</code> to grant layer usage permission to all
75
+ * accounts in an organization, or all Amazon Web Services accounts (if <code>organizationId</code> is not specified).
76
+ * For the last case, make sure that you really do want all Amazon Web Services accounts to have usage permission to this layer.
77
+ * </p>
78
+ */
79
+ Principal: string | undefined;
80
+ /**
81
+ * <p>With the principal set to <code>*</code>, grant permission to all accounts in the specified
82
+ * organization.</p>
83
+ */
84
+ OrganizationId?: string;
85
+ /**
86
+ * <p>Only update the policy if the revision ID matches the ID specified. Use this option to avoid modifying a
87
+ * policy that has changed since you last read it.</p>
88
+ */
89
+ RevisionId?: string;
90
+ }
91
+ export declare namespace AddLayerVersionPermissionRequest {
92
+ /**
93
+ * @internal
94
+ */
95
+ const filterSensitiveLog: (obj: AddLayerVersionPermissionRequest) => any;
96
+ }
97
+ export interface AddLayerVersionPermissionResponse {
98
+ /**
99
+ * <p>The permission statement.</p>
100
+ */
101
+ Statement?: string;
102
+ /**
103
+ * <p>A unique identifier for the current revision of the policy.</p>
104
+ */
105
+ RevisionId?: string;
106
+ }
107
+ export declare namespace AddLayerVersionPermissionResponse {
108
+ /**
109
+ * @internal
110
+ */
111
+ const filterSensitiveLog: (obj: AddLayerVersionPermissionResponse) => any;
112
+ }
113
+ /**
114
+ * <p>One of the parameters in the request is invalid.</p>
115
+ */
116
+ export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer {
117
+ name: "InvalidParameterValueException";
118
+ $fault: "client";
119
+ /**
120
+ * <p>The exception type.</p>
121
+ */
122
+ Type?: string;
123
+ /**
124
+ * <p>The exception message.</p>
125
+ */
126
+ message?: string;
127
+ }
128
+ export declare namespace InvalidParameterValueException {
129
+ /**
130
+ * @internal
131
+ */
132
+ const filterSensitiveLog: (obj: InvalidParameterValueException) => any;
133
+ }
134
+ /**
135
+ * <p>The permissions policy for the resource is too large. <a href="https://docs.aws.amazon.com/lambda/latest/dg/limits.html">Learn more</a>
136
+ * </p>
137
+ */
138
+ export interface PolicyLengthExceededException extends __SmithyException, $MetadataBearer {
139
+ name: "PolicyLengthExceededException";
140
+ $fault: "client";
141
+ Type?: string;
142
+ message?: string;
143
+ }
144
+ export declare namespace PolicyLengthExceededException {
145
+ /**
146
+ * @internal
147
+ */
148
+ const filterSensitiveLog: (obj: PolicyLengthExceededException) => any;
149
+ }
150
+ /**
151
+ * <p>The RevisionId provided does not match the latest RevisionId for the Lambda function or alias. Call the
152
+ * <code>GetFunction</code> or the <code>GetAlias</code> API to retrieve the latest RevisionId for your
153
+ * resource.</p>
154
+ */
155
+ export interface PreconditionFailedException extends __SmithyException, $MetadataBearer {
156
+ name: "PreconditionFailedException";
157
+ $fault: "client";
158
+ /**
159
+ * <p>The exception type.</p>
160
+ */
161
+ Type?: string;
162
+ /**
163
+ * <p>The exception message.</p>
164
+ */
165
+ message?: string;
166
+ }
167
+ export declare namespace PreconditionFailedException {
168
+ /**
169
+ * @internal
170
+ */
171
+ const filterSensitiveLog: (obj: PreconditionFailedException) => any;
172
+ }
173
+ /**
174
+ * <p>The resource already exists, or another operation is in progress.</p>
175
+ */
176
+ export interface ResourceConflictException extends __SmithyException, $MetadataBearer {
177
+ name: "ResourceConflictException";
178
+ $fault: "client";
179
+ /**
180
+ * <p>The exception type.</p>
181
+ */
182
+ Type?: string;
183
+ /**
184
+ * <p>The exception message.</p>
185
+ */
186
+ message?: string;
187
+ }
188
+ export declare namespace ResourceConflictException {
189
+ /**
190
+ * @internal
191
+ */
192
+ const filterSensitiveLog: (obj: ResourceConflictException) => any;
193
+ }
194
+ /**
195
+ * <p>The resource specified in the request does not exist.</p>
196
+ */
197
+ export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
198
+ name: "ResourceNotFoundException";
199
+ $fault: "client";
200
+ Type?: string;
201
+ Message?: string;
202
+ }
203
+ export declare namespace ResourceNotFoundException {
204
+ /**
205
+ * @internal
206
+ */
207
+ const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
208
+ }
209
+ /**
210
+ * <p>The Lambda service encountered an internal error.</p>
211
+ */
212
+ export interface ServiceException extends __SmithyException, $MetadataBearer {
213
+ name: "ServiceException";
214
+ $fault: "server";
215
+ Type?: string;
216
+ Message?: string;
217
+ }
218
+ export declare namespace ServiceException {
219
+ /**
220
+ * @internal
221
+ */
222
+ const filterSensitiveLog: (obj: ServiceException) => any;
223
+ }
224
+ export declare enum ThrottleReason {
225
+ CallerRateLimitExceeded = "CallerRateLimitExceeded",
226
+ ConcurrentInvocationLimitExceeded = "ConcurrentInvocationLimitExceeded",
227
+ FunctionInvocationRateLimitExceeded = "FunctionInvocationRateLimitExceeded",
228
+ ReservedFunctionConcurrentInvocationLimitExceeded = "ReservedFunctionConcurrentInvocationLimitExceeded",
229
+ ReservedFunctionInvocationRateLimitExceeded = "ReservedFunctionInvocationRateLimitExceeded"
230
+ }
231
+ /**
232
+ * <p>The request throughput limit was exceeded.</p>
233
+ */
234
+ export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
235
+ name: "TooManyRequestsException";
236
+ $fault: "client";
237
+ /**
238
+ * <p>The number of seconds the caller should wait before retrying.</p>
239
+ */
240
+ retryAfterSeconds?: string;
241
+ Type?: string;
242
+ message?: string;
243
+ Reason?: ThrottleReason | string;
244
+ }
245
+ export declare namespace TooManyRequestsException {
246
+ /**
247
+ * @internal
248
+ */
249
+ const filterSensitiveLog: (obj: TooManyRequestsException) => any;
250
+ }
251
+ export interface AddPermissionRequest {
252
+ /**
253
+ * <p>The name of the Lambda function, version, or alias.</p>
254
+ * <p class="title">
255
+ * <b>Name formats</b>
256
+ * </p>
257
+ * <ul>
258
+ * <li>
259
+ * <p>
260
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
261
+ * </li>
262
+ * <li>
263
+ * <p>
264
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
265
+ * </li>
266
+ * <li>
267
+ * <p>
268
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
269
+ * </li>
270
+ * </ul>
271
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
272
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
273
+ */
274
+ FunctionName: string | undefined;
275
+ /**
276
+ * <p>A statement identifier that differentiates the statement from others in the same policy.</p>
277
+ */
278
+ StatementId: string | undefined;
279
+ /**
280
+ * <p>The action that the principal can use on the function. For example, <code>lambda:InvokeFunction</code> or
281
+ * <code>lambda:GetFunction</code>.</p>
282
+ */
283
+ Action: string | undefined;
284
+ /**
285
+ * <p>The Amazon Web Services service or account that invokes the function. If you specify a service, use <code>SourceArn</code> or
286
+ * <code>SourceAccount</code> to limit who can invoke the function through that service.</p>
287
+ */
288
+ Principal: string | undefined;
289
+ /**
290
+ * <p>For Amazon Web Services services, the ARN of the Amazon Web Services resource that invokes the function. For example, an Amazon S3 bucket or
291
+ * Amazon SNS topic.</p>
292
+ * <p>Note that Lambda configures the comparison using the <code>StringLike</code> operator.</p>
293
+ */
294
+ SourceArn?: string;
295
+ /**
296
+ * <p>For Amazon S3, the ID of the account that owns the resource. Use this together with <code>SourceArn</code> to
297
+ * ensure that the resource is owned by the specified account. It is possible for an Amazon S3 bucket to be deleted
298
+ * by its owner and recreated by another account.</p>
299
+ */
300
+ SourceAccount?: string;
301
+ /**
302
+ * <p>For Alexa Smart Home functions, a token that must be supplied by the invoker.</p>
303
+ */
304
+ EventSourceToken?: string;
305
+ /**
306
+ * <p>Specify a version or alias to add permissions to a published version of the function.</p>
307
+ */
308
+ Qualifier?: string;
309
+ /**
310
+ * <p>Only update the policy if the revision ID matches the ID that's specified. Use this option to avoid modifying a
311
+ * policy that has changed since you last read it.</p>
312
+ */
313
+ RevisionId?: string;
314
+ }
315
+ export declare namespace AddPermissionRequest {
316
+ /**
317
+ * @internal
318
+ */
319
+ const filterSensitiveLog: (obj: AddPermissionRequest) => any;
320
+ }
321
+ export interface AddPermissionResponse {
322
+ /**
323
+ * <p>The permission statement that's added to the function policy.</p>
324
+ */
325
+ Statement?: string;
326
+ }
327
+ export declare namespace AddPermissionResponse {
328
+ /**
329
+ * @internal
330
+ */
331
+ const filterSensitiveLog: (obj: AddPermissionResponse) => any;
332
+ }
333
+ /**
334
+ * <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html">traffic-shifting</a> configuration of a Lambda function alias.</p>
335
+ */
336
+ export interface AliasRoutingConfiguration {
337
+ /**
338
+ * <p>The second version, and the percentage of traffic that's routed to it.</p>
339
+ */
340
+ AdditionalVersionWeights?: {
341
+ [key: string]: number;
342
+ };
343
+ }
344
+ export declare namespace AliasRoutingConfiguration {
345
+ /**
346
+ * @internal
347
+ */
348
+ const filterSensitiveLog: (obj: AliasRoutingConfiguration) => any;
349
+ }
350
+ /**
351
+ * <p>Provides configuration information about a Lambda function <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a>.</p>
352
+ */
353
+ export interface AliasConfiguration {
354
+ /**
355
+ * <p>The Amazon Resource Name (ARN) of the alias.</p>
356
+ */
357
+ AliasArn?: string;
358
+ /**
359
+ * <p>The name of the alias.</p>
360
+ */
361
+ Name?: string;
362
+ /**
363
+ * <p>The function version that the alias invokes.</p>
364
+ */
365
+ FunctionVersion?: string;
366
+ /**
367
+ * <p>A description of the alias.</p>
368
+ */
369
+ Description?: string;
370
+ /**
371
+ * <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html">routing
372
+ * configuration</a> of the alias.</p>
373
+ */
374
+ RoutingConfig?: AliasRoutingConfiguration;
375
+ /**
376
+ * <p>A unique identifier that changes when you update the alias.</p>
377
+ */
378
+ RevisionId?: string;
379
+ }
380
+ export declare namespace AliasConfiguration {
381
+ /**
382
+ * @internal
383
+ */
384
+ const filterSensitiveLog: (obj: AliasConfiguration) => any;
385
+ }
386
+ /**
387
+ * <p>List of signing profiles that can sign a code package. </p>
388
+ */
389
+ export interface AllowedPublishers {
390
+ /**
391
+ * <p>The Amazon Resource Name (ARN) for each of the signing profiles. A signing profile defines a trusted user
392
+ * who can sign a code package. </p>
393
+ */
394
+ SigningProfileVersionArns: string[] | undefined;
395
+ }
396
+ export declare namespace AllowedPublishers {
397
+ /**
398
+ * @internal
399
+ */
400
+ const filterSensitiveLog: (obj: AllowedPublishers) => any;
401
+ }
402
+ export declare enum Architecture {
403
+ arm64 = "arm64",
404
+ x86_64 = "x86_64"
405
+ }
406
+ export interface CreateAliasRequest {
407
+ /**
408
+ * <p>The name of the Lambda function.</p>
409
+ * <p class="title">
410
+ * <b>Name formats</b>
411
+ * </p>
412
+ * <ul>
413
+ * <li>
414
+ * <p>
415
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
416
+ * </li>
417
+ * <li>
418
+ * <p>
419
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
420
+ * </li>
421
+ * <li>
422
+ * <p>
423
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
424
+ * </li>
425
+ * </ul>
426
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
427
+ * characters in length.</p>
428
+ */
429
+ FunctionName: string | undefined;
430
+ /**
431
+ * <p>The name of the alias.</p>
432
+ */
433
+ Name: string | undefined;
434
+ /**
435
+ * <p>The function version that the alias invokes.</p>
436
+ */
437
+ FunctionVersion: string | undefined;
438
+ /**
439
+ * <p>A description of the alias.</p>
440
+ */
441
+ Description?: string;
442
+ /**
443
+ * <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
444
+ * configuration</a> of the alias.</p>
445
+ */
446
+ RoutingConfig?: AliasRoutingConfiguration;
447
+ }
448
+ export declare namespace CreateAliasRequest {
449
+ /**
450
+ * @internal
451
+ */
452
+ const filterSensitiveLog: (obj: CreateAliasRequest) => any;
453
+ }
454
+ export declare enum CodeSigningPolicy {
455
+ Enforce = "Enforce",
456
+ Warn = "Warn"
457
+ }
458
+ /**
459
+ * <p>Code signing configuration <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html#config-codesigning-policies">policies</a> specify the validation failure action for signature mismatch or
460
+ * expiry.</p>
461
+ */
462
+ export interface CodeSigningPolicies {
463
+ /**
464
+ * <p>Code signing configuration policy for deployment validation failure. If you set the policy to
465
+ * <code>Enforce</code>, Lambda blocks the deployment request if signature validation checks fail. If you set the
466
+ * policy to <code>Warn</code>, Lambda allows the deployment and creates a CloudWatch log. </p>
467
+ * <p>Default value: <code>Warn</code>
468
+ * </p>
469
+ */
470
+ UntrustedArtifactOnDeployment?: CodeSigningPolicy | string;
471
+ }
472
+ export declare namespace CodeSigningPolicies {
473
+ /**
474
+ * @internal
475
+ */
476
+ const filterSensitiveLog: (obj: CodeSigningPolicies) => any;
477
+ }
478
+ export interface CreateCodeSigningConfigRequest {
479
+ /**
480
+ * <p>Descriptive name for this code signing configuration.</p>
481
+ */
482
+ Description?: string;
483
+ /**
484
+ * <p>Signing profiles for this code signing configuration.</p>
485
+ */
486
+ AllowedPublishers: AllowedPublishers | undefined;
487
+ /**
488
+ * <p>The code signing policies define the actions to take if the validation checks fail. </p>
489
+ */
490
+ CodeSigningPolicies?: CodeSigningPolicies;
491
+ }
492
+ export declare namespace CreateCodeSigningConfigRequest {
493
+ /**
494
+ * @internal
495
+ */
496
+ const filterSensitiveLog: (obj: CreateCodeSigningConfigRequest) => any;
497
+ }
498
+ /**
499
+ * <p>Details about a <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html">Code signing configuration</a>. </p>
500
+ */
501
+ export interface CodeSigningConfig {
502
+ /**
503
+ * <p>Unique identifer for the Code signing configuration.</p>
504
+ */
505
+ CodeSigningConfigId: string | undefined;
506
+ /**
507
+ * <p>The Amazon Resource Name (ARN) of the Code signing configuration.</p>
508
+ */
509
+ CodeSigningConfigArn: string | undefined;
510
+ /**
511
+ * <p>Code signing configuration description.</p>
512
+ */
513
+ Description?: string;
514
+ /**
515
+ * <p>List of allowed publishers.</p>
516
+ */
517
+ AllowedPublishers: AllowedPublishers | undefined;
518
+ /**
519
+ * <p>The code signing policy controls the validation failure action for signature mismatch or expiry.</p>
520
+ */
521
+ CodeSigningPolicies: CodeSigningPolicies | undefined;
522
+ /**
523
+ * <p>The date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD). </p>
524
+ */
525
+ LastModified: string | undefined;
526
+ }
527
+ export declare namespace CodeSigningConfig {
528
+ /**
529
+ * @internal
530
+ */
531
+ const filterSensitiveLog: (obj: CodeSigningConfig) => any;
532
+ }
533
+ export interface CreateCodeSigningConfigResponse {
534
+ /**
535
+ * <p>The code signing configuration.</p>
536
+ */
537
+ CodeSigningConfig: CodeSigningConfig | undefined;
538
+ }
539
+ export declare namespace CreateCodeSigningConfigResponse {
540
+ /**
541
+ * @internal
542
+ */
543
+ const filterSensitiveLog: (obj: CreateCodeSigningConfigResponse) => any;
544
+ }
545
+ /**
546
+ * <p>A destination for events that failed processing.</p>
547
+ */
548
+ export interface OnFailure {
549
+ /**
550
+ * <p>The Amazon Resource Name (ARN) of the destination resource.</p>
551
+ */
552
+ Destination?: string;
553
+ }
554
+ export declare namespace OnFailure {
555
+ /**
556
+ * @internal
557
+ */
558
+ const filterSensitiveLog: (obj: OnFailure) => any;
559
+ }
560
+ /**
561
+ * <p>A destination for events that were processed successfully.</p>
562
+ */
563
+ export interface OnSuccess {
564
+ /**
565
+ * <p>The Amazon Resource Name (ARN) of the destination resource.</p>
566
+ */
567
+ Destination?: string;
568
+ }
569
+ export declare namespace OnSuccess {
570
+ /**
571
+ * @internal
572
+ */
573
+ const filterSensitiveLog: (obj: OnSuccess) => any;
574
+ }
575
+ /**
576
+ * <p>A configuration object that specifies the destination of an event after Lambda processes it.</p>
577
+ */
578
+ export interface DestinationConfig {
579
+ /**
580
+ * <p>The destination configuration for successful invocations.</p>
581
+ */
582
+ OnSuccess?: OnSuccess;
583
+ /**
584
+ * <p>The destination configuration for failed invocations.</p>
585
+ */
586
+ OnFailure?: OnFailure;
587
+ }
588
+ export declare namespace DestinationConfig {
589
+ /**
590
+ * @internal
591
+ */
592
+ const filterSensitiveLog: (obj: DestinationConfig) => any;
593
+ }
594
+ export declare enum FunctionResponseType {
595
+ ReportBatchItemFailures = "ReportBatchItemFailures"
596
+ }
597
+ export declare enum EndPointType {
598
+ KAFKA_BOOTSTRAP_SERVERS = "KAFKA_BOOTSTRAP_SERVERS"
599
+ }
600
+ /**
601
+ * <p>The self-managed Apache Kafka cluster for your event source.</p>
602
+ */
603
+ export interface SelfManagedEventSource {
604
+ /**
605
+ * <p>The list of bootstrap servers for your Kafka brokers in the following format: <code>"KAFKA_BOOTSTRAP_SERVERS":
606
+ * ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"]</code>.</p>
607
+ */
608
+ Endpoints?: {
609
+ [key: string]: string[];
610
+ };
611
+ }
612
+ export declare namespace SelfManagedEventSource {
613
+ /**
614
+ * @internal
615
+ */
616
+ const filterSensitiveLog: (obj: SelfManagedEventSource) => any;
617
+ }
618
+ export declare enum SourceAccessType {
619
+ BASIC_AUTH = "BASIC_AUTH",
620
+ SASL_SCRAM_256_AUTH = "SASL_SCRAM_256_AUTH",
621
+ SASL_SCRAM_512_AUTH = "SASL_SCRAM_512_AUTH",
622
+ VIRTUAL_HOST = "VIRTUAL_HOST",
623
+ VPC_SECURITY_GROUP = "VPC_SECURITY_GROUP",
624
+ VPC_SUBNET = "VPC_SUBNET"
625
+ }
626
+ /**
627
+ * <p>To secure and define access to your event source, you can specify the authentication protocol, VPC components, or virtual host.</p>
628
+ */
629
+ export interface SourceAccessConfiguration {
630
+ /**
631
+ * <p>The type of authentication protocol, VPC components, or virtual host for your event source. For example: <code>"Type":"SASL_SCRAM_512_AUTH"</code>.</p>
632
+ * <ul>
633
+ * <li>
634
+ * <p>
635
+ * <code>BASIC_AUTH</code> - (Amazon MQ) The Secrets Manager secret that stores your broker credentials.</p>
636
+ * </li>
637
+ * <li>
638
+ * <p>
639
+ * <code>BASIC_AUTH</code> - (Self-managed Apache Kafka) The Secrets Manager ARN of your secret key used for SASL/PLAIN authentication of your Apache Kafka brokers.</p>
640
+ * </li>
641
+ * <li>
642
+ * <p>
643
+ * <code>VPC_SUBNET</code> - The subnets associated with your VPC. Lambda connects to these subnets to fetch data from your self-managed Apache Kafka cluster.</p>
644
+ * </li>
645
+ * <li>
646
+ * <p>
647
+ * <code>VPC_SECURITY_GROUP</code> - The VPC security group used to manage access to your self-managed Apache Kafka brokers.</p>
648
+ * </li>
649
+ * <li>
650
+ * <p>
651
+ * <code>SASL_SCRAM_256_AUTH</code> - The Secrets Manager ARN of your secret key used for SASL SCRAM-256 authentication of your self-managed Apache Kafka brokers.</p>
652
+ * </li>
653
+ * <li>
654
+ * <p>
655
+ * <code>SASL_SCRAM_512_AUTH</code> - The Secrets Manager ARN of your secret key used for SASL SCRAM-512 authentication of your self-managed Apache Kafka brokers.</p>
656
+ * </li>
657
+ * <li>
658
+ * <p>
659
+ * <code>VIRTUAL_HOST</code> - (Amazon MQ) The name of the virtual host in your RabbitMQ broker. Lambda uses this RabbitMQ host as the event source.</p>
660
+ * </li>
661
+ * </ul>
662
+ */
663
+ Type?: SourceAccessType | string;
664
+ /**
665
+ * <p>The value for your chosen configuration in <code>Type</code>. For example: <code>"URI": "arn:aws:secretsmanager:us-east-1:01234567890:secret:MyBrokerSecretName"</code>.</p>
666
+ */
667
+ URI?: string;
668
+ }
669
+ export declare namespace SourceAccessConfiguration {
670
+ /**
671
+ * @internal
672
+ */
673
+ const filterSensitiveLog: (obj: SourceAccessConfiguration) => any;
674
+ }
675
+ export declare enum EventSourcePosition {
676
+ AT_TIMESTAMP = "AT_TIMESTAMP",
677
+ LATEST = "LATEST",
678
+ TRIM_HORIZON = "TRIM_HORIZON"
679
+ }
680
+ export interface CreateEventSourceMappingRequest {
681
+ /**
682
+ * <p>The Amazon Resource Name (ARN) of the event source.</p>
683
+ * <ul>
684
+ * <li>
685
+ * <p>
686
+ * <b>Amazon Kinesis</b> - The ARN of the data stream or a stream consumer.</p>
687
+ * </li>
688
+ * <li>
689
+ * <p>
690
+ * <b>Amazon DynamoDB Streams</b> - The ARN of the stream.</p>
691
+ * </li>
692
+ * <li>
693
+ * <p>
694
+ * <b>Amazon Simple Queue Service</b> - The ARN of the queue.</p>
695
+ * </li>
696
+ * <li>
697
+ * <p>
698
+ * <b>Amazon Managed Streaming for Apache Kafka</b> - The ARN of the cluster.</p>
699
+ * </li>
700
+ * </ul>
701
+ */
702
+ EventSourceArn?: string;
703
+ /**
704
+ * <p>The name of the Lambda function.</p>
705
+ * <p class="title">
706
+ * <b>Name formats</b>
707
+ * </p>
708
+ * <ul>
709
+ * <li>
710
+ * <p>
711
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
712
+ * </li>
713
+ * <li>
714
+ * <p>
715
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
716
+ * </li>
717
+ * <li>
718
+ * <p>
719
+ * <b>Version or Alias ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD</code>.</p>
720
+ * </li>
721
+ * <li>
722
+ * <p>
723
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
724
+ * </li>
725
+ * </ul>
726
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64
727
+ * characters in length.</p>
728
+ */
729
+ FunctionName: string | undefined;
730
+ /**
731
+ * <p>When true, the event source mapping is active. When false, Lambda pauses polling and invocation.</p>
732
+ * <p>Default: True</p>
733
+ */
734
+ Enabled?: boolean;
735
+ /**
736
+ * <p>The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation
737
+ * (6 MB).</p>
738
+ * <ul>
739
+ * <li>
740
+ * <p>
741
+ * <b>Amazon Kinesis</b> - Default 100. Max 10,000.</p>
742
+ * </li>
743
+ * <li>
744
+ * <p>
745
+ * <b>Amazon DynamoDB Streams</b> - Default 100. Max 1,000.</p>
746
+ * </li>
747
+ * <li>
748
+ * <p>
749
+ * <b>Amazon Simple Queue Service</b> - Default 10. For standard queues the max is 10,000. For FIFO queues the max is 10.</p>
750
+ * </li>
751
+ * <li>
752
+ * <p>
753
+ * <b>Amazon Managed Streaming for Apache Kafka</b> - Default 100. Max 10,000.</p>
754
+ * </li>
755
+ * <li>
756
+ * <p>
757
+ * <b>Self-Managed Apache Kafka</b> - Default 100. Max 10,000.</p>
758
+ * </li>
759
+ * </ul>
760
+ */
761
+ BatchSize?: number;
762
+ /**
763
+ * <p>(Streams and Amazon SQS standard queues) The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.</p>
764
+ * <p>Default: 0</p>
765
+ * <p>Related setting: When you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>
766
+ */
767
+ MaximumBatchingWindowInSeconds?: number;
768
+ /**
769
+ * <p>(Streams only) The number of batches to process from each shard concurrently.</p>
770
+ */
771
+ ParallelizationFactor?: number;
772
+ /**
773
+ * <p>The position in a stream from which to start reading. Required for Amazon Kinesis, Amazon DynamoDB, and Amazon
774
+ * MSK Streams sources. <code>AT_TIMESTAMP</code> is only supported for Amazon Kinesis streams.</p>
775
+ */
776
+ StartingPosition?: EventSourcePosition | string;
777
+ /**
778
+ * <p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start
779
+ * reading.</p>
780
+ */
781
+ StartingPositionTimestamp?: Date;
782
+ /**
783
+ * <p>(Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.</p>
784
+ */
785
+ DestinationConfig?: DestinationConfig;
786
+ /**
787
+ * <p>(Streams only) Discard records older than the specified age. The default value is infinite (-1).</p>
788
+ */
789
+ MaximumRecordAgeInSeconds?: number;
790
+ /**
791
+ * <p>(Streams only) If the function returns an error, split the batch in two and retry.</p>
792
+ */
793
+ BisectBatchOnFunctionError?: boolean;
794
+ /**
795
+ * <p>(Streams only) Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records will be retried until the record expires.</p>
796
+ */
797
+ MaximumRetryAttempts?: number;
798
+ /**
799
+ * <p>(Streams only) The duration in seconds of a processing window. The range is between 1 second up to 900 seconds.</p>
800
+ */
801
+ TumblingWindowInSeconds?: number;
802
+ /**
803
+ * <p>The name of the Kafka topic.</p>
804
+ */
805
+ Topics?: string[];
806
+ /**
807
+ * <p> (MQ) The name of the Amazon MQ broker destination queue to consume. </p>
808
+ */
809
+ Queues?: string[];
810
+ /**
811
+ * <p>An array of authentication protocols or VPC components required to secure your event source.</p>
812
+ */
813
+ SourceAccessConfigurations?: SourceAccessConfiguration[];
814
+ /**
815
+ * <p>The Self-Managed Apache Kafka cluster to send records.</p>
816
+ */
817
+ SelfManagedEventSource?: SelfManagedEventSource;
818
+ /**
819
+ * <p>(Streams only) A list of current response type enums applied to the event source mapping.</p>
820
+ */
821
+ FunctionResponseTypes?: (FunctionResponseType | string)[];
822
+ }
823
+ export declare namespace CreateEventSourceMappingRequest {
824
+ /**
825
+ * @internal
826
+ */
827
+ const filterSensitiveLog: (obj: CreateEventSourceMappingRequest) => any;
828
+ }
829
+ /**
830
+ * <p>A mapping between an Amazon Web Services resource and a Lambda function. For details, see <a>CreateEventSourceMapping</a>.</p>
831
+ */
832
+ export interface EventSourceMappingConfiguration {
833
+ /**
834
+ * <p>The identifier of the event source mapping.</p>
835
+ */
836
+ UUID?: string;
837
+ /**
838
+ * <p>The position in a stream from which to start reading. Required for Amazon Kinesis, Amazon DynamoDB, and Amazon MSK stream sources. <code>AT_TIMESTAMP</code> is supported only for Amazon Kinesis
839
+ * streams.</p>
840
+ */
841
+ StartingPosition?: EventSourcePosition | string;
842
+ /**
843
+ * <p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start
844
+ * reading.</p>
845
+ */
846
+ StartingPositionTimestamp?: Date;
847
+ /**
848
+ * <p>The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation (6 MB).</p>
849
+ * <p>Default value: Varies by service. For Amazon SQS, the default is 10. For all other services, the default is 100.</p>
850
+ * <p>Related setting: When you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>
851
+ */
852
+ BatchSize?: number;
853
+ /**
854
+ * <p>(Streams and Amazon SQS standard queues) The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.</p>
855
+ * <p>Default: 0</p>
856
+ * <p>Related setting: When you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>
857
+ */
858
+ MaximumBatchingWindowInSeconds?: number;
859
+ /**
860
+ * <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
861
+ */
862
+ ParallelizationFactor?: number;
863
+ /**
864
+ * <p>The Amazon Resource Name (ARN) of the event source.</p>
865
+ */
866
+ EventSourceArn?: string;
867
+ /**
868
+ * <p>The ARN of the Lambda function.</p>
869
+ */
870
+ FunctionArn?: string;
871
+ /**
872
+ * <p>The date that the event source mapping was last updated or that its state changed.</p>
873
+ */
874
+ LastModified?: Date;
875
+ /**
876
+ * <p>The result of the last Lambda invocation of your function.</p>
877
+ */
878
+ LastProcessingResult?: string;
879
+ /**
880
+ * <p>The state of the event source mapping. It can be one of the following: <code>Creating</code>,
881
+ * <code>Enabling</code>, <code>Enabled</code>, <code>Disabling</code>, <code>Disabled</code>,
882
+ * <code>Updating</code>, or <code>Deleting</code>.</p>
883
+ */
884
+ State?: string;
885
+ /**
886
+ * <p>Indicates whether a user or Lambda made the last change to the event source mapping.</p>
887
+ */
888
+ StateTransitionReason?: string;
889
+ /**
890
+ * <p>(Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.</p>
891
+ */
892
+ DestinationConfig?: DestinationConfig;
893
+ /**
894
+ * <p>The name of the Kafka topic.</p>
895
+ */
896
+ Topics?: string[];
897
+ /**
898
+ * <p> (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.</p>
899
+ */
900
+ Queues?: string[];
901
+ /**
902
+ * <p>An array of the authentication protocol, VPC components, or virtual host to secure and define your event source.</p>
903
+ */
904
+ SourceAccessConfigurations?: SourceAccessConfiguration[];
905
+ /**
906
+ * <p>The self-managed Apache Kafka cluster for your event source.</p>
907
+ */
908
+ SelfManagedEventSource?: SelfManagedEventSource;
909
+ /**
910
+ * <p>(Streams only) Discard records older than the specified age. The default value is -1,
911
+ * which sets the maximum age to infinite. When the value is set to infinite, Lambda never discards old records. </p>
912
+ */
913
+ MaximumRecordAgeInSeconds?: number;
914
+ /**
915
+ * <p>(Streams only) If the function returns an error, split the batch in two and retry. The default value is false.</p>
916
+ */
917
+ BisectBatchOnFunctionError?: boolean;
918
+ /**
919
+ * <p>(Streams only) Discard records after the specified number of retries. The default value is -1,
920
+ * which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, Lambda retries failed records until the record expires in the event source.</p>
921
+ */
922
+ MaximumRetryAttempts?: number;
923
+ /**
924
+ * <p>(Streams only) The duration in seconds of a processing window. The range is 1–900 seconds.</p>
925
+ */
926
+ TumblingWindowInSeconds?: number;
927
+ /**
928
+ * <p>(Streams only) A list of current response type enums applied to the event source mapping.</p>
929
+ */
930
+ FunctionResponseTypes?: (FunctionResponseType | string)[];
931
+ }
932
+ export declare namespace EventSourceMappingConfiguration {
933
+ /**
934
+ * @internal
935
+ */
936
+ const filterSensitiveLog: (obj: EventSourceMappingConfiguration) => any;
937
+ }
938
+ /**
939
+ * <p>The specified code signing configuration does not exist.</p>
940
+ */
941
+ export interface CodeSigningConfigNotFoundException extends __SmithyException, $MetadataBearer {
942
+ name: "CodeSigningConfigNotFoundException";
943
+ $fault: "client";
944
+ Type?: string;
945
+ Message?: string;
946
+ }
947
+ export declare namespace CodeSigningConfigNotFoundException {
948
+ /**
949
+ * @internal
950
+ */
951
+ const filterSensitiveLog: (obj: CodeSigningConfigNotFoundException) => any;
952
+ }
953
+ /**
954
+ * <p>You have exceeded your maximum total code size per account. <a href="https://docs.aws.amazon.com/lambda/latest/dg/limits.html">Learn more</a>
955
+ * </p>
956
+ */
957
+ export interface CodeStorageExceededException extends __SmithyException, $MetadataBearer {
958
+ name: "CodeStorageExceededException";
959
+ $fault: "client";
960
+ /**
961
+ * <p>The exception type.</p>
962
+ */
963
+ Type?: string;
964
+ message?: string;
965
+ }
966
+ export declare namespace CodeStorageExceededException {
967
+ /**
968
+ * @internal
969
+ */
970
+ const filterSensitiveLog: (obj: CodeStorageExceededException) => any;
971
+ }
972
+ /**
973
+ * <p>The code signature failed one or more of the validation checks for signature mismatch or expiry, and the code signing policy
974
+ * is set to ENFORCE. Lambda blocks the deployment. </p>
975
+ */
976
+ export interface CodeVerificationFailedException extends __SmithyException, $MetadataBearer {
977
+ name: "CodeVerificationFailedException";
978
+ $fault: "client";
979
+ Type?: string;
980
+ Message?: string;
981
+ }
982
+ export declare namespace CodeVerificationFailedException {
983
+ /**
984
+ * @internal
985
+ */
986
+ const filterSensitiveLog: (obj: CodeVerificationFailedException) => any;
987
+ }
988
+ /**
989
+ * <p>The code for the Lambda function. You can specify either an object in Amazon S3, upload a .zip file archive deployment
990
+ * package directly, or specify the URI of a container image.</p>
991
+ */
992
+ export interface FunctionCode {
993
+ /**
994
+ * <p>The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for
995
+ * you.</p>
996
+ */
997
+ ZipFile?: Uint8Array;
998
+ /**
999
+ * <p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.</p>
1000
+ */
1001
+ S3Bucket?: string;
1002
+ /**
1003
+ * <p>The Amazon S3 key of the deployment package.</p>
1004
+ */
1005
+ S3Key?: string;
1006
+ /**
1007
+ * <p>For versioned objects, the version of the deployment package object to use.</p>
1008
+ */
1009
+ S3ObjectVersion?: string;
1010
+ /**
1011
+ * <p>URI of a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html">container image</a> in the Amazon ECR registry.</p>
1012
+ */
1013
+ ImageUri?: string;
1014
+ }
1015
+ export declare namespace FunctionCode {
1016
+ /**
1017
+ * @internal
1018
+ */
1019
+ const filterSensitiveLog: (obj: FunctionCode) => any;
1020
+ }
1021
+ /**
1022
+ * <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq">dead-letter queue</a> for
1023
+ * failed asynchronous invocations.</p>
1024
+ */
1025
+ export interface DeadLetterConfig {
1026
+ /**
1027
+ * <p>The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.</p>
1028
+ */
1029
+ TargetArn?: string;
1030
+ }
1031
+ export declare namespace DeadLetterConfig {
1032
+ /**
1033
+ * @internal
1034
+ */
1035
+ const filterSensitiveLog: (obj: DeadLetterConfig) => any;
1036
+ }
1037
+ /**
1038
+ * <p>A function's environment variable settings.
1039
+ * You can use environment variables to adjust your function's behavior without updating code.
1040
+ * An environment variable is a pair of strings that are stored in a function's version-specific configuration. </p>
1041
+ */
1042
+ export interface Environment {
1043
+ /**
1044
+ * <p>Environment variable key-value pairs. For more information, see
1045
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html">Using Lambda environment variables</a>.</p>
1046
+ */
1047
+ Variables?: {
1048
+ [key: string]: string;
1049
+ };
1050
+ }
1051
+ export declare namespace Environment {
1052
+ /**
1053
+ * @internal
1054
+ */
1055
+ const filterSensitiveLog: (obj: Environment) => any;
1056
+ }
1057
+ /**
1058
+ * <p>Details about the connection between a Lambda function and an
1059
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a>.</p>
1060
+ */
1061
+ export interface FileSystemConfig {
1062
+ /**
1063
+ * <p>The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.</p>
1064
+ */
1065
+ Arn: string | undefined;
1066
+ /**
1067
+ * <p>The path where the function can access the file system, starting with <code>/mnt/</code>.</p>
1068
+ */
1069
+ LocalMountPath: string | undefined;
1070
+ }
1071
+ export declare namespace FileSystemConfig {
1072
+ /**
1073
+ * @internal
1074
+ */
1075
+ const filterSensitiveLog: (obj: FileSystemConfig) => any;
1076
+ }
1077
+ /**
1078
+ * <p>Configuration values that override the container image Dockerfile settings. See
1079
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms">Container settings</a>. </p>
1080
+ */
1081
+ export interface ImageConfig {
1082
+ /**
1083
+ * <p>Specifies the entry point to their application, which is typically the location of the runtime
1084
+ * executable.</p>
1085
+ */
1086
+ EntryPoint?: string[];
1087
+ /**
1088
+ * <p>Specifies parameters that you want to pass in with ENTRYPOINT. </p>
1089
+ */
1090
+ Command?: string[];
1091
+ /**
1092
+ * <p>Specifies the working directory.</p>
1093
+ */
1094
+ WorkingDirectory?: string;
1095
+ }
1096
+ export declare namespace ImageConfig {
1097
+ /**
1098
+ * @internal
1099
+ */
1100
+ const filterSensitiveLog: (obj: ImageConfig) => any;
1101
+ }
1102
+ export declare enum PackageType {
1103
+ Image = "Image",
1104
+ Zip = "Zip"
1105
+ }
1106
+ export declare enum Runtime {
1107
+ dotnetcore10 = "dotnetcore1.0",
1108
+ dotnetcore20 = "dotnetcore2.0",
1109
+ dotnetcore21 = "dotnetcore2.1",
1110
+ dotnetcore31 = "dotnetcore3.1",
1111
+ go1x = "go1.x",
1112
+ java11 = "java11",
1113
+ java8 = "java8",
1114
+ java8al2 = "java8.al2",
1115
+ nodejs = "nodejs",
1116
+ nodejs10x = "nodejs10.x",
1117
+ nodejs12x = "nodejs12.x",
1118
+ nodejs14x = "nodejs14.x",
1119
+ nodejs43 = "nodejs4.3",
1120
+ nodejs43edge = "nodejs4.3-edge",
1121
+ nodejs610 = "nodejs6.10",
1122
+ nodejs810 = "nodejs8.10",
1123
+ provided = "provided",
1124
+ providedal2 = "provided.al2",
1125
+ python27 = "python2.7",
1126
+ python36 = "python3.6",
1127
+ python37 = "python3.7",
1128
+ python38 = "python3.8",
1129
+ python39 = "python3.9",
1130
+ ruby25 = "ruby2.5",
1131
+ ruby27 = "ruby2.7"
1132
+ }
1133
+ export declare enum TracingMode {
1134
+ Active = "Active",
1135
+ PassThrough = "PassThrough"
1136
+ }
1137
+ /**
1138
+ * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a> tracing configuration.
1139
+ * To sample and record incoming requests, set <code>Mode</code> to <code>Active</code>.</p>
1140
+ */
1141
+ export interface TracingConfig {
1142
+ /**
1143
+ * <p>The tracing mode.</p>
1144
+ */
1145
+ Mode?: TracingMode | string;
1146
+ }
1147
+ export declare namespace TracingConfig {
1148
+ /**
1149
+ * @internal
1150
+ */
1151
+ const filterSensitiveLog: (obj: TracingConfig) => any;
1152
+ }
1153
+ /**
1154
+ * <p>The VPC security groups and subnets that are attached to a Lambda function. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">VPC Settings</a>.</p>
1155
+ */
1156
+ export interface VpcConfig {
1157
+ /**
1158
+ * <p>A list of VPC subnet IDs.</p>
1159
+ */
1160
+ SubnetIds?: string[];
1161
+ /**
1162
+ * <p>A list of VPC security groups IDs.</p>
1163
+ */
1164
+ SecurityGroupIds?: string[];
1165
+ }
1166
+ export declare namespace VpcConfig {
1167
+ /**
1168
+ * @internal
1169
+ */
1170
+ const filterSensitiveLog: (obj: VpcConfig) => any;
1171
+ }
1172
+ export interface CreateFunctionRequest {
1173
+ /**
1174
+ * <p>The name of the Lambda function.</p>
1175
+ * <p class="title">
1176
+ * <b>Name formats</b>
1177
+ * </p>
1178
+ * <ul>
1179
+ * <li>
1180
+ * <p>
1181
+ * <b>Function name</b> - <code>my-function</code>.</p>
1182
+ * </li>
1183
+ * <li>
1184
+ * <p>
1185
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
1186
+ * </li>
1187
+ * <li>
1188
+ * <p>
1189
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
1190
+ * </li>
1191
+ * </ul>
1192
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
1193
+ * characters in length.</p>
1194
+ */
1195
+ FunctionName: string | undefined;
1196
+ /**
1197
+ * <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime</a>.</p>
1198
+ */
1199
+ Runtime?: Runtime | string;
1200
+ /**
1201
+ * <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
1202
+ */
1203
+ Role: string | undefined;
1204
+ /**
1205
+ * <p>The name of the method within your code that Lambda calls to execute your function. The format includes the
1206
+ * file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information,
1207
+ * see <a href="https://docs.aws.amazon.com/lambda/latest/dg/programming-model-v2.html">Programming Model</a>.</p>
1208
+ */
1209
+ Handler?: string;
1210
+ /**
1211
+ * <p>The code for the function.</p>
1212
+ */
1213
+ Code: FunctionCode | undefined;
1214
+ /**
1215
+ * <p>A description of the function.</p>
1216
+ */
1217
+ Description?: string;
1218
+ /**
1219
+ * <p>The amount of time that Lambda allows a function to run before stopping it. The default is 3 seconds. The
1220
+ * maximum allowed value is 900 seconds. For additional information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html">Lambda execution environment</a>.</p>
1221
+ */
1222
+ Timeout?: number;
1223
+ /**
1224
+ * <p>The amount of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-memory.html">memory available to the function</a> at runtime.
1225
+ * Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.</p>
1226
+ */
1227
+ MemorySize?: number;
1228
+ /**
1229
+ * <p>Set to true to publish the first version of the function during creation.</p>
1230
+ */
1231
+ Publish?: boolean;
1232
+ /**
1233
+ * <p>For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC.
1234
+ * When you connect a function to a VPC, it can only access resources and the internet through that VPC. For more
1235
+ * information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">VPC Settings</a>.</p>
1236
+ */
1237
+ VpcConfig?: VpcConfig;
1238
+ /**
1239
+ * <p>The type of deployment package. Set to <code>Image</code> for container image and set <code>Zip</code> for ZIP archive.</p>
1240
+ */
1241
+ PackageType?: PackageType | string;
1242
+ /**
1243
+ * <p>A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events
1244
+ * when they fail processing. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq">Dead Letter Queues</a>.</p>
1245
+ */
1246
+ DeadLetterConfig?: DeadLetterConfig;
1247
+ /**
1248
+ * <p>Environment variables that are accessible from function code during execution.</p>
1249
+ */
1250
+ Environment?: Environment;
1251
+ /**
1252
+ * <p>The ARN of the Amazon Web Services Key Management Service (KMS) key that's used to encrypt your function's environment
1253
+ * variables. If it's not provided, Lambda uses a default service key.</p>
1254
+ */
1255
+ KMSKeyArn?: string;
1256
+ /**
1257
+ * <p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with
1258
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a>.</p>
1259
+ */
1260
+ TracingConfig?: TracingConfig;
1261
+ /**
1262
+ * <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> to apply to the
1263
+ * function.</p>
1264
+ */
1265
+ Tags?: {
1266
+ [key: string]: string;
1267
+ };
1268
+ /**
1269
+ * <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">function layers</a>
1270
+ * to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>
1271
+ */
1272
+ Layers?: string[];
1273
+ /**
1274
+ * <p>Connection settings for an Amazon EFS file system.</p>
1275
+ */
1276
+ FileSystemConfigs?: FileSystemConfig[];
1277
+ /**
1278
+ * <p>Container image <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-images.html#configuration-images-settings">configuration
1279
+ * values</a> that override the values in the container image Dockerfile.</p>
1280
+ */
1281
+ ImageConfig?: ImageConfig;
1282
+ /**
1283
+ * <p>To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration
1284
+ * includes a set of signing profiles, which define the trusted publishers for this function.</p>
1285
+ */
1286
+ CodeSigningConfigArn?: string;
1287
+ /**
1288
+ * <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values.
1289
+ * The default value is <code>x86_64</code>.</p>
1290
+ */
1291
+ Architectures?: (Architecture | string)[];
1292
+ }
1293
+ export declare namespace CreateFunctionRequest {
1294
+ /**
1295
+ * @internal
1296
+ */
1297
+ const filterSensitiveLog: (obj: CreateFunctionRequest) => any;
1298
+ }
1299
+ /**
1300
+ * <p>Error messages for environment variables that couldn't be applied.</p>
1301
+ */
1302
+ export interface EnvironmentError {
1303
+ /**
1304
+ * <p>The error code.</p>
1305
+ */
1306
+ ErrorCode?: string;
1307
+ /**
1308
+ * <p>The error message.</p>
1309
+ */
1310
+ Message?: string;
1311
+ }
1312
+ export declare namespace EnvironmentError {
1313
+ /**
1314
+ * @internal
1315
+ */
1316
+ const filterSensitiveLog: (obj: EnvironmentError) => any;
1317
+ }
1318
+ /**
1319
+ * <p>The results of an operation to update or read environment variables. If the operation is successful, the
1320
+ * response contains the environment variables. If it failed, the response contains details about the error.</p>
1321
+ */
1322
+ export interface EnvironmentResponse {
1323
+ /**
1324
+ * <p>Environment variable key-value pairs.</p>
1325
+ */
1326
+ Variables?: {
1327
+ [key: string]: string;
1328
+ };
1329
+ /**
1330
+ * <p>Error messages for environment variables that couldn't be applied.</p>
1331
+ */
1332
+ Error?: EnvironmentError;
1333
+ }
1334
+ export declare namespace EnvironmentResponse {
1335
+ /**
1336
+ * @internal
1337
+ */
1338
+ const filterSensitiveLog: (obj: EnvironmentResponse) => any;
1339
+ }
1340
+ /**
1341
+ * <p>Error response to GetFunctionConfiguration.</p>
1342
+ */
1343
+ export interface ImageConfigError {
1344
+ /**
1345
+ * <p>Error code.</p>
1346
+ */
1347
+ ErrorCode?: string;
1348
+ /**
1349
+ * <p>Error message.</p>
1350
+ */
1351
+ Message?: string;
1352
+ }
1353
+ export declare namespace ImageConfigError {
1354
+ /**
1355
+ * @internal
1356
+ */
1357
+ const filterSensitiveLog: (obj: ImageConfigError) => any;
1358
+ }
1359
+ /**
1360
+ * <p>Response to GetFunctionConfiguration request.</p>
1361
+ */
1362
+ export interface ImageConfigResponse {
1363
+ /**
1364
+ * <p>Configuration values that override the container image Dockerfile.</p>
1365
+ */
1366
+ ImageConfig?: ImageConfig;
1367
+ /**
1368
+ * <p>Error response to GetFunctionConfiguration.</p>
1369
+ */
1370
+ Error?: ImageConfigError;
1371
+ }
1372
+ export declare namespace ImageConfigResponse {
1373
+ /**
1374
+ * @internal
1375
+ */
1376
+ const filterSensitiveLog: (obj: ImageConfigResponse) => any;
1377
+ }
1378
+ export declare enum LastUpdateStatus {
1379
+ Failed = "Failed",
1380
+ InProgress = "InProgress",
1381
+ Successful = "Successful"
1382
+ }
1383
+ export declare enum LastUpdateStatusReasonCode {
1384
+ EniLimitExceeded = "EniLimitExceeded",
1385
+ ImageAccessDenied = "ImageAccessDenied",
1386
+ ImageDeleted = "ImageDeleted",
1387
+ InsufficientRolePermissions = "InsufficientRolePermissions",
1388
+ InternalError = "InternalError",
1389
+ InvalidConfiguration = "InvalidConfiguration",
1390
+ InvalidImage = "InvalidImage",
1391
+ InvalidSecurityGroup = "InvalidSecurityGroup",
1392
+ InvalidSubnet = "InvalidSubnet",
1393
+ SubnetOutOfIPAddresses = "SubnetOutOfIPAddresses"
1394
+ }
1395
+ /**
1396
+ * <p>An <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
1397
+ * layer</a>.</p>
1398
+ */
1399
+ export interface Layer {
1400
+ /**
1401
+ * <p>The Amazon Resource Name (ARN) of the function layer.</p>
1402
+ */
1403
+ Arn?: string;
1404
+ /**
1405
+ * <p>The size of the layer archive in bytes.</p>
1406
+ */
1407
+ CodeSize?: number;
1408
+ /**
1409
+ * <p>The Amazon Resource Name (ARN) for a signing profile version.</p>
1410
+ */
1411
+ SigningProfileVersionArn?: string;
1412
+ /**
1413
+ * <p>The Amazon Resource Name (ARN) of a signing job.</p>
1414
+ */
1415
+ SigningJobArn?: string;
1416
+ }
1417
+ export declare namespace Layer {
1418
+ /**
1419
+ * @internal
1420
+ */
1421
+ const filterSensitiveLog: (obj: Layer) => any;
1422
+ }
1423
+ export declare enum State {
1424
+ Active = "Active",
1425
+ Failed = "Failed",
1426
+ Inactive = "Inactive",
1427
+ Pending = "Pending"
1428
+ }
1429
+ export declare enum StateReasonCode {
1430
+ Creating = "Creating",
1431
+ EniLimitExceeded = "EniLimitExceeded",
1432
+ Idle = "Idle",
1433
+ ImageAccessDenied = "ImageAccessDenied",
1434
+ ImageDeleted = "ImageDeleted",
1435
+ InsufficientRolePermissions = "InsufficientRolePermissions",
1436
+ InternalError = "InternalError",
1437
+ InvalidConfiguration = "InvalidConfiguration",
1438
+ InvalidImage = "InvalidImage",
1439
+ InvalidSecurityGroup = "InvalidSecurityGroup",
1440
+ InvalidSubnet = "InvalidSubnet",
1441
+ Restoring = "Restoring",
1442
+ SubnetOutOfIPAddresses = "SubnetOutOfIPAddresses"
1443
+ }
1444
+ /**
1445
+ * <p>The function's X-Ray tracing configuration.</p>
1446
+ */
1447
+ export interface TracingConfigResponse {
1448
+ /**
1449
+ * <p>The tracing mode.</p>
1450
+ */
1451
+ Mode?: TracingMode | string;
1452
+ }
1453
+ export declare namespace TracingConfigResponse {
1454
+ /**
1455
+ * @internal
1456
+ */
1457
+ const filterSensitiveLog: (obj: TracingConfigResponse) => any;
1458
+ }
1459
+ /**
1460
+ * <p>The VPC security groups and subnets that are attached to a Lambda function.</p>
1461
+ */
1462
+ export interface VpcConfigResponse {
1463
+ /**
1464
+ * <p>A list of VPC subnet IDs.</p>
1465
+ */
1466
+ SubnetIds?: string[];
1467
+ /**
1468
+ * <p>A list of VPC security groups IDs.</p>
1469
+ */
1470
+ SecurityGroupIds?: string[];
1471
+ /**
1472
+ * <p>The ID of the VPC.</p>
1473
+ */
1474
+ VpcId?: string;
1475
+ }
1476
+ export declare namespace VpcConfigResponse {
1477
+ /**
1478
+ * @internal
1479
+ */
1480
+ const filterSensitiveLog: (obj: VpcConfigResponse) => any;
1481
+ }
1482
+ /**
1483
+ * <p>Details about a function's configuration.</p>
1484
+ */
1485
+ export interface FunctionConfiguration {
1486
+ /**
1487
+ * <p>The name of the function.</p>
1488
+ */
1489
+ FunctionName?: string;
1490
+ /**
1491
+ * <p>The function's Amazon Resource Name (ARN).</p>
1492
+ */
1493
+ FunctionArn?: string;
1494
+ /**
1495
+ * <p>The runtime environment for the Lambda function.</p>
1496
+ */
1497
+ Runtime?: Runtime | string;
1498
+ /**
1499
+ * <p>The function's execution role.</p>
1500
+ */
1501
+ Role?: string;
1502
+ /**
1503
+ * <p>The function that Lambda calls to begin executing your function.</p>
1504
+ */
1505
+ Handler?: string;
1506
+ /**
1507
+ * <p>The size of the function's deployment package, in bytes.</p>
1508
+ */
1509
+ CodeSize?: number;
1510
+ /**
1511
+ * <p>The function's description.</p>
1512
+ */
1513
+ Description?: string;
1514
+ /**
1515
+ * <p>The amount of time in seconds that Lambda allows a function to run before stopping it.</p>
1516
+ */
1517
+ Timeout?: number;
1518
+ /**
1519
+ * <p>The amount of memory available to the function at runtime. </p>
1520
+ */
1521
+ MemorySize?: number;
1522
+ /**
1523
+ * <p>The date and time that the function was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
1524
+ */
1525
+ LastModified?: string;
1526
+ /**
1527
+ * <p>The SHA256 hash of the function's deployment package.</p>
1528
+ */
1529
+ CodeSha256?: string;
1530
+ /**
1531
+ * <p>The version of the Lambda function.</p>
1532
+ */
1533
+ Version?: string;
1534
+ /**
1535
+ * <p>The function's networking configuration.</p>
1536
+ */
1537
+ VpcConfig?: VpcConfigResponse;
1538
+ /**
1539
+ * <p>The function's dead letter queue.</p>
1540
+ */
1541
+ DeadLetterConfig?: DeadLetterConfig;
1542
+ /**
1543
+ * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html">environment variables</a>.</p>
1544
+ */
1545
+ Environment?: EnvironmentResponse;
1546
+ /**
1547
+ * <p>The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've
1548
+ * configured a customer managed CMK.</p>
1549
+ */
1550
+ KMSKeyArn?: string;
1551
+ /**
1552
+ * <p>The function's X-Ray tracing configuration.</p>
1553
+ */
1554
+ TracingConfig?: TracingConfigResponse;
1555
+ /**
1556
+ * <p>For Lambda@Edge functions, the ARN of the master function.</p>
1557
+ */
1558
+ MasterArn?: string;
1559
+ /**
1560
+ * <p>The latest updated revision of the function or alias.</p>
1561
+ */
1562
+ RevisionId?: string;
1563
+ /**
1564
+ * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">
1565
+ * layers</a>.</p>
1566
+ */
1567
+ Layers?: Layer[];
1568
+ /**
1569
+ * <p>The current state of the function. When the state is <code>Inactive</code>, you can reactivate the function by
1570
+ * invoking it.</p>
1571
+ */
1572
+ State?: State | string;
1573
+ /**
1574
+ * <p>The reason for the function's current state.</p>
1575
+ */
1576
+ StateReason?: string;
1577
+ /**
1578
+ * <p>The reason code for the function's current state. When the code is <code>Creating</code>, you can't invoke or
1579
+ * modify the function.</p>
1580
+ */
1581
+ StateReasonCode?: StateReasonCode | string;
1582
+ /**
1583
+ * <p>The status of the last update that was performed on the function. This is first set to <code>Successful</code>
1584
+ * after function creation completes.</p>
1585
+ */
1586
+ LastUpdateStatus?: LastUpdateStatus | string;
1587
+ /**
1588
+ * <p>The reason for the last update that was performed on the function.</p>
1589
+ */
1590
+ LastUpdateStatusReason?: string;
1591
+ /**
1592
+ * <p>The reason code for the last update that was performed on the function.</p>
1593
+ */
1594
+ LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode | string;
1595
+ /**
1596
+ * <p>Connection settings for an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a>.</p>
1597
+ */
1598
+ FileSystemConfigs?: FileSystemConfig[];
1599
+ /**
1600
+ * <p>The type of deployment package. Set to <code>Image</code> for container image and set <code>Zip</code> for .zip file archive.</p>
1601
+ */
1602
+ PackageType?: PackageType | string;
1603
+ /**
1604
+ * <p>The function's image configuration values.</p>
1605
+ */
1606
+ ImageConfigResponse?: ImageConfigResponse;
1607
+ /**
1608
+ * <p>The ARN of the signing profile version.</p>
1609
+ */
1610
+ SigningProfileVersionArn?: string;
1611
+ /**
1612
+ * <p>The ARN of the signing job.</p>
1613
+ */
1614
+ SigningJobArn?: string;
1615
+ /**
1616
+ * <p>The instruction set architecture that the function supports. Architecture is a string array with one of the
1617
+ * valid values. The default architecture value is <code>x86_64</code>.</p>
1618
+ */
1619
+ Architectures?: (Architecture | string)[];
1620
+ }
1621
+ export declare namespace FunctionConfiguration {
1622
+ /**
1623
+ * @internal
1624
+ */
1625
+ const filterSensitiveLog: (obj: FunctionConfiguration) => any;
1626
+ }
1627
+ /**
1628
+ * <p>The code signature failed the integrity check. Lambda always blocks deployment if the integrity check
1629
+ * fails, even if code signing policy is set to WARN.</p>
1630
+ */
1631
+ export interface InvalidCodeSignatureException extends __SmithyException, $MetadataBearer {
1632
+ name: "InvalidCodeSignatureException";
1633
+ $fault: "client";
1634
+ Type?: string;
1635
+ Message?: string;
1636
+ }
1637
+ export declare namespace InvalidCodeSignatureException {
1638
+ /**
1639
+ * @internal
1640
+ */
1641
+ const filterSensitiveLog: (obj: InvalidCodeSignatureException) => any;
1642
+ }
1643
+ export interface DeleteAliasRequest {
1644
+ /**
1645
+ * <p>The name of the Lambda function.</p>
1646
+ * <p class="title">
1647
+ * <b>Name formats</b>
1648
+ * </p>
1649
+ * <ul>
1650
+ * <li>
1651
+ * <p>
1652
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
1653
+ * </li>
1654
+ * <li>
1655
+ * <p>
1656
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
1657
+ * </li>
1658
+ * <li>
1659
+ * <p>
1660
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
1661
+ * </li>
1662
+ * </ul>
1663
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
1664
+ * characters in length.</p>
1665
+ */
1666
+ FunctionName: string | undefined;
1667
+ /**
1668
+ * <p>The name of the alias.</p>
1669
+ */
1670
+ Name: string | undefined;
1671
+ }
1672
+ export declare namespace DeleteAliasRequest {
1673
+ /**
1674
+ * @internal
1675
+ */
1676
+ const filterSensitiveLog: (obj: DeleteAliasRequest) => any;
1677
+ }
1678
+ export interface DeleteCodeSigningConfigRequest {
1679
+ /**
1680
+ * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
1681
+ */
1682
+ CodeSigningConfigArn: string | undefined;
1683
+ }
1684
+ export declare namespace DeleteCodeSigningConfigRequest {
1685
+ /**
1686
+ * @internal
1687
+ */
1688
+ const filterSensitiveLog: (obj: DeleteCodeSigningConfigRequest) => any;
1689
+ }
1690
+ export interface DeleteCodeSigningConfigResponse {
1691
+ }
1692
+ export declare namespace DeleteCodeSigningConfigResponse {
1693
+ /**
1694
+ * @internal
1695
+ */
1696
+ const filterSensitiveLog: (obj: DeleteCodeSigningConfigResponse) => any;
1697
+ }
1698
+ export interface DeleteEventSourceMappingRequest {
1699
+ /**
1700
+ * <p>The identifier of the event source mapping.</p>
1701
+ */
1702
+ UUID: string | undefined;
1703
+ }
1704
+ export declare namespace DeleteEventSourceMappingRequest {
1705
+ /**
1706
+ * @internal
1707
+ */
1708
+ const filterSensitiveLog: (obj: DeleteEventSourceMappingRequest) => any;
1709
+ }
1710
+ /**
1711
+ * <p>The operation conflicts with the resource's availability. For example, you attempted to update an EventSource
1712
+ * Mapping in CREATING, or tried to delete a EventSource mapping currently in the UPDATING state.</p>
1713
+ */
1714
+ export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
1715
+ name: "ResourceInUseException";
1716
+ $fault: "client";
1717
+ Type?: string;
1718
+ Message?: string;
1719
+ }
1720
+ export declare namespace ResourceInUseException {
1721
+ /**
1722
+ * @internal
1723
+ */
1724
+ const filterSensitiveLog: (obj: ResourceInUseException) => any;
1725
+ }
1726
+ export interface DeleteFunctionRequest {
1727
+ /**
1728
+ * <p>The name of the Lambda function or version.</p>
1729
+ * <p class="title">
1730
+ * <b>Name formats</b>
1731
+ * </p>
1732
+ * <ul>
1733
+ * <li>
1734
+ * <p>
1735
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:1</code> (with version).</p>
1736
+ * </li>
1737
+ * <li>
1738
+ * <p>
1739
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
1740
+ * </li>
1741
+ * <li>
1742
+ * <p>
1743
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
1744
+ * </li>
1745
+ * </ul>
1746
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
1747
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
1748
+ */
1749
+ FunctionName: string | undefined;
1750
+ /**
1751
+ * <p>Specify a version to delete. You can't delete a version that's referenced by an alias.</p>
1752
+ */
1753
+ Qualifier?: string;
1754
+ }
1755
+ export declare namespace DeleteFunctionRequest {
1756
+ /**
1757
+ * @internal
1758
+ */
1759
+ const filterSensitiveLog: (obj: DeleteFunctionRequest) => any;
1760
+ }
1761
+ export interface DeleteFunctionCodeSigningConfigRequest {
1762
+ /**
1763
+ * <p>The name of the Lambda function.</p>
1764
+ * <p class="title">
1765
+ * <b>Name formats</b>
1766
+ * </p>
1767
+ * <ul>
1768
+ * <li>
1769
+ * <p>
1770
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
1771
+ * </li>
1772
+ * <li>
1773
+ * <p>
1774
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
1775
+ * </li>
1776
+ * <li>
1777
+ * <p>
1778
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
1779
+ * </li>
1780
+ * </ul>
1781
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
1782
+ * characters in length.</p>
1783
+ */
1784
+ FunctionName: string | undefined;
1785
+ }
1786
+ export declare namespace DeleteFunctionCodeSigningConfigRequest {
1787
+ /**
1788
+ * @internal
1789
+ */
1790
+ const filterSensitiveLog: (obj: DeleteFunctionCodeSigningConfigRequest) => any;
1791
+ }
1792
+ export interface DeleteFunctionConcurrencyRequest {
1793
+ /**
1794
+ * <p>The name of the Lambda function.</p>
1795
+ * <p class="title">
1796
+ * <b>Name formats</b>
1797
+ * </p>
1798
+ * <ul>
1799
+ * <li>
1800
+ * <p>
1801
+ * <b>Function name</b> - <code>my-function</code>.</p>
1802
+ * </li>
1803
+ * <li>
1804
+ * <p>
1805
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
1806
+ * </li>
1807
+ * <li>
1808
+ * <p>
1809
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
1810
+ * </li>
1811
+ * </ul>
1812
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
1813
+ * characters in length.</p>
1814
+ */
1815
+ FunctionName: string | undefined;
1816
+ }
1817
+ export declare namespace DeleteFunctionConcurrencyRequest {
1818
+ /**
1819
+ * @internal
1820
+ */
1821
+ const filterSensitiveLog: (obj: DeleteFunctionConcurrencyRequest) => any;
1822
+ }
1823
+ export interface DeleteFunctionEventInvokeConfigRequest {
1824
+ /**
1825
+ * <p>The name of the Lambda function, version, or alias.</p>
1826
+ * <p class="title">
1827
+ * <b>Name formats</b>
1828
+ * </p>
1829
+ * <ul>
1830
+ * <li>
1831
+ * <p>
1832
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
1833
+ * </li>
1834
+ * <li>
1835
+ * <p>
1836
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
1837
+ * </li>
1838
+ * <li>
1839
+ * <p>
1840
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
1841
+ * </li>
1842
+ * </ul>
1843
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
1844
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
1845
+ */
1846
+ FunctionName: string | undefined;
1847
+ /**
1848
+ * <p>A version number or alias name.</p>
1849
+ */
1850
+ Qualifier?: string;
1851
+ }
1852
+ export declare namespace DeleteFunctionEventInvokeConfigRequest {
1853
+ /**
1854
+ * @internal
1855
+ */
1856
+ const filterSensitiveLog: (obj: DeleteFunctionEventInvokeConfigRequest) => any;
1857
+ }
1858
+ export interface DeleteLayerVersionRequest {
1859
+ /**
1860
+ * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
1861
+ */
1862
+ LayerName: string | undefined;
1863
+ /**
1864
+ * <p>The version number.</p>
1865
+ */
1866
+ VersionNumber: number | undefined;
1867
+ }
1868
+ export declare namespace DeleteLayerVersionRequest {
1869
+ /**
1870
+ * @internal
1871
+ */
1872
+ const filterSensitiveLog: (obj: DeleteLayerVersionRequest) => any;
1873
+ }
1874
+ export interface DeleteProvisionedConcurrencyConfigRequest {
1875
+ /**
1876
+ * <p>The name of the Lambda function.</p>
1877
+ * <p class="title">
1878
+ * <b>Name formats</b>
1879
+ * </p>
1880
+ * <ul>
1881
+ * <li>
1882
+ * <p>
1883
+ * <b>Function name</b> - <code>my-function</code>.</p>
1884
+ * </li>
1885
+ * <li>
1886
+ * <p>
1887
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
1888
+ * </li>
1889
+ * <li>
1890
+ * <p>
1891
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
1892
+ * </li>
1893
+ * </ul>
1894
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
1895
+ * characters in length.</p>
1896
+ */
1897
+ FunctionName: string | undefined;
1898
+ /**
1899
+ * <p>The version number or alias name.</p>
1900
+ */
1901
+ Qualifier: string | undefined;
1902
+ }
1903
+ export declare namespace DeleteProvisionedConcurrencyConfigRequest {
1904
+ /**
1905
+ * @internal
1906
+ */
1907
+ const filterSensitiveLog: (obj: DeleteProvisionedConcurrencyConfigRequest) => any;
1908
+ }
1909
+ export interface GetAccountSettingsRequest {
1910
+ }
1911
+ export declare namespace GetAccountSettingsRequest {
1912
+ /**
1913
+ * @internal
1914
+ */
1915
+ const filterSensitiveLog: (obj: GetAccountSettingsRequest) => any;
1916
+ }
1917
+ export interface GetAccountSettingsResponse {
1918
+ /**
1919
+ * <p>Limits that are related to concurrency and code storage.</p>
1920
+ */
1921
+ AccountLimit?: AccountLimit;
1922
+ /**
1923
+ * <p>The number of functions and amount of storage in use.</p>
1924
+ */
1925
+ AccountUsage?: AccountUsage;
1926
+ }
1927
+ export declare namespace GetAccountSettingsResponse {
1928
+ /**
1929
+ * @internal
1930
+ */
1931
+ const filterSensitiveLog: (obj: GetAccountSettingsResponse) => any;
1932
+ }
1933
+ export interface GetAliasRequest {
1934
+ /**
1935
+ * <p>The name of the Lambda function.</p>
1936
+ * <p class="title">
1937
+ * <b>Name formats</b>
1938
+ * </p>
1939
+ * <ul>
1940
+ * <li>
1941
+ * <p>
1942
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
1943
+ * </li>
1944
+ * <li>
1945
+ * <p>
1946
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
1947
+ * </li>
1948
+ * <li>
1949
+ * <p>
1950
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
1951
+ * </li>
1952
+ * </ul>
1953
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
1954
+ * characters in length.</p>
1955
+ */
1956
+ FunctionName: string | undefined;
1957
+ /**
1958
+ * <p>The name of the alias.</p>
1959
+ */
1960
+ Name: string | undefined;
1961
+ }
1962
+ export declare namespace GetAliasRequest {
1963
+ /**
1964
+ * @internal
1965
+ */
1966
+ const filterSensitiveLog: (obj: GetAliasRequest) => any;
1967
+ }
1968
+ export interface GetCodeSigningConfigRequest {
1969
+ /**
1970
+ * <p>The The Amazon Resource Name (ARN) of the code signing configuration. </p>
1971
+ */
1972
+ CodeSigningConfigArn: string | undefined;
1973
+ }
1974
+ export declare namespace GetCodeSigningConfigRequest {
1975
+ /**
1976
+ * @internal
1977
+ */
1978
+ const filterSensitiveLog: (obj: GetCodeSigningConfigRequest) => any;
1979
+ }
1980
+ export interface GetCodeSigningConfigResponse {
1981
+ /**
1982
+ * <p>The code signing configuration</p>
1983
+ */
1984
+ CodeSigningConfig: CodeSigningConfig | undefined;
1985
+ }
1986
+ export declare namespace GetCodeSigningConfigResponse {
1987
+ /**
1988
+ * @internal
1989
+ */
1990
+ const filterSensitiveLog: (obj: GetCodeSigningConfigResponse) => any;
1991
+ }
1992
+ export interface GetEventSourceMappingRequest {
1993
+ /**
1994
+ * <p>The identifier of the event source mapping.</p>
1995
+ */
1996
+ UUID: string | undefined;
1997
+ }
1998
+ export declare namespace GetEventSourceMappingRequest {
1999
+ /**
2000
+ * @internal
2001
+ */
2002
+ const filterSensitiveLog: (obj: GetEventSourceMappingRequest) => any;
2003
+ }
2004
+ export interface GetFunctionRequest {
2005
+ /**
2006
+ * <p>The name of the Lambda function, version, or alias.</p>
2007
+ * <p class="title">
2008
+ * <b>Name formats</b>
2009
+ * </p>
2010
+ * <ul>
2011
+ * <li>
2012
+ * <p>
2013
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
2014
+ * </li>
2015
+ * <li>
2016
+ * <p>
2017
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
2018
+ * </li>
2019
+ * <li>
2020
+ * <p>
2021
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
2022
+ * </li>
2023
+ * </ul>
2024
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
2025
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
2026
+ */
2027
+ FunctionName: string | undefined;
2028
+ /**
2029
+ * <p>Specify a version or alias to get details about a published version of the function.</p>
2030
+ */
2031
+ Qualifier?: string;
2032
+ }
2033
+ export declare namespace GetFunctionRequest {
2034
+ /**
2035
+ * @internal
2036
+ */
2037
+ const filterSensitiveLog: (obj: GetFunctionRequest) => any;
2038
+ }
2039
+ /**
2040
+ * <p>Details about a function's deployment package.</p>
2041
+ */
2042
+ export interface FunctionCodeLocation {
2043
+ /**
2044
+ * <p>The service that's hosting the file.</p>
2045
+ */
2046
+ RepositoryType?: string;
2047
+ /**
2048
+ * <p>A presigned URL that you can use to download the deployment package.</p>
2049
+ */
2050
+ Location?: string;
2051
+ /**
2052
+ * <p>URI of a container image in the Amazon ECR registry.</p>
2053
+ */
2054
+ ImageUri?: string;
2055
+ /**
2056
+ * <p>The resolved URI for the image.</p>
2057
+ */
2058
+ ResolvedImageUri?: string;
2059
+ }
2060
+ export declare namespace FunctionCodeLocation {
2061
+ /**
2062
+ * @internal
2063
+ */
2064
+ const filterSensitiveLog: (obj: FunctionCodeLocation) => any;
2065
+ }
2066
+ export interface Concurrency {
2067
+ /**
2068
+ * <p>The number of concurrent executions that are reserved for this function. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html">Managing Concurrency</a>.</p>
2069
+ */
2070
+ ReservedConcurrentExecutions?: number;
2071
+ }
2072
+ export declare namespace Concurrency {
2073
+ /**
2074
+ * @internal
2075
+ */
2076
+ const filterSensitiveLog: (obj: Concurrency) => any;
2077
+ }
2078
+ export interface GetFunctionResponse {
2079
+ /**
2080
+ * <p>The configuration of the function or version.</p>
2081
+ */
2082
+ Configuration?: FunctionConfiguration;
2083
+ /**
2084
+ * <p>The deployment package of the function or version.</p>
2085
+ */
2086
+ Code?: FunctionCodeLocation;
2087
+ /**
2088
+ * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>.</p>
2089
+ */
2090
+ Tags?: {
2091
+ [key: string]: string;
2092
+ };
2093
+ /**
2094
+ * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html">reserved
2095
+ * concurrency</a>.</p>
2096
+ */
2097
+ Concurrency?: Concurrency;
2098
+ }
2099
+ export declare namespace GetFunctionResponse {
2100
+ /**
2101
+ * @internal
2102
+ */
2103
+ const filterSensitiveLog: (obj: GetFunctionResponse) => any;
2104
+ }
2105
+ export interface GetFunctionCodeSigningConfigRequest {
2106
+ /**
2107
+ * <p>The name of the Lambda function.</p>
2108
+ * <p class="title">
2109
+ * <b>Name formats</b>
2110
+ * </p>
2111
+ * <ul>
2112
+ * <li>
2113
+ * <p>
2114
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
2115
+ * </li>
2116
+ * <li>
2117
+ * <p>
2118
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
2119
+ * </li>
2120
+ * <li>
2121
+ * <p>
2122
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
2123
+ * </li>
2124
+ * </ul>
2125
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
2126
+ * characters in length.</p>
2127
+ */
2128
+ FunctionName: string | undefined;
2129
+ }
2130
+ export declare namespace GetFunctionCodeSigningConfigRequest {
2131
+ /**
2132
+ * @internal
2133
+ */
2134
+ const filterSensitiveLog: (obj: GetFunctionCodeSigningConfigRequest) => any;
2135
+ }
2136
+ export interface GetFunctionCodeSigningConfigResponse {
2137
+ /**
2138
+ * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
2139
+ */
2140
+ CodeSigningConfigArn: string | undefined;
2141
+ /**
2142
+ * <p>The name of the Lambda function.</p>
2143
+ * <p class="title">
2144
+ * <b>Name formats</b>
2145
+ * </p>
2146
+ * <ul>
2147
+ * <li>
2148
+ * <p>
2149
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
2150
+ * </li>
2151
+ * <li>
2152
+ * <p>
2153
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
2154
+ * </li>
2155
+ * <li>
2156
+ * <p>
2157
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
2158
+ * </li>
2159
+ * </ul>
2160
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
2161
+ * characters in length.</p>
2162
+ */
2163
+ FunctionName: string | undefined;
2164
+ }
2165
+ export declare namespace GetFunctionCodeSigningConfigResponse {
2166
+ /**
2167
+ * @internal
2168
+ */
2169
+ const filterSensitiveLog: (obj: GetFunctionCodeSigningConfigResponse) => any;
2170
+ }
2171
+ export interface GetFunctionConcurrencyRequest {
2172
+ /**
2173
+ * <p>The name of the Lambda function.</p>
2174
+ * <p class="title">
2175
+ * <b>Name formats</b>
2176
+ * </p>
2177
+ * <ul>
2178
+ * <li>
2179
+ * <p>
2180
+ * <b>Function name</b> - <code>my-function</code>.</p>
2181
+ * </li>
2182
+ * <li>
2183
+ * <p>
2184
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
2185
+ * </li>
2186
+ * <li>
2187
+ * <p>
2188
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
2189
+ * </li>
2190
+ * </ul>
2191
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
2192
+ * characters in length.</p>
2193
+ */
2194
+ FunctionName: string | undefined;
2195
+ }
2196
+ export declare namespace GetFunctionConcurrencyRequest {
2197
+ /**
2198
+ * @internal
2199
+ */
2200
+ const filterSensitiveLog: (obj: GetFunctionConcurrencyRequest) => any;
2201
+ }
2202
+ export interface GetFunctionConcurrencyResponse {
2203
+ /**
2204
+ * <p>The number of simultaneous executions that are reserved for the function.</p>
2205
+ */
2206
+ ReservedConcurrentExecutions?: number;
2207
+ }
2208
+ export declare namespace GetFunctionConcurrencyResponse {
2209
+ /**
2210
+ * @internal
2211
+ */
2212
+ const filterSensitiveLog: (obj: GetFunctionConcurrencyResponse) => any;
2213
+ }
2214
+ export interface GetFunctionConfigurationRequest {
2215
+ /**
2216
+ * <p>The name of the Lambda function, version, or alias.</p>
2217
+ * <p class="title">
2218
+ * <b>Name formats</b>
2219
+ * </p>
2220
+ * <ul>
2221
+ * <li>
2222
+ * <p>
2223
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
2224
+ * </li>
2225
+ * <li>
2226
+ * <p>
2227
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
2228
+ * </li>
2229
+ * <li>
2230
+ * <p>
2231
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
2232
+ * </li>
2233
+ * </ul>
2234
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
2235
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
2236
+ */
2237
+ FunctionName: string | undefined;
2238
+ /**
2239
+ * <p>Specify a version or alias to get details about a published version of the function.</p>
2240
+ */
2241
+ Qualifier?: string;
2242
+ }
2243
+ export declare namespace GetFunctionConfigurationRequest {
2244
+ /**
2245
+ * @internal
2246
+ */
2247
+ const filterSensitiveLog: (obj: GetFunctionConfigurationRequest) => any;
2248
+ }
2249
+ export interface FunctionEventInvokeConfig {
2250
+ /**
2251
+ * <p>The date and time that the configuration was last updated.</p>
2252
+ */
2253
+ LastModified?: Date;
2254
+ /**
2255
+ * <p>The Amazon Resource Name (ARN) of the function.</p>
2256
+ */
2257
+ FunctionArn?: string;
2258
+ /**
2259
+ * <p>The maximum number of times to retry when the function returns an error.</p>
2260
+ */
2261
+ MaximumRetryAttempts?: number;
2262
+ /**
2263
+ * <p>The maximum age of a request that Lambda sends to a function for processing.</p>
2264
+ */
2265
+ MaximumEventAgeInSeconds?: number;
2266
+ /**
2267
+ * <p>A destination for events after they have been sent to a function for processing.</p>
2268
+ * <p class="title">
2269
+ * <b>Destinations</b>
2270
+ * </p>
2271
+ * <ul>
2272
+ * <li>
2273
+ * <p>
2274
+ * <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p>
2275
+ * </li>
2276
+ * <li>
2277
+ * <p>
2278
+ * <b>Queue</b> - The ARN of an SQS queue.</p>
2279
+ * </li>
2280
+ * <li>
2281
+ * <p>
2282
+ * <b>Topic</b> - The ARN of an SNS topic.</p>
2283
+ * </li>
2284
+ * <li>
2285
+ * <p>
2286
+ * <b>Event Bus</b> - The ARN of an Amazon EventBridge event bus.</p>
2287
+ * </li>
2288
+ * </ul>
2289
+ */
2290
+ DestinationConfig?: DestinationConfig;
2291
+ }
2292
+ export declare namespace FunctionEventInvokeConfig {
2293
+ /**
2294
+ * @internal
2295
+ */
2296
+ const filterSensitiveLog: (obj: FunctionEventInvokeConfig) => any;
2297
+ }
2298
+ export interface GetFunctionEventInvokeConfigRequest {
2299
+ /**
2300
+ * <p>The name of the Lambda function, version, or alias.</p>
2301
+ * <p class="title">
2302
+ * <b>Name formats</b>
2303
+ * </p>
2304
+ * <ul>
2305
+ * <li>
2306
+ * <p>
2307
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
2308
+ * </li>
2309
+ * <li>
2310
+ * <p>
2311
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
2312
+ * </li>
2313
+ * <li>
2314
+ * <p>
2315
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
2316
+ * </li>
2317
+ * </ul>
2318
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
2319
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
2320
+ */
2321
+ FunctionName: string | undefined;
2322
+ /**
2323
+ * <p>A version number or alias name.</p>
2324
+ */
2325
+ Qualifier?: string;
2326
+ }
2327
+ export declare namespace GetFunctionEventInvokeConfigRequest {
2328
+ /**
2329
+ * @internal
2330
+ */
2331
+ const filterSensitiveLog: (obj: GetFunctionEventInvokeConfigRequest) => any;
2332
+ }
2333
+ export interface GetLayerVersionRequest {
2334
+ /**
2335
+ * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
2336
+ */
2337
+ LayerName: string | undefined;
2338
+ /**
2339
+ * <p>The version number.</p>
2340
+ */
2341
+ VersionNumber: number | undefined;
2342
+ }
2343
+ export declare namespace GetLayerVersionRequest {
2344
+ /**
2345
+ * @internal
2346
+ */
2347
+ const filterSensitiveLog: (obj: GetLayerVersionRequest) => any;
2348
+ }
2349
+ /**
2350
+ * <p>Details about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
2351
+ * layer</a>.</p>
2352
+ */
2353
+ export interface LayerVersionContentOutput {
2354
+ /**
2355
+ * <p>A link to the layer archive in Amazon S3 that is valid for 10 minutes.</p>
2356
+ */
2357
+ Location?: string;
2358
+ /**
2359
+ * <p>The SHA-256 hash of the layer archive.</p>
2360
+ */
2361
+ CodeSha256?: string;
2362
+ /**
2363
+ * <p>The size of the layer archive in bytes.</p>
2364
+ */
2365
+ CodeSize?: number;
2366
+ /**
2367
+ * <p>The Amazon Resource Name (ARN) for a signing profile version.</p>
2368
+ */
2369
+ SigningProfileVersionArn?: string;
2370
+ /**
2371
+ * <p>The Amazon Resource Name (ARN) of a signing job.</p>
2372
+ */
2373
+ SigningJobArn?: string;
2374
+ }
2375
+ export declare namespace LayerVersionContentOutput {
2376
+ /**
2377
+ * @internal
2378
+ */
2379
+ const filterSensitiveLog: (obj: LayerVersionContentOutput) => any;
2380
+ }
2381
+ export interface GetLayerVersionResponse {
2382
+ /**
2383
+ * <p>Details about the layer version.</p>
2384
+ */
2385
+ Content?: LayerVersionContentOutput;
2386
+ /**
2387
+ * <p>The ARN of the layer.</p>
2388
+ */
2389
+ LayerArn?: string;
2390
+ /**
2391
+ * <p>The ARN of the layer version.</p>
2392
+ */
2393
+ LayerVersionArn?: string;
2394
+ /**
2395
+ * <p>The description of the version.</p>
2396
+ */
2397
+ Description?: string;
2398
+ /**
2399
+ * <p>The date that the layer version was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
2400
+ */
2401
+ CreatedDate?: string;
2402
+ /**
2403
+ * <p>The version number.</p>
2404
+ */
2405
+ Version?: number;
2406
+ /**
2407
+ * <p>The layer's compatible runtimes.</p>
2408
+ */
2409
+ CompatibleRuntimes?: (Runtime | string)[];
2410
+ /**
2411
+ * <p>The layer's software license.</p>
2412
+ */
2413
+ LicenseInfo?: string;
2414
+ /**
2415
+ * <p>A list of compatible
2416
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
2417
+ */
2418
+ CompatibleArchitectures?: (Architecture | string)[];
2419
+ }
2420
+ export declare namespace GetLayerVersionResponse {
2421
+ /**
2422
+ * @internal
2423
+ */
2424
+ const filterSensitiveLog: (obj: GetLayerVersionResponse) => any;
2425
+ }
2426
+ export interface GetLayerVersionByArnRequest {
2427
+ /**
2428
+ * <p>The ARN of the layer version.</p>
2429
+ */
2430
+ Arn: string | undefined;
2431
+ }
2432
+ export declare namespace GetLayerVersionByArnRequest {
2433
+ /**
2434
+ * @internal
2435
+ */
2436
+ const filterSensitiveLog: (obj: GetLayerVersionByArnRequest) => any;
2437
+ }
2438
+ export interface GetLayerVersionPolicyRequest {
2439
+ /**
2440
+ * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
2441
+ */
2442
+ LayerName: string | undefined;
2443
+ /**
2444
+ * <p>The version number.</p>
2445
+ */
2446
+ VersionNumber: number | undefined;
2447
+ }
2448
+ export declare namespace GetLayerVersionPolicyRequest {
2449
+ /**
2450
+ * @internal
2451
+ */
2452
+ const filterSensitiveLog: (obj: GetLayerVersionPolicyRequest) => any;
2453
+ }
2454
+ export interface GetLayerVersionPolicyResponse {
2455
+ /**
2456
+ * <p>The policy document.</p>
2457
+ */
2458
+ Policy?: string;
2459
+ /**
2460
+ * <p>A unique identifier for the current revision of the policy.</p>
2461
+ */
2462
+ RevisionId?: string;
2463
+ }
2464
+ export declare namespace GetLayerVersionPolicyResponse {
2465
+ /**
2466
+ * @internal
2467
+ */
2468
+ const filterSensitiveLog: (obj: GetLayerVersionPolicyResponse) => any;
2469
+ }
2470
+ export interface GetPolicyRequest {
2471
+ /**
2472
+ * <p>The name of the Lambda function, version, or alias.</p>
2473
+ * <p class="title">
2474
+ * <b>Name formats</b>
2475
+ * </p>
2476
+ * <ul>
2477
+ * <li>
2478
+ * <p>
2479
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
2480
+ * </li>
2481
+ * <li>
2482
+ * <p>
2483
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
2484
+ * </li>
2485
+ * <li>
2486
+ * <p>
2487
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
2488
+ * </li>
2489
+ * </ul>
2490
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
2491
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
2492
+ */
2493
+ FunctionName: string | undefined;
2494
+ /**
2495
+ * <p>Specify a version or alias to get the policy for that resource.</p>
2496
+ */
2497
+ Qualifier?: string;
2498
+ }
2499
+ export declare namespace GetPolicyRequest {
2500
+ /**
2501
+ * @internal
2502
+ */
2503
+ const filterSensitiveLog: (obj: GetPolicyRequest) => any;
2504
+ }
2505
+ export interface GetPolicyResponse {
2506
+ /**
2507
+ * <p>The resource-based policy.</p>
2508
+ */
2509
+ Policy?: string;
2510
+ /**
2511
+ * <p>A unique identifier for the current revision of the policy.</p>
2512
+ */
2513
+ RevisionId?: string;
2514
+ }
2515
+ export declare namespace GetPolicyResponse {
2516
+ /**
2517
+ * @internal
2518
+ */
2519
+ const filterSensitiveLog: (obj: GetPolicyResponse) => any;
2520
+ }
2521
+ export interface GetProvisionedConcurrencyConfigRequest {
2522
+ /**
2523
+ * <p>The name of the Lambda function.</p>
2524
+ * <p class="title">
2525
+ * <b>Name formats</b>
2526
+ * </p>
2527
+ * <ul>
2528
+ * <li>
2529
+ * <p>
2530
+ * <b>Function name</b> - <code>my-function</code>.</p>
2531
+ * </li>
2532
+ * <li>
2533
+ * <p>
2534
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
2535
+ * </li>
2536
+ * <li>
2537
+ * <p>
2538
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
2539
+ * </li>
2540
+ * </ul>
2541
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
2542
+ * characters in length.</p>
2543
+ */
2544
+ FunctionName: string | undefined;
2545
+ /**
2546
+ * <p>The version number or alias name.</p>
2547
+ */
2548
+ Qualifier: string | undefined;
2549
+ }
2550
+ export declare namespace GetProvisionedConcurrencyConfigRequest {
2551
+ /**
2552
+ * @internal
2553
+ */
2554
+ const filterSensitiveLog: (obj: GetProvisionedConcurrencyConfigRequest) => any;
2555
+ }
2556
+ export declare enum ProvisionedConcurrencyStatusEnum {
2557
+ FAILED = "FAILED",
2558
+ IN_PROGRESS = "IN_PROGRESS",
2559
+ READY = "READY"
2560
+ }
2561
+ export interface GetProvisionedConcurrencyConfigResponse {
2562
+ /**
2563
+ * <p>The amount of provisioned concurrency requested.</p>
2564
+ */
2565
+ RequestedProvisionedConcurrentExecutions?: number;
2566
+ /**
2567
+ * <p>The amount of provisioned concurrency available.</p>
2568
+ */
2569
+ AvailableProvisionedConcurrentExecutions?: number;
2570
+ /**
2571
+ * <p>The amount of provisioned concurrency allocated.</p>
2572
+ */
2573
+ AllocatedProvisionedConcurrentExecutions?: number;
2574
+ /**
2575
+ * <p>The status of the allocation process.</p>
2576
+ */
2577
+ Status?: ProvisionedConcurrencyStatusEnum | string;
2578
+ /**
2579
+ * <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
2580
+ */
2581
+ StatusReason?: string;
2582
+ /**
2583
+ * <p>The date and time that a user last updated the configuration, in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601 format</a>.</p>
2584
+ */
2585
+ LastModified?: string;
2586
+ }
2587
+ export declare namespace GetProvisionedConcurrencyConfigResponse {
2588
+ /**
2589
+ * @internal
2590
+ */
2591
+ const filterSensitiveLog: (obj: GetProvisionedConcurrencyConfigResponse) => any;
2592
+ }
2593
+ /**
2594
+ * <p>The specified configuration does not exist.</p>
2595
+ */
2596
+ export interface ProvisionedConcurrencyConfigNotFoundException extends __SmithyException, $MetadataBearer {
2597
+ name: "ProvisionedConcurrencyConfigNotFoundException";
2598
+ $fault: "client";
2599
+ Type?: string;
2600
+ message?: string;
2601
+ }
2602
+ export declare namespace ProvisionedConcurrencyConfigNotFoundException {
2603
+ /**
2604
+ * @internal
2605
+ */
2606
+ const filterSensitiveLog: (obj: ProvisionedConcurrencyConfigNotFoundException) => any;
2607
+ }
2608
+ /**
2609
+ * <p>Need additional permissions to configure VPC settings.</p>
2610
+ */
2611
+ export interface EC2AccessDeniedException extends __SmithyException, $MetadataBearer {
2612
+ name: "EC2AccessDeniedException";
2613
+ $fault: "server";
2614
+ Type?: string;
2615
+ Message?: string;
2616
+ }
2617
+ export declare namespace EC2AccessDeniedException {
2618
+ /**
2619
+ * @internal
2620
+ */
2621
+ const filterSensitiveLog: (obj: EC2AccessDeniedException) => any;
2622
+ }
2623
+ /**
2624
+ * <p>Lambda was throttled by Amazon EC2 during Lambda function initialization using the execution role provided
2625
+ * for the Lambda function.</p>
2626
+ */
2627
+ export interface EC2ThrottledException extends __SmithyException, $MetadataBearer {
2628
+ name: "EC2ThrottledException";
2629
+ $fault: "server";
2630
+ Type?: string;
2631
+ Message?: string;
2632
+ }
2633
+ export declare namespace EC2ThrottledException {
2634
+ /**
2635
+ * @internal
2636
+ */
2637
+ const filterSensitiveLog: (obj: EC2ThrottledException) => any;
2638
+ }
2639
+ /**
2640
+ * <p>Lambda received an unexpected EC2 client exception while setting up for the Lambda function.</p>
2641
+ */
2642
+ export interface EC2UnexpectedException extends __SmithyException, $MetadataBearer {
2643
+ name: "EC2UnexpectedException";
2644
+ $fault: "server";
2645
+ Type?: string;
2646
+ Message?: string;
2647
+ EC2ErrorCode?: string;
2648
+ }
2649
+ export declare namespace EC2UnexpectedException {
2650
+ /**
2651
+ * @internal
2652
+ */
2653
+ const filterSensitiveLog: (obj: EC2UnexpectedException) => any;
2654
+ }
2655
+ /**
2656
+ * <p>An error occurred when reading from or writing to a connected file system.</p>
2657
+ */
2658
+ export interface EFSIOException extends __SmithyException, $MetadataBearer {
2659
+ name: "EFSIOException";
2660
+ $fault: "client";
2661
+ Type?: string;
2662
+ Message?: string;
2663
+ }
2664
+ export declare namespace EFSIOException {
2665
+ /**
2666
+ * @internal
2667
+ */
2668
+ const filterSensitiveLog: (obj: EFSIOException) => any;
2669
+ }
2670
+ /**
2671
+ * <p>The function couldn't make a network connection to the configured file system.</p>
2672
+ */
2673
+ export interface EFSMountConnectivityException extends __SmithyException, $MetadataBearer {
2674
+ name: "EFSMountConnectivityException";
2675
+ $fault: "client";
2676
+ Type?: string;
2677
+ Message?: string;
2678
+ }
2679
+ export declare namespace EFSMountConnectivityException {
2680
+ /**
2681
+ * @internal
2682
+ */
2683
+ const filterSensitiveLog: (obj: EFSMountConnectivityException) => any;
2684
+ }
2685
+ /**
2686
+ * <p>The function couldn't mount the configured file system due to a permission or configuration issue.</p>
2687
+ */
2688
+ export interface EFSMountFailureException extends __SmithyException, $MetadataBearer {
2689
+ name: "EFSMountFailureException";
2690
+ $fault: "client";
2691
+ Type?: string;
2692
+ Message?: string;
2693
+ }
2694
+ export declare namespace EFSMountFailureException {
2695
+ /**
2696
+ * @internal
2697
+ */
2698
+ const filterSensitiveLog: (obj: EFSMountFailureException) => any;
2699
+ }
2700
+ /**
2701
+ * <p>The function was able to make a network connection to the configured file system, but the mount operation
2702
+ * timed out.</p>
2703
+ */
2704
+ export interface EFSMountTimeoutException extends __SmithyException, $MetadataBearer {
2705
+ name: "EFSMountTimeoutException";
2706
+ $fault: "client";
2707
+ Type?: string;
2708
+ Message?: string;
2709
+ }
2710
+ export declare namespace EFSMountTimeoutException {
2711
+ /**
2712
+ * @internal
2713
+ */
2714
+ const filterSensitiveLog: (obj: EFSMountTimeoutException) => any;
2715
+ }
2716
+ /**
2717
+ * <p>Lambda was not able to create an elastic network interface in the VPC, specified as part of Lambda
2718
+ * function configuration, because the limit for network interfaces has been reached.</p>
2719
+ */
2720
+ export interface ENILimitReachedException extends __SmithyException, $MetadataBearer {
2721
+ name: "ENILimitReachedException";
2722
+ $fault: "server";
2723
+ Type?: string;
2724
+ Message?: string;
2725
+ }
2726
+ export declare namespace ENILimitReachedException {
2727
+ /**
2728
+ * @internal
2729
+ */
2730
+ const filterSensitiveLog: (obj: ENILimitReachedException) => any;
2731
+ }
2732
+ /**
2733
+ * <p>The request body could not be parsed as JSON.</p>
2734
+ */
2735
+ export interface InvalidRequestContentException extends __SmithyException, $MetadataBearer {
2736
+ name: "InvalidRequestContentException";
2737
+ $fault: "client";
2738
+ /**
2739
+ * <p>The exception type.</p>
2740
+ */
2741
+ Type?: string;
2742
+ /**
2743
+ * <p>The exception message.</p>
2744
+ */
2745
+ message?: string;
2746
+ }
2747
+ export declare namespace InvalidRequestContentException {
2748
+ /**
2749
+ * @internal
2750
+ */
2751
+ const filterSensitiveLog: (obj: InvalidRequestContentException) => any;
2752
+ }
2753
+ /**
2754
+ * <p>The runtime or runtime version specified is not supported.</p>
2755
+ */
2756
+ export interface InvalidRuntimeException extends __SmithyException, $MetadataBearer {
2757
+ name: "InvalidRuntimeException";
2758
+ $fault: "server";
2759
+ Type?: string;
2760
+ Message?: string;
2761
+ }
2762
+ export declare namespace InvalidRuntimeException {
2763
+ /**
2764
+ * @internal
2765
+ */
2766
+ const filterSensitiveLog: (obj: InvalidRuntimeException) => any;
2767
+ }
2768
+ /**
2769
+ * <p>The Security Group ID provided in the Lambda function VPC configuration is invalid.</p>
2770
+ */
2771
+ export interface InvalidSecurityGroupIDException extends __SmithyException, $MetadataBearer {
2772
+ name: "InvalidSecurityGroupIDException";
2773
+ $fault: "server";
2774
+ Type?: string;
2775
+ Message?: string;
2776
+ }
2777
+ export declare namespace InvalidSecurityGroupIDException {
2778
+ /**
2779
+ * @internal
2780
+ */
2781
+ const filterSensitiveLog: (obj: InvalidSecurityGroupIDException) => any;
2782
+ }
2783
+ /**
2784
+ * <p>The Subnet ID provided in the Lambda function VPC configuration is invalid.</p>
2785
+ */
2786
+ export interface InvalidSubnetIDException extends __SmithyException, $MetadataBearer {
2787
+ name: "InvalidSubnetIDException";
2788
+ $fault: "server";
2789
+ Type?: string;
2790
+ Message?: string;
2791
+ }
2792
+ export declare namespace InvalidSubnetIDException {
2793
+ /**
2794
+ * @internal
2795
+ */
2796
+ const filterSensitiveLog: (obj: InvalidSubnetIDException) => any;
2797
+ }
2798
+ /**
2799
+ * <p>Lambda could not unzip the deployment package.</p>
2800
+ */
2801
+ export interface InvalidZipFileException extends __SmithyException, $MetadataBearer {
2802
+ name: "InvalidZipFileException";
2803
+ $fault: "server";
2804
+ Type?: string;
2805
+ Message?: string;
2806
+ }
2807
+ export declare namespace InvalidZipFileException {
2808
+ /**
2809
+ * @internal
2810
+ */
2811
+ const filterSensitiveLog: (obj: InvalidZipFileException) => any;
2812
+ }
2813
+ export declare enum InvocationType {
2814
+ DryRun = "DryRun",
2815
+ Event = "Event",
2816
+ RequestResponse = "RequestResponse"
2817
+ }
2818
+ export declare enum LogType {
2819
+ None = "None",
2820
+ Tail = "Tail"
2821
+ }
2822
+ export interface InvocationRequest {
2823
+ /**
2824
+ * <p>The name of the Lambda function, version, or alias.</p>
2825
+ * <p class="title">
2826
+ * <b>Name formats</b>
2827
+ * </p>
2828
+ * <ul>
2829
+ * <li>
2830
+ * <p>
2831
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
2832
+ * </li>
2833
+ * <li>
2834
+ * <p>
2835
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
2836
+ * </li>
2837
+ * <li>
2838
+ * <p>
2839
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
2840
+ * </li>
2841
+ * </ul>
2842
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
2843
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
2844
+ */
2845
+ FunctionName: string | undefined;
2846
+ /**
2847
+ * <p>Choose from the following options.</p>
2848
+ * <ul>
2849
+ * <li>
2850
+ * <p>
2851
+ * <code>RequestResponse</code> (default) - Invoke the function synchronously. Keep the connection open until
2852
+ * the function returns a response or times out. The API response includes the function response and additional
2853
+ * data.</p>
2854
+ * </li>
2855
+ * <li>
2856
+ * <p>
2857
+ * <code>Event</code> - Invoke the function asynchronously. Send events that fail multiple times to the
2858
+ * function's dead-letter queue (if it's configured). The API response only includes a status code.</p>
2859
+ * </li>
2860
+ * <li>
2861
+ * <p>
2862
+ * <code>DryRun</code> - Validate parameter values and verify that the user or role has permission to invoke
2863
+ * the function.</p>
2864
+ * </li>
2865
+ * </ul>
2866
+ */
2867
+ InvocationType?: InvocationType | string;
2868
+ /**
2869
+ * <p>Set to <code>Tail</code> to include the execution log in the response. Applies to synchronously invoked functions only.</p>
2870
+ */
2871
+ LogType?: LogType | string;
2872
+ /**
2873
+ * <p>Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function in the context
2874
+ * object.</p>
2875
+ */
2876
+ ClientContext?: string;
2877
+ /**
2878
+ * <p>The JSON that you want to provide to your Lambda function as input.</p>
2879
+ */
2880
+ Payload?: Uint8Array;
2881
+ /**
2882
+ * <p>Specify a version or alias to invoke a published version of the function.</p>
2883
+ */
2884
+ Qualifier?: string;
2885
+ }
2886
+ export declare namespace InvocationRequest {
2887
+ /**
2888
+ * @internal
2889
+ */
2890
+ const filterSensitiveLog: (obj: InvocationRequest) => any;
2891
+ }
2892
+ export interface InvocationResponse {
2893
+ /**
2894
+ * <p>The HTTP status code is in the 200 range for a successful request. For the <code>RequestResponse</code>
2895
+ * invocation type, this status code is 200. For the <code>Event</code> invocation type, this status code is 202. For
2896
+ * the <code>DryRun</code> invocation type, the status code is 204.</p>
2897
+ */
2898
+ StatusCode?: number;
2899
+ /**
2900
+ * <p>If present, indicates that an error occurred during function execution. Details about the error are included
2901
+ * in the response payload.</p>
2902
+ */
2903
+ FunctionError?: string;
2904
+ /**
2905
+ * <p>The last 4 KB of the execution log, which is base64 encoded.</p>
2906
+ */
2907
+ LogResult?: string;
2908
+ /**
2909
+ * <p>The response from the function, or an error object.</p>
2910
+ */
2911
+ Payload?: Uint8Array;
2912
+ /**
2913
+ * <p>The version of the function that executed. When you invoke a function with an alias, this indicates which
2914
+ * version the alias resolved to.</p>
2915
+ */
2916
+ ExecutedVersion?: string;
2917
+ }
2918
+ export declare namespace InvocationResponse {
2919
+ /**
2920
+ * @internal
2921
+ */
2922
+ const filterSensitiveLog: (obj: InvocationResponse) => any;
2923
+ }
2924
+ /**
2925
+ * <p>Lambda was unable to decrypt the environment variables because KMS access was denied. Check the Lambda
2926
+ * function's KMS permissions.</p>
2927
+ */
2928
+ export interface KMSAccessDeniedException extends __SmithyException, $MetadataBearer {
2929
+ name: "KMSAccessDeniedException";
2930
+ $fault: "server";
2931
+ Type?: string;
2932
+ Message?: string;
2933
+ }
2934
+ export declare namespace KMSAccessDeniedException {
2935
+ /**
2936
+ * @internal
2937
+ */
2938
+ const filterSensitiveLog: (obj: KMSAccessDeniedException) => any;
2939
+ }
2940
+ /**
2941
+ * <p>Lambda was unable to decrypt the environment variables because the KMS key used is disabled. Check the Lambda
2942
+ * function's KMS key settings.</p>
2943
+ */
2944
+ export interface KMSDisabledException extends __SmithyException, $MetadataBearer {
2945
+ name: "KMSDisabledException";
2946
+ $fault: "server";
2947
+ Type?: string;
2948
+ Message?: string;
2949
+ }
2950
+ export declare namespace KMSDisabledException {
2951
+ /**
2952
+ * @internal
2953
+ */
2954
+ const filterSensitiveLog: (obj: KMSDisabledException) => any;
2955
+ }
2956
+ /**
2957
+ * <p>Lambda was unable to decrypt the environment variables because the KMS key used is in an invalid state for
2958
+ * Decrypt. Check the function's KMS key settings.</p>
2959
+ */
2960
+ export interface KMSInvalidStateException extends __SmithyException, $MetadataBearer {
2961
+ name: "KMSInvalidStateException";
2962
+ $fault: "server";
2963
+ Type?: string;
2964
+ Message?: string;
2965
+ }
2966
+ export declare namespace KMSInvalidStateException {
2967
+ /**
2968
+ * @internal
2969
+ */
2970
+ const filterSensitiveLog: (obj: KMSInvalidStateException) => any;
2971
+ }
2972
+ /**
2973
+ * <p>Lambda was unable to decrypt the environment variables because the KMS key was not found. Check the function's
2974
+ * KMS key settings. </p>
2975
+ */
2976
+ export interface KMSNotFoundException extends __SmithyException, $MetadataBearer {
2977
+ name: "KMSNotFoundException";
2978
+ $fault: "server";
2979
+ Type?: string;
2980
+ Message?: string;
2981
+ }
2982
+ export declare namespace KMSNotFoundException {
2983
+ /**
2984
+ * @internal
2985
+ */
2986
+ const filterSensitiveLog: (obj: KMSNotFoundException) => any;
2987
+ }
2988
+ /**
2989
+ * <p>The request payload exceeded the <code>Invoke</code> request body JSON input limit. For more information, see
2990
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/limits.html">Limits</a>. </p>
2991
+ */
2992
+ export interface RequestTooLargeException extends __SmithyException, $MetadataBearer {
2993
+ name: "RequestTooLargeException";
2994
+ $fault: "client";
2995
+ Type?: string;
2996
+ message?: string;
2997
+ }
2998
+ export declare namespace RequestTooLargeException {
2999
+ /**
3000
+ * @internal
3001
+ */
3002
+ const filterSensitiveLog: (obj: RequestTooLargeException) => any;
3003
+ }
3004
+ /**
3005
+ * <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to
3006
+ * reestablish and try again.</p>
3007
+ */
3008
+ export interface ResourceNotReadyException extends __SmithyException, $MetadataBearer {
3009
+ name: "ResourceNotReadyException";
3010
+ $fault: "server";
3011
+ /**
3012
+ * <p>The exception type.</p>
3013
+ */
3014
+ Type?: string;
3015
+ /**
3016
+ * <p>The exception message.</p>
3017
+ */
3018
+ message?: string;
3019
+ }
3020
+ export declare namespace ResourceNotReadyException {
3021
+ /**
3022
+ * @internal
3023
+ */
3024
+ const filterSensitiveLog: (obj: ResourceNotReadyException) => any;
3025
+ }
3026
+ /**
3027
+ * <p>Lambda was not able to set up VPC access for the Lambda function because one or more configured subnets
3028
+ * has no available IP addresses.</p>
3029
+ */
3030
+ export interface SubnetIPAddressLimitReachedException extends __SmithyException, $MetadataBearer {
3031
+ name: "SubnetIPAddressLimitReachedException";
3032
+ $fault: "server";
3033
+ Type?: string;
3034
+ Message?: string;
3035
+ }
3036
+ export declare namespace SubnetIPAddressLimitReachedException {
3037
+ /**
3038
+ * @internal
3039
+ */
3040
+ const filterSensitiveLog: (obj: SubnetIPAddressLimitReachedException) => any;
3041
+ }
3042
+ /**
3043
+ * <p>The content type of the <code>Invoke</code> request body is not JSON.</p>
3044
+ */
3045
+ export interface UnsupportedMediaTypeException extends __SmithyException, $MetadataBearer {
3046
+ name: "UnsupportedMediaTypeException";
3047
+ $fault: "client";
3048
+ Type?: string;
3049
+ message?: string;
3050
+ }
3051
+ export declare namespace UnsupportedMediaTypeException {
3052
+ /**
3053
+ * @internal
3054
+ */
3055
+ const filterSensitiveLog: (obj: UnsupportedMediaTypeException) => any;
3056
+ }
3057
+ export interface InvokeAsyncRequest {
3058
+ /**
3059
+ * <p>The name of the Lambda function.</p>
3060
+ * <p class="title">
3061
+ * <b>Name formats</b>
3062
+ * </p>
3063
+ * <ul>
3064
+ * <li>
3065
+ * <p>
3066
+ * <b>Function name</b> - <code>my-function</code>.</p>
3067
+ * </li>
3068
+ * <li>
3069
+ * <p>
3070
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
3071
+ * </li>
3072
+ * <li>
3073
+ * <p>
3074
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
3075
+ * </li>
3076
+ * </ul>
3077
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
3078
+ * characters in length.</p>
3079
+ */
3080
+ FunctionName: string | undefined;
3081
+ /**
3082
+ * <p>The JSON that you want to provide to your Lambda function as input.</p>
3083
+ */
3084
+ InvokeArgs: Readable | ReadableStream | Blob | undefined;
3085
+ }
3086
+ export declare namespace InvokeAsyncRequest {
3087
+ /**
3088
+ * @internal
3089
+ */
3090
+ const filterSensitiveLog: (obj: InvokeAsyncRequest) => any;
3091
+ }
3092
+ /**
3093
+ * @deprecated
3094
+ *
3095
+ * <p>A success response (<code>202 Accepted</code>) indicates that the request is queued for invocation. </p>
3096
+ */
3097
+ export interface InvokeAsyncResponse {
3098
+ /**
3099
+ * <p>The status code.</p>
3100
+ */
3101
+ Status?: number;
3102
+ }
3103
+ export declare namespace InvokeAsyncResponse {
3104
+ /**
3105
+ * @internal
3106
+ */
3107
+ const filterSensitiveLog: (obj: InvokeAsyncResponse) => any;
3108
+ }
3109
+ export interface ListAliasesRequest {
3110
+ /**
3111
+ * <p>The name of the Lambda function.</p>
3112
+ * <p class="title">
3113
+ * <b>Name formats</b>
3114
+ * </p>
3115
+ * <ul>
3116
+ * <li>
3117
+ * <p>
3118
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
3119
+ * </li>
3120
+ * <li>
3121
+ * <p>
3122
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
3123
+ * </li>
3124
+ * <li>
3125
+ * <p>
3126
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
3127
+ * </li>
3128
+ * </ul>
3129
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
3130
+ * characters in length.</p>
3131
+ */
3132
+ FunctionName: string | undefined;
3133
+ /**
3134
+ * <p>Specify a function version to only list aliases that invoke that version.</p>
3135
+ */
3136
+ FunctionVersion?: string;
3137
+ /**
3138
+ * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
3139
+ */
3140
+ Marker?: string;
3141
+ /**
3142
+ * <p>Limit the number of aliases returned.</p>
3143
+ */
3144
+ MaxItems?: number;
3145
+ }
3146
+ export declare namespace ListAliasesRequest {
3147
+ /**
3148
+ * @internal
3149
+ */
3150
+ const filterSensitiveLog: (obj: ListAliasesRequest) => any;
3151
+ }
3152
+ export interface ListAliasesResponse {
3153
+ /**
3154
+ * <p>The pagination token that's included if more results are available.</p>
3155
+ */
3156
+ NextMarker?: string;
3157
+ /**
3158
+ * <p>A list of aliases.</p>
3159
+ */
3160
+ Aliases?: AliasConfiguration[];
3161
+ }
3162
+ export declare namespace ListAliasesResponse {
3163
+ /**
3164
+ * @internal
3165
+ */
3166
+ const filterSensitiveLog: (obj: ListAliasesResponse) => any;
3167
+ }
3168
+ export interface ListCodeSigningConfigsRequest {
3169
+ /**
3170
+ * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
3171
+ */
3172
+ Marker?: string;
3173
+ /**
3174
+ * <p>Maximum number of items to return.</p>
3175
+ */
3176
+ MaxItems?: number;
3177
+ }
3178
+ export declare namespace ListCodeSigningConfigsRequest {
3179
+ /**
3180
+ * @internal
3181
+ */
3182
+ const filterSensitiveLog: (obj: ListCodeSigningConfigsRequest) => any;
3183
+ }
3184
+ export interface ListCodeSigningConfigsResponse {
3185
+ /**
3186
+ * <p>The pagination token that's included if more results are available.</p>
3187
+ */
3188
+ NextMarker?: string;
3189
+ /**
3190
+ * <p>The code signing configurations</p>
3191
+ */
3192
+ CodeSigningConfigs?: CodeSigningConfig[];
3193
+ }
3194
+ export declare namespace ListCodeSigningConfigsResponse {
3195
+ /**
3196
+ * @internal
3197
+ */
3198
+ const filterSensitiveLog: (obj: ListCodeSigningConfigsResponse) => any;
3199
+ }
3200
+ export interface ListEventSourceMappingsRequest {
3201
+ /**
3202
+ * <p>The Amazon Resource Name (ARN) of the event source.</p>
3203
+ * <ul>
3204
+ * <li>
3205
+ * <p>
3206
+ * <b>Amazon Kinesis</b> - The ARN of the data stream or a stream consumer.</p>
3207
+ * </li>
3208
+ * <li>
3209
+ * <p>
3210
+ * <b>Amazon DynamoDB Streams</b> - The ARN of the stream.</p>
3211
+ * </li>
3212
+ * <li>
3213
+ * <p>
3214
+ * <b>Amazon Simple Queue Service</b> - The ARN of the queue.</p>
3215
+ * </li>
3216
+ * <li>
3217
+ * <p>
3218
+ * <b>Amazon Managed Streaming for Apache Kafka</b> - The ARN of the cluster.</p>
3219
+ * </li>
3220
+ * </ul>
3221
+ */
3222
+ EventSourceArn?: string;
3223
+ /**
3224
+ * <p>The name of the Lambda function.</p>
3225
+ * <p class="title">
3226
+ * <b>Name formats</b>
3227
+ * </p>
3228
+ * <ul>
3229
+ * <li>
3230
+ * <p>
3231
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
3232
+ * </li>
3233
+ * <li>
3234
+ * <p>
3235
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
3236
+ * </li>
3237
+ * <li>
3238
+ * <p>
3239
+ * <b>Version or Alias ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD</code>.</p>
3240
+ * </li>
3241
+ * <li>
3242
+ * <p>
3243
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
3244
+ * </li>
3245
+ * </ul>
3246
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64
3247
+ * characters in length.</p>
3248
+ */
3249
+ FunctionName?: string;
3250
+ /**
3251
+ * <p>A pagination token returned by a previous call.</p>
3252
+ */
3253
+ Marker?: string;
3254
+ /**
3255
+ * <p>The maximum number of event source mappings to return. Note that ListEventSourceMappings returns a maximum of
3256
+ * 100 items in each response, even if you set the number higher.</p>
3257
+ */
3258
+ MaxItems?: number;
3259
+ }
3260
+ export declare namespace ListEventSourceMappingsRequest {
3261
+ /**
3262
+ * @internal
3263
+ */
3264
+ const filterSensitiveLog: (obj: ListEventSourceMappingsRequest) => any;
3265
+ }
3266
+ export interface ListEventSourceMappingsResponse {
3267
+ /**
3268
+ * <p>A pagination token that's returned when the response doesn't contain all event source mappings.</p>
3269
+ */
3270
+ NextMarker?: string;
3271
+ /**
3272
+ * <p>A list of event source mappings.</p>
3273
+ */
3274
+ EventSourceMappings?: EventSourceMappingConfiguration[];
3275
+ }
3276
+ export declare namespace ListEventSourceMappingsResponse {
3277
+ /**
3278
+ * @internal
3279
+ */
3280
+ const filterSensitiveLog: (obj: ListEventSourceMappingsResponse) => any;
3281
+ }
3282
+ export interface ListFunctionEventInvokeConfigsRequest {
3283
+ /**
3284
+ * <p>The name of the Lambda function.</p>
3285
+ * <p class="title">
3286
+ * <b>Name formats</b>
3287
+ * </p>
3288
+ * <ul>
3289
+ * <li>
3290
+ * <p>
3291
+ * <b>Function name</b> - <code>my-function</code>.</p>
3292
+ * </li>
3293
+ * <li>
3294
+ * <p>
3295
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
3296
+ * </li>
3297
+ * <li>
3298
+ * <p>
3299
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
3300
+ * </li>
3301
+ * </ul>
3302
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
3303
+ * characters in length.</p>
3304
+ */
3305
+ FunctionName: string | undefined;
3306
+ /**
3307
+ * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
3308
+ */
3309
+ Marker?: string;
3310
+ /**
3311
+ * <p>The maximum number of configurations to return.</p>
3312
+ */
3313
+ MaxItems?: number;
3314
+ }
3315
+ export declare namespace ListFunctionEventInvokeConfigsRequest {
3316
+ /**
3317
+ * @internal
3318
+ */
3319
+ const filterSensitiveLog: (obj: ListFunctionEventInvokeConfigsRequest) => any;
3320
+ }
3321
+ export interface ListFunctionEventInvokeConfigsResponse {
3322
+ /**
3323
+ * <p>A list of configurations.</p>
3324
+ */
3325
+ FunctionEventInvokeConfigs?: FunctionEventInvokeConfig[];
3326
+ /**
3327
+ * <p>The pagination token that's included if more results are available.</p>
3328
+ */
3329
+ NextMarker?: string;
3330
+ }
3331
+ export declare namespace ListFunctionEventInvokeConfigsResponse {
3332
+ /**
3333
+ * @internal
3334
+ */
3335
+ const filterSensitiveLog: (obj: ListFunctionEventInvokeConfigsResponse) => any;
3336
+ }
3337
+ export declare enum FunctionVersion {
3338
+ ALL = "ALL"
3339
+ }
3340
+ export interface ListFunctionsRequest {
3341
+ /**
3342
+ * <p>For Lambda@Edge functions, the Amazon Web Services Region of the master function. For example, <code>us-east-1</code> filters
3343
+ * the list of functions to only include Lambda@Edge functions replicated from a master function in US East (N.
3344
+ * Virginia). If specified, you must set <code>FunctionVersion</code> to <code>ALL</code>.</p>
3345
+ */
3346
+ MasterRegion?: string;
3347
+ /**
3348
+ * <p>Set to <code>ALL</code> to include entries for all published versions of each function.</p>
3349
+ */
3350
+ FunctionVersion?: FunctionVersion | string;
3351
+ /**
3352
+ * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
3353
+ */
3354
+ Marker?: string;
3355
+ /**
3356
+ * <p>The maximum number of functions to return in the response. Note that <code>ListFunctions</code> returns a maximum of 50 items in each response,
3357
+ * even if you set the number higher.</p>
3358
+ */
3359
+ MaxItems?: number;
3360
+ }
3361
+ export declare namespace ListFunctionsRequest {
3362
+ /**
3363
+ * @internal
3364
+ */
3365
+ const filterSensitiveLog: (obj: ListFunctionsRequest) => any;
3366
+ }
3367
+ /**
3368
+ * <p>A list of Lambda functions.</p>
3369
+ */
3370
+ export interface ListFunctionsResponse {
3371
+ /**
3372
+ * <p>The pagination token that's included if more results are available.</p>
3373
+ */
3374
+ NextMarker?: string;
3375
+ /**
3376
+ * <p>A list of Lambda functions.</p>
3377
+ */
3378
+ Functions?: FunctionConfiguration[];
3379
+ }
3380
+ export declare namespace ListFunctionsResponse {
3381
+ /**
3382
+ * @internal
3383
+ */
3384
+ const filterSensitiveLog: (obj: ListFunctionsResponse) => any;
3385
+ }
3386
+ export interface ListFunctionsByCodeSigningConfigRequest {
3387
+ /**
3388
+ * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
3389
+ */
3390
+ CodeSigningConfigArn: string | undefined;
3391
+ /**
3392
+ * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
3393
+ */
3394
+ Marker?: string;
3395
+ /**
3396
+ * <p>Maximum number of items to return.</p>
3397
+ */
3398
+ MaxItems?: number;
3399
+ }
3400
+ export declare namespace ListFunctionsByCodeSigningConfigRequest {
3401
+ /**
3402
+ * @internal
3403
+ */
3404
+ const filterSensitiveLog: (obj: ListFunctionsByCodeSigningConfigRequest) => any;
3405
+ }
3406
+ export interface ListFunctionsByCodeSigningConfigResponse {
3407
+ /**
3408
+ * <p>The pagination token that's included if more results are available.</p>
3409
+ */
3410
+ NextMarker?: string;
3411
+ /**
3412
+ * <p>The function ARNs. </p>
3413
+ */
3414
+ FunctionArns?: string[];
3415
+ }
3416
+ export declare namespace ListFunctionsByCodeSigningConfigResponse {
3417
+ /**
3418
+ * @internal
3419
+ */
3420
+ const filterSensitiveLog: (obj: ListFunctionsByCodeSigningConfigResponse) => any;
3421
+ }
3422
+ export interface ListLayersRequest {
3423
+ /**
3424
+ * <p>A runtime identifier. For example, <code>go1.x</code>.</p>
3425
+ */
3426
+ CompatibleRuntime?: Runtime | string;
3427
+ /**
3428
+ * <p>A pagination token returned by a previous call.</p>
3429
+ */
3430
+ Marker?: string;
3431
+ /**
3432
+ * <p>The maximum number of layers to return.</p>
3433
+ */
3434
+ MaxItems?: number;
3435
+ /**
3436
+ * <p>The compatible
3437
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architecture</a>.</p>
3438
+ */
3439
+ CompatibleArchitecture?: Architecture | string;
3440
+ }
3441
+ export declare namespace ListLayersRequest {
3442
+ /**
3443
+ * @internal
3444
+ */
3445
+ const filterSensitiveLog: (obj: ListLayersRequest) => any;
3446
+ }
3447
+ /**
3448
+ * <p>Details about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
3449
+ * layer</a>.</p>
3450
+ */
3451
+ export interface LayerVersionsListItem {
3452
+ /**
3453
+ * <p>The ARN of the layer version.</p>
3454
+ */
3455
+ LayerVersionArn?: string;
3456
+ /**
3457
+ * <p>The version number.</p>
3458
+ */
3459
+ Version?: number;
3460
+ /**
3461
+ * <p>The description of the version.</p>
3462
+ */
3463
+ Description?: string;
3464
+ /**
3465
+ * <p>The date that the version was created, in ISO 8601 format. For example, <code>2018-11-27T15:10:45.123+0000</code>.</p>
3466
+ */
3467
+ CreatedDate?: string;
3468
+ /**
3469
+ * <p>The layer's compatible runtimes.</p>
3470
+ */
3471
+ CompatibleRuntimes?: (Runtime | string)[];
3472
+ /**
3473
+ * <p>The layer's open-source license.</p>
3474
+ */
3475
+ LicenseInfo?: string;
3476
+ /**
3477
+ * <p>A list of compatible
3478
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
3479
+ */
3480
+ CompatibleArchitectures?: (Architecture | string)[];
3481
+ }
3482
+ export declare namespace LayerVersionsListItem {
3483
+ /**
3484
+ * @internal
3485
+ */
3486
+ const filterSensitiveLog: (obj: LayerVersionsListItem) => any;
3487
+ }
3488
+ /**
3489
+ * <p>Details about an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
3490
+ * layer</a>.</p>
3491
+ */
3492
+ export interface LayersListItem {
3493
+ /**
3494
+ * <p>The name of the layer.</p>
3495
+ */
3496
+ LayerName?: string;
3497
+ /**
3498
+ * <p>The Amazon Resource Name (ARN) of the function layer.</p>
3499
+ */
3500
+ LayerArn?: string;
3501
+ /**
3502
+ * <p>The newest version of the layer.</p>
3503
+ */
3504
+ LatestMatchingVersion?: LayerVersionsListItem;
3505
+ }
3506
+ export declare namespace LayersListItem {
3507
+ /**
3508
+ * @internal
3509
+ */
3510
+ const filterSensitiveLog: (obj: LayersListItem) => any;
3511
+ }
3512
+ export interface ListLayersResponse {
3513
+ /**
3514
+ * <p>A pagination token returned when the response doesn't contain all layers.</p>
3515
+ */
3516
+ NextMarker?: string;
3517
+ /**
3518
+ * <p>A list of function layers.</p>
3519
+ */
3520
+ Layers?: LayersListItem[];
3521
+ }
3522
+ export declare namespace ListLayersResponse {
3523
+ /**
3524
+ * @internal
3525
+ */
3526
+ const filterSensitiveLog: (obj: ListLayersResponse) => any;
3527
+ }
3528
+ export interface ListLayerVersionsRequest {
3529
+ /**
3530
+ * <p>A runtime identifier. For example, <code>go1.x</code>.</p>
3531
+ */
3532
+ CompatibleRuntime?: Runtime | string;
3533
+ /**
3534
+ * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
3535
+ */
3536
+ LayerName: string | undefined;
3537
+ /**
3538
+ * <p>A pagination token returned by a previous call.</p>
3539
+ */
3540
+ Marker?: string;
3541
+ /**
3542
+ * <p>The maximum number of versions to return.</p>
3543
+ */
3544
+ MaxItems?: number;
3545
+ /**
3546
+ * <p>The compatible
3547
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architecture</a>.</p>
3548
+ */
3549
+ CompatibleArchitecture?: Architecture | string;
3550
+ }
3551
+ export declare namespace ListLayerVersionsRequest {
3552
+ /**
3553
+ * @internal
3554
+ */
3555
+ const filterSensitiveLog: (obj: ListLayerVersionsRequest) => any;
3556
+ }
3557
+ export interface ListLayerVersionsResponse {
3558
+ /**
3559
+ * <p>A pagination token returned when the response doesn't contain all versions.</p>
3560
+ */
3561
+ NextMarker?: string;
3562
+ /**
3563
+ * <p>A list of versions.</p>
3564
+ */
3565
+ LayerVersions?: LayerVersionsListItem[];
3566
+ }
3567
+ export declare namespace ListLayerVersionsResponse {
3568
+ /**
3569
+ * @internal
3570
+ */
3571
+ const filterSensitiveLog: (obj: ListLayerVersionsResponse) => any;
3572
+ }
3573
+ export interface ListProvisionedConcurrencyConfigsRequest {
3574
+ /**
3575
+ * <p>The name of the Lambda function.</p>
3576
+ * <p class="title">
3577
+ * <b>Name formats</b>
3578
+ * </p>
3579
+ * <ul>
3580
+ * <li>
3581
+ * <p>
3582
+ * <b>Function name</b> - <code>my-function</code>.</p>
3583
+ * </li>
3584
+ * <li>
3585
+ * <p>
3586
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
3587
+ * </li>
3588
+ * <li>
3589
+ * <p>
3590
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
3591
+ * </li>
3592
+ * </ul>
3593
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
3594
+ * characters in length.</p>
3595
+ */
3596
+ FunctionName: string | undefined;
3597
+ /**
3598
+ * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
3599
+ */
3600
+ Marker?: string;
3601
+ /**
3602
+ * <p>Specify a number to limit the number of configurations returned.</p>
3603
+ */
3604
+ MaxItems?: number;
3605
+ }
3606
+ export declare namespace ListProvisionedConcurrencyConfigsRequest {
3607
+ /**
3608
+ * @internal
3609
+ */
3610
+ const filterSensitiveLog: (obj: ListProvisionedConcurrencyConfigsRequest) => any;
3611
+ }
3612
+ /**
3613
+ * <p>Details about the provisioned concurrency configuration for a function alias or version.</p>
3614
+ */
3615
+ export interface ProvisionedConcurrencyConfigListItem {
3616
+ /**
3617
+ * <p>The Amazon Resource Name (ARN) of the alias or version.</p>
3618
+ */
3619
+ FunctionArn?: string;
3620
+ /**
3621
+ * <p>The amount of provisioned concurrency requested.</p>
3622
+ */
3623
+ RequestedProvisionedConcurrentExecutions?: number;
3624
+ /**
3625
+ * <p>The amount of provisioned concurrency available.</p>
3626
+ */
3627
+ AvailableProvisionedConcurrentExecutions?: number;
3628
+ /**
3629
+ * <p>The amount of provisioned concurrency allocated.</p>
3630
+ */
3631
+ AllocatedProvisionedConcurrentExecutions?: number;
3632
+ /**
3633
+ * <p>The status of the allocation process.</p>
3634
+ */
3635
+ Status?: ProvisionedConcurrencyStatusEnum | string;
3636
+ /**
3637
+ * <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
3638
+ */
3639
+ StatusReason?: string;
3640
+ /**
3641
+ * <p>The date and time that a user last updated the configuration, in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601 format</a>.</p>
3642
+ */
3643
+ LastModified?: string;
3644
+ }
3645
+ export declare namespace ProvisionedConcurrencyConfigListItem {
3646
+ /**
3647
+ * @internal
3648
+ */
3649
+ const filterSensitiveLog: (obj: ProvisionedConcurrencyConfigListItem) => any;
3650
+ }
3651
+ export interface ListProvisionedConcurrencyConfigsResponse {
3652
+ /**
3653
+ * <p>A list of provisioned concurrency configurations.</p>
3654
+ */
3655
+ ProvisionedConcurrencyConfigs?: ProvisionedConcurrencyConfigListItem[];
3656
+ /**
3657
+ * <p>The pagination token that's included if more results are available.</p>
3658
+ */
3659
+ NextMarker?: string;
3660
+ }
3661
+ export declare namespace ListProvisionedConcurrencyConfigsResponse {
3662
+ /**
3663
+ * @internal
3664
+ */
3665
+ const filterSensitiveLog: (obj: ListProvisionedConcurrencyConfigsResponse) => any;
3666
+ }
3667
+ export interface ListTagsRequest {
3668
+ /**
3669
+ * <p>The function's Amazon Resource Name (ARN).
3670
+ * Note: Lambda does not support adding tags to aliases or versions.</p>
3671
+ */
3672
+ Resource: string | undefined;
3673
+ }
3674
+ export declare namespace ListTagsRequest {
3675
+ /**
3676
+ * @internal
3677
+ */
3678
+ const filterSensitiveLog: (obj: ListTagsRequest) => any;
3679
+ }
3680
+ export interface ListTagsResponse {
3681
+ /**
3682
+ * <p>The function's tags.</p>
3683
+ */
3684
+ Tags?: {
3685
+ [key: string]: string;
3686
+ };
3687
+ }
3688
+ export declare namespace ListTagsResponse {
3689
+ /**
3690
+ * @internal
3691
+ */
3692
+ const filterSensitiveLog: (obj: ListTagsResponse) => any;
3693
+ }
3694
+ export interface ListVersionsByFunctionRequest {
3695
+ /**
3696
+ * <p>The name of the Lambda function.</p>
3697
+ * <p class="title">
3698
+ * <b>Name formats</b>
3699
+ * </p>
3700
+ * <ul>
3701
+ * <li>
3702
+ * <p>
3703
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
3704
+ * </li>
3705
+ * <li>
3706
+ * <p>
3707
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
3708
+ * </li>
3709
+ * <li>
3710
+ * <p>
3711
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
3712
+ * </li>
3713
+ * </ul>
3714
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
3715
+ * characters in length.</p>
3716
+ */
3717
+ FunctionName: string | undefined;
3718
+ /**
3719
+ * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
3720
+ */
3721
+ Marker?: string;
3722
+ /**
3723
+ * <p>The maximum number of versions to return. Note that <code>ListVersionsByFunction</code> returns a maximum of 50 items in each response,
3724
+ * even if you set the number higher.</p>
3725
+ */
3726
+ MaxItems?: number;
3727
+ }
3728
+ export declare namespace ListVersionsByFunctionRequest {
3729
+ /**
3730
+ * @internal
3731
+ */
3732
+ const filterSensitiveLog: (obj: ListVersionsByFunctionRequest) => any;
3733
+ }
3734
+ export interface ListVersionsByFunctionResponse {
3735
+ /**
3736
+ * <p>The pagination token that's included if more results are available.</p>
3737
+ */
3738
+ NextMarker?: string;
3739
+ /**
3740
+ * <p>A list of Lambda function versions.</p>
3741
+ */
3742
+ Versions?: FunctionConfiguration[];
3743
+ }
3744
+ export declare namespace ListVersionsByFunctionResponse {
3745
+ /**
3746
+ * @internal
3747
+ */
3748
+ const filterSensitiveLog: (obj: ListVersionsByFunctionResponse) => any;
3749
+ }
3750
+ /**
3751
+ * <p>A ZIP archive that contains the contents of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
3752
+ * layer</a>. You can specify either an Amazon S3 location,
3753
+ * or upload a layer archive directly.</p>
3754
+ */
3755
+ export interface LayerVersionContentInput {
3756
+ /**
3757
+ * <p>The Amazon S3 bucket of the layer archive.</p>
3758
+ */
3759
+ S3Bucket?: string;
3760
+ /**
3761
+ * <p>The Amazon S3 key of the layer archive.</p>
3762
+ */
3763
+ S3Key?: string;
3764
+ /**
3765
+ * <p>For versioned objects, the version of the layer archive object to use.</p>
3766
+ */
3767
+ S3ObjectVersion?: string;
3768
+ /**
3769
+ * <p>The base64-encoded contents of the layer archive. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for
3770
+ * you.</p>
3771
+ */
3772
+ ZipFile?: Uint8Array;
3773
+ }
3774
+ export declare namespace LayerVersionContentInput {
3775
+ /**
3776
+ * @internal
3777
+ */
3778
+ const filterSensitiveLog: (obj: LayerVersionContentInput) => any;
3779
+ }
3780
+ export interface PublishLayerVersionRequest {
3781
+ /**
3782
+ * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
3783
+ */
3784
+ LayerName: string | undefined;
3785
+ /**
3786
+ * <p>The description of the version.</p>
3787
+ */
3788
+ Description?: string;
3789
+ /**
3790
+ * <p>The function layer archive.</p>
3791
+ */
3792
+ Content: LayerVersionContentInput | undefined;
3793
+ /**
3794
+ * <p>A list of compatible <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">function
3795
+ * runtimes</a>. Used for filtering with <a>ListLayers</a> and <a>ListLayerVersions</a>.</p>
3796
+ */
3797
+ CompatibleRuntimes?: (Runtime | string)[];
3798
+ /**
3799
+ * <p>The layer's software license. It can be any of the following:</p>
3800
+ * <ul>
3801
+ * <li>
3802
+ * <p>An <a href="https://spdx.org/licenses/">SPDX license identifier</a>. For example,
3803
+ * <code>MIT</code>.</p>
3804
+ * </li>
3805
+ * <li>
3806
+ * <p>The URL of a license hosted on the internet. For example,
3807
+ * <code>https://opensource.org/licenses/MIT</code>.</p>
3808
+ * </li>
3809
+ * <li>
3810
+ * <p>The full text of the license.</p>
3811
+ * </li>
3812
+ * </ul>
3813
+ */
3814
+ LicenseInfo?: string;
3815
+ /**
3816
+ * <p>A list of compatible
3817
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
3818
+ */
3819
+ CompatibleArchitectures?: (Architecture | string)[];
3820
+ }
3821
+ export declare namespace PublishLayerVersionRequest {
3822
+ /**
3823
+ * @internal
3824
+ */
3825
+ const filterSensitiveLog: (obj: PublishLayerVersionRequest) => any;
3826
+ }
3827
+ export interface PublishLayerVersionResponse {
3828
+ /**
3829
+ * <p>Details about the layer version.</p>
3830
+ */
3831
+ Content?: LayerVersionContentOutput;
3832
+ /**
3833
+ * <p>The ARN of the layer.</p>
3834
+ */
3835
+ LayerArn?: string;
3836
+ /**
3837
+ * <p>The ARN of the layer version.</p>
3838
+ */
3839
+ LayerVersionArn?: string;
3840
+ /**
3841
+ * <p>The description of the version.</p>
3842
+ */
3843
+ Description?: string;
3844
+ /**
3845
+ * <p>The date that the layer version was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
3846
+ */
3847
+ CreatedDate?: string;
3848
+ /**
3849
+ * <p>The version number.</p>
3850
+ */
3851
+ Version?: number;
3852
+ /**
3853
+ * <p>The layer's compatible runtimes.</p>
3854
+ */
3855
+ CompatibleRuntimes?: (Runtime | string)[];
3856
+ /**
3857
+ * <p>The layer's software license.</p>
3858
+ */
3859
+ LicenseInfo?: string;
3860
+ /**
3861
+ * <p>A list of compatible
3862
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
3863
+ */
3864
+ CompatibleArchitectures?: (Architecture | string)[];
3865
+ }
3866
+ export declare namespace PublishLayerVersionResponse {
3867
+ /**
3868
+ * @internal
3869
+ */
3870
+ const filterSensitiveLog: (obj: PublishLayerVersionResponse) => any;
3871
+ }
3872
+ export interface PublishVersionRequest {
3873
+ /**
3874
+ * <p>The name of the Lambda function.</p>
3875
+ * <p class="title">
3876
+ * <b>Name formats</b>
3877
+ * </p>
3878
+ * <ul>
3879
+ * <li>
3880
+ * <p>
3881
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
3882
+ * </li>
3883
+ * <li>
3884
+ * <p>
3885
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
3886
+ * </li>
3887
+ * <li>
3888
+ * <p>
3889
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
3890
+ * </li>
3891
+ * </ul>
3892
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
3893
+ * characters in length.</p>
3894
+ */
3895
+ FunctionName: string | undefined;
3896
+ /**
3897
+ * <p>Only publish a version if the hash value matches the value that's specified. Use this option to avoid
3898
+ * publishing a version if the function code has changed since you last updated it. You can get the hash for the
3899
+ * version that you uploaded from the output of <a>UpdateFunctionCode</a>.</p>
3900
+ */
3901
+ CodeSha256?: string;
3902
+ /**
3903
+ * <p>A description for the version to override the description in the function configuration.</p>
3904
+ */
3905
+ Description?: string;
3906
+ /**
3907
+ * <p>Only update the function if the revision ID matches the ID that's specified. Use this option to avoid
3908
+ * publishing a version if the function configuration has changed since you last updated it.</p>
3909
+ */
3910
+ RevisionId?: string;
3911
+ }
3912
+ export declare namespace PublishVersionRequest {
3913
+ /**
3914
+ * @internal
3915
+ */
3916
+ const filterSensitiveLog: (obj: PublishVersionRequest) => any;
3917
+ }
3918
+ export interface PutFunctionCodeSigningConfigRequest {
3919
+ /**
3920
+ * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
3921
+ */
3922
+ CodeSigningConfigArn: string | undefined;
3923
+ /**
3924
+ * <p>The name of the Lambda function.</p>
3925
+ * <p class="title">
3926
+ * <b>Name formats</b>
3927
+ * </p>
3928
+ * <ul>
3929
+ * <li>
3930
+ * <p>
3931
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
3932
+ * </li>
3933
+ * <li>
3934
+ * <p>
3935
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
3936
+ * </li>
3937
+ * <li>
3938
+ * <p>
3939
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
3940
+ * </li>
3941
+ * </ul>
3942
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
3943
+ * characters in length.</p>
3944
+ */
3945
+ FunctionName: string | undefined;
3946
+ }
3947
+ export declare namespace PutFunctionCodeSigningConfigRequest {
3948
+ /**
3949
+ * @internal
3950
+ */
3951
+ const filterSensitiveLog: (obj: PutFunctionCodeSigningConfigRequest) => any;
3952
+ }
3953
+ export interface PutFunctionCodeSigningConfigResponse {
3954
+ /**
3955
+ * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
3956
+ */
3957
+ CodeSigningConfigArn: string | undefined;
3958
+ /**
3959
+ * <p>The name of the Lambda function.</p>
3960
+ * <p class="title">
3961
+ * <b>Name formats</b>
3962
+ * </p>
3963
+ * <ul>
3964
+ * <li>
3965
+ * <p>
3966
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
3967
+ * </li>
3968
+ * <li>
3969
+ * <p>
3970
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
3971
+ * </li>
3972
+ * <li>
3973
+ * <p>
3974
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
3975
+ * </li>
3976
+ * </ul>
3977
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
3978
+ * characters in length.</p>
3979
+ */
3980
+ FunctionName: string | undefined;
3981
+ }
3982
+ export declare namespace PutFunctionCodeSigningConfigResponse {
3983
+ /**
3984
+ * @internal
3985
+ */
3986
+ const filterSensitiveLog: (obj: PutFunctionCodeSigningConfigResponse) => any;
3987
+ }
3988
+ export interface PutFunctionConcurrencyRequest {
3989
+ /**
3990
+ * <p>The name of the Lambda function.</p>
3991
+ * <p class="title">
3992
+ * <b>Name formats</b>
3993
+ * </p>
3994
+ * <ul>
3995
+ * <li>
3996
+ * <p>
3997
+ * <b>Function name</b> - <code>my-function</code>.</p>
3998
+ * </li>
3999
+ * <li>
4000
+ * <p>
4001
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
4002
+ * </li>
4003
+ * <li>
4004
+ * <p>
4005
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
4006
+ * </li>
4007
+ * </ul>
4008
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
4009
+ * characters in length.</p>
4010
+ */
4011
+ FunctionName: string | undefined;
4012
+ /**
4013
+ * <p>The number of simultaneous executions to reserve for the function.</p>
4014
+ */
4015
+ ReservedConcurrentExecutions: number | undefined;
4016
+ }
4017
+ export declare namespace PutFunctionConcurrencyRequest {
4018
+ /**
4019
+ * @internal
4020
+ */
4021
+ const filterSensitiveLog: (obj: PutFunctionConcurrencyRequest) => any;
4022
+ }
4023
+ export interface PutFunctionEventInvokeConfigRequest {
4024
+ /**
4025
+ * <p>The name of the Lambda function, version, or alias.</p>
4026
+ * <p class="title">
4027
+ * <b>Name formats</b>
4028
+ * </p>
4029
+ * <ul>
4030
+ * <li>
4031
+ * <p>
4032
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
4033
+ * </li>
4034
+ * <li>
4035
+ * <p>
4036
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
4037
+ * </li>
4038
+ * <li>
4039
+ * <p>
4040
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
4041
+ * </li>
4042
+ * </ul>
4043
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
4044
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
4045
+ */
4046
+ FunctionName: string | undefined;
4047
+ /**
4048
+ * <p>A version number or alias name.</p>
4049
+ */
4050
+ Qualifier?: string;
4051
+ /**
4052
+ * <p>The maximum number of times to retry when the function returns an error.</p>
4053
+ */
4054
+ MaximumRetryAttempts?: number;
4055
+ /**
4056
+ * <p>The maximum age of a request that Lambda sends to a function for processing.</p>
4057
+ */
4058
+ MaximumEventAgeInSeconds?: number;
4059
+ /**
4060
+ * <p>A destination for events after they have been sent to a function for processing.</p>
4061
+ * <p class="title">
4062
+ * <b>Destinations</b>
4063
+ * </p>
4064
+ * <ul>
4065
+ * <li>
4066
+ * <p>
4067
+ * <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p>
4068
+ * </li>
4069
+ * <li>
4070
+ * <p>
4071
+ * <b>Queue</b> - The ARN of an SQS queue.</p>
4072
+ * </li>
4073
+ * <li>
4074
+ * <p>
4075
+ * <b>Topic</b> - The ARN of an SNS topic.</p>
4076
+ * </li>
4077
+ * <li>
4078
+ * <p>
4079
+ * <b>Event Bus</b> - The ARN of an Amazon EventBridge event bus.</p>
4080
+ * </li>
4081
+ * </ul>
4082
+ */
4083
+ DestinationConfig?: DestinationConfig;
4084
+ }
4085
+ export declare namespace PutFunctionEventInvokeConfigRequest {
4086
+ /**
4087
+ * @internal
4088
+ */
4089
+ const filterSensitiveLog: (obj: PutFunctionEventInvokeConfigRequest) => any;
4090
+ }
4091
+ export interface PutProvisionedConcurrencyConfigRequest {
4092
+ /**
4093
+ * <p>The name of the Lambda function.</p>
4094
+ * <p class="title">
4095
+ * <b>Name formats</b>
4096
+ * </p>
4097
+ * <ul>
4098
+ * <li>
4099
+ * <p>
4100
+ * <b>Function name</b> - <code>my-function</code>.</p>
4101
+ * </li>
4102
+ * <li>
4103
+ * <p>
4104
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
4105
+ * </li>
4106
+ * <li>
4107
+ * <p>
4108
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
4109
+ * </li>
4110
+ * </ul>
4111
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
4112
+ * characters in length.</p>
4113
+ */
4114
+ FunctionName: string | undefined;
4115
+ /**
4116
+ * <p>The version number or alias name.</p>
4117
+ */
4118
+ Qualifier: string | undefined;
4119
+ /**
4120
+ * <p>The amount of provisioned concurrency to allocate for the version or alias.</p>
4121
+ */
4122
+ ProvisionedConcurrentExecutions: number | undefined;
4123
+ }
4124
+ export declare namespace PutProvisionedConcurrencyConfigRequest {
4125
+ /**
4126
+ * @internal
4127
+ */
4128
+ const filterSensitiveLog: (obj: PutProvisionedConcurrencyConfigRequest) => any;
4129
+ }
4130
+ export interface PutProvisionedConcurrencyConfigResponse {
4131
+ /**
4132
+ * <p>The amount of provisioned concurrency requested.</p>
4133
+ */
4134
+ RequestedProvisionedConcurrentExecutions?: number;
4135
+ /**
4136
+ * <p>The amount of provisioned concurrency available.</p>
4137
+ */
4138
+ AvailableProvisionedConcurrentExecutions?: number;
4139
+ /**
4140
+ * <p>The amount of provisioned concurrency allocated.</p>
4141
+ */
4142
+ AllocatedProvisionedConcurrentExecutions?: number;
4143
+ /**
4144
+ * <p>The status of the allocation process.</p>
4145
+ */
4146
+ Status?: ProvisionedConcurrencyStatusEnum | string;
4147
+ /**
4148
+ * <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
4149
+ */
4150
+ StatusReason?: string;
4151
+ /**
4152
+ * <p>The date and time that a user last updated the configuration, in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601 format</a>.</p>
4153
+ */
4154
+ LastModified?: string;
4155
+ }
4156
+ export declare namespace PutProvisionedConcurrencyConfigResponse {
4157
+ /**
4158
+ * @internal
4159
+ */
4160
+ const filterSensitiveLog: (obj: PutProvisionedConcurrencyConfigResponse) => any;
4161
+ }
4162
+ export interface RemoveLayerVersionPermissionRequest {
4163
+ /**
4164
+ * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
4165
+ */
4166
+ LayerName: string | undefined;
4167
+ /**
4168
+ * <p>The version number.</p>
4169
+ */
4170
+ VersionNumber: number | undefined;
4171
+ /**
4172
+ * <p>The identifier that was specified when the statement was added.</p>
4173
+ */
4174
+ StatementId: string | undefined;
4175
+ /**
4176
+ * <p>Only update the policy if the revision ID matches the ID specified. Use this option to avoid modifying a
4177
+ * policy that has changed since you last read it.</p>
4178
+ */
4179
+ RevisionId?: string;
4180
+ }
4181
+ export declare namespace RemoveLayerVersionPermissionRequest {
4182
+ /**
4183
+ * @internal
4184
+ */
4185
+ const filterSensitiveLog: (obj: RemoveLayerVersionPermissionRequest) => any;
4186
+ }
4187
+ export interface RemovePermissionRequest {
4188
+ /**
4189
+ * <p>The name of the Lambda function, version, or alias.</p>
4190
+ * <p class="title">
4191
+ * <b>Name formats</b>
4192
+ * </p>
4193
+ * <ul>
4194
+ * <li>
4195
+ * <p>
4196
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
4197
+ * </li>
4198
+ * <li>
4199
+ * <p>
4200
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
4201
+ * </li>
4202
+ * <li>
4203
+ * <p>
4204
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
4205
+ * </li>
4206
+ * </ul>
4207
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
4208
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
4209
+ */
4210
+ FunctionName: string | undefined;
4211
+ /**
4212
+ * <p>Statement ID of the permission to remove.</p>
4213
+ */
4214
+ StatementId: string | undefined;
4215
+ /**
4216
+ * <p>Specify a version or alias to remove permissions from a published version of the function.</p>
4217
+ */
4218
+ Qualifier?: string;
4219
+ /**
4220
+ * <p>Only update the policy if the revision ID matches the ID that's specified. Use this option to avoid modifying a
4221
+ * policy that has changed since you last read it.</p>
4222
+ */
4223
+ RevisionId?: string;
4224
+ }
4225
+ export declare namespace RemovePermissionRequest {
4226
+ /**
4227
+ * @internal
4228
+ */
4229
+ const filterSensitiveLog: (obj: RemovePermissionRequest) => any;
4230
+ }
4231
+ export interface TagResourceRequest {
4232
+ /**
4233
+ * <p>The function's Amazon Resource Name (ARN).</p>
4234
+ */
4235
+ Resource: string | undefined;
4236
+ /**
4237
+ * <p>A list of tags to apply to the function.</p>
4238
+ */
4239
+ Tags: {
4240
+ [key: string]: string;
4241
+ } | undefined;
4242
+ }
4243
+ export declare namespace TagResourceRequest {
4244
+ /**
4245
+ * @internal
4246
+ */
4247
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
4248
+ }
4249
+ export interface UntagResourceRequest {
4250
+ /**
4251
+ * <p>The function's Amazon Resource Name (ARN).</p>
4252
+ */
4253
+ Resource: string | undefined;
4254
+ /**
4255
+ * <p>A list of tag keys to remove from the function.</p>
4256
+ */
4257
+ TagKeys: string[] | undefined;
4258
+ }
4259
+ export declare namespace UntagResourceRequest {
4260
+ /**
4261
+ * @internal
4262
+ */
4263
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
4264
+ }
4265
+ export interface UpdateAliasRequest {
4266
+ /**
4267
+ * <p>The name of the Lambda function.</p>
4268
+ * <p class="title">
4269
+ * <b>Name formats</b>
4270
+ * </p>
4271
+ * <ul>
4272
+ * <li>
4273
+ * <p>
4274
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
4275
+ * </li>
4276
+ * <li>
4277
+ * <p>
4278
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
4279
+ * </li>
4280
+ * <li>
4281
+ * <p>
4282
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
4283
+ * </li>
4284
+ * </ul>
4285
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
4286
+ * characters in length.</p>
4287
+ */
4288
+ FunctionName: string | undefined;
4289
+ /**
4290
+ * <p>The name of the alias.</p>
4291
+ */
4292
+ Name: string | undefined;
4293
+ /**
4294
+ * <p>The function version that the alias invokes.</p>
4295
+ */
4296
+ FunctionVersion?: string;
4297
+ /**
4298
+ * <p>A description of the alias.</p>
4299
+ */
4300
+ Description?: string;
4301
+ /**
4302
+ * <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
4303
+ * configuration</a> of the alias.</p>
4304
+ */
4305
+ RoutingConfig?: AliasRoutingConfiguration;
4306
+ /**
4307
+ * <p>Only update the alias if the revision ID matches the ID that's specified. Use this option to avoid modifying
4308
+ * an alias that has changed since you last read it.</p>
4309
+ */
4310
+ RevisionId?: string;
4311
+ }
4312
+ export declare namespace UpdateAliasRequest {
4313
+ /**
4314
+ * @internal
4315
+ */
4316
+ const filterSensitiveLog: (obj: UpdateAliasRequest) => any;
4317
+ }
4318
+ export interface UpdateCodeSigningConfigRequest {
4319
+ /**
4320
+ * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
4321
+ */
4322
+ CodeSigningConfigArn: string | undefined;
4323
+ /**
4324
+ * <p>Descriptive name for this code signing configuration.</p>
4325
+ */
4326
+ Description?: string;
4327
+ /**
4328
+ * <p>Signing profiles for this code signing configuration.</p>
4329
+ */
4330
+ AllowedPublishers?: AllowedPublishers;
4331
+ /**
4332
+ * <p>The code signing policy.</p>
4333
+ */
4334
+ CodeSigningPolicies?: CodeSigningPolicies;
4335
+ }
4336
+ export declare namespace UpdateCodeSigningConfigRequest {
4337
+ /**
4338
+ * @internal
4339
+ */
4340
+ const filterSensitiveLog: (obj: UpdateCodeSigningConfigRequest) => any;
4341
+ }
4342
+ export interface UpdateCodeSigningConfigResponse {
4343
+ /**
4344
+ * <p>The code signing configuration</p>
4345
+ */
4346
+ CodeSigningConfig: CodeSigningConfig | undefined;
4347
+ }
4348
+ export declare namespace UpdateCodeSigningConfigResponse {
4349
+ /**
4350
+ * @internal
4351
+ */
4352
+ const filterSensitiveLog: (obj: UpdateCodeSigningConfigResponse) => any;
4353
+ }
4354
+ export interface UpdateEventSourceMappingRequest {
4355
+ /**
4356
+ * <p>The identifier of the event source mapping.</p>
4357
+ */
4358
+ UUID: string | undefined;
4359
+ /**
4360
+ * <p>The name of the Lambda function.</p>
4361
+ * <p class="title">
4362
+ * <b>Name formats</b>
4363
+ * </p>
4364
+ * <ul>
4365
+ * <li>
4366
+ * <p>
4367
+ * <b>Function name</b> - <code>MyFunction</code>.</p>
4368
+ * </li>
4369
+ * <li>
4370
+ * <p>
4371
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p>
4372
+ * </li>
4373
+ * <li>
4374
+ * <p>
4375
+ * <b>Version or Alias ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD</code>.</p>
4376
+ * </li>
4377
+ * <li>
4378
+ * <p>
4379
+ * <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p>
4380
+ * </li>
4381
+ * </ul>
4382
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64
4383
+ * characters in length.</p>
4384
+ */
4385
+ FunctionName?: string;
4386
+ /**
4387
+ * <p>When true, the event source mapping is active. When false, Lambda pauses polling and invocation.</p>
4388
+ * <p>Default: True</p>
4389
+ */
4390
+ Enabled?: boolean;
4391
+ /**
4392
+ * <p>The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation
4393
+ * (6 MB).</p>
4394
+ * <ul>
4395
+ * <li>
4396
+ * <p>
4397
+ * <b>Amazon Kinesis</b> - Default 100. Max 10,000.</p>
4398
+ * </li>
4399
+ * <li>
4400
+ * <p>
4401
+ * <b>Amazon DynamoDB Streams</b> - Default 100. Max 1,000.</p>
4402
+ * </li>
4403
+ * <li>
4404
+ * <p>
4405
+ * <b>Amazon Simple Queue Service</b> - Default 10. For standard queues the max is 10,000. For FIFO queues the max is 10.</p>
4406
+ * </li>
4407
+ * <li>
4408
+ * <p>
4409
+ * <b>Amazon Managed Streaming for Apache Kafka</b> - Default 100. Max 10,000.</p>
4410
+ * </li>
4411
+ * <li>
4412
+ * <p>
4413
+ * <b>Self-Managed Apache Kafka</b> - Default 100. Max 10,000.</p>
4414
+ * </li>
4415
+ * </ul>
4416
+ */
4417
+ BatchSize?: number;
4418
+ /**
4419
+ * <p>(Streams and Amazon SQS standard queues) The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.</p>
4420
+ * <p>Default: 0</p>
4421
+ * <p>Related setting: When you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>
4422
+ */
4423
+ MaximumBatchingWindowInSeconds?: number;
4424
+ /**
4425
+ * <p>(Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.</p>
4426
+ */
4427
+ DestinationConfig?: DestinationConfig;
4428
+ /**
4429
+ * <p>(Streams only) Discard records older than the specified age. The default value is infinite (-1).</p>
4430
+ */
4431
+ MaximumRecordAgeInSeconds?: number;
4432
+ /**
4433
+ * <p>(Streams only) If the function returns an error, split the batch in two and retry.</p>
4434
+ */
4435
+ BisectBatchOnFunctionError?: boolean;
4436
+ /**
4437
+ * <p>(Streams only) Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records will be retried until the record expires.</p>
4438
+ */
4439
+ MaximumRetryAttempts?: number;
4440
+ /**
4441
+ * <p>(Streams only) The number of batches to process from each shard concurrently.</p>
4442
+ */
4443
+ ParallelizationFactor?: number;
4444
+ /**
4445
+ * <p>An array of authentication protocols or VPC components required to secure your event source.</p>
4446
+ */
4447
+ SourceAccessConfigurations?: SourceAccessConfiguration[];
4448
+ /**
4449
+ * <p>(Streams only) The duration in seconds of a processing window. The range is between 1 second up to 900 seconds.</p>
4450
+ */
4451
+ TumblingWindowInSeconds?: number;
4452
+ /**
4453
+ * <p>(Streams only) A list of current response type enums applied to the event source mapping.</p>
4454
+ */
4455
+ FunctionResponseTypes?: (FunctionResponseType | string)[];
4456
+ }
4457
+ export declare namespace UpdateEventSourceMappingRequest {
4458
+ /**
4459
+ * @internal
4460
+ */
4461
+ const filterSensitiveLog: (obj: UpdateEventSourceMappingRequest) => any;
4462
+ }
4463
+ export interface UpdateFunctionCodeRequest {
4464
+ /**
4465
+ * <p>The name of the Lambda function.</p>
4466
+ * <p class="title">
4467
+ * <b>Name formats</b>
4468
+ * </p>
4469
+ * <ul>
4470
+ * <li>
4471
+ * <p>
4472
+ * <b>Function name</b> - <code>my-function</code>.</p>
4473
+ * </li>
4474
+ * <li>
4475
+ * <p>
4476
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
4477
+ * </li>
4478
+ * <li>
4479
+ * <p>
4480
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
4481
+ * </li>
4482
+ * </ul>
4483
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
4484
+ * characters in length.</p>
4485
+ */
4486
+ FunctionName: string | undefined;
4487
+ /**
4488
+ * <p>The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for
4489
+ * you.</p>
4490
+ */
4491
+ ZipFile?: Uint8Array;
4492
+ /**
4493
+ * <p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.</p>
4494
+ */
4495
+ S3Bucket?: string;
4496
+ /**
4497
+ * <p>The Amazon S3 key of the deployment package.</p>
4498
+ */
4499
+ S3Key?: string;
4500
+ /**
4501
+ * <p>For versioned objects, the version of the deployment package object to use.</p>
4502
+ */
4503
+ S3ObjectVersion?: string;
4504
+ /**
4505
+ * <p>URI of a container image in the Amazon ECR registry.</p>
4506
+ */
4507
+ ImageUri?: string;
4508
+ /**
4509
+ * <p>Set to true to publish a new version of the function after updating the code. This has the same effect as
4510
+ * calling <a>PublishVersion</a> separately.</p>
4511
+ */
4512
+ Publish?: boolean;
4513
+ /**
4514
+ * <p>Set to true to validate the request parameters and access permissions without modifying the function
4515
+ * code.</p>
4516
+ */
4517
+ DryRun?: boolean;
4518
+ /**
4519
+ * <p>Only update the function if the revision ID matches the ID that's specified. Use this option to avoid modifying a
4520
+ * function that has changed since you last read it.</p>
4521
+ */
4522
+ RevisionId?: string;
4523
+ /**
4524
+ * <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values.
4525
+ * The default value is <code>x86_64</code>.</p>
4526
+ */
4527
+ Architectures?: (Architecture | string)[];
4528
+ }
4529
+ export declare namespace UpdateFunctionCodeRequest {
4530
+ /**
4531
+ * @internal
4532
+ */
4533
+ const filterSensitiveLog: (obj: UpdateFunctionCodeRequest) => any;
4534
+ }
4535
+ export interface UpdateFunctionConfigurationRequest {
4536
+ /**
4537
+ * <p>The name of the Lambda function.</p>
4538
+ * <p class="title">
4539
+ * <b>Name formats</b>
4540
+ * </p>
4541
+ * <ul>
4542
+ * <li>
4543
+ * <p>
4544
+ * <b>Function name</b> - <code>my-function</code>.</p>
4545
+ * </li>
4546
+ * <li>
4547
+ * <p>
4548
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
4549
+ * </li>
4550
+ * <li>
4551
+ * <p>
4552
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
4553
+ * </li>
4554
+ * </ul>
4555
+ * <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64
4556
+ * characters in length.</p>
4557
+ */
4558
+ FunctionName: string | undefined;
4559
+ /**
4560
+ * <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
4561
+ */
4562
+ Role?: string;
4563
+ /**
4564
+ * <p>The name of the method within your code that Lambda calls to execute your function. The format includes the
4565
+ * file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information,
4566
+ * see <a href="https://docs.aws.amazon.com/lambda/latest/dg/programming-model-v2.html">Programming Model</a>.</p>
4567
+ */
4568
+ Handler?: string;
4569
+ /**
4570
+ * <p>A description of the function.</p>
4571
+ */
4572
+ Description?: string;
4573
+ /**
4574
+ * <p>The amount of time that Lambda allows a function to run before stopping it. The default is 3 seconds. The
4575
+ * maximum allowed value is 900 seconds. For additional information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html">Lambda execution environment</a>.</p>
4576
+ */
4577
+ Timeout?: number;
4578
+ /**
4579
+ * <p>The amount of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-memory.html">memory available to the function</a> at runtime.
4580
+ * Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.</p>
4581
+ */
4582
+ MemorySize?: number;
4583
+ /**
4584
+ * <p>For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC.
4585
+ * When you connect a function to a VPC, it can only access resources and the internet through that VPC. For more
4586
+ * information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">VPC Settings</a>.</p>
4587
+ */
4588
+ VpcConfig?: VpcConfig;
4589
+ /**
4590
+ * <p>Environment variables that are accessible from function code during execution.</p>
4591
+ */
4592
+ Environment?: Environment;
4593
+ /**
4594
+ * <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime</a>.</p>
4595
+ */
4596
+ Runtime?: Runtime | string;
4597
+ /**
4598
+ * <p>A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events
4599
+ * when they fail processing. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq">Dead Letter Queues</a>.</p>
4600
+ */
4601
+ DeadLetterConfig?: DeadLetterConfig;
4602
+ /**
4603
+ * <p>The ARN of the Amazon Web Services Key Management Service (KMS) key that's used to encrypt your function's environment
4604
+ * variables. If it's not provided, Lambda uses a default service key.</p>
4605
+ */
4606
+ KMSKeyArn?: string;
4607
+ /**
4608
+ * <p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with
4609
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a>.</p>
4610
+ */
4611
+ TracingConfig?: TracingConfig;
4612
+ /**
4613
+ * <p>Only update the function if the revision ID matches the ID that's specified. Use this option to avoid modifying a
4614
+ * function that has changed since you last read it.</p>
4615
+ */
4616
+ RevisionId?: string;
4617
+ /**
4618
+ * <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">function layers</a>
4619
+ * to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>
4620
+ */
4621
+ Layers?: string[];
4622
+ /**
4623
+ * <p>Connection settings for an Amazon EFS file system.</p>
4624
+ */
4625
+ FileSystemConfigs?: FileSystemConfig[];
4626
+ /**
4627
+ * <p>
4628
+ * <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-parms.html">Container image configuration
4629
+ * values</a> that override the values in the container image Docker file.</p>
4630
+ */
4631
+ ImageConfig?: ImageConfig;
4632
+ }
4633
+ export declare namespace UpdateFunctionConfigurationRequest {
4634
+ /**
4635
+ * @internal
4636
+ */
4637
+ const filterSensitiveLog: (obj: UpdateFunctionConfigurationRequest) => any;
4638
+ }
4639
+ export interface UpdateFunctionEventInvokeConfigRequest {
4640
+ /**
4641
+ * <p>The name of the Lambda function, version, or alias.</p>
4642
+ * <p class="title">
4643
+ * <b>Name formats</b>
4644
+ * </p>
4645
+ * <ul>
4646
+ * <li>
4647
+ * <p>
4648
+ * <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p>
4649
+ * </li>
4650
+ * <li>
4651
+ * <p>
4652
+ * <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p>
4653
+ * </li>
4654
+ * <li>
4655
+ * <p>
4656
+ * <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p>
4657
+ * </li>
4658
+ * </ul>
4659
+ * <p>You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
4660
+ * If you specify only the function name, it is limited to 64 characters in length.</p>
4661
+ */
4662
+ FunctionName: string | undefined;
4663
+ /**
4664
+ * <p>A version number or alias name.</p>
4665
+ */
4666
+ Qualifier?: string;
4667
+ /**
4668
+ * <p>The maximum number of times to retry when the function returns an error.</p>
4669
+ */
4670
+ MaximumRetryAttempts?: number;
4671
+ /**
4672
+ * <p>The maximum age of a request that Lambda sends to a function for processing.</p>
4673
+ */
4674
+ MaximumEventAgeInSeconds?: number;
4675
+ /**
4676
+ * <p>A destination for events after they have been sent to a function for processing.</p>
4677
+ * <p class="title">
4678
+ * <b>Destinations</b>
4679
+ * </p>
4680
+ * <ul>
4681
+ * <li>
4682
+ * <p>
4683
+ * <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p>
4684
+ * </li>
4685
+ * <li>
4686
+ * <p>
4687
+ * <b>Queue</b> - The ARN of an SQS queue.</p>
4688
+ * </li>
4689
+ * <li>
4690
+ * <p>
4691
+ * <b>Topic</b> - The ARN of an SNS topic.</p>
4692
+ * </li>
4693
+ * <li>
4694
+ * <p>
4695
+ * <b>Event Bus</b> - The ARN of an Amazon EventBridge event bus.</p>
4696
+ * </li>
4697
+ * </ul>
4698
+ */
4699
+ DestinationConfig?: DestinationConfig;
4700
+ }
4701
+ export declare namespace UpdateFunctionEventInvokeConfigRequest {
4702
+ /**
4703
+ * @internal
4704
+ */
4705
+ const filterSensitiveLog: (obj: UpdateFunctionEventInvokeConfigRequest) => any;
4706
+ }