@aws-sdk/client-bedrock-agent-runtime 3.755.0 → 3.764.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 (92) hide show
  1. package/README.md +119 -7
  2. package/dist-cjs/index.js +1035 -78
  3. package/dist-es/BedrockAgentRuntime.js +28 -0
  4. package/dist-es/commands/CreateInvocationCommand.js +22 -0
  5. package/dist-es/commands/CreateSessionCommand.js +22 -0
  6. package/dist-es/commands/DeleteSessionCommand.js +22 -0
  7. package/dist-es/commands/EndSessionCommand.js +22 -0
  8. package/dist-es/commands/GetInvocationStepCommand.js +23 -0
  9. package/dist-es/commands/GetSessionCommand.js +22 -0
  10. package/dist-es/commands/InvokeAgentCommand.js +2 -1
  11. package/dist-es/commands/InvokeInlineAgentCommand.js +2 -1
  12. package/dist-es/commands/ListInvocationStepsCommand.js +22 -0
  13. package/dist-es/commands/ListInvocationsCommand.js +22 -0
  14. package/dist-es/commands/ListSessionsCommand.js +22 -0
  15. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  16. package/dist-es/commands/PutInvocationStepCommand.js +23 -0
  17. package/dist-es/commands/RetrieveAndGenerateCommand.js +2 -1
  18. package/dist-es/commands/RetrieveAndGenerateStreamCommand.js +2 -1
  19. package/dist-es/commands/RetrieveCommand.js +2 -1
  20. package/dist-es/commands/TagResourceCommand.js +22 -0
  21. package/dist-es/commands/UntagResourceCommand.js +22 -0
  22. package/dist-es/commands/UpdateSessionCommand.js +22 -0
  23. package/dist-es/commands/index.js +14 -0
  24. package/dist-es/models/index.js +1 -0
  25. package/dist-es/models/models_0.js +76 -156
  26. package/dist-es/models/models_1.js +181 -0
  27. package/dist-es/pagination/ListInvocationStepsPaginator.js +4 -0
  28. package/dist-es/pagination/ListInvocationsPaginator.js +4 -0
  29. package/dist-es/pagination/ListSessionsPaginator.js +4 -0
  30. package/dist-es/pagination/index.js +3 -0
  31. package/dist-es/protocols/Aws_restJson1.js +560 -8
  32. package/dist-types/BedrockAgentRuntime.d.ts +100 -0
  33. package/dist-types/BedrockAgentRuntimeClient.d.ts +16 -2
  34. package/dist-types/commands/CreateInvocationCommand.d.ts +115 -0
  35. package/dist-types/commands/CreateSessionCommand.d.ts +133 -0
  36. package/dist-types/commands/DeleteSessionCommand.d.ts +89 -0
  37. package/dist-types/commands/EndSessionCommand.d.ts +93 -0
  38. package/dist-types/commands/GetInvocationStepCommand.d.ts +109 -0
  39. package/dist-types/commands/GetSessionCommand.d.ts +94 -0
  40. package/dist-types/commands/InvokeAgentCommand.d.ts +3 -1
  41. package/dist-types/commands/InvokeInlineAgentCommand.d.ts +216 -64
  42. package/dist-types/commands/ListInvocationStepsCommand.d.ts +97 -0
  43. package/dist-types/commands/ListInvocationsCommand.d.ts +95 -0
  44. package/dist-types/commands/ListSessionsCommand.d.ts +93 -0
  45. package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
  46. package/dist-types/commands/PutInvocationStepCommand.d.ts +134 -0
  47. package/dist-types/commands/RetrieveAndGenerateCommand.d.ts +2 -1
  48. package/dist-types/commands/RetrieveAndGenerateStreamCommand.d.ts +2 -1
  49. package/dist-types/commands/RetrieveCommand.d.ts +2 -1
  50. package/dist-types/commands/TagResourceCommand.d.ts +91 -0
  51. package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
  52. package/dist-types/commands/UpdateSessionCommand.d.ts +96 -0
  53. package/dist-types/commands/index.d.ts +14 -0
  54. package/dist-types/models/index.d.ts +1 -0
  55. package/dist-types/models/models_0.d.ts +605 -684
  56. package/dist-types/models/models_1.d.ts +1055 -0
  57. package/dist-types/pagination/ListInvocationStepsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/ListInvocationsPaginator.d.ts +7 -0
  59. package/dist-types/pagination/ListSessionsPaginator.d.ts +7 -0
  60. package/dist-types/pagination/index.d.ts +3 -0
  61. package/dist-types/protocols/Aws_restJson1.d.ts +126 -0
  62. package/dist-types/ts3.4/BedrockAgentRuntime.d.ts +240 -0
  63. package/dist-types/ts3.4/BedrockAgentRuntimeClient.d.ts +86 -2
  64. package/dist-types/ts3.4/commands/CreateInvocationCommand.d.ts +50 -0
  65. package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +50 -0
  66. package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +50 -0
  67. package/dist-types/ts3.4/commands/EndSessionCommand.d.ts +47 -0
  68. package/dist-types/ts3.4/commands/GetInvocationStepCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +47 -0
  70. package/dist-types/ts3.4/commands/InvokeAgentCommand.d.ts +2 -1
  71. package/dist-types/ts3.4/commands/InvokeInlineAgentCommand.d.ts +2 -4
  72. package/dist-types/ts3.4/commands/ListInvocationStepsCommand.d.ts +51 -0
  73. package/dist-types/ts3.4/commands/ListInvocationsCommand.d.ts +50 -0
  74. package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +47 -0
  75. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/PutInvocationStepCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/RetrieveAndGenerateCommand.d.ts +2 -4
  78. package/dist-types/ts3.4/commands/RetrieveAndGenerateStreamCommand.d.ts +2 -4
  79. package/dist-types/ts3.4/commands/RetrieveCommand.d.ts +2 -1
  80. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +48 -0
  81. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  82. package/dist-types/ts3.4/commands/UpdateSessionCommand.d.ts +50 -0
  83. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  84. package/dist-types/ts3.4/models/index.d.ts +1 -0
  85. package/dist-types/ts3.4/models/models_0.d.ts +250 -374
  86. package/dist-types/ts3.4/models/models_1.d.ts +441 -0
  87. package/dist-types/ts3.4/pagination/ListInvocationStepsPaginator.d.ts +11 -0
  88. package/dist-types/ts3.4/pagination/ListInvocationsPaginator.d.ts +11 -0
  89. package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +11 -0
  90. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  91. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +168 -0
  92. package/package.json +12 -12
