@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,2089 @@
1
+ 'use strict';
2
+
3
+ var middlewareHostHeader = require('@aws-sdk/middleware-host-header');
4
+ var middlewareLogger = require('@aws-sdk/middleware-logger');
5
+ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detection');
6
+ var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
+ var configResolver = require('@smithy/config-resolver');
8
+ var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
10
+ var eventstreamSerdeConfigResolver = require('@smithy/eventstream-serde-config-resolver');
11
+ var middlewareContentLength = require('@smithy/middleware-content-length');
12
+ var middlewareEndpoint = require('@smithy/middleware-endpoint');
13
+ var middlewareRetry = require('@smithy/middleware-retry');
14
+ var smithyClient = require('@smithy/smithy-client');
15
+ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
16
+ var runtimeConfig = require('./runtimeConfig');
17
+ var regionConfigResolver = require('@aws-sdk/region-config-resolver');
18
+ var protocolHttp = require('@smithy/protocol-http');
19
+ var schemas_0 = require('./schemas/schemas_0');
20
+ var utilWaiter = require('@smithy/util-waiter');
21
+ var errors = require('./models/errors');
22
+ var LambdaServiceException = require('./models/LambdaServiceException');
23
+
24
+ const resolveClientEndpointParameters = (options) => {
25
+ return Object.assign(options, {
26
+ useDualstackEndpoint: options.useDualstackEndpoint ?? false,
27
+ useFipsEndpoint: options.useFipsEndpoint ?? false,
28
+ defaultSigningName: "lambda",
29
+ });
30
+ };
31
+ const commonParams = {
32
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
33
+ Endpoint: { type: "builtInParams", name: "endpoint" },
34
+ Region: { type: "builtInParams", name: "region" },
35
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
36
+ };
37
+
38
+ const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
39
+ const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
40
+ let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
41
+ let _credentials = runtimeConfig.credentials;
42
+ return {
43
+ setHttpAuthScheme(httpAuthScheme) {
44
+ const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
45
+ if (index === -1) {
46
+ _httpAuthSchemes.push(httpAuthScheme);
47
+ }
48
+ else {
49
+ _httpAuthSchemes.splice(index, 1, httpAuthScheme);
50
+ }
51
+ },
52
+ httpAuthSchemes() {
53
+ return _httpAuthSchemes;
54
+ },
55
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
56
+ _httpAuthSchemeProvider = httpAuthSchemeProvider;
57
+ },
58
+ httpAuthSchemeProvider() {
59
+ return _httpAuthSchemeProvider;
60
+ },
61
+ setCredentials(credentials) {
62
+ _credentials = credentials;
63
+ },
64
+ credentials() {
65
+ return _credentials;
66
+ },
67
+ };
68
+ };
69
+ const resolveHttpAuthRuntimeConfig = (config) => {
70
+ return {
71
+ httpAuthSchemes: config.httpAuthSchemes(),
72
+ httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
73
+ credentials: config.credentials(),
74
+ };
75
+ };
76
+
77
+ const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
78
+ const extensionConfiguration = Object.assign(regionConfigResolver.getAwsRegionExtensionConfiguration(runtimeConfig), smithyClient.getDefaultExtensionConfiguration(runtimeConfig), protocolHttp.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
79
+ extensions.forEach((extension) => extension.configure(extensionConfiguration));
80
+ return Object.assign(runtimeConfig, regionConfigResolver.resolveAwsRegionExtensionConfiguration(extensionConfiguration), smithyClient.resolveDefaultRuntimeConfig(extensionConfiguration), protocolHttp.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
81
+ };
82
+
83
+ class LambdaClient extends smithyClient.Client {
84
+ config;
85
+ constructor(...[configuration]) {
86
+ const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});
87
+ super(_config_0);
88
+ this.initConfig = _config_0;
89
+ const _config_1 = resolveClientEndpointParameters(_config_0);
90
+ const _config_2 = middlewareUserAgent.resolveUserAgentConfig(_config_1);
91
+ const _config_3 = middlewareRetry.resolveRetryConfig(_config_2);
92
+ const _config_4 = configResolver.resolveRegionConfig(_config_3);
93
+ const _config_5 = middlewareHostHeader.resolveHostHeaderConfig(_config_4);
94
+ const _config_6 = middlewareEndpoint.resolveEndpointConfig(_config_5);
95
+ const _config_7 = eventstreamSerdeConfigResolver.resolveEventStreamSerdeConfig(_config_6);
96
+ const _config_8 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_7);
97
+ const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
98
+ this.config = _config_9;
99
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
100
+ this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
101
+ this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
102
+ this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
103
+ this.middlewareStack.use(middlewareHostHeader.getHostHeaderPlugin(this.config));
104
+ this.middlewareStack.use(middlewareLogger.getLoggerPlugin(this.config));
105
+ this.middlewareStack.use(middlewareRecursionDetection.getRecursionDetectionPlugin(this.config));
106
+ this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
107
+ httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultLambdaHttpAuthSchemeParametersProvider,
108
+ identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({
109
+ "aws.auth#sigv4": config.credentials,
110
+ }),
111
+ }));
112
+ this.middlewareStack.use(core.getHttpSigningPlugin(this.config));
113
+ }
114
+ destroy() {
115
+ super.destroy();
116
+ }
117
+ }
118
+
119
+ class AddLayerVersionPermissionCommand extends smithyClient.Command
120
+ .classBuilder()
121
+ .ep(commonParams)
122
+ .m(function (Command, cs, config, o) {
123
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
124
+ })
125
+ .s("AWSGirApiService", "AddLayerVersionPermission", {})
126
+ .n("LambdaClient", "AddLayerVersionPermissionCommand")
127
+ .sc(schemas_0.AddLayerVersionPermission$)
128
+ .build() {
129
+ }
130
+
131
+ class AddPermissionCommand extends smithyClient.Command
132
+ .classBuilder()
133
+ .ep(commonParams)
134
+ .m(function (Command, cs, config, o) {
135
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
136
+ })
137
+ .s("AWSGirApiService", "AddPermission", {})
138
+ .n("LambdaClient", "AddPermissionCommand")
139
+ .sc(schemas_0.AddPermission$)
140
+ .build() {
141
+ }
142
+
143
+ class CheckpointDurableExecutionCommand extends smithyClient.Command
144
+ .classBuilder()
145
+ .ep(commonParams)
146
+ .m(function (Command, cs, config, o) {
147
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
148
+ })
149
+ .s("AWSGirApiService", "CheckpointDurableExecution", {})
150
+ .n("LambdaClient", "CheckpointDurableExecutionCommand")
151
+ .sc(schemas_0.CheckpointDurableExecution$)
152
+ .build() {
153
+ }
154
+
155
+ class CreateAliasCommand extends smithyClient.Command
156
+ .classBuilder()
157
+ .ep(commonParams)
158
+ .m(function (Command, cs, config, o) {
159
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
160
+ })
161
+ .s("AWSGirApiService", "CreateAlias", {})
162
+ .n("LambdaClient", "CreateAliasCommand")
163
+ .sc(schemas_0.CreateAlias$)
164
+ .build() {
165
+ }
166
+
167
+ class CreateCapacityProviderCommand extends smithyClient.Command
168
+ .classBuilder()
169
+ .ep(commonParams)
170
+ .m(function (Command, cs, config, o) {
171
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
172
+ })
173
+ .s("AWSGirApiService", "CreateCapacityProvider", {})
174
+ .n("LambdaClient", "CreateCapacityProviderCommand")
175
+ .sc(schemas_0.CreateCapacityProvider$)
176
+ .build() {
177
+ }
178
+
179
+ class CreateCodeSigningConfigCommand extends smithyClient.Command
180
+ .classBuilder()
181
+ .ep(commonParams)
182
+ .m(function (Command, cs, config, o) {
183
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
184
+ })
185
+ .s("AWSGirApiService", "CreateCodeSigningConfig", {})
186
+ .n("LambdaClient", "CreateCodeSigningConfigCommand")
187
+ .sc(schemas_0.CreateCodeSigningConfig$)
188
+ .build() {
189
+ }
190
+
191
+ class CreateEventSourceMappingCommand extends smithyClient.Command
192
+ .classBuilder()
193
+ .ep(commonParams)
194
+ .m(function (Command, cs, config, o) {
195
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
196
+ })
197
+ .s("AWSGirApiService", "CreateEventSourceMapping", {})
198
+ .n("LambdaClient", "CreateEventSourceMappingCommand")
199
+ .sc(schemas_0.CreateEventSourceMapping$)
200
+ .build() {
201
+ }
202
+
203
+ class CreateFunctionCommand extends smithyClient.Command
204
+ .classBuilder()
205
+ .ep(commonParams)
206
+ .m(function (Command, cs, config, o) {
207
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
208
+ })
209
+ .s("AWSGirApiService", "CreateFunction", {})
210
+ .n("LambdaClient", "CreateFunctionCommand")
211
+ .sc(schemas_0.CreateFunction$)
212
+ .build() {
213
+ }
214
+
215
+ class CreateFunctionUrlConfigCommand extends smithyClient.Command
216
+ .classBuilder()
217
+ .ep(commonParams)
218
+ .m(function (Command, cs, config, o) {
219
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
220
+ })
221
+ .s("AWSGirApiService", "CreateFunctionUrlConfig", {})
222
+ .n("LambdaClient", "CreateFunctionUrlConfigCommand")
223
+ .sc(schemas_0.CreateFunctionUrlConfig$)
224
+ .build() {
225
+ }
226
+
227
+ class DeleteAliasCommand extends smithyClient.Command
228
+ .classBuilder()
229
+ .ep(commonParams)
230
+ .m(function (Command, cs, config, o) {
231
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
232
+ })
233
+ .s("AWSGirApiService", "DeleteAlias", {})
234
+ .n("LambdaClient", "DeleteAliasCommand")
235
+ .sc(schemas_0.DeleteAlias$)
236
+ .build() {
237
+ }
238
+
239
+ class DeleteCapacityProviderCommand extends smithyClient.Command
240
+ .classBuilder()
241
+ .ep(commonParams)
242
+ .m(function (Command, cs, config, o) {
243
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
244
+ })
245
+ .s("AWSGirApiService", "DeleteCapacityProvider", {})
246
+ .n("LambdaClient", "DeleteCapacityProviderCommand")
247
+ .sc(schemas_0.DeleteCapacityProvider$)
248
+ .build() {
249
+ }
250
+
251
+ class DeleteCodeSigningConfigCommand extends smithyClient.Command
252
+ .classBuilder()
253
+ .ep(commonParams)
254
+ .m(function (Command, cs, config, o) {
255
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
256
+ })
257
+ .s("AWSGirApiService", "DeleteCodeSigningConfig", {})
258
+ .n("LambdaClient", "DeleteCodeSigningConfigCommand")
259
+ .sc(schemas_0.DeleteCodeSigningConfig$)
260
+ .build() {
261
+ }
262
+
263
+ class DeleteEventSourceMappingCommand extends smithyClient.Command
264
+ .classBuilder()
265
+ .ep(commonParams)
266
+ .m(function (Command, cs, config, o) {
267
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
268
+ })
269
+ .s("AWSGirApiService", "DeleteEventSourceMapping", {})
270
+ .n("LambdaClient", "DeleteEventSourceMappingCommand")
271
+ .sc(schemas_0.DeleteEventSourceMapping$)
272
+ .build() {
273
+ }
274
+
275
+ class DeleteFunctionCodeSigningConfigCommand extends smithyClient.Command
276
+ .classBuilder()
277
+ .ep(commonParams)
278
+ .m(function (Command, cs, config, o) {
279
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
280
+ })
281
+ .s("AWSGirApiService", "DeleteFunctionCodeSigningConfig", {})
282
+ .n("LambdaClient", "DeleteFunctionCodeSigningConfigCommand")
283
+ .sc(schemas_0.DeleteFunctionCodeSigningConfig$)
284
+ .build() {
285
+ }
286
+
287
+ class DeleteFunctionCommand extends smithyClient.Command
288
+ .classBuilder()
289
+ .ep(commonParams)
290
+ .m(function (Command, cs, config, o) {
291
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
292
+ })
293
+ .s("AWSGirApiService", "DeleteFunction", {})
294
+ .n("LambdaClient", "DeleteFunctionCommand")
295
+ .sc(schemas_0.DeleteFunction$)
296
+ .build() {
297
+ }
298
+
299
+ class DeleteFunctionConcurrencyCommand extends smithyClient.Command
300
+ .classBuilder()
301
+ .ep(commonParams)
302
+ .m(function (Command, cs, config, o) {
303
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
304
+ })
305
+ .s("AWSGirApiService", "DeleteFunctionConcurrency", {})
306
+ .n("LambdaClient", "DeleteFunctionConcurrencyCommand")
307
+ .sc(schemas_0.DeleteFunctionConcurrency$)
308
+ .build() {
309
+ }
310
+
311
+ class DeleteFunctionEventInvokeConfigCommand extends smithyClient.Command
312
+ .classBuilder()
313
+ .ep(commonParams)
314
+ .m(function (Command, cs, config, o) {
315
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
316
+ })
317
+ .s("AWSGirApiService", "DeleteFunctionEventInvokeConfig", {})
318
+ .n("LambdaClient", "DeleteFunctionEventInvokeConfigCommand")
319
+ .sc(schemas_0.DeleteFunctionEventInvokeConfig$)
320
+ .build() {
321
+ }
322
+
323
+ class DeleteFunctionUrlConfigCommand extends smithyClient.Command
324
+ .classBuilder()
325
+ .ep(commonParams)
326
+ .m(function (Command, cs, config, o) {
327
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
328
+ })
329
+ .s("AWSGirApiService", "DeleteFunctionUrlConfig", {})
330
+ .n("LambdaClient", "DeleteFunctionUrlConfigCommand")
331
+ .sc(schemas_0.DeleteFunctionUrlConfig$)
332
+ .build() {
333
+ }
334
+
335
+ class DeleteLayerVersionCommand extends smithyClient.Command
336
+ .classBuilder()
337
+ .ep(commonParams)
338
+ .m(function (Command, cs, config, o) {
339
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
340
+ })
341
+ .s("AWSGirApiService", "DeleteLayerVersion", {})
342
+ .n("LambdaClient", "DeleteLayerVersionCommand")
343
+ .sc(schemas_0.DeleteLayerVersion$)
344
+ .build() {
345
+ }
346
+
347
+ class DeleteProvisionedConcurrencyConfigCommand extends smithyClient.Command
348
+ .classBuilder()
349
+ .ep(commonParams)
350
+ .m(function (Command, cs, config, o) {
351
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
352
+ })
353
+ .s("AWSGirApiService", "DeleteProvisionedConcurrencyConfig", {})
354
+ .n("LambdaClient", "DeleteProvisionedConcurrencyConfigCommand")
355
+ .sc(schemas_0.DeleteProvisionedConcurrencyConfig$)
356
+ .build() {
357
+ }
358
+
359
+ class GetAccountSettingsCommand extends smithyClient.Command
360
+ .classBuilder()
361
+ .ep(commonParams)
362
+ .m(function (Command, cs, config, o) {
363
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
364
+ })
365
+ .s("AWSGirApiService", "GetAccountSettings", {})
366
+ .n("LambdaClient", "GetAccountSettingsCommand")
367
+ .sc(schemas_0.GetAccountSettings$)
368
+ .build() {
369
+ }
370
+
371
+ class GetAliasCommand extends smithyClient.Command
372
+ .classBuilder()
373
+ .ep(commonParams)
374
+ .m(function (Command, cs, config, o) {
375
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
376
+ })
377
+ .s("AWSGirApiService", "GetAlias", {})
378
+ .n("LambdaClient", "GetAliasCommand")
379
+ .sc(schemas_0.GetAlias$)
380
+ .build() {
381
+ }
382
+
383
+ class GetCapacityProviderCommand extends smithyClient.Command
384
+ .classBuilder()
385
+ .ep(commonParams)
386
+ .m(function (Command, cs, config, o) {
387
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
388
+ })
389
+ .s("AWSGirApiService", "GetCapacityProvider", {})
390
+ .n("LambdaClient", "GetCapacityProviderCommand")
391
+ .sc(schemas_0.GetCapacityProvider$)
392
+ .build() {
393
+ }
394
+
395
+ class GetCodeSigningConfigCommand extends smithyClient.Command
396
+ .classBuilder()
397
+ .ep(commonParams)
398
+ .m(function (Command, cs, config, o) {
399
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
400
+ })
401
+ .s("AWSGirApiService", "GetCodeSigningConfig", {})
402
+ .n("LambdaClient", "GetCodeSigningConfigCommand")
403
+ .sc(schemas_0.GetCodeSigningConfig$)
404
+ .build() {
405
+ }
406
+
407
+ class GetDurableExecutionCommand extends smithyClient.Command
408
+ .classBuilder()
409
+ .ep(commonParams)
410
+ .m(function (Command, cs, config, o) {
411
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
412
+ })
413
+ .s("AWSGirApiService", "GetDurableExecution", {})
414
+ .n("LambdaClient", "GetDurableExecutionCommand")
415
+ .sc(schemas_0.GetDurableExecution$)
416
+ .build() {
417
+ }
418
+
419
+ class GetDurableExecutionHistoryCommand extends smithyClient.Command
420
+ .classBuilder()
421
+ .ep(commonParams)
422
+ .m(function (Command, cs, config, o) {
423
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
424
+ })
425
+ .s("AWSGirApiService", "GetDurableExecutionHistory", {})
426
+ .n("LambdaClient", "GetDurableExecutionHistoryCommand")
427
+ .sc(schemas_0.GetDurableExecutionHistory$)
428
+ .build() {
429
+ }
430
+
431
+ class GetDurableExecutionStateCommand extends smithyClient.Command
432
+ .classBuilder()
433
+ .ep(commonParams)
434
+ .m(function (Command, cs, config, o) {
435
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
436
+ })
437
+ .s("AWSGirApiService", "GetDurableExecutionState", {})
438
+ .n("LambdaClient", "GetDurableExecutionStateCommand")
439
+ .sc(schemas_0.GetDurableExecutionState$)
440
+ .build() {
441
+ }
442
+
443
+ class GetEventSourceMappingCommand extends smithyClient.Command
444
+ .classBuilder()
445
+ .ep(commonParams)
446
+ .m(function (Command, cs, config, o) {
447
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
448
+ })
449
+ .s("AWSGirApiService", "GetEventSourceMapping", {})
450
+ .n("LambdaClient", "GetEventSourceMappingCommand")
451
+ .sc(schemas_0.GetEventSourceMapping$)
452
+ .build() {
453
+ }
454
+
455
+ class GetFunctionCodeSigningConfigCommand extends smithyClient.Command
456
+ .classBuilder()
457
+ .ep(commonParams)
458
+ .m(function (Command, cs, config, o) {
459
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
460
+ })
461
+ .s("AWSGirApiService", "GetFunctionCodeSigningConfig", {})
462
+ .n("LambdaClient", "GetFunctionCodeSigningConfigCommand")
463
+ .sc(schemas_0.GetFunctionCodeSigningConfig$)
464
+ .build() {
465
+ }
466
+
467
+ class GetFunctionCommand extends smithyClient.Command
468
+ .classBuilder()
469
+ .ep(commonParams)
470
+ .m(function (Command, cs, config, o) {
471
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
472
+ })
473
+ .s("AWSGirApiService", "GetFunction", {})
474
+ .n("LambdaClient", "GetFunctionCommand")
475
+ .sc(schemas_0.GetFunction$)
476
+ .build() {
477
+ }
478
+
479
+ class GetFunctionConcurrencyCommand extends smithyClient.Command
480
+ .classBuilder()
481
+ .ep(commonParams)
482
+ .m(function (Command, cs, config, o) {
483
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
484
+ })
485
+ .s("AWSGirApiService", "GetFunctionConcurrency", {})
486
+ .n("LambdaClient", "GetFunctionConcurrencyCommand")
487
+ .sc(schemas_0.GetFunctionConcurrency$)
488
+ .build() {
489
+ }
490
+
491
+ class GetFunctionConfigurationCommand extends smithyClient.Command
492
+ .classBuilder()
493
+ .ep(commonParams)
494
+ .m(function (Command, cs, config, o) {
495
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
496
+ })
497
+ .s("AWSGirApiService", "GetFunctionConfiguration", {})
498
+ .n("LambdaClient", "GetFunctionConfigurationCommand")
499
+ .sc(schemas_0.GetFunctionConfiguration$)
500
+ .build() {
501
+ }
502
+
503
+ class GetFunctionEventInvokeConfigCommand extends smithyClient.Command
504
+ .classBuilder()
505
+ .ep(commonParams)
506
+ .m(function (Command, cs, config, o) {
507
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
508
+ })
509
+ .s("AWSGirApiService", "GetFunctionEventInvokeConfig", {})
510
+ .n("LambdaClient", "GetFunctionEventInvokeConfigCommand")
511
+ .sc(schemas_0.GetFunctionEventInvokeConfig$)
512
+ .build() {
513
+ }
514
+
515
+ class GetFunctionRecursionConfigCommand extends smithyClient.Command
516
+ .classBuilder()
517
+ .ep(commonParams)
518
+ .m(function (Command, cs, config, o) {
519
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
520
+ })
521
+ .s("AWSGirApiService", "GetFunctionRecursionConfig", {})
522
+ .n("LambdaClient", "GetFunctionRecursionConfigCommand")
523
+ .sc(schemas_0.GetFunctionRecursionConfig$)
524
+ .build() {
525
+ }
526
+
527
+ class GetFunctionScalingConfigCommand extends smithyClient.Command
528
+ .classBuilder()
529
+ .ep(commonParams)
530
+ .m(function (Command, cs, config, o) {
531
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
532
+ })
533
+ .s("AWSGirApiService", "GetFunctionScalingConfig", {})
534
+ .n("LambdaClient", "GetFunctionScalingConfigCommand")
535
+ .sc(schemas_0.GetFunctionScalingConfig$)
536
+ .build() {
537
+ }
538
+
539
+ class GetFunctionUrlConfigCommand extends smithyClient.Command
540
+ .classBuilder()
541
+ .ep(commonParams)
542
+ .m(function (Command, cs, config, o) {
543
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
544
+ })
545
+ .s("AWSGirApiService", "GetFunctionUrlConfig", {})
546
+ .n("LambdaClient", "GetFunctionUrlConfigCommand")
547
+ .sc(schemas_0.GetFunctionUrlConfig$)
548
+ .build() {
549
+ }
550
+
551
+ class GetLayerVersionByArnCommand extends smithyClient.Command
552
+ .classBuilder()
553
+ .ep(commonParams)
554
+ .m(function (Command, cs, config, o) {
555
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
556
+ })
557
+ .s("AWSGirApiService", "GetLayerVersionByArn", {})
558
+ .n("LambdaClient", "GetLayerVersionByArnCommand")
559
+ .sc(schemas_0.GetLayerVersionByArn$)
560
+ .build() {
561
+ }
562
+
563
+ class GetLayerVersionCommand extends smithyClient.Command
564
+ .classBuilder()
565
+ .ep(commonParams)
566
+ .m(function (Command, cs, config, o) {
567
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
568
+ })
569
+ .s("AWSGirApiService", "GetLayerVersion", {})
570
+ .n("LambdaClient", "GetLayerVersionCommand")
571
+ .sc(schemas_0.GetLayerVersion$)
572
+ .build() {
573
+ }
574
+
575
+ class GetLayerVersionPolicyCommand extends smithyClient.Command
576
+ .classBuilder()
577
+ .ep(commonParams)
578
+ .m(function (Command, cs, config, o) {
579
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
580
+ })
581
+ .s("AWSGirApiService", "GetLayerVersionPolicy", {})
582
+ .n("LambdaClient", "GetLayerVersionPolicyCommand")
583
+ .sc(schemas_0.GetLayerVersionPolicy$)
584
+ .build() {
585
+ }
586
+
587
+ class GetPolicyCommand extends smithyClient.Command
588
+ .classBuilder()
589
+ .ep(commonParams)
590
+ .m(function (Command, cs, config, o) {
591
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
592
+ })
593
+ .s("AWSGirApiService", "GetPolicy", {})
594
+ .n("LambdaClient", "GetPolicyCommand")
595
+ .sc(schemas_0.GetPolicy$)
596
+ .build() {
597
+ }
598
+
599
+ class GetProvisionedConcurrencyConfigCommand extends smithyClient.Command
600
+ .classBuilder()
601
+ .ep(commonParams)
602
+ .m(function (Command, cs, config, o) {
603
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
604
+ })
605
+ .s("AWSGirApiService", "GetProvisionedConcurrencyConfig", {})
606
+ .n("LambdaClient", "GetProvisionedConcurrencyConfigCommand")
607
+ .sc(schemas_0.GetProvisionedConcurrencyConfig$)
608
+ .build() {
609
+ }
610
+
611
+ class GetRuntimeManagementConfigCommand extends smithyClient.Command
612
+ .classBuilder()
613
+ .ep(commonParams)
614
+ .m(function (Command, cs, config, o) {
615
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
616
+ })
617
+ .s("AWSGirApiService", "GetRuntimeManagementConfig", {})
618
+ .n("LambdaClient", "GetRuntimeManagementConfigCommand")
619
+ .sc(schemas_0.GetRuntimeManagementConfig$)
620
+ .build() {
621
+ }
622
+
623
+ class InvokeAsyncCommand extends smithyClient.Command
624
+ .classBuilder()
625
+ .ep(commonParams)
626
+ .m(function (Command, cs, config, o) {
627
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
628
+ })
629
+ .s("AWSGirApiService", "InvokeAsync", {})
630
+ .n("LambdaClient", "InvokeAsyncCommand")
631
+ .sc(schemas_0.InvokeAsync$)
632
+ .build() {
633
+ }
634
+
635
+ class InvokeCommand extends smithyClient.Command
636
+ .classBuilder()
637
+ .ep(commonParams)
638
+ .m(function (Command, cs, config, o) {
639
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
640
+ })
641
+ .s("AWSGirApiService", "Invoke", {})
642
+ .n("LambdaClient", "InvokeCommand")
643
+ .sc(schemas_0.Invoke$)
644
+ .build() {
645
+ }
646
+
647
+ class InvokeWithResponseStreamCommand extends smithyClient.Command
648
+ .classBuilder()
649
+ .ep(commonParams)
650
+ .m(function (Command, cs, config, o) {
651
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
652
+ })
653
+ .s("AWSGirApiService", "InvokeWithResponseStream", {
654
+ eventStream: {
655
+ output: true,
656
+ },
657
+ })
658
+ .n("LambdaClient", "InvokeWithResponseStreamCommand")
659
+ .sc(schemas_0.InvokeWithResponseStream$)
660
+ .build() {
661
+ }
662
+
663
+ class ListAliasesCommand extends smithyClient.Command
664
+ .classBuilder()
665
+ .ep(commonParams)
666
+ .m(function (Command, cs, config, o) {
667
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
668
+ })
669
+ .s("AWSGirApiService", "ListAliases", {})
670
+ .n("LambdaClient", "ListAliasesCommand")
671
+ .sc(schemas_0.ListAliases$)
672
+ .build() {
673
+ }
674
+
675
+ class ListCapacityProvidersCommand extends smithyClient.Command
676
+ .classBuilder()
677
+ .ep(commonParams)
678
+ .m(function (Command, cs, config, o) {
679
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
680
+ })
681
+ .s("AWSGirApiService", "ListCapacityProviders", {})
682
+ .n("LambdaClient", "ListCapacityProvidersCommand")
683
+ .sc(schemas_0.ListCapacityProviders$)
684
+ .build() {
685
+ }
686
+
687
+ class ListCodeSigningConfigsCommand extends smithyClient.Command
688
+ .classBuilder()
689
+ .ep(commonParams)
690
+ .m(function (Command, cs, config, o) {
691
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
692
+ })
693
+ .s("AWSGirApiService", "ListCodeSigningConfigs", {})
694
+ .n("LambdaClient", "ListCodeSigningConfigsCommand")
695
+ .sc(schemas_0.ListCodeSigningConfigs$)
696
+ .build() {
697
+ }
698
+
699
+ class ListDurableExecutionsByFunctionCommand extends smithyClient.Command
700
+ .classBuilder()
701
+ .ep(commonParams)
702
+ .m(function (Command, cs, config, o) {
703
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
704
+ })
705
+ .s("AWSGirApiService", "ListDurableExecutionsByFunction", {})
706
+ .n("LambdaClient", "ListDurableExecutionsByFunctionCommand")
707
+ .sc(schemas_0.ListDurableExecutionsByFunction$)
708
+ .build() {
709
+ }
710
+
711
+ class ListEventSourceMappingsCommand extends smithyClient.Command
712
+ .classBuilder()
713
+ .ep(commonParams)
714
+ .m(function (Command, cs, config, o) {
715
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
716
+ })
717
+ .s("AWSGirApiService", "ListEventSourceMappings", {})
718
+ .n("LambdaClient", "ListEventSourceMappingsCommand")
719
+ .sc(schemas_0.ListEventSourceMappings$)
720
+ .build() {
721
+ }
722
+
723
+ class ListFunctionEventInvokeConfigsCommand extends smithyClient.Command
724
+ .classBuilder()
725
+ .ep(commonParams)
726
+ .m(function (Command, cs, config, o) {
727
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
728
+ })
729
+ .s("AWSGirApiService", "ListFunctionEventInvokeConfigs", {})
730
+ .n("LambdaClient", "ListFunctionEventInvokeConfigsCommand")
731
+ .sc(schemas_0.ListFunctionEventInvokeConfigs$)
732
+ .build() {
733
+ }
734
+
735
+ class ListFunctionsByCodeSigningConfigCommand extends smithyClient.Command
736
+ .classBuilder()
737
+ .ep(commonParams)
738
+ .m(function (Command, cs, config, o) {
739
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
740
+ })
741
+ .s("AWSGirApiService", "ListFunctionsByCodeSigningConfig", {})
742
+ .n("LambdaClient", "ListFunctionsByCodeSigningConfigCommand")
743
+ .sc(schemas_0.ListFunctionsByCodeSigningConfig$)
744
+ .build() {
745
+ }
746
+
747
+ class ListFunctionsCommand extends smithyClient.Command
748
+ .classBuilder()
749
+ .ep(commonParams)
750
+ .m(function (Command, cs, config, o) {
751
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
752
+ })
753
+ .s("AWSGirApiService", "ListFunctions", {})
754
+ .n("LambdaClient", "ListFunctionsCommand")
755
+ .sc(schemas_0.ListFunctions$)
756
+ .build() {
757
+ }
758
+
759
+ class ListFunctionUrlConfigsCommand extends smithyClient.Command
760
+ .classBuilder()
761
+ .ep(commonParams)
762
+ .m(function (Command, cs, config, o) {
763
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
764
+ })
765
+ .s("AWSGirApiService", "ListFunctionUrlConfigs", {})
766
+ .n("LambdaClient", "ListFunctionUrlConfigsCommand")
767
+ .sc(schemas_0.ListFunctionUrlConfigs$)
768
+ .build() {
769
+ }
770
+
771
+ class ListFunctionVersionsByCapacityProviderCommand extends smithyClient.Command
772
+ .classBuilder()
773
+ .ep(commonParams)
774
+ .m(function (Command, cs, config, o) {
775
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
776
+ })
777
+ .s("AWSGirApiService", "ListFunctionVersionsByCapacityProvider", {})
778
+ .n("LambdaClient", "ListFunctionVersionsByCapacityProviderCommand")
779
+ .sc(schemas_0.ListFunctionVersionsByCapacityProvider$)
780
+ .build() {
781
+ }
782
+
783
+ class ListLayersCommand extends smithyClient.Command
784
+ .classBuilder()
785
+ .ep(commonParams)
786
+ .m(function (Command, cs, config, o) {
787
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
788
+ })
789
+ .s("AWSGirApiService", "ListLayers", {})
790
+ .n("LambdaClient", "ListLayersCommand")
791
+ .sc(schemas_0.ListLayers$)
792
+ .build() {
793
+ }
794
+
795
+ class ListLayerVersionsCommand extends smithyClient.Command
796
+ .classBuilder()
797
+ .ep(commonParams)
798
+ .m(function (Command, cs, config, o) {
799
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
800
+ })
801
+ .s("AWSGirApiService", "ListLayerVersions", {})
802
+ .n("LambdaClient", "ListLayerVersionsCommand")
803
+ .sc(schemas_0.ListLayerVersions$)
804
+ .build() {
805
+ }
806
+
807
+ class ListProvisionedConcurrencyConfigsCommand extends smithyClient.Command
808
+ .classBuilder()
809
+ .ep(commonParams)
810
+ .m(function (Command, cs, config, o) {
811
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
812
+ })
813
+ .s("AWSGirApiService", "ListProvisionedConcurrencyConfigs", {})
814
+ .n("LambdaClient", "ListProvisionedConcurrencyConfigsCommand")
815
+ .sc(schemas_0.ListProvisionedConcurrencyConfigs$)
816
+ .build() {
817
+ }
818
+
819
+ class ListTagsCommand extends smithyClient.Command
820
+ .classBuilder()
821
+ .ep(commonParams)
822
+ .m(function (Command, cs, config, o) {
823
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
824
+ })
825
+ .s("AWSGirApiService", "ListTags", {})
826
+ .n("LambdaClient", "ListTagsCommand")
827
+ .sc(schemas_0.ListTags$)
828
+ .build() {
829
+ }
830
+
831
+ class ListVersionsByFunctionCommand extends smithyClient.Command
832
+ .classBuilder()
833
+ .ep(commonParams)
834
+ .m(function (Command, cs, config, o) {
835
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
836
+ })
837
+ .s("AWSGirApiService", "ListVersionsByFunction", {})
838
+ .n("LambdaClient", "ListVersionsByFunctionCommand")
839
+ .sc(schemas_0.ListVersionsByFunction$)
840
+ .build() {
841
+ }
842
+
843
+ class PublishLayerVersionCommand extends smithyClient.Command
844
+ .classBuilder()
845
+ .ep(commonParams)
846
+ .m(function (Command, cs, config, o) {
847
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
848
+ })
849
+ .s("AWSGirApiService", "PublishLayerVersion", {})
850
+ .n("LambdaClient", "PublishLayerVersionCommand")
851
+ .sc(schemas_0.PublishLayerVersion$)
852
+ .build() {
853
+ }
854
+
855
+ class PublishVersionCommand extends smithyClient.Command
856
+ .classBuilder()
857
+ .ep(commonParams)
858
+ .m(function (Command, cs, config, o) {
859
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
860
+ })
861
+ .s("AWSGirApiService", "PublishVersion", {})
862
+ .n("LambdaClient", "PublishVersionCommand")
863
+ .sc(schemas_0.PublishVersion$)
864
+ .build() {
865
+ }
866
+
867
+ class PutFunctionCodeSigningConfigCommand extends smithyClient.Command
868
+ .classBuilder()
869
+ .ep(commonParams)
870
+ .m(function (Command, cs, config, o) {
871
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
872
+ })
873
+ .s("AWSGirApiService", "PutFunctionCodeSigningConfig", {})
874
+ .n("LambdaClient", "PutFunctionCodeSigningConfigCommand")
875
+ .sc(schemas_0.PutFunctionCodeSigningConfig$)
876
+ .build() {
877
+ }
878
+
879
+ class PutFunctionConcurrencyCommand extends smithyClient.Command
880
+ .classBuilder()
881
+ .ep(commonParams)
882
+ .m(function (Command, cs, config, o) {
883
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
884
+ })
885
+ .s("AWSGirApiService", "PutFunctionConcurrency", {})
886
+ .n("LambdaClient", "PutFunctionConcurrencyCommand")
887
+ .sc(schemas_0.PutFunctionConcurrency$)
888
+ .build() {
889
+ }
890
+
891
+ class PutFunctionEventInvokeConfigCommand extends smithyClient.Command
892
+ .classBuilder()
893
+ .ep(commonParams)
894
+ .m(function (Command, cs, config, o) {
895
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
896
+ })
897
+ .s("AWSGirApiService", "PutFunctionEventInvokeConfig", {})
898
+ .n("LambdaClient", "PutFunctionEventInvokeConfigCommand")
899
+ .sc(schemas_0.PutFunctionEventInvokeConfig$)
900
+ .build() {
901
+ }
902
+
903
+ class PutFunctionRecursionConfigCommand extends smithyClient.Command
904
+ .classBuilder()
905
+ .ep(commonParams)
906
+ .m(function (Command, cs, config, o) {
907
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
908
+ })
909
+ .s("AWSGirApiService", "PutFunctionRecursionConfig", {})
910
+ .n("LambdaClient", "PutFunctionRecursionConfigCommand")
911
+ .sc(schemas_0.PutFunctionRecursionConfig$)
912
+ .build() {
913
+ }
914
+
915
+ class PutFunctionScalingConfigCommand extends smithyClient.Command
916
+ .classBuilder()
917
+ .ep(commonParams)
918
+ .m(function (Command, cs, config, o) {
919
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
920
+ })
921
+ .s("AWSGirApiService", "PutFunctionScalingConfig", {})
922
+ .n("LambdaClient", "PutFunctionScalingConfigCommand")
923
+ .sc(schemas_0.PutFunctionScalingConfig$)
924
+ .build() {
925
+ }
926
+
927
+ class PutProvisionedConcurrencyConfigCommand extends smithyClient.Command
928
+ .classBuilder()
929
+ .ep(commonParams)
930
+ .m(function (Command, cs, config, o) {
931
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
932
+ })
933
+ .s("AWSGirApiService", "PutProvisionedConcurrencyConfig", {})
934
+ .n("LambdaClient", "PutProvisionedConcurrencyConfigCommand")
935
+ .sc(schemas_0.PutProvisionedConcurrencyConfig$)
936
+ .build() {
937
+ }
938
+
939
+ class PutRuntimeManagementConfigCommand extends smithyClient.Command
940
+ .classBuilder()
941
+ .ep(commonParams)
942
+ .m(function (Command, cs, config, o) {
943
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
944
+ })
945
+ .s("AWSGirApiService", "PutRuntimeManagementConfig", {})
946
+ .n("LambdaClient", "PutRuntimeManagementConfigCommand")
947
+ .sc(schemas_0.PutRuntimeManagementConfig$)
948
+ .build() {
949
+ }
950
+
951
+ class RemoveLayerVersionPermissionCommand extends smithyClient.Command
952
+ .classBuilder()
953
+ .ep(commonParams)
954
+ .m(function (Command, cs, config, o) {
955
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
956
+ })
957
+ .s("AWSGirApiService", "RemoveLayerVersionPermission", {})
958
+ .n("LambdaClient", "RemoveLayerVersionPermissionCommand")
959
+ .sc(schemas_0.RemoveLayerVersionPermission$)
960
+ .build() {
961
+ }
962
+
963
+ class RemovePermissionCommand extends smithyClient.Command
964
+ .classBuilder()
965
+ .ep(commonParams)
966
+ .m(function (Command, cs, config, o) {
967
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
968
+ })
969
+ .s("AWSGirApiService", "RemovePermission", {})
970
+ .n("LambdaClient", "RemovePermissionCommand")
971
+ .sc(schemas_0.RemovePermission$)
972
+ .build() {
973
+ }
974
+
975
+ class SendDurableExecutionCallbackFailureCommand extends smithyClient.Command
976
+ .classBuilder()
977
+ .ep(commonParams)
978
+ .m(function (Command, cs, config, o) {
979
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
980
+ })
981
+ .s("AWSGirApiService", "SendDurableExecutionCallbackFailure", {})
982
+ .n("LambdaClient", "SendDurableExecutionCallbackFailureCommand")
983
+ .sc(schemas_0.SendDurableExecutionCallbackFailure$)
984
+ .build() {
985
+ }
986
+
987
+ class SendDurableExecutionCallbackHeartbeatCommand extends smithyClient.Command
988
+ .classBuilder()
989
+ .ep(commonParams)
990
+ .m(function (Command, cs, config, o) {
991
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
992
+ })
993
+ .s("AWSGirApiService", "SendDurableExecutionCallbackHeartbeat", {})
994
+ .n("LambdaClient", "SendDurableExecutionCallbackHeartbeatCommand")
995
+ .sc(schemas_0.SendDurableExecutionCallbackHeartbeat$)
996
+ .build() {
997
+ }
998
+
999
+ class SendDurableExecutionCallbackSuccessCommand extends smithyClient.Command
1000
+ .classBuilder()
1001
+ .ep(commonParams)
1002
+ .m(function (Command, cs, config, o) {
1003
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1004
+ })
1005
+ .s("AWSGirApiService", "SendDurableExecutionCallbackSuccess", {})
1006
+ .n("LambdaClient", "SendDurableExecutionCallbackSuccessCommand")
1007
+ .sc(schemas_0.SendDurableExecutionCallbackSuccess$)
1008
+ .build() {
1009
+ }
1010
+
1011
+ class StopDurableExecutionCommand extends smithyClient.Command
1012
+ .classBuilder()
1013
+ .ep(commonParams)
1014
+ .m(function (Command, cs, config, o) {
1015
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1016
+ })
1017
+ .s("AWSGirApiService", "StopDurableExecution", {})
1018
+ .n("LambdaClient", "StopDurableExecutionCommand")
1019
+ .sc(schemas_0.StopDurableExecution$)
1020
+ .build() {
1021
+ }
1022
+
1023
+ class TagResourceCommand extends smithyClient.Command
1024
+ .classBuilder()
1025
+ .ep(commonParams)
1026
+ .m(function (Command, cs, config, o) {
1027
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1028
+ })
1029
+ .s("AWSGirApiService", "TagResource", {})
1030
+ .n("LambdaClient", "TagResourceCommand")
1031
+ .sc(schemas_0.TagResource$)
1032
+ .build() {
1033
+ }
1034
+
1035
+ class UntagResourceCommand extends smithyClient.Command
1036
+ .classBuilder()
1037
+ .ep(commonParams)
1038
+ .m(function (Command, cs, config, o) {
1039
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1040
+ })
1041
+ .s("AWSGirApiService", "UntagResource", {})
1042
+ .n("LambdaClient", "UntagResourceCommand")
1043
+ .sc(schemas_0.UntagResource$)
1044
+ .build() {
1045
+ }
1046
+
1047
+ class UpdateAliasCommand extends smithyClient.Command
1048
+ .classBuilder()
1049
+ .ep(commonParams)
1050
+ .m(function (Command, cs, config, o) {
1051
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1052
+ })
1053
+ .s("AWSGirApiService", "UpdateAlias", {})
1054
+ .n("LambdaClient", "UpdateAliasCommand")
1055
+ .sc(schemas_0.UpdateAlias$)
1056
+ .build() {
1057
+ }
1058
+
1059
+ class UpdateCapacityProviderCommand extends smithyClient.Command
1060
+ .classBuilder()
1061
+ .ep(commonParams)
1062
+ .m(function (Command, cs, config, o) {
1063
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1064
+ })
1065
+ .s("AWSGirApiService", "UpdateCapacityProvider", {})
1066
+ .n("LambdaClient", "UpdateCapacityProviderCommand")
1067
+ .sc(schemas_0.UpdateCapacityProvider$)
1068
+ .build() {
1069
+ }
1070
+
1071
+ class UpdateCodeSigningConfigCommand extends smithyClient.Command
1072
+ .classBuilder()
1073
+ .ep(commonParams)
1074
+ .m(function (Command, cs, config, o) {
1075
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1076
+ })
1077
+ .s("AWSGirApiService", "UpdateCodeSigningConfig", {})
1078
+ .n("LambdaClient", "UpdateCodeSigningConfigCommand")
1079
+ .sc(schemas_0.UpdateCodeSigningConfig$)
1080
+ .build() {
1081
+ }
1082
+
1083
+ class UpdateEventSourceMappingCommand extends smithyClient.Command
1084
+ .classBuilder()
1085
+ .ep(commonParams)
1086
+ .m(function (Command, cs, config, o) {
1087
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1088
+ })
1089
+ .s("AWSGirApiService", "UpdateEventSourceMapping", {})
1090
+ .n("LambdaClient", "UpdateEventSourceMappingCommand")
1091
+ .sc(schemas_0.UpdateEventSourceMapping$)
1092
+ .build() {
1093
+ }
1094
+
1095
+ class UpdateFunctionCodeCommand extends smithyClient.Command
1096
+ .classBuilder()
1097
+ .ep(commonParams)
1098
+ .m(function (Command, cs, config, o) {
1099
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1100
+ })
1101
+ .s("AWSGirApiService", "UpdateFunctionCode", {})
1102
+ .n("LambdaClient", "UpdateFunctionCodeCommand")
1103
+ .sc(schemas_0.UpdateFunctionCode$)
1104
+ .build() {
1105
+ }
1106
+
1107
+ class UpdateFunctionConfigurationCommand extends smithyClient.Command
1108
+ .classBuilder()
1109
+ .ep(commonParams)
1110
+ .m(function (Command, cs, config, o) {
1111
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1112
+ })
1113
+ .s("AWSGirApiService", "UpdateFunctionConfiguration", {})
1114
+ .n("LambdaClient", "UpdateFunctionConfigurationCommand")
1115
+ .sc(schemas_0.UpdateFunctionConfiguration$)
1116
+ .build() {
1117
+ }
1118
+
1119
+ class UpdateFunctionEventInvokeConfigCommand extends smithyClient.Command
1120
+ .classBuilder()
1121
+ .ep(commonParams)
1122
+ .m(function (Command, cs, config, o) {
1123
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1124
+ })
1125
+ .s("AWSGirApiService", "UpdateFunctionEventInvokeConfig", {})
1126
+ .n("LambdaClient", "UpdateFunctionEventInvokeConfigCommand")
1127
+ .sc(schemas_0.UpdateFunctionEventInvokeConfig$)
1128
+ .build() {
1129
+ }
1130
+
1131
+ class UpdateFunctionUrlConfigCommand extends smithyClient.Command
1132
+ .classBuilder()
1133
+ .ep(commonParams)
1134
+ .m(function (Command, cs, config, o) {
1135
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1136
+ })
1137
+ .s("AWSGirApiService", "UpdateFunctionUrlConfig", {})
1138
+ .n("LambdaClient", "UpdateFunctionUrlConfigCommand")
1139
+ .sc(schemas_0.UpdateFunctionUrlConfig$)
1140
+ .build() {
1141
+ }
1142
+
1143
+ const paginateGetDurableExecutionHistory = core.createPaginator(LambdaClient, GetDurableExecutionHistoryCommand, "Marker", "NextMarker", "MaxItems");
1144
+
1145
+ const paginateGetDurableExecutionState = core.createPaginator(LambdaClient, GetDurableExecutionStateCommand, "Marker", "NextMarker", "MaxItems");
1146
+
1147
+ const paginateListAliases = core.createPaginator(LambdaClient, ListAliasesCommand, "Marker", "NextMarker", "MaxItems");
1148
+
1149
+ const paginateListCapacityProviders = core.createPaginator(LambdaClient, ListCapacityProvidersCommand, "Marker", "NextMarker", "MaxItems");
1150
+
1151
+ const paginateListCodeSigningConfigs = core.createPaginator(LambdaClient, ListCodeSigningConfigsCommand, "Marker", "NextMarker", "MaxItems");
1152
+
1153
+ const paginateListDurableExecutionsByFunction = core.createPaginator(LambdaClient, ListDurableExecutionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
1154
+
1155
+ const paginateListEventSourceMappings = core.createPaginator(LambdaClient, ListEventSourceMappingsCommand, "Marker", "NextMarker", "MaxItems");
1156
+
1157
+ const paginateListFunctionEventInvokeConfigs = core.createPaginator(LambdaClient, ListFunctionEventInvokeConfigsCommand, "Marker", "NextMarker", "MaxItems");
1158
+
1159
+ const paginateListFunctionsByCodeSigningConfig = core.createPaginator(LambdaClient, ListFunctionsByCodeSigningConfigCommand, "Marker", "NextMarker", "MaxItems");
1160
+
1161
+ const paginateListFunctions = core.createPaginator(LambdaClient, ListFunctionsCommand, "Marker", "NextMarker", "MaxItems");
1162
+
1163
+ const paginateListFunctionUrlConfigs = core.createPaginator(LambdaClient, ListFunctionUrlConfigsCommand, "Marker", "NextMarker", "MaxItems");
1164
+
1165
+ const paginateListFunctionVersionsByCapacityProvider = core.createPaginator(LambdaClient, ListFunctionVersionsByCapacityProviderCommand, "Marker", "NextMarker", "MaxItems");
1166
+
1167
+ const paginateListLayers = core.createPaginator(LambdaClient, ListLayersCommand, "Marker", "NextMarker", "MaxItems");
1168
+
1169
+ const paginateListLayerVersions = core.createPaginator(LambdaClient, ListLayerVersionsCommand, "Marker", "NextMarker", "MaxItems");
1170
+
1171
+ const paginateListProvisionedConcurrencyConfigs = core.createPaginator(LambdaClient, ListProvisionedConcurrencyConfigsCommand, "Marker", "NextMarker", "MaxItems");
1172
+
1173
+ const paginateListVersionsByFunction = core.createPaginator(LambdaClient, ListVersionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
1174
+
1175
+ const checkState$5 = async (client, input) => {
1176
+ let reason;
1177
+ try {
1178
+ let result = await client.send(new GetFunctionConfigurationCommand(input));
1179
+ reason = result;
1180
+ try {
1181
+ const returnComparator = () => {
1182
+ return result.State;
1183
+ };
1184
+ if (returnComparator() === "Active") {
1185
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
1186
+ }
1187
+ }
1188
+ catch (e) { }
1189
+ try {
1190
+ const returnComparator = () => {
1191
+ return result.State;
1192
+ };
1193
+ if (returnComparator() === "Failed") {
1194
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
1195
+ }
1196
+ }
1197
+ catch (e) { }
1198
+ try {
1199
+ const returnComparator = () => {
1200
+ return result.State;
1201
+ };
1202
+ if (returnComparator() === "Pending") {
1203
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1204
+ }
1205
+ }
1206
+ catch (e) { }
1207
+ }
1208
+ catch (exception) {
1209
+ reason = exception;
1210
+ }
1211
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1212
+ };
1213
+ const waitForFunctionActive = async (params, input) => {
1214
+ const serviceDefaults = { minDelay: 5, maxDelay: 300 };
1215
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
1216
+ };
1217
+ const waitUntilFunctionActive = async (params, input) => {
1218
+ const serviceDefaults = { minDelay: 5, maxDelay: 300 };
1219
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
1220
+ return utilWaiter.checkExceptions(result);
1221
+ };
1222
+
1223
+ const checkState$4 = async (client, input) => {
1224
+ let reason;
1225
+ try {
1226
+ let result = await client.send(new GetFunctionCommand(input));
1227
+ reason = result;
1228
+ try {
1229
+ const returnComparator = () => {
1230
+ return result.Configuration.State;
1231
+ };
1232
+ if (returnComparator() === "Active") {
1233
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
1234
+ }
1235
+ }
1236
+ catch (e) { }
1237
+ try {
1238
+ const returnComparator = () => {
1239
+ return result.Configuration.State;
1240
+ };
1241
+ if (returnComparator() === "Failed") {
1242
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
1243
+ }
1244
+ }
1245
+ catch (e) { }
1246
+ try {
1247
+ const returnComparator = () => {
1248
+ return result.Configuration.State;
1249
+ };
1250
+ if (returnComparator() === "Pending") {
1251
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1252
+ }
1253
+ }
1254
+ catch (e) { }
1255
+ }
1256
+ catch (exception) {
1257
+ reason = exception;
1258
+ }
1259
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1260
+ };
1261
+ const waitForFunctionActiveV2 = async (params, input) => {
1262
+ const serviceDefaults = { minDelay: 1, maxDelay: 300 };
1263
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
1264
+ };
1265
+ const waitUntilFunctionActiveV2 = async (params, input) => {
1266
+ const serviceDefaults = { minDelay: 1, maxDelay: 300 };
1267
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
1268
+ return utilWaiter.checkExceptions(result);
1269
+ };
1270
+
1271
+ const checkState$3 = async (client, input) => {
1272
+ let reason;
1273
+ try {
1274
+ let result = await client.send(new GetFunctionCommand(input));
1275
+ reason = result;
1276
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
1277
+ }
1278
+ catch (exception) {
1279
+ reason = exception;
1280
+ if (exception.name && exception.name == "ResourceNotFoundException") {
1281
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1282
+ }
1283
+ }
1284
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1285
+ };
1286
+ const waitForFunctionExists = async (params, input) => {
1287
+ const serviceDefaults = { minDelay: 1, maxDelay: 20 };
1288
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
1289
+ };
1290
+ const waitUntilFunctionExists = async (params, input) => {
1291
+ const serviceDefaults = { minDelay: 1, maxDelay: 20 };
1292
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
1293
+ return utilWaiter.checkExceptions(result);
1294
+ };
1295
+
1296
+ const checkState$2 = async (client, input) => {
1297
+ let reason;
1298
+ try {
1299
+ let result = await client.send(new GetFunctionConfigurationCommand(input));
1300
+ reason = result;
1301
+ try {
1302
+ const returnComparator = () => {
1303
+ return result.LastUpdateStatus;
1304
+ };
1305
+ if (returnComparator() === "Successful") {
1306
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
1307
+ }
1308
+ }
1309
+ catch (e) { }
1310
+ try {
1311
+ const returnComparator = () => {
1312
+ return result.LastUpdateStatus;
1313
+ };
1314
+ if (returnComparator() === "Failed") {
1315
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
1316
+ }
1317
+ }
1318
+ catch (e) { }
1319
+ try {
1320
+ const returnComparator = () => {
1321
+ return result.LastUpdateStatus;
1322
+ };
1323
+ if (returnComparator() === "InProgress") {
1324
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1325
+ }
1326
+ }
1327
+ catch (e) { }
1328
+ }
1329
+ catch (exception) {
1330
+ reason = exception;
1331
+ }
1332
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1333
+ };
1334
+ const waitForFunctionUpdated = async (params, input) => {
1335
+ const serviceDefaults = { minDelay: 5, maxDelay: 300 };
1336
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
1337
+ };
1338
+ const waitUntilFunctionUpdated = async (params, input) => {
1339
+ const serviceDefaults = { minDelay: 5, maxDelay: 300 };
1340
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
1341
+ return utilWaiter.checkExceptions(result);
1342
+ };
1343
+
1344
+ const checkState$1 = async (client, input) => {
1345
+ let reason;
1346
+ try {
1347
+ let result = await client.send(new GetFunctionCommand(input));
1348
+ reason = result;
1349
+ try {
1350
+ const returnComparator = () => {
1351
+ return result.Configuration.LastUpdateStatus;
1352
+ };
1353
+ if (returnComparator() === "Successful") {
1354
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
1355
+ }
1356
+ }
1357
+ catch (e) { }
1358
+ try {
1359
+ const returnComparator = () => {
1360
+ return result.Configuration.LastUpdateStatus;
1361
+ };
1362
+ if (returnComparator() === "Failed") {
1363
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
1364
+ }
1365
+ }
1366
+ catch (e) { }
1367
+ try {
1368
+ const returnComparator = () => {
1369
+ return result.Configuration.LastUpdateStatus;
1370
+ };
1371
+ if (returnComparator() === "InProgress") {
1372
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1373
+ }
1374
+ }
1375
+ catch (e) { }
1376
+ }
1377
+ catch (exception) {
1378
+ reason = exception;
1379
+ }
1380
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1381
+ };
1382
+ const waitForFunctionUpdatedV2 = async (params, input) => {
1383
+ const serviceDefaults = { minDelay: 1, maxDelay: 300 };
1384
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
1385
+ };
1386
+ const waitUntilFunctionUpdatedV2 = async (params, input) => {
1387
+ const serviceDefaults = { minDelay: 1, maxDelay: 300 };
1388
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
1389
+ return utilWaiter.checkExceptions(result);
1390
+ };
1391
+
1392
+ const checkState = async (client, input) => {
1393
+ let reason;
1394
+ try {
1395
+ let result = await client.send(new GetFunctionConfigurationCommand(input));
1396
+ reason = result;
1397
+ try {
1398
+ const returnComparator = () => {
1399
+ return result.State;
1400
+ };
1401
+ if (returnComparator() === "Active") {
1402
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
1403
+ }
1404
+ }
1405
+ catch (e) { }
1406
+ try {
1407
+ const returnComparator = () => {
1408
+ return result.State;
1409
+ };
1410
+ if (returnComparator() === "Failed") {
1411
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
1412
+ }
1413
+ }
1414
+ catch (e) { }
1415
+ try {
1416
+ const returnComparator = () => {
1417
+ return result.State;
1418
+ };
1419
+ if (returnComparator() === "Pending") {
1420
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1421
+ }
1422
+ }
1423
+ catch (e) { }
1424
+ }
1425
+ catch (exception) {
1426
+ reason = exception;
1427
+ }
1428
+ return { state: utilWaiter.WaiterState.RETRY, reason };
1429
+ };
1430
+ const waitForPublishedVersionActive = async (params, input) => {
1431
+ const serviceDefaults = { minDelay: 5, maxDelay: 1560 };
1432
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
1433
+ };
1434
+ const waitUntilPublishedVersionActive = async (params, input) => {
1435
+ const serviceDefaults = { minDelay: 5, maxDelay: 1560 };
1436
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
1437
+ return utilWaiter.checkExceptions(result);
1438
+ };
1439
+
1440
+ const commands = {
1441
+ AddLayerVersionPermissionCommand,
1442
+ AddPermissionCommand,
1443
+ CheckpointDurableExecutionCommand,
1444
+ CreateAliasCommand,
1445
+ CreateCapacityProviderCommand,
1446
+ CreateCodeSigningConfigCommand,
1447
+ CreateEventSourceMappingCommand,
1448
+ CreateFunctionCommand,
1449
+ CreateFunctionUrlConfigCommand,
1450
+ DeleteAliasCommand,
1451
+ DeleteCapacityProviderCommand,
1452
+ DeleteCodeSigningConfigCommand,
1453
+ DeleteEventSourceMappingCommand,
1454
+ DeleteFunctionCommand,
1455
+ DeleteFunctionCodeSigningConfigCommand,
1456
+ DeleteFunctionConcurrencyCommand,
1457
+ DeleteFunctionEventInvokeConfigCommand,
1458
+ DeleteFunctionUrlConfigCommand,
1459
+ DeleteLayerVersionCommand,
1460
+ DeleteProvisionedConcurrencyConfigCommand,
1461
+ GetAccountSettingsCommand,
1462
+ GetAliasCommand,
1463
+ GetCapacityProviderCommand,
1464
+ GetCodeSigningConfigCommand,
1465
+ GetDurableExecutionCommand,
1466
+ GetDurableExecutionHistoryCommand,
1467
+ GetDurableExecutionStateCommand,
1468
+ GetEventSourceMappingCommand,
1469
+ GetFunctionCommand,
1470
+ GetFunctionCodeSigningConfigCommand,
1471
+ GetFunctionConcurrencyCommand,
1472
+ GetFunctionConfigurationCommand,
1473
+ GetFunctionEventInvokeConfigCommand,
1474
+ GetFunctionRecursionConfigCommand,
1475
+ GetFunctionScalingConfigCommand,
1476
+ GetFunctionUrlConfigCommand,
1477
+ GetLayerVersionCommand,
1478
+ GetLayerVersionByArnCommand,
1479
+ GetLayerVersionPolicyCommand,
1480
+ GetPolicyCommand,
1481
+ GetProvisionedConcurrencyConfigCommand,
1482
+ GetRuntimeManagementConfigCommand,
1483
+ InvokeCommand,
1484
+ InvokeAsyncCommand,
1485
+ InvokeWithResponseStreamCommand,
1486
+ ListAliasesCommand,
1487
+ ListCapacityProvidersCommand,
1488
+ ListCodeSigningConfigsCommand,
1489
+ ListDurableExecutionsByFunctionCommand,
1490
+ ListEventSourceMappingsCommand,
1491
+ ListFunctionEventInvokeConfigsCommand,
1492
+ ListFunctionsCommand,
1493
+ ListFunctionsByCodeSigningConfigCommand,
1494
+ ListFunctionUrlConfigsCommand,
1495
+ ListFunctionVersionsByCapacityProviderCommand,
1496
+ ListLayersCommand,
1497
+ ListLayerVersionsCommand,
1498
+ ListProvisionedConcurrencyConfigsCommand,
1499
+ ListTagsCommand,
1500
+ ListVersionsByFunctionCommand,
1501
+ PublishLayerVersionCommand,
1502
+ PublishVersionCommand,
1503
+ PutFunctionCodeSigningConfigCommand,
1504
+ PutFunctionConcurrencyCommand,
1505
+ PutFunctionEventInvokeConfigCommand,
1506
+ PutFunctionRecursionConfigCommand,
1507
+ PutFunctionScalingConfigCommand,
1508
+ PutProvisionedConcurrencyConfigCommand,
1509
+ PutRuntimeManagementConfigCommand,
1510
+ RemoveLayerVersionPermissionCommand,
1511
+ RemovePermissionCommand,
1512
+ SendDurableExecutionCallbackFailureCommand,
1513
+ SendDurableExecutionCallbackHeartbeatCommand,
1514
+ SendDurableExecutionCallbackSuccessCommand,
1515
+ StopDurableExecutionCommand,
1516
+ TagResourceCommand,
1517
+ UntagResourceCommand,
1518
+ UpdateAliasCommand,
1519
+ UpdateCapacityProviderCommand,
1520
+ UpdateCodeSigningConfigCommand,
1521
+ UpdateEventSourceMappingCommand,
1522
+ UpdateFunctionCodeCommand,
1523
+ UpdateFunctionConfigurationCommand,
1524
+ UpdateFunctionEventInvokeConfigCommand,
1525
+ UpdateFunctionUrlConfigCommand,
1526
+ };
1527
+ const paginators = {
1528
+ paginateGetDurableExecutionHistory,
1529
+ paginateGetDurableExecutionState,
1530
+ paginateListAliases,
1531
+ paginateListCapacityProviders,
1532
+ paginateListCodeSigningConfigs,
1533
+ paginateListDurableExecutionsByFunction,
1534
+ paginateListEventSourceMappings,
1535
+ paginateListFunctionEventInvokeConfigs,
1536
+ paginateListFunctions,
1537
+ paginateListFunctionsByCodeSigningConfig,
1538
+ paginateListFunctionUrlConfigs,
1539
+ paginateListFunctionVersionsByCapacityProvider,
1540
+ paginateListLayers,
1541
+ paginateListLayerVersions,
1542
+ paginateListProvisionedConcurrencyConfigs,
1543
+ paginateListVersionsByFunction,
1544
+ };
1545
+ const waiters = {
1546
+ waitUntilFunctionActiveV2,
1547
+ waitUntilFunctionExists,
1548
+ waitUntilFunctionUpdatedV2,
1549
+ waitUntilFunctionActive,
1550
+ waitUntilFunctionUpdated,
1551
+ waitUntilPublishedVersionActive,
1552
+ };
1553
+ class Lambda extends LambdaClient {
1554
+ }
1555
+ smithyClient.createAggregatedClient(commands, Lambda, { paginators, waiters });
1556
+
1557
+ const ThrottleReason = {
1558
+ CallerRateLimitExceeded: "CallerRateLimitExceeded",
1559
+ ConcurrentInvocationLimitExceeded: "ConcurrentInvocationLimitExceeded",
1560
+ ConcurrentSnapshotCreateLimitExceeded: "ConcurrentSnapshotCreateLimitExceeded",
1561
+ FunctionInvocationRateLimitExceeded: "FunctionInvocationRateLimitExceeded",
1562
+ ReservedFunctionConcurrentInvocationLimitExceeded: "ReservedFunctionConcurrentInvocationLimitExceeded",
1563
+ ReservedFunctionInvocationRateLimitExceeded: "ReservedFunctionInvocationRateLimitExceeded",
1564
+ };
1565
+ const FunctionUrlAuthType = {
1566
+ AWS_IAM: "AWS_IAM",
1567
+ NONE: "NONE",
1568
+ };
1569
+ const KafkaSchemaRegistryAuthType = {
1570
+ BASIC_AUTH: "BASIC_AUTH",
1571
+ CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH",
1572
+ SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE",
1573
+ };
1574
+ const SchemaRegistryEventRecordFormat = {
1575
+ JSON: "JSON",
1576
+ SOURCE: "SOURCE",
1577
+ };
1578
+ const KafkaSchemaValidationAttribute = {
1579
+ KEY: "KEY",
1580
+ VALUE: "VALUE",
1581
+ };
1582
+ const ApplicationLogLevel = {
1583
+ Debug: "DEBUG",
1584
+ Error: "ERROR",
1585
+ Fatal: "FATAL",
1586
+ Info: "INFO",
1587
+ Trace: "TRACE",
1588
+ Warn: "WARN",
1589
+ };
1590
+ const Architecture = {
1591
+ arm64: "arm64",
1592
+ x86_64: "x86_64",
1593
+ };
1594
+ const CapacityProviderScalingMode = {
1595
+ Auto: "Auto",
1596
+ Manual: "Manual",
1597
+ };
1598
+ const CapacityProviderPredefinedMetricType = {
1599
+ LambdaCapacityProviderAverageCPUUtilization: "LambdaCapacityProviderAverageCPUUtilization",
1600
+ };
1601
+ const CapacityProviderState = {
1602
+ Active: "Active",
1603
+ Deleting: "Deleting",
1604
+ Failed: "Failed",
1605
+ Pending: "Pending",
1606
+ };
1607
+ const State = {
1608
+ Active: "Active",
1609
+ ActiveNonInvocable: "ActiveNonInvocable",
1610
+ Deactivated: "Deactivated",
1611
+ Deactivating: "Deactivating",
1612
+ Deleting: "Deleting",
1613
+ Failed: "Failed",
1614
+ Inactive: "Inactive",
1615
+ Pending: "Pending",
1616
+ };
1617
+ const OperationAction = {
1618
+ CANCEL: "CANCEL",
1619
+ FAIL: "FAIL",
1620
+ RETRY: "RETRY",
1621
+ START: "START",
1622
+ SUCCEED: "SUCCEED",
1623
+ };
1624
+ const OperationType = {
1625
+ CALLBACK: "CALLBACK",
1626
+ CHAINED_INVOKE: "CHAINED_INVOKE",
1627
+ CONTEXT: "CONTEXT",
1628
+ EXECUTION: "EXECUTION",
1629
+ STEP: "STEP",
1630
+ WAIT: "WAIT",
1631
+ };
1632
+ const OperationStatus = {
1633
+ CANCELLED: "CANCELLED",
1634
+ FAILED: "FAILED",
1635
+ PENDING: "PENDING",
1636
+ READY: "READY",
1637
+ STARTED: "STARTED",
1638
+ STOPPED: "STOPPED",
1639
+ SUCCEEDED: "SUCCEEDED",
1640
+ TIMED_OUT: "TIMED_OUT",
1641
+ };
1642
+ const CodeSigningPolicy = {
1643
+ Enforce: "Enforce",
1644
+ Warn: "Warn",
1645
+ };
1646
+ const FullDocument = {
1647
+ Default: "Default",
1648
+ UpdateLookup: "UpdateLookup",
1649
+ };
1650
+ const FunctionResponseType = {
1651
+ ReportBatchItemFailures: "ReportBatchItemFailures",
1652
+ };
1653
+ const EventSourceMappingSystemLogLevel = {
1654
+ Debug: "DEBUG",
1655
+ Info: "INFO",
1656
+ Warn: "WARN",
1657
+ };
1658
+ const EventSourceMappingMetric = {
1659
+ ErrorCount: "ErrorCount",
1660
+ EventCount: "EventCount",
1661
+ KafkaMetrics: "KafkaMetrics",
1662
+ };
1663
+ const EndPointType = {
1664
+ KAFKA_BOOTSTRAP_SERVERS: "KAFKA_BOOTSTRAP_SERVERS",
1665
+ };
1666
+ const SourceAccessType = {
1667
+ BASIC_AUTH: "BASIC_AUTH",
1668
+ CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH",
1669
+ SASL_SCRAM_256_AUTH: "SASL_SCRAM_256_AUTH",
1670
+ SASL_SCRAM_512_AUTH: "SASL_SCRAM_512_AUTH",
1671
+ SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE",
1672
+ VIRTUAL_HOST: "VIRTUAL_HOST",
1673
+ VPC_SECURITY_GROUP: "VPC_SECURITY_GROUP",
1674
+ VPC_SUBNET: "VPC_SUBNET",
1675
+ };
1676
+ const EventSourcePosition = {
1677
+ AT_TIMESTAMP: "AT_TIMESTAMP",
1678
+ LATEST: "LATEST",
1679
+ TRIM_HORIZON: "TRIM_HORIZON",
1680
+ };
1681
+ const LogFormat = {
1682
+ Json: "JSON",
1683
+ Text: "Text",
1684
+ };
1685
+ const SystemLogLevel = {
1686
+ Debug: "DEBUG",
1687
+ Info: "INFO",
1688
+ Warn: "WARN",
1689
+ };
1690
+ const PackageType = {
1691
+ Image: "Image",
1692
+ Zip: "Zip",
1693
+ };
1694
+ const FunctionVersionLatestPublished = {
1695
+ LATEST_PUBLISHED: "LATEST_PUBLISHED",
1696
+ };
1697
+ const Runtime = {
1698
+ dotnet10: "dotnet10",
1699
+ dotnet6: "dotnet6",
1700
+ dotnet8: "dotnet8",
1701
+ dotnetcore10: "dotnetcore1.0",
1702
+ dotnetcore20: "dotnetcore2.0",
1703
+ dotnetcore21: "dotnetcore2.1",
1704
+ dotnetcore31: "dotnetcore3.1",
1705
+ go1x: "go1.x",
1706
+ java11: "java11",
1707
+ java17: "java17",
1708
+ java21: "java21",
1709
+ java25: "java25",
1710
+ java8: "java8",
1711
+ java8al2: "java8.al2",
1712
+ nodejs: "nodejs",
1713
+ nodejs10x: "nodejs10.x",
1714
+ nodejs12x: "nodejs12.x",
1715
+ nodejs14x: "nodejs14.x",
1716
+ nodejs16x: "nodejs16.x",
1717
+ nodejs18x: "nodejs18.x",
1718
+ nodejs20x: "nodejs20.x",
1719
+ nodejs22x: "nodejs22.x",
1720
+ nodejs24x: "nodejs24.x",
1721
+ nodejs43: "nodejs4.3",
1722
+ nodejs43edge: "nodejs4.3-edge",
1723
+ nodejs610: "nodejs6.10",
1724
+ nodejs810: "nodejs8.10",
1725
+ provided: "provided",
1726
+ providedal2: "provided.al2",
1727
+ providedal2023: "provided.al2023",
1728
+ python27: "python2.7",
1729
+ python310: "python3.10",
1730
+ python311: "python3.11",
1731
+ python312: "python3.12",
1732
+ python313: "python3.13",
1733
+ python314: "python3.14",
1734
+ python36: "python3.6",
1735
+ python37: "python3.7",
1736
+ python38: "python3.8",
1737
+ python39: "python3.9",
1738
+ ruby25: "ruby2.5",
1739
+ ruby27: "ruby2.7",
1740
+ ruby32: "ruby3.2",
1741
+ ruby33: "ruby3.3",
1742
+ ruby34: "ruby3.4",
1743
+ };
1744
+ const SnapStartApplyOn = {
1745
+ None: "None",
1746
+ PublishedVersions: "PublishedVersions",
1747
+ };
1748
+ const TenantIsolationMode = {
1749
+ PER_TENANT: "PER_TENANT",
1750
+ };
1751
+ const TracingMode = {
1752
+ Active: "Active",
1753
+ PassThrough: "PassThrough",
1754
+ };
1755
+ const LastUpdateStatus = {
1756
+ Failed: "Failed",
1757
+ InProgress: "InProgress",
1758
+ Successful: "Successful",
1759
+ };
1760
+ const LastUpdateStatusReasonCode = {
1761
+ CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded",
1762
+ DisabledKMSKey: "DisabledKMSKey",
1763
+ DisallowedByVpcEncryptionControl: "DisallowedByVpcEncryptionControl",
1764
+ EC2RequestLimitExceeded: "EC2RequestLimitExceeded",
1765
+ EFSIOError: "EFSIOError",
1766
+ EFSMountConnectivityError: "EFSMountConnectivityError",
1767
+ EFSMountFailure: "EFSMountFailure",
1768
+ EFSMountTimeout: "EFSMountTimeout",
1769
+ EniLimitExceeded: "EniLimitExceeded",
1770
+ FunctionError: "FunctionError",
1771
+ FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError",
1772
+ FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted",
1773
+ FunctionErrorInitTimeout: "FunctionError.InitTimeout",
1774
+ FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint",
1775
+ FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory",
1776
+ FunctionErrorPermissionDenied: "FunctionError.PermissionDenied",
1777
+ FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError",
1778
+ FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions",
1779
+ ImageAccessDenied: "ImageAccessDenied",
1780
+ ImageDeleted: "ImageDeleted",
1781
+ InsufficientCapacity: "InsufficientCapacity",
1782
+ InsufficientRolePermissions: "InsufficientRolePermissions",
1783
+ InternalError: "InternalError",
1784
+ InvalidConfiguration: "InvalidConfiguration",
1785
+ InvalidImage: "InvalidImage",
1786
+ InvalidRuntime: "InvalidRuntime",
1787
+ InvalidSecurityGroup: "InvalidSecurityGroup",
1788
+ InvalidStateKMSKey: "InvalidStateKMSKey",
1789
+ InvalidSubnet: "InvalidSubnet",
1790
+ InvalidZipFileException: "InvalidZipFileException",
1791
+ KMSKeyAccessDenied: "KMSKeyAccessDenied",
1792
+ KMSKeyNotFound: "KMSKeyNotFound",
1793
+ SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
1794
+ VcpuLimitExceeded: "VcpuLimitExceeded",
1795
+ };
1796
+ const SnapStartOptimizationStatus = {
1797
+ Off: "Off",
1798
+ On: "On",
1799
+ };
1800
+ const StateReasonCode = {
1801
+ CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded",
1802
+ Creating: "Creating",
1803
+ DisabledKMSKey: "DisabledKMSKey",
1804
+ DisallowedByVpcEncryptionControl: "DisallowedByVpcEncryptionControl",
1805
+ DrainingDurableExecutions: "DrainingDurableExecutions",
1806
+ EC2RequestLimitExceeded: "EC2RequestLimitExceeded",
1807
+ EFSIOError: "EFSIOError",
1808
+ EFSMountConnectivityError: "EFSMountConnectivityError",
1809
+ EFSMountFailure: "EFSMountFailure",
1810
+ EFSMountTimeout: "EFSMountTimeout",
1811
+ EniLimitExceeded: "EniLimitExceeded",
1812
+ FunctionError: "FunctionError",
1813
+ FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError",
1814
+ FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted",
1815
+ FunctionErrorInitTimeout: "FunctionError.InitTimeout",
1816
+ FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint",
1817
+ FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory",
1818
+ FunctionErrorPermissionDenied: "FunctionError.PermissionDenied",
1819
+ FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError",
1820
+ FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions",
1821
+ Idle: "Idle",
1822
+ ImageAccessDenied: "ImageAccessDenied",
1823
+ ImageDeleted: "ImageDeleted",
1824
+ InsufficientCapacity: "InsufficientCapacity",
1825
+ InsufficientRolePermissions: "InsufficientRolePermissions",
1826
+ InternalError: "InternalError",
1827
+ InvalidConfiguration: "InvalidConfiguration",
1828
+ InvalidImage: "InvalidImage",
1829
+ InvalidRuntime: "InvalidRuntime",
1830
+ InvalidSecurityGroup: "InvalidSecurityGroup",
1831
+ InvalidStateKMSKey: "InvalidStateKMSKey",
1832
+ InvalidSubnet: "InvalidSubnet",
1833
+ InvalidZipFileException: "InvalidZipFileException",
1834
+ KMSKeyAccessDenied: "KMSKeyAccessDenied",
1835
+ KMSKeyNotFound: "KMSKeyNotFound",
1836
+ Restoring: "Restoring",
1837
+ SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
1838
+ VcpuLimitExceeded: "VcpuLimitExceeded",
1839
+ };
1840
+ const InvokeMode = {
1841
+ BUFFERED: "BUFFERED",
1842
+ RESPONSE_STREAM: "RESPONSE_STREAM",
1843
+ };
1844
+ const RecursiveLoop = {
1845
+ Allow: "Allow",
1846
+ Terminate: "Terminate",
1847
+ };
1848
+ const UpdateRuntimeOn = {
1849
+ Auto: "Auto",
1850
+ FunctionUpdate: "FunctionUpdate",
1851
+ Manual: "Manual",
1852
+ };
1853
+ const InvocationType = {
1854
+ DryRun: "DryRun",
1855
+ Event: "Event",
1856
+ RequestResponse: "RequestResponse",
1857
+ };
1858
+ const LogType = {
1859
+ None: "None",
1860
+ Tail: "Tail",
1861
+ };
1862
+ const ResponseStreamingInvocationType = {
1863
+ DryRun: "DryRun",
1864
+ RequestResponse: "RequestResponse",
1865
+ };
1866
+ const FunctionVersion = {
1867
+ ALL: "ALL",
1868
+ };
1869
+ const ProvisionedConcurrencyStatusEnum = {
1870
+ FAILED: "FAILED",
1871
+ IN_PROGRESS: "IN_PROGRESS",
1872
+ READY: "READY",
1873
+ };
1874
+ const ExecutionStatus = {
1875
+ FAILED: "FAILED",
1876
+ RUNNING: "RUNNING",
1877
+ STOPPED: "STOPPED",
1878
+ SUCCEEDED: "SUCCEEDED",
1879
+ TIMED_OUT: "TIMED_OUT",
1880
+ };
1881
+ const EventType = {
1882
+ CallbackFailed: "CallbackFailed",
1883
+ CallbackStarted: "CallbackStarted",
1884
+ CallbackSucceeded: "CallbackSucceeded",
1885
+ CallbackTimedOut: "CallbackTimedOut",
1886
+ ChainedInvokeFailed: "ChainedInvokeFailed",
1887
+ ChainedInvokeStarted: "ChainedInvokeStarted",
1888
+ ChainedInvokeStopped: "ChainedInvokeStopped",
1889
+ ChainedInvokeSucceeded: "ChainedInvokeSucceeded",
1890
+ ChainedInvokeTimedOut: "ChainedInvokeTimedOut",
1891
+ ContextFailed: "ContextFailed",
1892
+ ContextStarted: "ContextStarted",
1893
+ ContextSucceeded: "ContextSucceeded",
1894
+ ExecutionFailed: "ExecutionFailed",
1895
+ ExecutionStarted: "ExecutionStarted",
1896
+ ExecutionStopped: "ExecutionStopped",
1897
+ ExecutionSucceeded: "ExecutionSucceeded",
1898
+ ExecutionTimedOut: "ExecutionTimedOut",
1899
+ InvocationCompleted: "InvocationCompleted",
1900
+ StepFailed: "StepFailed",
1901
+ StepStarted: "StepStarted",
1902
+ StepSucceeded: "StepSucceeded",
1903
+ WaitCancelled: "WaitCancelled",
1904
+ WaitStarted: "WaitStarted",
1905
+ WaitSucceeded: "WaitSucceeded",
1906
+ };
1907
+
1908
+ exports.$Command = smithyClient.Command;
1909
+ exports.__Client = smithyClient.Client;
1910
+ exports.LambdaServiceException = LambdaServiceException.LambdaServiceException;
1911
+ exports.AddLayerVersionPermissionCommand = AddLayerVersionPermissionCommand;
1912
+ exports.AddPermissionCommand = AddPermissionCommand;
1913
+ exports.ApplicationLogLevel = ApplicationLogLevel;
1914
+ exports.Architecture = Architecture;
1915
+ exports.CapacityProviderPredefinedMetricType = CapacityProviderPredefinedMetricType;
1916
+ exports.CapacityProviderScalingMode = CapacityProviderScalingMode;
1917
+ exports.CapacityProviderState = CapacityProviderState;
1918
+ exports.CheckpointDurableExecutionCommand = CheckpointDurableExecutionCommand;
1919
+ exports.CodeSigningPolicy = CodeSigningPolicy;
1920
+ exports.CreateAliasCommand = CreateAliasCommand;
1921
+ exports.CreateCapacityProviderCommand = CreateCapacityProviderCommand;
1922
+ exports.CreateCodeSigningConfigCommand = CreateCodeSigningConfigCommand;
1923
+ exports.CreateEventSourceMappingCommand = CreateEventSourceMappingCommand;
1924
+ exports.CreateFunctionCommand = CreateFunctionCommand;
1925
+ exports.CreateFunctionUrlConfigCommand = CreateFunctionUrlConfigCommand;
1926
+ exports.DeleteAliasCommand = DeleteAliasCommand;
1927
+ exports.DeleteCapacityProviderCommand = DeleteCapacityProviderCommand;
1928
+ exports.DeleteCodeSigningConfigCommand = DeleteCodeSigningConfigCommand;
1929
+ exports.DeleteEventSourceMappingCommand = DeleteEventSourceMappingCommand;
1930
+ exports.DeleteFunctionCodeSigningConfigCommand = DeleteFunctionCodeSigningConfigCommand;
1931
+ exports.DeleteFunctionCommand = DeleteFunctionCommand;
1932
+ exports.DeleteFunctionConcurrencyCommand = DeleteFunctionConcurrencyCommand;
1933
+ exports.DeleteFunctionEventInvokeConfigCommand = DeleteFunctionEventInvokeConfigCommand;
1934
+ exports.DeleteFunctionUrlConfigCommand = DeleteFunctionUrlConfigCommand;
1935
+ exports.DeleteLayerVersionCommand = DeleteLayerVersionCommand;
1936
+ exports.DeleteProvisionedConcurrencyConfigCommand = DeleteProvisionedConcurrencyConfigCommand;
1937
+ exports.EndPointType = EndPointType;
1938
+ exports.EventSourceMappingMetric = EventSourceMappingMetric;
1939
+ exports.EventSourceMappingSystemLogLevel = EventSourceMappingSystemLogLevel;
1940
+ exports.EventSourcePosition = EventSourcePosition;
1941
+ exports.EventType = EventType;
1942
+ exports.ExecutionStatus = ExecutionStatus;
1943
+ exports.FullDocument = FullDocument;
1944
+ exports.FunctionResponseType = FunctionResponseType;
1945
+ exports.FunctionUrlAuthType = FunctionUrlAuthType;
1946
+ exports.FunctionVersion = FunctionVersion;
1947
+ exports.FunctionVersionLatestPublished = FunctionVersionLatestPublished;
1948
+ exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
1949
+ exports.GetAliasCommand = GetAliasCommand;
1950
+ exports.GetCapacityProviderCommand = GetCapacityProviderCommand;
1951
+ exports.GetCodeSigningConfigCommand = GetCodeSigningConfigCommand;
1952
+ exports.GetDurableExecutionCommand = GetDurableExecutionCommand;
1953
+ exports.GetDurableExecutionHistoryCommand = GetDurableExecutionHistoryCommand;
1954
+ exports.GetDurableExecutionStateCommand = GetDurableExecutionStateCommand;
1955
+ exports.GetEventSourceMappingCommand = GetEventSourceMappingCommand;
1956
+ exports.GetFunctionCodeSigningConfigCommand = GetFunctionCodeSigningConfigCommand;
1957
+ exports.GetFunctionCommand = GetFunctionCommand;
1958
+ exports.GetFunctionConcurrencyCommand = GetFunctionConcurrencyCommand;
1959
+ exports.GetFunctionConfigurationCommand = GetFunctionConfigurationCommand;
1960
+ exports.GetFunctionEventInvokeConfigCommand = GetFunctionEventInvokeConfigCommand;
1961
+ exports.GetFunctionRecursionConfigCommand = GetFunctionRecursionConfigCommand;
1962
+ exports.GetFunctionScalingConfigCommand = GetFunctionScalingConfigCommand;
1963
+ exports.GetFunctionUrlConfigCommand = GetFunctionUrlConfigCommand;
1964
+ exports.GetLayerVersionByArnCommand = GetLayerVersionByArnCommand;
1965
+ exports.GetLayerVersionCommand = GetLayerVersionCommand;
1966
+ exports.GetLayerVersionPolicyCommand = GetLayerVersionPolicyCommand;
1967
+ exports.GetPolicyCommand = GetPolicyCommand;
1968
+ exports.GetProvisionedConcurrencyConfigCommand = GetProvisionedConcurrencyConfigCommand;
1969
+ exports.GetRuntimeManagementConfigCommand = GetRuntimeManagementConfigCommand;
1970
+ exports.InvocationType = InvocationType;
1971
+ exports.InvokeAsyncCommand = InvokeAsyncCommand;
1972
+ exports.InvokeCommand = InvokeCommand;
1973
+ exports.InvokeMode = InvokeMode;
1974
+ exports.InvokeWithResponseStreamCommand = InvokeWithResponseStreamCommand;
1975
+ exports.KafkaSchemaRegistryAuthType = KafkaSchemaRegistryAuthType;
1976
+ exports.KafkaSchemaValidationAttribute = KafkaSchemaValidationAttribute;
1977
+ exports.Lambda = Lambda;
1978
+ exports.LambdaClient = LambdaClient;
1979
+ exports.LastUpdateStatus = LastUpdateStatus;
1980
+ exports.LastUpdateStatusReasonCode = LastUpdateStatusReasonCode;
1981
+ exports.ListAliasesCommand = ListAliasesCommand;
1982
+ exports.ListCapacityProvidersCommand = ListCapacityProvidersCommand;
1983
+ exports.ListCodeSigningConfigsCommand = ListCodeSigningConfigsCommand;
1984
+ exports.ListDurableExecutionsByFunctionCommand = ListDurableExecutionsByFunctionCommand;
1985
+ exports.ListEventSourceMappingsCommand = ListEventSourceMappingsCommand;
1986
+ exports.ListFunctionEventInvokeConfigsCommand = ListFunctionEventInvokeConfigsCommand;
1987
+ exports.ListFunctionUrlConfigsCommand = ListFunctionUrlConfigsCommand;
1988
+ exports.ListFunctionVersionsByCapacityProviderCommand = ListFunctionVersionsByCapacityProviderCommand;
1989
+ exports.ListFunctionsByCodeSigningConfigCommand = ListFunctionsByCodeSigningConfigCommand;
1990
+ exports.ListFunctionsCommand = ListFunctionsCommand;
1991
+ exports.ListLayerVersionsCommand = ListLayerVersionsCommand;
1992
+ exports.ListLayersCommand = ListLayersCommand;
1993
+ exports.ListProvisionedConcurrencyConfigsCommand = ListProvisionedConcurrencyConfigsCommand;
1994
+ exports.ListTagsCommand = ListTagsCommand;
1995
+ exports.ListVersionsByFunctionCommand = ListVersionsByFunctionCommand;
1996
+ exports.LogFormat = LogFormat;
1997
+ exports.LogType = LogType;
1998
+ exports.OperationAction = OperationAction;
1999
+ exports.OperationStatus = OperationStatus;
2000
+ exports.OperationType = OperationType;
2001
+ exports.PackageType = PackageType;
2002
+ exports.ProvisionedConcurrencyStatusEnum = ProvisionedConcurrencyStatusEnum;
2003
+ exports.PublishLayerVersionCommand = PublishLayerVersionCommand;
2004
+ exports.PublishVersionCommand = PublishVersionCommand;
2005
+ exports.PutFunctionCodeSigningConfigCommand = PutFunctionCodeSigningConfigCommand;
2006
+ exports.PutFunctionConcurrencyCommand = PutFunctionConcurrencyCommand;
2007
+ exports.PutFunctionEventInvokeConfigCommand = PutFunctionEventInvokeConfigCommand;
2008
+ exports.PutFunctionRecursionConfigCommand = PutFunctionRecursionConfigCommand;
2009
+ exports.PutFunctionScalingConfigCommand = PutFunctionScalingConfigCommand;
2010
+ exports.PutProvisionedConcurrencyConfigCommand = PutProvisionedConcurrencyConfigCommand;
2011
+ exports.PutRuntimeManagementConfigCommand = PutRuntimeManagementConfigCommand;
2012
+ exports.RecursiveLoop = RecursiveLoop;
2013
+ exports.RemoveLayerVersionPermissionCommand = RemoveLayerVersionPermissionCommand;
2014
+ exports.RemovePermissionCommand = RemovePermissionCommand;
2015
+ exports.ResponseStreamingInvocationType = ResponseStreamingInvocationType;
2016
+ exports.Runtime = Runtime;
2017
+ exports.SchemaRegistryEventRecordFormat = SchemaRegistryEventRecordFormat;
2018
+ exports.SendDurableExecutionCallbackFailureCommand = SendDurableExecutionCallbackFailureCommand;
2019
+ exports.SendDurableExecutionCallbackHeartbeatCommand = SendDurableExecutionCallbackHeartbeatCommand;
2020
+ exports.SendDurableExecutionCallbackSuccessCommand = SendDurableExecutionCallbackSuccessCommand;
2021
+ exports.SnapStartApplyOn = SnapStartApplyOn;
2022
+ exports.SnapStartOptimizationStatus = SnapStartOptimizationStatus;
2023
+ exports.SourceAccessType = SourceAccessType;
2024
+ exports.State = State;
2025
+ exports.StateReasonCode = StateReasonCode;
2026
+ exports.StopDurableExecutionCommand = StopDurableExecutionCommand;
2027
+ exports.SystemLogLevel = SystemLogLevel;
2028
+ exports.TagResourceCommand = TagResourceCommand;
2029
+ exports.TenantIsolationMode = TenantIsolationMode;
2030
+ exports.ThrottleReason = ThrottleReason;
2031
+ exports.TracingMode = TracingMode;
2032
+ exports.UntagResourceCommand = UntagResourceCommand;
2033
+ exports.UpdateAliasCommand = UpdateAliasCommand;
2034
+ exports.UpdateCapacityProviderCommand = UpdateCapacityProviderCommand;
2035
+ exports.UpdateCodeSigningConfigCommand = UpdateCodeSigningConfigCommand;
2036
+ exports.UpdateEventSourceMappingCommand = UpdateEventSourceMappingCommand;
2037
+ exports.UpdateFunctionCodeCommand = UpdateFunctionCodeCommand;
2038
+ exports.UpdateFunctionConfigurationCommand = UpdateFunctionConfigurationCommand;
2039
+ exports.UpdateFunctionEventInvokeConfigCommand = UpdateFunctionEventInvokeConfigCommand;
2040
+ exports.UpdateFunctionUrlConfigCommand = UpdateFunctionUrlConfigCommand;
2041
+ exports.UpdateRuntimeOn = UpdateRuntimeOn;
2042
+ exports.paginateGetDurableExecutionHistory = paginateGetDurableExecutionHistory;
2043
+ exports.paginateGetDurableExecutionState = paginateGetDurableExecutionState;
2044
+ exports.paginateListAliases = paginateListAliases;
2045
+ exports.paginateListCapacityProviders = paginateListCapacityProviders;
2046
+ exports.paginateListCodeSigningConfigs = paginateListCodeSigningConfigs;
2047
+ exports.paginateListDurableExecutionsByFunction = paginateListDurableExecutionsByFunction;
2048
+ exports.paginateListEventSourceMappings = paginateListEventSourceMappings;
2049
+ exports.paginateListFunctionEventInvokeConfigs = paginateListFunctionEventInvokeConfigs;
2050
+ exports.paginateListFunctionUrlConfigs = paginateListFunctionUrlConfigs;
2051
+ exports.paginateListFunctionVersionsByCapacityProvider = paginateListFunctionVersionsByCapacityProvider;
2052
+ exports.paginateListFunctions = paginateListFunctions;
2053
+ exports.paginateListFunctionsByCodeSigningConfig = paginateListFunctionsByCodeSigningConfig;
2054
+ exports.paginateListLayerVersions = paginateListLayerVersions;
2055
+ exports.paginateListLayers = paginateListLayers;
2056
+ exports.paginateListProvisionedConcurrencyConfigs = paginateListProvisionedConcurrencyConfigs;
2057
+ exports.paginateListVersionsByFunction = paginateListVersionsByFunction;
2058
+ exports.waitForFunctionActive = waitForFunctionActive;
2059
+ exports.waitForFunctionActiveV2 = waitForFunctionActiveV2;
2060
+ exports.waitForFunctionExists = waitForFunctionExists;
2061
+ exports.waitForFunctionUpdated = waitForFunctionUpdated;
2062
+ exports.waitForFunctionUpdatedV2 = waitForFunctionUpdatedV2;
2063
+ exports.waitForPublishedVersionActive = waitForPublishedVersionActive;
2064
+ exports.waitUntilFunctionActive = waitUntilFunctionActive;
2065
+ exports.waitUntilFunctionActiveV2 = waitUntilFunctionActiveV2;
2066
+ exports.waitUntilFunctionExists = waitUntilFunctionExists;
2067
+ exports.waitUntilFunctionUpdated = waitUntilFunctionUpdated;
2068
+ exports.waitUntilFunctionUpdatedV2 = waitUntilFunctionUpdatedV2;
2069
+ exports.waitUntilPublishedVersionActive = waitUntilPublishedVersionActive;
2070
+ Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
2071
+ !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
2072
+ Object.defineProperty(exports, '__proto__', {
2073
+ enumerable: true,
2074
+ value: schemas_0['__proto__']
2075
+ });
2076
+
2077
+ Object.keys(schemas_0).forEach(function (k) {
2078
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
2079
+ });
2080
+ Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
2081
+ !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
2082
+ Object.defineProperty(exports, '__proto__', {
2083
+ enumerable: true,
2084
+ value: errors['__proto__']
2085
+ });
2086
+
2087
+ Object.keys(errors).forEach(function (k) {
2088
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
2089
+ });