@aws-sdk/client-bedrock-agent-runtime 3.1087.0 → 3.1088.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.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/BedrockAgentRuntime.d.ts +114 -144
- package/dist-types/ts3.4/BedrockAgentRuntimeClient.d.ts +12 -43
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AgenticRetrieveStreamCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateInvocationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DeleteAgentMemoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/EndSessionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GenerateQueryCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetAgentMemoryCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDocumentContentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetExecutionFlowSnapshotCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetFlowExecutionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetInvocationStepCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InvokeAgentCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InvokeFlowCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InvokeInlineAgentCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListFlowExecutionEventsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListFlowExecutionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListInvocationStepsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListInvocationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/OptimizePromptCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutInvocationStepCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RerankCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/RetrieveAndGenerateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RetrieveAndGenerateStreamCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RetrieveCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/StartFlowExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopFlowExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +29 -58
- package/dist-types/ts3.4/models/errors.d.ts +9 -27
- package/dist-types/ts3.4/models/models_0.d.ts +23 -70
- package/dist-types/ts3.4/models/models_1.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/RerankPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/RetrievePaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
export declare const CustomControlMethod: {
|
|
2
2
|
readonly RETURN_CONTROL: "RETURN_CONTROL";
|
|
3
3
|
};
|
|
4
|
-
export type CustomControlMethod =
|
|
5
|
-
(typeof CustomControlMethod)[keyof typeof CustomControlMethod];
|
|
4
|
+
export type CustomControlMethod = (typeof CustomControlMethod)[keyof typeof CustomControlMethod];
|
|
6
5
|
export declare const ExecutionType: {
|
|
7
6
|
readonly LAMBDA: "LAMBDA";
|
|
8
7
|
readonly RETURN_CONTROL: "RETURN_CONTROL";
|
|
@@ -15,15 +14,13 @@ export declare const ActionGroupSignature: {
|
|
|
15
14
|
readonly ANTHROPIC_COMPUTER: "ANTHROPIC.Computer";
|
|
16
15
|
readonly ANTHROPIC_TEXTEDITOR: "ANTHROPIC.TextEditor";
|
|
17
16
|
};
|
|
18
|
-
export type ActionGroupSignature =
|
|
19
|
-
(typeof ActionGroupSignature)[keyof typeof ActionGroupSignature];
|
|
17
|
+
export type ActionGroupSignature = (typeof ActionGroupSignature)[keyof typeof ActionGroupSignature];
|
|
20
18
|
export declare const ActionInvocationType: {
|
|
21
19
|
readonly RESULT: "RESULT";
|
|
22
20
|
readonly USER_CONFIRMATION: "USER_CONFIRMATION";
|
|
23
21
|
readonly USER_CONFIRMATION_AND_RESULT: "USER_CONFIRMATION_AND_RESULT";
|
|
24
22
|
};
|
|
25
|
-
export type ActionInvocationType =
|
|
26
|
-
(typeof ActionInvocationType)[keyof typeof ActionInvocationType];
|
|
23
|
+
export type ActionInvocationType = (typeof ActionInvocationType)[keyof typeof ActionInvocationType];
|
|
27
24
|
export declare const ParameterType: {
|
|
28
25
|
readonly ARRAY: "array";
|
|
29
26
|
readonly BOOLEAN: "boolean";
|
|
@@ -36,29 +33,25 @@ export declare const RequireConfirmation: {
|
|
|
36
33
|
readonly DISABLED: "DISABLED";
|
|
37
34
|
readonly ENABLED: "ENABLED";
|
|
38
35
|
};
|
|
39
|
-
export type RequireConfirmation =
|
|
40
|
-
(typeof RequireConfirmation)[keyof typeof RequireConfirmation];
|
|
36
|
+
export type RequireConfirmation = (typeof RequireConfirmation)[keyof typeof RequireConfirmation];
|
|
41
37
|
export declare const AgentCollaboration: {
|
|
42
38
|
readonly DISABLED: "DISABLED";
|
|
43
39
|
readonly SUPERVISOR: "SUPERVISOR";
|
|
44
40
|
readonly SUPERVISOR_ROUTER: "SUPERVISOR_ROUTER";
|
|
45
41
|
};
|
|
46
|
-
export type AgentCollaboration =
|
|
47
|
-
(typeof AgentCollaboration)[keyof typeof AgentCollaboration];
|
|
42
|
+
export type AgentCollaboration = (typeof AgentCollaboration)[keyof typeof AgentCollaboration];
|
|
48
43
|
export declare const ConfirmationState: {
|
|
49
44
|
readonly CONFIRM: "CONFIRM";
|
|
50
45
|
readonly DENY: "DENY";
|
|
51
46
|
};
|
|
52
|
-
export type ConfirmationState =
|
|
53
|
-
(typeof ConfirmationState)[keyof typeof ConfirmationState];
|
|
47
|
+
export type ConfirmationState = (typeof ConfirmationState)[keyof typeof ConfirmationState];
|
|
54
48
|
export declare const ImageInputFormat: {
|
|
55
49
|
readonly GIF: "gif";
|
|
56
50
|
readonly JPEG: "jpeg";
|
|
57
51
|
readonly PNG: "png";
|
|
58
52
|
readonly WEBP: "webp";
|
|
59
53
|
};
|
|
60
|
-
export type ImageInputFormat =
|
|
61
|
-
(typeof ImageInputFormat)[keyof typeof ImageInputFormat];
|
|
54
|
+
export type ImageInputFormat = (typeof ImageInputFormat)[keyof typeof ImageInputFormat];
|
|
62
55
|
export declare const ResponseState: {
|
|
63
56
|
readonly FAILURE: "FAILURE";
|
|
64
57
|
readonly REPROMPT: "REPROMPT";
|
|
@@ -78,8 +71,7 @@ export declare const FoundationModelType: {
|
|
|
78
71
|
readonly CUSTOM: "CUSTOM";
|
|
79
72
|
readonly MANAGED: "MANAGED";
|
|
80
73
|
};
|
|
81
|
-
export type FoundationModelType =
|
|
82
|
-
(typeof FoundationModelType)[keyof typeof FoundationModelType];
|
|
74
|
+
export type FoundationModelType = (typeof FoundationModelType)[keyof typeof FoundationModelType];
|
|
83
75
|
export declare const AgenticRetrieveRerankingConfigurationType: {
|
|
84
76
|
readonly BEDROCK_RERANKING_MODEL: "BEDROCK_RERANKING_MODEL";
|
|
85
77
|
};
|
|
@@ -96,19 +88,16 @@ export declare const GuardrailAction: {
|
|
|
96
88
|
readonly INTERVENED: "INTERVENED";
|
|
97
89
|
readonly NONE: "NONE";
|
|
98
90
|
};
|
|
99
|
-
export type GuardrailAction =
|
|
100
|
-
(typeof GuardrailAction)[keyof typeof GuardrailAction];
|
|
91
|
+
export type GuardrailAction = (typeof GuardrailAction)[keyof typeof GuardrailAction];
|
|
101
92
|
export declare const ConversationRole: {
|
|
102
93
|
readonly ASSISTANT: "assistant";
|
|
103
94
|
readonly USER: "user";
|
|
104
95
|
};
|
|
105
|
-
export type ConversationRole =
|
|
106
|
-
(typeof ConversationRole)[keyof typeof ConversationRole];
|
|
96
|
+
export type ConversationRole = (typeof ConversationRole)[keyof typeof ConversationRole];
|
|
107
97
|
export declare const AgenticRetrieveType: {
|
|
108
98
|
readonly BEDROCK_KNOWLEDGE_BASE: "BedrockKnowledgeBase";
|
|
109
99
|
};
|
|
110
|
-
export type AgenticRetrieveType =
|
|
111
|
-
(typeof AgenticRetrieveType)[keyof typeof AgenticRetrieveType];
|
|
100
|
+
export type AgenticRetrieveType = (typeof AgenticRetrieveType)[keyof typeof AgenticRetrieveType];
|
|
112
101
|
export declare const AgenticRetrieveStatus: {
|
|
113
102
|
readonly FAILED: "FAILED";
|
|
114
103
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
@@ -122,8 +111,7 @@ export declare const AgenticRetrieveStep: {
|
|
|
122
111
|
readonly RETRIEVAL: "Retrieval";
|
|
123
112
|
readonly SPECULATIVE_RETRIEVAL: "SpeculativeRetrieval";
|
|
124
113
|
};
|
|
125
|
-
export type AgenticRetrieveStep =
|
|
126
|
-
(typeof AgenticRetrieveStep)[keyof typeof AgenticRetrieveStep];
|
|
114
|
+
export type AgenticRetrieveStep = (typeof AgenticRetrieveStep)[keyof typeof AgenticRetrieveStep];
|
|
127
115
|
export declare const GuardrailContentPolicyAction: {
|
|
128
116
|
readonly BLOCKED: "BLOCKED";
|
|
129
117
|
};
|
|
@@ -196,8 +184,7 @@ export type GuardrailTopicPolicyAction =
|
|
|
196
184
|
export declare const GuardrailTopicType: {
|
|
197
185
|
readonly DENY: "DENY";
|
|
198
186
|
};
|
|
199
|
-
export type GuardrailTopicType =
|
|
200
|
-
(typeof GuardrailTopicType)[keyof typeof GuardrailTopicType];
|
|
187
|
+
export type GuardrailTopicType = (typeof GuardrailTopicType)[keyof typeof GuardrailTopicType];
|
|
201
188
|
export declare const GuardrailWordPolicyAction: {
|
|
202
189
|
readonly BLOCKED: "BLOCKED";
|
|
203
190
|
};
|
|
@@ -215,8 +202,7 @@ export declare const InvocationType: {
|
|
|
215
202
|
readonly FINISH: "FINISH";
|
|
216
203
|
readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
|
|
217
204
|
};
|
|
218
|
-
export type InvocationType =
|
|
219
|
-
(typeof InvocationType)[keyof typeof InvocationType];
|
|
205
|
+
export type InvocationType = (typeof InvocationType)[keyof typeof InvocationType];
|
|
220
206
|
export declare const CreationMode: {
|
|
221
207
|
readonly DEFAULT: "DEFAULT";
|
|
222
208
|
readonly OVERRIDDEN: "OVERRIDDEN";
|
|
@@ -290,8 +276,7 @@ export declare const FlowExecutionStatus: {
|
|
|
290
276
|
readonly SUCCEEDED: "Succeeded";
|
|
291
277
|
readonly TIMED_OUT: "TimedOut";
|
|
292
278
|
};
|
|
293
|
-
export type FlowExecutionStatus =
|
|
294
|
-
(typeof FlowExecutionStatus)[keyof typeof FlowExecutionStatus];
|
|
279
|
+
export type FlowExecutionStatus = (typeof FlowExecutionStatus)[keyof typeof FlowExecutionStatus];
|
|
295
280
|
export declare const FlowExecutionEventType: {
|
|
296
281
|
readonly FLOW: "Flow";
|
|
297
282
|
readonly NODE: "Node";
|
|
@@ -322,8 +307,7 @@ export declare const FlowControlNodeType: {
|
|
|
322
307
|
readonly ITERATOR: "Iterator";
|
|
323
308
|
readonly LOOP: "Loop";
|
|
324
309
|
};
|
|
325
|
-
export type FlowControlNodeType =
|
|
326
|
-
(typeof FlowControlNodeType)[keyof typeof FlowControlNodeType];
|
|
310
|
+
export type FlowControlNodeType = (typeof FlowControlNodeType)[keyof typeof FlowControlNodeType];
|
|
327
311
|
export declare const FlowNodeIODataType: {
|
|
328
312
|
readonly ARRAY: "Array";
|
|
329
313
|
readonly BOOLEAN: "Boolean";
|
|
@@ -331,8 +315,7 @@ export declare const FlowNodeIODataType: {
|
|
|
331
315
|
readonly OBJECT: "Object";
|
|
332
316
|
readonly STRING: "String";
|
|
333
317
|
};
|
|
334
|
-
export type FlowNodeIODataType =
|
|
335
|
-
(typeof FlowNodeIODataType)[keyof typeof FlowNodeIODataType];
|
|
318
|
+
export type FlowNodeIODataType = (typeof FlowNodeIODataType)[keyof typeof FlowNodeIODataType];
|
|
336
319
|
export declare const PerformanceConfigLatency: {
|
|
337
320
|
readonly OPTIMIZED: "optimized";
|
|
338
321
|
readonly STANDARD: "standard";
|
|
@@ -343,8 +326,7 @@ export declare const FlowCompletionReason: {
|
|
|
343
326
|
readonly INPUT_REQUIRED: "INPUT_REQUIRED";
|
|
344
327
|
readonly SUCCESS: "SUCCESS";
|
|
345
328
|
};
|
|
346
|
-
export type FlowCompletionReason =
|
|
347
|
-
(typeof FlowCompletionReason)[keyof typeof FlowCompletionReason];
|
|
329
|
+
export type FlowCompletionReason = (typeof FlowCompletionReason)[keyof typeof FlowCompletionReason];
|
|
348
330
|
export declare const NodeType: {
|
|
349
331
|
readonly CONDITION_NODE: "ConditionNode";
|
|
350
332
|
readonly FLOW_INPUT_NODE: "FlowInputNode";
|
|
@@ -358,8 +340,7 @@ export type NodeType = (typeof NodeType)[keyof typeof NodeType];
|
|
|
358
340
|
export declare const InputQueryType: {
|
|
359
341
|
readonly TEXT: "TEXT";
|
|
360
342
|
};
|
|
361
|
-
export type InputQueryType =
|
|
362
|
-
(typeof InputQueryType)[keyof typeof InputQueryType];
|
|
343
|
+
export type InputQueryType = (typeof InputQueryType)[keyof typeof InputQueryType];
|
|
363
344
|
export declare const QueryTransformationMode: {
|
|
364
345
|
readonly TEXT_TO_SQL: "TEXT_TO_SQL";
|
|
365
346
|
};
|
|
@@ -373,20 +354,17 @@ export type TextToSqlConfigurationType =
|
|
|
373
354
|
export declare const GeneratedQueryType: {
|
|
374
355
|
readonly REDSHIFT_SQL: "REDSHIFT_SQL";
|
|
375
356
|
};
|
|
376
|
-
export type GeneratedQueryType =
|
|
377
|
-
(typeof GeneratedQueryType)[keyof typeof GeneratedQueryType];
|
|
357
|
+
export type GeneratedQueryType = (typeof GeneratedQueryType)[keyof typeof GeneratedQueryType];
|
|
378
358
|
export declare const DocumentOutputFormat: {
|
|
379
359
|
readonly EXTRACTED: "EXTRACTED";
|
|
380
360
|
readonly RAW: "RAW";
|
|
381
361
|
};
|
|
382
|
-
export type DocumentOutputFormat =
|
|
383
|
-
(typeof DocumentOutputFormat)[keyof typeof DocumentOutputFormat];
|
|
362
|
+
export type DocumentOutputFormat = (typeof DocumentOutputFormat)[keyof typeof DocumentOutputFormat];
|
|
384
363
|
export declare const FileSourceType: {
|
|
385
364
|
readonly BYTE_CONTENT: "BYTE_CONTENT";
|
|
386
365
|
readonly S3: "S3";
|
|
387
366
|
};
|
|
388
|
-
export type FileSourceType =
|
|
389
|
-
(typeof FileSourceType)[keyof typeof FileSourceType];
|
|
367
|
+
export type FileSourceType = (typeof FileSourceType)[keyof typeof FileSourceType];
|
|
390
368
|
export declare const FileUseCase: {
|
|
391
369
|
readonly CHAT: "CHAT";
|
|
392
370
|
readonly CODE_INTERPRETER: "CODE_INTERPRETER";
|
|
@@ -408,8 +386,7 @@ export declare const RerankingModelType: {
|
|
|
408
386
|
readonly MANAGED: "MANAGED";
|
|
409
387
|
readonly NONE: "NONE";
|
|
410
388
|
};
|
|
411
|
-
export type RerankingModelType =
|
|
412
|
-
(typeof RerankingModelType)[keyof typeof RerankingModelType];
|
|
389
|
+
export type RerankingModelType = (typeof RerankingModelType)[keyof typeof RerankingModelType];
|
|
413
390
|
export declare const AttributeType: {
|
|
414
391
|
readonly BOOLEAN: "BOOLEAN";
|
|
415
392
|
readonly NUMBER: "NUMBER";
|
|
@@ -442,8 +419,7 @@ export declare const OrchestrationType: {
|
|
|
442
419
|
readonly CUSTOM_ORCHESTRATION: "CUSTOM_ORCHESTRATION";
|
|
443
420
|
readonly DEFAULT: "DEFAULT";
|
|
444
421
|
};
|
|
445
|
-
export type OrchestrationType =
|
|
446
|
-
(typeof OrchestrationType)[keyof typeof OrchestrationType];
|
|
422
|
+
export type OrchestrationType = (typeof OrchestrationType)[keyof typeof OrchestrationType];
|
|
447
423
|
export declare const MemoryType: {
|
|
448
424
|
readonly SESSION_SUMMARY: "SESSION_SUMMARY";
|
|
449
425
|
};
|
|
@@ -462,19 +438,16 @@ export declare const RerankDocumentType: {
|
|
|
462
438
|
readonly JSON: "JSON";
|
|
463
439
|
readonly TEXT: "TEXT";
|
|
464
440
|
};
|
|
465
|
-
export type RerankDocumentType =
|
|
466
|
-
(typeof RerankDocumentType)[keyof typeof RerankDocumentType];
|
|
441
|
+
export type RerankDocumentType = (typeof RerankDocumentType)[keyof typeof RerankDocumentType];
|
|
467
442
|
export declare const RerankSourceType: {
|
|
468
443
|
readonly INLINE: "INLINE";
|
|
469
444
|
};
|
|
470
|
-
export type RerankSourceType =
|
|
471
|
-
(typeof RerankSourceType)[keyof typeof RerankSourceType];
|
|
445
|
+
export type RerankSourceType = (typeof RerankSourceType)[keyof typeof RerankSourceType];
|
|
472
446
|
export declare const ExternalSourceType: {
|
|
473
447
|
readonly BYTE_CONTENT: "BYTE_CONTENT";
|
|
474
448
|
readonly S3: "S3";
|
|
475
449
|
};
|
|
476
|
-
export type ExternalSourceType =
|
|
477
|
-
(typeof ExternalSourceType)[keyof typeof ExternalSourceType];
|
|
450
|
+
export type ExternalSourceType = (typeof ExternalSourceType)[keyof typeof ExternalSourceType];
|
|
478
451
|
export declare const QueryTransformationType: {
|
|
479
452
|
readonly QUERY_DECOMPOSITION: "QUERY_DECOMPOSITION";
|
|
480
453
|
};
|
|
@@ -490,16 +463,14 @@ export declare const GuadrailAction: {
|
|
|
490
463
|
readonly INTERVENED: "INTERVENED";
|
|
491
464
|
readonly NONE: "NONE";
|
|
492
465
|
};
|
|
493
|
-
export type GuadrailAction =
|
|
494
|
-
(typeof GuadrailAction)[keyof typeof GuadrailAction];
|
|
466
|
+
export type GuadrailAction = (typeof GuadrailAction)[keyof typeof GuadrailAction];
|
|
495
467
|
export declare const InputImageFormat: {
|
|
496
468
|
readonly gif: "gif";
|
|
497
469
|
readonly jpeg: "jpeg";
|
|
498
470
|
readonly png: "png";
|
|
499
471
|
readonly webp: "webp";
|
|
500
472
|
};
|
|
501
|
-
export type InputImageFormat =
|
|
502
|
-
(typeof InputImageFormat)[keyof typeof InputImageFormat];
|
|
473
|
+
export type InputImageFormat = (typeof InputImageFormat)[keyof typeof InputImageFormat];
|
|
503
474
|
export declare const KnowledgeBaseQueryType: {
|
|
504
475
|
readonly IMAGE: "IMAGE";
|
|
505
476
|
readonly TEXT: "TEXT";
|
|
@@ -3,17 +3,13 @@ import { BedrockAgentRuntimeServiceException as __BaseException } from "./Bedroc
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
6
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
7
|
}
|
|
10
8
|
export declare class BadGatewayException extends __BaseException {
|
|
11
9
|
readonly name: "BadGatewayException";
|
|
12
10
|
readonly $fault: "server";
|
|
13
11
|
resourceName?: string | undefined;
|
|
14
|
-
constructor(
|
|
15
|
-
opts: __ExceptionOptionType<BadGatewayException, __BaseException>
|
|
16
|
-
);
|
|
12
|
+
constructor(opts: __ExceptionOptionType<BadGatewayException, __BaseException>);
|
|
17
13
|
}
|
|
18
14
|
export declare class ConflictException extends __BaseException {
|
|
19
15
|
readonly name: "ConflictException";
|
|
@@ -24,50 +20,36 @@ export declare class DependencyFailedException extends __BaseException {
|
|
|
24
20
|
readonly name: "DependencyFailedException";
|
|
25
21
|
readonly $fault: "client";
|
|
26
22
|
resourceName?: string | undefined;
|
|
27
|
-
constructor(
|
|
28
|
-
opts: __ExceptionOptionType<DependencyFailedException, __BaseException>
|
|
29
|
-
);
|
|
23
|
+
constructor(opts: __ExceptionOptionType<DependencyFailedException, __BaseException>);
|
|
30
24
|
}
|
|
31
25
|
export declare class InternalServerException extends __BaseException {
|
|
32
26
|
readonly name: "InternalServerException";
|
|
33
27
|
readonly $fault: "server";
|
|
34
28
|
reason?: string | undefined;
|
|
35
|
-
constructor(
|
|
36
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
37
|
-
);
|
|
29
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
38
30
|
}
|
|
39
31
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
40
32
|
readonly name: "ResourceNotFoundException";
|
|
41
33
|
readonly $fault: "client";
|
|
42
|
-
constructor(
|
|
43
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
44
|
-
);
|
|
34
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
45
35
|
}
|
|
46
36
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
47
37
|
readonly name: "ServiceQuotaExceededException";
|
|
48
38
|
readonly $fault: "client";
|
|
49
|
-
constructor(
|
|
50
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
51
|
-
);
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
52
40
|
}
|
|
53
41
|
export declare class ThrottlingException extends __BaseException {
|
|
54
42
|
readonly name: "ThrottlingException";
|
|
55
43
|
readonly $fault: "client";
|
|
56
|
-
constructor(
|
|
57
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
58
|
-
);
|
|
44
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
59
45
|
}
|
|
60
46
|
export declare class ValidationException extends __BaseException {
|
|
61
47
|
readonly name: "ValidationException";
|
|
62
48
|
readonly $fault: "client";
|
|
63
|
-
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
65
|
-
);
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
66
50
|
}
|
|
67
51
|
export declare class ModelNotReadyException extends __BaseException {
|
|
68
52
|
readonly name: "ModelNotReadyException";
|
|
69
53
|
readonly $fault: "client";
|
|
70
|
-
constructor(
|
|
71
|
-
opts: __ExceptionOptionType<ModelNotReadyException, __BaseException>
|
|
72
|
-
);
|
|
54
|
+
constructor(opts: __ExceptionOptionType<ModelNotReadyException, __BaseException>);
|
|
73
55
|
}
|
|
@@ -148,10 +148,7 @@ export interface S3Identifier {
|
|
|
148
148
|
s3BucketName?: string | undefined;
|
|
149
149
|
s3ObjectKey?: string | undefined;
|
|
150
150
|
}
|
|
151
|
-
export type APISchema =
|
|
152
|
-
| APISchema.PayloadMember
|
|
153
|
-
| APISchema.S3Member
|
|
154
|
-
| APISchema.$UnknownMember;
|
|
151
|
+
export type APISchema = APISchema.PayloadMember | APISchema.S3Member | APISchema.$UnknownMember;
|
|
155
152
|
export declare namespace APISchema {
|
|
156
153
|
interface S3Member {
|
|
157
154
|
s3: S3Identifier;
|
|
@@ -185,9 +182,7 @@ export interface FunctionDefinition {
|
|
|
185
182
|
parameters?: Record<string, ParameterDetail> | undefined;
|
|
186
183
|
requireConfirmation?: RequireConfirmation | undefined;
|
|
187
184
|
}
|
|
188
|
-
export type FunctionSchema =
|
|
189
|
-
| FunctionSchema.FunctionsMember
|
|
190
|
-
| FunctionSchema.$UnknownMember;
|
|
185
|
+
export type FunctionSchema = FunctionSchema.FunctionsMember | FunctionSchema.$UnknownMember;
|
|
191
186
|
export declare namespace FunctionSchema {
|
|
192
187
|
interface FunctionsMember {
|
|
193
188
|
functions: FunctionDefinition[];
|
|
@@ -211,9 +206,7 @@ export interface AgentActionGroup {
|
|
|
211
206
|
functionSchema?: FunctionSchema | undefined;
|
|
212
207
|
parentActionGroupSignatureParams?: Record<string, string> | undefined;
|
|
213
208
|
}
|
|
214
|
-
export type ImageInputSource =
|
|
215
|
-
| ImageInputSource.BytesMember
|
|
216
|
-
| ImageInputSource.$UnknownMember;
|
|
209
|
+
export type ImageInputSource = ImageInputSource.BytesMember | ImageInputSource.$UnknownMember;
|
|
217
210
|
export declare namespace ImageInputSource {
|
|
218
211
|
interface BytesMember {
|
|
219
212
|
bytes: Uint8Array;
|
|
@@ -395,9 +388,7 @@ export interface AgenticRetrieveBedrockRerankingModelConfiguration {
|
|
|
395
388
|
modelArn: string | undefined;
|
|
396
389
|
}
|
|
397
390
|
export interface AgenticRetrieveBedrockRerankingConfiguration {
|
|
398
|
-
modelConfiguration:
|
|
399
|
-
| AgenticRetrieveBedrockRerankingModelConfiguration
|
|
400
|
-
| undefined;
|
|
391
|
+
modelConfiguration: AgenticRetrieveBedrockRerankingModelConfiguration | undefined;
|
|
401
392
|
}
|
|
402
393
|
export interface AgenticRetrieveCitationReference {
|
|
403
394
|
resultIndex: number | undefined;
|
|
@@ -415,15 +406,11 @@ export interface BedrockFoundationModelConfiguration {
|
|
|
415
406
|
}
|
|
416
407
|
export interface FoundationModelConfiguration {
|
|
417
408
|
type: FoundationModelConfigurationType | undefined;
|
|
418
|
-
bedrockFoundationModelConfiguration?:
|
|
419
|
-
| BedrockFoundationModelConfiguration
|
|
420
|
-
| undefined;
|
|
409
|
+
bedrockFoundationModelConfiguration?: BedrockFoundationModelConfiguration | undefined;
|
|
421
410
|
}
|
|
422
411
|
export interface AgenticRetrieveRerankingConfiguration {
|
|
423
412
|
type: AgenticRetrieveRerankingConfigurationType | undefined;
|
|
424
|
-
bedrockRerankingConfiguration?:
|
|
425
|
-
| AgenticRetrieveBedrockRerankingConfiguration
|
|
426
|
-
| undefined;
|
|
413
|
+
bedrockRerankingConfiguration?: AgenticRetrieveBedrockRerankingConfiguration | undefined;
|
|
427
414
|
}
|
|
428
415
|
export interface AgenticRetrieveConfiguration {
|
|
429
416
|
foundationModelType?: FoundationModelType | undefined;
|
|
@@ -450,9 +437,7 @@ export interface AgenticRetrieveMessage {
|
|
|
450
437
|
role: ConversationRole | undefined;
|
|
451
438
|
}
|
|
452
439
|
export interface AgenticRetrievePolicyConfiguration {
|
|
453
|
-
bedrockGuardrailConfiguration?:
|
|
454
|
-
| AgenticRetrieveBedrockGuardrailConfiguration
|
|
455
|
-
| undefined;
|
|
440
|
+
bedrockGuardrailConfiguration?: AgenticRetrieveBedrockGuardrailConfiguration | undefined;
|
|
456
441
|
}
|
|
457
442
|
export interface FilterAttribute {
|
|
458
443
|
key: string | undefined;
|
|
@@ -837,9 +822,7 @@ export interface GuardrailAssessment {
|
|
|
837
822
|
topicPolicy?: GuardrailTopicPolicyAssessment | undefined;
|
|
838
823
|
contentPolicy?: GuardrailContentPolicyAssessment | undefined;
|
|
839
824
|
wordPolicy?: GuardrailWordPolicyAssessment | undefined;
|
|
840
|
-
sensitiveInformationPolicy?:
|
|
841
|
-
| GuardrailSensitiveInformationPolicyAssessment
|
|
842
|
-
| undefined;
|
|
825
|
+
sensitiveInformationPolicy?: GuardrailSensitiveInformationPolicyAssessment | undefined;
|
|
843
826
|
}
|
|
844
827
|
export interface GuardrailTrace {
|
|
845
828
|
action?: GuardrailAction | undefined;
|
|
@@ -862,9 +845,7 @@ export interface InvocationInput {
|
|
|
862
845
|
actionGroupInvocationInput?: ActionGroupInvocationInput | undefined;
|
|
863
846
|
knowledgeBaseLookupInput?: KnowledgeBaseLookupInput | undefined;
|
|
864
847
|
codeInterpreterInvocationInput?: CodeInterpreterInvocationInput | undefined;
|
|
865
|
-
agentCollaboratorInvocationInput?:
|
|
866
|
-
| AgentCollaboratorInvocationInput
|
|
867
|
-
| undefined;
|
|
848
|
+
agentCollaboratorInvocationInput?: AgentCollaboratorInvocationInput | undefined;
|
|
868
849
|
}
|
|
869
850
|
export interface InferenceConfiguration {
|
|
870
851
|
temperature?: number | undefined;
|
|
@@ -1014,9 +995,7 @@ export interface Observation {
|
|
|
1014
995
|
traceId?: string | undefined;
|
|
1015
996
|
type?: Type | undefined;
|
|
1016
997
|
actionGroupInvocationOutput?: ActionGroupInvocationOutput | undefined;
|
|
1017
|
-
agentCollaboratorInvocationOutput?:
|
|
1018
|
-
| AgentCollaboratorInvocationOutput
|
|
1019
|
-
| undefined;
|
|
998
|
+
agentCollaboratorInvocationOutput?: AgentCollaboratorInvocationOutput | undefined;
|
|
1020
999
|
knowledgeBaseLookupOutput?: KnowledgeBaseLookupOutput | undefined;
|
|
1021
1000
|
finalResponse?: FinalResponse | undefined;
|
|
1022
1001
|
repromptResponse?: RepromptResponse | undefined;
|
|
@@ -1679,9 +1658,7 @@ export interface ListFlowExecutionsResponse {
|
|
|
1679
1658
|
flowExecutionSummaries: FlowExecutionSummary[] | undefined;
|
|
1680
1659
|
nextToken?: string | undefined;
|
|
1681
1660
|
}
|
|
1682
|
-
export type FlowInputContent =
|
|
1683
|
-
| FlowInputContent.DocumentMember
|
|
1684
|
-
| FlowInputContent.$UnknownMember;
|
|
1661
|
+
export type FlowInputContent = FlowInputContent.DocumentMember | FlowInputContent.$UnknownMember;
|
|
1685
1662
|
export declare namespace FlowInputContent {
|
|
1686
1663
|
interface DocumentMember {
|
|
1687
1664
|
document: __DocumentType;
|
|
@@ -1760,9 +1737,7 @@ export interface FlowMultiTurnInputRequestEvent {
|
|
|
1760
1737
|
nodeType: NodeType | undefined;
|
|
1761
1738
|
content: FlowMultiTurnInputContent | undefined;
|
|
1762
1739
|
}
|
|
1763
|
-
export type FlowOutputContent =
|
|
1764
|
-
| FlowOutputContent.DocumentMember
|
|
1765
|
-
| FlowOutputContent.$UnknownMember;
|
|
1740
|
+
export type FlowOutputContent = FlowOutputContent.DocumentMember | FlowOutputContent.$UnknownMember;
|
|
1766
1741
|
export declare namespace FlowOutputContent {
|
|
1767
1742
|
interface DocumentMember {
|
|
1768
1743
|
document: __DocumentType;
|
|
@@ -1799,9 +1774,7 @@ export interface FlowTraceNodeActionEvent {
|
|
|
1799
1774
|
operationRequest?: __DocumentType | undefined;
|
|
1800
1775
|
operationResponse?: __DocumentType | undefined;
|
|
1801
1776
|
}
|
|
1802
|
-
export type TraceElements =
|
|
1803
|
-
| TraceElements.AgentTracesMember
|
|
1804
|
-
| TraceElements.$UnknownMember;
|
|
1777
|
+
export type TraceElements = TraceElements.AgentTracesMember | TraceElements.$UnknownMember;
|
|
1805
1778
|
export declare namespace TraceElements {
|
|
1806
1779
|
interface AgentTracesMember {
|
|
1807
1780
|
agentTraces: TracePart[];
|
|
@@ -2214,9 +2187,7 @@ export declare namespace FlowResponseStream {
|
|
|
2214
2187
|
conflictException: (value: ConflictException) => T;
|
|
2215
2188
|
dependencyFailedException: (value: DependencyFailedException) => T;
|
|
2216
2189
|
badGatewayException: (value: BadGatewayException) => T;
|
|
2217
|
-
flowMultiTurnInputRequestEvent: (
|
|
2218
|
-
value: FlowMultiTurnInputRequestEvent
|
|
2219
|
-
) => T;
|
|
2190
|
+
flowMultiTurnInputRequestEvent: (value: FlowMultiTurnInputRequestEvent) => T;
|
|
2220
2191
|
_: (name: string, value: any) => T;
|
|
2221
2192
|
}
|
|
2222
2193
|
}
|
|
@@ -2269,9 +2240,7 @@ export interface PromptCreationConfigurations {
|
|
|
2269
2240
|
previousConversationTurnsToInclude?: number | undefined;
|
|
2270
2241
|
excludePreviousThinkingSteps?: boolean | undefined;
|
|
2271
2242
|
}
|
|
2272
|
-
export type ContentBlock =
|
|
2273
|
-
| ContentBlock.TextMember
|
|
2274
|
-
| ContentBlock.$UnknownMember;
|
|
2243
|
+
export type ContentBlock = ContentBlock.TextMember | ContentBlock.$UnknownMember;
|
|
2275
2244
|
export declare namespace ContentBlock {
|
|
2276
2245
|
interface TextMember {
|
|
2277
2246
|
text: string;
|
|
@@ -2341,26 +2310,20 @@ export declare namespace RerankingMetadataSelectiveModeConfiguration {
|
|
|
2341
2310
|
}
|
|
2342
2311
|
export interface MetadataConfigurationForReranking {
|
|
2343
2312
|
selectionMode: RerankingMetadataSelectionMode | undefined;
|
|
2344
|
-
selectiveModeConfiguration?:
|
|
2345
|
-
| RerankingMetadataSelectiveModeConfiguration
|
|
2346
|
-
| undefined;
|
|
2313
|
+
selectiveModeConfiguration?: RerankingMetadataSelectiveModeConfiguration | undefined;
|
|
2347
2314
|
}
|
|
2348
2315
|
export interface ManagedSearchBedrockRerankingModelConfiguration {
|
|
2349
2316
|
modelArn: string | undefined;
|
|
2350
2317
|
additionalModelRequestFields?: Record<string, __DocumentType> | undefined;
|
|
2351
2318
|
}
|
|
2352
2319
|
export interface ManagedSearchBedrockRerankingConfiguration {
|
|
2353
|
-
modelConfiguration:
|
|
2354
|
-
| ManagedSearchBedrockRerankingModelConfiguration
|
|
2355
|
-
| undefined;
|
|
2320
|
+
modelConfiguration: ManagedSearchBedrockRerankingModelConfiguration | undefined;
|
|
2356
2321
|
numberOfRerankedResults?: number | undefined;
|
|
2357
2322
|
metadataConfiguration?: MetadataConfigurationForReranking | undefined;
|
|
2358
2323
|
}
|
|
2359
2324
|
export interface ManagedSearchRerankingConfiguration {
|
|
2360
2325
|
type: ManagedSearchRerankingConfigurationType | undefined;
|
|
2361
|
-
bedrockRerankingConfiguration?:
|
|
2362
|
-
| ManagedSearchBedrockRerankingConfiguration
|
|
2363
|
-
| undefined;
|
|
2326
|
+
bedrockRerankingConfiguration?: ManagedSearchBedrockRerankingConfiguration | undefined;
|
|
2364
2327
|
}
|
|
2365
2328
|
export interface MetadataAttributeSchema {
|
|
2366
2329
|
key: string | undefined;
|
|
@@ -2376,17 +2339,13 @@ export interface VectorSearchBedrockRerankingModelConfiguration {
|
|
|
2376
2339
|
additionalModelRequestFields?: Record<string, __DocumentType> | undefined;
|
|
2377
2340
|
}
|
|
2378
2341
|
export interface VectorSearchBedrockRerankingConfiguration {
|
|
2379
|
-
modelConfiguration:
|
|
2380
|
-
| VectorSearchBedrockRerankingModelConfiguration
|
|
2381
|
-
| undefined;
|
|
2342
|
+
modelConfiguration: VectorSearchBedrockRerankingModelConfiguration | undefined;
|
|
2382
2343
|
numberOfRerankedResults?: number | undefined;
|
|
2383
2344
|
metadataConfiguration?: MetadataConfigurationForReranking | undefined;
|
|
2384
2345
|
}
|
|
2385
2346
|
export interface VectorSearchRerankingConfiguration {
|
|
2386
2347
|
type: VectorSearchRerankingConfigurationType | undefined;
|
|
2387
|
-
bedrockRerankingConfiguration?:
|
|
2388
|
-
| VectorSearchBedrockRerankingConfiguration
|
|
2389
|
-
| undefined;
|
|
2348
|
+
bedrockRerankingConfiguration?: VectorSearchBedrockRerankingConfiguration | undefined;
|
|
2390
2349
|
}
|
|
2391
2350
|
export interface StreamingConfigurations {
|
|
2392
2351
|
streamFinalResponse?: boolean | undefined;
|
|
@@ -3097,9 +3056,7 @@ export interface GetAgentMemoryResponse {
|
|
|
3097
3056
|
export interface TextPrompt {
|
|
3098
3057
|
text: string | undefined;
|
|
3099
3058
|
}
|
|
3100
|
-
export type InputPrompt =
|
|
3101
|
-
| InputPrompt.TextPromptMember
|
|
3102
|
-
| InputPrompt.$UnknownMember;
|
|
3059
|
+
export type InputPrompt = InputPrompt.TextPromptMember | InputPrompt.$UnknownMember;
|
|
3103
3060
|
export declare namespace InputPrompt {
|
|
3104
3061
|
interface TextPromptMember {
|
|
3105
3062
|
textPrompt: TextPrompt;
|
|
@@ -3121,9 +3078,7 @@ export interface OptimizePromptRequest {
|
|
|
3121
3078
|
export interface AnalyzePromptEvent {
|
|
3122
3079
|
message?: string | undefined;
|
|
3123
3080
|
}
|
|
3124
|
-
export type OptimizedPrompt =
|
|
3125
|
-
| OptimizedPrompt.TextPromptMember
|
|
3126
|
-
| OptimizedPrompt.$UnknownMember;
|
|
3081
|
+
export type OptimizedPrompt = OptimizedPrompt.TextPromptMember | OptimizedPrompt.$UnknownMember;
|
|
3127
3082
|
export declare namespace OptimizedPrompt {
|
|
3128
3083
|
interface TextPromptMember {
|
|
3129
3084
|
textPrompt: TextPrompt;
|
|
@@ -3367,9 +3322,7 @@ export interface OrchestrationConfiguration {
|
|
|
3367
3322
|
promptTemplate?: PromptTemplate | undefined;
|
|
3368
3323
|
inferenceConfig?: InferenceConfig | undefined;
|
|
3369
3324
|
additionalModelRequestFields?: Record<string, __DocumentType> | undefined;
|
|
3370
|
-
queryTransformationConfiguration?:
|
|
3371
|
-
| QueryTransformationConfiguration
|
|
3372
|
-
| undefined;
|
|
3325
|
+
queryTransformationConfiguration?: QueryTransformationConfiguration | undefined;
|
|
3373
3326
|
performanceConfig?: PerformanceConfiguration | undefined;
|
|
3374
3327
|
}
|
|
3375
3328
|
export interface RetrieveAndGenerateSessionConfiguration {
|
|
@@ -519,9 +519,7 @@ export interface AgenticRetrieveStreamRequest {
|
|
|
519
519
|
generateResponse?: boolean | undefined;
|
|
520
520
|
}
|
|
521
521
|
export interface KnowledgeBaseRetrievalConfiguration {
|
|
522
|
-
vectorSearchConfiguration?:
|
|
523
|
-
| KnowledgeBaseVectorSearchConfiguration
|
|
524
|
-
| undefined;
|
|
522
|
+
vectorSearchConfiguration?: KnowledgeBaseVectorSearchConfiguration | undefined;
|
|
525
523
|
managedSearchConfiguration?: ManagedSearchConfiguration | undefined;
|
|
526
524
|
}
|
|
527
525
|
export interface KnowledgeBase {
|
|
@@ -550,12 +548,8 @@ export interface RetrieveRequest {
|
|
|
550
548
|
}
|
|
551
549
|
export interface RetrieveAndGenerateConfiguration {
|
|
552
550
|
type: RetrieveAndGenerateType | undefined;
|
|
553
|
-
knowledgeBaseConfiguration?:
|
|
554
|
-
|
|
555
|
-
| undefined;
|
|
556
|
-
externalSourcesConfiguration?:
|
|
557
|
-
| ExternalSourcesRetrieveAndGenerateConfiguration
|
|
558
|
-
| undefined;
|
|
551
|
+
knowledgeBaseConfiguration?: KnowledgeBaseRetrieveAndGenerateConfiguration | undefined;
|
|
552
|
+
externalSourcesConfiguration?: ExternalSourcesRetrieveAndGenerateConfiguration | undefined;
|
|
559
553
|
}
|
|
560
554
|
export interface Collaborator {
|
|
561
555
|
customerEncryptionKeyArn?: string | undefined;
|
|
@@ -573,18 +567,14 @@ export interface Collaborator {
|
|
|
573
567
|
export interface RetrieveAndGenerateRequest {
|
|
574
568
|
sessionId?: string | undefined;
|
|
575
569
|
input: RetrieveAndGenerateInput | undefined;
|
|
576
|
-
retrieveAndGenerateConfiguration?:
|
|
577
|
-
| RetrieveAndGenerateConfiguration
|
|
578
|
-
| undefined;
|
|
570
|
+
retrieveAndGenerateConfiguration?: RetrieveAndGenerateConfiguration | undefined;
|
|
579
571
|
sessionConfiguration?: RetrieveAndGenerateSessionConfiguration | undefined;
|
|
580
572
|
userContext?: UserContext | undefined;
|
|
581
573
|
}
|
|
582
574
|
export interface RetrieveAndGenerateStreamRequest {
|
|
583
575
|
sessionId?: string | undefined;
|
|
584
576
|
input: RetrieveAndGenerateInput | undefined;
|
|
585
|
-
retrieveAndGenerateConfiguration?:
|
|
586
|
-
| RetrieveAndGenerateConfiguration
|
|
587
|
-
| undefined;
|
|
577
|
+
retrieveAndGenerateConfiguration?: RetrieveAndGenerateConfiguration | undefined;
|
|
588
578
|
sessionConfiguration?: RetrieveAndGenerateSessionConfiguration | undefined;
|
|
589
579
|
userContext?: UserContext | undefined;
|
|
590
580
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient";
|
|
3
|
-
export interface BedrockAgentRuntimePaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface BedrockAgentRuntimePaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: BedrockAgentRuntimeClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RerankCommandInput,
|
|
4
|
-
RerankCommandOutput,
|
|
5
|
-
} from "../commands/RerankCommand";
|
|
2
|
+
import { RerankCommandInput, RerankCommandOutput } from "../commands/RerankCommand";
|
|
6
3
|
import { BedrockAgentRuntimePaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateRerank: (
|
|
8
5
|
config: BedrockAgentRuntimePaginationConfiguration,
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RetrieveCommandInput,
|
|
4
|
-
RetrieveCommandOutput,
|
|
5
|
-
} from "../commands/RetrieveCommand";
|
|
2
|
+
import { RetrieveCommandInput, RetrieveCommandOutput } from "../commands/RetrieveCommand";
|
|
6
3
|
import { BedrockAgentRuntimePaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateRetrieve: (
|
|
8
5
|
config: BedrockAgentRuntimePaginationConfiguration,
|