@@ -0,0 +1,441 @@
1
+ import {
2
+ AgentActionGroup,
3
+ AgentCollaboration,
4
+ BedrockModelConfigurations,
5
+ CollaboratorConfiguration,
6
+ ConversationHistory,
7
+ ExternalSourcesRetrieveAndGenerateConfiguration,
8
+ FilterAttribute,
9
+ GenerationConfiguration,
10
+ GuardrailConfiguration,
11
+ GuardrailConfigurationWithArn,
12
+ ImplicitFilterConfiguration,
13
+ InlineBedrockModelConfigurations,
14
+ InlineSessionState,
15
+ InputFile,
16
+ InvocationResultMember,
17
+ KnowledgeBaseQuery,
18
+ OrchestrationConfiguration,
19
+ PromptOverrideConfiguration,
20
+ RetrieveAndGenerateInput,
21
+ RetrieveAndGenerateSessionConfiguration,
22
+ RetrieveAndGenerateType,
23
+ SearchType,
24
+ StreamingConfigurations,
25
+ VectorSearchRerankingConfiguration,
26
+ } from "./models_0";
27
+ export interface TagResourceResponse {}
28
+ export interface UntagResourceRequest {
29
+ resourceArn: string | undefined;
30
+ tagKeys: string[] | undefined;
31
+ }
32
+ export interface UntagResourceResponse {}
33
+ export type RetrievalFilter =
34
+ | RetrievalFilter.AndAllMember
35
+ | RetrievalFilter.EqualsMember
36
+ | RetrievalFilter.GreaterThanMember
37
+ | RetrievalFilter.GreaterThanOrEqualsMember
38
+ | RetrievalFilter.InMember
39
+ | RetrievalFilter.LessThanMember
40
+ | RetrievalFilter.LessThanOrEqualsMember
41
+ | RetrievalFilter.ListContainsMember
42
+ | RetrievalFilter.NotEqualsMember
43
+ | RetrievalFilter.NotInMember
44
+ | RetrievalFilter.OrAllMember
45
+ | RetrievalFilter.StartsWithMember
46
+ | RetrievalFilter.StringContainsMember
47
+ | RetrievalFilter.$UnknownMember;
48
+ export declare namespace RetrievalFilter {
49
+ interface EqualsMember {
50
+ equals: FilterAttribute;
51
+ notEquals?: never;
52
+ greaterThan?: never;
53
+ greaterThanOrEquals?: never;
54
+ lessThan?: never;
55
+ lessThanOrEquals?: never;
56
+ in?: never;
57
+ notIn?: never;
58
+ startsWith?: never;
59
+ listContains?: never;
60
+ stringContains?: never;
61
+ andAll?: never;
62
+ orAll?: never;
63
+ $unknown?: never;
64
+ }
65
+ interface NotEqualsMember {
66
+ equals?: never;
67
+ notEquals: FilterAttribute;
68
+ greaterThan?: never;
69
+ greaterThanOrEquals?: never;
70
+ lessThan?: never;
71
+ lessThanOrEquals?: never;
72
+ in?: never;
73
+ notIn?: never;
74
+ startsWith?: never;
75
+ listContains?: never;
76
+ stringContains?: never;
77
+ andAll?: never;
78
+ orAll?: never;
79
+ $unknown?: never;
80
+ }
81
+ interface GreaterThanMember {
82
+ equals?: never;
83
+ notEquals?: never;
84
+ greaterThan: FilterAttribute;
85
+ greaterThanOrEquals?: never;
86
+ lessThan?: never;
87
+ lessThanOrEquals?: never;
88
+ in?: never;
89
+ notIn?: never;
90
+ startsWith?: never;
91
+ listContains?: never;
92
+ stringContains?: never;
93
+ andAll?: never;
94
+ orAll?: never;
95
+ $unknown?: never;
96
+ }
97
+ interface GreaterThanOrEqualsMember {
98
+ equals?: never;
99
+ notEquals?: never;
100
+ greaterThan?: never;
101
+ greaterThanOrEquals: FilterAttribute;
102
+ lessThan?: never;
103
+ lessThanOrEquals?: never;
104
+ in?: never;
105
+ notIn?: never;
106
+ startsWith?: never;
107
+ listContains?: never;
108
+ stringContains?: never;
109
+ andAll?: never;
110
+ orAll?: never;
111
+ $unknown?: never;
112
+ }
113
+ interface LessThanMember {
114
+ equals?: never;
115
+ notEquals?: never;
116
+ greaterThan?: never;
117
+ greaterThanOrEquals?: never;
118
+ lessThan: FilterAttribute;
119
+ lessThanOrEquals?: never;
120
+ in?: never;
121
+ notIn?: never;
122
+ startsWith?: never;
123
+ listContains?: never;
124
+ stringContains?: never;
125
+ andAll?: never;
126
+ orAll?: never;
127
+ $unknown?: never;
128
+ }
129
+ interface LessThanOrEqualsMember {
130
+ equals?: never;
131
+ notEquals?: never;
132
+ greaterThan?: never;
133
+ greaterThanOrEquals?: never;
134
+ lessThan?: never;
135
+ lessThanOrEquals: FilterAttribute;
136
+ in?: never;
137
+ notIn?: never;
138
+ startsWith?: never;
139
+ listContains?: never;
140
+ stringContains?: never;
141
+ andAll?: never;
142
+ orAll?: never;
143
+ $unknown?: never;
144
+ }
145
+ interface InMember {
146
+ equals?: never;
147
+ notEquals?: never;
148
+ greaterThan?: never;
149
+ greaterThanOrEquals?: never;
150
+ lessThan?: never;
151
+ lessThanOrEquals?: never;
152
+ in: FilterAttribute;
153
+ notIn?: never;
154
+ startsWith?: never;
155
+ listContains?: never;
156
+ stringContains?: never;
157
+ andAll?: never;
158
+ orAll?: never;
159
+ $unknown?: never;
160
+ }
161
+ interface NotInMember {
162
+ equals?: never;
163
+ notEquals?: never;
164
+ greaterThan?: never;
165
+ greaterThanOrEquals?: never;
166
+ lessThan?: never;
167
+ lessThanOrEquals?: never;
168
+ in?: never;
169
+ notIn: FilterAttribute;
170
+ startsWith?: never;
171
+ listContains?: never;
172
+ stringContains?: never;
173
+ andAll?: never;
174
+ orAll?: never;
175
+ $unknown?: never;
176
+ }
177
+ interface StartsWithMember {
178
+ equals?: never;
179
+ notEquals?: never;
180
+ greaterThan?: never;
181
+ greaterThanOrEquals?: never;
182
+ lessThan?: never;
183
+ lessThanOrEquals?: never;
184
+ in?: never;
185
+ notIn?: never;
186
+ startsWith: FilterAttribute;
187
+ listContains?: never;
188
+ stringContains?: never;
189
+ andAll?: never;
190
+ orAll?: never;
191
+ $unknown?: never;
192
+ }
193
+ interface ListContainsMember {
194
+ equals?: never;
195
+ notEquals?: never;
196
+ greaterThan?: never;
197
+ greaterThanOrEquals?: never;
198
+ lessThan?: never;
199
+ lessThanOrEquals?: never;
200
+ in?: never;
201
+ notIn?: never;
202
+ startsWith?: never;
203
+ listContains: FilterAttribute;
204
+ stringContains?: never;
205
+ andAll?: never;
206
+ orAll?: never;
207
+ $unknown?: never;
208
+ }
209
+ interface StringContainsMember {
210
+ equals?: never;
211
+ notEquals?: never;
212
+ greaterThan?: never;
213
+ greaterThanOrEquals?: never;
214
+ lessThan?: never;
215
+ lessThanOrEquals?: never;
216
+ in?: never;
217
+ notIn?: never;
218
+ startsWith?: never;
219
+ listContains?: never;
220
+ stringContains: FilterAttribute;
221
+ andAll?: never;
222
+ orAll?: never;
223
+ $unknown?: never;
224
+ }
225
+ interface AndAllMember {
226
+ equals?: never;
227
+ notEquals?: never;
228
+ greaterThan?: never;
229
+ greaterThanOrEquals?: never;
230
+ lessThan?: never;
231
+ lessThanOrEquals?: never;
232
+ in?: never;
233
+ notIn?: never;
234
+ startsWith?: never;
235
+ listContains?: never;
236
+ stringContains?: never;
237
+ andAll: RetrievalFilter[];
238
+ orAll?: never;
239
+ $unknown?: never;
240
+ }
241
+ interface OrAllMember {
242
+ equals?: never;
243
+ notEquals?: never;
244
+ greaterThan?: never;
245
+ greaterThanOrEquals?: never;
246
+ lessThan?: never;
247
+ lessThanOrEquals?: never;
248
+ in?: never;
249
+ notIn?: never;
250
+ startsWith?: never;
251
+ listContains?: never;
252
+ stringContains?: never;
253
+ andAll?: never;
254
+ orAll: RetrievalFilter[];
255
+ $unknown?: never;
256
+ }
257
+ interface $UnknownMember {
258
+ equals?: never;
259
+ notEquals?: never;
260
+ greaterThan?: never;
261
+ greaterThanOrEquals?: never;
262
+ lessThan?: never;
263
+ lessThanOrEquals?: never;
264
+ in?: never;
265
+ notIn?: never;
266
+ startsWith?: never;
267
+ listContains?: never;
268
+ stringContains?: never;
269
+ andAll?: never;
270
+ orAll?: never;
271
+ $unknown: [string, any];
272
+ }
273
+ interface Visitor<T> {
274
+ equals: (value: FilterAttribute) => T;
275
+ notEquals: (value: FilterAttribute) => T;
276
+ greaterThan: (value: FilterAttribute) => T;
277
+ greaterThanOrEquals: (value: FilterAttribute) => T;
278
+ lessThan: (value: FilterAttribute) => T;
279
+ lessThanOrEquals: (value: FilterAttribute) => T;
280
+ in: (value: FilterAttribute) => T;
281
+ notIn: (value: FilterAttribute) => T;
282
+ startsWith: (value: FilterAttribute) => T;
283
+ listContains: (value: FilterAttribute) => T;
284
+ stringContains: (value: FilterAttribute) => T;
285
+ andAll: (value: RetrievalFilter[]) => T;
286
+ orAll: (value: RetrievalFilter[]) => T;
287
+ _: (name: string, value: any) => T;
288
+ }
289
+ const visit: <T>(value: RetrievalFilter, visitor: Visitor<T>) => T;
290
+ }
291
+ export interface KnowledgeBaseVectorSearchConfiguration {
292
+ numberOfResults?: number | undefined;
293
+ overrideSearchType?: SearchType | undefined;
294
+ filter?: RetrievalFilter | undefined;
295
+ rerankingConfiguration?: VectorSearchRerankingConfiguration | undefined;
296
+ implicitFilterConfiguration?: ImplicitFilterConfiguration | undefined;
297
+ }
298
+ export interface KnowledgeBaseRetrievalConfiguration {
299
+ vectorSearchConfiguration: KnowledgeBaseVectorSearchConfiguration | undefined;
300
+ }
301
+ export interface KnowledgeBase {
302
+ knowledgeBaseId: string | undefined;
303
+ description: string | undefined;
304
+ retrievalConfiguration?: KnowledgeBaseRetrievalConfiguration | undefined;
305
+ }
306
+ export interface KnowledgeBaseConfiguration {
307
+ knowledgeBaseId: string | undefined;
308
+ retrievalConfiguration: KnowledgeBaseRetrievalConfiguration | undefined;
309
+ }
310
+ export interface KnowledgeBaseRetrieveAndGenerateConfiguration {
311
+ knowledgeBaseId: string | undefined;
312
+ modelArn: string | undefined;
313
+ retrievalConfiguration?: KnowledgeBaseRetrievalConfiguration | undefined;
314
+ generationConfiguration?: GenerationConfiguration | undefined;
315
+ orchestrationConfiguration?: OrchestrationConfiguration | undefined;
316
+ }
317
+ export interface RetrieveRequest {
318
+ knowledgeBaseId: string | undefined;
319
+ retrievalQuery: KnowledgeBaseQuery | undefined;
320
+ retrievalConfiguration?: KnowledgeBaseRetrievalConfiguration | undefined;
321
+ guardrailConfiguration?: GuardrailConfiguration | undefined;
322
+ nextToken?: string | undefined;
323
+ }
324
+ export interface RetrieveAndGenerateConfiguration {
325
+ type: RetrieveAndGenerateType | undefined;
326
+ knowledgeBaseConfiguration?:
327
+ | KnowledgeBaseRetrieveAndGenerateConfiguration
328
+ | undefined;
329
+ externalSourcesConfiguration?:
330
+ | ExternalSourcesRetrieveAndGenerateConfiguration
331
+ | undefined;
332
+ }
333
+ export interface Collaborator {
334
+ customerEncryptionKeyArn?: string | undefined;
335
+ foundationModel: string | undefined;
336
+ instruction: string | undefined;
337
+ idleSessionTTLInSeconds?: number | undefined;
338
+ actionGroups?: AgentActionGroup[] | undefined;
339
+ knowledgeBases?: KnowledgeBase[] | undefined;
340
+ guardrailConfiguration?: GuardrailConfigurationWithArn | undefined;
341
+ promptOverrideConfiguration?: PromptOverrideConfiguration | undefined;
342
+ agentCollaboration?: AgentCollaboration | undefined;
343
+ collaboratorConfigurations?: CollaboratorConfiguration[] | undefined;
344
+ agentName?: string | undefined;
345
+ }
346
+ export interface RetrieveAndGenerateRequest {
347
+ sessionId?: string | undefined;
348
+ input: RetrieveAndGenerateInput | undefined;
349
+ retrieveAndGenerateConfiguration?:
350
+ | RetrieveAndGenerateConfiguration
351
+ | undefined;
352
+ sessionConfiguration?: RetrieveAndGenerateSessionConfiguration | undefined;
353
+ }
354
+ export interface RetrieveAndGenerateStreamRequest {
355
+ sessionId?: string | undefined;
356
+ input: RetrieveAndGenerateInput | undefined;
357
+ retrieveAndGenerateConfiguration?:
358
+ | RetrieveAndGenerateConfiguration
359
+ | undefined;
360
+ sessionConfiguration?: RetrieveAndGenerateSessionConfiguration | undefined;
361
+ }
362
+ export interface SessionState {
363
+ sessionAttributes?: Record<string, string> | undefined;
364
+ promptSessionAttributes?: Record<string, string> | undefined;
365
+ returnControlInvocationResults?: InvocationResultMember[] | undefined;
366
+ invocationId?: string | undefined;
367
+ files?: InputFile[] | undefined;
368
+ knowledgeBaseConfigurations?: KnowledgeBaseConfiguration[] | undefined;
369
+ conversationHistory?: ConversationHistory | undefined;
370
+ }
371
+ export interface InvokeAgentRequest {
372
+ sessionState?: SessionState | undefined;
373
+ agentId: string | undefined;
374
+ agentAliasId: string | undefined;
375
+ sessionId: string | undefined;
376
+ endSession?: boolean | undefined;
377
+ enableTrace?: boolean | undefined;
378
+ inputText?: string | undefined;
379
+ memoryId?: string | undefined;
380
+ bedrockModelConfigurations?: BedrockModelConfigurations | undefined;
381
+ streamingConfigurations?: StreamingConfigurations | undefined;
382
+ sourceArn?: string | undefined;
383
+ }
384
+ export interface InvokeInlineAgentRequest {
385
+ customerEncryptionKeyArn?: string | undefined;
386
+ foundationModel: string | undefined;
387
+ instruction: string | undefined;
388
+ idleSessionTTLInSeconds?: number | undefined;
389
+ actionGroups?: AgentActionGroup[] | undefined;
390
+ knowledgeBases?: KnowledgeBase[] | undefined;
391
+ guardrailConfiguration?: GuardrailConfigurationWithArn | undefined;
392
+ promptOverrideConfiguration?: PromptOverrideConfiguration | undefined;
393
+ agentCollaboration?: AgentCollaboration | undefined;
394
+ collaboratorConfigurations?: CollaboratorConfiguration[] | undefined;
395
+ sessionId: string | undefined;
396
+ endSession?: boolean | undefined;
397
+ enableTrace?: boolean | undefined;
398
+ inputText?: string | undefined;
399
+ streamingConfigurations?: StreamingConfigurations | undefined;
400
+ inlineSessionState?: InlineSessionState | undefined;
401
+ collaborators?: Collaborator[] | undefined;
402
+ bedrockModelConfigurations?: InlineBedrockModelConfigurations | undefined;
403
+ }
404
+ export declare const RetrievalFilterFilterSensitiveLog: (
405
+ obj: RetrievalFilter
406
+ ) => any;
407
+ export declare const KnowledgeBaseVectorSearchConfigurationFilterSensitiveLog: (
408
+ obj: KnowledgeBaseVectorSearchConfiguration
409
+ ) => any;
410
+ export declare const KnowledgeBaseRetrievalConfigurationFilterSensitiveLog: (
411
+ obj: KnowledgeBaseRetrievalConfiguration
412
+ ) => any;
413
+ export declare const KnowledgeBaseFilterSensitiveLog: (
414
+ obj: KnowledgeBase
415
+ ) => any;
416
+ export declare const KnowledgeBaseConfigurationFilterSensitiveLog: (
417
+ obj: KnowledgeBaseConfiguration
418
+ ) => any;
419
+ export declare const KnowledgeBaseRetrieveAndGenerateConfigurationFilterSensitiveLog: (
420
+ obj: KnowledgeBaseRetrieveAndGenerateConfiguration
421
+ ) => any;
422
+ export declare const RetrieveRequestFilterSensitiveLog: (
423
+ obj: RetrieveRequest
424
+ ) => any;
425
+ export declare const RetrieveAndGenerateConfigurationFilterSensitiveLog: (
426
+ obj: RetrieveAndGenerateConfiguration
427
+ ) => any;
428
+ export declare const CollaboratorFilterSensitiveLog: (obj: Collaborator) => any;
429
+ export declare const RetrieveAndGenerateRequestFilterSensitiveLog: (
430
+ obj: RetrieveAndGenerateRequest
431
+ ) => any;
432
+ export declare const RetrieveAndGenerateStreamRequestFilterSensitiveLog: (
433
+ obj: RetrieveAndGenerateStreamRequest
434
+ ) => any;
435
+ export declare const SessionStateFilterSensitiveLog: (obj: SessionState) => any;
436
+ export declare const InvokeAgentRequestFilterSensitiveLog: (
437
+ obj: InvokeAgentRequest
438
+ ) => any;
439
+ export declare const InvokeInlineAgentRequestFilterSensitiveLog: (
440
+ obj: InvokeInlineAgentRequest
441
+ ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListInvocationStepsCommandInput,
4
+ ListInvocationStepsCommandOutput,
5
+ } from "../commands/ListInvocationStepsCommand";
6
+ import { BedrockAgentRuntimePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListInvocationSteps: (
8
+ config: BedrockAgentRuntimePaginationConfiguration,
9
+ input: ListInvocationStepsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListInvocationStepsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListInvocationsCommandInput,
4
+ ListInvocationsCommandOutput,
5
+ } from "../commands/ListInvocationsCommand";
6
+ import { BedrockAgentRuntimePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListInvocations: (
8
+ config: BedrockAgentRuntimePaginationConfiguration,
9
+ input: ListInvocationsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListInvocationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListSessionsCommandInput,
4
+ ListSessionsCommandOutput,
5
+ } from "../commands/ListSessionsCommand";
6
+ import { BedrockAgentRuntimePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListSessions: (
8
+ config: BedrockAgentRuntimePaginationConfiguration,
9
+ input: ListSessionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListSessionsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  export * from "./GetAgentMemoryPaginator";
2
2
  export * from "./Interfaces";
3
+ export * from "./ListInvocationStepsPaginator";
4
+ export * from "./ListInvocationsPaginator";
5
+ export * from "./ListSessionsPaginator";
3
6
  export * from "./RerankPaginator";
4
7
  export * from "./RetrievePaginator";