@depup/aws-sdk__client-lambda 3.1010.0-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (405) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +40 -0
  3. package/changes.json +46 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  5. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  6. package/dist-cjs/endpoint/ruleset.js +7 -0
  7. package/dist-cjs/index.js +2089 -0
  8. package/dist-cjs/models/LambdaServiceException.js +12 -0
  9. package/dist-cjs/models/errors.js +730 -0
  10. package/dist-cjs/runtimeConfig.browser.js +40 -0
  11. package/dist-cjs/runtimeConfig.js +55 -0
  12. package/dist-cjs/runtimeConfig.native.js +15 -0
  13. package/dist-cjs/runtimeConfig.shared.js +43 -0
  14. package/dist-cjs/schemas/schemas_0.js +2680 -0
  15. package/dist-es/Lambda.js +225 -0
  16. package/dist-es/LambdaClient.js +52 -0
  17. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  18. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  19. package/dist-es/commands/AddLayerVersionPermissionCommand.js +16 -0
  20. package/dist-es/commands/AddPermissionCommand.js +16 -0
  21. package/dist-es/commands/CheckpointDurableExecutionCommand.js +16 -0
  22. package/dist-es/commands/CreateAliasCommand.js +16 -0
  23. package/dist-es/commands/CreateCapacityProviderCommand.js +16 -0
  24. package/dist-es/commands/CreateCodeSigningConfigCommand.js +16 -0
  25. package/dist-es/commands/CreateEventSourceMappingCommand.js +16 -0
  26. package/dist-es/commands/CreateFunctionCommand.js +16 -0
  27. package/dist-es/commands/CreateFunctionUrlConfigCommand.js +16 -0
  28. package/dist-es/commands/DeleteAliasCommand.js +16 -0
  29. package/dist-es/commands/DeleteCapacityProviderCommand.js +16 -0
  30. package/dist-es/commands/DeleteCodeSigningConfigCommand.js +16 -0
  31. package/dist-es/commands/DeleteEventSourceMappingCommand.js +16 -0
  32. package/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +16 -0
  33. package/dist-es/commands/DeleteFunctionCommand.js +16 -0
  34. package/dist-es/commands/DeleteFunctionConcurrencyCommand.js +16 -0
  35. package/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +16 -0
  36. package/dist-es/commands/DeleteFunctionUrlConfigCommand.js +16 -0
  37. package/dist-es/commands/DeleteLayerVersionCommand.js +16 -0
  38. package/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +16 -0
  39. package/dist-es/commands/GetAccountSettingsCommand.js +16 -0
  40. package/dist-es/commands/GetAliasCommand.js +16 -0
  41. package/dist-es/commands/GetCapacityProviderCommand.js +16 -0
  42. package/dist-es/commands/GetCodeSigningConfigCommand.js +16 -0
  43. package/dist-es/commands/GetDurableExecutionCommand.js +16 -0
  44. package/dist-es/commands/GetDurableExecutionHistoryCommand.js +16 -0
  45. package/dist-es/commands/GetDurableExecutionStateCommand.js +16 -0
  46. package/dist-es/commands/GetEventSourceMappingCommand.js +16 -0
  47. package/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +16 -0
  48. package/dist-es/commands/GetFunctionCommand.js +16 -0
  49. package/dist-es/commands/GetFunctionConcurrencyCommand.js +16 -0
  50. package/dist-es/commands/GetFunctionConfigurationCommand.js +16 -0
  51. package/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +16 -0
  52. package/dist-es/commands/GetFunctionRecursionConfigCommand.js +16 -0
  53. package/dist-es/commands/GetFunctionScalingConfigCommand.js +16 -0
  54. package/dist-es/commands/GetFunctionUrlConfigCommand.js +16 -0
  55. package/dist-es/commands/GetLayerVersionByArnCommand.js +16 -0
  56. package/dist-es/commands/GetLayerVersionCommand.js +16 -0
  57. package/dist-es/commands/GetLayerVersionPolicyCommand.js +16 -0
  58. package/dist-es/commands/GetPolicyCommand.js +16 -0
  59. package/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +16 -0
  60. package/dist-es/commands/GetRuntimeManagementConfigCommand.js +16 -0
  61. package/dist-es/commands/InvokeAsyncCommand.js +16 -0
  62. package/dist-es/commands/InvokeCommand.js +16 -0
  63. package/dist-es/commands/InvokeWithResponseStreamCommand.js +20 -0
  64. package/dist-es/commands/ListAliasesCommand.js +16 -0
  65. package/dist-es/commands/ListCapacityProvidersCommand.js +16 -0
  66. package/dist-es/commands/ListCodeSigningConfigsCommand.js +16 -0
  67. package/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +16 -0
  68. package/dist-es/commands/ListEventSourceMappingsCommand.js +16 -0
  69. package/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +16 -0
  70. package/dist-es/commands/ListFunctionUrlConfigsCommand.js +16 -0
  71. package/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +16 -0
  72. package/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +16 -0
  73. package/dist-es/commands/ListFunctionsCommand.js +16 -0
  74. package/dist-es/commands/ListLayerVersionsCommand.js +16 -0
  75. package/dist-es/commands/ListLayersCommand.js +16 -0
  76. package/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +16 -0
  77. package/dist-es/commands/ListTagsCommand.js +16 -0
  78. package/dist-es/commands/ListVersionsByFunctionCommand.js +16 -0
  79. package/dist-es/commands/PublishLayerVersionCommand.js +16 -0
  80. package/dist-es/commands/PublishVersionCommand.js +16 -0
  81. package/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +16 -0
  82. package/dist-es/commands/PutFunctionConcurrencyCommand.js +16 -0
  83. package/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +16 -0
  84. package/dist-es/commands/PutFunctionRecursionConfigCommand.js +16 -0
  85. package/dist-es/commands/PutFunctionScalingConfigCommand.js +16 -0
  86. package/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +16 -0
  87. package/dist-es/commands/PutRuntimeManagementConfigCommand.js +16 -0
  88. package/dist-es/commands/RemoveLayerVersionPermissionCommand.js +16 -0
  89. package/dist-es/commands/RemovePermissionCommand.js +16 -0
  90. package/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +16 -0
  91. package/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +16 -0
  92. package/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +16 -0
  93. package/dist-es/commands/StopDurableExecutionCommand.js +16 -0
  94. package/dist-es/commands/TagResourceCommand.js +16 -0
  95. package/dist-es/commands/UntagResourceCommand.js +16 -0
  96. package/dist-es/commands/UpdateAliasCommand.js +16 -0
  97. package/dist-es/commands/UpdateCapacityProviderCommand.js +16 -0
  98. package/dist-es/commands/UpdateCodeSigningConfigCommand.js +16 -0
  99. package/dist-es/commands/UpdateEventSourceMappingCommand.js +16 -0
  100. package/dist-es/commands/UpdateFunctionCodeCommand.js +16 -0
  101. package/dist-es/commands/UpdateFunctionConfigurationCommand.js +16 -0
  102. package/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +16 -0
  103. package/dist-es/commands/UpdateFunctionUrlConfigCommand.js +16 -0
  104. package/dist-es/commands/index.js +85 -0
  105. package/dist-es/endpoint/EndpointParameters.js +13 -0
  106. package/dist-es/endpoint/endpointResolver.js +14 -0
  107. package/dist-es/endpoint/ruleset.js +4 -0
  108. package/dist-es/extensionConfiguration.js +1 -0
  109. package/dist-es/index.js +10 -0
  110. package/dist-es/models/LambdaServiceException.js +8 -0
  111. package/dist-es/models/enums.js +350 -0
  112. package/dist-es/models/errors.js +683 -0
  113. package/dist-es/models/models_0.js +1 -0
  114. package/dist-es/pagination/GetDurableExecutionHistoryPaginator.js +4 -0
  115. package/dist-es/pagination/GetDurableExecutionStatePaginator.js +4 -0
  116. package/dist-es/pagination/Interfaces.js +1 -0
  117. package/dist-es/pagination/ListAliasesPaginator.js +4 -0
  118. package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
  119. package/dist-es/pagination/ListCodeSigningConfigsPaginator.js +4 -0
  120. package/dist-es/pagination/ListDurableExecutionsByFunctionPaginator.js +4 -0
  121. package/dist-es/pagination/ListEventSourceMappingsPaginator.js +4 -0
  122. package/dist-es/pagination/ListFunctionEventInvokeConfigsPaginator.js +4 -0
  123. package/dist-es/pagination/ListFunctionUrlConfigsPaginator.js +4 -0
  124. package/dist-es/pagination/ListFunctionVersionsByCapacityProviderPaginator.js +4 -0
  125. package/dist-es/pagination/ListFunctionsByCodeSigningConfigPaginator.js +4 -0
  126. package/dist-es/pagination/ListFunctionsPaginator.js +4 -0
  127. package/dist-es/pagination/ListLayerVersionsPaginator.js +4 -0
  128. package/dist-es/pagination/ListLayersPaginator.js +4 -0
  129. package/dist-es/pagination/ListProvisionedConcurrencyConfigsPaginator.js +4 -0
  130. package/dist-es/pagination/ListVersionsByFunctionPaginator.js +4 -0
  131. package/dist-es/pagination/index.js +17 -0
  132. package/dist-es/runtimeConfig.browser.js +35 -0
  133. package/dist-es/runtimeConfig.js +50 -0
  134. package/dist-es/runtimeConfig.native.js +11 -0
  135. package/dist-es/runtimeConfig.shared.js +39 -0
  136. package/dist-es/runtimeExtensions.js +9 -0
  137. package/dist-es/schemas/schemas_0.js +2670 -0
  138. package/dist-es/waiters/index.js +6 -0
  139. package/dist-es/waiters/waitForFunctionActive.js +49 -0
  140. package/dist-es/waiters/waitForFunctionActiveV2.js +49 -0
  141. package/dist-es/waiters/waitForFunctionExists.js +26 -0
  142. package/dist-es/waiters/waitForFunctionUpdated.js +49 -0
  143. package/dist-es/waiters/waitForFunctionUpdatedV2.js +49 -0
  144. package/dist-es/waiters/waitForPublishedVersionActive.js +49 -0
  145. package/dist-types/Lambda.d.ts +760 -0
  146. package/dist-types/LambdaClient.d.ts +277 -0
  147. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  148. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  149. package/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +122 -0
  150. package/dist-types/commands/AddPermissionCommand.d.ts +144 -0
  151. package/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +190 -0
  152. package/dist-types/commands/CreateAliasCommand.d.ts +128 -0
  153. package/dist-types/commands/CreateCapacityProviderCommand.d.ts +162 -0
  154. package/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +104 -0
  155. package/dist-types/commands/CreateEventSourceMappingCommand.d.ts +336 -0
  156. package/dist-types/commands/CreateFunctionCommand.d.ts +379 -0
  157. package/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +128 -0
  158. package/dist-types/commands/DeleteAliasCommand.d.ts +99 -0
  159. package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +126 -0
  160. package/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +84 -0
  161. package/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +228 -0
  162. package/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +90 -0
  163. package/dist-types/commands/DeleteFunctionCommand.d.ts +104 -0
  164. package/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +100 -0
  165. package/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +102 -0
  166. package/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +85 -0
  167. package/dist-types/commands/DeleteLayerVersionCommand.d.ts +93 -0
  168. package/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +102 -0
  169. package/dist-types/commands/GetAccountSettingsCommand.d.ts +111 -0
  170. package/dist-types/commands/GetAliasCommand.d.ts +116 -0
  171. package/dist-types/commands/GetCapacityProviderCommand.d.ts +123 -0
  172. package/dist-types/commands/GetCodeSigningConfigCommand.d.ts +96 -0
  173. package/dist-types/commands/GetDurableExecutionCommand.d.ts +105 -0
  174. package/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +259 -0
  175. package/dist-types/commands/GetDurableExecutionStateCommand.d.ts +152 -0
  176. package/dist-types/commands/GetEventSourceMappingCommand.d.ts +227 -0
  177. package/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +87 -0
  178. package/dist-types/commands/GetFunctionCommand.d.ts +274 -0
  179. package/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +101 -0
  180. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +246 -0
  181. package/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +123 -0
  182. package/dist-types/commands/GetFunctionRecursionConfigCommand.d.ts +86 -0
  183. package/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +95 -0
  184. package/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +108 -0
  185. package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +131 -0
  186. package/dist-types/commands/GetLayerVersionCommand.d.ts +135 -0
  187. package/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +88 -0
  188. package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
  189. package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +135 -0
  190. package/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +89 -0
  191. package/dist-types/commands/InvokeAsyncCommand.d.ts +109 -0
  192. package/dist-types/commands/InvokeCommand.d.ts +237 -0
  193. package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +194 -0
  194. package/dist-types/commands/ListAliasesCommand.d.ts +138 -0
  195. package/dist-types/commands/ListCapacityProvidersCommand.d.ts +125 -0
  196. package/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +97 -0
  197. package/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +106 -0
  198. package/dist-types/commands/ListEventSourceMappingsCommand.d.ts +234 -0
  199. package/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +132 -0
  200. package/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +114 -0
  201. package/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +95 -0
  202. package/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +88 -0
  203. package/dist-types/commands/ListFunctionsCommand.d.ts +266 -0
  204. package/dist-types/commands/ListLayerVersionsCommand.d.ts +139 -0
  205. package/dist-types/commands/ListLayersCommand.d.ts +135 -0
  206. package/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +131 -0
  207. package/dist-types/commands/ListTagsCommand.d.ts +106 -0
  208. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +282 -0
  209. package/dist-types/commands/PublishLayerVersionCommand.d.ts +160 -0
  210. package/dist-types/commands/PublishVersionCommand.d.ts +258 -0
  211. package/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +94 -0
  212. package/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +106 -0
  213. package/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +135 -0
  214. package/dist-types/commands/PutFunctionRecursionConfigCommand.d.ts +90 -0
  215. package/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +94 -0
  216. package/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +116 -0
  217. package/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +94 -0
  218. package/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +105 -0
  219. package/dist-types/commands/RemovePermissionCommand.d.ts +105 -0
  220. package/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +92 -0
  221. package/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +84 -0
  222. package/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +91 -0
  223. package/dist-types/commands/StopDurableExecutionCommand.d.ts +94 -0
  224. package/dist-types/commands/TagResourceCommand.d.ts +106 -0
  225. package/dist-types/commands/UntagResourceCommand.d.ts +106 -0
  226. package/dist-types/commands/UpdateAliasCommand.d.ts +141 -0
  227. package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +136 -0
  228. package/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +105 -0
  229. package/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +323 -0
  230. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +264 -0
  231. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +324 -0
  232. package/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +140 -0
  233. package/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +129 -0
  234. package/dist-types/commands/index.d.ts +85 -0
  235. package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
  236. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  237. package/dist-types/endpoint/ruleset.d.ts +2 -0
  238. package/dist-types/extensionConfiguration.d.ts +9 -0
  239. package/dist-types/index.d.ts +18 -0
  240. package/dist-types/models/LambdaServiceException.d.ts +14 -0
  241. package/dist-types/models/enums.d.ts +702 -0
  242. package/dist-types/models/errors.d.ts +668 -0
  243. package/dist-types/models/models_0.d.ts +5953 -0
  244. package/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +7 -0
  245. package/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +7 -0
  246. package/dist-types/pagination/Interfaces.d.ts +8 -0
  247. package/dist-types/pagination/ListAliasesPaginator.d.ts +7 -0
  248. package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
  249. package/dist-types/pagination/ListCodeSigningConfigsPaginator.d.ts +7 -0
  250. package/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +7 -0
  251. package/dist-types/pagination/ListEventSourceMappingsPaginator.d.ts +7 -0
  252. package/dist-types/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +7 -0
  253. package/dist-types/pagination/ListFunctionUrlConfigsPaginator.d.ts +7 -0
  254. package/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +7 -0
  255. package/dist-types/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +7 -0
  256. package/dist-types/pagination/ListFunctionsPaginator.d.ts +7 -0
  257. package/dist-types/pagination/ListLayerVersionsPaginator.d.ts +7 -0
  258. package/dist-types/pagination/ListLayersPaginator.d.ts +7 -0
  259. package/dist-types/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +7 -0
  260. package/dist-types/pagination/ListVersionsByFunctionPaginator.d.ts +7 -0
  261. package/dist-types/pagination/index.d.ts +17 -0
  262. package/dist-types/runtimeConfig.browser.d.ts +56 -0
  263. package/dist-types/runtimeConfig.d.ts +56 -0
  264. package/dist-types/runtimeConfig.native.d.ts +55 -0
  265. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  266. package/dist-types/runtimeExtensions.d.ts +17 -0
  267. package/dist-types/schemas/schemas_0.d.ts +399 -0
  268. package/dist-types/ts3.4/Lambda.d.ts +1664 -0
  269. package/dist-types/ts3.4/LambdaClient.d.ts +637 -0
  270. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  271. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  272. package/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +51 -0
  273. package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +50 -0
  274. package/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +51 -0
  275. package/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +47 -0
  276. package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +51 -0
  277. package/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +51 -0
  278. package/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +51 -0
  279. package/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +50 -0
  280. package/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +51 -0
  281. package/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +45 -0
  282. package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +51 -0
  283. package/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +51 -0
  284. package/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +51 -0
  285. package/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +47 -0
  286. package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +50 -0
  287. package/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +47 -0
  288. package/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +47 -0
  289. package/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +47 -0
  290. package/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +46 -0
  291. package/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +47 -0
  292. package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +51 -0
  293. package/dist-types/ts3.4/commands/GetAliasCommand.d.ts +47 -0
  294. package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +51 -0
  295. package/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +51 -0
  296. package/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +51 -0
  297. package/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +51 -0
  298. package/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +51 -0
  299. package/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +51 -0
  300. package/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +51 -0
  301. package/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +47 -0
  302. package/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +51 -0
  303. package/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +51 -0
  304. package/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +51 -0
  305. package/dist-types/ts3.4/commands/GetFunctionRecursionConfigCommand.d.ts +51 -0
  306. package/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +51 -0
  307. package/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +51 -0
  308. package/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +51 -0
  309. package/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +50 -0
  310. package/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +51 -0
  311. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
  312. package/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +51 -0
  313. package/dist-types/ts3.4/commands/GetRuntimeManagementConfigCommand.d.ts +51 -0
  314. package/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +56 -0
  315. package/dist-types/ts3.4/commands/InvokeCommand.d.ts +59 -0
  316. package/dist-types/ts3.4/commands/InvokeWithResponseStreamCommand.d.ts +60 -0
  317. package/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +47 -0
  318. package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +51 -0
  319. package/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +51 -0
  320. package/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +51 -0
  321. package/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +51 -0
  322. package/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +51 -0
  323. package/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +51 -0
  324. package/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +51 -0
  325. package/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +51 -0
  326. package/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +50 -0
  327. package/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +51 -0
  328. package/dist-types/ts3.4/commands/ListLayersCommand.d.ts +47 -0
  329. package/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +51 -0
  330. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +47 -0
  331. package/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +51 -0
  332. package/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +51 -0
  333. package/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +50 -0
  334. package/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +51 -0
  335. package/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +48 -0
  336. package/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +51 -0
  337. package/dist-types/ts3.4/commands/PutFunctionRecursionConfigCommand.d.ts +51 -0
  338. package/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +51 -0
  339. package/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +51 -0
  340. package/dist-types/ts3.4/commands/PutRuntimeManagementConfigCommand.d.ts +51 -0
  341. package/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +47 -0
  342. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +45 -0
  343. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +51 -0
  344. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +51 -0
  345. package/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +60 -0
  346. package/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +51 -0
  347. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
  348. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
  349. package/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +47 -0
  350. package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
  351. package/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +51 -0
  352. package/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +51 -0
  353. package/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +51 -0
  354. package/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +51 -0
  355. package/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +51 -0
  356. package/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +51 -0
  357. package/dist-types/ts3.4/commands/index.d.ts +85 -0
  358. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  359. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  360. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  361. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  362. package/dist-types/ts3.4/index.d.ts +13 -0
  363. package/dist-types/ts3.4/models/LambdaServiceException.d.ts +9 -0
  364. package/dist-types/ts3.4/models/enums.d.ts +425 -0
  365. package/dist-types/ts3.4/models/errors.d.ts +409 -0
  366. package/dist-types/ts3.4/models/models_0.d.ts +1499 -0
  367. package/dist-types/ts3.4/pagination/GetDurableExecutionHistoryPaginator.d.ts +11 -0
  368. package/dist-types/ts3.4/pagination/GetDurableExecutionStatePaginator.d.ts +11 -0
  369. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  370. package/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +11 -0
  371. package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
  372. package/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +11 -0
  373. package/dist-types/ts3.4/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +11 -0
  374. package/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +11 -0
  375. package/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +11 -0
  376. package/dist-types/ts3.4/pagination/ListFunctionUrlConfigsPaginator.d.ts +11 -0
  377. package/dist-types/ts3.4/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +11 -0
  378. package/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +11 -0
  379. package/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +11 -0
  380. package/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +11 -0
  381. package/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +11 -0
  382. package/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +11 -0
  383. package/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +11 -0
  384. package/dist-types/ts3.4/pagination/index.d.ts +17 -0
  385. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +101 -0
  386. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  387. package/dist-types/ts3.4/runtimeConfig.native.d.ts +105 -0
  388. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  389. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  390. package/dist-types/ts3.4/schemas/schemas_0.d.ts +399 -0
  391. package/dist-types/ts3.4/waiters/index.d.ts +6 -0
  392. package/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +11 -0
  393. package/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +11 -0
  394. package/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +11 -0
  395. package/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +11 -0
  396. package/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +11 -0
  397. package/dist-types/ts3.4/waiters/waitForPublishedVersionActive.d.ts +11 -0
  398. package/dist-types/waiters/index.d.ts +6 -0
  399. package/dist-types/waiters/waitForFunctionActive.d.ts +14 -0
  400. package/dist-types/waiters/waitForFunctionActiveV2.d.ts +14 -0
  401. package/dist-types/waiters/waitForFunctionExists.d.ts +14 -0
  402. package/dist-types/waiters/waitForFunctionUpdated.d.ts +14 -0
  403. package/dist-types/waiters/waitForFunctionUpdatedV2.d.ts +14 -0
  404. package/dist-types/waiters/waitForPublishedVersionActive.d.ts +14 -0
  405. package/package.json +164 -0
