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