@aws-sdk/client-bedrock-agent-runtime 3.934.0 → 3.936.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 (59) hide show
  1. package/dist-cjs/index.js +345 -345
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +330 -0
  4. package/dist-es/models/errors.js +127 -0
  5. package/dist-es/models/models_0.js +1 -431
  6. package/dist-es/schemas/schemas_0.js +1 -1
  7. package/dist-types/commands/CreateInvocationCommand.d.ts +1 -1
  8. package/dist-types/commands/CreateSessionCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteSessionCommand.d.ts +1 -1
  10. package/dist-types/commands/EndSessionCommand.d.ts +1 -1
  11. package/dist-types/commands/GetInvocationStepCommand.d.ts +1 -1
  12. package/dist-types/commands/GetSessionCommand.d.ts +1 -1
  13. package/dist-types/commands/InvokeAgentCommand.d.ts +1 -2
  14. package/dist-types/commands/InvokeInlineAgentCommand.d.ts +1 -2
  15. package/dist-types/commands/ListInvocationStepsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListInvocationsCommand.d.ts +1 -1
  17. package/dist-types/commands/ListSessionsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  19. package/dist-types/commands/PutInvocationStepCommand.d.ts +1 -1
  20. package/dist-types/commands/RetrieveAndGenerateCommand.d.ts +1 -1
  21. package/dist-types/commands/RetrieveAndGenerateStreamCommand.d.ts +1 -1
  22. package/dist-types/commands/RetrieveCommand.d.ts +1 -1
  23. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  24. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  25. package/dist-types/commands/UpdateSessionCommand.d.ts +1 -1
  26. package/dist-types/index.d.ts +3 -1
  27. package/dist-types/models/enums.d.ts +850 -0
  28. package/dist-types/models/errors.d.ts +137 -0
  29. package/dist-types/models/models_0.d.ts +2078 -914
  30. package/dist-types/ts3.4/commands/CreateInvocationCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/EndSessionCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/GetInvocationStepCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/InvokeAgentCommand.d.ts +1 -2
  37. package/dist-types/ts3.4/commands/InvokeInlineAgentCommand.d.ts +4 -2
  38. package/dist-types/ts3.4/commands/ListInvocationStepsCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/ListInvocationsCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/PutInvocationStepCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/RetrieveAndGenerateCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/RetrieveAndGenerateStreamCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/RetrieveCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/UpdateSessionCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/index.d.ts +3 -1
  50. package/dist-types/ts3.4/models/enums.d.ts +442 -0
  51. package/dist-types/ts3.4/models/errors.d.ts +73 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +968 -479
  53. package/package.json +19 -19
  54. package/dist-es/models/index.js +0 -2
  55. package/dist-es/models/models_1.js +0 -26
  56. package/dist-types/models/index.d.ts +0 -2
  57. package/dist-types/models/models_1.d.ts +0 -2151
  58. package/dist-types/ts3.4/models/index.d.ts +0 -2
  59. package/dist-types/ts3.4/models/models_1.d.ts +0 -969
