@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,1499 @@
1
+ import { StreamingBlobTypes } from "@smithy/types";
2
+ import {
3
+ ApplicationLogLevel,
4
+ Architecture,
5
+ CapacityProviderPredefinedMetricType,
6
+ CapacityProviderScalingMode,
7
+ CapacityProviderState,
8
+ CodeSigningPolicy,
9
+ EndPointType,
10
+ EventSourceMappingMetric,
11
+ EventSourceMappingSystemLogLevel,
12
+ EventSourcePosition,
13
+ EventType,
14
+ ExecutionStatus,
15
+ FullDocument,
16
+ FunctionResponseType,
17
+ FunctionUrlAuthType,
18
+ FunctionVersion,
19
+ FunctionVersionLatestPublished,
20
+ InvocationType,
21
+ InvokeMode,
22
+ KafkaSchemaRegistryAuthType,
23
+ KafkaSchemaValidationAttribute,
24
+ LastUpdateStatus,
25
+ LastUpdateStatusReasonCode,
26
+ LogFormat,
27
+ LogType,
28
+ OperationAction,
29
+ OperationStatus,
30
+ OperationType,
31
+ PackageType,
32
+ ProvisionedConcurrencyStatusEnum,
33
+ RecursiveLoop,
34
+ ResponseStreamingInvocationType,
35
+ Runtime,
36
+ SchemaRegistryEventRecordFormat,
37
+ SnapStartApplyOn,
38
+ SnapStartOptimizationStatus,
39
+ SourceAccessType,
40
+ State,
41
+ StateReasonCode,
42
+ SystemLogLevel,
43
+ TenantIsolationMode,
44
+ TracingMode,
45
+ UpdateRuntimeOn,
46
+ } from "./enums";
47
+ export interface AccountLimit {
48
+ TotalCodeSize?: number | undefined;
49
+ CodeSizeUnzipped?: number | undefined;
50
+ CodeSizeZipped?: number | undefined;
51
+ ConcurrentExecutions?: number | undefined;
52
+ UnreservedConcurrentExecutions?: number | undefined;
53
+ }
54
+ export interface AccountUsage {
55
+ TotalCodeSize?: number | undefined;
56
+ FunctionCount?: number | undefined;
57
+ }
58
+ export interface AddLayerVersionPermissionRequest {
59
+ LayerName: string | undefined;
60
+ VersionNumber: number | undefined;
61
+ StatementId: string | undefined;
62
+ Action: string | undefined;
63
+ Principal: string | undefined;
64
+ OrganizationId?: string | undefined;
65
+ RevisionId?: string | undefined;
66
+ }
67
+ export interface AddLayerVersionPermissionResponse {
68
+ Statement?: string | undefined;
69
+ RevisionId?: string | undefined;
70
+ }
71
+ export interface AddPermissionRequest {
72
+ FunctionName: string | undefined;
73
+ StatementId: string | undefined;
74
+ Action: string | undefined;
75
+ Principal: string | undefined;
76
+ SourceArn?: string | undefined;
77
+ SourceAccount?: string | undefined;
78
+ EventSourceToken?: string | undefined;
79
+ Qualifier?: string | undefined;
80
+ RevisionId?: string | undefined;
81
+ PrincipalOrgID?: string | undefined;
82
+ FunctionUrlAuthType?: FunctionUrlAuthType | undefined;
83
+ InvokedViaFunctionUrl?: boolean | undefined;
84
+ }
85
+ export interface AddPermissionResponse {
86
+ Statement?: string | undefined;
87
+ }
88
+ export interface AliasRoutingConfiguration {
89
+ AdditionalVersionWeights?: Record<string, number> | undefined;
90
+ }
91
+ export interface AliasConfiguration {
92
+ AliasArn?: string | undefined;
93
+ Name?: string | undefined;
94
+ FunctionVersion?: string | undefined;
95
+ Description?: string | undefined;
96
+ RoutingConfig?: AliasRoutingConfiguration | undefined;
97
+ RevisionId?: string | undefined;
98
+ }
99
+ export interface AllowedPublishers {
100
+ SigningProfileVersionArns: string[] | undefined;
101
+ }
102
+ export interface KafkaSchemaRegistryAccessConfig {
103
+ Type?: KafkaSchemaRegistryAuthType | undefined;
104
+ URI?: string | undefined;
105
+ }
106
+ export interface KafkaSchemaValidationConfig {
107
+ Attribute?: KafkaSchemaValidationAttribute | undefined;
108
+ }
109
+ export interface KafkaSchemaRegistryConfig {
110
+ SchemaRegistryURI?: string | undefined;
111
+ EventRecordFormat?: SchemaRegistryEventRecordFormat | undefined;
112
+ AccessConfigs?: KafkaSchemaRegistryAccessConfig[] | undefined;
113
+ SchemaValidationConfigs?: KafkaSchemaValidationConfig[] | undefined;
114
+ }
115
+ export interface AmazonManagedKafkaEventSourceConfig {
116
+ ConsumerGroupId?: string | undefined;
117
+ SchemaRegistryConfig?: KafkaSchemaRegistryConfig | undefined;
118
+ }
119
+ export interface TargetTrackingScalingPolicy {
120
+ PredefinedMetricType: CapacityProviderPredefinedMetricType | undefined;
121
+ TargetValue: number | undefined;
122
+ }
123
+ export interface CapacityProviderScalingConfig {
124
+ MaxVCpuCount?: number | undefined;
125
+ ScalingMode?: CapacityProviderScalingMode | undefined;
126
+ ScalingPolicies?: TargetTrackingScalingPolicy[] | undefined;
127
+ }
128
+ export interface InstanceRequirements {
129
+ Architectures?: Architecture[] | undefined;
130
+ AllowedInstanceTypes?: string[] | undefined;
131
+ ExcludedInstanceTypes?: string[] | undefined;
132
+ }
133
+ export interface CapacityProviderPermissionsConfig {
134
+ CapacityProviderOperatorRoleArn: string | undefined;
135
+ }
136
+ export interface CapacityProviderVpcConfig {
137
+ SubnetIds: string[] | undefined;
138
+ SecurityGroupIds: string[] | undefined;
139
+ }
140
+ export interface CreateCapacityProviderRequest {
141
+ CapacityProviderName: string | undefined;
142
+ VpcConfig: CapacityProviderVpcConfig | undefined;
143
+ PermissionsConfig: CapacityProviderPermissionsConfig | undefined;
144
+ InstanceRequirements?: InstanceRequirements | undefined;
145
+ CapacityProviderScalingConfig?: CapacityProviderScalingConfig | undefined;
146
+ KmsKeyArn?: string | undefined;
147
+ Tags?: Record<string, string> | undefined;
148
+ }
149
+ export interface CapacityProvider {
150
+ CapacityProviderArn: string | undefined;
151
+ State: CapacityProviderState | undefined;
152
+ VpcConfig: CapacityProviderVpcConfig | undefined;
153
+ PermissionsConfig: CapacityProviderPermissionsConfig | undefined;
154
+ InstanceRequirements?: InstanceRequirements | undefined;
155
+ CapacityProviderScalingConfig?: CapacityProviderScalingConfig | undefined;
156
+ KmsKeyArn?: string | undefined;
157
+ LastModified?: string | undefined;
158
+ }
159
+ export interface CreateCapacityProviderResponse {
160
+ CapacityProvider: CapacityProvider | undefined;
161
+ }
162
+ export interface DeleteCapacityProviderRequest {
163
+ CapacityProviderName: string | undefined;
164
+ }
165
+ export interface DeleteCapacityProviderResponse {
166
+ CapacityProvider: CapacityProvider | undefined;
167
+ }
168
+ export interface GetCapacityProviderRequest {
169
+ CapacityProviderName: string | undefined;
170
+ }
171
+ export interface GetCapacityProviderResponse {
172
+ CapacityProvider: CapacityProvider | undefined;
173
+ }
174
+ export interface ListCapacityProvidersRequest {
175
+ State?: CapacityProviderState | undefined;
176
+ Marker?: string | undefined;
177
+ MaxItems?: number | undefined;
178
+ }
179
+ export interface ListCapacityProvidersResponse {
180
+ CapacityProviders: CapacityProvider[] | undefined;
181
+ NextMarker?: string | undefined;
182
+ }
183
+ export interface ListFunctionVersionsByCapacityProviderRequest {
184
+ CapacityProviderName: string | undefined;
185
+ Marker?: string | undefined;
186
+ MaxItems?: number | undefined;
187
+ }
188
+ export interface FunctionVersionsByCapacityProviderListItem {
189
+ FunctionArn: string | undefined;
190
+ State: State | undefined;
191
+ }
192
+ export interface ListFunctionVersionsByCapacityProviderResponse {
193
+ CapacityProviderArn: string | undefined;
194
+ FunctionVersions: FunctionVersionsByCapacityProviderListItem[] | undefined;
195
+ NextMarker?: string | undefined;
196
+ }
197
+ export interface UpdateCapacityProviderRequest {
198
+ CapacityProviderName: string | undefined;
199
+ CapacityProviderScalingConfig?: CapacityProviderScalingConfig | undefined;
200
+ }
201
+ export interface UpdateCapacityProviderResponse {
202
+ CapacityProvider: CapacityProvider | undefined;
203
+ }
204
+ export interface CallbackOptions {
205
+ TimeoutSeconds?: number | undefined;
206
+ HeartbeatTimeoutSeconds?: number | undefined;
207
+ }
208
+ export interface ChainedInvokeOptions {
209
+ FunctionName: string | undefined;
210
+ TenantId?: string | undefined;
211
+ }
212
+ export interface ContextOptions {
213
+ ReplayChildren?: boolean | undefined;
214
+ }
215
+ export interface ErrorObject {
216
+ ErrorMessage?: string | undefined;
217
+ ErrorType?: string | undefined;
218
+ ErrorData?: string | undefined;
219
+ StackTrace?: string[] | undefined;
220
+ }
221
+ export interface StepOptions {
222
+ NextAttemptDelaySeconds?: number | undefined;
223
+ }
224
+ export interface WaitOptions {
225
+ WaitSeconds?: number | undefined;
226
+ }
227
+ export interface OperationUpdate {
228
+ Id: string | undefined;
229
+ ParentId?: string | undefined;
230
+ Name?: string | undefined;
231
+ Type: OperationType | undefined;
232
+ SubType?: string | undefined;
233
+ Action: OperationAction | undefined;
234
+ Payload?: string | undefined;
235
+ Error?: ErrorObject | undefined;
236
+ ContextOptions?: ContextOptions | undefined;
237
+ StepOptions?: StepOptions | undefined;
238
+ WaitOptions?: WaitOptions | undefined;
239
+ CallbackOptions?: CallbackOptions | undefined;
240
+ ChainedInvokeOptions?: ChainedInvokeOptions | undefined;
241
+ }
242
+ export interface CheckpointDurableExecutionRequest {
243
+ DurableExecutionArn: string | undefined;
244
+ CheckpointToken: string | undefined;
245
+ Updates?: OperationUpdate[] | undefined;
246
+ ClientToken?: string | undefined;
247
+ }
248
+ export interface CallbackDetails {
249
+ CallbackId?: string | undefined;
250
+ Result?: string | undefined;
251
+ Error?: ErrorObject | undefined;
252
+ }
253
+ export interface ChainedInvokeDetails {
254
+ Result?: string | undefined;
255
+ Error?: ErrorObject | undefined;
256
+ }
257
+ export interface ContextDetails {
258
+ ReplayChildren?: boolean | undefined;
259
+ Result?: string | undefined;
260
+ Error?: ErrorObject | undefined;
261
+ }
262
+ export interface ExecutionDetails {
263
+ InputPayload?: string | undefined;
264
+ }
265
+ export interface StepDetails {
266
+ Attempt?: number | undefined;
267
+ NextAttemptTimestamp?: Date | undefined;
268
+ Result?: string | undefined;
269
+ Error?: ErrorObject | undefined;
270
+ }
271
+ export interface WaitDetails {
272
+ ScheduledEndTimestamp?: Date | undefined;
273
+ }
274
+ export interface Operation {
275
+ Id: string | undefined;
276
+ ParentId?: string | undefined;
277
+ Name?: string | undefined;
278
+ Type: OperationType | undefined;
279
+ SubType?: string | undefined;
280
+ StartTimestamp: Date | undefined;
281
+ EndTimestamp?: Date | undefined;
282
+ Status: OperationStatus | undefined;
283
+ ExecutionDetails?: ExecutionDetails | undefined;
284
+ ContextDetails?: ContextDetails | undefined;
285
+ StepDetails?: StepDetails | undefined;
286
+ WaitDetails?: WaitDetails | undefined;
287
+ CallbackDetails?: CallbackDetails | undefined;
288
+ ChainedInvokeDetails?: ChainedInvokeDetails | undefined;
289
+ }
290
+ export interface CheckpointUpdatedExecutionState {
291
+ Operations?: Operation[] | undefined;
292
+ NextMarker?: string | undefined;
293
+ }
294
+ export interface CheckpointDurableExecutionResponse {
295
+ CheckpointToken?: string | undefined;
296
+ NewExecutionState: CheckpointUpdatedExecutionState | undefined;
297
+ }
298
+ export interface CodeSigningPolicies {
299
+ UntrustedArtifactOnDeployment?: CodeSigningPolicy | undefined;
300
+ }
301
+ export interface CreateCodeSigningConfigRequest {
302
+ Description?: string | undefined;
303
+ AllowedPublishers: AllowedPublishers | undefined;
304
+ CodeSigningPolicies?: CodeSigningPolicies | undefined;
305
+ Tags?: Record<string, string> | undefined;
306
+ }
307
+ export interface CodeSigningConfig {
308
+ CodeSigningConfigId: string | undefined;
309
+ CodeSigningConfigArn: string | undefined;
310
+ Description?: string | undefined;
311
+ AllowedPublishers: AllowedPublishers | undefined;
312
+ CodeSigningPolicies: CodeSigningPolicies | undefined;
313
+ LastModified: string | undefined;
314
+ }
315
+ export interface CreateCodeSigningConfigResponse {
316
+ CodeSigningConfig: CodeSigningConfig | undefined;
317
+ }
318
+ export interface DeleteCodeSigningConfigRequest {
319
+ CodeSigningConfigArn: string | undefined;
320
+ }
321
+ export interface DeleteCodeSigningConfigResponse {}
322
+ export interface GetCodeSigningConfigRequest {
323
+ CodeSigningConfigArn: string | undefined;
324
+ }
325
+ export interface GetCodeSigningConfigResponse {
326
+ CodeSigningConfig: CodeSigningConfig | undefined;
327
+ }
328
+ export interface ListCodeSigningConfigsRequest {
329
+ Marker?: string | undefined;
330
+ MaxItems?: number | undefined;
331
+ }
332
+ export interface ListCodeSigningConfigsResponse {
333
+ NextMarker?: string | undefined;
334
+ CodeSigningConfigs?: CodeSigningConfig[] | undefined;
335
+ }
336
+ export interface ListFunctionsByCodeSigningConfigRequest {
337
+ CodeSigningConfigArn: string | undefined;
338
+ Marker?: string | undefined;
339
+ MaxItems?: number | undefined;
340
+ }
341
+ export interface ListFunctionsByCodeSigningConfigResponse {
342
+ NextMarker?: string | undefined;
343
+ FunctionArns?: string[] | undefined;
344
+ }
345
+ export interface UpdateCodeSigningConfigRequest {
346
+ CodeSigningConfigArn: string | undefined;
347
+ Description?: string | undefined;
348
+ AllowedPublishers?: AllowedPublishers | undefined;
349
+ CodeSigningPolicies?: CodeSigningPolicies | undefined;
350
+ }
351
+ export interface UpdateCodeSigningConfigResponse {
352
+ CodeSigningConfig: CodeSigningConfig | undefined;
353
+ }
354
+ export interface DeleteFunctionRequest {
355
+ FunctionName: string | undefined;
356
+ Qualifier?: string | undefined;
357
+ }
358
+ export interface DeleteFunctionResponse {
359
+ StatusCode?: number | undefined;
360
+ }
361
+ export interface DeleteFunctionEventInvokeConfigRequest {
362
+ FunctionName: string | undefined;
363
+ Qualifier?: string | undefined;
364
+ }
365
+ export interface OnFailure {
366
+ Destination?: string | undefined;
367
+ }
368
+ export interface OnSuccess {
369
+ Destination?: string | undefined;
370
+ }
371
+ export interface DestinationConfig {
372
+ OnSuccess?: OnSuccess | undefined;
373
+ OnFailure?: OnFailure | undefined;
374
+ }
375
+ export interface DocumentDBEventSourceConfig {
376
+ DatabaseName?: string | undefined;
377
+ CollectionName?: string | undefined;
378
+ FullDocument?: FullDocument | undefined;
379
+ }
380
+ export interface Filter {
381
+ Pattern?: string | undefined;
382
+ }
383
+ export interface FilterCriteria {
384
+ Filters?: Filter[] | undefined;
385
+ }
386
+ export interface EventSourceMappingLoggingConfig {
387
+ SystemLogLevel?: EventSourceMappingSystemLogLevel | undefined;
388
+ }
389
+ export interface EventSourceMappingMetricsConfig {
390
+ Metrics?: EventSourceMappingMetric[] | undefined;
391
+ }
392
+ export interface ProvisionedPollerConfig {
393
+ MinimumPollers?: number | undefined;
394
+ MaximumPollers?: number | undefined;
395
+ PollerGroupName?: string | undefined;
396
+ }
397
+ export interface ScalingConfig {
398
+ MaximumConcurrency?: number | undefined;
399
+ }
400
+ export interface SelfManagedEventSource {
401
+ Endpoints?: Partial<Record<EndPointType, string[]>> | undefined;
402
+ }
403
+ export interface SelfManagedKafkaEventSourceConfig {
404
+ ConsumerGroupId?: string | undefined;
405
+ SchemaRegistryConfig?: KafkaSchemaRegistryConfig | undefined;
406
+ }
407
+ export interface SourceAccessConfiguration {
408
+ Type?: SourceAccessType | undefined;
409
+ URI?: string | undefined;
410
+ }
411
+ export interface CreateEventSourceMappingRequest {
412
+ EventSourceArn?: string | undefined;
413
+ FunctionName: string | undefined;
414
+ Enabled?: boolean | undefined;
415
+ BatchSize?: number | undefined;
416
+ FilterCriteria?: FilterCriteria | undefined;
417
+ MaximumBatchingWindowInSeconds?: number | undefined;
418
+ ParallelizationFactor?: number | undefined;
419
+ StartingPosition?: EventSourcePosition | undefined;
420
+ StartingPositionTimestamp?: Date | undefined;
421
+ DestinationConfig?: DestinationConfig | undefined;
422
+ MaximumRecordAgeInSeconds?: number | undefined;
423
+ BisectBatchOnFunctionError?: boolean | undefined;
424
+ MaximumRetryAttempts?: number | undefined;
425
+ Tags?: Record<string, string> | undefined;
426
+ TumblingWindowInSeconds?: number | undefined;
427
+ Topics?: string[] | undefined;
428
+ Queues?: string[] | undefined;
429
+ SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
430
+ SelfManagedEventSource?: SelfManagedEventSource | undefined;
431
+ FunctionResponseTypes?: FunctionResponseType[] | undefined;
432
+ AmazonManagedKafkaEventSourceConfig?:
433
+ | AmazonManagedKafkaEventSourceConfig
434
+ | undefined;
435
+ SelfManagedKafkaEventSourceConfig?:
436
+ | SelfManagedKafkaEventSourceConfig
437
+ | undefined;
438
+ ScalingConfig?: ScalingConfig | undefined;
439
+ DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
440
+ KMSKeyArn?: string | undefined;
441
+ MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
442
+ LoggingConfig?: EventSourceMappingLoggingConfig | undefined;
443
+ ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
444
+ }
445
+ export interface FilterCriteriaError {
446
+ ErrorCode?: string | undefined;
447
+ Message?: string | undefined;
448
+ }
449
+ export interface EventSourceMappingConfiguration {
450
+ UUID?: string | undefined;
451
+ StartingPosition?: EventSourcePosition | undefined;
452
+ StartingPositionTimestamp?: Date | undefined;
453
+ BatchSize?: number | undefined;
454
+ MaximumBatchingWindowInSeconds?: number | undefined;
455
+ ParallelizationFactor?: number | undefined;
456
+ EventSourceArn?: string | undefined;
457
+ FilterCriteria?: FilterCriteria | undefined;
458
+ FunctionArn?: string | undefined;
459
+ LastModified?: Date | undefined;
460
+ LastProcessingResult?: string | undefined;
461
+ State?: string | undefined;
462
+ StateTransitionReason?: string | undefined;
463
+ DestinationConfig?: DestinationConfig | undefined;
464
+ Topics?: string[] | undefined;
465
+ Queues?: string[] | undefined;
466
+ SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
467
+ SelfManagedEventSource?: SelfManagedEventSource | undefined;
468
+ MaximumRecordAgeInSeconds?: number | undefined;
469
+ BisectBatchOnFunctionError?: boolean | undefined;
470
+ MaximumRetryAttempts?: number | undefined;
471
+ TumblingWindowInSeconds?: number | undefined;
472
+ FunctionResponseTypes?: FunctionResponseType[] | undefined;
473
+ AmazonManagedKafkaEventSourceConfig?:
474
+ | AmazonManagedKafkaEventSourceConfig
475
+ | undefined;
476
+ SelfManagedKafkaEventSourceConfig?:
477
+ | SelfManagedKafkaEventSourceConfig
478
+ | undefined;
479
+ ScalingConfig?: ScalingConfig | undefined;
480
+ DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
481
+ KMSKeyArn?: string | undefined;
482
+ FilterCriteriaError?: FilterCriteriaError | undefined;
483
+ EventSourceMappingArn?: string | undefined;
484
+ MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
485
+ LoggingConfig?: EventSourceMappingLoggingConfig | undefined;
486
+ ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
487
+ }
488
+ export interface DeleteEventSourceMappingRequest {
489
+ UUID: string | undefined;
490
+ }
491
+ export interface GetEventSourceMappingRequest {
492
+ UUID: string | undefined;
493
+ }
494
+ export interface ListEventSourceMappingsRequest {
495
+ EventSourceArn?: string | undefined;
496
+ FunctionName?: string | undefined;
497
+ Marker?: string | undefined;
498
+ MaxItems?: number | undefined;
499
+ }
500
+ export interface ListEventSourceMappingsResponse {
501
+ NextMarker?: string | undefined;
502
+ EventSourceMappings?: EventSourceMappingConfiguration[] | undefined;
503
+ }
504
+ export interface UpdateEventSourceMappingRequest {
505
+ UUID: string | undefined;
506
+ FunctionName?: string | undefined;
507
+ Enabled?: boolean | undefined;
508
+ BatchSize?: number | undefined;
509
+ FilterCriteria?: FilterCriteria | undefined;
510
+ MaximumBatchingWindowInSeconds?: number | undefined;
511
+ DestinationConfig?: DestinationConfig | undefined;
512
+ MaximumRecordAgeInSeconds?: number | undefined;
513
+ BisectBatchOnFunctionError?: boolean | undefined;
514
+ MaximumRetryAttempts?: number | undefined;
515
+ ParallelizationFactor?: number | undefined;
516
+ SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
517
+ TumblingWindowInSeconds?: number | undefined;
518
+ FunctionResponseTypes?: FunctionResponseType[] | undefined;
519
+ ScalingConfig?: ScalingConfig | undefined;
520
+ AmazonManagedKafkaEventSourceConfig?:
521
+ | AmazonManagedKafkaEventSourceConfig
522
+ | undefined;
523
+ SelfManagedKafkaEventSourceConfig?:
524
+ | SelfManagedKafkaEventSourceConfig
525
+ | undefined;
526
+ DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
527
+ KMSKeyArn?: string | undefined;
528
+ MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
529
+ LoggingConfig?: EventSourceMappingLoggingConfig | undefined;
530
+ ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
531
+ }
532
+ export interface LambdaManagedInstancesCapacityProviderConfig {
533
+ CapacityProviderArn: string | undefined;
534
+ PerExecutionEnvironmentMaxConcurrency?: number | undefined;
535
+ ExecutionEnvironmentMemoryGiBPerVCpu?: number | undefined;
536
+ }
537
+ export interface CapacityProviderConfig {
538
+ LambdaManagedInstancesCapacityProviderConfig:
539
+ | LambdaManagedInstancesCapacityProviderConfig
540
+ | undefined;
541
+ }
542
+ export interface FunctionCode {
543
+ ZipFile?: Uint8Array | undefined;
544
+ S3Bucket?: string | undefined;
545
+ S3Key?: string | undefined;
546
+ S3ObjectVersion?: string | undefined;
547
+ ImageUri?: string | undefined;
548
+ SourceKMSKeyArn?: string | undefined;
549
+ }
550
+ export interface DeadLetterConfig {
551
+ TargetArn?: string | undefined;
552
+ }
553
+ export interface DurableConfig {
554
+ RetentionPeriodInDays?: number | undefined;
555
+ ExecutionTimeout?: number | undefined;
556
+ }
557
+ export interface Environment {
558
+ Variables?: Record<string, string> | undefined;
559
+ }
560
+ export interface EphemeralStorage {
561
+ Size: number | undefined;
562
+ }
563
+ export interface FileSystemConfig {
564
+ Arn: string | undefined;
565
+ LocalMountPath: string | undefined;
566
+ }
567
+ export interface ImageConfig {
568
+ EntryPoint?: string[] | undefined;
569
+ Command?: string[] | undefined;
570
+ WorkingDirectory?: string | undefined;
571
+ }
572
+ export interface LoggingConfig {
573
+ LogFormat?: LogFormat | undefined;
574
+ ApplicationLogLevel?: ApplicationLogLevel | undefined;
575
+ SystemLogLevel?: SystemLogLevel | undefined;
576
+ LogGroup?: string | undefined;
577
+ }
578
+ export interface SnapStart {
579
+ ApplyOn?: SnapStartApplyOn | undefined;
580
+ }
581
+ export interface TenancyConfig {
582
+ TenantIsolationMode: TenantIsolationMode | undefined;
583
+ }
584
+ export interface TracingConfig {
585
+ Mode?: TracingMode | undefined;
586
+ }
587
+ export interface VpcConfig {
588
+ SubnetIds?: string[] | undefined;
589
+ SecurityGroupIds?: string[] | undefined;
590
+ Ipv6AllowedForDualStack?: boolean | undefined;
591
+ }
592
+ export interface CreateFunctionRequest {
593
+ FunctionName: string | undefined;
594
+ Runtime?: Runtime | undefined;
595
+ Role: string | undefined;
596
+ Handler?: string | undefined;
597
+ Code: FunctionCode | undefined;
598
+ Description?: string | undefined;
599
+ Timeout?: number | undefined;
600
+ MemorySize?: number | undefined;
601
+ Publish?: boolean | undefined;
602
+ VpcConfig?: VpcConfig | undefined;
603
+ PackageType?: PackageType | undefined;
604
+ DeadLetterConfig?: DeadLetterConfig | undefined;
605
+ Environment?: Environment | undefined;
606
+ KMSKeyArn?: string | undefined;
607
+ TracingConfig?: TracingConfig | undefined;
608
+ Tags?: Record<string, string> | undefined;
609
+ Layers?: string[] | undefined;
610
+ FileSystemConfigs?: FileSystemConfig[] | undefined;
611
+ ImageConfig?: ImageConfig | undefined;
612
+ CodeSigningConfigArn?: string | undefined;
613
+ Architectures?: Architecture[] | undefined;
614
+ EphemeralStorage?: EphemeralStorage | undefined;
615
+ SnapStart?: SnapStart | undefined;
616
+ LoggingConfig?: LoggingConfig | undefined;
617
+ CapacityProviderConfig?: CapacityProviderConfig | undefined;
618
+ PublishTo?: FunctionVersionLatestPublished | undefined;
619
+ DurableConfig?: DurableConfig | undefined;
620
+ TenancyConfig?: TenancyConfig | undefined;
621
+ }
622
+ export interface EnvironmentError {
623
+ ErrorCode?: string | undefined;
624
+ Message?: string | undefined;
625
+ }
626
+ export interface EnvironmentResponse {
627
+ Variables?: Record<string, string> | undefined;
628
+ Error?: EnvironmentError | undefined;
629
+ }
630
+ export interface ImageConfigError {
631
+ ErrorCode?: string | undefined;
632
+ Message?: string | undefined;
633
+ }
634
+ export interface ImageConfigResponse {
635
+ ImageConfig?: ImageConfig | undefined;
636
+ Error?: ImageConfigError | undefined;
637
+ }
638
+ export interface Layer {
639
+ Arn?: string | undefined;
640
+ CodeSize?: number | undefined;
641
+ SigningProfileVersionArn?: string | undefined;
642
+ SigningJobArn?: string | undefined;
643
+ }
644
+ export interface RuntimeVersionError {
645
+ ErrorCode?: string | undefined;
646
+ Message?: string | undefined;
647
+ }
648
+ export interface RuntimeVersionConfig {
649
+ RuntimeVersionArn?: string | undefined;
650
+ Error?: RuntimeVersionError | undefined;
651
+ }
652
+ export interface SnapStartResponse {
653
+ ApplyOn?: SnapStartApplyOn | undefined;
654
+ OptimizationStatus?: SnapStartOptimizationStatus | undefined;
655
+ }
656
+ export interface TracingConfigResponse {
657
+ Mode?: TracingMode | undefined;
658
+ }
659
+ export interface VpcConfigResponse {
660
+ SubnetIds?: string[] | undefined;
661
+ SecurityGroupIds?: string[] | undefined;
662
+ VpcId?: string | undefined;
663
+ Ipv6AllowedForDualStack?: boolean | undefined;
664
+ }
665
+ export interface FunctionConfiguration {
666
+ FunctionName?: string | undefined;
667
+ FunctionArn?: string | undefined;
668
+ Runtime?: Runtime | undefined;
669
+ Role?: string | undefined;
670
+ Handler?: string | undefined;
671
+ CodeSize?: number | undefined;
672
+ Description?: string | undefined;
673
+ Timeout?: number | undefined;
674
+ MemorySize?: number | undefined;
675
+ LastModified?: string | undefined;
676
+ CodeSha256?: string | undefined;
677
+ Version?: string | undefined;
678
+ VpcConfig?: VpcConfigResponse | undefined;
679
+ DeadLetterConfig?: DeadLetterConfig | undefined;
680
+ Environment?: EnvironmentResponse | undefined;
681
+ KMSKeyArn?: string | undefined;
682
+ TracingConfig?: TracingConfigResponse | undefined;
683
+ MasterArn?: string | undefined;
684
+ RevisionId?: string | undefined;
685
+ Layers?: Layer[] | undefined;
686
+ State?: State | undefined;
687
+ StateReason?: string | undefined;
688
+ StateReasonCode?: StateReasonCode | undefined;
689
+ LastUpdateStatus?: LastUpdateStatus | undefined;
690
+ LastUpdateStatusReason?: string | undefined;
691
+ LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode | undefined;
692
+ FileSystemConfigs?: FileSystemConfig[] | undefined;
693
+ PackageType?: PackageType | undefined;
694
+ ImageConfigResponse?: ImageConfigResponse | undefined;
695
+ SigningProfileVersionArn?: string | undefined;
696
+ SigningJobArn?: string | undefined;
697
+ Architectures?: Architecture[] | undefined;
698
+ EphemeralStorage?: EphemeralStorage | undefined;
699
+ SnapStart?: SnapStartResponse | undefined;
700
+ RuntimeVersionConfig?: RuntimeVersionConfig | undefined;
701
+ LoggingConfig?: LoggingConfig | undefined;
702
+ CapacityProviderConfig?: CapacityProviderConfig | undefined;
703
+ ConfigSha256?: string | undefined;
704
+ DurableConfig?: DurableConfig | undefined;
705
+ TenancyConfig?: TenancyConfig | undefined;
706
+ }
707
+ export interface Cors {
708
+ AllowCredentials?: boolean | undefined;
709
+ AllowHeaders?: string[] | undefined;
710
+ AllowMethods?: string[] | undefined;
711
+ AllowOrigins?: string[] | undefined;
712
+ ExposeHeaders?: string[] | undefined;
713
+ MaxAge?: number | undefined;
714
+ }
715
+ export interface CreateFunctionUrlConfigRequest {
716
+ FunctionName: string | undefined;
717
+ Qualifier?: string | undefined;
718
+ AuthType: FunctionUrlAuthType | undefined;
719
+ Cors?: Cors | undefined;
720
+ InvokeMode?: InvokeMode | undefined;
721
+ }
722
+ export interface CreateFunctionUrlConfigResponse {
723
+ FunctionUrl: string | undefined;
724
+ FunctionArn: string | undefined;
725
+ AuthType: FunctionUrlAuthType | undefined;
726
+ Cors?: Cors | undefined;
727
+ CreationTime: string | undefined;
728
+ InvokeMode?: InvokeMode | undefined;
729
+ }
730
+ export interface DeleteFunctionCodeSigningConfigRequest {
731
+ FunctionName: string | undefined;
732
+ }
733
+ export interface DeleteFunctionConcurrencyRequest {
734
+ FunctionName: string | undefined;
735
+ }
736
+ export interface DeleteFunctionUrlConfigRequest {
737
+ FunctionName: string | undefined;
738
+ Qualifier?: string | undefined;
739
+ }
740
+ export interface GetFunctionRequest {
741
+ FunctionName: string | undefined;
742
+ Qualifier?: string | undefined;
743
+ }
744
+ export interface FunctionCodeLocation {
745
+ RepositoryType?: string | undefined;
746
+ Location?: string | undefined;
747
+ ImageUri?: string | undefined;
748
+ ResolvedImageUri?: string | undefined;
749
+ SourceKMSKeyArn?: string | undefined;
750
+ }
751
+ export interface Concurrency {
752
+ ReservedConcurrentExecutions?: number | undefined;
753
+ }
754
+ export interface TagsError {
755
+ ErrorCode: string | undefined;
756
+ Message: string | undefined;
757
+ }
758
+ export interface GetFunctionResponse {
759
+ Configuration?: FunctionConfiguration | undefined;
760
+ Code?: FunctionCodeLocation | undefined;
761
+ Tags?: Record<string, string> | undefined;
762
+ TagsError?: TagsError | undefined;
763
+ Concurrency?: Concurrency | undefined;
764
+ }
765
+ export interface GetFunctionCodeSigningConfigRequest {
766
+ FunctionName: string | undefined;
767
+ }
768
+ export interface GetFunctionCodeSigningConfigResponse {
769
+ CodeSigningConfigArn: string | undefined;
770
+ FunctionName: string | undefined;
771
+ }
772
+ export interface GetFunctionConcurrencyRequest {
773
+ FunctionName: string | undefined;
774
+ }
775
+ export interface GetFunctionConcurrencyResponse {
776
+ ReservedConcurrentExecutions?: number | undefined;
777
+ }
778
+ export interface GetFunctionConfigurationRequest {
779
+ FunctionName: string | undefined;
780
+ Qualifier?: string | undefined;
781
+ }
782
+ export interface GetFunctionRecursionConfigRequest {
783
+ FunctionName: string | undefined;
784
+ }
785
+ export interface GetFunctionRecursionConfigResponse {
786
+ RecursiveLoop?: RecursiveLoop | undefined;
787
+ }
788
+ export interface GetFunctionScalingConfigRequest {
789
+ FunctionName: string | undefined;
790
+ Qualifier: string | undefined;
791
+ }
792
+ export interface FunctionScalingConfig {
793
+ MinExecutionEnvironments?: number | undefined;
794
+ MaxExecutionEnvironments?: number | undefined;
795
+ }
796
+ export interface GetFunctionScalingConfigResponse {
797
+ FunctionArn?: string | undefined;
798
+ AppliedFunctionScalingConfig?: FunctionScalingConfig | undefined;
799
+ RequestedFunctionScalingConfig?: FunctionScalingConfig | undefined;
800
+ }
801
+ export interface GetFunctionUrlConfigRequest {
802
+ FunctionName: string | undefined;
803
+ Qualifier?: string | undefined;
804
+ }
805
+ export interface GetFunctionUrlConfigResponse {
806
+ FunctionUrl: string | undefined;
807
+ FunctionArn: string | undefined;
808
+ AuthType: FunctionUrlAuthType | undefined;
809
+ Cors?: Cors | undefined;
810
+ CreationTime: string | undefined;
811
+ LastModifiedTime: string | undefined;
812
+ InvokeMode?: InvokeMode | undefined;
813
+ }
814
+ export interface GetPolicyRequest {
815
+ FunctionName: string | undefined;
816
+ Qualifier?: string | undefined;
817
+ }
818
+ export interface GetPolicyResponse {
819
+ Policy?: string | undefined;
820
+ RevisionId?: string | undefined;
821
+ }
822
+ export interface GetRuntimeManagementConfigRequest {
823
+ FunctionName: string | undefined;
824
+ Qualifier?: string | undefined;
825
+ }
826
+ export interface GetRuntimeManagementConfigResponse {
827
+ UpdateRuntimeOn?: UpdateRuntimeOn | undefined;
828
+ RuntimeVersionArn?: string | undefined;
829
+ FunctionArn?: string | undefined;
830
+ }
831
+ export interface InvocationRequest {
832
+ FunctionName: string | undefined;
833
+ InvocationType?: InvocationType | undefined;
834
+ LogType?: LogType | undefined;
835
+ ClientContext?: string | undefined;
836
+ DurableExecutionName?: string | undefined;
837
+ Payload?: Uint8Array | undefined;
838
+ Qualifier?: string | undefined;
839
+ TenantId?: string | undefined;
840
+ }
841
+ export interface InvocationResponse {
842
+ StatusCode?: number | undefined;
843
+ FunctionError?: string | undefined;
844
+ LogResult?: string | undefined;
845
+ Payload?: Uint8Array | undefined;
846
+ ExecutedVersion?: string | undefined;
847
+ DurableExecutionArn?: string | undefined;
848
+ }
849
+ export interface InvokeAsyncRequest {
850
+ FunctionName: string | undefined;
851
+ InvokeArgs: StreamingBlobTypes | undefined;
852
+ }
853
+ export interface InvokeAsyncResponse {
854
+ Status?: number | undefined;
855
+ }
856
+ export interface InvokeWithResponseStreamRequest {
857
+ FunctionName: string | undefined;
858
+ InvocationType?: ResponseStreamingInvocationType | undefined;
859
+ LogType?: LogType | undefined;
860
+ ClientContext?: string | undefined;
861
+ Qualifier?: string | undefined;
862
+ Payload?: Uint8Array | undefined;
863
+ TenantId?: string | undefined;
864
+ }
865
+ export interface InvokeWithResponseStreamCompleteEvent {
866
+ ErrorCode?: string | undefined;
867
+ ErrorDetails?: string | undefined;
868
+ LogResult?: string | undefined;
869
+ }
870
+ export interface InvokeResponseStreamUpdate {
871
+ Payload?: Uint8Array | undefined;
872
+ }
873
+ export type InvokeWithResponseStreamResponseEvent =
874
+ | InvokeWithResponseStreamResponseEvent.InvokeCompleteMember
875
+ | InvokeWithResponseStreamResponseEvent.PayloadChunkMember
876
+ | InvokeWithResponseStreamResponseEvent.$UnknownMember;
877
+ export declare namespace InvokeWithResponseStreamResponseEvent {
878
+ interface PayloadChunkMember {
879
+ PayloadChunk: InvokeResponseStreamUpdate;
880
+ InvokeComplete?: never;
881
+ $unknown?: never;
882
+ }
883
+ interface InvokeCompleteMember {
884
+ PayloadChunk?: never;
885
+ InvokeComplete: InvokeWithResponseStreamCompleteEvent;
886
+ $unknown?: never;
887
+ }
888
+ interface $UnknownMember {
889
+ PayloadChunk?: never;
890
+ InvokeComplete?: never;
891
+ $unknown: [string, any];
892
+ }
893
+ interface Visitor<T> {
894
+ PayloadChunk: (value: InvokeResponseStreamUpdate) => T;
895
+ InvokeComplete: (value: InvokeWithResponseStreamCompleteEvent) => T;
896
+ _: (name: string, value: any) => T;
897
+ }
898
+ }
899
+ export interface InvokeWithResponseStreamResponse {
900
+ StatusCode?: number | undefined;
901
+ ExecutedVersion?: string | undefined;
902
+ EventStream?:
903
+ | AsyncIterable<InvokeWithResponseStreamResponseEvent>
904
+ | undefined;
905
+ ResponseStreamContentType?: string | undefined;
906
+ }
907
+ export interface ListFunctionsRequest {
908
+ MasterRegion?: string | undefined;
909
+ FunctionVersion?: FunctionVersion | undefined;
910
+ Marker?: string | undefined;
911
+ MaxItems?: number | undefined;
912
+ }
913
+ export interface ListFunctionsResponse {
914
+ NextMarker?: string | undefined;
915
+ Functions?: FunctionConfiguration[] | undefined;
916
+ }
917
+ export interface ListFunctionUrlConfigsRequest {
918
+ FunctionName: string | undefined;
919
+ Marker?: string | undefined;
920
+ MaxItems?: number | undefined;
921
+ }
922
+ export interface FunctionUrlConfig {
923
+ FunctionUrl: string | undefined;
924
+ FunctionArn: string | undefined;
925
+ CreationTime: string | undefined;
926
+ LastModifiedTime: string | undefined;
927
+ Cors?: Cors | undefined;
928
+ AuthType: FunctionUrlAuthType | undefined;
929
+ InvokeMode?: InvokeMode | undefined;
930
+ }
931
+ export interface ListFunctionUrlConfigsResponse {
932
+ FunctionUrlConfigs: FunctionUrlConfig[] | undefined;
933
+ NextMarker?: string | undefined;
934
+ }
935
+ export interface ListProvisionedConcurrencyConfigsRequest {
936
+ FunctionName: string | undefined;
937
+ Marker?: string | undefined;
938
+ MaxItems?: number | undefined;
939
+ }
940
+ export interface ProvisionedConcurrencyConfigListItem {
941
+ FunctionArn?: string | undefined;
942
+ RequestedProvisionedConcurrentExecutions?: number | undefined;
943
+ AvailableProvisionedConcurrentExecutions?: number | undefined;
944
+ AllocatedProvisionedConcurrentExecutions?: number | undefined;
945
+ Status?: ProvisionedConcurrencyStatusEnum | undefined;
946
+ StatusReason?: string | undefined;
947
+ LastModified?: string | undefined;
948
+ }
949
+ export interface ListProvisionedConcurrencyConfigsResponse {
950
+ ProvisionedConcurrencyConfigs?:
951
+ | ProvisionedConcurrencyConfigListItem[]
952
+ | undefined;
953
+ NextMarker?: string | undefined;
954
+ }
955
+ export interface PutFunctionCodeSigningConfigRequest {
956
+ CodeSigningConfigArn: string | undefined;
957
+ FunctionName: string | undefined;
958
+ }
959
+ export interface PutFunctionCodeSigningConfigResponse {
960
+ CodeSigningConfigArn: string | undefined;
961
+ FunctionName: string | undefined;
962
+ }
963
+ export interface PutFunctionConcurrencyRequest {
964
+ FunctionName: string | undefined;
965
+ ReservedConcurrentExecutions: number | undefined;
966
+ }
967
+ export interface PutFunctionRecursionConfigRequest {
968
+ FunctionName: string | undefined;
969
+ RecursiveLoop: RecursiveLoop | undefined;
970
+ }
971
+ export interface PutFunctionRecursionConfigResponse {
972
+ RecursiveLoop?: RecursiveLoop | undefined;
973
+ }
974
+ export interface PutFunctionScalingConfigRequest {
975
+ FunctionName: string | undefined;
976
+ Qualifier: string | undefined;
977
+ FunctionScalingConfig?: FunctionScalingConfig | undefined;
978
+ }
979
+ export interface PutFunctionScalingConfigResponse {
980
+ FunctionState?: State | undefined;
981
+ }
982
+ export interface PutRuntimeManagementConfigRequest {
983
+ FunctionName: string | undefined;
984
+ Qualifier?: string | undefined;
985
+ UpdateRuntimeOn: UpdateRuntimeOn | undefined;
986
+ RuntimeVersionArn?: string | undefined;
987
+ }
988
+ export interface PutRuntimeManagementConfigResponse {
989
+ UpdateRuntimeOn: UpdateRuntimeOn | undefined;
990
+ FunctionArn: string | undefined;
991
+ RuntimeVersionArn?: string | undefined;
992
+ }
993
+ export interface UpdateFunctionCodeRequest {
994
+ FunctionName: string | undefined;
995
+ ZipFile?: Uint8Array | undefined;
996
+ S3Bucket?: string | undefined;
997
+ S3Key?: string | undefined;
998
+ S3ObjectVersion?: string | undefined;
999
+ ImageUri?: string | undefined;
1000
+ Publish?: boolean | undefined;
1001
+ DryRun?: boolean | undefined;
1002
+ RevisionId?: string | undefined;
1003
+ Architectures?: Architecture[] | undefined;
1004
+ SourceKMSKeyArn?: string | undefined;
1005
+ PublishTo?: FunctionVersionLatestPublished | undefined;
1006
+ }
1007
+ export interface UpdateFunctionConfigurationRequest {
1008
+ FunctionName: string | undefined;
1009
+ Role?: string | undefined;
1010
+ Handler?: string | undefined;
1011
+ Description?: string | undefined;
1012
+ Timeout?: number | undefined;
1013
+ MemorySize?: number | undefined;
1014
+ VpcConfig?: VpcConfig | undefined;
1015
+ Environment?: Environment | undefined;
1016
+ Runtime?: Runtime | undefined;
1017
+ DeadLetterConfig?: DeadLetterConfig | undefined;
1018
+ KMSKeyArn?: string | undefined;
1019
+ TracingConfig?: TracingConfig | undefined;
1020
+ RevisionId?: string | undefined;
1021
+ Layers?: string[] | undefined;
1022
+ FileSystemConfigs?: FileSystemConfig[] | undefined;
1023
+ ImageConfig?: ImageConfig | undefined;
1024
+ EphemeralStorage?: EphemeralStorage | undefined;
1025
+ SnapStart?: SnapStart | undefined;
1026
+ LoggingConfig?: LoggingConfig | undefined;
1027
+ CapacityProviderConfig?: CapacityProviderConfig | undefined;
1028
+ DurableConfig?: DurableConfig | undefined;
1029
+ }
1030
+ export interface UpdateFunctionUrlConfigRequest {
1031
+ FunctionName: string | undefined;
1032
+ Qualifier?: string | undefined;
1033
+ AuthType?: FunctionUrlAuthType | undefined;
1034
+ Cors?: Cors | undefined;
1035
+ InvokeMode?: InvokeMode | undefined;
1036
+ }
1037
+ export interface UpdateFunctionUrlConfigResponse {
1038
+ FunctionUrl: string | undefined;
1039
+ FunctionArn: string | undefined;
1040
+ AuthType: FunctionUrlAuthType | undefined;
1041
+ Cors?: Cors | undefined;
1042
+ CreationTime: string | undefined;
1043
+ LastModifiedTime: string | undefined;
1044
+ InvokeMode?: InvokeMode | undefined;
1045
+ }
1046
+ export interface CreateAliasRequest {
1047
+ FunctionName: string | undefined;
1048
+ Name: string | undefined;
1049
+ FunctionVersion: string | undefined;
1050
+ Description?: string | undefined;
1051
+ RoutingConfig?: AliasRoutingConfiguration | undefined;
1052
+ }
1053
+ export interface DeleteAliasRequest {
1054
+ FunctionName: string | undefined;
1055
+ Name: string | undefined;
1056
+ }
1057
+ export interface GetAliasRequest {
1058
+ FunctionName: string | undefined;
1059
+ Name: string | undefined;
1060
+ }
1061
+ export interface ListAliasesRequest {
1062
+ FunctionName: string | undefined;
1063
+ FunctionVersion?: string | undefined;
1064
+ Marker?: string | undefined;
1065
+ MaxItems?: number | undefined;
1066
+ }
1067
+ export interface ListAliasesResponse {
1068
+ NextMarker?: string | undefined;
1069
+ Aliases?: AliasConfiguration[] | undefined;
1070
+ }
1071
+ export interface UpdateAliasRequest {
1072
+ FunctionName: string | undefined;
1073
+ Name: string | undefined;
1074
+ FunctionVersion?: string | undefined;
1075
+ Description?: string | undefined;
1076
+ RoutingConfig?: AliasRoutingConfiguration | undefined;
1077
+ RevisionId?: string | undefined;
1078
+ }
1079
+ export interface ListVersionsByFunctionRequest {
1080
+ FunctionName: string | undefined;
1081
+ Marker?: string | undefined;
1082
+ MaxItems?: number | undefined;
1083
+ }
1084
+ export interface ListVersionsByFunctionResponse {
1085
+ NextMarker?: string | undefined;
1086
+ Versions?: FunctionConfiguration[] | undefined;
1087
+ }
1088
+ export interface PublishVersionRequest {
1089
+ FunctionName: string | undefined;
1090
+ CodeSha256?: string | undefined;
1091
+ Description?: string | undefined;
1092
+ RevisionId?: string | undefined;
1093
+ PublishTo?: FunctionVersionLatestPublished | undefined;
1094
+ }
1095
+ export interface GetAccountSettingsRequest {}
1096
+ export interface GetAccountSettingsResponse {
1097
+ AccountLimit?: AccountLimit | undefined;
1098
+ AccountUsage?: AccountUsage | undefined;
1099
+ }
1100
+ export interface GetDurableExecutionRequest {
1101
+ DurableExecutionArn: string | undefined;
1102
+ }
1103
+ export interface TraceHeader {
1104
+ XAmznTraceId?: string | undefined;
1105
+ }
1106
+ export interface GetDurableExecutionResponse {
1107
+ DurableExecutionArn: string | undefined;
1108
+ DurableExecutionName: string | undefined;
1109
+ FunctionArn: string | undefined;
1110
+ InputPayload?: string | undefined;
1111
+ Result?: string | undefined;
1112
+ Error?: ErrorObject | undefined;
1113
+ StartTimestamp: Date | undefined;
1114
+ Status: ExecutionStatus | undefined;
1115
+ EndTimestamp?: Date | undefined;
1116
+ Version?: string | undefined;
1117
+ TraceHeader?: TraceHeader | undefined;
1118
+ }
1119
+ export interface GetDurableExecutionHistoryRequest {
1120
+ DurableExecutionArn: string | undefined;
1121
+ IncludeExecutionData?: boolean | undefined;
1122
+ MaxItems?: number | undefined;
1123
+ Marker?: string | undefined;
1124
+ ReverseOrder?: boolean | undefined;
1125
+ }
1126
+ export interface EventError {
1127
+ Payload?: ErrorObject | undefined;
1128
+ Truncated?: boolean | undefined;
1129
+ }
1130
+ export interface CallbackFailedDetails {
1131
+ Error: EventError | undefined;
1132
+ }
1133
+ export interface CallbackStartedDetails {
1134
+ CallbackId: string | undefined;
1135
+ HeartbeatTimeout?: number | undefined;
1136
+ Timeout?: number | undefined;
1137
+ }
1138
+ export interface EventResult {
1139
+ Payload?: string | undefined;
1140
+ Truncated?: boolean | undefined;
1141
+ }
1142
+ export interface CallbackSucceededDetails {
1143
+ Result: EventResult | undefined;
1144
+ }
1145
+ export interface CallbackTimedOutDetails {
1146
+ Error: EventError | undefined;
1147
+ }
1148
+ export interface ChainedInvokeFailedDetails {
1149
+ Error: EventError | undefined;
1150
+ }
1151
+ export interface EventInput {
1152
+ Payload?: string | undefined;
1153
+ Truncated?: boolean | undefined;
1154
+ }
1155
+ export interface ChainedInvokeStartedDetails {
1156
+ FunctionName: string | undefined;
1157
+ TenantId?: string | undefined;
1158
+ Input?: EventInput | undefined;
1159
+ ExecutedVersion?: string | undefined;
1160
+ DurableExecutionArn?: string | undefined;
1161
+ }
1162
+ export interface ChainedInvokeStoppedDetails {
1163
+ Error: EventError | undefined;
1164
+ }
1165
+ export interface ChainedInvokeSucceededDetails {
1166
+ Result: EventResult | undefined;
1167
+ }
1168
+ export interface ChainedInvokeTimedOutDetails {
1169
+ Error: EventError | undefined;
1170
+ }
1171
+ export interface ContextFailedDetails {
1172
+ Error: EventError | undefined;
1173
+ }
1174
+ export interface ContextStartedDetails {}
1175
+ export interface ContextSucceededDetails {
1176
+ Result: EventResult | undefined;
1177
+ }
1178
+ export interface ExecutionFailedDetails {
1179
+ Error: EventError | undefined;
1180
+ }
1181
+ export interface ExecutionStartedDetails {
1182
+ Input: EventInput | undefined;
1183
+ ExecutionTimeout: number | undefined;
1184
+ }
1185
+ export interface ExecutionStoppedDetails {
1186
+ Error: EventError | undefined;
1187
+ }
1188
+ export interface ExecutionSucceededDetails {
1189
+ Result: EventResult | undefined;
1190
+ }
1191
+ export interface ExecutionTimedOutDetails {
1192
+ Error?: EventError | undefined;
1193
+ }
1194
+ export interface InvocationCompletedDetails {
1195
+ StartTimestamp: Date | undefined;
1196
+ EndTimestamp: Date | undefined;
1197
+ RequestId: string | undefined;
1198
+ Error?: EventError | undefined;
1199
+ }
1200
+ export interface RetryDetails {
1201
+ CurrentAttempt?: number | undefined;
1202
+ NextAttemptDelaySeconds?: number | undefined;
1203
+ }
1204
+ export interface StepFailedDetails {
1205
+ Error: EventError | undefined;
1206
+ RetryDetails: RetryDetails | undefined;
1207
+ }
1208
+ export interface StepStartedDetails {}
1209
+ export interface StepSucceededDetails {
1210
+ Result: EventResult | undefined;
1211
+ RetryDetails: RetryDetails | undefined;
1212
+ }
1213
+ export interface WaitCancelledDetails {
1214
+ Error?: EventError | undefined;
1215
+ }
1216
+ export interface WaitStartedDetails {
1217
+ Duration: number | undefined;
1218
+ ScheduledEndTimestamp: Date | undefined;
1219
+ }
1220
+ export interface WaitSucceededDetails {
1221
+ Duration?: number | undefined;
1222
+ }
1223
+ export interface Event {
1224
+ EventType?: EventType | undefined;
1225
+ SubType?: string | undefined;
1226
+ EventId?: number | undefined;
1227
+ Id?: string | undefined;
1228
+ Name?: string | undefined;
1229
+ EventTimestamp?: Date | undefined;
1230
+ ParentId?: string | undefined;
1231
+ ExecutionStartedDetails?: ExecutionStartedDetails | undefined;
1232
+ ExecutionSucceededDetails?: ExecutionSucceededDetails | undefined;
1233
+ ExecutionFailedDetails?: ExecutionFailedDetails | undefined;
1234
+ ExecutionTimedOutDetails?: ExecutionTimedOutDetails | undefined;
1235
+ ExecutionStoppedDetails?: ExecutionStoppedDetails | undefined;
1236
+ ContextStartedDetails?: ContextStartedDetails | undefined;
1237
+ ContextSucceededDetails?: ContextSucceededDetails | undefined;
1238
+ ContextFailedDetails?: ContextFailedDetails | undefined;
1239
+ WaitStartedDetails?: WaitStartedDetails | undefined;
1240
+ WaitSucceededDetails?: WaitSucceededDetails | undefined;
1241
+ WaitCancelledDetails?: WaitCancelledDetails | undefined;
1242
+ StepStartedDetails?: StepStartedDetails | undefined;
1243
+ StepSucceededDetails?: StepSucceededDetails | undefined;
1244
+ StepFailedDetails?: StepFailedDetails | undefined;
1245
+ ChainedInvokeStartedDetails?: ChainedInvokeStartedDetails | undefined;
1246
+ ChainedInvokeSucceededDetails?: ChainedInvokeSucceededDetails | undefined;
1247
+ ChainedInvokeFailedDetails?: ChainedInvokeFailedDetails | undefined;
1248
+ ChainedInvokeTimedOutDetails?: ChainedInvokeTimedOutDetails | undefined;
1249
+ ChainedInvokeStoppedDetails?: ChainedInvokeStoppedDetails | undefined;
1250
+ CallbackStartedDetails?: CallbackStartedDetails | undefined;
1251
+ CallbackSucceededDetails?: CallbackSucceededDetails | undefined;
1252
+ CallbackFailedDetails?: CallbackFailedDetails | undefined;
1253
+ CallbackTimedOutDetails?: CallbackTimedOutDetails | undefined;
1254
+ InvocationCompletedDetails?: InvocationCompletedDetails | undefined;
1255
+ }
1256
+ export interface GetDurableExecutionHistoryResponse {
1257
+ Events: Event[] | undefined;
1258
+ NextMarker?: string | undefined;
1259
+ }
1260
+ export interface GetDurableExecutionStateRequest {
1261
+ DurableExecutionArn: string | undefined;
1262
+ CheckpointToken: string | undefined;
1263
+ Marker?: string | undefined;
1264
+ MaxItems?: number | undefined;
1265
+ }
1266
+ export interface GetDurableExecutionStateResponse {
1267
+ Operations: Operation[] | undefined;
1268
+ NextMarker?: string | undefined;
1269
+ }
1270
+ export interface FunctionEventInvokeConfig {
1271
+ LastModified?: Date | undefined;
1272
+ FunctionArn?: string | undefined;
1273
+ MaximumRetryAttempts?: number | undefined;
1274
+ MaximumEventAgeInSeconds?: number | undefined;
1275
+ DestinationConfig?: DestinationConfig | undefined;
1276
+ }
1277
+ export interface GetFunctionEventInvokeConfigRequest {
1278
+ FunctionName: string | undefined;
1279
+ Qualifier?: string | undefined;
1280
+ }
1281
+ export interface ListLayersRequest {
1282
+ CompatibleRuntime?: Runtime | undefined;
1283
+ Marker?: string | undefined;
1284
+ MaxItems?: number | undefined;
1285
+ CompatibleArchitecture?: Architecture | undefined;
1286
+ }
1287
+ export interface LayerVersionsListItem {
1288
+ LayerVersionArn?: string | undefined;
1289
+ Version?: number | undefined;
1290
+ Description?: string | undefined;
1291
+ CreatedDate?: string | undefined;
1292
+ CompatibleRuntimes?: Runtime[] | undefined;
1293
+ LicenseInfo?: string | undefined;
1294
+ CompatibleArchitectures?: Architecture[] | undefined;
1295
+ }
1296
+ export interface LayersListItem {
1297
+ LayerName?: string | undefined;
1298
+ LayerArn?: string | undefined;
1299
+ LatestMatchingVersion?: LayerVersionsListItem | undefined;
1300
+ }
1301
+ export interface ListLayersResponse {
1302
+ NextMarker?: string | undefined;
1303
+ Layers?: LayersListItem[] | undefined;
1304
+ }
1305
+ export interface DeleteLayerVersionRequest {
1306
+ LayerName: string | undefined;
1307
+ VersionNumber: number | undefined;
1308
+ }
1309
+ export interface GetLayerVersionRequest {
1310
+ LayerName: string | undefined;
1311
+ VersionNumber: number | undefined;
1312
+ }
1313
+ export interface LayerVersionContentOutput {
1314
+ Location?: string | undefined;
1315
+ CodeSha256?: string | undefined;
1316
+ CodeSize?: number | undefined;
1317
+ SigningProfileVersionArn?: string | undefined;
1318
+ SigningJobArn?: string | undefined;
1319
+ }
1320
+ export interface GetLayerVersionResponse {
1321
+ Content?: LayerVersionContentOutput | undefined;
1322
+ LayerArn?: string | undefined;
1323
+ LayerVersionArn?: string | undefined;
1324
+ Description?: string | undefined;
1325
+ CreatedDate?: string | undefined;
1326
+ Version?: number | undefined;
1327
+ CompatibleRuntimes?: Runtime[] | undefined;
1328
+ LicenseInfo?: string | undefined;
1329
+ CompatibleArchitectures?: Architecture[] | undefined;
1330
+ }
1331
+ export interface GetLayerVersionByArnRequest {
1332
+ Arn: string | undefined;
1333
+ }
1334
+ export interface GetLayerVersionPolicyRequest {
1335
+ LayerName: string | undefined;
1336
+ VersionNumber: number | undefined;
1337
+ }
1338
+ export interface GetLayerVersionPolicyResponse {
1339
+ Policy?: string | undefined;
1340
+ RevisionId?: string | undefined;
1341
+ }
1342
+ export interface ListLayerVersionsRequest {
1343
+ CompatibleRuntime?: Runtime | undefined;
1344
+ LayerName: string | undefined;
1345
+ Marker?: string | undefined;
1346
+ MaxItems?: number | undefined;
1347
+ CompatibleArchitecture?: Architecture | undefined;
1348
+ }
1349
+ export interface ListLayerVersionsResponse {
1350
+ NextMarker?: string | undefined;
1351
+ LayerVersions?: LayerVersionsListItem[] | undefined;
1352
+ }
1353
+ export interface LayerVersionContentInput {
1354
+ S3Bucket?: string | undefined;
1355
+ S3Key?: string | undefined;
1356
+ S3ObjectVersion?: string | undefined;
1357
+ ZipFile?: Uint8Array | undefined;
1358
+ }
1359
+ export interface PublishLayerVersionRequest {
1360
+ LayerName: string | undefined;
1361
+ Description?: string | undefined;
1362
+ Content: LayerVersionContentInput | undefined;
1363
+ CompatibleRuntimes?: Runtime[] | undefined;
1364
+ LicenseInfo?: string | undefined;
1365
+ CompatibleArchitectures?: Architecture[] | undefined;
1366
+ }
1367
+ export interface PublishLayerVersionResponse {
1368
+ Content?: LayerVersionContentOutput | undefined;
1369
+ LayerArn?: string | undefined;
1370
+ LayerVersionArn?: string | undefined;
1371
+ Description?: string | undefined;
1372
+ CreatedDate?: string | undefined;
1373
+ Version?: number | undefined;
1374
+ CompatibleRuntimes?: Runtime[] | undefined;
1375
+ LicenseInfo?: string | undefined;
1376
+ CompatibleArchitectures?: Architecture[] | undefined;
1377
+ }
1378
+ export interface RemoveLayerVersionPermissionRequest {
1379
+ LayerName: string | undefined;
1380
+ VersionNumber: number | undefined;
1381
+ StatementId: string | undefined;
1382
+ RevisionId?: string | undefined;
1383
+ }
1384
+ export interface ListDurableExecutionsByFunctionRequest {
1385
+ FunctionName: string | undefined;
1386
+ Qualifier?: string | undefined;
1387
+ DurableExecutionName?: string | undefined;
1388
+ Statuses?: ExecutionStatus[] | undefined;
1389
+ StartedAfter?: Date | undefined;
1390
+ StartedBefore?: Date | undefined;
1391
+ ReverseOrder?: boolean | undefined;
1392
+ Marker?: string | undefined;
1393
+ MaxItems?: number | undefined;
1394
+ }
1395
+ export interface Execution {
1396
+ DurableExecutionArn: string | undefined;
1397
+ DurableExecutionName: string | undefined;
1398
+ FunctionArn: string | undefined;
1399
+ Status: ExecutionStatus | undefined;
1400
+ StartTimestamp: Date | undefined;
1401
+ EndTimestamp?: Date | undefined;
1402
+ }
1403
+ export interface ListDurableExecutionsByFunctionResponse {
1404
+ DurableExecutions?: Execution[] | undefined;
1405
+ NextMarker?: string | undefined;
1406
+ }
1407
+ export interface ListFunctionEventInvokeConfigsRequest {
1408
+ FunctionName: string | undefined;
1409
+ Marker?: string | undefined;
1410
+ MaxItems?: number | undefined;
1411
+ }
1412
+ export interface ListFunctionEventInvokeConfigsResponse {
1413
+ FunctionEventInvokeConfigs?: FunctionEventInvokeConfig[] | undefined;
1414
+ NextMarker?: string | undefined;
1415
+ }
1416
+ export interface ListTagsRequest {
1417
+ Resource: string | undefined;
1418
+ }
1419
+ export interface ListTagsResponse {
1420
+ Tags?: Record<string, string> | undefined;
1421
+ }
1422
+ export interface RemovePermissionRequest {
1423
+ FunctionName: string | undefined;
1424
+ StatementId: string | undefined;
1425
+ Qualifier?: string | undefined;
1426
+ RevisionId?: string | undefined;
1427
+ }
1428
+ export interface DeleteProvisionedConcurrencyConfigRequest {
1429
+ FunctionName: string | undefined;
1430
+ Qualifier: string | undefined;
1431
+ }
1432
+ export interface GetProvisionedConcurrencyConfigRequest {
1433
+ FunctionName: string | undefined;
1434
+ Qualifier: string | undefined;
1435
+ }
1436
+ export interface GetProvisionedConcurrencyConfigResponse {
1437
+ RequestedProvisionedConcurrentExecutions?: number | undefined;
1438
+ AvailableProvisionedConcurrentExecutions?: number | undefined;
1439
+ AllocatedProvisionedConcurrentExecutions?: number | undefined;
1440
+ Status?: ProvisionedConcurrencyStatusEnum | undefined;
1441
+ StatusReason?: string | undefined;
1442
+ LastModified?: string | undefined;
1443
+ }
1444
+ export interface PutProvisionedConcurrencyConfigRequest {
1445
+ FunctionName: string | undefined;
1446
+ Qualifier: string | undefined;
1447
+ ProvisionedConcurrentExecutions: number | undefined;
1448
+ }
1449
+ export interface PutProvisionedConcurrencyConfigResponse {
1450
+ RequestedProvisionedConcurrentExecutions?: number | undefined;
1451
+ AvailableProvisionedConcurrentExecutions?: number | undefined;
1452
+ AllocatedProvisionedConcurrentExecutions?: number | undefined;
1453
+ Status?: ProvisionedConcurrencyStatusEnum | undefined;
1454
+ StatusReason?: string | undefined;
1455
+ LastModified?: string | undefined;
1456
+ }
1457
+ export interface PutFunctionEventInvokeConfigRequest {
1458
+ FunctionName: string | undefined;
1459
+ Qualifier?: string | undefined;
1460
+ MaximumRetryAttempts?: number | undefined;
1461
+ MaximumEventAgeInSeconds?: number | undefined;
1462
+ DestinationConfig?: DestinationConfig | undefined;
1463
+ }
1464
+ export interface SendDurableExecutionCallbackFailureRequest {
1465
+ CallbackId: string | undefined;
1466
+ Error?: ErrorObject | undefined;
1467
+ }
1468
+ export interface SendDurableExecutionCallbackFailureResponse {}
1469
+ export interface SendDurableExecutionCallbackHeartbeatRequest {
1470
+ CallbackId: string | undefined;
1471
+ }
1472
+ export interface SendDurableExecutionCallbackHeartbeatResponse {}
1473
+ export interface SendDurableExecutionCallbackSuccessRequest {
1474
+ CallbackId: string | undefined;
1475
+ Result?: Uint8Array | undefined;
1476
+ }
1477
+ export interface SendDurableExecutionCallbackSuccessResponse {}
1478
+ export interface StopDurableExecutionRequest {
1479
+ DurableExecutionArn: string | undefined;
1480
+ Error?: ErrorObject | undefined;
1481
+ }
1482
+ export interface StopDurableExecutionResponse {
1483
+ StopTimestamp: Date | undefined;
1484
+ }
1485
+ export interface TagResourceRequest {
1486
+ Resource: string | undefined;
1487
+ Tags: Record<string, string> | undefined;
1488
+ }
1489
+ export interface UntagResourceRequest {
1490
+ Resource: string | undefined;
1491
+ TagKeys: string[] | undefined;
1492
+ }
1493
+ export interface UpdateFunctionEventInvokeConfigRequest {
1494
+ FunctionName: string | undefined;
1495
+ Qualifier?: string | undefined;
1496
+ MaximumRetryAttempts?: number | undefined;
1497
+ MaximumEventAgeInSeconds?: number | undefined;
1498
+ DestinationConfig?: DestinationConfig | undefined;
1499
+ }