@@ -0,0 +1,323 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
4
+ import type { EventSourceMappingConfiguration, UpdateEventSourceMappingRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateEventSourceMappingCommand}.
14
+ */
15
+ export interface UpdateEventSourceMappingCommandInput extends UpdateEventSourceMappingRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateEventSourceMappingCommand}.
21
+ */
22
+ export interface UpdateEventSourceMappingCommandOutput extends EventSourceMappingConfiguration, __MetadataBearer {
23
+ }
24
+ declare const UpdateEventSourceMappingCommand_base: {
25
+ new (input: UpdateEventSourceMappingCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEventSourceMappingCommandInput, UpdateEventSourceMappingCommandOutput, LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateEventSourceMappingCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEventSourceMappingCommandInput, UpdateEventSourceMappingCommandOutput, LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates an event source mapping. You can change the function that Lambda invokes, or pause invocation and resume later from the same location.</p> <p>For details about how to configure different event sources, see the following topics. </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping"> Amazon DynamoDB Streams</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping"> Amazon Kinesis</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource"> Amazon SQS</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping"> Amazon MQ and RabbitMQ</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html"> Amazon MSK</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html"> Apache Kafka</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html"> Amazon DocumentDB</a> </p> </li> </ul> <p>The following error handling options are available for stream sources (DynamoDB, Kinesis, Amazon MSK, and self-managed Apache Kafka):</p> <ul> <li> <p> <code>BisectBatchOnFunctionError</code> – If the function returns an error, split the batch in two and retry.</p> </li> <li> <p> <code>MaximumRecordAgeInSeconds</code> – Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires</p> </li> <li> <p> <code>MaximumRetryAttempts</code> – Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.</p> </li> <li> <p> <code>OnFailure</code> – Send discarded records to an Amazon SQS queue, Amazon SNS topic, Kafka topic, or Amazon S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-async-destinations">Adding a destination</a>.</p> </li> </ul> <p>The following option is available only for DynamoDB and Kinesis event sources:</p> <ul> <li> <p> <code>ParallelizationFactor</code> – Process multiple batches from each shard concurrently.</p> </li> </ul> <p>For information about which configuration parameters apply to each event source, see the following topics.</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-ddb-params"> Amazon DynamoDB Streams</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-params"> Amazon Kinesis</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#services-sqs-params"> Amazon SQS</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-params"> Amazon MQ and RabbitMQ</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-parms"> Amazon MSK</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-kafka-parms"> Apache Kafka</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-documentdb.html#docdb-configuration"> Amazon DocumentDB</a> </p> </li> </ul>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { LambdaClient, UpdateEventSourceMappingCommand } from "@aws-sdk/client-lambda"; // ES Modules import
35
+ * // const { LambdaClient, UpdateEventSourceMappingCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
36
+ * // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
37
+ * const config = {}; // type is LambdaClientConfig
38
+ * const client = new LambdaClient(config);
39
+ * const input = { // UpdateEventSourceMappingRequest
40
+ * UUID: "STRING_VALUE", // required
41
+ * FunctionName: "STRING_VALUE",
42
+ * Enabled: true || false,
43
+ * BatchSize: Number("int"),
44
+ * FilterCriteria: { // FilterCriteria
45
+ * Filters: [ // FilterList
46
+ * { // Filter
47
+ * Pattern: "STRING_VALUE",
48
+ * },
49
+ * ],
50
+ * },
51
+ * MaximumBatchingWindowInSeconds: Number("int"),
52
+ * DestinationConfig: { // DestinationConfig
53
+ * OnSuccess: { // OnSuccess
54
+ * Destination: "STRING_VALUE",
55
+ * },
56
+ * OnFailure: { // OnFailure
57
+ * Destination: "STRING_VALUE",
58
+ * },
59
+ * },
60
+ * MaximumRecordAgeInSeconds: Number("int"),
61
+ * BisectBatchOnFunctionError: true || false,
62
+ * MaximumRetryAttempts: Number("int"),
63
+ * ParallelizationFactor: Number("int"),
64
+ * SourceAccessConfigurations: [ // SourceAccessConfigurations
65
+ * { // SourceAccessConfiguration
66
+ * Type: "BASIC_AUTH" || "VPC_SUBNET" || "VPC_SECURITY_GROUP" || "SASL_SCRAM_512_AUTH" || "SASL_SCRAM_256_AUTH" || "VIRTUAL_HOST" || "CLIENT_CERTIFICATE_TLS_AUTH" || "SERVER_ROOT_CA_CERTIFICATE",
67
+ * URI: "STRING_VALUE",
68
+ * },
69
+ * ],
70
+ * TumblingWindowInSeconds: Number("int"),
71
+ * FunctionResponseTypes: [ // FunctionResponseTypeList
72
+ * "ReportBatchItemFailures",
73
+ * ],
74
+ * ScalingConfig: { // ScalingConfig
75
+ * MaximumConcurrency: Number("int"),
76
+ * },
77
+ * AmazonManagedKafkaEventSourceConfig: { // AmazonManagedKafkaEventSourceConfig
78
+ * ConsumerGroupId: "STRING_VALUE",
79
+ * SchemaRegistryConfig: { // KafkaSchemaRegistryConfig
80
+ * SchemaRegistryURI: "STRING_VALUE",
81
+ * EventRecordFormat: "JSON" || "SOURCE",
82
+ * AccessConfigs: [ // KafkaSchemaRegistryAccessConfigList
83
+ * { // KafkaSchemaRegistryAccessConfig
84
+ * Type: "BASIC_AUTH" || "CLIENT_CERTIFICATE_TLS_AUTH" || "SERVER_ROOT_CA_CERTIFICATE",
85
+ * URI: "STRING_VALUE",
86
+ * },
87
+ * ],
88
+ * SchemaValidationConfigs: [ // KafkaSchemaValidationConfigList
89
+ * { // KafkaSchemaValidationConfig
90
+ * Attribute: "KEY" || "VALUE",
91
+ * },
92
+ * ],
93
+ * },
94
+ * },
95
+ * SelfManagedKafkaEventSourceConfig: { // SelfManagedKafkaEventSourceConfig
96
+ * ConsumerGroupId: "STRING_VALUE",
97
+ * SchemaRegistryConfig: {
98
+ * SchemaRegistryURI: "STRING_VALUE",
99
+ * EventRecordFormat: "JSON" || "SOURCE",
100
+ * AccessConfigs: [
101
+ * {
102
+ * Type: "BASIC_AUTH" || "CLIENT_CERTIFICATE_TLS_AUTH" || "SERVER_ROOT_CA_CERTIFICATE",
103
+ * URI: "STRING_VALUE",
104
+ * },
105
+ * ],
106
+ * SchemaValidationConfigs: [
107
+ * {
108
+ * Attribute: "KEY" || "VALUE",
109
+ * },
110
+ * ],
111
+ * },
112
+ * },
113
+ * DocumentDBEventSourceConfig: { // DocumentDBEventSourceConfig
114
+ * DatabaseName: "STRING_VALUE",
115
+ * CollectionName: "STRING_VALUE",
116
+ * FullDocument: "UpdateLookup" || "Default",
117
+ * },
118
+ * KMSKeyArn: "STRING_VALUE",
119
+ * MetricsConfig: { // EventSourceMappingMetricsConfig
120
+ * Metrics: [ // EventSourceMappingMetricList
121
+ * "EventCount" || "ErrorCount" || "KafkaMetrics",
122
+ * ],
123
+ * },
124
+ * LoggingConfig: { // EventSourceMappingLoggingConfig
125
+ * SystemLogLevel: "DEBUG" || "INFO" || "WARN",
126
+ * },
127
+ * ProvisionedPollerConfig: { // ProvisionedPollerConfig
128
+ * MinimumPollers: Number("int"),
129
+ * MaximumPollers: Number("int"),
130
+ * PollerGroupName: "STRING_VALUE",
131
+ * },
132
+ * };
133
+ * const command = new UpdateEventSourceMappingCommand(input);
134
+ * const response = await client.send(command);
135
+ * // { // EventSourceMappingConfiguration
136
+ * // UUID: "STRING_VALUE",
137
+ * // StartingPosition: "TRIM_HORIZON" || "LATEST" || "AT_TIMESTAMP",
138
+ * // StartingPositionTimestamp: new Date("TIMESTAMP"),
139
+ * // BatchSize: Number("int"),
140
+ * // MaximumBatchingWindowInSeconds: Number("int"),
141
+ * // ParallelizationFactor: Number("int"),
142
+ * // EventSourceArn: "STRING_VALUE",
143
+ * // FilterCriteria: { // FilterCriteria
144
+ * // Filters: [ // FilterList
145
+ * // { // Filter
146
+ * // Pattern: "STRING_VALUE",
147
+ * // },
148
+ * // ],
149
+ * // },
150
+ * // FunctionArn: "STRING_VALUE",
151
+ * // LastModified: new Date("TIMESTAMP"),
152
+ * // LastProcessingResult: "STRING_VALUE",
153
+ * // State: "STRING_VALUE",
154
+ * // StateTransitionReason: "STRING_VALUE",
155
+ * // DestinationConfig: { // DestinationConfig
156
+ * // OnSuccess: { // OnSuccess
157
+ * // Destination: "STRING_VALUE",
158
+ * // },
159
+ * // OnFailure: { // OnFailure
160
+ * // Destination: "STRING_VALUE",
161
+ * // },
162
+ * // },
163
+ * // Topics: [ // Topics
164
+ * // "STRING_VALUE",
165
+ * // ],
166
+ * // Queues: [ // Queues
167
+ * // "STRING_VALUE",
168
+ * // ],
169
+ * // SourceAccessConfigurations: [ // SourceAccessConfigurations
170
+ * // { // SourceAccessConfiguration
171
+ * // Type: "BASIC_AUTH" || "VPC_SUBNET" || "VPC_SECURITY_GROUP" || "SASL_SCRAM_512_AUTH" || "SASL_SCRAM_256_AUTH" || "VIRTUAL_HOST" || "CLIENT_CERTIFICATE_TLS_AUTH" || "SERVER_ROOT_CA_CERTIFICATE",
172
+ * // URI: "STRING_VALUE",
173
+ * // },
174
+ * // ],
175
+ * // SelfManagedEventSource: { // SelfManagedEventSource
176
+ * // Endpoints: { // Endpoints
177
+ * // "<keys>": [ // EndpointLists
178
+ * // "STRING_VALUE",
179
+ * // ],
180
+ * // },
181
+ * // },
182
+ * // MaximumRecordAgeInSeconds: Number("int"),
183
+ * // BisectBatchOnFunctionError: true || false,
184
+ * // MaximumRetryAttempts: Number("int"),
185
+ * // TumblingWindowInSeconds: Number("int"),
186
+ * // FunctionResponseTypes: [ // FunctionResponseTypeList
187
+ * // "ReportBatchItemFailures",
188
+ * // ],
189
+ * // AmazonManagedKafkaEventSourceConfig: { // AmazonManagedKafkaEventSourceConfig
190
+ * // ConsumerGroupId: "STRING_VALUE",
191
+ * // SchemaRegistryConfig: { // KafkaSchemaRegistryConfig
192
+ * // SchemaRegistryURI: "STRING_VALUE",
193
+ * // EventRecordFormat: "JSON" || "SOURCE",
194
+ * // AccessConfigs: [ // KafkaSchemaRegistryAccessConfigList
195
+ * // { // KafkaSchemaRegistryAccessConfig
196
+ * // Type: "BASIC_AUTH" || "CLIENT_CERTIFICATE_TLS_AUTH" || "SERVER_ROOT_CA_CERTIFICATE",
197
+ * // URI: "STRING_VALUE",
198
+ * // },
199
+ * // ],
200
+ * // SchemaValidationConfigs: [ // KafkaSchemaValidationConfigList
201
+ * // { // KafkaSchemaValidationConfig
202
+ * // Attribute: "KEY" || "VALUE",
203
+ * // },
204
+ * // ],
205
+ * // },
206
+ * // },
207
+ * // SelfManagedKafkaEventSourceConfig: { // SelfManagedKafkaEventSourceConfig
208
+ * // ConsumerGroupId: "STRING_VALUE",
209
+ * // SchemaRegistryConfig: {
210
+ * // SchemaRegistryURI: "STRING_VALUE",
211
+ * // EventRecordFormat: "JSON" || "SOURCE",
212
+ * // AccessConfigs: [
213
+ * // {
214
+ * // Type: "BASIC_AUTH" || "CLIENT_CERTIFICATE_TLS_AUTH" || "SERVER_ROOT_CA_CERTIFICATE",
215
+ * // URI: "STRING_VALUE",
216
+ * // },
217
+ * // ],
218
+ * // SchemaValidationConfigs: [
219
+ * // {
220
+ * // Attribute: "KEY" || "VALUE",
221
+ * // },
222
+ * // ],
223
+ * // },
224
+ * // },
225
+ * // ScalingConfig: { // ScalingConfig
226
+ * // MaximumConcurrency: Number("int"),
227
+ * // },
228
+ * // DocumentDBEventSourceConfig: { // DocumentDBEventSourceConfig
229
+ * // DatabaseName: "STRING_VALUE",
230
+ * // CollectionName: "STRING_VALUE",
231
+ * // FullDocument: "UpdateLookup" || "Default",
232
+ * // },
233
+ * // KMSKeyArn: "STRING_VALUE",
234
+ * // FilterCriteriaError: { // FilterCriteriaError
235
+ * // ErrorCode: "STRING_VALUE",
236
+ * // Message: "STRING_VALUE",
237
+ * // },
238
+ * // EventSourceMappingArn: "STRING_VALUE",
239
+ * // MetricsConfig: { // EventSourceMappingMetricsConfig
240
+ * // Metrics: [ // EventSourceMappingMetricList
241
+ * // "EventCount" || "ErrorCount" || "KafkaMetrics",
242
+ * // ],
243
+ * // },
244
+ * // LoggingConfig: { // EventSourceMappingLoggingConfig
245
+ * // SystemLogLevel: "DEBUG" || "INFO" || "WARN",
246
+ * // },
247
+ * // ProvisionedPollerConfig: { // ProvisionedPollerConfig
248
+ * // MinimumPollers: Number("int"),
249
+ * // MaximumPollers: Number("int"),
250
+ * // PollerGroupName: "STRING_VALUE",
251
+ * // },
252
+ * // };
253
+ *
254
+ * ```
255
+ *
256
+ * @param UpdateEventSourceMappingCommandInput - {@link UpdateEventSourceMappingCommandInput}
257
+ * @returns {@link UpdateEventSourceMappingCommandOutput}
258
+ * @see {@link UpdateEventSourceMappingCommandInput} for command's `input` shape.
259
+ * @see {@link UpdateEventSourceMappingCommandOutput} for command's `response` shape.
260
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
261
+ *
262
+ * @throws {@link InvalidParameterValueException} (client fault)
263
+ * <p>One of the parameters in the request is not valid.</p>
264
+ *
265
+ * @throws {@link ResourceConflictException} (client fault)
266
+ * <p>The resource already exists, or another operation is in progress.</p>
267
+ *
268
+ * @throws {@link ResourceInUseException} (client fault)
269
+ * <p>The operation conflicts with the resource's availability. For example, you tried to update an event source mapping in the CREATING state, or you tried to delete an event source mapping currently UPDATING.</p>
270
+ *
271
+ * @throws {@link ResourceNotFoundException} (client fault)
272
+ * <p>The resource specified in the request does not exist.</p>
273
+ *
274
+ * @throws {@link ServiceException} (server fault)
275
+ * <p>The Lambda service encountered an internal error.</p>
276
+ *
277
+ * @throws {@link TooManyRequestsException} (client fault)
278
+ * <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
279
+ *
280
+ * @throws {@link LambdaServiceException}
281
+ * <p>Base exception class for all service exceptions from Lambda service.</p>
282
+ *
283
+ *
284
+ * @example To update a Lambda function event source mapping
285
+ * ```javascript
286
+ * // This operation updates a Lambda function event source mapping
287
+ * const input = {
288
+ * BatchSize: 123,
289
+ * Enabled: true,
290
+ * FunctionName: "myFunction",
291
+ * UUID: "1234xCy789012"
292
+ * };
293
+ * const command = new UpdateEventSourceMappingCommand(input);
294
+ * const response = await client.send(command);
295
+ * /* response is
296
+ * {
297
+ * BatchSize: 123,
298
+ * EventSourceArn: "arn:aws:s3:::examplebucket/*",
299
+ * FunctionArn: "arn:aws:lambda:us-west-2:123456789012:function:myFunction",
300
+ * LastModified: "2016-11-21T19:49:20.006Z",
301
+ * LastProcessingResult: "",
302
+ * State: "",
303
+ * StateTransitionReason: "",
304
+ * UUID: "1234xCy789012"
305
+ * }
306
+ * *\/
307
+ * ```
308
+ *
309
+ * @public
310
+ */
311
+ export declare class UpdateEventSourceMappingCommand extends UpdateEventSourceMappingCommand_base {
312
+ /** @internal type navigation helper, not in runtime. */
313
+ protected static __types: {
314
+ api: {
315
+ input: UpdateEventSourceMappingRequest;
316
+ output: EventSourceMappingConfiguration;
317
+ };
318
+ sdk: {
319
+ input: UpdateEventSourceMappingCommandInput;
320
+ output: UpdateEventSourceMappingCommandOutput;
321
+ };
322
+ };
323
+ }
@@ -0,0 +1,264 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
4
+ import type { FunctionConfiguration, UpdateFunctionCodeRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateFunctionCodeCommand}.
14
+ */
15
+ export interface UpdateFunctionCodeCommandInput extends UpdateFunctionCodeRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateFunctionCodeCommand}.
21
+ */
22
+ export interface UpdateFunctionCodeCommandOutput extends FunctionConfiguration, __MetadataBearer {
23
+ }
24
+ declare const UpdateFunctionCodeCommand_base: {
25
+ new (input: UpdateFunctionCodeCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateFunctionCodeCommandInput, UpdateFunctionCodeCommandOutput, LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateFunctionCodeCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateFunctionCodeCommandInput, UpdateFunctionCodeCommandOutput, LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html">Configuring code signing for Lambda</a>.</p> <p>If the function's package type is <code>Image</code>, then you must specify the code package in <code>ImageUri</code> as the 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> <p>If the function's package type is <code>Zip</code>, then you must specify the deployment package as a <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html#gettingstarted-package-zip">.zip file archive</a>. Enter the Amazon S3 bucket and key of the code .zip file location. You can also provide the function code inline using the <code>ZipFile</code> field.</p> <p>The code in the deployment package must be compatible with the target instruction set architecture of the function (<code>x86-64</code> or <code>arm64</code>).</p> <p>The function's code is locked when you publish a version. You can't modify the code of a published version, only the unpublished version.</p> <note> <p>For a function defined as a container image, Lambda resolves the image tag to an image digest. In Amazon ECR, if you update the image tag to a new image, Lambda does not automatically update the function.</p> </note>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { LambdaClient, UpdateFunctionCodeCommand } from "@aws-sdk/client-lambda"; // ES Modules import
35
+ * // const { LambdaClient, UpdateFunctionCodeCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
36
+ * // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
37
+ * const config = {}; // type is LambdaClientConfig
38
+ * const client = new LambdaClient(config);
39
+ * const input = { // UpdateFunctionCodeRequest
40
+ * FunctionName: "STRING_VALUE", // required
41
+ * ZipFile: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
42
+ * S3Bucket: "STRING_VALUE",
43
+ * S3Key: "STRING_VALUE",
44
+ * S3ObjectVersion: "STRING_VALUE",
45
+ * ImageUri: "STRING_VALUE",
46
+ * Publish: true || false,
47
+ * DryRun: true || false,
48
+ * RevisionId: "STRING_VALUE",
49
+ * Architectures: [ // ArchitecturesList
50
+ * "x86_64" || "arm64",
51
+ * ],
52
+ * SourceKMSKeyArn: "STRING_VALUE",
53
+ * PublishTo: "LATEST_PUBLISHED",
54
+ * };
55
+ * const command = new UpdateFunctionCodeCommand(input);
56
+ * const response = await client.send(command);
57
+ * // { // FunctionConfiguration
58
+ * // FunctionName: "STRING_VALUE",
59
+ * // FunctionArn: "STRING_VALUE",
60
+ * // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x" || "nodejs24.x" || "python3.14" || "java25" || "dotnet10",
61
+ * // Role: "STRING_VALUE",
62
+ * // Handler: "STRING_VALUE",
63
+ * // CodeSize: Number("long"),
64
+ * // Description: "STRING_VALUE",
65
+ * // Timeout: Number("int"),
66
+ * // MemorySize: Number("int"),
67
+ * // LastModified: "STRING_VALUE",
68
+ * // CodeSha256: "STRING_VALUE",
69
+ * // Version: "STRING_VALUE",
70
+ * // VpcConfig: { // VpcConfigResponse
71
+ * // SubnetIds: [ // SubnetIds
72
+ * // "STRING_VALUE",
73
+ * // ],
74
+ * // SecurityGroupIds: [ // SecurityGroupIds
75
+ * // "STRING_VALUE",
76
+ * // ],
77
+ * // VpcId: "STRING_VALUE",
78
+ * // Ipv6AllowedForDualStack: true || false,
79
+ * // },
80
+ * // DeadLetterConfig: { // DeadLetterConfig
81
+ * // TargetArn: "STRING_VALUE",
82
+ * // },
83
+ * // Environment: { // EnvironmentResponse
84
+ * // Variables: { // EnvironmentVariables
85
+ * // "<keys>": "STRING_VALUE",
86
+ * // },
87
+ * // Error: { // EnvironmentError
88
+ * // ErrorCode: "STRING_VALUE",
89
+ * // Message: "STRING_VALUE",
90
+ * // },
91
+ * // },
92
+ * // KMSKeyArn: "STRING_VALUE",
93
+ * // TracingConfig: { // TracingConfigResponse
94
+ * // Mode: "Active" || "PassThrough",
95
+ * // },
96
+ * // MasterArn: "STRING_VALUE",
97
+ * // RevisionId: "STRING_VALUE",
98
+ * // Layers: [ // LayersReferenceList
99
+ * // { // Layer
100
+ * // Arn: "STRING_VALUE",
101
+ * // CodeSize: Number("long"),
102
+ * // SigningProfileVersionArn: "STRING_VALUE",
103
+ * // SigningJobArn: "STRING_VALUE",
104
+ * // },
105
+ * // ],
106
+ * // State: "Pending" || "Active" || "Inactive" || "Failed" || "Deactivating" || "Deactivated" || "ActiveNonInvocable" || "Deleting",
107
+ * // StateReason: "STRING_VALUE",
108
+ * // StateReasonCode: "Idle" || "Creating" || "Restoring" || "EniLimitExceeded" || "InsufficientRolePermissions" || "InvalidConfiguration" || "InternalError" || "SubnetOutOfIPAddresses" || "InvalidSubnet" || "InvalidSecurityGroup" || "ImageDeleted" || "ImageAccessDenied" || "InvalidImage" || "KMSKeyAccessDenied" || "KMSKeyNotFound" || "InvalidStateKMSKey" || "DisabledKMSKey" || "EFSIOError" || "EFSMountConnectivityError" || "EFSMountFailure" || "EFSMountTimeout" || "InvalidRuntime" || "InvalidZipFileException" || "FunctionError" || "DrainingDurableExecutions" || "VcpuLimitExceeded" || "CapacityProviderScalingLimitExceeded" || "InsufficientCapacity" || "EC2RequestLimitExceeded" || "FunctionError.InitTimeout" || "FunctionError.RuntimeInitError" || "FunctionError.ExtensionInitError" || "FunctionError.InvalidEntryPoint" || "FunctionError.InvalidWorkingDirectory" || "FunctionError.PermissionDenied" || "FunctionError.TooManyExtensions" || "FunctionError.InitResourceExhausted" || "DisallowedByVpcEncryptionControl",
109
+ * // LastUpdateStatus: "Successful" || "Failed" || "InProgress",
110
+ * // LastUpdateStatusReason: "STRING_VALUE",
111
+ * // LastUpdateStatusReasonCode: "EniLimitExceeded" || "InsufficientRolePermissions" || "InvalidConfiguration" || "InternalError" || "SubnetOutOfIPAddresses" || "InvalidSubnet" || "InvalidSecurityGroup" || "ImageDeleted" || "ImageAccessDenied" || "InvalidImage" || "KMSKeyAccessDenied" || "KMSKeyNotFound" || "InvalidStateKMSKey" || "DisabledKMSKey" || "EFSIOError" || "EFSMountConnectivityError" || "EFSMountFailure" || "EFSMountTimeout" || "InvalidRuntime" || "InvalidZipFileException" || "FunctionError" || "VcpuLimitExceeded" || "CapacityProviderScalingLimitExceeded" || "InsufficientCapacity" || "EC2RequestLimitExceeded" || "FunctionError.InitTimeout" || "FunctionError.RuntimeInitError" || "FunctionError.ExtensionInitError" || "FunctionError.InvalidEntryPoint" || "FunctionError.InvalidWorkingDirectory" || "FunctionError.PermissionDenied" || "FunctionError.TooManyExtensions" || "FunctionError.InitResourceExhausted" || "DisallowedByVpcEncryptionControl",
112
+ * // FileSystemConfigs: [ // FileSystemConfigList
113
+ * // { // FileSystemConfig
114
+ * // Arn: "STRING_VALUE", // required
115
+ * // LocalMountPath: "STRING_VALUE", // required
116
+ * // },
117
+ * // ],
118
+ * // PackageType: "Zip" || "Image",
119
+ * // ImageConfigResponse: { // ImageConfigResponse
120
+ * // ImageConfig: { // ImageConfig
121
+ * // EntryPoint: [ // StringList
122
+ * // "STRING_VALUE",
123
+ * // ],
124
+ * // Command: [
125
+ * // "STRING_VALUE",
126
+ * // ],
127
+ * // WorkingDirectory: "STRING_VALUE",
128
+ * // },
129
+ * // Error: { // ImageConfigError
130
+ * // ErrorCode: "STRING_VALUE",
131
+ * // Message: "STRING_VALUE",
132
+ * // },
133
+ * // },
134
+ * // SigningProfileVersionArn: "STRING_VALUE",
135
+ * // SigningJobArn: "STRING_VALUE",
136
+ * // Architectures: [ // ArchitecturesList
137
+ * // "x86_64" || "arm64",
138
+ * // ],
139
+ * // EphemeralStorage: { // EphemeralStorage
140
+ * // Size: Number("int"), // required
141
+ * // },
142
+ * // SnapStart: { // SnapStartResponse
143
+ * // ApplyOn: "PublishedVersions" || "None",
144
+ * // OptimizationStatus: "On" || "Off",
145
+ * // },
146
+ * // RuntimeVersionConfig: { // RuntimeVersionConfig
147
+ * // RuntimeVersionArn: "STRING_VALUE",
148
+ * // Error: { // RuntimeVersionError
149
+ * // ErrorCode: "STRING_VALUE",
150
+ * // Message: "STRING_VALUE",
151
+ * // },
152
+ * // },
153
+ * // LoggingConfig: { // LoggingConfig
154
+ * // LogFormat: "JSON" || "Text",
155
+ * // ApplicationLogLevel: "TRACE" || "DEBUG" || "INFO" || "WARN" || "ERROR" || "FATAL",
156
+ * // SystemLogLevel: "DEBUG" || "INFO" || "WARN",
157
+ * // LogGroup: "STRING_VALUE",
158
+ * // },
159
+ * // CapacityProviderConfig: { // CapacityProviderConfig
160
+ * // LambdaManagedInstancesCapacityProviderConfig: { // LambdaManagedInstancesCapacityProviderConfig
161
+ * // CapacityProviderArn: "STRING_VALUE", // required
162
+ * // PerExecutionEnvironmentMaxConcurrency: Number("int"),
163
+ * // ExecutionEnvironmentMemoryGiBPerVCpu: Number("double"),
164
+ * // },
165
+ * // },
166
+ * // ConfigSha256: "STRING_VALUE",
167
+ * // DurableConfig: { // DurableConfig
168
+ * // RetentionPeriodInDays: Number("int"),
169
+ * // ExecutionTimeout: Number("int"),
170
+ * // },
171
+ * // TenancyConfig: { // TenancyConfig
172
+ * // TenantIsolationMode: "PER_TENANT", // required
173
+ * // },
174
+ * // };
175
+ *
176
+ * ```
177
+ *
178
+ * @param UpdateFunctionCodeCommandInput - {@link UpdateFunctionCodeCommandInput}
179
+ * @returns {@link UpdateFunctionCodeCommandOutput}
180
+ * @see {@link UpdateFunctionCodeCommandInput} for command's `input` shape.
181
+ * @see {@link UpdateFunctionCodeCommandOutput} for command's `response` shape.
182
+ * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
183
+ *
184
+ * @throws {@link CodeSigningConfigNotFoundException} (client fault)
185
+ * <p>The specified code signing configuration does not exist.</p>
186
+ *
187
+ * @throws {@link CodeStorageExceededException} (client fault)
188
+ * <p>Your Amazon Web Services account has exceeded its maximum total code size. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
189
+ *
190
+ * @throws {@link CodeVerificationFailedException} (client fault)
191
+ * <p>The code signature failed one or more of the validation checks for signature mismatch or expiry, and the code signing policy is set to ENFORCE. Lambda blocks the deployment.</p>
192
+ *
193
+ * @throws {@link InvalidCodeSignatureException} (client fault)
194
+ * <p>The code signature failed the integrity check. If the integrity check fails, then Lambda blocks deployment, even if the code signing policy is set to WARN.</p>
195
+ *
196
+ * @throws {@link InvalidParameterValueException} (client fault)
197
+ * <p>One of the parameters in the request is not valid.</p>
198
+ *
199
+ * @throws {@link PreconditionFailedException} (client fault)
200
+ * <p>The RevisionId provided does not match the latest RevisionId for the Lambda function or alias.</p> <ul> <li> <p> <b>For AddPermission and RemovePermission API operations:</b> Call <code>GetPolicy</code> to retrieve the latest RevisionId for your resource.</p> </li> <li> <p> <b>For all other API operations:</b> Call <code>GetFunction</code> or <code>GetAlias</code> to retrieve the latest RevisionId for your resource.</p> </li> </ul>
201
+ *
202
+ * @throws {@link ResourceConflictException} (client fault)
203
+ * <p>The resource already exists, or another operation is in progress.</p>
204
+ *
205
+ * @throws {@link ResourceNotFoundException} (client fault)
206
+ * <p>The resource specified in the request does not exist.</p>
207
+ *
208
+ * @throws {@link ServiceException} (server fault)
209
+ * <p>The Lambda service encountered an internal error.</p>
210
+ *
211
+ * @throws {@link TooManyRequestsException} (client fault)
212
+ * <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
213
+ *
214
+ * @throws {@link LambdaServiceException}
215
+ * <p>Base exception class for all service exceptions from Lambda service.</p>
216
+ *
217
+ *
218
+ * @example To update a Lambda function's code
219
+ * ```javascript
220
+ * // The following example replaces the code of the unpublished ($LATEST) version of a function named my-function with the contents of the specified zip file in Amazon S3.
221
+ * const input = {
222
+ * FunctionName: "my-function",
223
+ * S3Bucket: "my-bucket-1xpuxmplzrlbh",
224
+ * S3Key: "function.zip"
225
+ * };
226
+ * const command = new UpdateFunctionCodeCommand(input);
227
+ * const response = await client.send(command);
228
+ * /* response is
229
+ * {
230
+ * CodeSha256: "PFn4S+er27qk+UuZSTKEQfNKG/XNn7QJs90mJgq6oH8=",
231
+ * CodeSize: 308,
232
+ * Description: "",
233
+ * FunctionArn: "arn:aws:lambda:us-east-2:123456789012:function:my-function",
234
+ * FunctionName: "my-function",
235
+ * Handler: "index.handler",
236
+ * LastModified: "2019-08-14T22:26:11.234+0000",
237
+ * MemorySize: 128,
238
+ * RevisionId: "873282ed-xmpl-4dc8-a069-d0c647e470c6",
239
+ * Role: "arn:aws:iam::123456789012:role/lambda-role",
240
+ * Runtime: "nodejs12.x",
241
+ * Timeout: 3,
242
+ * TracingConfig: {
243
+ * Mode: "PassThrough"
244
+ * },
245
+ * Version: "$LATEST"
246
+ * }
247
+ * *\/
248
+ * ```
249
+ *
250
+ * @public
251
+ */
252
+ export declare class UpdateFunctionCodeCommand extends UpdateFunctionCodeCommand_base {
253
+ /** @internal type navigation helper, not in runtime. */
254
+ protected static __types: {
255
+ api: {
256
+ input: UpdateFunctionCodeRequest;
257
+ output: FunctionConfiguration;
258
+ };
259
+ sdk: {
260
+ input: UpdateFunctionCodeCommandInput;
261
+ output: UpdateFunctionCodeCommandOutput;
262
+ };
263
+ };
264
+ }