@@ -0,0 +1,850 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const CustomControlMethod: {
6
+ readonly RETURN_CONTROL: "RETURN_CONTROL";
7
+ };
8
+ /**
9
+ * @public
10
+ */
11
+ export type CustomControlMethod = (typeof CustomControlMethod)[keyof typeof CustomControlMethod];
12
+ /**
13
+ * @public
14
+ * @enum
15
+ */
16
+ export declare const ExecutionType: {
17
+ readonly LAMBDA: "LAMBDA";
18
+ readonly RETURN_CONTROL: "RETURN_CONTROL";
19
+ };
20
+ /**
21
+ * @public
22
+ */
23
+ export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
24
+ /**
25
+ * @public
26
+ * @enum
27
+ */
28
+ export declare const ActionGroupSignature: {
29
+ readonly AMAZON_CODEINTERPRETER: "AMAZON.CodeInterpreter";
30
+ readonly AMAZON_USERINPUT: "AMAZON.UserInput";
31
+ readonly ANTHROPIC_BASH: "ANTHROPIC.Bash";
32
+ readonly ANTHROPIC_COMPUTER: "ANTHROPIC.Computer";
33
+ readonly ANTHROPIC_TEXTEDITOR: "ANTHROPIC.TextEditor";
34
+ };
35
+ /**
36
+ * @public
37
+ */
38
+ export type ActionGroupSignature = (typeof ActionGroupSignature)[keyof typeof ActionGroupSignature];
39
+ /**
40
+ * @public
41
+ * @enum
42
+ */
43
+ export declare const ActionInvocationType: {
44
+ readonly RESULT: "RESULT";
45
+ readonly USER_CONFIRMATION: "USER_CONFIRMATION";
46
+ readonly USER_CONFIRMATION_AND_RESULT: "USER_CONFIRMATION_AND_RESULT";
47
+ };
48
+ /**
49
+ * @public
50
+ */
51
+ export type ActionInvocationType = (typeof ActionInvocationType)[keyof typeof ActionInvocationType];
52
+ /**
53
+ * @public
54
+ * @enum
55
+ */
56
+ export declare const ParameterType: {
57
+ readonly ARRAY: "array";
58
+ readonly BOOLEAN: "boolean";
59
+ readonly INTEGER: "integer";
60
+ readonly NUMBER: "number";
61
+ readonly STRING: "string";
62
+ };
63
+ /**
64
+ * @public
65
+ */
66
+ export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
67
+ /**
68
+ * @public
69
+ * @enum
70
+ */
71
+ export declare const RequireConfirmation: {
72
+ readonly DISABLED: "DISABLED";
73
+ readonly ENABLED: "ENABLED";
74
+ };
75
+ /**
76
+ * @public
77
+ */
78
+ export type RequireConfirmation = (typeof RequireConfirmation)[keyof typeof RequireConfirmation];
79
+ /**
80
+ * @public
81
+ * @enum
82
+ */
83
+ export declare const AgentCollaboration: {
84
+ readonly DISABLED: "DISABLED";
85
+ readonly SUPERVISOR: "SUPERVISOR";
86
+ readonly SUPERVISOR_ROUTER: "SUPERVISOR_ROUTER";
87
+ };
88
+ /**
89
+ * @public
90
+ */
91
+ export type AgentCollaboration = (typeof AgentCollaboration)[keyof typeof AgentCollaboration];
92
+ /**
93
+ * @public
94
+ * @enum
95
+ */
96
+ export declare const ConfirmationState: {
97
+ readonly CONFIRM: "CONFIRM";
98
+ readonly DENY: "DENY";
99
+ };
100
+ /**
101
+ * @public
102
+ */
103
+ export type ConfirmationState = (typeof ConfirmationState)[keyof typeof ConfirmationState];
104
+ /**
105
+ * @public
106
+ * @enum
107
+ */
108
+ export declare const ImageInputFormat: {
109
+ readonly GIF: "gif";
110
+ readonly JPEG: "jpeg";
111
+ readonly PNG: "png";
112
+ readonly WEBP: "webp";
113
+ };
114
+ /**
115
+ * @public
116
+ */
117
+ export type ImageInputFormat = (typeof ImageInputFormat)[keyof typeof ImageInputFormat];
118
+ /**
119
+ * @public
120
+ * @enum
121
+ */
122
+ export declare const ResponseState: {
123
+ readonly FAILURE: "FAILURE";
124
+ readonly REPROMPT: "REPROMPT";
125
+ };
126
+ /**
127
+ * @public
128
+ */
129
+ export type ResponseState = (typeof ResponseState)[keyof typeof ResponseState];
130
+ /**
131
+ * @public
132
+ * @enum
133
+ */
134
+ export declare const PayloadType: {
135
+ readonly RETURN_CONTROL: "RETURN_CONTROL";
136
+ readonly TEXT: "TEXT";
137
+ };
138
+ /**
139
+ * @public
140
+ */
141
+ export type PayloadType = (typeof PayloadType)[keyof typeof PayloadType];
142
+ /**
143
+ * @public
144
+ * @enum
145
+ */
146
+ export declare const GuardrailAction: {
147
+ readonly INTERVENED: "INTERVENED";
148
+ readonly NONE: "NONE";
149
+ };
150
+ /**
151
+ * @public
152
+ */
153
+ export type GuardrailAction = (typeof GuardrailAction)[keyof typeof GuardrailAction];
154
+ /**
155
+ * @public
156
+ * @enum
157
+ */
158
+ export declare const GuardrailContentPolicyAction: {
159
+ readonly BLOCKED: "BLOCKED";
160
+ };
161
+ /**
162
+ * @public
163
+ */
164
+ export type GuardrailContentPolicyAction = (typeof GuardrailContentPolicyAction)[keyof typeof GuardrailContentPolicyAction];
165
+ /**
166
+ * @public
167
+ * @enum
168
+ */
169
+ export declare const GuardrailContentFilterConfidence: {
170
+ readonly HIGH: "HIGH";
171
+ readonly LOW: "LOW";
172
+ readonly MEDIUM: "MEDIUM";
173
+ readonly NONE: "NONE";
174
+ };
175
+ /**
176
+ * @public
177
+ */
178
+ export type GuardrailContentFilterConfidence = (typeof GuardrailContentFilterConfidence)[keyof typeof GuardrailContentFilterConfidence];
179
+ /**
180
+ * @public
181
+ * @enum
182
+ */
183
+ export declare const GuardrailContentFilterType: {
184
+ readonly HATE: "HATE";
185
+ readonly INSULTS: "INSULTS";
186
+ readonly MISCONDUCT: "MISCONDUCT";
187
+ readonly PROMPT_ATTACK: "PROMPT_ATTACK";
188
+ readonly SEXUAL: "SEXUAL";
189
+ readonly VIOLENCE: "VIOLENCE";
190
+ };
191
+ /**
192
+ * @public
193
+ */
194
+ export type GuardrailContentFilterType = (typeof GuardrailContentFilterType)[keyof typeof GuardrailContentFilterType];
195
+ /**
196
+ * @public
197
+ * @enum
198
+ */
199
+ export declare const GuardrailSensitiveInformationPolicyAction: {
200
+ readonly ANONYMIZED: "ANONYMIZED";
201
+ readonly BLOCKED: "BLOCKED";
202
+ };
203
+ /**
204
+ * @public
205
+ */
206
+ export type GuardrailSensitiveInformationPolicyAction = (typeof GuardrailSensitiveInformationPolicyAction)[keyof typeof GuardrailSensitiveInformationPolicyAction];
207
+ /**
208
+ * @public
209
+ * @enum
210
+ */
211
+ export declare const GuardrailPiiEntityType: {
212
+ readonly ADDRESS: "ADDRESS";
213
+ readonly AGE: "AGE";
214
+ readonly AWS_ACCESS_KEY: "AWS_ACCESS_KEY";
215
+ readonly AWS_SECRET_KEY: "AWS_SECRET_KEY";
216
+ readonly CA_HEALTH_NUMBER: "CA_HEALTH_NUMBER";
217
+ readonly CA_SOCIAL_INSURANCE_NUMBER: "CA_SOCIAL_INSURANCE_NUMBER";
218
+ readonly CREDIT_DEBIT_CARD_CVV: "CREDIT_DEBIT_CARD_CVV";
219
+ readonly CREDIT_DEBIT_CARD_EXPIRY: "CREDIT_DEBIT_CARD_EXPIRY";
220
+ readonly CREDIT_DEBIT_CARD_NUMBER: "CREDIT_DEBIT_CARD_NUMBER";
221
+ readonly DRIVER_ID: "DRIVER_ID";
222
+ readonly EMAIL: "EMAIL";
223
+ readonly INTERNATIONAL_BANK_ACCOUNT_NUMBER: "INTERNATIONAL_BANK_ACCOUNT_NUMBER";
224
+ readonly IP_ADDRESS: "IP_ADDRESS";
225
+ readonly LICENSE_PLATE: "LICENSE_PLATE";
226
+ readonly MAC_ADDRESS: "MAC_ADDRESS";
227
+ readonly NAME: "NAME";
228
+ readonly PASSWORD: "PASSWORD";
229
+ readonly PHONE: "PHONE";
230
+ readonly PIN: "PIN";
231
+ readonly SWIFT_CODE: "SWIFT_CODE";
232
+ readonly UK_NATIONAL_HEALTH_SERVICE_NUMBER: "UK_NATIONAL_HEALTH_SERVICE_NUMBER";
233
+ readonly UK_NATIONAL_INSURANCE_NUMBER: "UK_NATIONAL_INSURANCE_NUMBER";
234
+ readonly UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER: "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER";
235
+ readonly URL: "URL";
236
+ readonly USERNAME: "USERNAME";
237
+ readonly US_BANK_ACCOUNT_NUMBER: "US_BANK_ACCOUNT_NUMBER";
238
+ readonly US_BANK_ROUTING_NUMBER: "US_BANK_ROUTING_NUMBER";
239
+ readonly US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER: "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER";
240
+ readonly US_PASSPORT_NUMBER: "US_PASSPORT_NUMBER";
241
+ readonly US_SOCIAL_SECURITY_NUMBER: "US_SOCIAL_SECURITY_NUMBER";
242
+ readonly VEHICLE_IDENTIFICATION_NUMBER: "VEHICLE_IDENTIFICATION_NUMBER";
243
+ };
244
+ /**
245
+ * @public
246
+ */
247
+ export type GuardrailPiiEntityType = (typeof GuardrailPiiEntityType)[keyof typeof GuardrailPiiEntityType];
248
+ /**
249
+ * @public
250
+ * @enum
251
+ */
252
+ export declare const GuardrailTopicPolicyAction: {
253
+ readonly BLOCKED: "BLOCKED";
254
+ };
255
+ /**
256
+ * @public
257
+ */
258
+ export type GuardrailTopicPolicyAction = (typeof GuardrailTopicPolicyAction)[keyof typeof GuardrailTopicPolicyAction];
259
+ /**
260
+ * @public
261
+ * @enum
262
+ */
263
+ export declare const GuardrailTopicType: {
264
+ readonly DENY: "DENY";
265
+ };
266
+ /**
267
+ * @public
268
+ */
269
+ export type GuardrailTopicType = (typeof GuardrailTopicType)[keyof typeof GuardrailTopicType];
270
+ /**
271
+ * @public
272
+ * @enum
273
+ */
274
+ export declare const GuardrailWordPolicyAction: {
275
+ readonly BLOCKED: "BLOCKED";
276
+ };
277
+ /**
278
+ * @public
279
+ */
280
+ export type GuardrailWordPolicyAction = (typeof GuardrailWordPolicyAction)[keyof typeof GuardrailWordPolicyAction];
281
+ /**
282
+ * @public
283
+ * @enum
284
+ */
285
+ export declare const GuardrailManagedWordType: {
286
+ readonly PROFANITY: "PROFANITY";
287
+ };
288
+ /**
289
+ * @public
290
+ */
291
+ export type GuardrailManagedWordType = (typeof GuardrailManagedWordType)[keyof typeof GuardrailManagedWordType];
292
+ /**
293
+ * @public
294
+ * @enum
295
+ */
296
+ export declare const InvocationType: {
297
+ readonly ACTION_GROUP: "ACTION_GROUP";
298
+ readonly ACTION_GROUP_CODE_INTERPRETER: "ACTION_GROUP_CODE_INTERPRETER";
299
+ readonly AGENT_COLLABORATOR: "AGENT_COLLABORATOR";
300
+ readonly FINISH: "FINISH";
301
+ readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
302
+ };
303
+ /**
304
+ * @public
305
+ */
306
+ export type InvocationType = (typeof InvocationType)[keyof typeof InvocationType];
307
+ /**
308
+ * @public
309
+ * @enum
310
+ */
311
+ export declare const CreationMode: {
312
+ readonly DEFAULT: "DEFAULT";
313
+ readonly OVERRIDDEN: "OVERRIDDEN";
314
+ };
315
+ /**
316
+ * @public
317
+ */
318
+ export type CreationMode = (typeof CreationMode)[keyof typeof CreationMode];
319
+ /**
320
+ * @public
321
+ * @enum
322
+ */
323
+ export declare const PromptType: {
324
+ readonly KNOWLEDGE_BASE_RESPONSE_GENERATION: "KNOWLEDGE_BASE_RESPONSE_GENERATION";
325
+ readonly ORCHESTRATION: "ORCHESTRATION";
326
+ readonly POST_PROCESSING: "POST_PROCESSING";
327
+ readonly PRE_PROCESSING: "PRE_PROCESSING";
328
+ readonly ROUTING_CLASSIFIER: "ROUTING_CLASSIFIER";
329
+ };
330
+ /**
331
+ * @public
332
+ */
333
+ export type PromptType = (typeof PromptType)[keyof typeof PromptType];
334
+ /**
335
+ * @public
336
+ * @enum
337
+ */
338
+ export declare const RetrievalResultContentColumnType: {
339
+ readonly BLOB: "BLOB";
340
+ readonly BOOLEAN: "BOOLEAN";
341
+ readonly DOUBLE: "DOUBLE";
342
+ readonly LONG: "LONG";
343
+ readonly NULL: "NULL";
344
+ readonly STRING: "STRING";
345
+ };
346
+ /**
347
+ * @public
348
+ */
349
+ export type RetrievalResultContentColumnType = (typeof RetrievalResultContentColumnType)[keyof typeof RetrievalResultContentColumnType];
350
+ /**
351
+ * @public
352
+ * @enum
353
+ */
354
+ export declare const RetrievalResultContentType: {
355
+ readonly IMAGE: "IMAGE";
356
+ readonly ROW: "ROW";
357
+ readonly TEXT: "TEXT";
358
+ };
359
+ /**
360
+ * @public
361
+ */
362
+ export type RetrievalResultContentType = (typeof RetrievalResultContentType)[keyof typeof RetrievalResultContentType];
363
+ /**
364
+ * @public
365
+ * @enum
366
+ */
367
+ export declare const RetrievalResultLocationType: {
368
+ readonly CONFLUENCE: "CONFLUENCE";
369
+ readonly CUSTOM: "CUSTOM";
370
+ readonly KENDRA: "KENDRA";
371
+ readonly S3: "S3";
372
+ readonly SALESFORCE: "SALESFORCE";
373
+ readonly SHAREPOINT: "SHAREPOINT";
374
+ readonly SQL: "SQL";
375
+ readonly WEB: "WEB";
376
+ };
377
+ /**
378
+ * @public
379
+ */
380
+ export type RetrievalResultLocationType = (typeof RetrievalResultLocationType)[keyof typeof RetrievalResultLocationType];
381
+ /**
382
+ * @public
383
+ * @enum
384
+ */
385
+ export declare const Source: {
386
+ readonly ACTION_GROUP: "ACTION_GROUP";
387
+ readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
388
+ readonly PARSER: "PARSER";
389
+ };
390
+ /**
391
+ * @public
392
+ */
393
+ export type Source = (typeof Source)[keyof typeof Source];
394
+ /**
395
+ * @public
396
+ * @enum
397
+ */
398
+ export declare const Type: {
399
+ readonly ACTION_GROUP: "ACTION_GROUP";
400
+ readonly AGENT_COLLABORATOR: "AGENT_COLLABORATOR";
401
+ readonly ASK_USER: "ASK_USER";
402
+ readonly FINISH: "FINISH";
403
+ readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
404
+ readonly REPROMPT: "REPROMPT";
405
+ };
406
+ /**
407
+ * @public
408
+ */
409
+ export type Type = (typeof Type)[keyof typeof Type];
410
+ /**
411
+ * @public
412
+ * @enum
413
+ */
414
+ export declare const FlowExecutionErrorType: {
415
+ readonly TIMED_OUT: "ExecutionTimedOut";
416
+ };
417
+ /**
418
+ * @public
419
+ */
420
+ export type FlowExecutionErrorType = (typeof FlowExecutionErrorType)[keyof typeof FlowExecutionErrorType];
421
+ /**
422
+ * @public
423
+ * @enum
424
+ */
425
+ export declare const FlowExecutionStatus: {
426
+ readonly ABORTED: "Aborted";
427
+ readonly FAILED: "Failed";
428
+ readonly RUNNING: "Running";
429
+ readonly SUCCEEDED: "Succeeded";
430
+ readonly TIMED_OUT: "TimedOut";
431
+ };
432
+ /**
433
+ * @public
434
+ */
435
+ export type FlowExecutionStatus = (typeof FlowExecutionStatus)[keyof typeof FlowExecutionStatus];
436
+ /**
437
+ * @public
438
+ * @enum
439
+ */
440
+ export declare const FlowExecutionEventType: {
441
+ readonly FLOW: "Flow";
442
+ readonly NODE: "Node";
443
+ };
444
+ /**
445
+ * @public
446
+ */
447
+ export type FlowExecutionEventType = (typeof FlowExecutionEventType)[keyof typeof FlowExecutionEventType];
448
+ /**
449
+ * @public
450
+ * @enum
451
+ */
452
+ export declare const FlowErrorCode: {
453
+ readonly INTERNAL_SERVER: "INTERNAL_SERVER";
454
+ readonly NODE_EXECUTION_FAILED: "NODE_EXECUTION_FAILED";
455
+ readonly VALIDATION: "VALIDATION";
456
+ };
457
+ /**
458
+ * @public
459
+ */
460
+ export type FlowErrorCode = (typeof FlowErrorCode)[keyof typeof FlowErrorCode];
461
+ /**
462
+ * @public
463
+ * @enum
464
+ */
465
+ export declare const NodeErrorCode: {
466
+ readonly BAD_GATEWAY: "BAD_GATEWAY";
467
+ readonly DEPENDENCY_FAILED: "DEPENDENCY_FAILED";
468
+ readonly INTERNAL_SERVER: "INTERNAL_SERVER";
469
+ readonly VALIDATION: "VALIDATION";
470
+ };
471
+ /**
472
+ * @public
473
+ */
474
+ export type NodeErrorCode = (typeof NodeErrorCode)[keyof typeof NodeErrorCode];
475
+ /**
476
+ * @public
477
+ * @enum
478
+ */
479
+ export declare const FlowNodeInputCategory: {
480
+ readonly EXIT_LOOP: "ExitLoop";
481
+ readonly LOOP_CONDITION: "LoopCondition";
482
+ readonly RETURN_VALUE_TO_LOOP_START: "ReturnValueToLoopStart";
483
+ };
484
+ /**
485
+ * @public
486
+ */
487
+ export type FlowNodeInputCategory = (typeof FlowNodeInputCategory)[keyof typeof FlowNodeInputCategory];
488
+ /**
489
+ * @public
490
+ * @enum
491
+ */
492
+ export declare const FlowControlNodeType: {
493
+ readonly ITERATOR: "Iterator";
494
+ readonly LOOP: "Loop";
495
+ };
496
+ /**
497
+ * @public
498
+ */
499
+ export type FlowControlNodeType = (typeof FlowControlNodeType)[keyof typeof FlowControlNodeType];
500
+ /**
501
+ * @public
502
+ * @enum
503
+ */
504
+ export declare const FlowNodeIODataType: {
505
+ readonly ARRAY: "Array";
506
+ readonly BOOLEAN: "Boolean";
507
+ readonly NUMBER: "Number";
508
+ readonly OBJECT: "Object";
509
+ readonly STRING: "String";
510
+ };
511
+ /**
512
+ * @public
513
+ */
514
+ export type FlowNodeIODataType = (typeof FlowNodeIODataType)[keyof typeof FlowNodeIODataType];
515
+ /**
516
+ * @public
517
+ * @enum
518
+ */
519
+ export declare const PerformanceConfigLatency: {
520
+ readonly OPTIMIZED: "optimized";
521
+ readonly STANDARD: "standard";
522
+ };
523
+ /**
524
+ * @public
525
+ */
526
+ export type PerformanceConfigLatency = (typeof PerformanceConfigLatency)[keyof typeof PerformanceConfigLatency];
527
+ /**
528
+ * @public
529
+ * @enum
530
+ */
531
+ export declare const FlowCompletionReason: {
532
+ readonly INPUT_REQUIRED: "INPUT_REQUIRED";
533
+ readonly SUCCESS: "SUCCESS";
534
+ };
535
+ /**
536
+ * @public
537
+ */
538
+ export type FlowCompletionReason = (typeof FlowCompletionReason)[keyof typeof FlowCompletionReason];
539
+ /**
540
+ * @public
541
+ * @enum
542
+ */
543
+ export declare const NodeType: {
544
+ readonly CONDITION_NODE: "ConditionNode";
545
+ readonly FLOW_INPUT_NODE: "FlowInputNode";
546
+ readonly FLOW_OUTPUT_NODE: "FlowOutputNode";
547
+ readonly KNOWLEDGE_BASE_NODE: "KnowledgeBaseNode";
548
+ readonly LAMBDA_FUNCTION_NODE: "LambdaFunctionNode";
549
+ readonly LEX_NODE: "LexNode";
550
+ readonly PROMPT_NODE: "PromptNode";
551
+ };
552
+ /**
553
+ * @public
554
+ */
555
+ export type NodeType = (typeof NodeType)[keyof typeof NodeType];
556
+ /**
557
+ * @public
558
+ * @enum
559
+ */
560
+ export declare const InputQueryType: {
561
+ readonly TEXT: "TEXT";
562
+ };
563
+ /**
564
+ * @public
565
+ */
566
+ export type InputQueryType = (typeof InputQueryType)[keyof typeof InputQueryType];
567
+ /**
568
+ * @public
569
+ * @enum
570
+ */
571
+ export declare const QueryTransformationMode: {
572
+ readonly TEXT_TO_SQL: "TEXT_TO_SQL";
573
+ };
574
+ /**
575
+ * @public
576
+ */
577
+ export type QueryTransformationMode = (typeof QueryTransformationMode)[keyof typeof QueryTransformationMode];
578
+ /**
579
+ * @public
580
+ * @enum
581
+ */
582
+ export declare const TextToSqlConfigurationType: {
583
+ readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
584
+ };
585
+ /**
586
+ * @public
587
+ */
588
+ export type TextToSqlConfigurationType = (typeof TextToSqlConfigurationType)[keyof typeof TextToSqlConfigurationType];
589
+ /**
590
+ * @public
591
+ * @enum
592
+ */
593
+ export declare const GeneratedQueryType: {
594
+ readonly REDSHIFT_SQL: "REDSHIFT_SQL";
595
+ };
596
+ /**
597
+ * @public
598
+ */
599
+ export type GeneratedQueryType = (typeof GeneratedQueryType)[keyof typeof GeneratedQueryType];
600
+ /**
601
+ * @public
602
+ * @enum
603
+ */
604
+ export declare const ConversationRole: {
605
+ readonly ASSISTANT: "assistant";
606
+ readonly USER: "user";
607
+ };
608
+ /**
609
+ * @public
610
+ */
611
+ export type ConversationRole = (typeof ConversationRole)[keyof typeof ConversationRole];
612
+ /**
613
+ * @public
614
+ * @enum
615
+ */
616
+ export declare const FileSourceType: {
617
+ readonly BYTE_CONTENT: "BYTE_CONTENT";
618
+ readonly S3: "S3";
619
+ };
620
+ /**
621
+ * @public
622
+ */
623
+ export type FileSourceType = (typeof FileSourceType)[keyof typeof FileSourceType];
624
+ /**
625
+ * @public
626
+ * @enum
627
+ */
628
+ export declare const FileUseCase: {
629
+ readonly CHAT: "CHAT";
630
+ readonly CODE_INTERPRETER: "CODE_INTERPRETER";
631
+ };
632
+ /**
633
+ * @public
634
+ */
635
+ export type FileUseCase = (typeof FileUseCase)[keyof typeof FileUseCase];
636
+ /**
637
+ * @public
638
+ * @enum
639
+ */
640
+ export declare const AttributeType: {
641
+ readonly BOOLEAN: "BOOLEAN";
642
+ readonly NUMBER: "NUMBER";
643
+ readonly STRING: "STRING";
644
+ readonly STRING_LIST: "STRING_LIST";
645
+ };
646
+ /**
647
+ * @public
648
+ */
649
+ export type AttributeType = (typeof AttributeType)[keyof typeof AttributeType];
650
+ /**
651
+ * @public
652
+ * @enum
653
+ */
654
+ export declare const SearchType: {
655
+ readonly HYBRID: "HYBRID";
656
+ readonly SEMANTIC: "SEMANTIC";
657
+ };
658
+ /**
659
+ * @public
660
+ */
661
+ export type SearchType = (typeof SearchType)[keyof typeof SearchType];
662
+ /**
663
+ * @public
664
+ * @enum
665
+ */
666
+ export declare const RerankingMetadataSelectionMode: {
667
+ readonly ALL: "ALL";
668
+ readonly SELECTIVE: "SELECTIVE";
669
+ };
670
+ /**
671
+ * @public
672
+ */
673
+ export type RerankingMetadataSelectionMode = (typeof RerankingMetadataSelectionMode)[keyof typeof RerankingMetadataSelectionMode];
674
+ /**
675
+ * @public
676
+ * @enum
677
+ */
678
+ export declare const VectorSearchRerankingConfigurationType: {
679
+ readonly BEDROCK_RERANKING_MODEL: "BEDROCK_RERANKING_MODEL";
680
+ };
681
+ /**
682
+ * @public
683
+ */
684
+ export type VectorSearchRerankingConfigurationType = (typeof VectorSearchRerankingConfigurationType)[keyof typeof VectorSearchRerankingConfigurationType];
685
+ /**
686
+ * @public
687
+ * @enum
688
+ */
689
+ export declare const RelayConversationHistory: {
690
+ readonly DISABLED: "DISABLED";
691
+ readonly TO_COLLABORATOR: "TO_COLLABORATOR";
692
+ };
693
+ /**
694
+ * @public
695
+ */
696
+ export type RelayConversationHistory = (typeof RelayConversationHistory)[keyof typeof RelayConversationHistory];
697
+ /**
698
+ * @public
699
+ * @enum
700
+ */
701
+ export declare const PromptState: {
702
+ readonly DISABLED: "DISABLED";
703
+ readonly ENABLED: "ENABLED";
704
+ };
705
+ /**
706
+ * @public
707
+ */
708
+ export type PromptState = (typeof PromptState)[keyof typeof PromptState];
709
+ /**
710
+ * @public
711
+ * @enum
712
+ */
713
+ export declare const OrchestrationType: {
714
+ readonly CUSTOM_ORCHESTRATION: "CUSTOM_ORCHESTRATION";
715
+ readonly DEFAULT: "DEFAULT";
716
+ };
717
+ /**
718
+ * @public
719
+ */
720
+ export type OrchestrationType = (typeof OrchestrationType)[keyof typeof OrchestrationType];
721
+ /**
722
+ * @public
723
+ * @enum
724
+ */
725
+ export declare const MemoryType: {
726
+ readonly SESSION_SUMMARY: "SESSION_SUMMARY";
727
+ };
728
+ /**
729
+ * @public
730
+ */
731
+ export type MemoryType = (typeof MemoryType)[keyof typeof MemoryType];
732
+ /**
733
+ * @public
734
+ * @enum
735
+ */
736
+ export declare const RerankQueryContentType: {
737
+ readonly TEXT: "TEXT";
738
+ };
739
+ /**
740
+ * @public
741
+ */
742
+ export type RerankQueryContentType = (typeof RerankQueryContentType)[keyof typeof RerankQueryContentType];
743
+ /**
744
+ * @public
745
+ * @enum
746
+ */
747
+ export declare const RerankingConfigurationType: {
748
+ readonly BEDROCK_RERANKING_MODEL: "BEDROCK_RERANKING_MODEL";
749
+ };
750
+ /**
751
+ * @public
752
+ */
753
+ export type RerankingConfigurationType = (typeof RerankingConfigurationType)[keyof typeof RerankingConfigurationType];
754
+ /**
755
+ * @public
756
+ * @enum
757
+ */
758
+ export declare const RerankDocumentType: {
759
+ readonly JSON: "JSON";
760
+ readonly TEXT: "TEXT";
761
+ };
762
+ /**
763
+ * @public
764
+ */
765
+ export type RerankDocumentType = (typeof RerankDocumentType)[keyof typeof RerankDocumentType];
766
+ /**
767
+ * @public
768
+ * @enum
769
+ */
770
+ export declare const RerankSourceType: {
771
+ readonly INLINE: "INLINE";
772
+ };
773
+ /**
774
+ * @public
775
+ */
776
+ export type RerankSourceType = (typeof RerankSourceType)[keyof typeof RerankSourceType];
777
+ /**
778
+ * @public
779
+ * @enum
780
+ */
781
+ export declare const ExternalSourceType: {
782
+ readonly BYTE_CONTENT: "BYTE_CONTENT";
783
+ readonly S3: "S3";
784
+ };
785
+ /**
786
+ * @public
787
+ */
788
+ export type ExternalSourceType = (typeof ExternalSourceType)[keyof typeof ExternalSourceType];
789
+ /**
790
+ * @public
791
+ * @enum
792
+ */
793
+ export declare const QueryTransformationType: {
794
+ readonly QUERY_DECOMPOSITION: "QUERY_DECOMPOSITION";
795
+ };
796
+ /**
797
+ * @public
798
+ */
799
+ export type QueryTransformationType = (typeof QueryTransformationType)[keyof typeof QueryTransformationType];
800
+ /**
801
+ * @public
802
+ * @enum
803
+ */
804
+ export declare const RetrieveAndGenerateType: {
805
+ readonly EXTERNAL_SOURCES: "EXTERNAL_SOURCES";
806
+ readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
807
+ };
808
+ /**
809
+ * @public
810
+ */
811
+ export type RetrieveAndGenerateType = (typeof RetrieveAndGenerateType)[keyof typeof RetrieveAndGenerateType];
812
+ /**
813
+ * @public
814
+ * @enum
815
+ */
816
+ export declare const GuadrailAction: {
817
+ readonly INTERVENED: "INTERVENED";
818
+ readonly NONE: "NONE";
819
+ };
820
+ /**
821
+ * @public
822
+ */
823
+ export type GuadrailAction = (typeof GuadrailAction)[keyof typeof GuadrailAction];
824
+ /**
825
+ * @public
826
+ * @enum
827
+ */
828
+ export declare const SessionStatus: {
829
+ readonly ACTIVE: "ACTIVE";
830
+ readonly ENDED: "ENDED";
831
+ readonly EXPIRED: "EXPIRED";
832
+ };
833
+ /**
834
+ * @public
835
+ */
836
+ export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
837
+ /**
838
+ * @public
839
+ * @enum
840
+ */
841
+ export declare const ImageFormat: {
842
+ readonly GIF: "gif";
843
+ readonly JPEG: "jpeg";
844
+ readonly PNG: "png";
845
+ readonly WEBP: "webp";
846
+ };
847
+ /**
848
+ * @public
849
+ */
850
+ export type ImageFormat = (typeof ImageFormat)[keyof typeof ImageFormat];