@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,2670 @@
1
+ const _A = "Action";
2
+ const _AA = "AliasArn";
3
+ const _AC = "AliasConfiguration";
4
+ const _ACc = "AccessConfigs";
5
+ const _ACl = "AllowCredentials";
6
+ const _AFSC = "AppliedFunctionScalingConfig";
7
+ const _AH = "AllowHeaders";
8
+ const _AIT = "AllowedInstanceTypes";
9
+ const _AL = "AccountLimit";
10
+ const _ALL = "ApplicationLogLevel";
11
+ const _ALVP = "AddLayerVersionPermission";
12
+ const _ALVPR = "AddLayerVersionPermissionRequest";
13
+ const _ALVPRd = "AddLayerVersionPermissionResponse";
14
+ const _ALl = "AliasList";
15
+ const _AM = "AllowMethods";
16
+ const _AMKESC = "AmazonManagedKafkaEventSourceConfig";
17
+ const _AO = "AllowOrigins";
18
+ const _AOp = "ApplyOn";
19
+ const _AP = "AllowedPublishers";
20
+ const _APCE = "AvailableProvisionedConcurrentExecutions";
21
+ const _APCEl = "AllocatedProvisionedConcurrentExecutions";
22
+ const _APR = "AddPermissionRequest";
23
+ const _APRd = "AddPermissionResponse";
24
+ const _APd = "AddPermission";
25
+ const _ARC = "AliasRoutingConfiguration";
26
+ const _AT = "AuthType";
27
+ const _AU = "AccountUsage";
28
+ const _AVW = "AdditionalVersionWeights";
29
+ const _Al = "Aliases";
30
+ const _Ar = "Architectures";
31
+ const _Arn = "Arn";
32
+ const _At = "Attribute";
33
+ const _Att = "Attempt";
34
+ const _B = "Blob";
35
+ const _BBOFE = "BisectBatchOnFunctionError";
36
+ const _BOP = "BinaryOperationPayload";
37
+ const _BS = "BlobStream";
38
+ const _BSa = "BatchSize";
39
+ const _C = "Concurrency";
40
+ const _CA = "CompatibleArchitectures";
41
+ const _CAR = "CreateAliasRequest";
42
+ const _CAo = "CompatibleArchitecture";
43
+ const _CAr = "CreateAlias";
44
+ const _CAu = "CurrentAttempt";
45
+ const _CC = "ClientContext";
46
+ const _CCP = "CreateCapacityProvider";
47
+ const _CCPR = "CreateCapacityProviderRequest";
48
+ const _CCPRr = "CreateCapacityProviderResponse";
49
+ const _CCSC = "CreateCodeSigningConfig";
50
+ const _CCSCR = "CreateCodeSigningConfigRequest";
51
+ const _CCSCRr = "CreateCodeSigningConfigResponse";
52
+ const _CD = "CallbackDetails";
53
+ const _CDE = "CheckpointDurableExecution";
54
+ const _CDER = "CheckpointDurableExecutionRequest";
55
+ const _CDERh = "CheckpointDurableExecutionResponse";
56
+ const _CDo = "ContextDetails";
57
+ const _CDr = "CreatedDate";
58
+ const _CE = "ConcurrentExecutions";
59
+ const _CESM = "CreateEventSourceMapping";
60
+ const _CESMR = "CreateEventSourceMappingRequest";
61
+ const _CF = "CreateFunction";
62
+ const _CFD = "CallbackFailedDetails";
63
+ const _CFDo = "ContextFailedDetails";
64
+ const _CFR = "CreateFunctionRequest";
65
+ const _CFUC = "CreateFunctionUrlConfig";
66
+ const _CFUCR = "CreateFunctionUrlConfigRequest";
67
+ const _CFUCRr = "CreateFunctionUrlConfigResponse";
68
+ const _CGI = "ConsumerGroupId";
69
+ const _CI = "CallbackId";
70
+ const _CID = "ChainedInvokeDetails";
71
+ const _CIFD = "ChainedInvokeFailedDetails";
72
+ const _CIO = "ChainedInvokeOptions";
73
+ const _CISD = "ChainedInvokeStartedDetails";
74
+ const _CISDh = "ChainedInvokeStoppedDetails";
75
+ const _CISDha = "ChainedInvokeSucceededDetails";
76
+ const _CITOD = "ChainedInvokeTimedOutDetails";
77
+ const _CN = "CollectionName";
78
+ const _CO = "CallbackOptions";
79
+ const _COo = "ContextOptions";
80
+ const _CP = "CapacityProvider";
81
+ const _CPA = "CapacityProviderArn";
82
+ const _CPC = "CapacityProviderConfig";
83
+ const _CPL = "CapacityProvidersList";
84
+ const _CPLEE = "CapacityProviderLimitExceededException";
85
+ const _CPN = "CapacityProviderName";
86
+ const _CPORA = "CapacityProviderOperatorRoleArn";
87
+ const _CPPC = "CapacityProviderPermissionsConfig";
88
+ const _CPSC = "CapacityProviderScalingConfig";
89
+ const _CPSPL = "CapacityProviderScalingPoliciesList";
90
+ const _CPVC = "CapacityProviderVpcConfig";
91
+ const _CPa = "CapacityProviders";
92
+ const _CR = "CompatibleRuntimes";
93
+ const _CRo = "CompatibleRuntime";
94
+ const _CS = "CodeSize";
95
+ const _CSC = "CodeSigningConfig";
96
+ const _CSCA = "CodeSigningConfigArn";
97
+ const _CSCI = "CodeSigningConfigId";
98
+ const _CSCL = "CodeSigningConfigList";
99
+ const _CSCNFE = "CodeSigningConfigNotFoundException";
100
+ const _CSCo = "CodeSigningConfigs";
101
+ const _CSD = "CallbackStartedDetails";
102
+ const _CSDa = "CallbackSucceededDetails";
103
+ const _CSDo = "ContextStartedDetails";
104
+ const _CSDon = "ContextSucceededDetails";
105
+ const _CSEE = "CodeStorageExceededException";
106
+ const _CSP = "CodeSigningPolicies";
107
+ const _CSU = "CodeSizeUnzipped";
108
+ const _CSZ = "CodeSizeZipped";
109
+ const _CSo = "CodeSha256";
110
+ const _CSon = "ConfigSha256";
111
+ const _CT = "CheckpointToken";
112
+ const _CTE = "CallbackTimeoutException";
113
+ const _CTOD = "CallbackTimedOutDetails";
114
+ const _CT_ = "Content-Type";
115
+ const _CTl = "ClientToken";
116
+ const _CTr = "CreationTime";
117
+ const _CUES = "CheckpointUpdatedExecutionState";
118
+ const _CVFE = "CodeVerificationFailedException";
119
+ const _Co = "Cors";
120
+ const _Cod = "Code";
121
+ const _Com = "Command";
122
+ const _Con = "Configuration";
123
+ const _Cont = "Content";
124
+ const _D = "Description";
125
+ const _DA = "DeleteAlias";
126
+ const _DAR = "DeleteAliasRequest";
127
+ const _DC = "DestinationConfig";
128
+ const _DCP = "DeleteCapacityProvider";
129
+ const _DCPR = "DeleteCapacityProviderRequest";
130
+ const _DCPRe = "DeleteCapacityProviderResponse";
131
+ const _DCSC = "DeleteCodeSigningConfig";
132
+ const _DCSCR = "DeleteCodeSigningConfigRequest";
133
+ const _DCSCRe = "DeleteCodeSigningConfigResponse";
134
+ const _DCu = "DurableConfig";
135
+ const _DDBESC = "DocumentDBEventSourceConfig";
136
+ const _DE = "DurableExecutions";
137
+ const _DEA = "DurableExecutionArn";
138
+ const _DEASE = "DurableExecutionAlreadyStartedException";
139
+ const _DEN = "DurableExecutionName";
140
+ const _DESM = "DeleteEventSourceMapping";
141
+ const _DESMR = "DeleteEventSourceMappingRequest";
142
+ const _DF = "DeleteFunction";
143
+ const _DFC = "DeleteFunctionConcurrency";
144
+ const _DFCR = "DeleteFunctionConcurrencyRequest";
145
+ const _DFCSC = "DeleteFunctionCodeSigningConfig";
146
+ const _DFCSCR = "DeleteFunctionCodeSigningConfigRequest";
147
+ const _DFEIC = "DeleteFunctionEventInvokeConfig";
148
+ const _DFEICR = "DeleteFunctionEventInvokeConfigRequest";
149
+ const _DFR = "DeleteFunctionRequest";
150
+ const _DFRe = "DeleteFunctionResponse";
151
+ const _DFUC = "DeleteFunctionUrlConfig";
152
+ const _DFUCR = "DeleteFunctionUrlConfigRequest";
153
+ const _DLC = "DeadLetterConfig";
154
+ const _DLV = "DeleteLayerVersion";
155
+ const _DLVR = "DeleteLayerVersionRequest";
156
+ const _DN = "DatabaseName";
157
+ const _DPCC = "DeleteProvisionedConcurrencyConfig";
158
+ const _DPCCR = "DeleteProvisionedConcurrencyConfigRequest";
159
+ const _DR = "DryRun";
160
+ const _De = "Destination";
161
+ const _Du = "Duration";
162
+ const _E = "Error";
163
+ const _EC = "ErrorCode";
164
+ const _ECADE = "EC2AccessDeniedException";
165
+ const _ECEC = "EC2ErrorCode";
166
+ const _ECTE = "EC2ThrottledException";
167
+ const _ECUE = "EC2UnexpectedException";
168
+ const _ED = "ErrorData";
169
+ const _EDr = "ErrorDetails";
170
+ const _EDx = "ExecutionDetails";
171
+ const _EE = "EnvironmentError";
172
+ const _EEMGBPVC = "ExecutionEnvironmentMemoryGiBPerVCpu";
173
+ const _EEv = "EventError";
174
+ const _EFD = "ExecutionFailedDetails";
175
+ const _EFSIOE = "EFSIOException";
176
+ const _EFSMCE = "EFSMountConnectivityException";
177
+ const _EFSMFE = "EFSMountFailureException";
178
+ const _EFSMTE = "EFSMountTimeoutException";
179
+ const _EH = "ExposeHeaders";
180
+ const _EI = "EventId";
181
+ const _EIT = "ExcludedInstanceTypes";
182
+ const _EIv = "EventInput";
183
+ const _EM = "ErrorMessage";
184
+ const _ENILRE = "ENILimitReachedException";
185
+ const _EO = "ErrorObject";
186
+ const _EP = "EntryPoint";
187
+ const _ER = "EnvironmentResponse";
188
+ const _ERF = "EventRecordFormat";
189
+ const _ERv = "EventResult";
190
+ const _ES = "EphemeralStorage";
191
+ const _ESA = "EventSourceArn";
192
+ const _ESD = "ExecutionStartedDetails";
193
+ const _ESDx = "ExecutionSucceededDetails";
194
+ const _ESDxe = "ExecutionStoppedDetails";
195
+ const _ESM = "EventSourceMappings";
196
+ const _ESMA = "EventSourceMappingArn";
197
+ const _ESMC = "EventSourceMappingConfiguration";
198
+ const _ESML = "EventSourceMappingsList";
199
+ const _ESMLC = "EventSourceMappingLoggingConfig";
200
+ const _ESMMC = "EventSourceMappingMetricsConfig";
201
+ const _EST = "EventSourceToken";
202
+ const _ESv = "EventStream";
203
+ const _ET = "ErrorType";
204
+ const _ETOD = "ExecutionTimedOutDetails";
205
+ const _ETn = "EndTimestamp";
206
+ const _ETv = "EventType";
207
+ const _ETve = "EventTimestamp";
208
+ const _ETx = "ExecutionTimeout";
209
+ const _EV = "ExecutedVersion";
210
+ const _EVN = "EnvironmentVariableName";
211
+ const _EVV = "EnvironmentVariableValue";
212
+ const _EVn = "EnvironmentVariables";
213
+ const _En = "Enabled";
214
+ const _End = "Endpoints";
215
+ const _Env = "Environment";
216
+ const _Ev = "Event";
217
+ const _Eve = "Events";
218
+ const _Ex = "Execution";
219
+ const _F = "Filter";
220
+ const _FA = "FunctionArn";
221
+ const _FAu = "FunctionArns";
222
+ const _FC = "FunctionCount";
223
+ const _FCE = "FilterCriteriaError";
224
+ const _FCL = "FunctionCodeLocation";
225
+ const _FCi = "FilterCriteria";
226
+ const _FCu = "FunctionCode";
227
+ const _FCun = "FunctionConfiguration";
228
+ const _FD = "FullDocument";
229
+ const _FE = "FunctionError";
230
+ const _FEIC = "FunctionEventInvokeConfig";
231
+ const _FEICL = "FunctionEventInvokeConfigList";
232
+ const _FEICu = "FunctionEventInvokeConfigs";
233
+ const _FL = "FilterList";
234
+ const _FLu = "FunctionList";
235
+ const _FN = "FunctionName";
236
+ const _FRT = "FunctionResponseTypes";
237
+ const _FS = "FunctionState";
238
+ const _FSC = "FileSystemConfigs";
239
+ const _FSCL = "FileSystemConfigList";
240
+ const _FSCi = "FileSystemConfig";
241
+ const _FSCu = "FunctionScalingConfig";
242
+ const _FU = "FunctionUrl";
243
+ const _FUAT = "FunctionUrlAuthType";
244
+ const _FUC = "FunctionUrlConfig";
245
+ const _FUCL = "FunctionUrlConfigList";
246
+ const _FUCu = "FunctionUrlConfigs";
247
+ const _FV = "FunctionVersion";
248
+ const _FVBCPL = "FunctionVersionsByCapacityProviderList";
249
+ const _FVBCPLI = "FunctionVersionsByCapacityProviderListItem";
250
+ const _FVPCPLEE = "FunctionVersionsPerCapacityProviderLimitExceededException";
251
+ const _FVu = "FunctionVersions";
252
+ const _Fi = "Filters";
253
+ const _Fu = "Functions";
254
+ const _GA = "GetAlias";
255
+ const _GAR = "GetAliasRequest";
256
+ const _GAS = "GetAccountSettings";
257
+ const _GASR = "GetAccountSettingsRequest";
258
+ const _GASRe = "GetAccountSettingsResponse";
259
+ const _GCP = "GetCapacityProvider";
260
+ const _GCPR = "GetCapacityProviderRequest";
261
+ const _GCPRe = "GetCapacityProviderResponse";
262
+ const _GCSC = "GetCodeSigningConfig";
263
+ const _GCSCR = "GetCodeSigningConfigRequest";
264
+ const _GCSCRe = "GetCodeSigningConfigResponse";
265
+ const _GDE = "GetDurableExecution";
266
+ const _GDEH = "GetDurableExecutionHistory";
267
+ const _GDEHR = "GetDurableExecutionHistoryRequest";
268
+ const _GDEHRe = "GetDurableExecutionHistoryResponse";
269
+ const _GDER = "GetDurableExecutionRequest";
270
+ const _GDERe = "GetDurableExecutionResponse";
271
+ const _GDES = "GetDurableExecutionState";
272
+ const _GDESR = "GetDurableExecutionStateRequest";
273
+ const _GDESRe = "GetDurableExecutionStateResponse";
274
+ const _GESM = "GetEventSourceMapping";
275
+ const _GESMR = "GetEventSourceMappingRequest";
276
+ const _GF = "GetFunction";
277
+ const _GFC = "GetFunctionConcurrency";
278
+ const _GFCR = "GetFunctionConcurrencyRequest";
279
+ const _GFCRe = "GetFunctionConcurrencyResponse";
280
+ const _GFCRet = "GetFunctionConfigurationRequest";
281
+ const _GFCSC = "GetFunctionCodeSigningConfig";
282
+ const _GFCSCR = "GetFunctionCodeSigningConfigRequest";
283
+ const _GFCSCRe = "GetFunctionCodeSigningConfigResponse";
284
+ const _GFCe = "GetFunctionConfiguration";
285
+ const _GFEIC = "GetFunctionEventInvokeConfig";
286
+ const _GFEICR = "GetFunctionEventInvokeConfigRequest";
287
+ const _GFR = "GetFunctionRequest";
288
+ const _GFRC = "GetFunctionRecursionConfig";
289
+ const _GFRCR = "GetFunctionRecursionConfigRequest";
290
+ const _GFRCRe = "GetFunctionRecursionConfigResponse";
291
+ const _GFRe = "GetFunctionResponse";
292
+ const _GFSC = "GetFunctionScalingConfig";
293
+ const _GFSCR = "GetFunctionScalingConfigRequest";
294
+ const _GFSCRe = "GetFunctionScalingConfigResponse";
295
+ const _GFUC = "GetFunctionUrlConfig";
296
+ const _GFUCR = "GetFunctionUrlConfigRequest";
297
+ const _GFUCRe = "GetFunctionUrlConfigResponse";
298
+ const _GLV = "GetLayerVersion";
299
+ const _GLVBA = "GetLayerVersionByArn";
300
+ const _GLVBAR = "GetLayerVersionByArnRequest";
301
+ const _GLVP = "GetLayerVersionPolicy";
302
+ const _GLVPR = "GetLayerVersionPolicyRequest";
303
+ const _GLVPRe = "GetLayerVersionPolicyResponse";
304
+ const _GLVR = "GetLayerVersionRequest";
305
+ const _GLVRe = "GetLayerVersionResponse";
306
+ const _GP = "GetPolicy";
307
+ const _GPCC = "GetProvisionedConcurrencyConfig";
308
+ const _GPCCR = "GetProvisionedConcurrencyConfigRequest";
309
+ const _GPCCRe = "GetProvisionedConcurrencyConfigResponse";
310
+ const _GPR = "GetPolicyRequest";
311
+ const _GPRe = "GetPolicyResponse";
312
+ const _GRMC = "GetRuntimeManagementConfig";
313
+ const _GRMCR = "GetRuntimeManagementConfigRequest";
314
+ const _GRMCRe = "GetRuntimeManagementConfigResponse";
315
+ const _H = "Handler";
316
+ const _HT = "HeartbeatTimeout";
317
+ const _HTS = "HeartbeatTimeoutSeconds";
318
+ const _I = "Input";
319
+ const _IA = "InvokeArgs";
320
+ const _IAFDS = "Ipv6AllowedForDualStack";
321
+ const _IAR = "InvokeAsyncRequest";
322
+ const _IARn = "InvokeAsyncResponse";
323
+ const _IAn = "InvokeAsync";
324
+ const _IC = "ImageConfig";
325
+ const _ICD = "InvocationCompletedDetails";
326
+ const _ICE = "ImageConfigError";
327
+ const _ICR = "ImageConfigResponse";
328
+ const _ICSE = "InvalidCodeSignatureException";
329
+ const _ICn = "InvokeComplete";
330
+ const _IED = "IncludeExecutionData";
331
+ const _IM = "InvokeMode";
332
+ const _IP = "InputPayload";
333
+ const _IPVE = "InvalidParameterValueException";
334
+ const _IR = "InstanceRequirements";
335
+ const _IRCE = "InvalidRequestContentException";
336
+ const _IRE = "InvalidRuntimeException";
337
+ const _IRSU = "InvokeResponseStreamUpdate";
338
+ const _IRn = "InvocationRequest";
339
+ const _IRnv = "InvocationResponse";
340
+ const _ISGIDE = "InvalidSecurityGroupIDException";
341
+ const _ISIDE = "InvalidSubnetIDException";
342
+ const _IT = "InvocationType";
343
+ const _IU = "ImageUri";
344
+ const _IVFU = "InvokedViaFunctionUrl";
345
+ const _IWRS = "InvokeWithResponseStream";
346
+ const _IWRSCE = "InvokeWithResponseStreamCompleteEvent";
347
+ const _IWRSR = "InvokeWithResponseStreamRequest";
348
+ const _IWRSRE = "InvokeWithResponseStreamResponseEvent";
349
+ const _IWRSRn = "InvokeWithResponseStreamResponse";
350
+ const _IZFE = "InvalidZipFileException";
351
+ const _Id = "Id";
352
+ const _In = "Invoke";
353
+ const _KKA = "KmsKeyArn";
354
+ const _KMSADE = "KMSAccessDeniedException";
355
+ const _KMSDE = "KMSDisabledException";
356
+ const _KMSISE = "KMSInvalidStateException";
357
+ const _KMSKA = "KMSKeyArn";
358
+ const _KMSNFE = "KMSNotFoundException";
359
+ const _KSRAC = "KafkaSchemaRegistryAccessConfig";
360
+ const _KSRACL = "KafkaSchemaRegistryAccessConfigList";
361
+ const _KSRC = "KafkaSchemaRegistryConfig";
362
+ const _KSVC = "KafkaSchemaValidationConfig";
363
+ const _KSVCL = "KafkaSchemaValidationConfigList";
364
+ const _L = "Layers";
365
+ const _LA = "LayerArn";
366
+ const _LAR = "ListAliasesRequest";
367
+ const _LARi = "ListAliasesResponse";
368
+ const _LAi = "ListAliases";
369
+ const _LC = "LoggingConfig";
370
+ const _LCP = "ListCapacityProviders";
371
+ const _LCPR = "ListCapacityProvidersRequest";
372
+ const _LCPRi = "ListCapacityProvidersResponse";
373
+ const _LCSC = "ListCodeSigningConfigs";
374
+ const _LCSCR = "ListCodeSigningConfigsRequest";
375
+ const _LCSCRi = "ListCodeSigningConfigsResponse";
376
+ const _LDEBF = "ListDurableExecutionsByFunction";
377
+ const _LDEBFR = "ListDurableExecutionsByFunctionRequest";
378
+ const _LDEBFRi = "ListDurableExecutionsByFunctionResponse";
379
+ const _LESM = "ListEventSourceMappings";
380
+ const _LESMR = "ListEventSourceMappingsRequest";
381
+ const _LESMRi = "ListEventSourceMappingsResponse";
382
+ const _LF = "LogFormat";
383
+ const _LFBCSC = "ListFunctionsByCodeSigningConfig";
384
+ const _LFBCSCR = "ListFunctionsByCodeSigningConfigRequest";
385
+ const _LFBCSCRi = "ListFunctionsByCodeSigningConfigResponse";
386
+ const _LFEIC = "ListFunctionEventInvokeConfigs";
387
+ const _LFEICR = "ListFunctionEventInvokeConfigsRequest";
388
+ const _LFEICRi = "ListFunctionEventInvokeConfigsResponse";
389
+ const _LFR = "ListFunctionsRequest";
390
+ const _LFRi = "ListFunctionsResponse";
391
+ const _LFUC = "ListFunctionUrlConfigs";
392
+ const _LFUCR = "ListFunctionUrlConfigsRequest";
393
+ const _LFUCRi = "ListFunctionUrlConfigsResponse";
394
+ const _LFVBCP = "ListFunctionVersionsByCapacityProvider";
395
+ const _LFVBCPR = "ListFunctionVersionsByCapacityProviderRequest";
396
+ const _LFVBCPRi = "ListFunctionVersionsByCapacityProviderResponse";
397
+ const _LFi = "ListFunctions";
398
+ const _LG = "LogGroup";
399
+ const _LI = "LicenseInfo";
400
+ const _LL = "LayersList";
401
+ const _LLI = "LayersListItem";
402
+ const _LLR = "ListLayersRequest";
403
+ const _LLRi = "ListLayersResponse";
404
+ const _LLV = "ListLayerVersions";
405
+ const _LLVR = "ListLayerVersionsRequest";
406
+ const _LLVRi = "ListLayerVersionsResponse";
407
+ const _LLi = "ListLayers";
408
+ const _LM = "LastModified";
409
+ const _LMICPC = "LambdaManagedInstancesCapacityProviderConfig";
410
+ const _LMP = "LocalMountPath";
411
+ const _LMT = "LastModifiedTime";
412
+ const _LMV = "LatestMatchingVersion";
413
+ const _LN = "LayerName";
414
+ const _LPCC = "ListProvisionedConcurrencyConfigs";
415
+ const _LPCCR = "ListProvisionedConcurrencyConfigsRequest";
416
+ const _LPCCRi = "ListProvisionedConcurrencyConfigsResponse";
417
+ const _LPR = "LastProcessingResult";
418
+ const _LR = "LogResult";
419
+ const _LRL = "LayersReferenceList";
420
+ const _LT = "LogType";
421
+ const _LTR = "ListTagsRequest";
422
+ const _LTRi = "ListTagsResponse";
423
+ const _LTi = "ListTags";
424
+ const _LUS = "LastUpdateStatus";
425
+ const _LUSR = "LastUpdateStatusReason";
426
+ const _LUSRC = "LastUpdateStatusReasonCode";
427
+ const _LV = "LayerVersions";
428
+ const _LVA = "LayerVersionArn";
429
+ const _LVBF = "ListVersionsByFunction";
430
+ const _LVBFR = "ListVersionsByFunctionRequest";
431
+ const _LVBFRi = "ListVersionsByFunctionResponse";
432
+ const _LVCI = "LayerVersionContentInput";
433
+ const _LVCO = "LayerVersionContentOutput";
434
+ const _LVL = "LayerVersionsList";
435
+ const _LVLI = "LayerVersionsListItem";
436
+ const _La = "Layer";
437
+ const _Lo = "Location";
438
+ const _M = "Message";
439
+ const _MA = "MaxAge";
440
+ const _MAa = "MasterArn";
441
+ const _MBWIS = "MaximumBatchingWindowInSeconds";
442
+ const _MC = "MetricsConfig";
443
+ const _MCa = "MaximumConcurrency";
444
+ const _MEAIS = "MaximumEventAgeInSeconds";
445
+ const _MEE = "MinExecutionEnvironments";
446
+ const _MEEa = "MaxExecutionEnvironments";
447
+ const _MI = "MaxItems";
448
+ const _MP = "MinimumPollers";
449
+ const _MPa = "MaximumPollers";
450
+ const _MR = "MasterRegion";
451
+ const _MRA = "MaximumRetryAttempts";
452
+ const _MRAIS = "MaximumRecordAgeInSeconds";
453
+ const _MS = "MemorySize";
454
+ const _MVCC = "MaxVCpuCount";
455
+ const _Ma = "Marker";
456
+ const _Me = "Metrics";
457
+ const _Mo = "Mode";
458
+ const _N = "Name";
459
+ const _NADS = "NextAttemptDelaySeconds";
460
+ const _NAT = "NextAttemptTimestamp";
461
+ const _NES = "NewExecutionState";
462
+ const _NM = "NextMarker";
463
+ const _NPVE = "NoPublishedVersionException";
464
+ const _O = "Operations";
465
+ const _OF = "OnFailure";
466
+ const _OI = "OrganizationId";
467
+ const _OP = "OperationPayload";
468
+ const _OPu = "OutputPayload";
469
+ const _OS = "OnSuccess";
470
+ const _OSp = "OptimizationStatus";
471
+ const _OU = "OperationUpdate";
472
+ const _OUp = "OperationUpdates";
473
+ const _Op = "Operation";
474
+ const _P = "Principal";
475
+ const _PC = "PermissionsConfig";
476
+ const _PCC = "ProvisionedConcurrencyConfigs";
477
+ const _PCCL = "ProvisionedConcurrencyConfigList";
478
+ const _PCCLI = "ProvisionedConcurrencyConfigListItem";
479
+ const _PCCNFE = "ProvisionedConcurrencyConfigNotFoundException";
480
+ const _PCE = "ProvisionedConcurrentExecutions";
481
+ const _PCa = "PayloadChunk";
482
+ const _PEEMC = "PerExecutionEnvironmentMaxConcurrency";
483
+ const _PF = "ParallelizationFactor";
484
+ const _PFC = "PutFunctionConcurrency";
485
+ const _PFCR = "PutFunctionConcurrencyRequest";
486
+ const _PFCSC = "PutFunctionCodeSigningConfig";
487
+ const _PFCSCR = "PutFunctionCodeSigningConfigRequest";
488
+ const _PFCSCRu = "PutFunctionCodeSigningConfigResponse";
489
+ const _PFE = "PreconditionFailedException";
490
+ const _PFEIC = "PutFunctionEventInvokeConfig";
491
+ const _PFEICR = "PutFunctionEventInvokeConfigRequest";
492
+ const _PFRC = "PutFunctionRecursionConfig";
493
+ const _PFRCR = "PutFunctionRecursionConfigRequest";
494
+ const _PFRCRu = "PutFunctionRecursionConfigResponse";
495
+ const _PFSC = "PutFunctionScalingConfig";
496
+ const _PFSCR = "PutFunctionScalingConfigRequest";
497
+ const _PFSCRu = "PutFunctionScalingConfigResponse";
498
+ const _PGN = "PollerGroupName";
499
+ const _PI = "ParentId";
500
+ const _PLEE = "PolicyLengthExceededException";
501
+ const _PLV = "PublishLayerVersion";
502
+ const _PLVR = "PublishLayerVersionRequest";
503
+ const _PLVRu = "PublishLayerVersionResponse";
504
+ const _PMT = "PredefinedMetricType";
505
+ const _POID = "PrincipalOrgID";
506
+ const _PPC = "ProvisionedPollerConfig";
507
+ const _PPCC = "PutProvisionedConcurrencyConfig";
508
+ const _PPCCR = "PutProvisionedConcurrencyConfigRequest";
509
+ const _PPCCRu = "PutProvisionedConcurrencyConfigResponse";
510
+ const _PRMC = "PutRuntimeManagementConfig";
511
+ const _PRMCR = "PutRuntimeManagementConfigRequest";
512
+ const _PRMCRu = "PutRuntimeManagementConfigResponse";
513
+ const _PT = "PackageType";
514
+ const _PTu = "PublishTo";
515
+ const _PV = "PublishVersion";
516
+ const _PVR = "PublishVersionRequest";
517
+ const _Pa = "Payload";
518
+ const _Pat = "Pattern";
519
+ const _Po = "Policy";
520
+ const _Pu = "Publish";
521
+ const _Q = "Qualifier";
522
+ const _Qu = "Queues";
523
+ const _R = "Reason";
524
+ const _RA = "Retry-After";
525
+ const _RC = "RoutingConfig";
526
+ const _RCE = "ResourceConflictException";
527
+ const _RCEe = "ReservedConcurrentExecutions";
528
+ const _RCe = "ReplayChildren";
529
+ const _RD = "RetryDetails";
530
+ const _RFSC = "RequestedFunctionScalingConfig";
531
+ const _RI = "RevisionId";
532
+ const _RIE = "RecursiveInvocationException";
533
+ const _RIU = "ResolvedImageUri";
534
+ const _RIUE = "ResourceInUseException";
535
+ const _RIe = "RequestId";
536
+ const _RL = "RecursiveLoop";
537
+ const _RLVP = "RemoveLayerVersionPermission";
538
+ const _RLVPR = "RemoveLayerVersionPermissionRequest";
539
+ const _RNFE = "ResourceNotFoundException";
540
+ const _RNRE = "ResourceNotReadyException";
541
+ const _RO = "ReverseOrder";
542
+ const _RP = "RemovePermission";
543
+ const _RPCE = "RequestedProvisionedConcurrentExecutions";
544
+ const _RPID = "RetentionPeriodInDays";
545
+ const _RPR = "RemovePermissionRequest";
546
+ const _RSCT = "ResponseStreamContentType";
547
+ const _RT = "RepositoryType";
548
+ const _RTLE = "RequestTooLargeException";
549
+ const _RVA = "RuntimeVersionArn";
550
+ const _RVC = "RuntimeVersionConfig";
551
+ const _RVE = "RuntimeVersionError";
552
+ const _Re = "Result";
553
+ const _Res = "Resource";
554
+ const _Ro = "Role";
555
+ const _Ru = "Runtime";
556
+ const _S = "Statement";
557
+ const _SA = "SourceArn";
558
+ const _SAC = "SourceAccessConfigurations";
559
+ const _SACo = "SourceAccessConfiguration";
560
+ const _SAo = "SourceAccount";
561
+ const _SAt = "StartedAfter";
562
+ const _SB = "S3Bucket";
563
+ const _SBt = "StartedBefore";
564
+ const _SC = "ScalingConfig";
565
+ const _SCt = "StatusCode";
566
+ const _SD = "StepDetails";
567
+ const _SDE = "StopDurableExecution";
568
+ const _SDECF = "SendDurableExecutionCallbackFailure";
569
+ const _SDECFR = "SendDurableExecutionCallbackFailureRequest";
570
+ const _SDECFRe = "SendDurableExecutionCallbackFailureResponse";
571
+ const _SDECH = "SendDurableExecutionCallbackHeartbeat";
572
+ const _SDECHR = "SendDurableExecutionCallbackHeartbeatRequest";
573
+ const _SDECHRe = "SendDurableExecutionCallbackHeartbeatResponse";
574
+ const _SDECS = "SendDurableExecutionCallbackSuccess";
575
+ const _SDECSR = "SendDurableExecutionCallbackSuccessRequest";
576
+ const _SDECSRe = "SendDurableExecutionCallbackSuccessResponse";
577
+ const _SDER = "StopDurableExecutionRequest";
578
+ const _SDERt = "StopDurableExecutionResponse";
579
+ const _SE = "ServiceException";
580
+ const _SET = "ScheduledEndTimestamp";
581
+ const _SFD = "StepFailedDetails";
582
+ const _SGI = "SecurityGroupIds";
583
+ const _SI = "StatementId";
584
+ const _SIPALRE = "SubnetIPAddressLimitReachedException";
585
+ const _SIu = "SubnetIds";
586
+ const _SJA = "SigningJobArn";
587
+ const _SK = "S3Key";
588
+ const _SKMSKA = "SourceKMSKeyArn";
589
+ const _SLL = "SystemLogLevel";
590
+ const _SM = "ScalingMode";
591
+ const _SMES = "SelfManagedEventSource";
592
+ const _SMKESC = "SelfManagedKafkaEventSourceConfig";
593
+ const _SO = "StepOptions";
594
+ const _SOV = "S3ObjectVersion";
595
+ const _SP = "ScalingPolicies";
596
+ const _SPT = "StartingPositionTimestamp";
597
+ const _SPVA = "SigningProfileVersionArns";
598
+ const _SPVAi = "SigningProfileVersionArn";
599
+ const _SPt = "StartingPosition";
600
+ const _SR = "StateReason";
601
+ const _SRC = "SchemaRegistryConfig";
602
+ const _SRCt = "StateReasonCode";
603
+ const _SRETLE = "SerializedRequestEntityTooLargeException";
604
+ const _SRURI = "SchemaRegistryURI";
605
+ const _SRt = "StatusReason";
606
+ const _SS = "SensitiveString";
607
+ const _SSD = "StepStartedDetails";
608
+ const _SSDt = "StepSucceededDetails";
609
+ const _SSE = "SnapStartException";
610
+ const _SSNRE = "SnapStartNotReadyException";
611
+ const _SSR = "SnapStartResponse";
612
+ const _SSTE = "SnapStartTimeoutException";
613
+ const _SSn = "SnapStart";
614
+ const _ST = "StackTrace";
615
+ const _STE = "StackTraceEntry";
616
+ const _STEt = "StackTraceEntries";
617
+ const _STR = "StateTransitionReason";
618
+ const _STt = "StartTimestamp";
619
+ const _STto = "StopTimestamp";
620
+ const _STu = "SubType";
621
+ const _SVC = "SchemaValidationConfigs";
622
+ const _Si = "Size";
623
+ const _St = "State";
624
+ const _Sta = "Status";
625
+ const _Stat = "Statuses";
626
+ const _T = "Type";
627
+ const _TA = "TargetArn";
628
+ const _TC = "TracingConfig";
629
+ const _TCR = "TracingConfigResponse";
630
+ const _TCS = "TotalCodeSize";
631
+ const _TCe = "TenancyConfig";
632
+ const _TE = "TagsError";
633
+ const _TH = "TraceHeader";
634
+ const _TI = "TenantId";
635
+ const _TIM = "TenantIsolationMode";
636
+ const _TK = "TagKeys";
637
+ const _TMRE = "TooManyRequestsException";
638
+ const _TR = "TagResource";
639
+ const _TRR = "TagResourceRequest";
640
+ const _TS = "TimeoutSeconds";
641
+ const _TTSP = "TargetTrackingScalingPolicy";
642
+ const _TV = "TargetValue";
643
+ const _TWIS = "TumblingWindowInSeconds";
644
+ const _Ta = "Tags";
645
+ const _Ti = "Timeout";
646
+ const _To = "Topics";
647
+ const _Tr = "Truncated";
648
+ const _U = "Updates";
649
+ const _UA = "UpdateAlias";
650
+ const _UAOD = "UntrustedArtifactOnDeployment";
651
+ const _UAR = "UpdateAliasRequest";
652
+ const _UCE = "UnreservedConcurrentExecutions";
653
+ const _UCP = "UpdateCapacityProvider";
654
+ const _UCPR = "UpdateCapacityProviderRequest";
655
+ const _UCPRp = "UpdateCapacityProviderResponse";
656
+ const _UCSC = "UpdateCodeSigningConfig";
657
+ const _UCSCR = "UpdateCodeSigningConfigRequest";
658
+ const _UCSCRp = "UpdateCodeSigningConfigResponse";
659
+ const _UESM = "UpdateEventSourceMapping";
660
+ const _UESMR = "UpdateEventSourceMappingRequest";
661
+ const _UFC = "UpdateFunctionCode";
662
+ const _UFCR = "UpdateFunctionCodeRequest";
663
+ const _UFCRp = "UpdateFunctionConfigurationRequest";
664
+ const _UFCp = "UpdateFunctionConfiguration";
665
+ const _UFEIC = "UpdateFunctionEventInvokeConfig";
666
+ const _UFEICR = "UpdateFunctionEventInvokeConfigRequest";
667
+ const _UFUC = "UpdateFunctionUrlConfig";
668
+ const _UFUCR = "UpdateFunctionUrlConfigRequest";
669
+ const _UFUCRp = "UpdateFunctionUrlConfigResponse";
670
+ const _UMTE = "UnsupportedMediaTypeException";
671
+ const _UR = "UntagResource";
672
+ const _URI = "URI";
673
+ const _URO = "UpdateRuntimeOn";
674
+ const _URR = "UntagResourceRequest";
675
+ const _UUID = "UUID";
676
+ const _V = "Variables";
677
+ const _VC = "VpcConfig";
678
+ const _VCR = "VpcConfigResponse";
679
+ const _VI = "VpcId";
680
+ const _VN = "VersionNumber";
681
+ const _Ve = "Version";
682
+ const _Ver = "Versions";
683
+ const _WCD = "WaitCancelledDetails";
684
+ const _WD = "WorkingDirectory";
685
+ const _WDa = "WaitDetails";
686
+ const _WO = "WaitOptions";
687
+ const _WS = "WaitSeconds";
688
+ const _WSD = "WaitStartedDetails";
689
+ const _WSDa = "WaitSucceededDetails";
690
+ const _XACC = "X-Amz-Client-Context";
691
+ const _XADEA = "X-Amz-Durable-Execution-Arn";
692
+ const _XADEN = "X-Amz-Durable-Execution-Name";
693
+ const _XAEV = "X-Amz-Executed-Version";
694
+ const _XAFE = "X-Amz-Function-Error";
695
+ const _XAIT = "X-Amz-Invocation-Type";
696
+ const _XALR = "X-Amz-Log-Result";
697
+ const _XALT = "X-Amz-Log-Type";
698
+ const _XATI = "X-Amz-Tenant-Id";
699
+ const _XATIm = "XAmznTraceId";
700
+ const _ZF = "ZipFile";
701
+ const _c = "client";
702
+ const _e = "error";
703
+ const _eP = "eventPayload";
704
+ const _h = "http";
705
+ const _hE = "httpError";
706
+ const _hH = "httpHeader";
707
+ const _hQ = "httpQuery";
708
+ const _m = "message";
709
+ const _rAS = "retryAfterSeconds";
710
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.lambda";
711
+ const _se = "server";
712
+ const _st = "streaming";
713
+ const _tK = "tagKeys";
714
+ const n0 = "com.amazonaws.lambda";
715
+ import { TypeRegistry } from "@smithy/core/schema";
716
+ import { CallbackTimeoutException, CapacityProviderLimitExceededException, CodeSigningConfigNotFoundException, CodeStorageExceededException, CodeVerificationFailedException, DurableExecutionAlreadyStartedException, EC2AccessDeniedException, EC2ThrottledException, EC2UnexpectedException, EFSIOException, EFSMountConnectivityException, EFSMountFailureException, EFSMountTimeoutException, ENILimitReachedException, FunctionVersionsPerCapacityProviderLimitExceededException, InvalidCodeSignatureException, InvalidParameterValueException, InvalidRequestContentException, InvalidRuntimeException, InvalidSecurityGroupIDException, InvalidSubnetIDException, InvalidZipFileException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, NoPublishedVersionException, PolicyLengthExceededException, PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException, RecursiveInvocationException, RequestTooLargeException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, SerializedRequestEntityTooLargeException, ServiceException, SnapStartException, SnapStartNotReadyException, SnapStartTimeoutException, SubnetIPAddressLimitReachedException, TooManyRequestsException, UnsupportedMediaTypeException, } from "../models/errors";
717
+ import { LambdaServiceException } from "../models/LambdaServiceException";
718
+ const _s_registry = TypeRegistry.for(_s);
719
+ export var LambdaServiceException$ = [-3, _s, "LambdaServiceException", 0, [], []];
720
+ _s_registry.registerError(LambdaServiceException$, LambdaServiceException);
721
+ const n0_registry = TypeRegistry.for(n0);
722
+ export var CallbackTimeoutException$ = [-3, n0, _CTE,
723
+ { [_e]: _c, [_hE]: 400 },
724
+ [_T, _M],
725
+ [0, 0]
726
+ ];
727
+ n0_registry.registerError(CallbackTimeoutException$, CallbackTimeoutException);
728
+ export var CapacityProviderLimitExceededException$ = [-3, n0, _CPLEE,
729
+ { [_e]: _c, [_hE]: 400 },
730
+ [_T, _m],
731
+ [0, 0]
732
+ ];
733
+ n0_registry.registerError(CapacityProviderLimitExceededException$, CapacityProviderLimitExceededException);
734
+ export var CodeSigningConfigNotFoundException$ = [-3, n0, _CSCNFE,
735
+ { [_e]: _c, [_hE]: 404 },
736
+ [_T, _M],
737
+ [0, 0]
738
+ ];
739
+ n0_registry.registerError(CodeSigningConfigNotFoundException$, CodeSigningConfigNotFoundException);
740
+ export var CodeStorageExceededException$ = [-3, n0, _CSEE,
741
+ { [_e]: _c, [_hE]: 400 },
742
+ [_T, _m],
743
+ [0, 0]
744
+ ];
745
+ n0_registry.registerError(CodeStorageExceededException$, CodeStorageExceededException);
746
+ export var CodeVerificationFailedException$ = [-3, n0, _CVFE,
747
+ { [_e]: _c, [_hE]: 400 },
748
+ [_T, _M],
749
+ [0, 0]
750
+ ];
751
+ n0_registry.registerError(CodeVerificationFailedException$, CodeVerificationFailedException);
752
+ export var DurableExecutionAlreadyStartedException$ = [-3, n0, _DEASE,
753
+ { [_e]: _c, [_hE]: 409 },
754
+ [_T, _M],
755
+ [0, 0]
756
+ ];
757
+ n0_registry.registerError(DurableExecutionAlreadyStartedException$, DurableExecutionAlreadyStartedException);
758
+ export var EC2AccessDeniedException$ = [-3, n0, _ECADE,
759
+ { [_e]: _se, [_hE]: 502 },
760
+ [_T, _M],
761
+ [0, 0]
762
+ ];
763
+ n0_registry.registerError(EC2AccessDeniedException$, EC2AccessDeniedException);
764
+ export var EC2ThrottledException$ = [-3, n0, _ECTE,
765
+ { [_e]: _se, [_hE]: 502 },
766
+ [_T, _M],
767
+ [0, 0]
768
+ ];
769
+ n0_registry.registerError(EC2ThrottledException$, EC2ThrottledException);
770
+ export var EC2UnexpectedException$ = [-3, n0, _ECUE,
771
+ { [_e]: _se, [_hE]: 502 },
772
+ [_T, _M, _ECEC],
773
+ [0, 0, 0]
774
+ ];
775
+ n0_registry.registerError(EC2UnexpectedException$, EC2UnexpectedException);
776
+ export var EFSIOException$ = [-3, n0, _EFSIOE,
777
+ { [_e]: _c, [_hE]: 410 },
778
+ [_T, _M],
779
+ [0, 0]
780
+ ];
781
+ n0_registry.registerError(EFSIOException$, EFSIOException);
782
+ export var EFSMountConnectivityException$ = [-3, n0, _EFSMCE,
783
+ { [_e]: _c, [_hE]: 408 },
784
+ [_T, _M],
785
+ [0, 0]
786
+ ];
787
+ n0_registry.registerError(EFSMountConnectivityException$, EFSMountConnectivityException);
788
+ export var EFSMountFailureException$ = [-3, n0, _EFSMFE,
789
+ { [_e]: _c, [_hE]: 403 },
790
+ [_T, _M],
791
+ [0, 0]
792
+ ];
793
+ n0_registry.registerError(EFSMountFailureException$, EFSMountFailureException);
794
+ export var EFSMountTimeoutException$ = [-3, n0, _EFSMTE,
795
+ { [_e]: _c, [_hE]: 408 },
796
+ [_T, _M],
797
+ [0, 0]
798
+ ];
799
+ n0_registry.registerError(EFSMountTimeoutException$, EFSMountTimeoutException);
800
+ export var ENILimitReachedException$ = [-3, n0, _ENILRE,
801
+ { [_e]: _se, [_hE]: 502 },
802
+ [_T, _M],
803
+ [0, 0]
804
+ ];
805
+ n0_registry.registerError(ENILimitReachedException$, ENILimitReachedException);
806
+ export var FunctionVersionsPerCapacityProviderLimitExceededException$ = [-3, n0, _FVPCPLEE,
807
+ { [_e]: _c, [_hE]: 400 },
808
+ [_T, _m],
809
+ [0, 0]
810
+ ];
811
+ n0_registry.registerError(FunctionVersionsPerCapacityProviderLimitExceededException$, FunctionVersionsPerCapacityProviderLimitExceededException);
812
+ export var InvalidCodeSignatureException$ = [-3, n0, _ICSE,
813
+ { [_e]: _c, [_hE]: 400 },
814
+ [_T, _M],
815
+ [0, 0]
816
+ ];
817
+ n0_registry.registerError(InvalidCodeSignatureException$, InvalidCodeSignatureException);
818
+ export var InvalidParameterValueException$ = [-3, n0, _IPVE,
819
+ { [_e]: _c, [_hE]: 400 },
820
+ [_T, _m],
821
+ [0, 0]
822
+ ];
823
+ n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
824
+ export var InvalidRequestContentException$ = [-3, n0, _IRCE,
825
+ { [_e]: _c, [_hE]: 400 },
826
+ [_T, _m],
827
+ [0, 0]
828
+ ];
829
+ n0_registry.registerError(InvalidRequestContentException$, InvalidRequestContentException);
830
+ export var InvalidRuntimeException$ = [-3, n0, _IRE,
831
+ { [_e]: _se, [_hE]: 502 },
832
+ [_T, _M],
833
+ [0, 0]
834
+ ];
835
+ n0_registry.registerError(InvalidRuntimeException$, InvalidRuntimeException);
836
+ export var InvalidSecurityGroupIDException$ = [-3, n0, _ISGIDE,
837
+ { [_e]: _se, [_hE]: 502 },
838
+ [_T, _M],
839
+ [0, 0]
840
+ ];
841
+ n0_registry.registerError(InvalidSecurityGroupIDException$, InvalidSecurityGroupIDException);
842
+ export var InvalidSubnetIDException$ = [-3, n0, _ISIDE,
843
+ { [_e]: _se, [_hE]: 502 },
844
+ [_T, _M],
845
+ [0, 0]
846
+ ];
847
+ n0_registry.registerError(InvalidSubnetIDException$, InvalidSubnetIDException);
848
+ export var InvalidZipFileException$ = [-3, n0, _IZFE,
849
+ { [_e]: _se, [_hE]: 502 },
850
+ [_T, _M],
851
+ [0, 0]
852
+ ];
853
+ n0_registry.registerError(InvalidZipFileException$, InvalidZipFileException);
854
+ export var KMSAccessDeniedException$ = [-3, n0, _KMSADE,
855
+ { [_e]: _se, [_hE]: 502 },
856
+ [_T, _M],
857
+ [0, 0]
858
+ ];
859
+ n0_registry.registerError(KMSAccessDeniedException$, KMSAccessDeniedException);
860
+ export var KMSDisabledException$ = [-3, n0, _KMSDE,
861
+ { [_e]: _se, [_hE]: 502 },
862
+ [_T, _M],
863
+ [0, 0]
864
+ ];
865
+ n0_registry.registerError(KMSDisabledException$, KMSDisabledException);
866
+ export var KMSInvalidStateException$ = [-3, n0, _KMSISE,
867
+ { [_e]: _se, [_hE]: 502 },
868
+ [_T, _M],
869
+ [0, 0]
870
+ ];
871
+ n0_registry.registerError(KMSInvalidStateException$, KMSInvalidStateException);
872
+ export var KMSNotFoundException$ = [-3, n0, _KMSNFE,
873
+ { [_e]: _se, [_hE]: 502 },
874
+ [_T, _M],
875
+ [0, 0]
876
+ ];
877
+ n0_registry.registerError(KMSNotFoundException$, KMSNotFoundException);
878
+ export var NoPublishedVersionException$ = [-3, n0, _NPVE,
879
+ { [_e]: _c, [_hE]: 400 },
880
+ [_T, _M],
881
+ [0, 0]
882
+ ];
883
+ n0_registry.registerError(NoPublishedVersionException$, NoPublishedVersionException);
884
+ export var PolicyLengthExceededException$ = [-3, n0, _PLEE,
885
+ { [_e]: _c, [_hE]: 400 },
886
+ [_T, _m],
887
+ [0, 0]
888
+ ];
889
+ n0_registry.registerError(PolicyLengthExceededException$, PolicyLengthExceededException);
890
+ export var PreconditionFailedException$ = [-3, n0, _PFE,
891
+ { [_e]: _c, [_hE]: 412 },
892
+ [_T, _m],
893
+ [0, 0]
894
+ ];
895
+ n0_registry.registerError(PreconditionFailedException$, PreconditionFailedException);
896
+ export var ProvisionedConcurrencyConfigNotFoundException$ = [-3, n0, _PCCNFE,
897
+ { [_e]: _c, [_hE]: 404 },
898
+ [_T, _m],
899
+ [0, 0]
900
+ ];
901
+ n0_registry.registerError(ProvisionedConcurrencyConfigNotFoundException$, ProvisionedConcurrencyConfigNotFoundException);
902
+ export var RecursiveInvocationException$ = [-3, n0, _RIE,
903
+ { [_e]: _c, [_hE]: 400 },
904
+ [_T, _M],
905
+ [0, 0]
906
+ ];
907
+ n0_registry.registerError(RecursiveInvocationException$, RecursiveInvocationException);
908
+ export var RequestTooLargeException$ = [-3, n0, _RTLE,
909
+ { [_e]: _c, [_hE]: 413 },
910
+ [_T, _m],
911
+ [0, 0]
912
+ ];
913
+ n0_registry.registerError(RequestTooLargeException$, RequestTooLargeException);
914
+ export var ResourceConflictException$ = [-3, n0, _RCE,
915
+ { [_e]: _c, [_hE]: 409 },
916
+ [_T, _m],
917
+ [0, 0]
918
+ ];
919
+ n0_registry.registerError(ResourceConflictException$, ResourceConflictException);
920
+ export var ResourceInUseException$ = [-3, n0, _RIUE,
921
+ { [_e]: _c, [_hE]: 400 },
922
+ [_T, _M],
923
+ [0, 0]
924
+ ];
925
+ n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
926
+ export var ResourceNotFoundException$ = [-3, n0, _RNFE,
927
+ { [_e]: _c, [_hE]: 404 },
928
+ [_T, _M],
929
+ [0, 0]
930
+ ];
931
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
932
+ export var ResourceNotReadyException$ = [-3, n0, _RNRE,
933
+ { [_e]: _se, [_hE]: 502 },
934
+ [_T, _m],
935
+ [0, 0]
936
+ ];
937
+ n0_registry.registerError(ResourceNotReadyException$, ResourceNotReadyException);
938
+ export var SerializedRequestEntityTooLargeException$ = [-3, n0, _SRETLE,
939
+ { [_e]: _c, [_hE]: 413 },
940
+ [_T, _m],
941
+ [0, 0]
942
+ ];
943
+ n0_registry.registerError(SerializedRequestEntityTooLargeException$, SerializedRequestEntityTooLargeException);
944
+ export var ServiceException$ = [-3, n0, _SE,
945
+ { [_e]: _se, [_hE]: 500 },
946
+ [_T, _M],
947
+ [0, 0]
948
+ ];
949
+ n0_registry.registerError(ServiceException$, ServiceException);
950
+ export var SnapStartException$ = [-3, n0, _SSE,
951
+ { [_e]: _c, [_hE]: 400 },
952
+ [_T, _M],
953
+ [0, 0]
954
+ ];
955
+ n0_registry.registerError(SnapStartException$, SnapStartException);
956
+ export var SnapStartNotReadyException$ = [-3, n0, _SSNRE,
957
+ { [_e]: _c, [_hE]: 409 },
958
+ [_T, _M],
959
+ [0, 0]
960
+ ];
961
+ n0_registry.registerError(SnapStartNotReadyException$, SnapStartNotReadyException);
962
+ export var SnapStartTimeoutException$ = [-3, n0, _SSTE,
963
+ { [_e]: _c, [_hE]: 408 },
964
+ [_T, _M],
965
+ [0, 0]
966
+ ];
967
+ n0_registry.registerError(SnapStartTimeoutException$, SnapStartTimeoutException);
968
+ export var SubnetIPAddressLimitReachedException$ = [-3, n0, _SIPALRE,
969
+ { [_e]: _se, [_hE]: 502 },
970
+ [_T, _M],
971
+ [0, 0]
972
+ ];
973
+ n0_registry.registerError(SubnetIPAddressLimitReachedException$, SubnetIPAddressLimitReachedException);
974
+ export var TooManyRequestsException$ = [-3, n0, _TMRE,
975
+ { [_e]: _c, [_hE]: 429 },
976
+ [_rAS, _T, _m, _R],
977
+ [[0, { [_hH]: _RA }], 0, 0, 0]
978
+ ];
979
+ n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
980
+ export var UnsupportedMediaTypeException$ = [-3, n0, _UMTE,
981
+ { [_e]: _c, [_hE]: 415 },
982
+ [_T, _m],
983
+ [0, 0]
984
+ ];
985
+ n0_registry.registerError(UnsupportedMediaTypeException$, UnsupportedMediaTypeException);
986
+ export const errorTypeRegistries = [
987
+ _s_registry,
988
+ n0_registry,
989
+ ];
990
+ var BinaryOperationPayload = [0, n0, _BOP, 8, 21];
991
+ var _Blob = [0, n0, _B, 8, 21];
992
+ var BlobStream = [0, n0, _BS, { [_st]: 1 }, 42];
993
+ var EnvironmentVariableName = [0, n0, _EVN, 8, 0];
994
+ var EnvironmentVariableValue = [0, n0, _EVV, 8, 0];
995
+ var ErrorData = [0, n0, _ED, 8, 0];
996
+ var ErrorMessage = [0, n0, _EM, 8, 0];
997
+ var ErrorType = [0, n0, _ET, 8, 0];
998
+ var InputPayload = [0, n0, _IP, 8, 0];
999
+ var OperationPayload = [0, n0, _OP, 8, 0];
1000
+ var OutputPayload = [0, n0, _OPu, 8, 0];
1001
+ var SensitiveString = [0, n0, _SS, 8, 0];
1002
+ var StackTraceEntry = [0, n0, _STE, 8, 0];
1003
+ export var AccountLimit$ = [3, n0, _AL,
1004
+ 0,
1005
+ [_TCS, _CSU, _CSZ, _CE, _UCE],
1006
+ [1, 1, 1, 1, 1]
1007
+ ];
1008
+ export var AccountUsage$ = [3, n0, _AU,
1009
+ 0,
1010
+ [_TCS, _FC],
1011
+ [1, 1]
1012
+ ];
1013
+ export var AddLayerVersionPermissionRequest$ = [3, n0, _ALVPR,
1014
+ 0,
1015
+ [_LN, _VN, _SI, _A, _P, _OI, _RI],
1016
+ [[0, 1], [1, 1], 0, 0, 0, 0, [0, { [_hQ]: _RI }]], 5
1017
+ ];
1018
+ export var AddLayerVersionPermissionResponse$ = [3, n0, _ALVPRd,
1019
+ 0,
1020
+ [_S, _RI],
1021
+ [0, 0]
1022
+ ];
1023
+ export var AddPermissionRequest$ = [3, n0, _APR,
1024
+ 0,
1025
+ [_FN, _SI, _A, _P, _SA, _SAo, _EST, _Q, _RI, _POID, _FUAT, _IVFU],
1026
+ [[0, 1], 0, 0, 0, 0, 0, 0, [0, { [_hQ]: _Q }], 0, 0, 0, 2], 4
1027
+ ];
1028
+ export var AddPermissionResponse$ = [3, n0, _APRd,
1029
+ 0,
1030
+ [_S],
1031
+ [0]
1032
+ ];
1033
+ export var AliasConfiguration$ = [3, n0, _AC,
1034
+ 0,
1035
+ [_AA, _N, _FV, _D, _RC, _RI],
1036
+ [0, 0, 0, 0, () => AliasRoutingConfiguration$, 0]
1037
+ ];
1038
+ export var AliasRoutingConfiguration$ = [3, n0, _ARC,
1039
+ 0,
1040
+ [_AVW],
1041
+ [128 | 1]
1042
+ ];
1043
+ export var AllowedPublishers$ = [3, n0, _AP,
1044
+ 0,
1045
+ [_SPVA],
1046
+ [64 | 0], 1
1047
+ ];
1048
+ export var AmazonManagedKafkaEventSourceConfig$ = [3, n0, _AMKESC,
1049
+ 0,
1050
+ [_CGI, _SRC],
1051
+ [0, () => KafkaSchemaRegistryConfig$]
1052
+ ];
1053
+ export var CallbackDetails$ = [3, n0, _CD,
1054
+ 0,
1055
+ [_CI, _Re, _E],
1056
+ [0, [() => OperationPayload, 0], [() => ErrorObject$, 0]]
1057
+ ];
1058
+ export var CallbackFailedDetails$ = [3, n0, _CFD,
1059
+ 0,
1060
+ [_E],
1061
+ [[() => EventError$, 0]], 1
1062
+ ];
1063
+ export var CallbackOptions$ = [3, n0, _CO,
1064
+ 0,
1065
+ [_TS, _HTS],
1066
+ [1, 1]
1067
+ ];
1068
+ export var CallbackStartedDetails$ = [3, n0, _CSD,
1069
+ 0,
1070
+ [_CI, _HT, _Ti],
1071
+ [0, 1, 1], 1
1072
+ ];
1073
+ export var CallbackSucceededDetails$ = [3, n0, _CSDa,
1074
+ 0,
1075
+ [_Re],
1076
+ [[() => EventResult$, 0]], 1
1077
+ ];
1078
+ export var CallbackTimedOutDetails$ = [3, n0, _CTOD,
1079
+ 0,
1080
+ [_E],
1081
+ [[() => EventError$, 0]], 1
1082
+ ];
1083
+ export var CapacityProvider$ = [3, n0, _CP,
1084
+ 0,
1085
+ [_CPA, _St, _VC, _PC, _IR, _CPSC, _KKA, _LM],
1086
+ [0, 0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 0], 4
1087
+ ];
1088
+ export var CapacityProviderConfig$ = [3, n0, _CPC,
1089
+ 0,
1090
+ [_LMICPC],
1091
+ [() => LambdaManagedInstancesCapacityProviderConfig$], 1
1092
+ ];
1093
+ export var CapacityProviderPermissionsConfig$ = [3, n0, _CPPC,
1094
+ 0,
1095
+ [_CPORA],
1096
+ [0], 1
1097
+ ];
1098
+ export var CapacityProviderScalingConfig$ = [3, n0, _CPSC,
1099
+ 0,
1100
+ [_MVCC, _SM, _SP],
1101
+ [1, 0, () => CapacityProviderScalingPoliciesList]
1102
+ ];
1103
+ export var CapacityProviderVpcConfig$ = [3, n0, _CPVC,
1104
+ 0,
1105
+ [_SIu, _SGI],
1106
+ [64 | 0, 64 | 0], 2
1107
+ ];
1108
+ export var ChainedInvokeDetails$ = [3, n0, _CID,
1109
+ 0,
1110
+ [_Re, _E],
1111
+ [[() => OperationPayload, 0], [() => ErrorObject$, 0]]
1112
+ ];
1113
+ export var ChainedInvokeFailedDetails$ = [3, n0, _CIFD,
1114
+ 0,
1115
+ [_E],
1116
+ [[() => EventError$, 0]], 1
1117
+ ];
1118
+ export var ChainedInvokeOptions$ = [3, n0, _CIO,
1119
+ 0,
1120
+ [_FN, _TI],
1121
+ [0, 0], 1
1122
+ ];
1123
+ export var ChainedInvokeStartedDetails$ = [3, n0, _CISD,
1124
+ 0,
1125
+ [_FN, _TI, _I, _EV, _DEA],
1126
+ [0, 0, [() => EventInput$, 0], 0, 0], 1
1127
+ ];
1128
+ export var ChainedInvokeStoppedDetails$ = [3, n0, _CISDh,
1129
+ 0,
1130
+ [_E],
1131
+ [[() => EventError$, 0]], 1
1132
+ ];
1133
+ export var ChainedInvokeSucceededDetails$ = [3, n0, _CISDha,
1134
+ 0,
1135
+ [_Re],
1136
+ [[() => EventResult$, 0]], 1
1137
+ ];
1138
+ export var ChainedInvokeTimedOutDetails$ = [3, n0, _CITOD,
1139
+ 0,
1140
+ [_E],
1141
+ [[() => EventError$, 0]], 1
1142
+ ];
1143
+ export var CheckpointDurableExecutionRequest$ = [3, n0, _CDER,
1144
+ 0,
1145
+ [_DEA, _CT, _U, _CTl],
1146
+ [[0, 1], 0, [() => OperationUpdates, 0], [0, 4]], 2
1147
+ ];
1148
+ export var CheckpointDurableExecutionResponse$ = [3, n0, _CDERh,
1149
+ 0,
1150
+ [_NES, _CT],
1151
+ [[() => CheckpointUpdatedExecutionState$, 0], 0], 1
1152
+ ];
1153
+ export var CheckpointUpdatedExecutionState$ = [3, n0, _CUES,
1154
+ 0,
1155
+ [_O, _NM],
1156
+ [[() => Operations, 0], 0]
1157
+ ];
1158
+ export var CodeSigningConfig$ = [3, n0, _CSC,
1159
+ 0,
1160
+ [_CSCI, _CSCA, _AP, _CSP, _LM, _D],
1161
+ [0, 0, () => AllowedPublishers$, () => CodeSigningPolicies$, 0, 0], 5
1162
+ ];
1163
+ export var CodeSigningPolicies$ = [3, n0, _CSP,
1164
+ 0,
1165
+ [_UAOD],
1166
+ [0]
1167
+ ];
1168
+ export var Concurrency$ = [3, n0, _C,
1169
+ 0,
1170
+ [_RCEe],
1171
+ [1]
1172
+ ];
1173
+ export var ContextDetails$ = [3, n0, _CDo,
1174
+ 0,
1175
+ [_RCe, _Re, _E],
1176
+ [2, [() => OperationPayload, 0], [() => ErrorObject$, 0]]
1177
+ ];
1178
+ export var ContextFailedDetails$ = [3, n0, _CFDo,
1179
+ 0,
1180
+ [_E],
1181
+ [[() => EventError$, 0]], 1
1182
+ ];
1183
+ export var ContextOptions$ = [3, n0, _COo,
1184
+ 0,
1185
+ [_RCe],
1186
+ [2]
1187
+ ];
1188
+ export var ContextStartedDetails$ = [3, n0, _CSDo,
1189
+ 0,
1190
+ [],
1191
+ []
1192
+ ];
1193
+ export var ContextSucceededDetails$ = [3, n0, _CSDon,
1194
+ 0,
1195
+ [_Re],
1196
+ [[() => EventResult$, 0]], 1
1197
+ ];
1198
+ export var Cors$ = [3, n0, _Co,
1199
+ 0,
1200
+ [_ACl, _AH, _AM, _AO, _EH, _MA],
1201
+ [2, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 1]
1202
+ ];
1203
+ export var CreateAliasRequest$ = [3, n0, _CAR,
1204
+ 0,
1205
+ [_FN, _N, _FV, _D, _RC],
1206
+ [[0, 1], 0, 0, 0, () => AliasRoutingConfiguration$], 3
1207
+ ];
1208
+ export var CreateCapacityProviderRequest$ = [3, n0, _CCPR,
1209
+ 0,
1210
+ [_CPN, _VC, _PC, _IR, _CPSC, _KKA, _Ta],
1211
+ [0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 128 | 0], 3
1212
+ ];
1213
+ export var CreateCapacityProviderResponse$ = [3, n0, _CCPRr,
1214
+ 0,
1215
+ [_CP],
1216
+ [() => CapacityProvider$], 1
1217
+ ];
1218
+ export var CreateCodeSigningConfigRequest$ = [3, n0, _CCSCR,
1219
+ 0,
1220
+ [_AP, _D, _CSP, _Ta],
1221
+ [() => AllowedPublishers$, 0, () => CodeSigningPolicies$, 128 | 0], 1
1222
+ ];
1223
+ export var CreateCodeSigningConfigResponse$ = [3, n0, _CCSCRr,
1224
+ 0,
1225
+ [_CSC],
1226
+ [() => CodeSigningConfig$], 1
1227
+ ];
1228
+ export var CreateEventSourceMappingRequest$ = [3, n0, _CESMR,
1229
+ 0,
1230
+ [_FN, _ESA, _En, _BSa, _FCi, _MBWIS, _PF, _SPt, _SPT, _DC, _MRAIS, _BBOFE, _MRA, _Ta, _TWIS, _To, _Qu, _SAC, _SMES, _FRT, _AMKESC, _SMKESC, _SC, _DDBESC, _KMSKA, _MC, _LC, _PPC],
1231
+ [0, 0, 2, 1, () => FilterCriteria$, 1, 1, 0, 4, () => DestinationConfig$, 1, 2, 1, 128 | 0, 1, 64 | 0, 64 | 0, () => SourceAccessConfigurations, () => SelfManagedEventSource$, 64 | 0, () => AmazonManagedKafkaEventSourceConfig$, () => SelfManagedKafkaEventSourceConfig$, () => ScalingConfig$, () => DocumentDBEventSourceConfig$, 0, () => EventSourceMappingMetricsConfig$, () => EventSourceMappingLoggingConfig$, () => ProvisionedPollerConfig$], 1
1232
+ ];
1233
+ export var CreateFunctionRequest$ = [3, n0, _CFR,
1234
+ 0,
1235
+ [_FN, _Ro, _Cod, _Ru, _H, _D, _Ti, _MS, _Pu, _VC, _PT, _DLC, _Env, _KMSKA, _TC, _Ta, _L, _FSC, _IC, _CSCA, _Ar, _ES, _SSn, _LC, _CPC, _PTu, _DCu, _TCe],
1236
+ [0, 0, [() => FunctionCode$, 0], 0, 0, 0, 1, 1, 2, () => VpcConfig$, 0, () => DeadLetterConfig$, [() => Environment$, 0], 0, () => TracingConfig$, 128 | 0, 64 | 0, () => FileSystemConfigList, () => ImageConfig$, 0, 64 | 0, () => EphemeralStorage$, () => SnapStart$, () => LoggingConfig$, () => CapacityProviderConfig$, 0, () => DurableConfig$, () => TenancyConfig$], 3
1237
+ ];
1238
+ export var CreateFunctionUrlConfigRequest$ = [3, n0, _CFUCR,
1239
+ 0,
1240
+ [_FN, _AT, _Q, _Co, _IM],
1241
+ [[0, 1], 0, [0, { [_hQ]: _Q }], () => Cors$, 0], 2
1242
+ ];
1243
+ export var CreateFunctionUrlConfigResponse$ = [3, n0, _CFUCRr,
1244
+ 0,
1245
+ [_FU, _FA, _AT, _CTr, _Co, _IM],
1246
+ [0, 0, 0, 0, () => Cors$, 0], 4
1247
+ ];
1248
+ export var DeadLetterConfig$ = [3, n0, _DLC,
1249
+ 0,
1250
+ [_TA],
1251
+ [0]
1252
+ ];
1253
+ export var DeleteAliasRequest$ = [3, n0, _DAR,
1254
+ 0,
1255
+ [_FN, _N],
1256
+ [[0, 1], [0, 1]], 2
1257
+ ];
1258
+ export var DeleteCapacityProviderRequest$ = [3, n0, _DCPR,
1259
+ 0,
1260
+ [_CPN],
1261
+ [[0, 1]], 1
1262
+ ];
1263
+ export var DeleteCapacityProviderResponse$ = [3, n0, _DCPRe,
1264
+ 0,
1265
+ [_CP],
1266
+ [() => CapacityProvider$], 1
1267
+ ];
1268
+ export var DeleteCodeSigningConfigRequest$ = [3, n0, _DCSCR,
1269
+ 0,
1270
+ [_CSCA],
1271
+ [[0, 1]], 1
1272
+ ];
1273
+ export var DeleteCodeSigningConfigResponse$ = [3, n0, _DCSCRe,
1274
+ 0,
1275
+ [],
1276
+ []
1277
+ ];
1278
+ export var DeleteEventSourceMappingRequest$ = [3, n0, _DESMR,
1279
+ 0,
1280
+ [_UUID],
1281
+ [[0, 1]], 1
1282
+ ];
1283
+ export var DeleteFunctionCodeSigningConfigRequest$ = [3, n0, _DFCSCR,
1284
+ 0,
1285
+ [_FN],
1286
+ [[0, 1]], 1
1287
+ ];
1288
+ export var DeleteFunctionConcurrencyRequest$ = [3, n0, _DFCR,
1289
+ 0,
1290
+ [_FN],
1291
+ [[0, 1]], 1
1292
+ ];
1293
+ export var DeleteFunctionEventInvokeConfigRequest$ = [3, n0, _DFEICR,
1294
+ 0,
1295
+ [_FN, _Q],
1296
+ [[0, 1], [0, { [_hQ]: _Q }]], 1
1297
+ ];
1298
+ export var DeleteFunctionRequest$ = [3, n0, _DFR,
1299
+ 0,
1300
+ [_FN, _Q],
1301
+ [[0, 1], [0, { [_hQ]: _Q }]], 1
1302
+ ];
1303
+ export var DeleteFunctionResponse$ = [3, n0, _DFRe,
1304
+ 0,
1305
+ [_SCt],
1306
+ [[1, 32]]
1307
+ ];
1308
+ export var DeleteFunctionUrlConfigRequest$ = [3, n0, _DFUCR,
1309
+ 0,
1310
+ [_FN, _Q],
1311
+ [[0, 1], [0, { [_hQ]: _Q }]], 1
1312
+ ];
1313
+ export var DeleteLayerVersionRequest$ = [3, n0, _DLVR,
1314
+ 0,
1315
+ [_LN, _VN],
1316
+ [[0, 1], [1, 1]], 2
1317
+ ];
1318
+ export var DeleteProvisionedConcurrencyConfigRequest$ = [3, n0, _DPCCR,
1319
+ 0,
1320
+ [_FN, _Q],
1321
+ [[0, 1], [0, { [_hQ]: _Q }]], 2
1322
+ ];
1323
+ export var DestinationConfig$ = [3, n0, _DC,
1324
+ 0,
1325
+ [_OS, _OF],
1326
+ [() => OnSuccess$, () => OnFailure$]
1327
+ ];
1328
+ export var DocumentDBEventSourceConfig$ = [3, n0, _DDBESC,
1329
+ 0,
1330
+ [_DN, _CN, _FD],
1331
+ [0, 0, 0]
1332
+ ];
1333
+ export var DurableConfig$ = [3, n0, _DCu,
1334
+ 0,
1335
+ [_RPID, _ETx],
1336
+ [1, 1]
1337
+ ];
1338
+ export var Environment$ = [3, n0, _Env,
1339
+ 0,
1340
+ [_V],
1341
+ [[() => EnvironmentVariables, 0]]
1342
+ ];
1343
+ export var EnvironmentError$ = [3, n0, _EE,
1344
+ 0,
1345
+ [_EC, _M],
1346
+ [0, [() => SensitiveString, 0]]
1347
+ ];
1348
+ export var EnvironmentResponse$ = [3, n0, _ER,
1349
+ 0,
1350
+ [_V, _E],
1351
+ [[() => EnvironmentVariables, 0], [() => EnvironmentError$, 0]]
1352
+ ];
1353
+ export var EphemeralStorage$ = [3, n0, _ES,
1354
+ 0,
1355
+ [_Si],
1356
+ [1], 1
1357
+ ];
1358
+ export var ErrorObject$ = [3, n0, _EO,
1359
+ 0,
1360
+ [_EM, _ET, _ED, _ST],
1361
+ [[() => ErrorMessage, 0], [() => ErrorType, 0], [() => ErrorData, 0], [() => StackTraceEntries, 0]]
1362
+ ];
1363
+ export var Event$ = [3, n0, _Ev,
1364
+ 0,
1365
+ [_ETv, _STu, _EI, _Id, _N, _ETve, _PI, _ESD, _ESDx, _EFD, _ETOD, _ESDxe, _CSDo, _CSDon, _CFDo, _WSD, _WSDa, _WCD, _SSD, _SSDt, _SFD, _CISD, _CISDha, _CIFD, _CITOD, _CISDh, _CSD, _CSDa, _CFD, _CTOD, _ICD],
1366
+ [0, 0, 1, 0, 0, 4, 0, [() => ExecutionStartedDetails$, 0], [() => ExecutionSucceededDetails$, 0], [() => ExecutionFailedDetails$, 0], [() => ExecutionTimedOutDetails$, 0], [() => ExecutionStoppedDetails$, 0], () => ContextStartedDetails$, [() => ContextSucceededDetails$, 0], [() => ContextFailedDetails$, 0], () => WaitStartedDetails$, () => WaitSucceededDetails$, [() => WaitCancelledDetails$, 0], () => StepStartedDetails$, [() => StepSucceededDetails$, 0], [() => StepFailedDetails$, 0], [() => ChainedInvokeStartedDetails$, 0], [() => ChainedInvokeSucceededDetails$, 0], [() => ChainedInvokeFailedDetails$, 0], [() => ChainedInvokeTimedOutDetails$, 0], [() => ChainedInvokeStoppedDetails$, 0], () => CallbackStartedDetails$, [() => CallbackSucceededDetails$, 0], [() => CallbackFailedDetails$, 0], [() => CallbackTimedOutDetails$, 0], [() => InvocationCompletedDetails$, 0]]
1367
+ ];
1368
+ export var EventError$ = [3, n0, _EEv,
1369
+ 0,
1370
+ [_Pa, _Tr],
1371
+ [[() => ErrorObject$, 0], 2]
1372
+ ];
1373
+ export var EventInput$ = [3, n0, _EIv,
1374
+ 0,
1375
+ [_Pa, _Tr],
1376
+ [[() => InputPayload, 0], 2]
1377
+ ];
1378
+ export var EventResult$ = [3, n0, _ERv,
1379
+ 0,
1380
+ [_Pa, _Tr],
1381
+ [[() => OperationPayload, 0], 2]
1382
+ ];
1383
+ export var EventSourceMappingConfiguration$ = [3, n0, _ESMC,
1384
+ 0,
1385
+ [_UUID, _SPt, _SPT, _BSa, _MBWIS, _PF, _ESA, _FCi, _FA, _LM, _LPR, _St, _STR, _DC, _To, _Qu, _SAC, _SMES, _MRAIS, _BBOFE, _MRA, _TWIS, _FRT, _AMKESC, _SMKESC, _SC, _DDBESC, _KMSKA, _FCE, _ESMA, _MC, _LC, _PPC],
1386
+ [0, 0, 4, 1, 1, 1, 0, () => FilterCriteria$, 0, 4, 0, 0, 0, () => DestinationConfig$, 64 | 0, 64 | 0, () => SourceAccessConfigurations, () => SelfManagedEventSource$, 1, 2, 1, 1, 64 | 0, () => AmazonManagedKafkaEventSourceConfig$, () => SelfManagedKafkaEventSourceConfig$, () => ScalingConfig$, () => DocumentDBEventSourceConfig$, 0, () => FilterCriteriaError$, 0, () => EventSourceMappingMetricsConfig$, () => EventSourceMappingLoggingConfig$, () => ProvisionedPollerConfig$]
1387
+ ];
1388
+ export var EventSourceMappingLoggingConfig$ = [3, n0, _ESMLC,
1389
+ 0,
1390
+ [_SLL],
1391
+ [0]
1392
+ ];
1393
+ export var EventSourceMappingMetricsConfig$ = [3, n0, _ESMMC,
1394
+ 0,
1395
+ [_Me],
1396
+ [64 | 0]
1397
+ ];
1398
+ export var Execution$ = [3, n0, _Ex,
1399
+ 0,
1400
+ [_DEA, _DEN, _FA, _Sta, _STt, _ETn],
1401
+ [0, 0, 0, 0, 4, 4], 5
1402
+ ];
1403
+ export var ExecutionDetails$ = [3, n0, _EDx,
1404
+ 0,
1405
+ [_IP],
1406
+ [[() => InputPayload, 0]]
1407
+ ];
1408
+ export var ExecutionFailedDetails$ = [3, n0, _EFD,
1409
+ 0,
1410
+ [_E],
1411
+ [[() => EventError$, 0]], 1
1412
+ ];
1413
+ export var ExecutionStartedDetails$ = [3, n0, _ESD,
1414
+ 0,
1415
+ [_I, _ETx],
1416
+ [[() => EventInput$, 0], 1], 2
1417
+ ];
1418
+ export var ExecutionStoppedDetails$ = [3, n0, _ESDxe,
1419
+ 0,
1420
+ [_E],
1421
+ [[() => EventError$, 0]], 1
1422
+ ];
1423
+ export var ExecutionSucceededDetails$ = [3, n0, _ESDx,
1424
+ 0,
1425
+ [_Re],
1426
+ [[() => EventResult$, 0]], 1
1427
+ ];
1428
+ export var ExecutionTimedOutDetails$ = [3, n0, _ETOD,
1429
+ 0,
1430
+ [_E],
1431
+ [[() => EventError$, 0]]
1432
+ ];
1433
+ export var FileSystemConfig$ = [3, n0, _FSCi,
1434
+ 0,
1435
+ [_Arn, _LMP],
1436
+ [0, 0], 2
1437
+ ];
1438
+ export var Filter$ = [3, n0, _F,
1439
+ 0,
1440
+ [_Pat],
1441
+ [0]
1442
+ ];
1443
+ export var FilterCriteria$ = [3, n0, _FCi,
1444
+ 0,
1445
+ [_Fi],
1446
+ [() => FilterList]
1447
+ ];
1448
+ export var FilterCriteriaError$ = [3, n0, _FCE,
1449
+ 0,
1450
+ [_EC, _M],
1451
+ [0, 0]
1452
+ ];
1453
+ export var FunctionCode$ = [3, n0, _FCu,
1454
+ 0,
1455
+ [_ZF, _SB, _SK, _SOV, _IU, _SKMSKA],
1456
+ [[() => _Blob, 0], 0, 0, 0, 0, 0]
1457
+ ];
1458
+ export var FunctionCodeLocation$ = [3, n0, _FCL,
1459
+ 0,
1460
+ [_RT, _Lo, _IU, _RIU, _SKMSKA],
1461
+ [0, 0, 0, 0, 0]
1462
+ ];
1463
+ export var FunctionConfiguration$ = [3, n0, _FCun,
1464
+ 0,
1465
+ [_FN, _FA, _Ru, _Ro, _H, _CS, _D, _Ti, _MS, _LM, _CSo, _Ve, _VC, _DLC, _Env, _KMSKA, _TC, _MAa, _RI, _L, _St, _SR, _SRCt, _LUS, _LUSR, _LUSRC, _FSC, _PT, _ICR, _SPVAi, _SJA, _Ar, _ES, _SSn, _RVC, _LC, _CPC, _CSon, _DCu, _TCe],
1466
+ [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, () => VpcConfigResponse$, () => DeadLetterConfig$, [() => EnvironmentResponse$, 0], 0, () => TracingConfigResponse$, 0, 0, () => LayersReferenceList, 0, 0, 0, 0, 0, 0, () => FileSystemConfigList, 0, [() => ImageConfigResponse$, 0], 0, 0, 64 | 0, () => EphemeralStorage$, () => SnapStartResponse$, [() => RuntimeVersionConfig$, 0], () => LoggingConfig$, () => CapacityProviderConfig$, 0, () => DurableConfig$, () => TenancyConfig$]
1467
+ ];
1468
+ export var FunctionEventInvokeConfig$ = [3, n0, _FEIC,
1469
+ 0,
1470
+ [_LM, _FA, _MRA, _MEAIS, _DC],
1471
+ [4, 0, 1, 1, () => DestinationConfig$]
1472
+ ];
1473
+ export var FunctionScalingConfig$ = [3, n0, _FSCu,
1474
+ 0,
1475
+ [_MEE, _MEEa],
1476
+ [1, 1]
1477
+ ];
1478
+ export var FunctionUrlConfig$ = [3, n0, _FUC,
1479
+ 0,
1480
+ [_FU, _FA, _CTr, _LMT, _AT, _Co, _IM],
1481
+ [0, 0, 0, 0, 0, () => Cors$, 0], 5
1482
+ ];
1483
+ export var FunctionVersionsByCapacityProviderListItem$ = [3, n0, _FVBCPLI,
1484
+ 0,
1485
+ [_FA, _St],
1486
+ [0, 0], 2
1487
+ ];
1488
+ export var GetAccountSettingsRequest$ = [3, n0, _GASR,
1489
+ 0,
1490
+ [],
1491
+ []
1492
+ ];
1493
+ export var GetAccountSettingsResponse$ = [3, n0, _GASRe,
1494
+ 0,
1495
+ [_AL, _AU],
1496
+ [() => AccountLimit$, () => AccountUsage$]
1497
+ ];
1498
+ export var GetAliasRequest$ = [3, n0, _GAR,
1499
+ 0,
1500
+ [_FN, _N],
1501
+ [[0, 1], [0, 1]], 2
1502
+ ];
1503
+ export var GetCapacityProviderRequest$ = [3, n0, _GCPR,
1504
+ 0,
1505
+ [_CPN],
1506
+ [[0, 1]], 1
1507
+ ];
1508
+ export var GetCapacityProviderResponse$ = [3, n0, _GCPRe,
1509
+ 0,
1510
+ [_CP],
1511
+ [() => CapacityProvider$], 1
1512
+ ];
1513
+ export var GetCodeSigningConfigRequest$ = [3, n0, _GCSCR,
1514
+ 0,
1515
+ [_CSCA],
1516
+ [[0, 1]], 1
1517
+ ];
1518
+ export var GetCodeSigningConfigResponse$ = [3, n0, _GCSCRe,
1519
+ 0,
1520
+ [_CSC],
1521
+ [() => CodeSigningConfig$], 1
1522
+ ];
1523
+ export var GetDurableExecutionHistoryRequest$ = [3, n0, _GDEHR,
1524
+ 0,
1525
+ [_DEA, _IED, _MI, _Ma, _RO],
1526
+ [[0, 1], [2, { [_hQ]: _IED }], [1, { [_hQ]: _MI }], [0, { [_hQ]: _Ma }], [2, { [_hQ]: _RO }]], 1
1527
+ ];
1528
+ export var GetDurableExecutionHistoryResponse$ = [3, n0, _GDEHRe,
1529
+ 0,
1530
+ [_Eve, _NM],
1531
+ [[() => Events, 0], 0], 1
1532
+ ];
1533
+ export var GetDurableExecutionRequest$ = [3, n0, _GDER,
1534
+ 0,
1535
+ [_DEA],
1536
+ [[0, 1]], 1
1537
+ ];
1538
+ export var GetDurableExecutionResponse$ = [3, n0, _GDERe,
1539
+ 0,
1540
+ [_DEA, _DEN, _FA, _STt, _Sta, _IP, _Re, _E, _ETn, _Ve, _TH],
1541
+ [0, 0, 0, 4, 0, [() => InputPayload, 0], [() => OutputPayload, 0], [() => ErrorObject$, 0], 4, 0, () => TraceHeader$], 5
1542
+ ];
1543
+ export var GetDurableExecutionStateRequest$ = [3, n0, _GDESR,
1544
+ 0,
1545
+ [_DEA, _CT, _Ma, _MI],
1546
+ [[0, 1], [0, { [_hQ]: _CT }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 2
1547
+ ];
1548
+ export var GetDurableExecutionStateResponse$ = [3, n0, _GDESRe,
1549
+ 0,
1550
+ [_O, _NM],
1551
+ [[() => Operations, 0], 0], 1
1552
+ ];
1553
+ export var GetEventSourceMappingRequest$ = [3, n0, _GESMR,
1554
+ 0,
1555
+ [_UUID],
1556
+ [[0, 1]], 1
1557
+ ];
1558
+ export var GetFunctionCodeSigningConfigRequest$ = [3, n0, _GFCSCR,
1559
+ 0,
1560
+ [_FN],
1561
+ [[0, 1]], 1
1562
+ ];
1563
+ export var GetFunctionCodeSigningConfigResponse$ = [3, n0, _GFCSCRe,
1564
+ 0,
1565
+ [_CSCA, _FN],
1566
+ [0, 0], 2
1567
+ ];
1568
+ export var GetFunctionConcurrencyRequest$ = [3, n0, _GFCR,
1569
+ 0,
1570
+ [_FN],
1571
+ [[0, 1]], 1
1572
+ ];
1573
+ export var GetFunctionConcurrencyResponse$ = [3, n0, _GFCRe,
1574
+ 0,
1575
+ [_RCEe],
1576
+ [1]
1577
+ ];
1578
+ export var GetFunctionConfigurationRequest$ = [3, n0, _GFCRet,
1579
+ 0,
1580
+ [_FN, _Q],
1581
+ [[0, 1], [0, { [_hQ]: _Q }]], 1
1582
+ ];
1583
+ export var GetFunctionEventInvokeConfigRequest$ = [3, n0, _GFEICR,
1584
+ 0,
1585
+ [_FN, _Q],
1586
+ [[0, 1], [0, { [_hQ]: _Q }]], 1
1587
+ ];
1588
+ export var GetFunctionRecursionConfigRequest$ = [3, n0, _GFRCR,
1589
+ 0,
1590
+ [_FN],
1591
+ [[0, 1]], 1
1592
+ ];
1593
+ export var GetFunctionRecursionConfigResponse$ = [3, n0, _GFRCRe,
1594
+ 0,
1595
+ [_RL],
1596
+ [0]
1597
+ ];
1598
+ export var GetFunctionRequest$ = [3, n0, _GFR,
1599
+ 0,
1600
+ [_FN, _Q],
1601
+ [[0, 1], [0, { [_hQ]: _Q }]], 1
1602
+ ];
1603
+ export var GetFunctionResponse$ = [3, n0, _GFRe,
1604
+ 0,
1605
+ [_Con, _Cod, _Ta, _TE, _C],
1606
+ [[() => FunctionConfiguration$, 0], () => FunctionCodeLocation$, 128 | 0, () => TagsError$, () => Concurrency$]
1607
+ ];
1608
+ export var GetFunctionScalingConfigRequest$ = [3, n0, _GFSCR,
1609
+ 0,
1610
+ [_FN, _Q],
1611
+ [[0, 1], [0, { [_hQ]: _Q }]], 2
1612
+ ];
1613
+ export var GetFunctionScalingConfigResponse$ = [3, n0, _GFSCRe,
1614
+ 0,
1615
+ [_FA, _AFSC, _RFSC],
1616
+ [0, () => FunctionScalingConfig$, () => FunctionScalingConfig$]
1617
+ ];
1618
+ export var GetFunctionUrlConfigRequest$ = [3, n0, _GFUCR,
1619
+ 0,
1620
+ [_FN, _Q],
1621
+ [[0, 1], [0, { [_hQ]: _Q }]], 1
1622
+ ];
1623
+ export var GetFunctionUrlConfigResponse$ = [3, n0, _GFUCRe,
1624
+ 0,
1625
+ [_FU, _FA, _AT, _CTr, _LMT, _Co, _IM],
1626
+ [0, 0, 0, 0, 0, () => Cors$, 0], 5
1627
+ ];
1628
+ export var GetLayerVersionByArnRequest$ = [3, n0, _GLVBAR,
1629
+ 0,
1630
+ [_Arn],
1631
+ [[0, { [_hQ]: _Arn }]], 1
1632
+ ];
1633
+ export var GetLayerVersionPolicyRequest$ = [3, n0, _GLVPR,
1634
+ 0,
1635
+ [_LN, _VN],
1636
+ [[0, 1], [1, 1]], 2
1637
+ ];
1638
+ export var GetLayerVersionPolicyResponse$ = [3, n0, _GLVPRe,
1639
+ 0,
1640
+ [_Po, _RI],
1641
+ [0, 0]
1642
+ ];
1643
+ export var GetLayerVersionRequest$ = [3, n0, _GLVR,
1644
+ 0,
1645
+ [_LN, _VN],
1646
+ [[0, 1], [1, 1]], 2
1647
+ ];
1648
+ export var GetLayerVersionResponse$ = [3, n0, _GLVRe,
1649
+ 0,
1650
+ [_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI, _CA],
1651
+ [() => LayerVersionContentOutput$, 0, 0, 0, 0, 1, 64 | 0, 0, 64 | 0]
1652
+ ];
1653
+ export var GetPolicyRequest$ = [3, n0, _GPR,
1654
+ 0,
1655
+ [_FN, _Q],
1656
+ [[0, 1], [0, { [_hQ]: _Q }]], 1
1657
+ ];
1658
+ export var GetPolicyResponse$ = [3, n0, _GPRe,
1659
+ 0,
1660
+ [_Po, _RI],
1661
+ [0, 0]
1662
+ ];
1663
+ export var GetProvisionedConcurrencyConfigRequest$ = [3, n0, _GPCCR,
1664
+ 0,
1665
+ [_FN, _Q],
1666
+ [[0, 1], [0, { [_hQ]: _Q }]], 2
1667
+ ];
1668
+ export var GetProvisionedConcurrencyConfigResponse$ = [3, n0, _GPCCRe,
1669
+ 0,
1670
+ [_RPCE, _APCE, _APCEl, _Sta, _SRt, _LM],
1671
+ [1, 1, 1, 0, 0, 0]
1672
+ ];
1673
+ export var GetRuntimeManagementConfigRequest$ = [3, n0, _GRMCR,
1674
+ 0,
1675
+ [_FN, _Q],
1676
+ [[0, 1], [0, { [_hQ]: _Q }]], 1
1677
+ ];
1678
+ export var GetRuntimeManagementConfigResponse$ = [3, n0, _GRMCRe,
1679
+ 0,
1680
+ [_URO, _RVA, _FA],
1681
+ [0, 0, 0]
1682
+ ];
1683
+ export var ImageConfig$ = [3, n0, _IC,
1684
+ 0,
1685
+ [_EP, _Com, _WD],
1686
+ [64 | 0, 64 | 0, 0]
1687
+ ];
1688
+ export var ImageConfigError$ = [3, n0, _ICE,
1689
+ 0,
1690
+ [_EC, _M],
1691
+ [0, [() => SensitiveString, 0]]
1692
+ ];
1693
+ export var ImageConfigResponse$ = [3, n0, _ICR,
1694
+ 0,
1695
+ [_IC, _E],
1696
+ [() => ImageConfig$, [() => ImageConfigError$, 0]]
1697
+ ];
1698
+ export var InstanceRequirements$ = [3, n0, _IR,
1699
+ 0,
1700
+ [_Ar, _AIT, _EIT],
1701
+ [64 | 0, 64 | 0, 64 | 0]
1702
+ ];
1703
+ export var InvocationCompletedDetails$ = [3, n0, _ICD,
1704
+ 0,
1705
+ [_STt, _ETn, _RIe, _E],
1706
+ [4, 4, 0, [() => EventError$, 0]], 3
1707
+ ];
1708
+ export var InvocationRequest$ = [3, n0, _IRn,
1709
+ 0,
1710
+ [_FN, _IT, _LT, _CC, _DEN, _Pa, _Q, _TI],
1711
+ [[0, 1], [0, { [_hH]: _XAIT }], [0, { [_hH]: _XALT }], [0, { [_hH]: _XACC }], [0, { [_hH]: _XADEN }], [() => _Blob, 16], [0, { [_hQ]: _Q }], [0, { [_hH]: _XATI }]], 1
1712
+ ];
1713
+ export var InvocationResponse$ = [3, n0, _IRnv,
1714
+ 0,
1715
+ [_SCt, _FE, _LR, _Pa, _EV, _DEA],
1716
+ [[1, 32], [0, { [_hH]: _XAFE }], [0, { [_hH]: _XALR }], [() => _Blob, 16], [0, { [_hH]: _XAEV }], [0, { [_hH]: _XADEA }]]
1717
+ ];
1718
+ export var InvokeAsyncRequest$ = [3, n0, _IAR,
1719
+ 0,
1720
+ [_FN, _IA],
1721
+ [[0, 1], [() => BlobStream, 16]], 2
1722
+ ];
1723
+ export var InvokeAsyncResponse$ = [3, n0, _IARn,
1724
+ 0,
1725
+ [_Sta],
1726
+ [[1, 32]]
1727
+ ];
1728
+ export var InvokeResponseStreamUpdate$ = [3, n0, _IRSU,
1729
+ 0,
1730
+ [_Pa],
1731
+ [[() => _Blob, { [_eP]: 1 }]]
1732
+ ];
1733
+ export var InvokeWithResponseStreamCompleteEvent$ = [3, n0, _IWRSCE,
1734
+ 0,
1735
+ [_EC, _EDr, _LR],
1736
+ [0, 0, 0]
1737
+ ];
1738
+ export var InvokeWithResponseStreamRequest$ = [3, n0, _IWRSR,
1739
+ 0,
1740
+ [_FN, _IT, _LT, _CC, _Q, _Pa, _TI],
1741
+ [[0, 1], [0, { [_hH]: _XAIT }], [0, { [_hH]: _XALT }], [0, { [_hH]: _XACC }], [0, { [_hQ]: _Q }], [() => _Blob, 16], [0, { [_hH]: _XATI }]], 1
1742
+ ];
1743
+ export var InvokeWithResponseStreamResponse$ = [3, n0, _IWRSRn,
1744
+ 0,
1745
+ [_SCt, _EV, _ESv, _RSCT],
1746
+ [[1, 32], [0, { [_hH]: _XAEV }], [() => InvokeWithResponseStreamResponseEvent$, 16], [0, { [_hH]: _CT_ }]]
1747
+ ];
1748
+ export var KafkaSchemaRegistryAccessConfig$ = [3, n0, _KSRAC,
1749
+ 0,
1750
+ [_T, _URI],
1751
+ [0, 0]
1752
+ ];
1753
+ export var KafkaSchemaRegistryConfig$ = [3, n0, _KSRC,
1754
+ 0,
1755
+ [_SRURI, _ERF, _ACc, _SVC],
1756
+ [0, 0, () => KafkaSchemaRegistryAccessConfigList, () => KafkaSchemaValidationConfigList]
1757
+ ];
1758
+ export var KafkaSchemaValidationConfig$ = [3, n0, _KSVC,
1759
+ 0,
1760
+ [_At],
1761
+ [0]
1762
+ ];
1763
+ export var LambdaManagedInstancesCapacityProviderConfig$ = [3, n0, _LMICPC,
1764
+ 0,
1765
+ [_CPA, _PEEMC, _EEMGBPVC],
1766
+ [0, 1, 1], 1
1767
+ ];
1768
+ export var Layer$ = [3, n0, _La,
1769
+ 0,
1770
+ [_Arn, _CS, _SPVAi, _SJA],
1771
+ [0, 1, 0, 0]
1772
+ ];
1773
+ export var LayersListItem$ = [3, n0, _LLI,
1774
+ 0,
1775
+ [_LN, _LA, _LMV],
1776
+ [0, 0, () => LayerVersionsListItem$]
1777
+ ];
1778
+ export var LayerVersionContentInput$ = [3, n0, _LVCI,
1779
+ 0,
1780
+ [_SB, _SK, _SOV, _ZF],
1781
+ [0, 0, 0, [() => _Blob, 0]]
1782
+ ];
1783
+ export var LayerVersionContentOutput$ = [3, n0, _LVCO,
1784
+ 0,
1785
+ [_Lo, _CSo, _CS, _SPVAi, _SJA],
1786
+ [0, 0, 1, 0, 0]
1787
+ ];
1788
+ export var LayerVersionsListItem$ = [3, n0, _LVLI,
1789
+ 0,
1790
+ [_LVA, _Ve, _D, _CDr, _CR, _LI, _CA],
1791
+ [0, 1, 0, 0, 64 | 0, 0, 64 | 0]
1792
+ ];
1793
+ export var ListAliasesRequest$ = [3, n0, _LAR,
1794
+ 0,
1795
+ [_FN, _FV, _Ma, _MI],
1796
+ [[0, 1], [0, { [_hQ]: _FV }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
1797
+ ];
1798
+ export var ListAliasesResponse$ = [3, n0, _LARi,
1799
+ 0,
1800
+ [_NM, _Al],
1801
+ [0, () => AliasList]
1802
+ ];
1803
+ export var ListCapacityProvidersRequest$ = [3, n0, _LCPR,
1804
+ 0,
1805
+ [_St, _Ma, _MI],
1806
+ [[0, { [_hQ]: _St }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
1807
+ ];
1808
+ export var ListCapacityProvidersResponse$ = [3, n0, _LCPRi,
1809
+ 0,
1810
+ [_CPa, _NM],
1811
+ [() => CapacityProvidersList, 0], 1
1812
+ ];
1813
+ export var ListCodeSigningConfigsRequest$ = [3, n0, _LCSCR,
1814
+ 0,
1815
+ [_Ma, _MI],
1816
+ [[0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
1817
+ ];
1818
+ export var ListCodeSigningConfigsResponse$ = [3, n0, _LCSCRi,
1819
+ 0,
1820
+ [_NM, _CSCo],
1821
+ [0, () => CodeSigningConfigList]
1822
+ ];
1823
+ export var ListDurableExecutionsByFunctionRequest$ = [3, n0, _LDEBFR,
1824
+ 0,
1825
+ [_FN, _Q, _DEN, _Stat, _SAt, _SBt, _RO, _Ma, _MI],
1826
+ [[0, 1], [0, { [_hQ]: _Q }], [0, { [_hQ]: _DEN }], [64 | 0, { [_hQ]: _Stat }], [4, { [_hQ]: _SAt }], [4, { [_hQ]: _SBt }], [2, { [_hQ]: _RO }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
1827
+ ];
1828
+ export var ListDurableExecutionsByFunctionResponse$ = [3, n0, _LDEBFRi,
1829
+ 0,
1830
+ [_DE, _NM],
1831
+ [() => DurableExecutions, 0]
1832
+ ];
1833
+ export var ListEventSourceMappingsRequest$ = [3, n0, _LESMR,
1834
+ 0,
1835
+ [_ESA, _FN, _Ma, _MI],
1836
+ [[0, { [_hQ]: _ESA }], [0, { [_hQ]: _FN }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
1837
+ ];
1838
+ export var ListEventSourceMappingsResponse$ = [3, n0, _LESMRi,
1839
+ 0,
1840
+ [_NM, _ESM],
1841
+ [0, () => EventSourceMappingsList]
1842
+ ];
1843
+ export var ListFunctionEventInvokeConfigsRequest$ = [3, n0, _LFEICR,
1844
+ 0,
1845
+ [_FN, _Ma, _MI],
1846
+ [[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
1847
+ ];
1848
+ export var ListFunctionEventInvokeConfigsResponse$ = [3, n0, _LFEICRi,
1849
+ 0,
1850
+ [_FEICu, _NM],
1851
+ [() => FunctionEventInvokeConfigList, 0]
1852
+ ];
1853
+ export var ListFunctionsByCodeSigningConfigRequest$ = [3, n0, _LFBCSCR,
1854
+ 0,
1855
+ [_CSCA, _Ma, _MI],
1856
+ [[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
1857
+ ];
1858
+ export var ListFunctionsByCodeSigningConfigResponse$ = [3, n0, _LFBCSCRi,
1859
+ 0,
1860
+ [_NM, _FAu],
1861
+ [0, 64 | 0]
1862
+ ];
1863
+ export var ListFunctionsRequest$ = [3, n0, _LFR,
1864
+ 0,
1865
+ [_MR, _FV, _Ma, _MI],
1866
+ [[0, { [_hQ]: _MR }], [0, { [_hQ]: _FV }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
1867
+ ];
1868
+ export var ListFunctionsResponse$ = [3, n0, _LFRi,
1869
+ 0,
1870
+ [_NM, _Fu],
1871
+ [0, [() => FunctionList, 0]]
1872
+ ];
1873
+ export var ListFunctionUrlConfigsRequest$ = [3, n0, _LFUCR,
1874
+ 0,
1875
+ [_FN, _Ma, _MI],
1876
+ [[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
1877
+ ];
1878
+ export var ListFunctionUrlConfigsResponse$ = [3, n0, _LFUCRi,
1879
+ 0,
1880
+ [_FUCu, _NM],
1881
+ [() => FunctionUrlConfigList, 0], 1
1882
+ ];
1883
+ export var ListFunctionVersionsByCapacityProviderRequest$ = [3, n0, _LFVBCPR,
1884
+ 0,
1885
+ [_CPN, _Ma, _MI],
1886
+ [[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
1887
+ ];
1888
+ export var ListFunctionVersionsByCapacityProviderResponse$ = [3, n0, _LFVBCPRi,
1889
+ 0,
1890
+ [_CPA, _FVu, _NM],
1891
+ [0, () => FunctionVersionsByCapacityProviderList, 0], 2
1892
+ ];
1893
+ export var ListLayersRequest$ = [3, n0, _LLR,
1894
+ 0,
1895
+ [_CRo, _Ma, _MI, _CAo],
1896
+ [[0, { [_hQ]: _CRo }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }], [0, { [_hQ]: _CAo }]]
1897
+ ];
1898
+ export var ListLayersResponse$ = [3, n0, _LLRi,
1899
+ 0,
1900
+ [_NM, _L],
1901
+ [0, () => LayersList]
1902
+ ];
1903
+ export var ListLayerVersionsRequest$ = [3, n0, _LLVR,
1904
+ 0,
1905
+ [_LN, _CRo, _Ma, _MI, _CAo],
1906
+ [[0, 1], [0, { [_hQ]: _CRo }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }], [0, { [_hQ]: _CAo }]], 1
1907
+ ];
1908
+ export var ListLayerVersionsResponse$ = [3, n0, _LLVRi,
1909
+ 0,
1910
+ [_NM, _LV],
1911
+ [0, () => LayerVersionsList]
1912
+ ];
1913
+ export var ListProvisionedConcurrencyConfigsRequest$ = [3, n0, _LPCCR,
1914
+ 0,
1915
+ [_FN, _Ma, _MI],
1916
+ [[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
1917
+ ];
1918
+ export var ListProvisionedConcurrencyConfigsResponse$ = [3, n0, _LPCCRi,
1919
+ 0,
1920
+ [_PCC, _NM],
1921
+ [() => ProvisionedConcurrencyConfigList, 0]
1922
+ ];
1923
+ export var ListTagsRequest$ = [3, n0, _LTR,
1924
+ 0,
1925
+ [_Res],
1926
+ [[0, 1]], 1
1927
+ ];
1928
+ export var ListTagsResponse$ = [3, n0, _LTRi,
1929
+ 0,
1930
+ [_Ta],
1931
+ [128 | 0]
1932
+ ];
1933
+ export var ListVersionsByFunctionRequest$ = [3, n0, _LVBFR,
1934
+ 0,
1935
+ [_FN, _Ma, _MI],
1936
+ [[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
1937
+ ];
1938
+ export var ListVersionsByFunctionResponse$ = [3, n0, _LVBFRi,
1939
+ 0,
1940
+ [_NM, _Ver],
1941
+ [0, [() => FunctionList, 0]]
1942
+ ];
1943
+ export var LoggingConfig$ = [3, n0, _LC,
1944
+ 0,
1945
+ [_LF, _ALL, _SLL, _LG],
1946
+ [0, 0, 0, 0]
1947
+ ];
1948
+ export var OnFailure$ = [3, n0, _OF,
1949
+ 0,
1950
+ [_De],
1951
+ [0]
1952
+ ];
1953
+ export var OnSuccess$ = [3, n0, _OS,
1954
+ 0,
1955
+ [_De],
1956
+ [0]
1957
+ ];
1958
+ export var Operation$ = [3, n0, _Op,
1959
+ 0,
1960
+ [_Id, _T, _STt, _Sta, _PI, _N, _STu, _ETn, _EDx, _CDo, _SD, _WDa, _CD, _CID],
1961
+ [0, 0, 4, 0, 0, 0, 0, 4, [() => ExecutionDetails$, 0], [() => ContextDetails$, 0], [() => StepDetails$, 0], () => WaitDetails$, [() => CallbackDetails$, 0], [() => ChainedInvokeDetails$, 0]], 4
1962
+ ];
1963
+ export var OperationUpdate$ = [3, n0, _OU,
1964
+ 0,
1965
+ [_Id, _T, _A, _PI, _N, _STu, _Pa, _E, _COo, _SO, _WO, _CO, _CIO],
1966
+ [0, 0, 0, 0, 0, 0, [() => OperationPayload, 0], [() => ErrorObject$, 0], () => ContextOptions$, () => StepOptions$, () => WaitOptions$, () => CallbackOptions$, () => ChainedInvokeOptions$], 3
1967
+ ];
1968
+ export var ProvisionedConcurrencyConfigListItem$ = [3, n0, _PCCLI,
1969
+ 0,
1970
+ [_FA, _RPCE, _APCE, _APCEl, _Sta, _SRt, _LM],
1971
+ [0, 1, 1, 1, 0, 0, 0]
1972
+ ];
1973
+ export var ProvisionedPollerConfig$ = [3, n0, _PPC,
1974
+ 0,
1975
+ [_MP, _MPa, _PGN],
1976
+ [1, 1, 0]
1977
+ ];
1978
+ export var PublishLayerVersionRequest$ = [3, n0, _PLVR,
1979
+ 0,
1980
+ [_LN, _Cont, _D, _CR, _LI, _CA],
1981
+ [[0, 1], [() => LayerVersionContentInput$, 0], 0, 64 | 0, 0, 64 | 0], 2
1982
+ ];
1983
+ export var PublishLayerVersionResponse$ = [3, n0, _PLVRu,
1984
+ 0,
1985
+ [_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI, _CA],
1986
+ [() => LayerVersionContentOutput$, 0, 0, 0, 0, 1, 64 | 0, 0, 64 | 0]
1987
+ ];
1988
+ export var PublishVersionRequest$ = [3, n0, _PVR,
1989
+ 0,
1990
+ [_FN, _CSo, _D, _RI, _PTu],
1991
+ [[0, 1], 0, 0, 0, 0], 1
1992
+ ];
1993
+ export var PutFunctionCodeSigningConfigRequest$ = [3, n0, _PFCSCR,
1994
+ 0,
1995
+ [_CSCA, _FN],
1996
+ [0, [0, 1]], 2
1997
+ ];
1998
+ export var PutFunctionCodeSigningConfigResponse$ = [3, n0, _PFCSCRu,
1999
+ 0,
2000
+ [_CSCA, _FN],
2001
+ [0, 0], 2
2002
+ ];
2003
+ export var PutFunctionConcurrencyRequest$ = [3, n0, _PFCR,
2004
+ 0,
2005
+ [_FN, _RCEe],
2006
+ [[0, 1], 1], 2
2007
+ ];
2008
+ export var PutFunctionEventInvokeConfigRequest$ = [3, n0, _PFEICR,
2009
+ 0,
2010
+ [_FN, _Q, _MRA, _MEAIS, _DC],
2011
+ [[0, 1], [0, { [_hQ]: _Q }], 1, 1, () => DestinationConfig$], 1
2012
+ ];
2013
+ export var PutFunctionRecursionConfigRequest$ = [3, n0, _PFRCR,
2014
+ 0,
2015
+ [_FN, _RL],
2016
+ [[0, 1], 0], 2
2017
+ ];
2018
+ export var PutFunctionRecursionConfigResponse$ = [3, n0, _PFRCRu,
2019
+ 0,
2020
+ [_RL],
2021
+ [0]
2022
+ ];
2023
+ export var PutFunctionScalingConfigRequest$ = [3, n0, _PFSCR,
2024
+ 0,
2025
+ [_FN, _Q, _FSCu],
2026
+ [[0, 1], [0, { [_hQ]: _Q }], () => FunctionScalingConfig$], 2
2027
+ ];
2028
+ export var PutFunctionScalingConfigResponse$ = [3, n0, _PFSCRu,
2029
+ 0,
2030
+ [_FS],
2031
+ [0]
2032
+ ];
2033
+ export var PutProvisionedConcurrencyConfigRequest$ = [3, n0, _PPCCR,
2034
+ 0,
2035
+ [_FN, _Q, _PCE],
2036
+ [[0, 1], [0, { [_hQ]: _Q }], 1], 3
2037
+ ];
2038
+ export var PutProvisionedConcurrencyConfigResponse$ = [3, n0, _PPCCRu,
2039
+ 0,
2040
+ [_RPCE, _APCE, _APCEl, _Sta, _SRt, _LM],
2041
+ [1, 1, 1, 0, 0, 0]
2042
+ ];
2043
+ export var PutRuntimeManagementConfigRequest$ = [3, n0, _PRMCR,
2044
+ 0,
2045
+ [_FN, _URO, _Q, _RVA],
2046
+ [[0, 1], 0, [0, { [_hQ]: _Q }], 0], 2
2047
+ ];
2048
+ export var PutRuntimeManagementConfigResponse$ = [3, n0, _PRMCRu,
2049
+ 0,
2050
+ [_URO, _FA, _RVA],
2051
+ [0, 0, 0], 2
2052
+ ];
2053
+ export var RemoveLayerVersionPermissionRequest$ = [3, n0, _RLVPR,
2054
+ 0,
2055
+ [_LN, _VN, _SI, _RI],
2056
+ [[0, 1], [1, 1], [0, 1], [0, { [_hQ]: _RI }]], 3
2057
+ ];
2058
+ export var RemovePermissionRequest$ = [3, n0, _RPR,
2059
+ 0,
2060
+ [_FN, _SI, _Q, _RI],
2061
+ [[0, 1], [0, 1], [0, { [_hQ]: _Q }], [0, { [_hQ]: _RI }]], 2
2062
+ ];
2063
+ export var RetryDetails$ = [3, n0, _RD,
2064
+ 0,
2065
+ [_CAu, _NADS],
2066
+ [1, 1]
2067
+ ];
2068
+ export var RuntimeVersionConfig$ = [3, n0, _RVC,
2069
+ 0,
2070
+ [_RVA, _E],
2071
+ [0, [() => RuntimeVersionError$, 0]]
2072
+ ];
2073
+ export var RuntimeVersionError$ = [3, n0, _RVE,
2074
+ 0,
2075
+ [_EC, _M],
2076
+ [0, [() => SensitiveString, 0]]
2077
+ ];
2078
+ export var ScalingConfig$ = [3, n0, _SC,
2079
+ 0,
2080
+ [_MCa],
2081
+ [1]
2082
+ ];
2083
+ export var SelfManagedEventSource$ = [3, n0, _SMES,
2084
+ 0,
2085
+ [_End],
2086
+ [[2, n0, _End, 0, 0, 64 | 0]]
2087
+ ];
2088
+ export var SelfManagedKafkaEventSourceConfig$ = [3, n0, _SMKESC,
2089
+ 0,
2090
+ [_CGI, _SRC],
2091
+ [0, () => KafkaSchemaRegistryConfig$]
2092
+ ];
2093
+ export var SendDurableExecutionCallbackFailureRequest$ = [3, n0, _SDECFR,
2094
+ 0,
2095
+ [_CI, _E],
2096
+ [[0, 1], [() => ErrorObject$, 16]], 1
2097
+ ];
2098
+ export var SendDurableExecutionCallbackFailureResponse$ = [3, n0, _SDECFRe,
2099
+ 0,
2100
+ [],
2101
+ []
2102
+ ];
2103
+ export var SendDurableExecutionCallbackHeartbeatRequest$ = [3, n0, _SDECHR,
2104
+ 0,
2105
+ [_CI],
2106
+ [[0, 1]], 1
2107
+ ];
2108
+ export var SendDurableExecutionCallbackHeartbeatResponse$ = [3, n0, _SDECHRe,
2109
+ 0,
2110
+ [],
2111
+ []
2112
+ ];
2113
+ export var SendDurableExecutionCallbackSuccessRequest$ = [3, n0, _SDECSR,
2114
+ 0,
2115
+ [_CI, _Re],
2116
+ [[0, 1], [() => BinaryOperationPayload, 16]], 1
2117
+ ];
2118
+ export var SendDurableExecutionCallbackSuccessResponse$ = [3, n0, _SDECSRe,
2119
+ 0,
2120
+ [],
2121
+ []
2122
+ ];
2123
+ export var SnapStart$ = [3, n0, _SSn,
2124
+ 0,
2125
+ [_AOp],
2126
+ [0]
2127
+ ];
2128
+ export var SnapStartResponse$ = [3, n0, _SSR,
2129
+ 0,
2130
+ [_AOp, _OSp],
2131
+ [0, 0]
2132
+ ];
2133
+ export var SourceAccessConfiguration$ = [3, n0, _SACo,
2134
+ 0,
2135
+ [_T, _URI],
2136
+ [0, 0]
2137
+ ];
2138
+ export var StepDetails$ = [3, n0, _SD,
2139
+ 0,
2140
+ [_Att, _NAT, _Re, _E],
2141
+ [1, 4, [() => OperationPayload, 0], [() => ErrorObject$, 0]]
2142
+ ];
2143
+ export var StepFailedDetails$ = [3, n0, _SFD,
2144
+ 0,
2145
+ [_E, _RD],
2146
+ [[() => EventError$, 0], () => RetryDetails$], 2
2147
+ ];
2148
+ export var StepOptions$ = [3, n0, _SO,
2149
+ 0,
2150
+ [_NADS],
2151
+ [1]
2152
+ ];
2153
+ export var StepStartedDetails$ = [3, n0, _SSD,
2154
+ 0,
2155
+ [],
2156
+ []
2157
+ ];
2158
+ export var StepSucceededDetails$ = [3, n0, _SSDt,
2159
+ 0,
2160
+ [_Re, _RD],
2161
+ [[() => EventResult$, 0], () => RetryDetails$], 2
2162
+ ];
2163
+ export var StopDurableExecutionRequest$ = [3, n0, _SDER,
2164
+ 0,
2165
+ [_DEA, _E],
2166
+ [[0, 1], [() => ErrorObject$, 16]], 1
2167
+ ];
2168
+ export var StopDurableExecutionResponse$ = [3, n0, _SDERt,
2169
+ 0,
2170
+ [_STto],
2171
+ [4], 1
2172
+ ];
2173
+ export var TagResourceRequest$ = [3, n0, _TRR,
2174
+ 0,
2175
+ [_Res, _Ta],
2176
+ [[0, 1], 128 | 0], 2
2177
+ ];
2178
+ export var TagsError$ = [3, n0, _TE,
2179
+ 0,
2180
+ [_EC, _M],
2181
+ [0, 0], 2
2182
+ ];
2183
+ export var TargetTrackingScalingPolicy$ = [3, n0, _TTSP,
2184
+ 0,
2185
+ [_PMT, _TV],
2186
+ [0, 1], 2
2187
+ ];
2188
+ export var TenancyConfig$ = [3, n0, _TCe,
2189
+ 0,
2190
+ [_TIM],
2191
+ [0], 1
2192
+ ];
2193
+ export var TraceHeader$ = [3, n0, _TH,
2194
+ 0,
2195
+ [_XATIm],
2196
+ [0]
2197
+ ];
2198
+ export var TracingConfig$ = [3, n0, _TC,
2199
+ 0,
2200
+ [_Mo],
2201
+ [0]
2202
+ ];
2203
+ export var TracingConfigResponse$ = [3, n0, _TCR,
2204
+ 0,
2205
+ [_Mo],
2206
+ [0]
2207
+ ];
2208
+ export var UntagResourceRequest$ = [3, n0, _URR,
2209
+ 0,
2210
+ [_Res, _TK],
2211
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
2212
+ ];
2213
+ export var UpdateAliasRequest$ = [3, n0, _UAR,
2214
+ 0,
2215
+ [_FN, _N, _FV, _D, _RC, _RI],
2216
+ [[0, 1], [0, 1], 0, 0, () => AliasRoutingConfiguration$, 0], 2
2217
+ ];
2218
+ export var UpdateCapacityProviderRequest$ = [3, n0, _UCPR,
2219
+ 0,
2220
+ [_CPN, _CPSC],
2221
+ [[0, 1], () => CapacityProviderScalingConfig$], 1
2222
+ ];
2223
+ export var UpdateCapacityProviderResponse$ = [3, n0, _UCPRp,
2224
+ 0,
2225
+ [_CP],
2226
+ [() => CapacityProvider$], 1
2227
+ ];
2228
+ export var UpdateCodeSigningConfigRequest$ = [3, n0, _UCSCR,
2229
+ 0,
2230
+ [_CSCA, _D, _AP, _CSP],
2231
+ [[0, 1], 0, () => AllowedPublishers$, () => CodeSigningPolicies$], 1
2232
+ ];
2233
+ export var UpdateCodeSigningConfigResponse$ = [3, n0, _UCSCRp,
2234
+ 0,
2235
+ [_CSC],
2236
+ [() => CodeSigningConfig$], 1
2237
+ ];
2238
+ export var UpdateEventSourceMappingRequest$ = [3, n0, _UESMR,
2239
+ 0,
2240
+ [_UUID, _FN, _En, _BSa, _FCi, _MBWIS, _DC, _MRAIS, _BBOFE, _MRA, _PF, _SAC, _TWIS, _FRT, _SC, _AMKESC, _SMKESC, _DDBESC, _KMSKA, _MC, _LC, _PPC],
2241
+ [[0, 1], 0, 2, 1, () => FilterCriteria$, 1, () => DestinationConfig$, 1, 2, 1, 1, () => SourceAccessConfigurations, 1, 64 | 0, () => ScalingConfig$, () => AmazonManagedKafkaEventSourceConfig$, () => SelfManagedKafkaEventSourceConfig$, () => DocumentDBEventSourceConfig$, 0, () => EventSourceMappingMetricsConfig$, () => EventSourceMappingLoggingConfig$, () => ProvisionedPollerConfig$], 1
2242
+ ];
2243
+ export var UpdateFunctionCodeRequest$ = [3, n0, _UFCR,
2244
+ 0,
2245
+ [_FN, _ZF, _SB, _SK, _SOV, _IU, _Pu, _DR, _RI, _Ar, _SKMSKA, _PTu],
2246
+ [[0, 1], [() => _Blob, 0], 0, 0, 0, 0, 2, 2, 0, 64 | 0, 0, 0], 1
2247
+ ];
2248
+ export var UpdateFunctionConfigurationRequest$ = [3, n0, _UFCRp,
2249
+ 0,
2250
+ [_FN, _Ro, _H, _D, _Ti, _MS, _VC, _Env, _Ru, _DLC, _KMSKA, _TC, _RI, _L, _FSC, _IC, _ES, _SSn, _LC, _CPC, _DCu],
2251
+ [[0, 1], 0, 0, 0, 1, 1, () => VpcConfig$, [() => Environment$, 0], 0, () => DeadLetterConfig$, 0, () => TracingConfig$, 0, 64 | 0, () => FileSystemConfigList, () => ImageConfig$, () => EphemeralStorage$, () => SnapStart$, () => LoggingConfig$, () => CapacityProviderConfig$, () => DurableConfig$], 1
2252
+ ];
2253
+ export var UpdateFunctionEventInvokeConfigRequest$ = [3, n0, _UFEICR,
2254
+ 0,
2255
+ [_FN, _Q, _MRA, _MEAIS, _DC],
2256
+ [[0, 1], [0, { [_hQ]: _Q }], 1, 1, () => DestinationConfig$], 1
2257
+ ];
2258
+ export var UpdateFunctionUrlConfigRequest$ = [3, n0, _UFUCR,
2259
+ 0,
2260
+ [_FN, _Q, _AT, _Co, _IM],
2261
+ [[0, 1], [0, { [_hQ]: _Q }], 0, () => Cors$, 0], 1
2262
+ ];
2263
+ export var UpdateFunctionUrlConfigResponse$ = [3, n0, _UFUCRp,
2264
+ 0,
2265
+ [_FU, _FA, _AT, _CTr, _LMT, _Co, _IM],
2266
+ [0, 0, 0, 0, 0, () => Cors$, 0], 5
2267
+ ];
2268
+ export var VpcConfig$ = [3, n0, _VC,
2269
+ 0,
2270
+ [_SIu, _SGI, _IAFDS],
2271
+ [64 | 0, 64 | 0, 2]
2272
+ ];
2273
+ export var VpcConfigResponse$ = [3, n0, _VCR,
2274
+ 0,
2275
+ [_SIu, _SGI, _VI, _IAFDS],
2276
+ [64 | 0, 64 | 0, 0, 2]
2277
+ ];
2278
+ export var WaitCancelledDetails$ = [3, n0, _WCD,
2279
+ 0,
2280
+ [_E],
2281
+ [[() => EventError$, 0]]
2282
+ ];
2283
+ export var WaitDetails$ = [3, n0, _WDa,
2284
+ 0,
2285
+ [_SET],
2286
+ [4]
2287
+ ];
2288
+ export var WaitOptions$ = [3, n0, _WO,
2289
+ 0,
2290
+ [_WS],
2291
+ [1]
2292
+ ];
2293
+ export var WaitStartedDetails$ = [3, n0, _WSD,
2294
+ 0,
2295
+ [_Du, _SET],
2296
+ [1, 4], 2
2297
+ ];
2298
+ export var WaitSucceededDetails$ = [3, n0, _WSDa,
2299
+ 0,
2300
+ [_Du],
2301
+ [1]
2302
+ ];
2303
+ var __Unit = "unit";
2304
+ var AliasList = [1, n0, _ALl,
2305
+ 0, () => AliasConfiguration$
2306
+ ];
2307
+ var AllowMethodsList = 64 | 0;
2308
+ var AllowOriginsList = 64 | 0;
2309
+ var ArchitecturesList = 64 | 0;
2310
+ var CapacityProviderScalingPoliciesList = [1, n0, _CPSPL,
2311
+ 0, () => TargetTrackingScalingPolicy$
2312
+ ];
2313
+ var CapacityProviderSecurityGroupIds = 64 | 0;
2314
+ var CapacityProvidersList = [1, n0, _CPL,
2315
+ 0, () => CapacityProvider$
2316
+ ];
2317
+ var CapacityProviderSubnetIds = 64 | 0;
2318
+ var CodeSigningConfigList = [1, n0, _CSCL,
2319
+ 0, () => CodeSigningConfig$
2320
+ ];
2321
+ var CompatibleArchitectures = 64 | 0;
2322
+ var CompatibleRuntimes = 64 | 0;
2323
+ var DurableExecutions = [1, n0, _DE,
2324
+ 0, () => Execution$
2325
+ ];
2326
+ var EndpointLists = 64 | 0;
2327
+ var Events = [1, n0, _Eve,
2328
+ 0, [() => Event$,
2329
+ 0]
2330
+ ];
2331
+ var EventSourceMappingMetricList = 64 | 0;
2332
+ var EventSourceMappingsList = [1, n0, _ESML,
2333
+ 0, () => EventSourceMappingConfiguration$
2334
+ ];
2335
+ var ExecutionStatusList = 64 | 0;
2336
+ var FileSystemConfigList = [1, n0, _FSCL,
2337
+ 0, () => FileSystemConfig$
2338
+ ];
2339
+ var FilterList = [1, n0, _FL,
2340
+ 0, () => Filter$
2341
+ ];
2342
+ var FunctionArnList = 64 | 0;
2343
+ var FunctionEventInvokeConfigList = [1, n0, _FEICL,
2344
+ 0, () => FunctionEventInvokeConfig$
2345
+ ];
2346
+ var FunctionList = [1, n0, _FLu,
2347
+ 0, [() => FunctionConfiguration$,
2348
+ 0]
2349
+ ];
2350
+ var FunctionResponseTypeList = 64 | 0;
2351
+ var FunctionUrlConfigList = [1, n0, _FUCL,
2352
+ 0, () => FunctionUrlConfig$
2353
+ ];
2354
+ var FunctionVersionsByCapacityProviderList = [1, n0, _FVBCPL,
2355
+ 0, () => FunctionVersionsByCapacityProviderListItem$
2356
+ ];
2357
+ var HeadersList = 64 | 0;
2358
+ var InstanceTypeSet = 64 | 0;
2359
+ var KafkaSchemaRegistryAccessConfigList = [1, n0, _KSRACL,
2360
+ 0, () => KafkaSchemaRegistryAccessConfig$
2361
+ ];
2362
+ var KafkaSchemaValidationConfigList = [1, n0, _KSVCL,
2363
+ 0, () => KafkaSchemaValidationConfig$
2364
+ ];
2365
+ var LayerList = 64 | 0;
2366
+ var LayersList = [1, n0, _LL,
2367
+ 0, () => LayersListItem$
2368
+ ];
2369
+ var LayersReferenceList = [1, n0, _LRL,
2370
+ 0, () => Layer$
2371
+ ];
2372
+ var LayerVersionsList = [1, n0, _LVL,
2373
+ 0, () => LayerVersionsListItem$
2374
+ ];
2375
+ var Operations = [1, n0, _O,
2376
+ 0, [() => Operation$,
2377
+ 0]
2378
+ ];
2379
+ var OperationUpdates = [1, n0, _OUp,
2380
+ 0, [() => OperationUpdate$,
2381
+ 0]
2382
+ ];
2383
+ var ProvisionedConcurrencyConfigList = [1, n0, _PCCL,
2384
+ 0, () => ProvisionedConcurrencyConfigListItem$
2385
+ ];
2386
+ var Queues = 64 | 0;
2387
+ var SecurityGroupIds = 64 | 0;
2388
+ var SigningProfileVersionArns = 64 | 0;
2389
+ var SourceAccessConfigurations = [1, n0, _SAC,
2390
+ 0, () => SourceAccessConfiguration$
2391
+ ];
2392
+ var StackTraceEntries = [1, n0, _STEt,
2393
+ 0, [() => StackTraceEntry,
2394
+ 0]
2395
+ ];
2396
+ var StringList = 64 | 0;
2397
+ var SubnetIds = 64 | 0;
2398
+ var TagKeyList = 64 | 0;
2399
+ var Topics = 64 | 0;
2400
+ var AdditionalVersionWeights = 128 | 1;
2401
+ var Endpoints = [2, n0, _End,
2402
+ 0, 0, 64 | 0
2403
+ ];
2404
+ var EnvironmentVariables = [2, n0, _EVn,
2405
+ 8, [() => EnvironmentVariableName,
2406
+ 0],
2407
+ [() => EnvironmentVariableValue,
2408
+ 0]
2409
+ ];
2410
+ var Tags = 128 | 0;
2411
+ export var InvokeWithResponseStreamResponseEvent$ = [4, n0, _IWRSRE,
2412
+ { [_st]: 1 },
2413
+ [_PCa, _ICn],
2414
+ [[() => InvokeResponseStreamUpdate$, 0], () => InvokeWithResponseStreamCompleteEvent$]
2415
+ ];
2416
+ export var AddLayerVersionPermission$ = [9, n0, _ALVP,
2417
+ { [_h]: ["POST", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy", 201] }, () => AddLayerVersionPermissionRequest$, () => AddLayerVersionPermissionResponse$
2418
+ ];
2419
+ export var AddPermission$ = [9, n0, _APd,
2420
+ { [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/policy", 201] }, () => AddPermissionRequest$, () => AddPermissionResponse$
2421
+ ];
2422
+ export var CheckpointDurableExecution$ = [9, n0, _CDE,
2423
+ { [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/checkpoint", 200] }, () => CheckpointDurableExecutionRequest$, () => CheckpointDurableExecutionResponse$
2424
+ ];
2425
+ export var CreateAlias$ = [9, n0, _CAr,
2426
+ { [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/aliases", 201] }, () => CreateAliasRequest$, () => AliasConfiguration$
2427
+ ];
2428
+ export var CreateCapacityProvider$ = [9, n0, _CCP,
2429
+ { [_h]: ["POST", "/2025-11-30/capacity-providers", 202] }, () => CreateCapacityProviderRequest$, () => CreateCapacityProviderResponse$
2430
+ ];
2431
+ export var CreateCodeSigningConfig$ = [9, n0, _CCSC,
2432
+ { [_h]: ["POST", "/2020-04-22/code-signing-configs", 201] }, () => CreateCodeSigningConfigRequest$, () => CreateCodeSigningConfigResponse$
2433
+ ];
2434
+ export var CreateEventSourceMapping$ = [9, n0, _CESM,
2435
+ { [_h]: ["POST", "/2015-03-31/event-source-mappings", 202] }, () => CreateEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
2436
+ ];
2437
+ export var CreateFunction$ = [9, n0, _CF,
2438
+ { [_h]: ["POST", "/2015-03-31/functions", 201] }, () => CreateFunctionRequest$, () => FunctionConfiguration$
2439
+ ];
2440
+ export var CreateFunctionUrlConfig$ = [9, n0, _CFUC,
2441
+ { [_h]: ["POST", "/2021-10-31/functions/{FunctionName}/url", 201] }, () => CreateFunctionUrlConfigRequest$, () => CreateFunctionUrlConfigResponse$
2442
+ ];
2443
+ export var DeleteAlias$ = [9, n0, _DA,
2444
+ { [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 204] }, () => DeleteAliasRequest$, () => __Unit
2445
+ ];
2446
+ export var DeleteCapacityProvider$ = [9, n0, _DCP,
2447
+ { [_h]: ["DELETE", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202] }, () => DeleteCapacityProviderRequest$, () => DeleteCapacityProviderResponse$
2448
+ ];
2449
+ export var DeleteCodeSigningConfig$ = [9, n0, _DCSC,
2450
+ { [_h]: ["DELETE", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 204] }, () => DeleteCodeSigningConfigRequest$, () => DeleteCodeSigningConfigResponse$
2451
+ ];
2452
+ export var DeleteEventSourceMapping$ = [9, n0, _DESM,
2453
+ { [_h]: ["DELETE", "/2015-03-31/event-source-mappings/{UUID}", 202] }, () => DeleteEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
2454
+ ];
2455
+ export var DeleteFunction$ = [9, n0, _DF,
2456
+ { [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}", 200] }, () => DeleteFunctionRequest$, () => DeleteFunctionResponse$
2457
+ ];
2458
+ export var DeleteFunctionCodeSigningConfig$ = [9, n0, _DFCSC,
2459
+ { [_h]: ["DELETE", "/2020-06-30/functions/{FunctionName}/code-signing-config", 204] }, () => DeleteFunctionCodeSigningConfigRequest$, () => __Unit
2460
+ ];
2461
+ export var DeleteFunctionConcurrency$ = [9, n0, _DFC,
2462
+ { [_h]: ["DELETE", "/2017-10-31/functions/{FunctionName}/concurrency", 204] }, () => DeleteFunctionConcurrencyRequest$, () => __Unit
2463
+ ];
2464
+ export var DeleteFunctionEventInvokeConfig$ = [9, n0, _DFEIC,
2465
+ { [_h]: ["DELETE", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 204] }, () => DeleteFunctionEventInvokeConfigRequest$, () => __Unit
2466
+ ];
2467
+ export var DeleteFunctionUrlConfig$ = [9, n0, _DFUC,
2468
+ { [_h]: ["DELETE", "/2021-10-31/functions/{FunctionName}/url", 204] }, () => DeleteFunctionUrlConfigRequest$, () => __Unit
2469
+ ];
2470
+ export var DeleteLayerVersion$ = [9, n0, _DLV,
2471
+ { [_h]: ["DELETE", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}", 204] }, () => DeleteLayerVersionRequest$, () => __Unit
2472
+ ];
2473
+ export var DeleteProvisionedConcurrencyConfig$ = [9, n0, _DPCC,
2474
+ { [_h]: ["DELETE", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 204] }, () => DeleteProvisionedConcurrencyConfigRequest$, () => __Unit
2475
+ ];
2476
+ export var GetAccountSettings$ = [9, n0, _GAS,
2477
+ { [_h]: ["GET", "/2016-08-19/account-settings", 200] }, () => GetAccountSettingsRequest$, () => GetAccountSettingsResponse$
2478
+ ];
2479
+ export var GetAlias$ = [9, n0, _GA,
2480
+ { [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 200] }, () => GetAliasRequest$, () => AliasConfiguration$
2481
+ ];
2482
+ export var GetCapacityProvider$ = [9, n0, _GCP,
2483
+ { [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}", 200] }, () => GetCapacityProviderRequest$, () => GetCapacityProviderResponse$
2484
+ ];
2485
+ export var GetCodeSigningConfig$ = [9, n0, _GCSC,
2486
+ { [_h]: ["GET", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 200] }, () => GetCodeSigningConfigRequest$, () => GetCodeSigningConfigResponse$
2487
+ ];
2488
+ export var GetDurableExecution$ = [9, n0, _GDE,
2489
+ { [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}", 200] }, () => GetDurableExecutionRequest$, () => GetDurableExecutionResponse$
2490
+ ];
2491
+ export var GetDurableExecutionHistory$ = [9, n0, _GDEH,
2492
+ { [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/history", 200] }, () => GetDurableExecutionHistoryRequest$, () => GetDurableExecutionHistoryResponse$
2493
+ ];
2494
+ export var GetDurableExecutionState$ = [9, n0, _GDES,
2495
+ { [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/state", 200] }, () => GetDurableExecutionStateRequest$, () => GetDurableExecutionStateResponse$
2496
+ ];
2497
+ export var GetEventSourceMapping$ = [9, n0, _GESM,
2498
+ { [_h]: ["GET", "/2015-03-31/event-source-mappings/{UUID}", 200] }, () => GetEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
2499
+ ];
2500
+ export var GetFunction$ = [9, n0, _GF,
2501
+ { [_h]: ["GET", "/2015-03-31/functions/{FunctionName}", 200] }, () => GetFunctionRequest$, () => GetFunctionResponse$
2502
+ ];
2503
+ export var GetFunctionCodeSigningConfig$ = [9, n0, _GFCSC,
2504
+ { [_h]: ["GET", "/2020-06-30/functions/{FunctionName}/code-signing-config", 200] }, () => GetFunctionCodeSigningConfigRequest$, () => GetFunctionCodeSigningConfigResponse$
2505
+ ];
2506
+ export var GetFunctionConcurrency$ = [9, n0, _GFC,
2507
+ { [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/concurrency", 200] }, () => GetFunctionConcurrencyRequest$, () => GetFunctionConcurrencyResponse$
2508
+ ];
2509
+ export var GetFunctionConfiguration$ = [9, n0, _GFCe,
2510
+ { [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/configuration", 200] }, () => GetFunctionConfigurationRequest$, () => FunctionConfiguration$
2511
+ ];
2512
+ export var GetFunctionEventInvokeConfig$ = [9, n0, _GFEIC,
2513
+ { [_h]: ["GET", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () => GetFunctionEventInvokeConfigRequest$, () => FunctionEventInvokeConfig$
2514
+ ];
2515
+ export var GetFunctionRecursionConfig$ = [9, n0, _GFRC,
2516
+ { [_h]: ["GET", "/2024-08-31/functions/{FunctionName}/recursion-config", 200] }, () => GetFunctionRecursionConfigRequest$, () => GetFunctionRecursionConfigResponse$
2517
+ ];
2518
+ export var GetFunctionScalingConfig$ = [9, n0, _GFSC,
2519
+ { [_h]: ["GET", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 200] }, () => GetFunctionScalingConfigRequest$, () => GetFunctionScalingConfigResponse$
2520
+ ];
2521
+ export var GetFunctionUrlConfig$ = [9, n0, _GFUC,
2522
+ { [_h]: ["GET", "/2021-10-31/functions/{FunctionName}/url", 200] }, () => GetFunctionUrlConfigRequest$, () => GetFunctionUrlConfigResponse$
2523
+ ];
2524
+ export var GetLayerVersion$ = [9, n0, _GLV,
2525
+ { [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}", 200] }, () => GetLayerVersionRequest$, () => GetLayerVersionResponse$
2526
+ ];
2527
+ export var GetLayerVersionByArn$ = [9, n0, _GLVBA,
2528
+ { [_h]: ["GET", "/2018-10-31/layers?find=LayerVersion", 200] }, () => GetLayerVersionByArnRequest$, () => GetLayerVersionResponse$
2529
+ ];
2530
+ export var GetLayerVersionPolicy$ = [9, n0, _GLVP,
2531
+ { [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy", 200] }, () => GetLayerVersionPolicyRequest$, () => GetLayerVersionPolicyResponse$
2532
+ ];
2533
+ export var GetPolicy$ = [9, n0, _GP,
2534
+ { [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/policy", 200] }, () => GetPolicyRequest$, () => GetPolicyResponse$
2535
+ ];
2536
+ export var GetProvisionedConcurrencyConfig$ = [9, n0, _GPCC,
2537
+ { [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 200] }, () => GetProvisionedConcurrencyConfigRequest$, () => GetProvisionedConcurrencyConfigResponse$
2538
+ ];
2539
+ export var GetRuntimeManagementConfig$ = [9, n0, _GRMC,
2540
+ { [_h]: ["GET", "/2021-07-20/functions/{FunctionName}/runtime-management-config", 200] }, () => GetRuntimeManagementConfigRequest$, () => GetRuntimeManagementConfigResponse$
2541
+ ];
2542
+ export var Invoke$ = [9, n0, _In,
2543
+ { [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/invocations", 200] }, () => InvocationRequest$, () => InvocationResponse$
2544
+ ];
2545
+ export var InvokeAsync$ = [9, n0, _IAn,
2546
+ { [_h]: ["POST", "/2014-11-13/functions/{FunctionName}/invoke-async", 202] }, () => InvokeAsyncRequest$, () => InvokeAsyncResponse$
2547
+ ];
2548
+ export var InvokeWithResponseStream$ = [9, n0, _IWRS,
2549
+ { [_h]: ["POST", "/2021-11-15/functions/{FunctionName}/response-streaming-invocations", 200] }, () => InvokeWithResponseStreamRequest$, () => InvokeWithResponseStreamResponse$
2550
+ ];
2551
+ export var ListAliases$ = [9, n0, _LAi,
2552
+ { [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/aliases", 200] }, () => ListAliasesRequest$, () => ListAliasesResponse$
2553
+ ];
2554
+ export var ListCapacityProviders$ = [9, n0, _LCP,
2555
+ { [_h]: ["GET", "/2025-11-30/capacity-providers", 200] }, () => ListCapacityProvidersRequest$, () => ListCapacityProvidersResponse$
2556
+ ];
2557
+ export var ListCodeSigningConfigs$ = [9, n0, _LCSC,
2558
+ { [_h]: ["GET", "/2020-04-22/code-signing-configs", 200] }, () => ListCodeSigningConfigsRequest$, () => ListCodeSigningConfigsResponse$
2559
+ ];
2560
+ export var ListDurableExecutionsByFunction$ = [9, n0, _LDEBF,
2561
+ { [_h]: ["GET", "/2025-12-01/functions/{FunctionName}/durable-executions", 200] }, () => ListDurableExecutionsByFunctionRequest$, () => ListDurableExecutionsByFunctionResponse$
2562
+ ];
2563
+ export var ListEventSourceMappings$ = [9, n0, _LESM,
2564
+ { [_h]: ["GET", "/2015-03-31/event-source-mappings", 200] }, () => ListEventSourceMappingsRequest$, () => ListEventSourceMappingsResponse$
2565
+ ];
2566
+ export var ListFunctionEventInvokeConfigs$ = [9, n0, _LFEIC,
2567
+ { [_h]: ["GET", "/2019-09-25/functions/{FunctionName}/event-invoke-config/list", 200] }, () => ListFunctionEventInvokeConfigsRequest$, () => ListFunctionEventInvokeConfigsResponse$
2568
+ ];
2569
+ export var ListFunctions$ = [9, n0, _LFi,
2570
+ { [_h]: ["GET", "/2015-03-31/functions", 200] }, () => ListFunctionsRequest$, () => ListFunctionsResponse$
2571
+ ];
2572
+ export var ListFunctionsByCodeSigningConfig$ = [9, n0, _LFBCSC,
2573
+ { [_h]: ["GET", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}/functions", 200] }, () => ListFunctionsByCodeSigningConfigRequest$, () => ListFunctionsByCodeSigningConfigResponse$
2574
+ ];
2575
+ export var ListFunctionUrlConfigs$ = [9, n0, _LFUC,
2576
+ { [_h]: ["GET", "/2021-10-31/functions/{FunctionName}/urls", 200] }, () => ListFunctionUrlConfigsRequest$, () => ListFunctionUrlConfigsResponse$
2577
+ ];
2578
+ export var ListFunctionVersionsByCapacityProvider$ = [9, n0, _LFVBCP,
2579
+ { [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}/function-versions", 200] }, () => ListFunctionVersionsByCapacityProviderRequest$, () => ListFunctionVersionsByCapacityProviderResponse$
2580
+ ];
2581
+ export var ListLayers$ = [9, n0, _LLi,
2582
+ { [_h]: ["GET", "/2018-10-31/layers", 200] }, () => ListLayersRequest$, () => ListLayersResponse$
2583
+ ];
2584
+ export var ListLayerVersions$ = [9, n0, _LLV,
2585
+ { [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions", 200] }, () => ListLayerVersionsRequest$, () => ListLayerVersionsResponse$
2586
+ ];
2587
+ export var ListProvisionedConcurrencyConfigs$ = [9, n0, _LPCC,
2588
+ { [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency?List=ALL", 200] }, () => ListProvisionedConcurrencyConfigsRequest$, () => ListProvisionedConcurrencyConfigsResponse$
2589
+ ];
2590
+ export var ListTags$ = [9, n0, _LTi,
2591
+ { [_h]: ["GET", "/2017-03-31/tags/{Resource}", 200] }, () => ListTagsRequest$, () => ListTagsResponse$
2592
+ ];
2593
+ export var ListVersionsByFunction$ = [9, n0, _LVBF,
2594
+ { [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/versions", 200] }, () => ListVersionsByFunctionRequest$, () => ListVersionsByFunctionResponse$
2595
+ ];
2596
+ export var PublishLayerVersion$ = [9, n0, _PLV,
2597
+ { [_h]: ["POST", "/2018-10-31/layers/{LayerName}/versions", 201] }, () => PublishLayerVersionRequest$, () => PublishLayerVersionResponse$
2598
+ ];
2599
+ export var PublishVersion$ = [9, n0, _PV,
2600
+ { [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/versions", 201] }, () => PublishVersionRequest$, () => FunctionConfiguration$
2601
+ ];
2602
+ export var PutFunctionCodeSigningConfig$ = [9, n0, _PFCSC,
2603
+ { [_h]: ["PUT", "/2020-06-30/functions/{FunctionName}/code-signing-config", 200] }, () => PutFunctionCodeSigningConfigRequest$, () => PutFunctionCodeSigningConfigResponse$
2604
+ ];
2605
+ export var PutFunctionConcurrency$ = [9, n0, _PFC,
2606
+ { [_h]: ["PUT", "/2017-10-31/functions/{FunctionName}/concurrency", 200] }, () => PutFunctionConcurrencyRequest$, () => Concurrency$
2607
+ ];
2608
+ export var PutFunctionEventInvokeConfig$ = [9, n0, _PFEIC,
2609
+ { [_h]: ["PUT", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () => PutFunctionEventInvokeConfigRequest$, () => FunctionEventInvokeConfig$
2610
+ ];
2611
+ export var PutFunctionRecursionConfig$ = [9, n0, _PFRC,
2612
+ { [_h]: ["PUT", "/2024-08-31/functions/{FunctionName}/recursion-config", 200] }, () => PutFunctionRecursionConfigRequest$, () => PutFunctionRecursionConfigResponse$
2613
+ ];
2614
+ export var PutFunctionScalingConfig$ = [9, n0, _PFSC,
2615
+ { [_h]: ["PUT", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 202] }, () => PutFunctionScalingConfigRequest$, () => PutFunctionScalingConfigResponse$
2616
+ ];
2617
+ export var PutProvisionedConcurrencyConfig$ = [9, n0, _PPCC,
2618
+ { [_h]: ["PUT", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 202] }, () => PutProvisionedConcurrencyConfigRequest$, () => PutProvisionedConcurrencyConfigResponse$
2619
+ ];
2620
+ export var PutRuntimeManagementConfig$ = [9, n0, _PRMC,
2621
+ { [_h]: ["PUT", "/2021-07-20/functions/{FunctionName}/runtime-management-config", 200] }, () => PutRuntimeManagementConfigRequest$, () => PutRuntimeManagementConfigResponse$
2622
+ ];
2623
+ export var RemoveLayerVersionPermission$ = [9, n0, _RLVP,
2624
+ { [_h]: ["DELETE", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy/{StatementId}", 204] }, () => RemoveLayerVersionPermissionRequest$, () => __Unit
2625
+ ];
2626
+ export var RemovePermission$ = [9, n0, _RP,
2627
+ { [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}/policy/{StatementId}", 204] }, () => RemovePermissionRequest$, () => __Unit
2628
+ ];
2629
+ export var SendDurableExecutionCallbackFailure$ = [9, n0, _SDECF,
2630
+ { [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/fail", 200] }, () => SendDurableExecutionCallbackFailureRequest$, () => SendDurableExecutionCallbackFailureResponse$
2631
+ ];
2632
+ export var SendDurableExecutionCallbackHeartbeat$ = [9, n0, _SDECH,
2633
+ { [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/heartbeat", 200] }, () => SendDurableExecutionCallbackHeartbeatRequest$, () => SendDurableExecutionCallbackHeartbeatResponse$
2634
+ ];
2635
+ export var SendDurableExecutionCallbackSuccess$ = [9, n0, _SDECS,
2636
+ { [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/succeed", 200] }, () => SendDurableExecutionCallbackSuccessRequest$, () => SendDurableExecutionCallbackSuccessResponse$
2637
+ ];
2638
+ export var StopDurableExecution$ = [9, n0, _SDE,
2639
+ { [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/stop", 200] }, () => StopDurableExecutionRequest$, () => StopDurableExecutionResponse$
2640
+ ];
2641
+ export var TagResource$ = [9, n0, _TR,
2642
+ { [_h]: ["POST", "/2017-03-31/tags/{Resource}", 204] }, () => TagResourceRequest$, () => __Unit
2643
+ ];
2644
+ export var UntagResource$ = [9, n0, _UR,
2645
+ { [_h]: ["DELETE", "/2017-03-31/tags/{Resource}", 204] }, () => UntagResourceRequest$, () => __Unit
2646
+ ];
2647
+ export var UpdateAlias$ = [9, n0, _UA,
2648
+ { [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 200] }, () => UpdateAliasRequest$, () => AliasConfiguration$
2649
+ ];
2650
+ export var UpdateCapacityProvider$ = [9, n0, _UCP,
2651
+ { [_h]: ["PUT", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202] }, () => UpdateCapacityProviderRequest$, () => UpdateCapacityProviderResponse$
2652
+ ];
2653
+ export var UpdateCodeSigningConfig$ = [9, n0, _UCSC,
2654
+ { [_h]: ["PUT", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 200] }, () => UpdateCodeSigningConfigRequest$, () => UpdateCodeSigningConfigResponse$
2655
+ ];
2656
+ export var UpdateEventSourceMapping$ = [9, n0, _UESM,
2657
+ { [_h]: ["PUT", "/2015-03-31/event-source-mappings/{UUID}", 202] }, () => UpdateEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
2658
+ ];
2659
+ export var UpdateFunctionCode$ = [9, n0, _UFC,
2660
+ { [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/code", 200] }, () => UpdateFunctionCodeRequest$, () => FunctionConfiguration$
2661
+ ];
2662
+ export var UpdateFunctionConfiguration$ = [9, n0, _UFCp,
2663
+ { [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/configuration", 200] }, () => UpdateFunctionConfigurationRequest$, () => FunctionConfiguration$
2664
+ ];
2665
+ export var UpdateFunctionEventInvokeConfig$ = [9, n0, _UFEIC,
2666
+ { [_h]: ["POST", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () => UpdateFunctionEventInvokeConfigRequest$, () => FunctionEventInvokeConfig$
2667
+ ];
2668
+ export var UpdateFunctionUrlConfig$ = [9, n0, _UFUC,
2669
+ { [_h]: ["PUT", "/2021-10-31/functions/{FunctionName}/url", 200] }, () => UpdateFunctionUrlConfigRequest$, () => UpdateFunctionUrlConfigResponse$
2670
+ ];