@aws-sdk/client-bedrock-agentcore-control 3.847.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 (343) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +616 -0
  3. package/dist-cjs/BedrockAgentCoreControl.js +113 -0
  4. package/dist-cjs/BedrockAgentCoreControlClient.js +52 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateAgentRuntimeCommand.js +27 -0
  8. package/dist-cjs/commands/CreateAgentRuntimeEndpointCommand.js +27 -0
  9. package/dist-cjs/commands/CreateApiKeyCredentialProviderCommand.js +27 -0
  10. package/dist-cjs/commands/CreateBrowserCommand.js +27 -0
  11. package/dist-cjs/commands/CreateCodeInterpreterCommand.js +27 -0
  12. package/dist-cjs/commands/CreateGatewayCommand.js +27 -0
  13. package/dist-cjs/commands/CreateGatewayTargetCommand.js +27 -0
  14. package/dist-cjs/commands/CreateMemoryCommand.js +27 -0
  15. package/dist-cjs/commands/CreateOauth2CredentialProviderCommand.js +27 -0
  16. package/dist-cjs/commands/CreateWorkloadIdentityCommand.js +26 -0
  17. package/dist-cjs/commands/DeleteAgentRuntimeCommand.js +26 -0
  18. package/dist-cjs/commands/DeleteAgentRuntimeEndpointCommand.js +27 -0
  19. package/dist-cjs/commands/DeleteApiKeyCredentialProviderCommand.js +26 -0
  20. package/dist-cjs/commands/DeleteBrowserCommand.js +26 -0
  21. package/dist-cjs/commands/DeleteCodeInterpreterCommand.js +26 -0
  22. package/dist-cjs/commands/DeleteGatewayCommand.js +26 -0
  23. package/dist-cjs/commands/DeleteGatewayTargetCommand.js +26 -0
  24. package/dist-cjs/commands/DeleteMemoryCommand.js +26 -0
  25. package/dist-cjs/commands/DeleteOauth2CredentialProviderCommand.js +26 -0
  26. package/dist-cjs/commands/DeleteWorkloadIdentityCommand.js +26 -0
  27. package/dist-cjs/commands/GetAgentRuntimeCommand.js +27 -0
  28. package/dist-cjs/commands/GetAgentRuntimeEndpointCommand.js +27 -0
  29. package/dist-cjs/commands/GetApiKeyCredentialProviderCommand.js +26 -0
  30. package/dist-cjs/commands/GetBrowserCommand.js +27 -0
  31. package/dist-cjs/commands/GetCodeInterpreterCommand.js +27 -0
  32. package/dist-cjs/commands/GetGatewayCommand.js +27 -0
  33. package/dist-cjs/commands/GetGatewayTargetCommand.js +27 -0
  34. package/dist-cjs/commands/GetMemoryCommand.js +27 -0
  35. package/dist-cjs/commands/GetOauth2CredentialProviderCommand.js +26 -0
  36. package/dist-cjs/commands/GetTokenVaultCommand.js +26 -0
  37. package/dist-cjs/commands/GetWorkloadIdentityCommand.js +26 -0
  38. package/dist-cjs/commands/ListAgentRuntimeEndpointsCommand.js +27 -0
  39. package/dist-cjs/commands/ListAgentRuntimeVersionsCommand.js +27 -0
  40. package/dist-cjs/commands/ListAgentRuntimesCommand.js +27 -0
  41. package/dist-cjs/commands/ListApiKeyCredentialProvidersCommand.js +26 -0
  42. package/dist-cjs/commands/ListBrowsersCommand.js +27 -0
  43. package/dist-cjs/commands/ListCodeInterpretersCommand.js +27 -0
  44. package/dist-cjs/commands/ListGatewayTargetsCommand.js +27 -0
  45. package/dist-cjs/commands/ListGatewaysCommand.js +27 -0
  46. package/dist-cjs/commands/ListMemoriesCommand.js +26 -0
  47. package/dist-cjs/commands/ListOauth2CredentialProvidersCommand.js +26 -0
  48. package/dist-cjs/commands/ListWorkloadIdentitiesCommand.js +26 -0
  49. package/dist-cjs/commands/SetTokenVaultCMKCommand.js +26 -0
  50. package/dist-cjs/commands/UpdateAgentRuntimeCommand.js +27 -0
  51. package/dist-cjs/commands/UpdateAgentRuntimeEndpointCommand.js +27 -0
  52. package/dist-cjs/commands/UpdateApiKeyCredentialProviderCommand.js +27 -0
  53. package/dist-cjs/commands/UpdateGatewayCommand.js +27 -0
  54. package/dist-cjs/commands/UpdateGatewayTargetCommand.js +27 -0
  55. package/dist-cjs/commands/UpdateMemoryCommand.js +27 -0
  56. package/dist-cjs/commands/UpdateOauth2CredentialProviderCommand.js +27 -0
  57. package/dist-cjs/commands/UpdateWorkloadIdentityCommand.js +26 -0
  58. package/dist-cjs/commands/index.js +54 -0
  59. package/dist-cjs/endpoint/EndpointParameters.js +17 -0
  60. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  61. package/dist-cjs/endpoint/ruleset.js +7 -0
  62. package/dist-cjs/extensionConfiguration.js +2 -0
  63. package/dist-cjs/index.js +12 -0
  64. package/dist-cjs/models/BedrockAgentCoreControlServiceException.js +12 -0
  65. package/dist-cjs/models/index.js +4 -0
  66. package/dist-cjs/models/models_0.js +1213 -0
  67. package/dist-cjs/pagination/Interfaces.js +2 -0
  68. package/dist-cjs/pagination/ListAgentRuntimeEndpointsPaginator.js +7 -0
  69. package/dist-cjs/pagination/ListAgentRuntimeVersionsPaginator.js +7 -0
  70. package/dist-cjs/pagination/ListAgentRuntimesPaginator.js +7 -0
  71. package/dist-cjs/pagination/ListApiKeyCredentialProvidersPaginator.js +7 -0
  72. package/dist-cjs/pagination/ListBrowsersPaginator.js +7 -0
  73. package/dist-cjs/pagination/ListCodeInterpretersPaginator.js +7 -0
  74. package/dist-cjs/pagination/ListGatewayTargetsPaginator.js +7 -0
  75. package/dist-cjs/pagination/ListGatewaysPaginator.js +7 -0
  76. package/dist-cjs/pagination/ListMemoriesPaginator.js +7 -0
  77. package/dist-cjs/pagination/ListOauth2CredentialProvidersPaginator.js +7 -0
  78. package/dist-cjs/pagination/ListWorkloadIdentitiesPaginator.js +7 -0
  79. package/dist-cjs/pagination/index.js +15 -0
  80. package/dist-cjs/protocols/Aws_restJson1.js +2325 -0
  81. package/dist-cjs/runtimeConfig.browser.js +39 -0
  82. package/dist-cjs/runtimeConfig.js +56 -0
  83. package/dist-cjs/runtimeConfig.native.js +15 -0
  84. package/dist-cjs/runtimeConfig.shared.js +34 -0
  85. package/dist-cjs/runtimeExtensions.js +13 -0
  86. package/dist-cjs/waiters/index.js +4 -0
  87. package/dist-cjs/waiters/waitForMemoryCreated.js +54 -0
  88. package/dist-es/BedrockAgentCoreControl.js +109 -0
  89. package/dist-es/BedrockAgentCoreControlClient.js +48 -0
  90. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  91. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  92. package/dist-es/commands/CreateAgentRuntimeCommand.js +23 -0
  93. package/dist-es/commands/CreateAgentRuntimeEndpointCommand.js +23 -0
  94. package/dist-es/commands/CreateApiKeyCredentialProviderCommand.js +23 -0
  95. package/dist-es/commands/CreateBrowserCommand.js +23 -0
  96. package/dist-es/commands/CreateCodeInterpreterCommand.js +23 -0
  97. package/dist-es/commands/CreateGatewayCommand.js +23 -0
  98. package/dist-es/commands/CreateGatewayTargetCommand.js +23 -0
  99. package/dist-es/commands/CreateMemoryCommand.js +23 -0
  100. package/dist-es/commands/CreateOauth2CredentialProviderCommand.js +23 -0
  101. package/dist-es/commands/CreateWorkloadIdentityCommand.js +22 -0
  102. package/dist-es/commands/DeleteAgentRuntimeCommand.js +22 -0
  103. package/dist-es/commands/DeleteAgentRuntimeEndpointCommand.js +23 -0
  104. package/dist-es/commands/DeleteApiKeyCredentialProviderCommand.js +22 -0
  105. package/dist-es/commands/DeleteBrowserCommand.js +22 -0
  106. package/dist-es/commands/DeleteCodeInterpreterCommand.js +22 -0
  107. package/dist-es/commands/DeleteGatewayCommand.js +22 -0
  108. package/dist-es/commands/DeleteGatewayTargetCommand.js +22 -0
  109. package/dist-es/commands/DeleteMemoryCommand.js +22 -0
  110. package/dist-es/commands/DeleteOauth2CredentialProviderCommand.js +22 -0
  111. package/dist-es/commands/DeleteWorkloadIdentityCommand.js +22 -0
  112. package/dist-es/commands/GetAgentRuntimeCommand.js +23 -0
  113. package/dist-es/commands/GetAgentRuntimeEndpointCommand.js +23 -0
  114. package/dist-es/commands/GetApiKeyCredentialProviderCommand.js +22 -0
  115. package/dist-es/commands/GetBrowserCommand.js +23 -0
  116. package/dist-es/commands/GetCodeInterpreterCommand.js +23 -0
  117. package/dist-es/commands/GetGatewayCommand.js +23 -0
  118. package/dist-es/commands/GetGatewayTargetCommand.js +23 -0
  119. package/dist-es/commands/GetMemoryCommand.js +23 -0
  120. package/dist-es/commands/GetOauth2CredentialProviderCommand.js +22 -0
  121. package/dist-es/commands/GetTokenVaultCommand.js +22 -0
  122. package/dist-es/commands/GetWorkloadIdentityCommand.js +22 -0
  123. package/dist-es/commands/ListAgentRuntimeEndpointsCommand.js +23 -0
  124. package/dist-es/commands/ListAgentRuntimeVersionsCommand.js +23 -0
  125. package/dist-es/commands/ListAgentRuntimesCommand.js +23 -0
  126. package/dist-es/commands/ListApiKeyCredentialProvidersCommand.js +22 -0
  127. package/dist-es/commands/ListBrowsersCommand.js +23 -0
  128. package/dist-es/commands/ListCodeInterpretersCommand.js +23 -0
  129. package/dist-es/commands/ListGatewayTargetsCommand.js +23 -0
  130. package/dist-es/commands/ListGatewaysCommand.js +23 -0
  131. package/dist-es/commands/ListMemoriesCommand.js +22 -0
  132. package/dist-es/commands/ListOauth2CredentialProvidersCommand.js +22 -0
  133. package/dist-es/commands/ListWorkloadIdentitiesCommand.js +22 -0
  134. package/dist-es/commands/SetTokenVaultCMKCommand.js +22 -0
  135. package/dist-es/commands/UpdateAgentRuntimeCommand.js +23 -0
  136. package/dist-es/commands/UpdateAgentRuntimeEndpointCommand.js +23 -0
  137. package/dist-es/commands/UpdateApiKeyCredentialProviderCommand.js +23 -0
  138. package/dist-es/commands/UpdateGatewayCommand.js +23 -0
  139. package/dist-es/commands/UpdateGatewayTargetCommand.js +23 -0
  140. package/dist-es/commands/UpdateMemoryCommand.js +23 -0
  141. package/dist-es/commands/UpdateOauth2CredentialProviderCommand.js +23 -0
  142. package/dist-es/commands/UpdateWorkloadIdentityCommand.js +22 -0
  143. package/dist-es/commands/index.js +51 -0
  144. package/dist-es/endpoint/EndpointParameters.js +13 -0
  145. package/dist-es/endpoint/endpointResolver.js +14 -0
  146. package/dist-es/endpoint/ruleset.js +4 -0
  147. package/dist-es/extensionConfiguration.js +1 -0
  148. package/dist-es/index.js +7 -0
  149. package/dist-es/models/BedrockAgentCoreControlServiceException.js +8 -0
  150. package/dist-es/models/index.js +1 -0
  151. package/dist-es/models/models_0.js +1104 -0
  152. package/dist-es/pagination/Interfaces.js +1 -0
  153. package/dist-es/pagination/ListAgentRuntimeEndpointsPaginator.js +4 -0
  154. package/dist-es/pagination/ListAgentRuntimeVersionsPaginator.js +4 -0
  155. package/dist-es/pagination/ListAgentRuntimesPaginator.js +4 -0
  156. package/dist-es/pagination/ListApiKeyCredentialProvidersPaginator.js +4 -0
  157. package/dist-es/pagination/ListBrowsersPaginator.js +4 -0
  158. package/dist-es/pagination/ListCodeInterpretersPaginator.js +4 -0
  159. package/dist-es/pagination/ListGatewayTargetsPaginator.js +4 -0
  160. package/dist-es/pagination/ListGatewaysPaginator.js +4 -0
  161. package/dist-es/pagination/ListMemoriesPaginator.js +4 -0
  162. package/dist-es/pagination/ListOauth2CredentialProvidersPaginator.js +4 -0
  163. package/dist-es/pagination/ListWorkloadIdentitiesPaginator.js +4 -0
  164. package/dist-es/pagination/index.js +12 -0
  165. package/dist-es/protocols/Aws_restJson1.js +2218 -0
  166. package/dist-es/runtimeConfig.browser.js +34 -0
  167. package/dist-es/runtimeConfig.js +51 -0
  168. package/dist-es/runtimeConfig.native.js +11 -0
  169. package/dist-es/runtimeConfig.shared.js +30 -0
  170. package/dist-es/runtimeExtensions.js +9 -0
  171. package/dist-es/waiters/index.js +1 -0
  172. package/dist-es/waiters/waitForMemoryCreated.js +49 -0
  173. package/dist-types/BedrockAgentCoreControl.d.ts +376 -0
  174. package/dist-types/BedrockAgentCoreControlClient.d.ts +238 -0
  175. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  176. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  177. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +125 -0
  178. package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +101 -0
  179. package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +110 -0
  180. package/dist-types/commands/CreateBrowserCommand.d.ts +106 -0
  181. package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +99 -0
  182. package/dist-types/commands/CreateGatewayCommand.d.ts +155 -0
  183. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +259 -0
  184. package/dist-types/commands/CreateMemoryCommand.d.ts +215 -0
  185. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +147 -0
  186. package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +97 -0
  187. package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +87 -0
  188. package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +89 -0
  189. package/dist-types/commands/DeleteApiKeyCredentialProviderCommand.d.ts +88 -0
  190. package/dist-types/commands/DeleteBrowserCommand.d.ts +96 -0
  191. package/dist-types/commands/DeleteCodeInterpreterCommand.d.ts +96 -0
  192. package/dist-types/commands/DeleteGatewayCommand.d.ts +94 -0
  193. package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +96 -0
  194. package/dist-types/commands/DeleteMemoryCommand.d.ts +89 -0
  195. package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +88 -0
  196. package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +88 -0
  197. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +124 -0
  198. package/dist-types/commands/GetAgentRuntimeEndpointCommand.d.ts +98 -0
  199. package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +99 -0
  200. package/dist-types/commands/GetBrowserCommand.d.ts +104 -0
  201. package/dist-types/commands/GetCodeInterpreterCommand.d.ts +97 -0
  202. package/dist-types/commands/GetGatewayCommand.d.ts +125 -0
  203. package/dist-types/commands/GetGatewayTargetCommand.d.ts +174 -0
  204. package/dist-types/commands/GetMemoryCommand.d.ts +144 -0
  205. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +170 -0
  206. package/dist-types/commands/GetTokenVaultCommand.d.ts +95 -0
  207. package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +96 -0
  208. package/dist-types/commands/ListAgentRuntimeEndpointsCommand.d.ts +100 -0
  209. package/dist-types/commands/ListAgentRuntimeVersionsCommand.d.ts +100 -0
  210. package/dist-types/commands/ListAgentRuntimesCommand.d.ts +96 -0
  211. package/dist-types/commands/ListApiKeyCredentialProvidersCommand.d.ts +99 -0
  212. package/dist-types/commands/ListBrowsersCommand.d.ts +97 -0
  213. package/dist-types/commands/ListCodeInterpretersCommand.d.ts +97 -0
  214. package/dist-types/commands/ListGatewayTargetsCommand.d.ts +96 -0
  215. package/dist-types/commands/ListGatewaysCommand.d.ts +97 -0
  216. package/dist-types/commands/ListMemoriesCommand.d.ts +97 -0
  217. package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +100 -0
  218. package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +97 -0
  219. package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +102 -0
  220. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +129 -0
  221. package/dist-types/commands/UpdateAgentRuntimeEndpointCommand.d.ts +103 -0
  222. package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +109 -0
  223. package/dist-types/commands/UpdateGatewayCommand.d.ts +158 -0
  224. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +259 -0
  225. package/dist-types/commands/UpdateMemoryCommand.d.ts +260 -0
  226. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +217 -0
  227. package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +99 -0
  228. package/dist-types/commands/index.d.ts +51 -0
  229. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  230. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  231. package/dist-types/endpoint/ruleset.d.ts +2 -0
  232. package/dist-types/extensionConfiguration.d.ts +9 -0
  233. package/dist-types/index.d.ts +15 -0
  234. package/dist-types/models/BedrockAgentCoreControlServiceException.d.ts +14 -0
  235. package/dist-types/models/index.d.ts +1 -0
  236. package/dist-types/models/models_0.d.ts +5821 -0
  237. package/dist-types/pagination/Interfaces.d.ts +8 -0
  238. package/dist-types/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +7 -0
  239. package/dist-types/pagination/ListAgentRuntimeVersionsPaginator.d.ts +7 -0
  240. package/dist-types/pagination/ListAgentRuntimesPaginator.d.ts +7 -0
  241. package/dist-types/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +7 -0
  242. package/dist-types/pagination/ListBrowsersPaginator.d.ts +7 -0
  243. package/dist-types/pagination/ListCodeInterpretersPaginator.d.ts +7 -0
  244. package/dist-types/pagination/ListGatewayTargetsPaginator.d.ts +7 -0
  245. package/dist-types/pagination/ListGatewaysPaginator.d.ts +7 -0
  246. package/dist-types/pagination/ListMemoriesPaginator.d.ts +7 -0
  247. package/dist-types/pagination/ListOauth2CredentialProvidersPaginator.d.ts +7 -0
  248. package/dist-types/pagination/ListWorkloadIdentitiesPaginator.d.ts +7 -0
  249. package/dist-types/pagination/index.d.ts +12 -0
  250. package/dist-types/protocols/Aws_restJson1.d.ts +461 -0
  251. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  252. package/dist-types/runtimeConfig.d.ts +50 -0
  253. package/dist-types/runtimeConfig.native.d.ts +49 -0
  254. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  255. package/dist-types/runtimeExtensions.d.ts +17 -0
  256. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +883 -0
  257. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +428 -0
  258. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  259. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  260. package/dist-types/ts3.4/commands/CreateAgentRuntimeCommand.d.ts +51 -0
  261. package/dist-types/ts3.4/commands/CreateAgentRuntimeEndpointCommand.d.ts +51 -0
  262. package/dist-types/ts3.4/commands/CreateApiKeyCredentialProviderCommand.d.ts +51 -0
  263. package/dist-types/ts3.4/commands/CreateBrowserCommand.d.ts +50 -0
  264. package/dist-types/ts3.4/commands/CreateCodeInterpreterCommand.d.ts +51 -0
  265. package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +50 -0
  266. package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +51 -0
  267. package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +47 -0
  268. package/dist-types/ts3.4/commands/CreateOauth2CredentialProviderCommand.d.ts +51 -0
  269. package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +51 -0
  270. package/dist-types/ts3.4/commands/DeleteAgentRuntimeCommand.d.ts +51 -0
  271. package/dist-types/ts3.4/commands/DeleteAgentRuntimeEndpointCommand.d.ts +51 -0
  272. package/dist-types/ts3.4/commands/DeleteApiKeyCredentialProviderCommand.d.ts +51 -0
  273. package/dist-types/ts3.4/commands/DeleteBrowserCommand.d.ts +50 -0
  274. package/dist-types/ts3.4/commands/DeleteCodeInterpreterCommand.d.ts +51 -0
  275. package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +50 -0
  276. package/dist-types/ts3.4/commands/DeleteGatewayTargetCommand.d.ts +51 -0
  277. package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +47 -0
  278. package/dist-types/ts3.4/commands/DeleteOauth2CredentialProviderCommand.d.ts +51 -0
  279. package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +51 -0
  280. package/dist-types/ts3.4/commands/GetAgentRuntimeCommand.d.ts +50 -0
  281. package/dist-types/ts3.4/commands/GetAgentRuntimeEndpointCommand.d.ts +51 -0
  282. package/dist-types/ts3.4/commands/GetApiKeyCredentialProviderCommand.d.ts +51 -0
  283. package/dist-types/ts3.4/commands/GetBrowserCommand.d.ts +47 -0
  284. package/dist-types/ts3.4/commands/GetCodeInterpreterCommand.d.ts +51 -0
  285. package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +47 -0
  286. package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +50 -0
  287. package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +47 -0
  288. package/dist-types/ts3.4/commands/GetOauth2CredentialProviderCommand.d.ts +51 -0
  289. package/dist-types/ts3.4/commands/GetTokenVaultCommand.d.ts +50 -0
  290. package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +51 -0
  291. package/dist-types/ts3.4/commands/ListAgentRuntimeEndpointsCommand.d.ts +51 -0
  292. package/dist-types/ts3.4/commands/ListAgentRuntimeVersionsCommand.d.ts +51 -0
  293. package/dist-types/ts3.4/commands/ListAgentRuntimesCommand.d.ts +51 -0
  294. package/dist-types/ts3.4/commands/ListApiKeyCredentialProvidersCommand.d.ts +51 -0
  295. package/dist-types/ts3.4/commands/ListBrowsersCommand.d.ts +47 -0
  296. package/dist-types/ts3.4/commands/ListCodeInterpretersCommand.d.ts +51 -0
  297. package/dist-types/ts3.4/commands/ListGatewayTargetsCommand.d.ts +51 -0
  298. package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +47 -0
  299. package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +47 -0
  300. package/dist-types/ts3.4/commands/ListOauth2CredentialProvidersCommand.d.ts +51 -0
  301. package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +51 -0
  302. package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +50 -0
  303. package/dist-types/ts3.4/commands/UpdateAgentRuntimeCommand.d.ts +51 -0
  304. package/dist-types/ts3.4/commands/UpdateAgentRuntimeEndpointCommand.d.ts +51 -0
  305. package/dist-types/ts3.4/commands/UpdateApiKeyCredentialProviderCommand.d.ts +51 -0
  306. package/dist-types/ts3.4/commands/UpdateGatewayCommand.d.ts +50 -0
  307. package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +51 -0
  308. package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +47 -0
  309. package/dist-types/ts3.4/commands/UpdateOauth2CredentialProviderCommand.d.ts +51 -0
  310. package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +51 -0
  311. package/dist-types/ts3.4/commands/index.d.ts +51 -0
  312. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  313. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  314. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  315. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  316. package/dist-types/ts3.4/index.d.ts +10 -0
  317. package/dist-types/ts3.4/models/BedrockAgentCoreControlServiceException.d.ts +9 -0
  318. package/dist-types/ts3.4/models/index.d.ts +1 -0
  319. package/dist-types/ts3.4/models/models_0.d.ts +2222 -0
  320. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  321. package/dist-types/ts3.4/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +11 -0
  322. package/dist-types/ts3.4/pagination/ListAgentRuntimeVersionsPaginator.d.ts +11 -0
  323. package/dist-types/ts3.4/pagination/ListAgentRuntimesPaginator.d.ts +11 -0
  324. package/dist-types/ts3.4/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +11 -0
  325. package/dist-types/ts3.4/pagination/ListBrowsersPaginator.d.ts +11 -0
  326. package/dist-types/ts3.4/pagination/ListCodeInterpretersPaginator.d.ts +11 -0
  327. package/dist-types/ts3.4/pagination/ListGatewayTargetsPaginator.d.ts +11 -0
  328. package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -0
  329. package/dist-types/ts3.4/pagination/ListMemoriesPaginator.d.ts +11 -0
  330. package/dist-types/ts3.4/pagination/ListOauth2CredentialProvidersPaginator.d.ts +11 -0
  331. package/dist-types/ts3.4/pagination/ListWorkloadIdentitiesPaginator.d.ts +11 -0
  332. package/dist-types/ts3.4/pagination/index.d.ts +12 -0
  333. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +617 -0
  334. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +94 -0
  335. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  336. package/dist-types/ts3.4/runtimeConfig.native.d.ts +98 -0
  337. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  338. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  339. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  340. package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +11 -0
  341. package/dist-types/waiters/index.d.ts +1 -0
  342. package/dist-types/waiters/waitForMemoryCreated.d.ts +14 -0
  343. package/package.json +102 -0
@@ -0,0 +1,2222 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { BedrockAgentCoreControlServiceException as __BaseException } from "./BedrockAgentCoreControlServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare const AgentStatus: {
11
+ readonly CREATE_FAILED: "CREATE_FAILED";
12
+ readonly CREATING: "CREATING";
13
+ readonly DELETING: "DELETING";
14
+ readonly READY: "READY";
15
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
16
+ readonly UPDATING: "UPDATING";
17
+ };
18
+ export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
19
+ export interface Agent {
20
+ agentRuntimeArn: string | undefined;
21
+ agentRuntimeId: string | undefined;
22
+ agentRuntimeVersion: string | undefined;
23
+ agentRuntimeName: string | undefined;
24
+ description: string | undefined;
25
+ lastUpdatedAt: Date | undefined;
26
+ status: AgentStatus | undefined;
27
+ }
28
+ export interface ContainerConfiguration {
29
+ containerUri: string | undefined;
30
+ }
31
+ export type AgentArtifact =
32
+ | AgentArtifact.ContainerConfigurationMember
33
+ | AgentArtifact.$UnknownMember;
34
+ export declare namespace AgentArtifact {
35
+ interface ContainerConfigurationMember {
36
+ containerConfiguration: ContainerConfiguration;
37
+ $unknown?: never;
38
+ }
39
+ interface $UnknownMember {
40
+ containerConfiguration?: never;
41
+ $unknown: [string, any];
42
+ }
43
+ interface Visitor<T> {
44
+ containerConfiguration: (value: ContainerConfiguration) => T;
45
+ _: (name: string, value: any) => T;
46
+ }
47
+ const visit: <T>(value: AgentArtifact, visitor: Visitor<T>) => T;
48
+ }
49
+ export declare const AgentEndpointStatus: {
50
+ readonly CREATE_FAILED: "CREATE_FAILED";
51
+ readonly CREATING: "CREATING";
52
+ readonly DELETING: "DELETING";
53
+ readonly READY: "READY";
54
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
55
+ readonly UPDATING: "UPDATING";
56
+ };
57
+ export type AgentEndpointStatus =
58
+ (typeof AgentEndpointStatus)[keyof typeof AgentEndpointStatus];
59
+ export interface AgentEndpoint {
60
+ name: string | undefined;
61
+ liveVersion?: string | undefined;
62
+ targetVersion?: string | undefined;
63
+ agentRuntimeEndpointArn: string | undefined;
64
+ agentRuntimeArn: string | undefined;
65
+ status: AgentEndpointStatus | undefined;
66
+ id: string | undefined;
67
+ description?: string | undefined;
68
+ createdAt: Date | undefined;
69
+ lastUpdatedAt: Date | undefined;
70
+ }
71
+ export declare class ConflictException extends __BaseException {
72
+ readonly name: "ConflictException";
73
+ readonly $fault: "client";
74
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
75
+ }
76
+ export interface CreateAgentRuntimeEndpointRequest {
77
+ agentRuntimeId: string | undefined;
78
+ name: string | undefined;
79
+ agentRuntimeVersion?: string | undefined;
80
+ description?: string | undefined;
81
+ clientToken?: string | undefined;
82
+ }
83
+ export interface CreateAgentRuntimeEndpointResponse {
84
+ targetVersion: string | undefined;
85
+ agentRuntimeEndpointArn: string | undefined;
86
+ agentRuntimeArn: string | undefined;
87
+ status: AgentEndpointStatus | undefined;
88
+ createdAt: Date | undefined;
89
+ }
90
+ export declare class InternalServerException extends __BaseException {
91
+ readonly name: "InternalServerException";
92
+ readonly $fault: "server";
93
+ constructor(
94
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
95
+ );
96
+ }
97
+ export declare class ResourceNotFoundException extends __BaseException {
98
+ readonly name: "ResourceNotFoundException";
99
+ readonly $fault: "client";
100
+ constructor(
101
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
102
+ );
103
+ }
104
+ export declare class ServiceQuotaExceededException extends __BaseException {
105
+ readonly name: "ServiceQuotaExceededException";
106
+ readonly $fault: "client";
107
+ constructor(
108
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
109
+ );
110
+ }
111
+ export declare class ThrottlingException extends __BaseException {
112
+ readonly name: "ThrottlingException";
113
+ readonly $fault: "client";
114
+ constructor(
115
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
116
+ );
117
+ }
118
+ export interface ValidationExceptionField {
119
+ name: string | undefined;
120
+ message: string | undefined;
121
+ }
122
+ export declare const ValidationExceptionReason: {
123
+ readonly CANNOT_PARSE: "CannotParse";
124
+ readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
125
+ readonly IDEMPOTENT_PARAMETER_MISMATCH_EXCEPTION: "IdempotentParameterMismatchException";
126
+ readonly RESOURCE_CONFLICT: "ResourceConflict";
127
+ readonly ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession";
128
+ };
129
+ export type ValidationExceptionReason =
130
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
131
+ export declare class ValidationException extends __BaseException {
132
+ readonly name: "ValidationException";
133
+ readonly $fault: "client";
134
+ reason: ValidationExceptionReason | undefined;
135
+ fieldList?: ValidationExceptionField[] | undefined;
136
+ constructor(
137
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
138
+ );
139
+ }
140
+ export interface DeleteAgentRuntimeEndpointRequest {
141
+ agentRuntimeId: string | undefined;
142
+ endpointName: string | undefined;
143
+ clientToken?: string | undefined;
144
+ }
145
+ export interface DeleteAgentRuntimeEndpointResponse {
146
+ status: AgentEndpointStatus | undefined;
147
+ }
148
+ export interface GetAgentRuntimeEndpointRequest {
149
+ agentRuntimeId: string | undefined;
150
+ endpointName: string | undefined;
151
+ }
152
+ export interface GetAgentRuntimeEndpointResponse {
153
+ liveVersion?: string | undefined;
154
+ targetVersion?: string | undefined;
155
+ agentRuntimeEndpointArn: string | undefined;
156
+ agentRuntimeArn: string | undefined;
157
+ description?: string | undefined;
158
+ status: AgentEndpointStatus | undefined;
159
+ createdAt: Date | undefined;
160
+ lastUpdatedAt: Date | undefined;
161
+ failureReason?: string | undefined;
162
+ name: string | undefined;
163
+ id: string | undefined;
164
+ }
165
+ export interface ListAgentRuntimeEndpointsRequest {
166
+ agentRuntimeId: string | undefined;
167
+ maxResults?: number | undefined;
168
+ nextToken?: string | undefined;
169
+ }
170
+ export interface ListAgentRuntimeEndpointsResponse {
171
+ runtimeEndpoints: AgentEndpoint[] | undefined;
172
+ nextToken?: string | undefined;
173
+ }
174
+ export interface UpdateAgentRuntimeEndpointRequest {
175
+ agentRuntimeId: string | undefined;
176
+ endpointName: string | undefined;
177
+ agentRuntimeVersion?: string | undefined;
178
+ description?: string | undefined;
179
+ clientToken?: string | undefined;
180
+ }
181
+ export interface UpdateAgentRuntimeEndpointResponse {
182
+ liveVersion?: string | undefined;
183
+ targetVersion?: string | undefined;
184
+ agentRuntimeEndpointArn: string | undefined;
185
+ agentRuntimeArn: string | undefined;
186
+ status: AgentEndpointStatus | undefined;
187
+ createdAt: Date | undefined;
188
+ lastUpdatedAt: Date | undefined;
189
+ }
190
+ export interface CustomJWTAuthorizerConfiguration {
191
+ discoveryUrl: string | undefined;
192
+ allowedAudience?: string[] | undefined;
193
+ allowedClients?: string[] | undefined;
194
+ }
195
+ export type AuthorizerConfiguration =
196
+ | AuthorizerConfiguration.CustomJWTAuthorizerMember
197
+ | AuthorizerConfiguration.$UnknownMember;
198
+ export declare namespace AuthorizerConfiguration {
199
+ interface CustomJWTAuthorizerMember {
200
+ customJWTAuthorizer: CustomJWTAuthorizerConfiguration;
201
+ $unknown?: never;
202
+ }
203
+ interface $UnknownMember {
204
+ customJWTAuthorizer?: never;
205
+ $unknown: [string, any];
206
+ }
207
+ interface Visitor<T> {
208
+ customJWTAuthorizer: (value: CustomJWTAuthorizerConfiguration) => T;
209
+ _: (name: string, value: any) => T;
210
+ }
211
+ const visit: <T>(value: AuthorizerConfiguration, visitor: Visitor<T>) => T;
212
+ }
213
+ export declare const NetworkMode: {
214
+ readonly PUBLIC: "PUBLIC";
215
+ };
216
+ export type NetworkMode = (typeof NetworkMode)[keyof typeof NetworkMode];
217
+ export interface NetworkConfiguration {
218
+ networkMode: NetworkMode | undefined;
219
+ }
220
+ export declare const ServerProtocol: {
221
+ readonly HTTP: "HTTP";
222
+ readonly MCP: "MCP";
223
+ };
224
+ export type ServerProtocol =
225
+ (typeof ServerProtocol)[keyof typeof ServerProtocol];
226
+ export interface ProtocolConfiguration {
227
+ serverProtocol: ServerProtocol | undefined;
228
+ }
229
+ export interface CreateAgentRuntimeRequest {
230
+ agentRuntimeName: string | undefined;
231
+ description?: string | undefined;
232
+ agentRuntimeArtifact: AgentArtifact | undefined;
233
+ roleArn: string | undefined;
234
+ networkConfiguration: NetworkConfiguration | undefined;
235
+ protocolConfiguration?: ProtocolConfiguration | undefined;
236
+ clientToken?: string | undefined;
237
+ environmentVariables?: Record<string, string> | undefined;
238
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
239
+ }
240
+ export interface WorkloadIdentityDetails {
241
+ workloadIdentityArn: string | undefined;
242
+ }
243
+ export interface CreateAgentRuntimeResponse {
244
+ agentRuntimeArn: string | undefined;
245
+ workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
246
+ agentRuntimeId: string | undefined;
247
+ agentRuntimeVersion: string | undefined;
248
+ createdAt: Date | undefined;
249
+ status: AgentStatus | undefined;
250
+ }
251
+ export interface DeleteAgentRuntimeRequest {
252
+ agentRuntimeId: string | undefined;
253
+ }
254
+ export interface DeleteAgentRuntimeResponse {
255
+ status: AgentStatus | undefined;
256
+ }
257
+ export interface GetAgentRuntimeRequest {
258
+ agentRuntimeId: string | undefined;
259
+ agentRuntimeVersion?: string | undefined;
260
+ }
261
+ export interface GetAgentRuntimeResponse {
262
+ agentRuntimeArn: string | undefined;
263
+ workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
264
+ agentRuntimeName: string | undefined;
265
+ description?: string | undefined;
266
+ agentRuntimeId: string | undefined;
267
+ agentRuntimeVersion: string | undefined;
268
+ createdAt: Date | undefined;
269
+ lastUpdatedAt: Date | undefined;
270
+ roleArn: string | undefined;
271
+ agentRuntimeArtifact?: AgentArtifact | undefined;
272
+ networkConfiguration: NetworkConfiguration | undefined;
273
+ protocolConfiguration?: ProtocolConfiguration | undefined;
274
+ environmentVariables?: Record<string, string> | undefined;
275
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
276
+ status: AgentStatus | undefined;
277
+ }
278
+ export interface ListAgentRuntimesRequest {
279
+ maxResults?: number | undefined;
280
+ nextToken?: string | undefined;
281
+ }
282
+ export interface ListAgentRuntimesResponse {
283
+ agentRuntimes: Agent[] | undefined;
284
+ nextToken?: string | undefined;
285
+ }
286
+ export interface ListAgentRuntimeVersionsRequest {
287
+ agentRuntimeId: string | undefined;
288
+ maxResults?: number | undefined;
289
+ nextToken?: string | undefined;
290
+ }
291
+ export interface ListAgentRuntimeVersionsResponse {
292
+ agentRuntimes: Agent[] | undefined;
293
+ nextToken?: string | undefined;
294
+ }
295
+ export interface UpdateAgentRuntimeRequest {
296
+ agentRuntimeId: string | undefined;
297
+ description?: string | undefined;
298
+ agentRuntimeArtifact: AgentArtifact | undefined;
299
+ roleArn: string | undefined;
300
+ networkConfiguration: NetworkConfiguration | undefined;
301
+ protocolConfiguration?: ProtocolConfiguration | undefined;
302
+ clientToken?: string | undefined;
303
+ environmentVariables?: Record<string, string> | undefined;
304
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
305
+ }
306
+ export interface UpdateAgentRuntimeResponse {
307
+ agentRuntimeArn: string | undefined;
308
+ agentRuntimeId: string | undefined;
309
+ workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
310
+ agentRuntimeVersion: string | undefined;
311
+ createdAt: Date | undefined;
312
+ lastUpdatedAt: Date | undefined;
313
+ status: AgentStatus | undefined;
314
+ }
315
+ export interface CreateApiKeyCredentialProviderRequest {
316
+ name: string | undefined;
317
+ apiKey: string | undefined;
318
+ }
319
+ export interface Secret {
320
+ secretArn: string | undefined;
321
+ }
322
+ export interface CreateApiKeyCredentialProviderResponse {
323
+ apiKeySecretArn: Secret | undefined;
324
+ name: string | undefined;
325
+ credentialProviderArn: string | undefined;
326
+ }
327
+ export declare class DecryptionFailure extends __BaseException {
328
+ readonly name: "DecryptionFailure";
329
+ readonly $fault: "client";
330
+ constructor(opts: __ExceptionOptionType<DecryptionFailure, __BaseException>);
331
+ }
332
+ export declare class EncryptionFailure extends __BaseException {
333
+ readonly name: "EncryptionFailure";
334
+ readonly $fault: "client";
335
+ constructor(opts: __ExceptionOptionType<EncryptionFailure, __BaseException>);
336
+ }
337
+ export declare class ResourceLimitExceededException extends __BaseException {
338
+ readonly name: "ResourceLimitExceededException";
339
+ readonly $fault: "client";
340
+ constructor(
341
+ opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
342
+ );
343
+ }
344
+ export declare class UnauthorizedException extends __BaseException {
345
+ readonly name: "UnauthorizedException";
346
+ readonly $fault: "client";
347
+ constructor(
348
+ opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
349
+ );
350
+ }
351
+ export interface DeleteApiKeyCredentialProviderRequest {
352
+ name: string | undefined;
353
+ }
354
+ export interface DeleteApiKeyCredentialProviderResponse {}
355
+ export interface GetApiKeyCredentialProviderRequest {
356
+ name: string | undefined;
357
+ }
358
+ export interface GetApiKeyCredentialProviderResponse {
359
+ apiKeySecretArn: Secret | undefined;
360
+ name: string | undefined;
361
+ credentialProviderArn: string | undefined;
362
+ createdTime: Date | undefined;
363
+ lastUpdatedTime: Date | undefined;
364
+ }
365
+ export interface ListApiKeyCredentialProvidersRequest {
366
+ nextToken?: string | undefined;
367
+ maxResults?: number | undefined;
368
+ }
369
+ export interface ApiKeyCredentialProviderItem {
370
+ name: string | undefined;
371
+ credentialProviderArn: string | undefined;
372
+ createdTime: Date | undefined;
373
+ lastUpdatedTime: Date | undefined;
374
+ }
375
+ export interface ListApiKeyCredentialProvidersResponse {
376
+ credentialProviders: ApiKeyCredentialProviderItem[] | undefined;
377
+ nextToken?: string | undefined;
378
+ }
379
+ export interface UpdateApiKeyCredentialProviderRequest {
380
+ name: string | undefined;
381
+ apiKey: string | undefined;
382
+ }
383
+ export interface UpdateApiKeyCredentialProviderResponse {
384
+ apiKeySecretArn: Secret | undefined;
385
+ name: string | undefined;
386
+ credentialProviderArn: string | undefined;
387
+ createdTime: Date | undefined;
388
+ lastUpdatedTime: Date | undefined;
389
+ }
390
+ export declare const BrowserNetworkMode: {
391
+ readonly PUBLIC: "PUBLIC";
392
+ };
393
+ export type BrowserNetworkMode =
394
+ (typeof BrowserNetworkMode)[keyof typeof BrowserNetworkMode];
395
+ export interface BrowserNetworkConfiguration {
396
+ networkMode: BrowserNetworkMode | undefined;
397
+ }
398
+ export interface S3Location {
399
+ bucket: string | undefined;
400
+ prefix: string | undefined;
401
+ }
402
+ export interface RecordingConfig {
403
+ enabled?: boolean | undefined;
404
+ s3Location?: S3Location | undefined;
405
+ }
406
+ export interface CreateBrowserRequest {
407
+ name: string | undefined;
408
+ description?: string | undefined;
409
+ executionRoleArn?: string | undefined;
410
+ networkConfiguration: BrowserNetworkConfiguration | undefined;
411
+ recording?: RecordingConfig | undefined;
412
+ clientToken?: string | undefined;
413
+ }
414
+ export declare const BrowserStatus: {
415
+ readonly CREATE_FAILED: "CREATE_FAILED";
416
+ readonly CREATING: "CREATING";
417
+ readonly DELETED: "DELETED";
418
+ readonly DELETE_FAILED: "DELETE_FAILED";
419
+ readonly DELETING: "DELETING";
420
+ readonly READY: "READY";
421
+ };
422
+ export type BrowserStatus = (typeof BrowserStatus)[keyof typeof BrowserStatus];
423
+ export interface CreateBrowserResponse {
424
+ browserId: string | undefined;
425
+ browserArn: string | undefined;
426
+ createdAt: Date | undefined;
427
+ status: BrowserStatus | undefined;
428
+ }
429
+ export interface DeleteBrowserRequest {
430
+ browserId: string | undefined;
431
+ clientToken?: string | undefined;
432
+ }
433
+ export interface DeleteBrowserResponse {
434
+ browserId: string | undefined;
435
+ status: BrowserStatus | undefined;
436
+ lastUpdatedAt: Date | undefined;
437
+ }
438
+ export interface GetBrowserRequest {
439
+ browserId: string | undefined;
440
+ }
441
+ export interface GetBrowserResponse {
442
+ browserId: string | undefined;
443
+ browserArn: string | undefined;
444
+ name: string | undefined;
445
+ description?: string | undefined;
446
+ executionRoleArn?: string | undefined;
447
+ networkConfiguration: BrowserNetworkConfiguration | undefined;
448
+ recording?: RecordingConfig | undefined;
449
+ status: BrowserStatus | undefined;
450
+ createdAt: Date | undefined;
451
+ lastUpdatedAt: Date | undefined;
452
+ }
453
+ export declare const ResourceType: {
454
+ readonly CUSTOM: "CUSTOM";
455
+ readonly SYSTEM: "SYSTEM";
456
+ };
457
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
458
+ export interface ListBrowsersRequest {
459
+ maxResults?: number | undefined;
460
+ nextToken?: string | undefined;
461
+ type?: ResourceType | undefined;
462
+ }
463
+ export interface BrowserSummary {
464
+ browserId: string | undefined;
465
+ browserArn: string | undefined;
466
+ name?: string | undefined;
467
+ description?: string | undefined;
468
+ status: BrowserStatus | undefined;
469
+ createdAt: Date | undefined;
470
+ lastUpdatedAt?: Date | undefined;
471
+ }
472
+ export interface ListBrowsersResponse {
473
+ browserSummaries: BrowserSummary[] | undefined;
474
+ nextToken?: string | undefined;
475
+ }
476
+ export declare const CodeInterpreterNetworkMode: {
477
+ readonly PUBLIC: "PUBLIC";
478
+ readonly SANDBOX: "SANDBOX";
479
+ };
480
+ export type CodeInterpreterNetworkMode =
481
+ (typeof CodeInterpreterNetworkMode)[keyof typeof CodeInterpreterNetworkMode];
482
+ export interface CodeInterpreterNetworkConfiguration {
483
+ networkMode: CodeInterpreterNetworkMode | undefined;
484
+ }
485
+ export interface CreateCodeInterpreterRequest {
486
+ name: string | undefined;
487
+ description?: string | undefined;
488
+ executionRoleArn?: string | undefined;
489
+ networkConfiguration: CodeInterpreterNetworkConfiguration | undefined;
490
+ clientToken?: string | undefined;
491
+ }
492
+ export declare const CodeInterpreterStatus: {
493
+ readonly CREATE_FAILED: "CREATE_FAILED";
494
+ readonly CREATING: "CREATING";
495
+ readonly DELETED: "DELETED";
496
+ readonly DELETE_FAILED: "DELETE_FAILED";
497
+ readonly DELETING: "DELETING";
498
+ readonly READY: "READY";
499
+ };
500
+ export type CodeInterpreterStatus =
501
+ (typeof CodeInterpreterStatus)[keyof typeof CodeInterpreterStatus];
502
+ export interface CreateCodeInterpreterResponse {
503
+ codeInterpreterId: string | undefined;
504
+ codeInterpreterArn: string | undefined;
505
+ createdAt: Date | undefined;
506
+ status: CodeInterpreterStatus | undefined;
507
+ }
508
+ export interface DeleteCodeInterpreterRequest {
509
+ codeInterpreterId: string | undefined;
510
+ clientToken?: string | undefined;
511
+ }
512
+ export interface DeleteCodeInterpreterResponse {
513
+ codeInterpreterId: string | undefined;
514
+ status: CodeInterpreterStatus | undefined;
515
+ lastUpdatedAt: Date | undefined;
516
+ }
517
+ export interface GetCodeInterpreterRequest {
518
+ codeInterpreterId: string | undefined;
519
+ }
520
+ export interface GetCodeInterpreterResponse {
521
+ codeInterpreterId: string | undefined;
522
+ codeInterpreterArn: string | undefined;
523
+ name: string | undefined;
524
+ description?: string | undefined;
525
+ executionRoleArn?: string | undefined;
526
+ networkConfiguration: CodeInterpreterNetworkConfiguration | undefined;
527
+ status: CodeInterpreterStatus | undefined;
528
+ createdAt: Date | undefined;
529
+ lastUpdatedAt: Date | undefined;
530
+ }
531
+ export interface ListCodeInterpretersRequest {
532
+ maxResults?: number | undefined;
533
+ nextToken?: string | undefined;
534
+ type?: ResourceType | undefined;
535
+ }
536
+ export interface CodeInterpreterSummary {
537
+ codeInterpreterId: string | undefined;
538
+ codeInterpreterArn: string | undefined;
539
+ name?: string | undefined;
540
+ description?: string | undefined;
541
+ status: CodeInterpreterStatus | undefined;
542
+ createdAt: Date | undefined;
543
+ lastUpdatedAt?: Date | undefined;
544
+ }
545
+ export interface ListCodeInterpretersResponse {
546
+ codeInterpreterSummaries: CodeInterpreterSummary[] | undefined;
547
+ nextToken?: string | undefined;
548
+ }
549
+ export declare const AuthorizerType: {
550
+ readonly CUSTOM_JWT: "CUSTOM_JWT";
551
+ };
552
+ export type AuthorizerType =
553
+ (typeof AuthorizerType)[keyof typeof AuthorizerType];
554
+ export declare const ExceptionLevel: {
555
+ readonly DEBUG: "DEBUG";
556
+ };
557
+ export type ExceptionLevel =
558
+ (typeof ExceptionLevel)[keyof typeof ExceptionLevel];
559
+ export declare const SearchType: {
560
+ readonly SEMANTIC: "SEMANTIC";
561
+ };
562
+ export type SearchType = (typeof SearchType)[keyof typeof SearchType];
563
+ export interface MCPGatewayConfiguration {
564
+ supportedVersions?: string[] | undefined;
565
+ instructions?: string | undefined;
566
+ searchType?: SearchType | undefined;
567
+ }
568
+ export type GatewayProtocolConfiguration =
569
+ | GatewayProtocolConfiguration.McpMember
570
+ | GatewayProtocolConfiguration.$UnknownMember;
571
+ export declare namespace GatewayProtocolConfiguration {
572
+ interface McpMember {
573
+ mcp: MCPGatewayConfiguration;
574
+ $unknown?: never;
575
+ }
576
+ interface $UnknownMember {
577
+ mcp?: never;
578
+ $unknown: [string, any];
579
+ }
580
+ interface Visitor<T> {
581
+ mcp: (value: MCPGatewayConfiguration) => T;
582
+ _: (name: string, value: any) => T;
583
+ }
584
+ const visit: <T>(
585
+ value: GatewayProtocolConfiguration,
586
+ visitor: Visitor<T>
587
+ ) => T;
588
+ }
589
+ export declare const GatewayProtocolType: {
590
+ readonly MCP: "MCP";
591
+ };
592
+ export type GatewayProtocolType =
593
+ (typeof GatewayProtocolType)[keyof typeof GatewayProtocolType];
594
+ export interface CreateGatewayRequest {
595
+ name: string | undefined;
596
+ description?: string | undefined;
597
+ clientToken?: string | undefined;
598
+ roleArn: string | undefined;
599
+ protocolType: GatewayProtocolType | undefined;
600
+ protocolConfiguration?: GatewayProtocolConfiguration | undefined;
601
+ authorizerType: AuthorizerType | undefined;
602
+ authorizerConfiguration: AuthorizerConfiguration | undefined;
603
+ kmsKeyArn?: string | undefined;
604
+ exceptionLevel?: ExceptionLevel | undefined;
605
+ }
606
+ export declare const GatewayStatus: {
607
+ readonly CREATING: "CREATING";
608
+ readonly DELETING: "DELETING";
609
+ readonly FAILED: "FAILED";
610
+ readonly READY: "READY";
611
+ readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
612
+ readonly UPDATING: "UPDATING";
613
+ };
614
+ export type GatewayStatus = (typeof GatewayStatus)[keyof typeof GatewayStatus];
615
+ export interface CreateGatewayResponse {
616
+ gatewayArn: string | undefined;
617
+ gatewayId: string | undefined;
618
+ gatewayUrl?: string | undefined;
619
+ createdAt: Date | undefined;
620
+ updatedAt: Date | undefined;
621
+ status: GatewayStatus | undefined;
622
+ statusReasons?: string[] | undefined;
623
+ name: string | undefined;
624
+ description?: string | undefined;
625
+ roleArn?: string | undefined;
626
+ protocolType: GatewayProtocolType | undefined;
627
+ protocolConfiguration?: GatewayProtocolConfiguration | undefined;
628
+ authorizerType: AuthorizerType | undefined;
629
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
630
+ kmsKeyArn?: string | undefined;
631
+ workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
632
+ exceptionLevel?: ExceptionLevel | undefined;
633
+ }
634
+ export interface DeleteGatewayRequest {
635
+ gatewayIdentifier: string | undefined;
636
+ }
637
+ export interface DeleteGatewayResponse {
638
+ gatewayId: string | undefined;
639
+ status: GatewayStatus | undefined;
640
+ statusReasons?: string[] | undefined;
641
+ }
642
+ export interface GetGatewayRequest {
643
+ gatewayIdentifier: string | undefined;
644
+ }
645
+ export interface GetGatewayResponse {
646
+ gatewayArn: string | undefined;
647
+ gatewayId: string | undefined;
648
+ gatewayUrl?: string | undefined;
649
+ createdAt: Date | undefined;
650
+ updatedAt: Date | undefined;
651
+ status: GatewayStatus | undefined;
652
+ statusReasons?: string[] | undefined;
653
+ name: string | undefined;
654
+ description?: string | undefined;
655
+ roleArn?: string | undefined;
656
+ protocolType: GatewayProtocolType | undefined;
657
+ protocolConfiguration?: GatewayProtocolConfiguration | undefined;
658
+ authorizerType: AuthorizerType | undefined;
659
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
660
+ kmsKeyArn?: string | undefined;
661
+ workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
662
+ exceptionLevel?: ExceptionLevel | undefined;
663
+ }
664
+ export interface ListGatewaysRequest {
665
+ maxResults?: number | undefined;
666
+ nextToken?: string | undefined;
667
+ }
668
+ export interface GatewaySummary {
669
+ gatewayId: string | undefined;
670
+ name: string | undefined;
671
+ status: GatewayStatus | undefined;
672
+ description?: string | undefined;
673
+ createdAt: Date | undefined;
674
+ updatedAt: Date | undefined;
675
+ authorizerType: AuthorizerType | undefined;
676
+ protocolType: GatewayProtocolType | undefined;
677
+ }
678
+ export interface ListGatewaysResponse {
679
+ items: GatewaySummary[] | undefined;
680
+ nextToken?: string | undefined;
681
+ }
682
+ export interface UpdateGatewayRequest {
683
+ gatewayIdentifier: string | undefined;
684
+ name: string | undefined;
685
+ description?: string | undefined;
686
+ roleArn: string | undefined;
687
+ protocolType: GatewayProtocolType | undefined;
688
+ protocolConfiguration?: GatewayProtocolConfiguration | undefined;
689
+ authorizerType: AuthorizerType | undefined;
690
+ authorizerConfiguration: AuthorizerConfiguration | undefined;
691
+ kmsKeyArn?: string | undefined;
692
+ exceptionLevel?: ExceptionLevel | undefined;
693
+ }
694
+ export interface UpdateGatewayResponse {
695
+ gatewayArn: string | undefined;
696
+ gatewayId: string | undefined;
697
+ gatewayUrl?: string | undefined;
698
+ createdAt: Date | undefined;
699
+ updatedAt: Date | undefined;
700
+ status: GatewayStatus | undefined;
701
+ statusReasons?: string[] | undefined;
702
+ name: string | undefined;
703
+ description?: string | undefined;
704
+ roleArn?: string | undefined;
705
+ protocolType: GatewayProtocolType | undefined;
706
+ protocolConfiguration?: GatewayProtocolConfiguration | undefined;
707
+ authorizerType: AuthorizerType | undefined;
708
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
709
+ kmsKeyArn?: string | undefined;
710
+ workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
711
+ exceptionLevel?: ExceptionLevel | undefined;
712
+ }
713
+ export declare const ApiKeyCredentialLocation: {
714
+ readonly HEADER: "HEADER";
715
+ readonly QUERY_PARAMETER: "QUERY_PARAMETER";
716
+ };
717
+ export type ApiKeyCredentialLocation =
718
+ (typeof ApiKeyCredentialLocation)[keyof typeof ApiKeyCredentialLocation];
719
+ export interface GatewayApiKeyCredentialProvider {
720
+ providerArn: string | undefined;
721
+ credentialParameterName?: string | undefined;
722
+ credentialPrefix?: string | undefined;
723
+ credentialLocation?: ApiKeyCredentialLocation | undefined;
724
+ }
725
+ export interface OAuthCredentialProvider {
726
+ providerArn: string | undefined;
727
+ scopes: string[] | undefined;
728
+ customParameters?: Record<string, string> | undefined;
729
+ }
730
+ export type CredentialProvider =
731
+ | CredentialProvider.ApiKeyCredentialProviderMember
732
+ | CredentialProvider.OauthCredentialProviderMember
733
+ | CredentialProvider.$UnknownMember;
734
+ export declare namespace CredentialProvider {
735
+ interface OauthCredentialProviderMember {
736
+ oauthCredentialProvider: OAuthCredentialProvider;
737
+ apiKeyCredentialProvider?: never;
738
+ $unknown?: never;
739
+ }
740
+ interface ApiKeyCredentialProviderMember {
741
+ oauthCredentialProvider?: never;
742
+ apiKeyCredentialProvider: GatewayApiKeyCredentialProvider;
743
+ $unknown?: never;
744
+ }
745
+ interface $UnknownMember {
746
+ oauthCredentialProvider?: never;
747
+ apiKeyCredentialProvider?: never;
748
+ $unknown: [string, any];
749
+ }
750
+ interface Visitor<T> {
751
+ oauthCredentialProvider: (value: OAuthCredentialProvider) => T;
752
+ apiKeyCredentialProvider: (value: GatewayApiKeyCredentialProvider) => T;
753
+ _: (name: string, value: any) => T;
754
+ }
755
+ const visit: <T>(value: CredentialProvider, visitor: Visitor<T>) => T;
756
+ }
757
+ export declare const CredentialProviderType: {
758
+ readonly API_KEY: "API_KEY";
759
+ readonly GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE";
760
+ readonly OAUTH: "OAUTH";
761
+ };
762
+ export type CredentialProviderType =
763
+ (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
764
+ export interface CredentialProviderConfiguration {
765
+ credentialProviderType: CredentialProviderType | undefined;
766
+ credentialProvider?: CredentialProvider | undefined;
767
+ }
768
+ export declare const SchemaType: {
769
+ readonly ARRAY: "array";
770
+ readonly BOOLEAN: "boolean";
771
+ readonly INTEGER: "integer";
772
+ readonly NUMBER: "number";
773
+ readonly OBJECT: "object";
774
+ readonly STRING: "string";
775
+ };
776
+ export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
777
+ export interface S3Configuration {
778
+ uri?: string | undefined;
779
+ bucketOwnerAccountId?: string | undefined;
780
+ }
781
+ export type ApiSchemaConfiguration =
782
+ | ApiSchemaConfiguration.InlinePayloadMember
783
+ | ApiSchemaConfiguration.S3Member
784
+ | ApiSchemaConfiguration.$UnknownMember;
785
+ export declare namespace ApiSchemaConfiguration {
786
+ interface S3Member {
787
+ s3: S3Configuration;
788
+ inlinePayload?: never;
789
+ $unknown?: never;
790
+ }
791
+ interface InlinePayloadMember {
792
+ s3?: never;
793
+ inlinePayload: string;
794
+ $unknown?: never;
795
+ }
796
+ interface $UnknownMember {
797
+ s3?: never;
798
+ inlinePayload?: never;
799
+ $unknown: [string, any];
800
+ }
801
+ interface Visitor<T> {
802
+ s3: (value: S3Configuration) => T;
803
+ inlinePayload: (value: string) => T;
804
+ _: (name: string, value: any) => T;
805
+ }
806
+ const visit: <T>(value: ApiSchemaConfiguration, visitor: Visitor<T>) => T;
807
+ }
808
+ export declare const TargetStatus: {
809
+ readonly CREATING: "CREATING";
810
+ readonly DELETING: "DELETING";
811
+ readonly FAILED: "FAILED";
812
+ readonly READY: "READY";
813
+ readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
814
+ readonly UPDATING: "UPDATING";
815
+ };
816
+ export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
817
+ export interface DeleteGatewayTargetRequest {
818
+ gatewayIdentifier: string | undefined;
819
+ targetId: string | undefined;
820
+ }
821
+ export interface DeleteGatewayTargetResponse {
822
+ gatewayArn: string | undefined;
823
+ targetId: string | undefined;
824
+ status: TargetStatus | undefined;
825
+ statusReasons?: string[] | undefined;
826
+ }
827
+ export interface GetGatewayTargetRequest {
828
+ gatewayIdentifier: string | undefined;
829
+ targetId: string | undefined;
830
+ }
831
+ export interface ListGatewayTargetsRequest {
832
+ gatewayIdentifier: string | undefined;
833
+ maxResults?: number | undefined;
834
+ nextToken?: string | undefined;
835
+ }
836
+ export interface TargetSummary {
837
+ targetId: string | undefined;
838
+ name: string | undefined;
839
+ status: TargetStatus | undefined;
840
+ description?: string | undefined;
841
+ createdAt: Date | undefined;
842
+ updatedAt: Date | undefined;
843
+ }
844
+ export interface ListGatewayTargetsResponse {
845
+ items: TargetSummary[] | undefined;
846
+ nextToken?: string | undefined;
847
+ }
848
+ export interface GetTokenVaultRequest {
849
+ tokenVaultId?: string | undefined;
850
+ }
851
+ export declare const KeyType: {
852
+ readonly CustomerManagedKey: "CustomerManagedKey";
853
+ readonly ServiceManagedKey: "ServiceManagedKey";
854
+ };
855
+ export type KeyType = (typeof KeyType)[keyof typeof KeyType];
856
+ export interface KmsConfiguration {
857
+ keyType: KeyType | undefined;
858
+ kmsKeyArn?: string | undefined;
859
+ }
860
+ export interface GetTokenVaultResponse {
861
+ tokenVaultId: string | undefined;
862
+ kmsConfiguration: KmsConfiguration | undefined;
863
+ lastModifiedDate: Date | undefined;
864
+ }
865
+ export interface SemanticOverrideConsolidationConfigurationInput {
866
+ appendToPrompt: string | undefined;
867
+ modelId: string | undefined;
868
+ }
869
+ export interface SemanticOverrideExtractionConfigurationInput {
870
+ appendToPrompt: string | undefined;
871
+ modelId: string | undefined;
872
+ }
873
+ export interface SemanticOverrideConfigurationInput {
874
+ extraction?: SemanticOverrideExtractionConfigurationInput | undefined;
875
+ consolidation?: SemanticOverrideConsolidationConfigurationInput | undefined;
876
+ }
877
+ export interface SummaryOverrideConsolidationConfigurationInput {
878
+ appendToPrompt: string | undefined;
879
+ modelId: string | undefined;
880
+ }
881
+ export interface SummaryOverrideConfigurationInput {
882
+ consolidation?: SummaryOverrideConsolidationConfigurationInput | undefined;
883
+ }
884
+ export interface UserPreferenceOverrideConsolidationConfigurationInput {
885
+ appendToPrompt: string | undefined;
886
+ modelId: string | undefined;
887
+ }
888
+ export interface UserPreferenceOverrideExtractionConfigurationInput {
889
+ appendToPrompt: string | undefined;
890
+ modelId: string | undefined;
891
+ }
892
+ export interface UserPreferenceOverrideConfigurationInput {
893
+ extraction?: UserPreferenceOverrideExtractionConfigurationInput | undefined;
894
+ consolidation?:
895
+ | UserPreferenceOverrideConsolidationConfigurationInput
896
+ | undefined;
897
+ }
898
+ export type CustomConfigurationInput =
899
+ | CustomConfigurationInput.SemanticOverrideMember
900
+ | CustomConfigurationInput.SummaryOverrideMember
901
+ | CustomConfigurationInput.UserPreferenceOverrideMember
902
+ | CustomConfigurationInput.$UnknownMember;
903
+ export declare namespace CustomConfigurationInput {
904
+ interface SemanticOverrideMember {
905
+ semanticOverride: SemanticOverrideConfigurationInput;
906
+ summaryOverride?: never;
907
+ userPreferenceOverride?: never;
908
+ $unknown?: never;
909
+ }
910
+ interface SummaryOverrideMember {
911
+ semanticOverride?: never;
912
+ summaryOverride: SummaryOverrideConfigurationInput;
913
+ userPreferenceOverride?: never;
914
+ $unknown?: never;
915
+ }
916
+ interface UserPreferenceOverrideMember {
917
+ semanticOverride?: never;
918
+ summaryOverride?: never;
919
+ userPreferenceOverride: UserPreferenceOverrideConfigurationInput;
920
+ $unknown?: never;
921
+ }
922
+ interface $UnknownMember {
923
+ semanticOverride?: never;
924
+ summaryOverride?: never;
925
+ userPreferenceOverride?: never;
926
+ $unknown: [string, any];
927
+ }
928
+ interface Visitor<T> {
929
+ semanticOverride: (value: SemanticOverrideConfigurationInput) => T;
930
+ summaryOverride: (value: SummaryOverrideConfigurationInput) => T;
931
+ userPreferenceOverride: (
932
+ value: UserPreferenceOverrideConfigurationInput
933
+ ) => T;
934
+ _: (name: string, value: any) => T;
935
+ }
936
+ const visit: <T>(value: CustomConfigurationInput, visitor: Visitor<T>) => T;
937
+ }
938
+ export interface CustomMemoryStrategyInput {
939
+ name: string | undefined;
940
+ description?: string | undefined;
941
+ namespaces?: string[] | undefined;
942
+ configuration?: CustomConfigurationInput | undefined;
943
+ }
944
+ export interface SemanticMemoryStrategyInput {
945
+ name: string | undefined;
946
+ description?: string | undefined;
947
+ namespaces?: string[] | undefined;
948
+ }
949
+ export interface SummaryMemoryStrategyInput {
950
+ name: string | undefined;
951
+ description?: string | undefined;
952
+ namespaces?: string[] | undefined;
953
+ }
954
+ export interface UserPreferenceMemoryStrategyInput {
955
+ name: string | undefined;
956
+ description?: string | undefined;
957
+ namespaces?: string[] | undefined;
958
+ }
959
+ export type MemoryStrategyInput =
960
+ | MemoryStrategyInput.CustomMemoryStrategyMember
961
+ | MemoryStrategyInput.SemanticMemoryStrategyMember
962
+ | MemoryStrategyInput.SummaryMemoryStrategyMember
963
+ | MemoryStrategyInput.UserPreferenceMemoryStrategyMember
964
+ | MemoryStrategyInput.$UnknownMember;
965
+ export declare namespace MemoryStrategyInput {
966
+ interface SemanticMemoryStrategyMember {
967
+ semanticMemoryStrategy: SemanticMemoryStrategyInput;
968
+ summaryMemoryStrategy?: never;
969
+ userPreferenceMemoryStrategy?: never;
970
+ customMemoryStrategy?: never;
971
+ $unknown?: never;
972
+ }
973
+ interface SummaryMemoryStrategyMember {
974
+ semanticMemoryStrategy?: never;
975
+ summaryMemoryStrategy: SummaryMemoryStrategyInput;
976
+ userPreferenceMemoryStrategy?: never;
977
+ customMemoryStrategy?: never;
978
+ $unknown?: never;
979
+ }
980
+ interface UserPreferenceMemoryStrategyMember {
981
+ semanticMemoryStrategy?: never;
982
+ summaryMemoryStrategy?: never;
983
+ userPreferenceMemoryStrategy: UserPreferenceMemoryStrategyInput;
984
+ customMemoryStrategy?: never;
985
+ $unknown?: never;
986
+ }
987
+ interface CustomMemoryStrategyMember {
988
+ semanticMemoryStrategy?: never;
989
+ summaryMemoryStrategy?: never;
990
+ userPreferenceMemoryStrategy?: never;
991
+ customMemoryStrategy: CustomMemoryStrategyInput;
992
+ $unknown?: never;
993
+ }
994
+ interface $UnknownMember {
995
+ semanticMemoryStrategy?: never;
996
+ summaryMemoryStrategy?: never;
997
+ userPreferenceMemoryStrategy?: never;
998
+ customMemoryStrategy?: never;
999
+ $unknown: [string, any];
1000
+ }
1001
+ interface Visitor<T> {
1002
+ semanticMemoryStrategy: (value: SemanticMemoryStrategyInput) => T;
1003
+ summaryMemoryStrategy: (value: SummaryMemoryStrategyInput) => T;
1004
+ userPreferenceMemoryStrategy: (
1005
+ value: UserPreferenceMemoryStrategyInput
1006
+ ) => T;
1007
+ customMemoryStrategy: (value: CustomMemoryStrategyInput) => T;
1008
+ _: (name: string, value: any) => T;
1009
+ }
1010
+ const visit: <T>(value: MemoryStrategyInput, visitor: Visitor<T>) => T;
1011
+ }
1012
+ export interface CreateMemoryInput {
1013
+ clientToken?: string | undefined;
1014
+ name: string | undefined;
1015
+ description?: string | undefined;
1016
+ encryptionKeyArn?: string | undefined;
1017
+ memoryExecutionRoleArn?: string | undefined;
1018
+ eventExpiryDuration: number | undefined;
1019
+ memoryStrategies?: MemoryStrategyInput[] | undefined;
1020
+ }
1021
+ export declare const MemoryStatus: {
1022
+ readonly ACTIVE: "ACTIVE";
1023
+ readonly CREATING: "CREATING";
1024
+ readonly DELETING: "DELETING";
1025
+ readonly FAILED: "FAILED";
1026
+ };
1027
+ export type MemoryStatus = (typeof MemoryStatus)[keyof typeof MemoryStatus];
1028
+ export interface SemanticConsolidationOverride {
1029
+ appendToPrompt: string | undefined;
1030
+ modelId: string | undefined;
1031
+ }
1032
+ export interface SummaryConsolidationOverride {
1033
+ appendToPrompt: string | undefined;
1034
+ modelId: string | undefined;
1035
+ }
1036
+ export interface UserPreferenceConsolidationOverride {
1037
+ appendToPrompt: string | undefined;
1038
+ modelId: string | undefined;
1039
+ }
1040
+ export type CustomConsolidationConfiguration =
1041
+ | CustomConsolidationConfiguration.SemanticConsolidationOverrideMember
1042
+ | CustomConsolidationConfiguration.SummaryConsolidationOverrideMember
1043
+ | CustomConsolidationConfiguration.UserPreferenceConsolidationOverrideMember
1044
+ | CustomConsolidationConfiguration.$UnknownMember;
1045
+ export declare namespace CustomConsolidationConfiguration {
1046
+ interface SemanticConsolidationOverrideMember {
1047
+ semanticConsolidationOverride: SemanticConsolidationOverride;
1048
+ summaryConsolidationOverride?: never;
1049
+ userPreferenceConsolidationOverride?: never;
1050
+ $unknown?: never;
1051
+ }
1052
+ interface SummaryConsolidationOverrideMember {
1053
+ semanticConsolidationOverride?: never;
1054
+ summaryConsolidationOverride: SummaryConsolidationOverride;
1055
+ userPreferenceConsolidationOverride?: never;
1056
+ $unknown?: never;
1057
+ }
1058
+ interface UserPreferenceConsolidationOverrideMember {
1059
+ semanticConsolidationOverride?: never;
1060
+ summaryConsolidationOverride?: never;
1061
+ userPreferenceConsolidationOverride: UserPreferenceConsolidationOverride;
1062
+ $unknown?: never;
1063
+ }
1064
+ interface $UnknownMember {
1065
+ semanticConsolidationOverride?: never;
1066
+ summaryConsolidationOverride?: never;
1067
+ userPreferenceConsolidationOverride?: never;
1068
+ $unknown: [string, any];
1069
+ }
1070
+ interface Visitor<T> {
1071
+ semanticConsolidationOverride: (value: SemanticConsolidationOverride) => T;
1072
+ summaryConsolidationOverride: (value: SummaryConsolidationOverride) => T;
1073
+ userPreferenceConsolidationOverride: (
1074
+ value: UserPreferenceConsolidationOverride
1075
+ ) => T;
1076
+ _: (name: string, value: any) => T;
1077
+ }
1078
+ const visit: <T>(
1079
+ value: CustomConsolidationConfiguration,
1080
+ visitor: Visitor<T>
1081
+ ) => T;
1082
+ }
1083
+ export type ConsolidationConfiguration =
1084
+ | ConsolidationConfiguration.CustomConsolidationConfigurationMember
1085
+ | ConsolidationConfiguration.$UnknownMember;
1086
+ export declare namespace ConsolidationConfiguration {
1087
+ interface CustomConsolidationConfigurationMember {
1088
+ customConsolidationConfiguration: CustomConsolidationConfiguration;
1089
+ $unknown?: never;
1090
+ }
1091
+ interface $UnknownMember {
1092
+ customConsolidationConfiguration?: never;
1093
+ $unknown: [string, any];
1094
+ }
1095
+ interface Visitor<T> {
1096
+ customConsolidationConfiguration: (
1097
+ value: CustomConsolidationConfiguration
1098
+ ) => T;
1099
+ _: (name: string, value: any) => T;
1100
+ }
1101
+ const visit: <T>(value: ConsolidationConfiguration, visitor: Visitor<T>) => T;
1102
+ }
1103
+ export interface SemanticExtractionOverride {
1104
+ appendToPrompt: string | undefined;
1105
+ modelId: string | undefined;
1106
+ }
1107
+ export interface UserPreferenceExtractionOverride {
1108
+ appendToPrompt: string | undefined;
1109
+ modelId: string | undefined;
1110
+ }
1111
+ export type CustomExtractionConfiguration =
1112
+ | CustomExtractionConfiguration.SemanticExtractionOverrideMember
1113
+ | CustomExtractionConfiguration.UserPreferenceExtractionOverrideMember
1114
+ | CustomExtractionConfiguration.$UnknownMember;
1115
+ export declare namespace CustomExtractionConfiguration {
1116
+ interface SemanticExtractionOverrideMember {
1117
+ semanticExtractionOverride: SemanticExtractionOverride;
1118
+ userPreferenceExtractionOverride?: never;
1119
+ $unknown?: never;
1120
+ }
1121
+ interface UserPreferenceExtractionOverrideMember {
1122
+ semanticExtractionOverride?: never;
1123
+ userPreferenceExtractionOverride: UserPreferenceExtractionOverride;
1124
+ $unknown?: never;
1125
+ }
1126
+ interface $UnknownMember {
1127
+ semanticExtractionOverride?: never;
1128
+ userPreferenceExtractionOverride?: never;
1129
+ $unknown: [string, any];
1130
+ }
1131
+ interface Visitor<T> {
1132
+ semanticExtractionOverride: (value: SemanticExtractionOverride) => T;
1133
+ userPreferenceExtractionOverride: (
1134
+ value: UserPreferenceExtractionOverride
1135
+ ) => T;
1136
+ _: (name: string, value: any) => T;
1137
+ }
1138
+ const visit: <T>(
1139
+ value: CustomExtractionConfiguration,
1140
+ visitor: Visitor<T>
1141
+ ) => T;
1142
+ }
1143
+ export type ExtractionConfiguration =
1144
+ | ExtractionConfiguration.CustomExtractionConfigurationMember
1145
+ | ExtractionConfiguration.$UnknownMember;
1146
+ export declare namespace ExtractionConfiguration {
1147
+ interface CustomExtractionConfigurationMember {
1148
+ customExtractionConfiguration: CustomExtractionConfiguration;
1149
+ $unknown?: never;
1150
+ }
1151
+ interface $UnknownMember {
1152
+ customExtractionConfiguration?: never;
1153
+ $unknown: [string, any];
1154
+ }
1155
+ interface Visitor<T> {
1156
+ customExtractionConfiguration: (value: CustomExtractionConfiguration) => T;
1157
+ _: (name: string, value: any) => T;
1158
+ }
1159
+ const visit: <T>(value: ExtractionConfiguration, visitor: Visitor<T>) => T;
1160
+ }
1161
+ export declare const OverrideType: {
1162
+ readonly SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE";
1163
+ readonly SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE";
1164
+ readonly USER_PREFERENCE_OVERRIDE: "USER_PREFERENCE_OVERRIDE";
1165
+ };
1166
+ export type OverrideType = (typeof OverrideType)[keyof typeof OverrideType];
1167
+ export interface StrategyConfiguration {
1168
+ type?: OverrideType | undefined;
1169
+ extraction?: ExtractionConfiguration | undefined;
1170
+ consolidation?: ConsolidationConfiguration | undefined;
1171
+ }
1172
+ export declare const MemoryStrategyStatus: {
1173
+ readonly ACTIVE: "ACTIVE";
1174
+ readonly CREATING: "CREATING";
1175
+ readonly DELETING: "DELETING";
1176
+ readonly FAILED: "FAILED";
1177
+ };
1178
+ export type MemoryStrategyStatus =
1179
+ (typeof MemoryStrategyStatus)[keyof typeof MemoryStrategyStatus];
1180
+ export declare const MemoryStrategyType: {
1181
+ readonly CUSTOM: "CUSTOM";
1182
+ readonly SEMANTIC: "SEMANTIC";
1183
+ readonly SUMMARIZATION: "SUMMARIZATION";
1184
+ readonly USER_PREFERENCE: "USER_PREFERENCE";
1185
+ };
1186
+ export type MemoryStrategyType =
1187
+ (typeof MemoryStrategyType)[keyof typeof MemoryStrategyType];
1188
+ export interface MemoryStrategy {
1189
+ strategyId: string | undefined;
1190
+ name: string | undefined;
1191
+ description?: string | undefined;
1192
+ configuration?: StrategyConfiguration | undefined;
1193
+ type: MemoryStrategyType | undefined;
1194
+ namespaces: string[] | undefined;
1195
+ createdAt?: Date | undefined;
1196
+ updatedAt?: Date | undefined;
1197
+ status?: MemoryStrategyStatus | undefined;
1198
+ }
1199
+ export interface Memory {
1200
+ arn: string | undefined;
1201
+ id: string | undefined;
1202
+ name: string | undefined;
1203
+ description?: string | undefined;
1204
+ encryptionKeyArn?: string | undefined;
1205
+ memoryExecutionRoleArn?: string | undefined;
1206
+ eventExpiryDuration: number | undefined;
1207
+ status: MemoryStatus | undefined;
1208
+ failureReason?: string | undefined;
1209
+ createdAt: Date | undefined;
1210
+ updatedAt: Date | undefined;
1211
+ strategies?: MemoryStrategy[] | undefined;
1212
+ }
1213
+ export interface CreateMemoryOutput {
1214
+ memory?: Memory | undefined;
1215
+ }
1216
+ export declare class ServiceException extends __BaseException {
1217
+ readonly name: "ServiceException";
1218
+ readonly $fault: "server";
1219
+ $retryable: {};
1220
+ constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
1221
+ }
1222
+ export declare class ThrottledException extends __BaseException {
1223
+ readonly name: "ThrottledException";
1224
+ readonly $fault: "client";
1225
+ $retryable: {};
1226
+ constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
1227
+ }
1228
+ export interface DeleteMemoryInput {
1229
+ clientToken?: string | undefined;
1230
+ memoryId: string | undefined;
1231
+ }
1232
+ export interface DeleteMemoryOutput {
1233
+ memoryId: string | undefined;
1234
+ status?: MemoryStatus | undefined;
1235
+ }
1236
+ export interface GetMemoryInput {
1237
+ memoryId: string | undefined;
1238
+ }
1239
+ export interface GetMemoryOutput {
1240
+ memory: Memory | undefined;
1241
+ }
1242
+ export interface ListMemoriesInput {
1243
+ maxResults?: number | undefined;
1244
+ nextToken?: string | undefined;
1245
+ }
1246
+ export interface MemorySummary {
1247
+ arn?: string | undefined;
1248
+ id?: string | undefined;
1249
+ status?: MemoryStatus | undefined;
1250
+ createdAt: Date | undefined;
1251
+ updatedAt: Date | undefined;
1252
+ }
1253
+ export interface ListMemoriesOutput {
1254
+ memories: MemorySummary[] | undefined;
1255
+ nextToken?: string | undefined;
1256
+ }
1257
+ export interface DeleteMemoryStrategyInput {
1258
+ memoryStrategyId: string | undefined;
1259
+ }
1260
+ export type CustomConsolidationConfigurationInput =
1261
+ | CustomConsolidationConfigurationInput.SemanticConsolidationOverrideMember
1262
+ | CustomConsolidationConfigurationInput.SummaryConsolidationOverrideMember
1263
+ | CustomConsolidationConfigurationInput.UserPreferenceConsolidationOverrideMember
1264
+ | CustomConsolidationConfigurationInput.$UnknownMember;
1265
+ export declare namespace CustomConsolidationConfigurationInput {
1266
+ interface SemanticConsolidationOverrideMember {
1267
+ semanticConsolidationOverride: SemanticOverrideConsolidationConfigurationInput;
1268
+ summaryConsolidationOverride?: never;
1269
+ userPreferenceConsolidationOverride?: never;
1270
+ $unknown?: never;
1271
+ }
1272
+ interface SummaryConsolidationOverrideMember {
1273
+ semanticConsolidationOverride?: never;
1274
+ summaryConsolidationOverride: SummaryOverrideConsolidationConfigurationInput;
1275
+ userPreferenceConsolidationOverride?: never;
1276
+ $unknown?: never;
1277
+ }
1278
+ interface UserPreferenceConsolidationOverrideMember {
1279
+ semanticConsolidationOverride?: never;
1280
+ summaryConsolidationOverride?: never;
1281
+ userPreferenceConsolidationOverride: UserPreferenceOverrideConsolidationConfigurationInput;
1282
+ $unknown?: never;
1283
+ }
1284
+ interface $UnknownMember {
1285
+ semanticConsolidationOverride?: never;
1286
+ summaryConsolidationOverride?: never;
1287
+ userPreferenceConsolidationOverride?: never;
1288
+ $unknown: [string, any];
1289
+ }
1290
+ interface Visitor<T> {
1291
+ semanticConsolidationOverride: (
1292
+ value: SemanticOverrideConsolidationConfigurationInput
1293
+ ) => T;
1294
+ summaryConsolidationOverride: (
1295
+ value: SummaryOverrideConsolidationConfigurationInput
1296
+ ) => T;
1297
+ userPreferenceConsolidationOverride: (
1298
+ value: UserPreferenceOverrideConsolidationConfigurationInput
1299
+ ) => T;
1300
+ _: (name: string, value: any) => T;
1301
+ }
1302
+ const visit: <T>(
1303
+ value: CustomConsolidationConfigurationInput,
1304
+ visitor: Visitor<T>
1305
+ ) => T;
1306
+ }
1307
+ export type ModifyConsolidationConfiguration =
1308
+ | ModifyConsolidationConfiguration.CustomConsolidationConfigurationMember
1309
+ | ModifyConsolidationConfiguration.$UnknownMember;
1310
+ export declare namespace ModifyConsolidationConfiguration {
1311
+ interface CustomConsolidationConfigurationMember {
1312
+ customConsolidationConfiguration: CustomConsolidationConfigurationInput;
1313
+ $unknown?: never;
1314
+ }
1315
+ interface $UnknownMember {
1316
+ customConsolidationConfiguration?: never;
1317
+ $unknown: [string, any];
1318
+ }
1319
+ interface Visitor<T> {
1320
+ customConsolidationConfiguration: (
1321
+ value: CustomConsolidationConfigurationInput
1322
+ ) => T;
1323
+ _: (name: string, value: any) => T;
1324
+ }
1325
+ const visit: <T>(
1326
+ value: ModifyConsolidationConfiguration,
1327
+ visitor: Visitor<T>
1328
+ ) => T;
1329
+ }
1330
+ export type CustomExtractionConfigurationInput =
1331
+ | CustomExtractionConfigurationInput.SemanticExtractionOverrideMember
1332
+ | CustomExtractionConfigurationInput.UserPreferenceExtractionOverrideMember
1333
+ | CustomExtractionConfigurationInput.$UnknownMember;
1334
+ export declare namespace CustomExtractionConfigurationInput {
1335
+ interface SemanticExtractionOverrideMember {
1336
+ semanticExtractionOverride: SemanticOverrideExtractionConfigurationInput;
1337
+ userPreferenceExtractionOverride?: never;
1338
+ $unknown?: never;
1339
+ }
1340
+ interface UserPreferenceExtractionOverrideMember {
1341
+ semanticExtractionOverride?: never;
1342
+ userPreferenceExtractionOverride: UserPreferenceOverrideExtractionConfigurationInput;
1343
+ $unknown?: never;
1344
+ }
1345
+ interface $UnknownMember {
1346
+ semanticExtractionOverride?: never;
1347
+ userPreferenceExtractionOverride?: never;
1348
+ $unknown: [string, any];
1349
+ }
1350
+ interface Visitor<T> {
1351
+ semanticExtractionOverride: (
1352
+ value: SemanticOverrideExtractionConfigurationInput
1353
+ ) => T;
1354
+ userPreferenceExtractionOverride: (
1355
+ value: UserPreferenceOverrideExtractionConfigurationInput
1356
+ ) => T;
1357
+ _: (name: string, value: any) => T;
1358
+ }
1359
+ const visit: <T>(
1360
+ value: CustomExtractionConfigurationInput,
1361
+ visitor: Visitor<T>
1362
+ ) => T;
1363
+ }
1364
+ export type ModifyExtractionConfiguration =
1365
+ | ModifyExtractionConfiguration.CustomExtractionConfigurationMember
1366
+ | ModifyExtractionConfiguration.$UnknownMember;
1367
+ export declare namespace ModifyExtractionConfiguration {
1368
+ interface CustomExtractionConfigurationMember {
1369
+ customExtractionConfiguration: CustomExtractionConfigurationInput;
1370
+ $unknown?: never;
1371
+ }
1372
+ interface $UnknownMember {
1373
+ customExtractionConfiguration?: never;
1374
+ $unknown: [string, any];
1375
+ }
1376
+ interface Visitor<T> {
1377
+ customExtractionConfiguration: (
1378
+ value: CustomExtractionConfigurationInput
1379
+ ) => T;
1380
+ _: (name: string, value: any) => T;
1381
+ }
1382
+ const visit: <T>(
1383
+ value: ModifyExtractionConfiguration,
1384
+ visitor: Visitor<T>
1385
+ ) => T;
1386
+ }
1387
+ export interface ModifyStrategyConfiguration {
1388
+ extraction?: ModifyExtractionConfiguration | undefined;
1389
+ consolidation?: ModifyConsolidationConfiguration | undefined;
1390
+ }
1391
+ export interface ModifyMemoryStrategyInput {
1392
+ memoryStrategyId: string | undefined;
1393
+ description?: string | undefined;
1394
+ namespaces?: string[] | undefined;
1395
+ configuration?: ModifyStrategyConfiguration | undefined;
1396
+ }
1397
+ export interface ModifyMemoryStrategies {
1398
+ addMemoryStrategies?: MemoryStrategyInput[] | undefined;
1399
+ modifyMemoryStrategies?: ModifyMemoryStrategyInput[] | undefined;
1400
+ deleteMemoryStrategies?: DeleteMemoryStrategyInput[] | undefined;
1401
+ }
1402
+ export interface UpdateMemoryInput {
1403
+ clientToken?: string | undefined;
1404
+ memoryId: string | undefined;
1405
+ description?: string | undefined;
1406
+ eventExpiryDuration?: number | undefined;
1407
+ memoryExecutionRoleArn?: string | undefined;
1408
+ memoryStrategies?: ModifyMemoryStrategies | undefined;
1409
+ }
1410
+ export interface UpdateMemoryOutput {
1411
+ memory?: Memory | undefined;
1412
+ }
1413
+ export declare const CredentialProviderVendorType: {
1414
+ readonly CustomOauth2: "CustomOauth2";
1415
+ readonly GithubOauth2: "GithubOauth2";
1416
+ readonly GoogleOauth2: "GoogleOauth2";
1417
+ readonly MicrosoftOauth2: "MicrosoftOauth2";
1418
+ readonly SalesforceOauth2: "SalesforceOauth2";
1419
+ readonly SlackOauth2: "SlackOauth2";
1420
+ };
1421
+ export type CredentialProviderVendorType =
1422
+ (typeof CredentialProviderVendorType)[keyof typeof CredentialProviderVendorType];
1423
+ export interface Oauth2AuthorizationServerMetadata {
1424
+ issuer: string | undefined;
1425
+ authorizationEndpoint: string | undefined;
1426
+ tokenEndpoint: string | undefined;
1427
+ responseTypes?: string[] | undefined;
1428
+ }
1429
+ export type Oauth2Discovery =
1430
+ | Oauth2Discovery.AuthorizationServerMetadataMember
1431
+ | Oauth2Discovery.DiscoveryUrlMember
1432
+ | Oauth2Discovery.$UnknownMember;
1433
+ export declare namespace Oauth2Discovery {
1434
+ interface DiscoveryUrlMember {
1435
+ discoveryUrl: string;
1436
+ authorizationServerMetadata?: never;
1437
+ $unknown?: never;
1438
+ }
1439
+ interface AuthorizationServerMetadataMember {
1440
+ discoveryUrl?: never;
1441
+ authorizationServerMetadata: Oauth2AuthorizationServerMetadata;
1442
+ $unknown?: never;
1443
+ }
1444
+ interface $UnknownMember {
1445
+ discoveryUrl?: never;
1446
+ authorizationServerMetadata?: never;
1447
+ $unknown: [string, any];
1448
+ }
1449
+ interface Visitor<T> {
1450
+ discoveryUrl: (value: string) => T;
1451
+ authorizationServerMetadata: (
1452
+ value: Oauth2AuthorizationServerMetadata
1453
+ ) => T;
1454
+ _: (name: string, value: any) => T;
1455
+ }
1456
+ const visit: <T>(value: Oauth2Discovery, visitor: Visitor<T>) => T;
1457
+ }
1458
+ export interface CustomOauth2ProviderConfigInput {
1459
+ oauthDiscovery: Oauth2Discovery | undefined;
1460
+ clientId: string | undefined;
1461
+ clientSecret: string | undefined;
1462
+ }
1463
+ export interface GithubOauth2ProviderConfigInput {
1464
+ clientId: string | undefined;
1465
+ clientSecret: string | undefined;
1466
+ }
1467
+ export interface GoogleOauth2ProviderConfigInput {
1468
+ clientId: string | undefined;
1469
+ clientSecret: string | undefined;
1470
+ }
1471
+ export interface MicrosoftOauth2ProviderConfigInput {
1472
+ clientId: string | undefined;
1473
+ clientSecret: string | undefined;
1474
+ }
1475
+ export interface SalesforceOauth2ProviderConfigInput {
1476
+ clientId: string | undefined;
1477
+ clientSecret: string | undefined;
1478
+ }
1479
+ export interface SlackOauth2ProviderConfigInput {
1480
+ clientId: string | undefined;
1481
+ clientSecret: string | undefined;
1482
+ }
1483
+ export type Oauth2ProviderConfigInput =
1484
+ | Oauth2ProviderConfigInput.CustomOauth2ProviderConfigMember
1485
+ | Oauth2ProviderConfigInput.GithubOauth2ProviderConfigMember
1486
+ | Oauth2ProviderConfigInput.GoogleOauth2ProviderConfigMember
1487
+ | Oauth2ProviderConfigInput.MicrosoftOauth2ProviderConfigMember
1488
+ | Oauth2ProviderConfigInput.SalesforceOauth2ProviderConfigMember
1489
+ | Oauth2ProviderConfigInput.SlackOauth2ProviderConfigMember
1490
+ | Oauth2ProviderConfigInput.$UnknownMember;
1491
+ export declare namespace Oauth2ProviderConfigInput {
1492
+ interface CustomOauth2ProviderConfigMember {
1493
+ customOauth2ProviderConfig: CustomOauth2ProviderConfigInput;
1494
+ googleOauth2ProviderConfig?: never;
1495
+ githubOauth2ProviderConfig?: never;
1496
+ slackOauth2ProviderConfig?: never;
1497
+ salesforceOauth2ProviderConfig?: never;
1498
+ microsoftOauth2ProviderConfig?: never;
1499
+ $unknown?: never;
1500
+ }
1501
+ interface GoogleOauth2ProviderConfigMember {
1502
+ customOauth2ProviderConfig?: never;
1503
+ googleOauth2ProviderConfig: GoogleOauth2ProviderConfigInput;
1504
+ githubOauth2ProviderConfig?: never;
1505
+ slackOauth2ProviderConfig?: never;
1506
+ salesforceOauth2ProviderConfig?: never;
1507
+ microsoftOauth2ProviderConfig?: never;
1508
+ $unknown?: never;
1509
+ }
1510
+ interface GithubOauth2ProviderConfigMember {
1511
+ customOauth2ProviderConfig?: never;
1512
+ googleOauth2ProviderConfig?: never;
1513
+ githubOauth2ProviderConfig: GithubOauth2ProviderConfigInput;
1514
+ slackOauth2ProviderConfig?: never;
1515
+ salesforceOauth2ProviderConfig?: never;
1516
+ microsoftOauth2ProviderConfig?: never;
1517
+ $unknown?: never;
1518
+ }
1519
+ interface SlackOauth2ProviderConfigMember {
1520
+ customOauth2ProviderConfig?: never;
1521
+ googleOauth2ProviderConfig?: never;
1522
+ githubOauth2ProviderConfig?: never;
1523
+ slackOauth2ProviderConfig: SlackOauth2ProviderConfigInput;
1524
+ salesforceOauth2ProviderConfig?: never;
1525
+ microsoftOauth2ProviderConfig?: never;
1526
+ $unknown?: never;
1527
+ }
1528
+ interface SalesforceOauth2ProviderConfigMember {
1529
+ customOauth2ProviderConfig?: never;
1530
+ googleOauth2ProviderConfig?: never;
1531
+ githubOauth2ProviderConfig?: never;
1532
+ slackOauth2ProviderConfig?: never;
1533
+ salesforceOauth2ProviderConfig: SalesforceOauth2ProviderConfigInput;
1534
+ microsoftOauth2ProviderConfig?: never;
1535
+ $unknown?: never;
1536
+ }
1537
+ interface MicrosoftOauth2ProviderConfigMember {
1538
+ customOauth2ProviderConfig?: never;
1539
+ googleOauth2ProviderConfig?: never;
1540
+ githubOauth2ProviderConfig?: never;
1541
+ slackOauth2ProviderConfig?: never;
1542
+ salesforceOauth2ProviderConfig?: never;
1543
+ microsoftOauth2ProviderConfig: MicrosoftOauth2ProviderConfigInput;
1544
+ $unknown?: never;
1545
+ }
1546
+ interface $UnknownMember {
1547
+ customOauth2ProviderConfig?: never;
1548
+ googleOauth2ProviderConfig?: never;
1549
+ githubOauth2ProviderConfig?: never;
1550
+ slackOauth2ProviderConfig?: never;
1551
+ salesforceOauth2ProviderConfig?: never;
1552
+ microsoftOauth2ProviderConfig?: never;
1553
+ $unknown: [string, any];
1554
+ }
1555
+ interface Visitor<T> {
1556
+ customOauth2ProviderConfig: (value: CustomOauth2ProviderConfigInput) => T;
1557
+ googleOauth2ProviderConfig: (value: GoogleOauth2ProviderConfigInput) => T;
1558
+ githubOauth2ProviderConfig: (value: GithubOauth2ProviderConfigInput) => T;
1559
+ slackOauth2ProviderConfig: (value: SlackOauth2ProviderConfigInput) => T;
1560
+ salesforceOauth2ProviderConfig: (
1561
+ value: SalesforceOauth2ProviderConfigInput
1562
+ ) => T;
1563
+ microsoftOauth2ProviderConfig: (
1564
+ value: MicrosoftOauth2ProviderConfigInput
1565
+ ) => T;
1566
+ _: (name: string, value: any) => T;
1567
+ }
1568
+ const visit: <T>(value: Oauth2ProviderConfigInput, visitor: Visitor<T>) => T;
1569
+ }
1570
+ export interface CreateOauth2CredentialProviderRequest {
1571
+ name: string | undefined;
1572
+ credentialProviderVendor: CredentialProviderVendorType | undefined;
1573
+ oauth2ProviderConfigInput: Oauth2ProviderConfigInput | undefined;
1574
+ }
1575
+ export interface CreateOauth2CredentialProviderResponse {
1576
+ clientSecretArn: Secret | undefined;
1577
+ name: string | undefined;
1578
+ credentialProviderArn: string | undefined;
1579
+ }
1580
+ export interface DeleteOauth2CredentialProviderRequest {
1581
+ name: string | undefined;
1582
+ }
1583
+ export interface DeleteOauth2CredentialProviderResponse {}
1584
+ export interface GetOauth2CredentialProviderRequest {
1585
+ name: string | undefined;
1586
+ }
1587
+ export interface CustomOauth2ProviderConfigOutput {
1588
+ oauthDiscovery: Oauth2Discovery | undefined;
1589
+ }
1590
+ export interface GithubOauth2ProviderConfigOutput {
1591
+ oauthDiscovery: Oauth2Discovery | undefined;
1592
+ }
1593
+ export interface GoogleOauth2ProviderConfigOutput {
1594
+ oauthDiscovery: Oauth2Discovery | undefined;
1595
+ }
1596
+ export interface MicrosoftOauth2ProviderConfigOutput {
1597
+ oauthDiscovery: Oauth2Discovery | undefined;
1598
+ }
1599
+ export interface SalesforceOauth2ProviderConfigOutput {
1600
+ oauthDiscovery: Oauth2Discovery | undefined;
1601
+ }
1602
+ export interface SlackOauth2ProviderConfigOutput {
1603
+ oauthDiscovery: Oauth2Discovery | undefined;
1604
+ }
1605
+ export type Oauth2ProviderConfigOutput =
1606
+ | Oauth2ProviderConfigOutput.CustomOauth2ProviderConfigMember
1607
+ | Oauth2ProviderConfigOutput.GithubOauth2ProviderConfigMember
1608
+ | Oauth2ProviderConfigOutput.GoogleOauth2ProviderConfigMember
1609
+ | Oauth2ProviderConfigOutput.MicrosoftOauth2ProviderConfigMember
1610
+ | Oauth2ProviderConfigOutput.SalesforceOauth2ProviderConfigMember
1611
+ | Oauth2ProviderConfigOutput.SlackOauth2ProviderConfigMember
1612
+ | Oauth2ProviderConfigOutput.$UnknownMember;
1613
+ export declare namespace Oauth2ProviderConfigOutput {
1614
+ interface CustomOauth2ProviderConfigMember {
1615
+ customOauth2ProviderConfig: CustomOauth2ProviderConfigOutput;
1616
+ googleOauth2ProviderConfig?: never;
1617
+ githubOauth2ProviderConfig?: never;
1618
+ slackOauth2ProviderConfig?: never;
1619
+ salesforceOauth2ProviderConfig?: never;
1620
+ microsoftOauth2ProviderConfig?: never;
1621
+ $unknown?: never;
1622
+ }
1623
+ interface GoogleOauth2ProviderConfigMember {
1624
+ customOauth2ProviderConfig?: never;
1625
+ googleOauth2ProviderConfig: GoogleOauth2ProviderConfigOutput;
1626
+ githubOauth2ProviderConfig?: never;
1627
+ slackOauth2ProviderConfig?: never;
1628
+ salesforceOauth2ProviderConfig?: never;
1629
+ microsoftOauth2ProviderConfig?: never;
1630
+ $unknown?: never;
1631
+ }
1632
+ interface GithubOauth2ProviderConfigMember {
1633
+ customOauth2ProviderConfig?: never;
1634
+ googleOauth2ProviderConfig?: never;
1635
+ githubOauth2ProviderConfig: GithubOauth2ProviderConfigOutput;
1636
+ slackOauth2ProviderConfig?: never;
1637
+ salesforceOauth2ProviderConfig?: never;
1638
+ microsoftOauth2ProviderConfig?: never;
1639
+ $unknown?: never;
1640
+ }
1641
+ interface SlackOauth2ProviderConfigMember {
1642
+ customOauth2ProviderConfig?: never;
1643
+ googleOauth2ProviderConfig?: never;
1644
+ githubOauth2ProviderConfig?: never;
1645
+ slackOauth2ProviderConfig: SlackOauth2ProviderConfigOutput;
1646
+ salesforceOauth2ProviderConfig?: never;
1647
+ microsoftOauth2ProviderConfig?: never;
1648
+ $unknown?: never;
1649
+ }
1650
+ interface SalesforceOauth2ProviderConfigMember {
1651
+ customOauth2ProviderConfig?: never;
1652
+ googleOauth2ProviderConfig?: never;
1653
+ githubOauth2ProviderConfig?: never;
1654
+ slackOauth2ProviderConfig?: never;
1655
+ salesforceOauth2ProviderConfig: SalesforceOauth2ProviderConfigOutput;
1656
+ microsoftOauth2ProviderConfig?: never;
1657
+ $unknown?: never;
1658
+ }
1659
+ interface MicrosoftOauth2ProviderConfigMember {
1660
+ customOauth2ProviderConfig?: never;
1661
+ googleOauth2ProviderConfig?: never;
1662
+ githubOauth2ProviderConfig?: never;
1663
+ slackOauth2ProviderConfig?: never;
1664
+ salesforceOauth2ProviderConfig?: never;
1665
+ microsoftOauth2ProviderConfig: MicrosoftOauth2ProviderConfigOutput;
1666
+ $unknown?: never;
1667
+ }
1668
+ interface $UnknownMember {
1669
+ customOauth2ProviderConfig?: never;
1670
+ googleOauth2ProviderConfig?: never;
1671
+ githubOauth2ProviderConfig?: never;
1672
+ slackOauth2ProviderConfig?: never;
1673
+ salesforceOauth2ProviderConfig?: never;
1674
+ microsoftOauth2ProviderConfig?: never;
1675
+ $unknown: [string, any];
1676
+ }
1677
+ interface Visitor<T> {
1678
+ customOauth2ProviderConfig: (value: CustomOauth2ProviderConfigOutput) => T;
1679
+ googleOauth2ProviderConfig: (value: GoogleOauth2ProviderConfigOutput) => T;
1680
+ githubOauth2ProviderConfig: (value: GithubOauth2ProviderConfigOutput) => T;
1681
+ slackOauth2ProviderConfig: (value: SlackOauth2ProviderConfigOutput) => T;
1682
+ salesforceOauth2ProviderConfig: (
1683
+ value: SalesforceOauth2ProviderConfigOutput
1684
+ ) => T;
1685
+ microsoftOauth2ProviderConfig: (
1686
+ value: MicrosoftOauth2ProviderConfigOutput
1687
+ ) => T;
1688
+ _: (name: string, value: any) => T;
1689
+ }
1690
+ const visit: <T>(value: Oauth2ProviderConfigOutput, visitor: Visitor<T>) => T;
1691
+ }
1692
+ export interface GetOauth2CredentialProviderResponse {
1693
+ clientSecretArn: Secret | undefined;
1694
+ name: string | undefined;
1695
+ credentialProviderArn: string | undefined;
1696
+ credentialProviderVendor: CredentialProviderVendorType | undefined;
1697
+ oauth2ProviderConfigOutput: Oauth2ProviderConfigOutput | undefined;
1698
+ createdTime: Date | undefined;
1699
+ lastUpdatedTime: Date | undefined;
1700
+ }
1701
+ export interface ListOauth2CredentialProvidersRequest {
1702
+ nextToken?: string | undefined;
1703
+ maxResults?: number | undefined;
1704
+ }
1705
+ export interface Oauth2CredentialProviderItem {
1706
+ name: string | undefined;
1707
+ credentialProviderVendor: CredentialProviderVendorType | undefined;
1708
+ credentialProviderArn: string | undefined;
1709
+ createdTime: Date | undefined;
1710
+ lastUpdatedTime: Date | undefined;
1711
+ }
1712
+ export interface ListOauth2CredentialProvidersResponse {
1713
+ credentialProviders: Oauth2CredentialProviderItem[] | undefined;
1714
+ nextToken?: string | undefined;
1715
+ }
1716
+ export interface UpdateOauth2CredentialProviderRequest {
1717
+ name: string | undefined;
1718
+ credentialProviderVendor: CredentialProviderVendorType | undefined;
1719
+ oauth2ProviderConfigInput: Oauth2ProviderConfigInput | undefined;
1720
+ }
1721
+ export interface UpdateOauth2CredentialProviderResponse {
1722
+ clientSecretArn: Secret | undefined;
1723
+ name: string | undefined;
1724
+ credentialProviderVendor: CredentialProviderVendorType | undefined;
1725
+ credentialProviderArn: string | undefined;
1726
+ oauth2ProviderConfigOutput: Oauth2ProviderConfigOutput | undefined;
1727
+ createdTime: Date | undefined;
1728
+ lastUpdatedTime: Date | undefined;
1729
+ }
1730
+ export declare class ConcurrentModificationException extends __BaseException {
1731
+ readonly name: "ConcurrentModificationException";
1732
+ readonly $fault: "client";
1733
+ constructor(
1734
+ opts: __ExceptionOptionType<
1735
+ ConcurrentModificationException,
1736
+ __BaseException
1737
+ >
1738
+ );
1739
+ }
1740
+ export interface SetTokenVaultCMKRequest {
1741
+ tokenVaultId?: string | undefined;
1742
+ kmsConfiguration: KmsConfiguration | undefined;
1743
+ }
1744
+ export interface SetTokenVaultCMKResponse {
1745
+ tokenVaultId: string | undefined;
1746
+ kmsConfiguration: KmsConfiguration | undefined;
1747
+ lastModifiedDate: Date | undefined;
1748
+ }
1749
+ export interface CreateWorkloadIdentityRequest {
1750
+ name: string | undefined;
1751
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
1752
+ }
1753
+ export interface CreateWorkloadIdentityResponse {
1754
+ name: string | undefined;
1755
+ workloadIdentityArn: string | undefined;
1756
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
1757
+ }
1758
+ export interface DeleteWorkloadIdentityRequest {
1759
+ name: string | undefined;
1760
+ }
1761
+ export interface DeleteWorkloadIdentityResponse {}
1762
+ export interface GetWorkloadIdentityRequest {
1763
+ name: string | undefined;
1764
+ }
1765
+ export interface GetWorkloadIdentityResponse {
1766
+ name: string | undefined;
1767
+ workloadIdentityArn: string | undefined;
1768
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
1769
+ createdTime: Date | undefined;
1770
+ lastUpdatedTime: Date | undefined;
1771
+ }
1772
+ export interface ListWorkloadIdentitiesRequest {
1773
+ nextToken?: string | undefined;
1774
+ maxResults?: number | undefined;
1775
+ }
1776
+ export interface WorkloadIdentityType {
1777
+ name: string | undefined;
1778
+ workloadIdentityArn: string | undefined;
1779
+ }
1780
+ export interface ListWorkloadIdentitiesResponse {
1781
+ workloadIdentities: WorkloadIdentityType[] | undefined;
1782
+ nextToken?: string | undefined;
1783
+ }
1784
+ export interface UpdateWorkloadIdentityRequest {
1785
+ name: string | undefined;
1786
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
1787
+ }
1788
+ export interface UpdateWorkloadIdentityResponse {
1789
+ name: string | undefined;
1790
+ workloadIdentityArn: string | undefined;
1791
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
1792
+ createdTime: Date | undefined;
1793
+ lastUpdatedTime: Date | undefined;
1794
+ }
1795
+ export interface SchemaDefinition {
1796
+ type: SchemaType | undefined;
1797
+ properties?: Record<string, SchemaDefinition> | undefined;
1798
+ required?: string[] | undefined;
1799
+ items?: SchemaDefinition | undefined;
1800
+ description?: string | undefined;
1801
+ }
1802
+ export interface ToolDefinition {
1803
+ name: string | undefined;
1804
+ description: string | undefined;
1805
+ inputSchema: SchemaDefinition | undefined;
1806
+ outputSchema?: SchemaDefinition | undefined;
1807
+ }
1808
+ export type ToolSchema =
1809
+ | ToolSchema.InlinePayloadMember
1810
+ | ToolSchema.S3Member
1811
+ | ToolSchema.$UnknownMember;
1812
+ export declare namespace ToolSchema {
1813
+ interface S3Member {
1814
+ s3: S3Configuration;
1815
+ inlinePayload?: never;
1816
+ $unknown?: never;
1817
+ }
1818
+ interface InlinePayloadMember {
1819
+ s3?: never;
1820
+ inlinePayload: ToolDefinition[];
1821
+ $unknown?: never;
1822
+ }
1823
+ interface $UnknownMember {
1824
+ s3?: never;
1825
+ inlinePayload?: never;
1826
+ $unknown: [string, any];
1827
+ }
1828
+ interface Visitor<T> {
1829
+ s3: (value: S3Configuration) => T;
1830
+ inlinePayload: (value: ToolDefinition[]) => T;
1831
+ _: (name: string, value: any) => T;
1832
+ }
1833
+ const visit: <T>(value: ToolSchema, visitor: Visitor<T>) => T;
1834
+ }
1835
+ export interface McpLambdaTargetConfiguration {
1836
+ lambdaArn: string | undefined;
1837
+ toolSchema: ToolSchema | undefined;
1838
+ }
1839
+ export type McpTargetConfiguration =
1840
+ | McpTargetConfiguration.LambdaMember
1841
+ | McpTargetConfiguration.OpenApiSchemaMember
1842
+ | McpTargetConfiguration.SmithyModelMember
1843
+ | McpTargetConfiguration.$UnknownMember;
1844
+ export declare namespace McpTargetConfiguration {
1845
+ interface OpenApiSchemaMember {
1846
+ openApiSchema: ApiSchemaConfiguration;
1847
+ smithyModel?: never;
1848
+ lambda?: never;
1849
+ $unknown?: never;
1850
+ }
1851
+ interface SmithyModelMember {
1852
+ openApiSchema?: never;
1853
+ smithyModel: ApiSchemaConfiguration;
1854
+ lambda?: never;
1855
+ $unknown?: never;
1856
+ }
1857
+ interface LambdaMember {
1858
+ openApiSchema?: never;
1859
+ smithyModel?: never;
1860
+ lambda: McpLambdaTargetConfiguration;
1861
+ $unknown?: never;
1862
+ }
1863
+ interface $UnknownMember {
1864
+ openApiSchema?: never;
1865
+ smithyModel?: never;
1866
+ lambda?: never;
1867
+ $unknown: [string, any];
1868
+ }
1869
+ interface Visitor<T> {
1870
+ openApiSchema: (value: ApiSchemaConfiguration) => T;
1871
+ smithyModel: (value: ApiSchemaConfiguration) => T;
1872
+ lambda: (value: McpLambdaTargetConfiguration) => T;
1873
+ _: (name: string, value: any) => T;
1874
+ }
1875
+ const visit: <T>(value: McpTargetConfiguration, visitor: Visitor<T>) => T;
1876
+ }
1877
+ export type TargetConfiguration =
1878
+ | TargetConfiguration.McpMember
1879
+ | TargetConfiguration.$UnknownMember;
1880
+ export declare namespace TargetConfiguration {
1881
+ interface McpMember {
1882
+ mcp: McpTargetConfiguration;
1883
+ $unknown?: never;
1884
+ }
1885
+ interface $UnknownMember {
1886
+ mcp?: never;
1887
+ $unknown: [string, any];
1888
+ }
1889
+ interface Visitor<T> {
1890
+ mcp: (value: McpTargetConfiguration) => T;
1891
+ _: (name: string, value: any) => T;
1892
+ }
1893
+ const visit: <T>(value: TargetConfiguration, visitor: Visitor<T>) => T;
1894
+ }
1895
+ export interface CreateGatewayTargetRequest {
1896
+ gatewayIdentifier: string | undefined;
1897
+ name: string | undefined;
1898
+ description?: string | undefined;
1899
+ clientToken?: string | undefined;
1900
+ targetConfiguration: TargetConfiguration | undefined;
1901
+ credentialProviderConfigurations:
1902
+ | CredentialProviderConfiguration[]
1903
+ | undefined;
1904
+ }
1905
+ export interface CreateGatewayTargetResponse {
1906
+ gatewayArn: string | undefined;
1907
+ targetId: string | undefined;
1908
+ createdAt: Date | undefined;
1909
+ updatedAt: Date | undefined;
1910
+ status: TargetStatus | undefined;
1911
+ statusReasons?: string[] | undefined;
1912
+ name: string | undefined;
1913
+ description?: string | undefined;
1914
+ targetConfiguration: TargetConfiguration | undefined;
1915
+ credentialProviderConfigurations:
1916
+ | CredentialProviderConfiguration[]
1917
+ | undefined;
1918
+ }
1919
+ export interface GetGatewayTargetResponse {
1920
+ gatewayArn: string | undefined;
1921
+ targetId: string | undefined;
1922
+ createdAt: Date | undefined;
1923
+ updatedAt: Date | undefined;
1924
+ status: TargetStatus | undefined;
1925
+ statusReasons?: string[] | undefined;
1926
+ name: string | undefined;
1927
+ description?: string | undefined;
1928
+ targetConfiguration: TargetConfiguration | undefined;
1929
+ credentialProviderConfigurations:
1930
+ | CredentialProviderConfiguration[]
1931
+ | undefined;
1932
+ }
1933
+ export interface UpdateGatewayTargetRequest {
1934
+ gatewayIdentifier: string | undefined;
1935
+ targetId: string | undefined;
1936
+ name: string | undefined;
1937
+ description?: string | undefined;
1938
+ targetConfiguration: TargetConfiguration | undefined;
1939
+ credentialProviderConfigurations:
1940
+ | CredentialProviderConfiguration[]
1941
+ | undefined;
1942
+ }
1943
+ export interface UpdateGatewayTargetResponse {
1944
+ gatewayArn: string | undefined;
1945
+ targetId: string | undefined;
1946
+ createdAt: Date | undefined;
1947
+ updatedAt: Date | undefined;
1948
+ status: TargetStatus | undefined;
1949
+ statusReasons?: string[] | undefined;
1950
+ name: string | undefined;
1951
+ description?: string | undefined;
1952
+ targetConfiguration: TargetConfiguration | undefined;
1953
+ credentialProviderConfigurations:
1954
+ | CredentialProviderConfiguration[]
1955
+ | undefined;
1956
+ }
1957
+ export declare const AgentFilterSensitiveLog: (obj: Agent) => any;
1958
+ export declare const AgentEndpointFilterSensitiveLog: (
1959
+ obj: AgentEndpoint
1960
+ ) => any;
1961
+ export declare const CreateAgentRuntimeEndpointRequestFilterSensitiveLog: (
1962
+ obj: CreateAgentRuntimeEndpointRequest
1963
+ ) => any;
1964
+ export declare const DeleteAgentRuntimeEndpointRequestFilterSensitiveLog: (
1965
+ obj: DeleteAgentRuntimeEndpointRequest
1966
+ ) => any;
1967
+ export declare const GetAgentRuntimeEndpointRequestFilterSensitiveLog: (
1968
+ obj: GetAgentRuntimeEndpointRequest
1969
+ ) => any;
1970
+ export declare const GetAgentRuntimeEndpointResponseFilterSensitiveLog: (
1971
+ obj: GetAgentRuntimeEndpointResponse
1972
+ ) => any;
1973
+ export declare const ListAgentRuntimeEndpointsResponseFilterSensitiveLog: (
1974
+ obj: ListAgentRuntimeEndpointsResponse
1975
+ ) => any;
1976
+ export declare const UpdateAgentRuntimeEndpointRequestFilterSensitiveLog: (
1977
+ obj: UpdateAgentRuntimeEndpointRequest
1978
+ ) => any;
1979
+ export declare const CreateAgentRuntimeRequestFilterSensitiveLog: (
1980
+ obj: CreateAgentRuntimeRequest
1981
+ ) => any;
1982
+ export declare const GetAgentRuntimeResponseFilterSensitiveLog: (
1983
+ obj: GetAgentRuntimeResponse
1984
+ ) => any;
1985
+ export declare const ListAgentRuntimesResponseFilterSensitiveLog: (
1986
+ obj: ListAgentRuntimesResponse
1987
+ ) => any;
1988
+ export declare const ListAgentRuntimeVersionsResponseFilterSensitiveLog: (
1989
+ obj: ListAgentRuntimeVersionsResponse
1990
+ ) => any;
1991
+ export declare const UpdateAgentRuntimeRequestFilterSensitiveLog: (
1992
+ obj: UpdateAgentRuntimeRequest
1993
+ ) => any;
1994
+ export declare const CreateApiKeyCredentialProviderRequestFilterSensitiveLog: (
1995
+ obj: CreateApiKeyCredentialProviderRequest
1996
+ ) => any;
1997
+ export declare const UpdateApiKeyCredentialProviderRequestFilterSensitiveLog: (
1998
+ obj: UpdateApiKeyCredentialProviderRequest
1999
+ ) => any;
2000
+ export declare const CreateBrowserRequestFilterSensitiveLog: (
2001
+ obj: CreateBrowserRequest
2002
+ ) => any;
2003
+ export declare const GetBrowserResponseFilterSensitiveLog: (
2004
+ obj: GetBrowserResponse
2005
+ ) => any;
2006
+ export declare const BrowserSummaryFilterSensitiveLog: (
2007
+ obj: BrowserSummary
2008
+ ) => any;
2009
+ export declare const ListBrowsersResponseFilterSensitiveLog: (
2010
+ obj: ListBrowsersResponse
2011
+ ) => any;
2012
+ export declare const CreateCodeInterpreterRequestFilterSensitiveLog: (
2013
+ obj: CreateCodeInterpreterRequest
2014
+ ) => any;
2015
+ export declare const GetCodeInterpreterResponseFilterSensitiveLog: (
2016
+ obj: GetCodeInterpreterResponse
2017
+ ) => any;
2018
+ export declare const CodeInterpreterSummaryFilterSensitiveLog: (
2019
+ obj: CodeInterpreterSummary
2020
+ ) => any;
2021
+ export declare const ListCodeInterpretersResponseFilterSensitiveLog: (
2022
+ obj: ListCodeInterpretersResponse
2023
+ ) => any;
2024
+ export declare const CreateGatewayRequestFilterSensitiveLog: (
2025
+ obj: CreateGatewayRequest
2026
+ ) => any;
2027
+ export declare const CreateGatewayResponseFilterSensitiveLog: (
2028
+ obj: CreateGatewayResponse
2029
+ ) => any;
2030
+ export declare const GetGatewayResponseFilterSensitiveLog: (
2031
+ obj: GetGatewayResponse
2032
+ ) => any;
2033
+ export declare const GatewaySummaryFilterSensitiveLog: (
2034
+ obj: GatewaySummary
2035
+ ) => any;
2036
+ export declare const ListGatewaysResponseFilterSensitiveLog: (
2037
+ obj: ListGatewaysResponse
2038
+ ) => any;
2039
+ export declare const UpdateGatewayRequestFilterSensitiveLog: (
2040
+ obj: UpdateGatewayRequest
2041
+ ) => any;
2042
+ export declare const UpdateGatewayResponseFilterSensitiveLog: (
2043
+ obj: UpdateGatewayResponse
2044
+ ) => any;
2045
+ export declare const OAuthCredentialProviderFilterSensitiveLog: (
2046
+ obj: OAuthCredentialProvider
2047
+ ) => any;
2048
+ export declare const CredentialProviderFilterSensitiveLog: (
2049
+ obj: CredentialProvider
2050
+ ) => any;
2051
+ export declare const CredentialProviderConfigurationFilterSensitiveLog: (
2052
+ obj: CredentialProviderConfiguration
2053
+ ) => any;
2054
+ export declare const ApiSchemaConfigurationFilterSensitiveLog: (
2055
+ obj: ApiSchemaConfiguration
2056
+ ) => any;
2057
+ export declare const TargetSummaryFilterSensitiveLog: (
2058
+ obj: TargetSummary
2059
+ ) => any;
2060
+ export declare const ListGatewayTargetsResponseFilterSensitiveLog: (
2061
+ obj: ListGatewayTargetsResponse
2062
+ ) => any;
2063
+ export declare const SemanticOverrideConsolidationConfigurationInputFilterSensitiveLog: (
2064
+ obj: SemanticOverrideConsolidationConfigurationInput
2065
+ ) => any;
2066
+ export declare const SemanticOverrideExtractionConfigurationInputFilterSensitiveLog: (
2067
+ obj: SemanticOverrideExtractionConfigurationInput
2068
+ ) => any;
2069
+ export declare const SemanticOverrideConfigurationInputFilterSensitiveLog: (
2070
+ obj: SemanticOverrideConfigurationInput
2071
+ ) => any;
2072
+ export declare const SummaryOverrideConsolidationConfigurationInputFilterSensitiveLog: (
2073
+ obj: SummaryOverrideConsolidationConfigurationInput
2074
+ ) => any;
2075
+ export declare const SummaryOverrideConfigurationInputFilterSensitiveLog: (
2076
+ obj: SummaryOverrideConfigurationInput
2077
+ ) => any;
2078
+ export declare const UserPreferenceOverrideConsolidationConfigurationInputFilterSensitiveLog: (
2079
+ obj: UserPreferenceOverrideConsolidationConfigurationInput
2080
+ ) => any;
2081
+ export declare const UserPreferenceOverrideExtractionConfigurationInputFilterSensitiveLog: (
2082
+ obj: UserPreferenceOverrideExtractionConfigurationInput
2083
+ ) => any;
2084
+ export declare const UserPreferenceOverrideConfigurationInputFilterSensitiveLog: (
2085
+ obj: UserPreferenceOverrideConfigurationInput
2086
+ ) => any;
2087
+ export declare const CustomConfigurationInputFilterSensitiveLog: (
2088
+ obj: CustomConfigurationInput
2089
+ ) => any;
2090
+ export declare const CustomMemoryStrategyInputFilterSensitiveLog: (
2091
+ obj: CustomMemoryStrategyInput
2092
+ ) => any;
2093
+ export declare const SemanticMemoryStrategyInputFilterSensitiveLog: (
2094
+ obj: SemanticMemoryStrategyInput
2095
+ ) => any;
2096
+ export declare const SummaryMemoryStrategyInputFilterSensitiveLog: (
2097
+ obj: SummaryMemoryStrategyInput
2098
+ ) => any;
2099
+ export declare const UserPreferenceMemoryStrategyInputFilterSensitiveLog: (
2100
+ obj: UserPreferenceMemoryStrategyInput
2101
+ ) => any;
2102
+ export declare const MemoryStrategyInputFilterSensitiveLog: (
2103
+ obj: MemoryStrategyInput
2104
+ ) => any;
2105
+ export declare const CreateMemoryInputFilterSensitiveLog: (
2106
+ obj: CreateMemoryInput
2107
+ ) => any;
2108
+ export declare const SemanticConsolidationOverrideFilterSensitiveLog: (
2109
+ obj: SemanticConsolidationOverride
2110
+ ) => any;
2111
+ export declare const SummaryConsolidationOverrideFilterSensitiveLog: (
2112
+ obj: SummaryConsolidationOverride
2113
+ ) => any;
2114
+ export declare const UserPreferenceConsolidationOverrideFilterSensitiveLog: (
2115
+ obj: UserPreferenceConsolidationOverride
2116
+ ) => any;
2117
+ export declare const CustomConsolidationConfigurationFilterSensitiveLog: (
2118
+ obj: CustomConsolidationConfiguration
2119
+ ) => any;
2120
+ export declare const ConsolidationConfigurationFilterSensitiveLog: (
2121
+ obj: ConsolidationConfiguration
2122
+ ) => any;
2123
+ export declare const SemanticExtractionOverrideFilterSensitiveLog: (
2124
+ obj: SemanticExtractionOverride
2125
+ ) => any;
2126
+ export declare const UserPreferenceExtractionOverrideFilterSensitiveLog: (
2127
+ obj: UserPreferenceExtractionOverride
2128
+ ) => any;
2129
+ export declare const CustomExtractionConfigurationFilterSensitiveLog: (
2130
+ obj: CustomExtractionConfiguration
2131
+ ) => any;
2132
+ export declare const ExtractionConfigurationFilterSensitiveLog: (
2133
+ obj: ExtractionConfiguration
2134
+ ) => any;
2135
+ export declare const StrategyConfigurationFilterSensitiveLog: (
2136
+ obj: StrategyConfiguration
2137
+ ) => any;
2138
+ export declare const MemoryStrategyFilterSensitiveLog: (
2139
+ obj: MemoryStrategy
2140
+ ) => any;
2141
+ export declare const MemoryFilterSensitiveLog: (obj: Memory) => any;
2142
+ export declare const CreateMemoryOutputFilterSensitiveLog: (
2143
+ obj: CreateMemoryOutput
2144
+ ) => any;
2145
+ export declare const GetMemoryOutputFilterSensitiveLog: (
2146
+ obj: GetMemoryOutput
2147
+ ) => any;
2148
+ export declare const CustomConsolidationConfigurationInputFilterSensitiveLog: (
2149
+ obj: CustomConsolidationConfigurationInput
2150
+ ) => any;
2151
+ export declare const ModifyConsolidationConfigurationFilterSensitiveLog: (
2152
+ obj: ModifyConsolidationConfiguration
2153
+ ) => any;
2154
+ export declare const CustomExtractionConfigurationInputFilterSensitiveLog: (
2155
+ obj: CustomExtractionConfigurationInput
2156
+ ) => any;
2157
+ export declare const ModifyExtractionConfigurationFilterSensitiveLog: (
2158
+ obj: ModifyExtractionConfiguration
2159
+ ) => any;
2160
+ export declare const ModifyStrategyConfigurationFilterSensitiveLog: (
2161
+ obj: ModifyStrategyConfiguration
2162
+ ) => any;
2163
+ export declare const ModifyMemoryStrategyInputFilterSensitiveLog: (
2164
+ obj: ModifyMemoryStrategyInput
2165
+ ) => any;
2166
+ export declare const ModifyMemoryStrategiesFilterSensitiveLog: (
2167
+ obj: ModifyMemoryStrategies
2168
+ ) => any;
2169
+ export declare const UpdateMemoryInputFilterSensitiveLog: (
2170
+ obj: UpdateMemoryInput
2171
+ ) => any;
2172
+ export declare const UpdateMemoryOutputFilterSensitiveLog: (
2173
+ obj: UpdateMemoryOutput
2174
+ ) => any;
2175
+ export declare const CustomOauth2ProviderConfigInputFilterSensitiveLog: (
2176
+ obj: CustomOauth2ProviderConfigInput
2177
+ ) => any;
2178
+ export declare const GithubOauth2ProviderConfigInputFilterSensitiveLog: (
2179
+ obj: GithubOauth2ProviderConfigInput
2180
+ ) => any;
2181
+ export declare const GoogleOauth2ProviderConfigInputFilterSensitiveLog: (
2182
+ obj: GoogleOauth2ProviderConfigInput
2183
+ ) => any;
2184
+ export declare const MicrosoftOauth2ProviderConfigInputFilterSensitiveLog: (
2185
+ obj: MicrosoftOauth2ProviderConfigInput
2186
+ ) => any;
2187
+ export declare const SalesforceOauth2ProviderConfigInputFilterSensitiveLog: (
2188
+ obj: SalesforceOauth2ProviderConfigInput
2189
+ ) => any;
2190
+ export declare const SlackOauth2ProviderConfigInputFilterSensitiveLog: (
2191
+ obj: SlackOauth2ProviderConfigInput
2192
+ ) => any;
2193
+ export declare const Oauth2ProviderConfigInputFilterSensitiveLog: (
2194
+ obj: Oauth2ProviderConfigInput
2195
+ ) => any;
2196
+ export declare const CreateOauth2CredentialProviderRequestFilterSensitiveLog: (
2197
+ obj: CreateOauth2CredentialProviderRequest
2198
+ ) => any;
2199
+ export declare const UpdateOauth2CredentialProviderRequestFilterSensitiveLog: (
2200
+ obj: UpdateOauth2CredentialProviderRequest
2201
+ ) => any;
2202
+ export declare const McpTargetConfigurationFilterSensitiveLog: (
2203
+ obj: McpTargetConfiguration
2204
+ ) => any;
2205
+ export declare const TargetConfigurationFilterSensitiveLog: (
2206
+ obj: TargetConfiguration
2207
+ ) => any;
2208
+ export declare const CreateGatewayTargetRequestFilterSensitiveLog: (
2209
+ obj: CreateGatewayTargetRequest
2210
+ ) => any;
2211
+ export declare const CreateGatewayTargetResponseFilterSensitiveLog: (
2212
+ obj: CreateGatewayTargetResponse
2213
+ ) => any;
2214
+ export declare const GetGatewayTargetResponseFilterSensitiveLog: (
2215
+ obj: GetGatewayTargetResponse
2216
+ ) => any;
2217
+ export declare const UpdateGatewayTargetRequestFilterSensitiveLog: (
2218
+ obj: UpdateGatewayTargetRequest
2219
+ ) => any;
2220
+ export declare const UpdateGatewayTargetResponseFilterSensitiveLog: (
2221
+ obj: UpdateGatewayTargetResponse
2222
+ ) => any;