@aws-sdk/client-bedrock 3.934.0 → 3.935.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 (47) hide show
  1. package/dist-cjs/index.js +389 -389
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +355 -0
  4. package/dist-es/models/errors.js +123 -0
  5. package/dist-es/models/models_0.js +1 -355
  6. package/dist-es/models/models_1.js +1 -123
  7. package/dist-es/schemas/schemas_0.js +1 -1
  8. package/dist-types/commands/CreateGuardrailCommand.d.ts +1 -1
  9. package/dist-types/commands/CreateGuardrailVersionCommand.d.ts +1 -1
  10. package/dist-types/commands/CreateInferenceProfileCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteGuardrailCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteInferenceProfileCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteModelInvocationLoggingConfigurationCommand.d.ts +1 -1
  14. package/dist-types/commands/GetGuardrailCommand.d.ts +1 -1
  15. package/dist-types/commands/GetInferenceProfileCommand.d.ts +1 -1
  16. package/dist-types/commands/GetModelInvocationLoggingConfigurationCommand.d.ts +1 -1
  17. package/dist-types/commands/ListGuardrailsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListInferenceProfilesCommand.d.ts +1 -1
  19. package/dist-types/commands/PutModelInvocationLoggingConfigurationCommand.d.ts +2 -1
  20. package/dist-types/commands/UpdateGuardrailCommand.d.ts +1 -1
  21. package/dist-types/index.d.ts +4 -1
  22. package/dist-types/models/enums.d.ts +891 -0
  23. package/dist-types/models/errors.d.ts +127 -0
  24. package/dist-types/models/models_0.d.ts +1306 -696
  25. package/dist-types/models/models_1.d.ts +2 -1628
  26. package/dist-types/ts3.4/commands/CreateGuardrailCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/CreateGuardrailVersionCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/CreateInferenceProfileCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/DeleteGuardrailCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/DeleteInferenceProfileCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/DeleteModelInvocationLoggingConfigurationCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/GetGuardrailCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/GetInferenceProfileCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/GetModelInvocationLoggingConfigurationCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/ListGuardrailsCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/ListInferenceProfilesCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/PutModelInvocationLoggingConfigurationCommand.d.ts +2 -4
  38. package/dist-types/ts3.4/commands/UpdateGuardrailCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/index.d.ts +4 -1
  40. package/dist-types/ts3.4/models/enums.d.ts +478 -0
  41. package/dist-types/ts3.4/models/errors.d.ts +71 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +371 -380
  43. package/dist-types/ts3.4/models/models_1.d.ts +30 -520
  44. package/package.json +13 -13
  45. package/dist-es/models/index.js +0 -2
  46. package/dist-types/models/index.d.ts +0 -2
  47. package/dist-types/ts3.4/models/index.d.ts +0 -2
@@ -0,0 +1,891 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AgreementStatus: {
6
+ readonly AVAILABLE: "AVAILABLE";
7
+ readonly ERROR: "ERROR";
8
+ readonly NOT_AVAILABLE: "NOT_AVAILABLE";
9
+ readonly PENDING: "PENDING";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type AgreementStatus = (typeof AgreementStatus)[keyof typeof AgreementStatus];
15
+ /**
16
+ * @public
17
+ * @enum
18
+ */
19
+ export declare const AutomatedReasoningCheckResult: {
20
+ readonly IMPOSSIBLE: "IMPOSSIBLE";
21
+ readonly INVALID: "INVALID";
22
+ readonly NO_TRANSLATION: "NO_TRANSLATION";
23
+ readonly SATISFIABLE: "SATISFIABLE";
24
+ readonly TOO_COMPLEX: "TOO_COMPLEX";
25
+ readonly TRANSLATION_AMBIGUOUS: "TRANSLATION_AMBIGUOUS";
26
+ readonly VALID: "VALID";
27
+ };
28
+ /**
29
+ * @public
30
+ */
31
+ export type AutomatedReasoningCheckResult = (typeof AutomatedReasoningCheckResult)[keyof typeof AutomatedReasoningCheckResult];
32
+ /**
33
+ * @public
34
+ * @enum
35
+ */
36
+ export declare const AutomatedReasoningPolicyBuildWorkflowType: {
37
+ readonly IMPORT_POLICY: "IMPORT_POLICY";
38
+ readonly INGEST_CONTENT: "INGEST_CONTENT";
39
+ readonly REFINE_POLICY: "REFINE_POLICY";
40
+ };
41
+ /**
42
+ * @public
43
+ */
44
+ export type AutomatedReasoningPolicyBuildWorkflowType = (typeof AutomatedReasoningPolicyBuildWorkflowType)[keyof typeof AutomatedReasoningPolicyBuildWorkflowType];
45
+ /**
46
+ * @public
47
+ * @enum
48
+ */
49
+ export declare const AutomatedReasoningPolicyBuildDocumentContentType: {
50
+ readonly PDF: "pdf";
51
+ readonly TEXT: "txt";
52
+ };
53
+ /**
54
+ * @public
55
+ */
56
+ export type AutomatedReasoningPolicyBuildDocumentContentType = (typeof AutomatedReasoningPolicyBuildDocumentContentType)[keyof typeof AutomatedReasoningPolicyBuildDocumentContentType];
57
+ /**
58
+ * @public
59
+ * @enum
60
+ */
61
+ export declare const AutomatedReasoningPolicyBuildWorkflowStatus: {
62
+ readonly BUILDING: "BUILDING";
63
+ readonly CANCELLED: "CANCELLED";
64
+ readonly CANCEL_REQUESTED: "CANCEL_REQUESTED";
65
+ readonly COMPLETED: "COMPLETED";
66
+ readonly FAILED: "FAILED";
67
+ readonly PREPROCESSING: "PREPROCESSING";
68
+ readonly SCHEDULED: "SCHEDULED";
69
+ readonly TESTING: "TESTING";
70
+ };
71
+ /**
72
+ * @public
73
+ */
74
+ export type AutomatedReasoningPolicyBuildWorkflowStatus = (typeof AutomatedReasoningPolicyBuildWorkflowStatus)[keyof typeof AutomatedReasoningPolicyBuildWorkflowStatus];
75
+ /**
76
+ * @public
77
+ * @enum
78
+ */
79
+ export declare const AutomatedReasoningPolicyBuildResultAssetType: {
80
+ readonly BUILD_LOG: "BUILD_LOG";
81
+ readonly GENERATED_TEST_CASES: "GENERATED_TEST_CASES";
82
+ readonly POLICY_DEFINITION: "POLICY_DEFINITION";
83
+ readonly QUALITY_REPORT: "QUALITY_REPORT";
84
+ };
85
+ /**
86
+ * @public
87
+ */
88
+ export type AutomatedReasoningPolicyBuildResultAssetType = (typeof AutomatedReasoningPolicyBuildResultAssetType)[keyof typeof AutomatedReasoningPolicyBuildResultAssetType];
89
+ /**
90
+ * @public
91
+ * @enum
92
+ */
93
+ export declare const AutomatedReasoningPolicyBuildMessageType: {
94
+ readonly ERROR: "ERROR";
95
+ readonly INFO: "INFO";
96
+ readonly WARNING: "WARNING";
97
+ };
98
+ /**
99
+ * @public
100
+ */
101
+ export type AutomatedReasoningPolicyBuildMessageType = (typeof AutomatedReasoningPolicyBuildMessageType)[keyof typeof AutomatedReasoningPolicyBuildMessageType];
102
+ /**
103
+ * @public
104
+ * @enum
105
+ */
106
+ export declare const AutomatedReasoningPolicyAnnotationStatus: {
107
+ readonly APPLIED: "APPLIED";
108
+ readonly FAILED: "FAILED";
109
+ };
110
+ /**
111
+ * @public
112
+ */
113
+ export type AutomatedReasoningPolicyAnnotationStatus = (typeof AutomatedReasoningPolicyAnnotationStatus)[keyof typeof AutomatedReasoningPolicyAnnotationStatus];
114
+ /**
115
+ * @public
116
+ * @enum
117
+ */
118
+ export declare const AutomatedReasoningCheckLogicWarningType: {
119
+ readonly ALWAYS_FALSE: "ALWAYS_FALSE";
120
+ readonly ALWAYS_TRUE: "ALWAYS_TRUE";
121
+ };
122
+ /**
123
+ * @public
124
+ */
125
+ export type AutomatedReasoningCheckLogicWarningType = (typeof AutomatedReasoningCheckLogicWarningType)[keyof typeof AutomatedReasoningCheckLogicWarningType];
126
+ /**
127
+ * @public
128
+ * @enum
129
+ */
130
+ export declare const AutomatedReasoningPolicyTestRunResult: {
131
+ readonly FAILED: "FAILED";
132
+ readonly PASSED: "PASSED";
133
+ };
134
+ /**
135
+ * @public
136
+ */
137
+ export type AutomatedReasoningPolicyTestRunResult = (typeof AutomatedReasoningPolicyTestRunResult)[keyof typeof AutomatedReasoningPolicyTestRunResult];
138
+ /**
139
+ * @public
140
+ * @enum
141
+ */
142
+ export declare const AutomatedReasoningPolicyTestRunStatus: {
143
+ readonly COMPLETED: "COMPLETED";
144
+ readonly FAILED: "FAILED";
145
+ readonly IN_PROGRESS: "IN_PROGRESS";
146
+ readonly NOT_STARTED: "NOT_STARTED";
147
+ readonly SCHEDULED: "SCHEDULED";
148
+ };
149
+ /**
150
+ * @public
151
+ */
152
+ export type AutomatedReasoningPolicyTestRunStatus = (typeof AutomatedReasoningPolicyTestRunStatus)[keyof typeof AutomatedReasoningPolicyTestRunStatus];
153
+ /**
154
+ * @public
155
+ * @enum
156
+ */
157
+ export declare const Status: {
158
+ readonly INCOMPATIBLE_ENDPOINT: "INCOMPATIBLE_ENDPOINT";
159
+ readonly REGISTERED: "REGISTERED";
160
+ };
161
+ /**
162
+ * @public
163
+ */
164
+ export type Status = (typeof Status)[keyof typeof Status];
165
+ /**
166
+ * @public
167
+ * @enum
168
+ */
169
+ export declare const CustomModelDeploymentStatus: {
170
+ readonly ACTIVE: "Active";
171
+ readonly CREATING: "Creating";
172
+ readonly FAILED: "Failed";
173
+ };
174
+ /**
175
+ * @public
176
+ */
177
+ export type CustomModelDeploymentStatus = (typeof CustomModelDeploymentStatus)[keyof typeof CustomModelDeploymentStatus];
178
+ /**
179
+ * @public
180
+ * @enum
181
+ */
182
+ export declare const SortModelsBy: {
183
+ readonly CREATION_TIME: "CreationTime";
184
+ };
185
+ /**
186
+ * @public
187
+ */
188
+ export type SortModelsBy = (typeof SortModelsBy)[keyof typeof SortModelsBy];
189
+ /**
190
+ * @public
191
+ * @enum
192
+ */
193
+ export declare const SortOrder: {
194
+ readonly ASCENDING: "Ascending";
195
+ readonly DESCENDING: "Descending";
196
+ };
197
+ /**
198
+ * @public
199
+ */
200
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
201
+ /**
202
+ * @public
203
+ * @enum
204
+ */
205
+ export declare const CustomizationType: {
206
+ readonly CONTINUED_PRE_TRAINING: "CONTINUED_PRE_TRAINING";
207
+ readonly DISTILLATION: "DISTILLATION";
208
+ readonly FINE_TUNING: "FINE_TUNING";
209
+ readonly IMPORTED: "IMPORTED";
210
+ };
211
+ /**
212
+ * @public
213
+ */
214
+ export type CustomizationType = (typeof CustomizationType)[keyof typeof CustomizationType];
215
+ /**
216
+ * @public
217
+ * @enum
218
+ */
219
+ export declare const ModelStatus: {
220
+ readonly ACTIVE: "Active";
221
+ readonly CREATING: "Creating";
222
+ readonly FAILED: "Failed";
223
+ };
224
+ /**
225
+ * @public
226
+ */
227
+ export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
228
+ /**
229
+ * @public
230
+ * @enum
231
+ */
232
+ export declare const EvaluationJobStatus: {
233
+ readonly COMPLETED: "Completed";
234
+ readonly DELETING: "Deleting";
235
+ readonly FAILED: "Failed";
236
+ readonly IN_PROGRESS: "InProgress";
237
+ readonly STOPPED: "Stopped";
238
+ readonly STOPPING: "Stopping";
239
+ };
240
+ /**
241
+ * @public
242
+ */
243
+ export type EvaluationJobStatus = (typeof EvaluationJobStatus)[keyof typeof EvaluationJobStatus];
244
+ /**
245
+ * @public
246
+ * @enum
247
+ */
248
+ export declare const ApplicationType: {
249
+ readonly MODEL_EVALUATION: "ModelEvaluation";
250
+ readonly RAG_EVALUATION: "RagEvaluation";
251
+ };
252
+ /**
253
+ * @public
254
+ */
255
+ export type ApplicationType = (typeof ApplicationType)[keyof typeof ApplicationType];
256
+ /**
257
+ * @public
258
+ * @enum
259
+ */
260
+ export declare const EvaluationTaskType: {
261
+ readonly CLASSIFICATION: "Classification";
262
+ readonly CUSTOM: "Custom";
263
+ readonly GENERATION: "Generation";
264
+ readonly QUESTION_AND_ANSWER: "QuestionAndAnswer";
265
+ readonly SUMMARIZATION: "Summarization";
266
+ };
267
+ /**
268
+ * @public
269
+ */
270
+ export type EvaluationTaskType = (typeof EvaluationTaskType)[keyof typeof EvaluationTaskType];
271
+ /**
272
+ * @public
273
+ * @enum
274
+ */
275
+ export declare const PerformanceConfigLatency: {
276
+ readonly OPTIMIZED: "optimized";
277
+ readonly STANDARD: "standard";
278
+ };
279
+ /**
280
+ * @public
281
+ */
282
+ export type PerformanceConfigLatency = (typeof PerformanceConfigLatency)[keyof typeof PerformanceConfigLatency];
283
+ /**
284
+ * @public
285
+ * @enum
286
+ */
287
+ export declare const ExternalSourceType: {
288
+ readonly BYTE_CONTENT: "BYTE_CONTENT";
289
+ readonly S3: "S3";
290
+ };
291
+ /**
292
+ * @public
293
+ */
294
+ export type ExternalSourceType = (typeof ExternalSourceType)[keyof typeof ExternalSourceType];
295
+ /**
296
+ * @public
297
+ * @enum
298
+ */
299
+ export declare const QueryTransformationType: {
300
+ readonly QUERY_DECOMPOSITION: "QUERY_DECOMPOSITION";
301
+ };
302
+ /**
303
+ * @public
304
+ */
305
+ export type QueryTransformationType = (typeof QueryTransformationType)[keyof typeof QueryTransformationType];
306
+ /**
307
+ * @public
308
+ * @enum
309
+ */
310
+ export declare const AttributeType: {
311
+ readonly BOOLEAN: "BOOLEAN";
312
+ readonly NUMBER: "NUMBER";
313
+ readonly STRING: "STRING";
314
+ readonly STRING_LIST: "STRING_LIST";
315
+ };
316
+ /**
317
+ * @public
318
+ */
319
+ export type AttributeType = (typeof AttributeType)[keyof typeof AttributeType];
320
+ /**
321
+ * @public
322
+ * @enum
323
+ */
324
+ export declare const SearchType: {
325
+ readonly HYBRID: "HYBRID";
326
+ readonly SEMANTIC: "SEMANTIC";
327
+ };
328
+ /**
329
+ * @public
330
+ */
331
+ export type SearchType = (typeof SearchType)[keyof typeof SearchType];
332
+ /**
333
+ * @public
334
+ * @enum
335
+ */
336
+ export declare const RerankingMetadataSelectionMode: {
337
+ readonly ALL: "ALL";
338
+ readonly SELECTIVE: "SELECTIVE";
339
+ };
340
+ /**
341
+ * @public
342
+ */
343
+ export type RerankingMetadataSelectionMode = (typeof RerankingMetadataSelectionMode)[keyof typeof RerankingMetadataSelectionMode];
344
+ /**
345
+ * @public
346
+ * @enum
347
+ */
348
+ export declare const VectorSearchRerankingConfigurationType: {
349
+ readonly BEDROCK_RERANKING_MODEL: "BEDROCK_RERANKING_MODEL";
350
+ };
351
+ /**
352
+ * @public
353
+ */
354
+ export type VectorSearchRerankingConfigurationType = (typeof VectorSearchRerankingConfigurationType)[keyof typeof VectorSearchRerankingConfigurationType];
355
+ /**
356
+ * @public
357
+ * @enum
358
+ */
359
+ export declare const RetrieveAndGenerateType: {
360
+ readonly EXTERNAL_SOURCES: "EXTERNAL_SOURCES";
361
+ readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
362
+ };
363
+ /**
364
+ * @public
365
+ */
366
+ export type RetrieveAndGenerateType = (typeof RetrieveAndGenerateType)[keyof typeof RetrieveAndGenerateType];
367
+ /**
368
+ * @public
369
+ * @enum
370
+ */
371
+ export declare const EvaluationJobType: {
372
+ readonly AUTOMATED: "Automated";
373
+ readonly HUMAN: "Human";
374
+ };
375
+ /**
376
+ * @public
377
+ */
378
+ export type EvaluationJobType = (typeof EvaluationJobType)[keyof typeof EvaluationJobType];
379
+ /**
380
+ * @public
381
+ * @enum
382
+ */
383
+ export declare const SortJobsBy: {
384
+ readonly CREATION_TIME: "CreationTime";
385
+ };
386
+ /**
387
+ * @public
388
+ */
389
+ export type SortJobsBy = (typeof SortJobsBy)[keyof typeof SortJobsBy];
390
+ /**
391
+ * @public
392
+ * @enum
393
+ */
394
+ export declare const GuardrailContentFilterAction: {
395
+ readonly BLOCK: "BLOCK";
396
+ readonly NONE: "NONE";
397
+ };
398
+ /**
399
+ * @public
400
+ */
401
+ export type GuardrailContentFilterAction = (typeof GuardrailContentFilterAction)[keyof typeof GuardrailContentFilterAction];
402
+ /**
403
+ * @public
404
+ * @enum
405
+ */
406
+ export declare const GuardrailModality: {
407
+ readonly IMAGE: "IMAGE";
408
+ readonly TEXT: "TEXT";
409
+ };
410
+ /**
411
+ * @public
412
+ */
413
+ export type GuardrailModality = (typeof GuardrailModality)[keyof typeof GuardrailModality];
414
+ /**
415
+ * @public
416
+ * @enum
417
+ */
418
+ export declare const GuardrailFilterStrength: {
419
+ readonly HIGH: "HIGH";
420
+ readonly LOW: "LOW";
421
+ readonly MEDIUM: "MEDIUM";
422
+ readonly NONE: "NONE";
423
+ };
424
+ /**
425
+ * @public
426
+ */
427
+ export type GuardrailFilterStrength = (typeof GuardrailFilterStrength)[keyof typeof GuardrailFilterStrength];
428
+ /**
429
+ * @public
430
+ * @enum
431
+ */
432
+ export declare const GuardrailContentFilterType: {
433
+ readonly HATE: "HATE";
434
+ readonly INSULTS: "INSULTS";
435
+ readonly MISCONDUCT: "MISCONDUCT";
436
+ readonly PROMPT_ATTACK: "PROMPT_ATTACK";
437
+ readonly SEXUAL: "SEXUAL";
438
+ readonly VIOLENCE: "VIOLENCE";
439
+ };
440
+ /**
441
+ * @public
442
+ */
443
+ export type GuardrailContentFilterType = (typeof GuardrailContentFilterType)[keyof typeof GuardrailContentFilterType];
444
+ /**
445
+ * @public
446
+ * @enum
447
+ */
448
+ export declare const GuardrailContentFiltersTierName: {
449
+ readonly CLASSIC: "CLASSIC";
450
+ readonly STANDARD: "STANDARD";
451
+ };
452
+ /**
453
+ * @public
454
+ */
455
+ export type GuardrailContentFiltersTierName = (typeof GuardrailContentFiltersTierName)[keyof typeof GuardrailContentFiltersTierName];
456
+ /**
457
+ * @public
458
+ * @enum
459
+ */
460
+ export declare const GuardrailContextualGroundingAction: {
461
+ readonly BLOCK: "BLOCK";
462
+ readonly NONE: "NONE";
463
+ };
464
+ /**
465
+ * @public
466
+ */
467
+ export type GuardrailContextualGroundingAction = (typeof GuardrailContextualGroundingAction)[keyof typeof GuardrailContextualGroundingAction];
468
+ /**
469
+ * @public
470
+ * @enum
471
+ */
472
+ export declare const GuardrailContextualGroundingFilterType: {
473
+ readonly GROUNDING: "GROUNDING";
474
+ readonly RELEVANCE: "RELEVANCE";
475
+ };
476
+ /**
477
+ * @public
478
+ */
479
+ export type GuardrailContextualGroundingFilterType = (typeof GuardrailContextualGroundingFilterType)[keyof typeof GuardrailContextualGroundingFilterType];
480
+ /**
481
+ * @public
482
+ * @enum
483
+ */
484
+ export declare const GuardrailSensitiveInformationAction: {
485
+ readonly ANONYMIZE: "ANONYMIZE";
486
+ readonly BLOCK: "BLOCK";
487
+ readonly NONE: "NONE";
488
+ };
489
+ /**
490
+ * @public
491
+ */
492
+ export type GuardrailSensitiveInformationAction = (typeof GuardrailSensitiveInformationAction)[keyof typeof GuardrailSensitiveInformationAction];
493
+ /**
494
+ * @public
495
+ * @enum
496
+ */
497
+ export declare const GuardrailPiiEntityType: {
498
+ readonly ADDRESS: "ADDRESS";
499
+ readonly AGE: "AGE";
500
+ readonly AWS_ACCESS_KEY: "AWS_ACCESS_KEY";
501
+ readonly AWS_SECRET_KEY: "AWS_SECRET_KEY";
502
+ readonly CA_HEALTH_NUMBER: "CA_HEALTH_NUMBER";
503
+ readonly CA_SOCIAL_INSURANCE_NUMBER: "CA_SOCIAL_INSURANCE_NUMBER";
504
+ readonly CREDIT_DEBIT_CARD_CVV: "CREDIT_DEBIT_CARD_CVV";
505
+ readonly CREDIT_DEBIT_CARD_EXPIRY: "CREDIT_DEBIT_CARD_EXPIRY";
506
+ readonly CREDIT_DEBIT_CARD_NUMBER: "CREDIT_DEBIT_CARD_NUMBER";
507
+ readonly DRIVER_ID: "DRIVER_ID";
508
+ readonly EMAIL: "EMAIL";
509
+ readonly INTERNATIONAL_BANK_ACCOUNT_NUMBER: "INTERNATIONAL_BANK_ACCOUNT_NUMBER";
510
+ readonly IP_ADDRESS: "IP_ADDRESS";
511
+ readonly LICENSE_PLATE: "LICENSE_PLATE";
512
+ readonly MAC_ADDRESS: "MAC_ADDRESS";
513
+ readonly NAME: "NAME";
514
+ readonly PASSWORD: "PASSWORD";
515
+ readonly PHONE: "PHONE";
516
+ readonly PIN: "PIN";
517
+ readonly SWIFT_CODE: "SWIFT_CODE";
518
+ readonly UK_NATIONAL_HEALTH_SERVICE_NUMBER: "UK_NATIONAL_HEALTH_SERVICE_NUMBER";
519
+ readonly UK_NATIONAL_INSURANCE_NUMBER: "UK_NATIONAL_INSURANCE_NUMBER";
520
+ readonly UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER: "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER";
521
+ readonly URL: "URL";
522
+ readonly USERNAME: "USERNAME";
523
+ readonly US_BANK_ACCOUNT_NUMBER: "US_BANK_ACCOUNT_NUMBER";
524
+ readonly US_BANK_ROUTING_NUMBER: "US_BANK_ROUTING_NUMBER";
525
+ readonly US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER: "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER";
526
+ readonly US_PASSPORT_NUMBER: "US_PASSPORT_NUMBER";
527
+ readonly US_SOCIAL_SECURITY_NUMBER: "US_SOCIAL_SECURITY_NUMBER";
528
+ readonly VEHICLE_IDENTIFICATION_NUMBER: "VEHICLE_IDENTIFICATION_NUMBER";
529
+ };
530
+ /**
531
+ * @public
532
+ */
533
+ export type GuardrailPiiEntityType = (typeof GuardrailPiiEntityType)[keyof typeof GuardrailPiiEntityType];
534
+ /**
535
+ * @public
536
+ * @enum
537
+ */
538
+ export declare const GuardrailTopicsTierName: {
539
+ readonly CLASSIC: "CLASSIC";
540
+ readonly STANDARD: "STANDARD";
541
+ };
542
+ /**
543
+ * @public
544
+ */
545
+ export type GuardrailTopicsTierName = (typeof GuardrailTopicsTierName)[keyof typeof GuardrailTopicsTierName];
546
+ /**
547
+ * @public
548
+ * @enum
549
+ */
550
+ export declare const GuardrailTopicAction: {
551
+ readonly BLOCK: "BLOCK";
552
+ readonly NONE: "NONE";
553
+ };
554
+ /**
555
+ * @public
556
+ */
557
+ export type GuardrailTopicAction = (typeof GuardrailTopicAction)[keyof typeof GuardrailTopicAction];
558
+ /**
559
+ * @public
560
+ * @enum
561
+ */
562
+ export declare const GuardrailTopicType: {
563
+ readonly DENY: "DENY";
564
+ };
565
+ /**
566
+ * @public
567
+ */
568
+ export type GuardrailTopicType = (typeof GuardrailTopicType)[keyof typeof GuardrailTopicType];
569
+ /**
570
+ * @public
571
+ * @enum
572
+ */
573
+ export declare const GuardrailWordAction: {
574
+ readonly BLOCK: "BLOCK";
575
+ readonly NONE: "NONE";
576
+ };
577
+ /**
578
+ * @public
579
+ */
580
+ export type GuardrailWordAction = (typeof GuardrailWordAction)[keyof typeof GuardrailWordAction];
581
+ /**
582
+ * @public
583
+ * @enum
584
+ */
585
+ export declare const GuardrailManagedWordsType: {
586
+ readonly PROFANITY: "PROFANITY";
587
+ };
588
+ /**
589
+ * @public
590
+ */
591
+ export type GuardrailManagedWordsType = (typeof GuardrailManagedWordsType)[keyof typeof GuardrailManagedWordsType];
592
+ /**
593
+ * @public
594
+ * @enum
595
+ */
596
+ export declare const GuardrailStatus: {
597
+ readonly CREATING: "CREATING";
598
+ readonly DELETING: "DELETING";
599
+ readonly FAILED: "FAILED";
600
+ readonly READY: "READY";
601
+ readonly UPDATING: "UPDATING";
602
+ readonly VERSIONING: "VERSIONING";
603
+ };
604
+ /**
605
+ * @public
606
+ */
607
+ export type GuardrailStatus = (typeof GuardrailStatus)[keyof typeof GuardrailStatus];
608
+ /**
609
+ * @public
610
+ * @enum
611
+ */
612
+ export declare const InferenceProfileStatus: {
613
+ readonly ACTIVE: "ACTIVE";
614
+ };
615
+ /**
616
+ * @public
617
+ */
618
+ export type InferenceProfileStatus = (typeof InferenceProfileStatus)[keyof typeof InferenceProfileStatus];
619
+ /**
620
+ * @public
621
+ * @enum
622
+ */
623
+ export declare const InferenceProfileType: {
624
+ readonly APPLICATION: "APPLICATION";
625
+ readonly SYSTEM_DEFINED: "SYSTEM_DEFINED";
626
+ };
627
+ /**
628
+ * @public
629
+ */
630
+ export type InferenceProfileType = (typeof InferenceProfileType)[keyof typeof InferenceProfileType];
631
+ /**
632
+ * @public
633
+ * @enum
634
+ */
635
+ export declare const ModelCopyJobStatus: {
636
+ readonly COMPLETED: "Completed";
637
+ readonly FAILED: "Failed";
638
+ readonly IN_PROGRESS: "InProgress";
639
+ };
640
+ /**
641
+ * @public
642
+ */
643
+ export type ModelCopyJobStatus = (typeof ModelCopyJobStatus)[keyof typeof ModelCopyJobStatus];
644
+ /**
645
+ * @public
646
+ * @enum
647
+ */
648
+ export declare const ModelImportJobStatus: {
649
+ readonly COMPLETED: "Completed";
650
+ readonly FAILED: "Failed";
651
+ readonly IN_PROGRESS: "InProgress";
652
+ };
653
+ /**
654
+ * @public
655
+ */
656
+ export type ModelImportJobStatus = (typeof ModelImportJobStatus)[keyof typeof ModelImportJobStatus];
657
+ /**
658
+ * @public
659
+ * @enum
660
+ */
661
+ export declare const S3InputFormat: {
662
+ readonly JSONL: "JSONL";
663
+ };
664
+ /**
665
+ * @public
666
+ */
667
+ export type S3InputFormat = (typeof S3InputFormat)[keyof typeof S3InputFormat];
668
+ /**
669
+ * @public
670
+ * @enum
671
+ */
672
+ export declare const ModelInvocationJobStatus: {
673
+ readonly COMPLETED: "Completed";
674
+ readonly EXPIRED: "Expired";
675
+ readonly FAILED: "Failed";
676
+ readonly IN_PROGRESS: "InProgress";
677
+ readonly PARTIALLY_COMPLETED: "PartiallyCompleted";
678
+ readonly SCHEDULED: "Scheduled";
679
+ readonly STOPPED: "Stopped";
680
+ readonly STOPPING: "Stopping";
681
+ readonly SUBMITTED: "Submitted";
682
+ readonly VALIDATING: "Validating";
683
+ };
684
+ /**
685
+ * @public
686
+ */
687
+ export type ModelInvocationJobStatus = (typeof ModelInvocationJobStatus)[keyof typeof ModelInvocationJobStatus];
688
+ /**
689
+ * @public
690
+ * @enum
691
+ */
692
+ export declare const ModelCustomization: {
693
+ readonly CONTINUED_PRE_TRAINING: "CONTINUED_PRE_TRAINING";
694
+ readonly DISTILLATION: "DISTILLATION";
695
+ readonly FINE_TUNING: "FINE_TUNING";
696
+ };
697
+ /**
698
+ * @public
699
+ */
700
+ export type ModelCustomization = (typeof ModelCustomization)[keyof typeof ModelCustomization];
701
+ /**
702
+ * @public
703
+ * @enum
704
+ */
705
+ export declare const InferenceType: {
706
+ readonly ON_DEMAND: "ON_DEMAND";
707
+ readonly PROVISIONED: "PROVISIONED";
708
+ };
709
+ /**
710
+ * @public
711
+ */
712
+ export type InferenceType = (typeof InferenceType)[keyof typeof InferenceType];
713
+ /**
714
+ * @public
715
+ * @enum
716
+ */
717
+ export declare const ModelModality: {
718
+ readonly EMBEDDING: "EMBEDDING";
719
+ readonly IMAGE: "IMAGE";
720
+ readonly TEXT: "TEXT";
721
+ };
722
+ /**
723
+ * @public
724
+ */
725
+ export type ModelModality = (typeof ModelModality)[keyof typeof ModelModality];
726
+ /**
727
+ * @public
728
+ * @enum
729
+ */
730
+ export declare const FoundationModelLifecycleStatus: {
731
+ readonly ACTIVE: "ACTIVE";
732
+ readonly LEGACY: "LEGACY";
733
+ };
734
+ /**
735
+ * @public
736
+ */
737
+ export type FoundationModelLifecycleStatus = (typeof FoundationModelLifecycleStatus)[keyof typeof FoundationModelLifecycleStatus];
738
+ /**
739
+ * @public
740
+ * @enum
741
+ */
742
+ export declare const PromptRouterStatus: {
743
+ readonly AVAILABLE: "AVAILABLE";
744
+ };
745
+ /**
746
+ * @public
747
+ */
748
+ export type PromptRouterStatus = (typeof PromptRouterStatus)[keyof typeof PromptRouterStatus];
749
+ /**
750
+ * @public
751
+ * @enum
752
+ */
753
+ export declare const PromptRouterType: {
754
+ readonly CUSTOM: "custom";
755
+ readonly DEFAULT: "default";
756
+ };
757
+ /**
758
+ * @public
759
+ */
760
+ export type PromptRouterType = (typeof PromptRouterType)[keyof typeof PromptRouterType];
761
+ /**
762
+ * @public
763
+ * @enum
764
+ */
765
+ export declare const CommitmentDuration: {
766
+ readonly ONE_MONTH: "OneMonth";
767
+ readonly SIX_MONTHS: "SixMonths";
768
+ };
769
+ /**
770
+ * @public
771
+ */
772
+ export type CommitmentDuration = (typeof CommitmentDuration)[keyof typeof CommitmentDuration];
773
+ /**
774
+ * @public
775
+ * @enum
776
+ */
777
+ export declare const ProvisionedModelStatus: {
778
+ readonly CREATING: "Creating";
779
+ readonly FAILED: "Failed";
780
+ readonly IN_SERVICE: "InService";
781
+ readonly UPDATING: "Updating";
782
+ };
783
+ /**
784
+ * @public
785
+ */
786
+ export type ProvisionedModelStatus = (typeof ProvisionedModelStatus)[keyof typeof ProvisionedModelStatus];
787
+ /**
788
+ * @public
789
+ * @enum
790
+ */
791
+ export declare const SortByProvisionedModels: {
792
+ readonly CREATION_TIME: "CreationTime";
793
+ };
794
+ /**
795
+ * @public
796
+ */
797
+ export type SortByProvisionedModels = (typeof SortByProvisionedModels)[keyof typeof SortByProvisionedModels];
798
+ /**
799
+ * @public
800
+ * @enum
801
+ */
802
+ export declare const AuthorizationStatus: {
803
+ readonly AUTHORIZED: "AUTHORIZED";
804
+ readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
805
+ };
806
+ /**
807
+ * @public
808
+ */
809
+ export type AuthorizationStatus = (typeof AuthorizationStatus)[keyof typeof AuthorizationStatus];
810
+ /**
811
+ * @public
812
+ * @enum
813
+ */
814
+ export declare const EntitlementAvailability: {
815
+ readonly AVAILABLE: "AVAILABLE";
816
+ readonly NOT_AVAILABLE: "NOT_AVAILABLE";
817
+ };
818
+ /**
819
+ * @public
820
+ */
821
+ export type EntitlementAvailability = (typeof EntitlementAvailability)[keyof typeof EntitlementAvailability];
822
+ /**
823
+ * @public
824
+ * @enum
825
+ */
826
+ export declare const RegionAvailability: {
827
+ readonly AVAILABLE: "AVAILABLE";
828
+ readonly NOT_AVAILABLE: "NOT_AVAILABLE";
829
+ };
830
+ /**
831
+ * @public
832
+ */
833
+ export type RegionAvailability = (typeof RegionAvailability)[keyof typeof RegionAvailability];
834
+ /**
835
+ * @public
836
+ * @enum
837
+ */
838
+ export declare const OfferType: {
839
+ readonly ALL: "ALL";
840
+ readonly PUBLIC: "PUBLIC";
841
+ };
842
+ /**
843
+ * @public
844
+ */
845
+ export type OfferType = (typeof OfferType)[keyof typeof OfferType];
846
+ /**
847
+ * @public
848
+ * @enum
849
+ */
850
+ export declare const ModelCustomizationJobStatus: {
851
+ readonly COMPLETED: "Completed";
852
+ readonly FAILED: "Failed";
853
+ readonly IN_PROGRESS: "InProgress";
854
+ readonly STOPPED: "Stopped";
855
+ readonly STOPPING: "Stopping";
856
+ };
857
+ /**
858
+ * @public
859
+ */
860
+ export type ModelCustomizationJobStatus = (typeof ModelCustomizationJobStatus)[keyof typeof ModelCustomizationJobStatus];
861
+ /**
862
+ * @public
863
+ * @enum
864
+ */
865
+ export declare const JobStatusDetails: {
866
+ readonly COMPLETED: "Completed";
867
+ readonly FAILED: "Failed";
868
+ readonly IN_PROGRESS: "InProgress";
869
+ readonly NOT_STARTED: "NotStarted";
870
+ readonly STOPPED: "Stopped";
871
+ readonly STOPPING: "Stopping";
872
+ };
873
+ /**
874
+ * @public
875
+ */
876
+ export type JobStatusDetails = (typeof JobStatusDetails)[keyof typeof JobStatusDetails];
877
+ /**
878
+ * @public
879
+ * @enum
880
+ */
881
+ export declare const FineTuningJobStatus: {
882
+ readonly COMPLETED: "Completed";
883
+ readonly FAILED: "Failed";
884
+ readonly IN_PROGRESS: "InProgress";
885
+ readonly STOPPED: "Stopped";
886
+ readonly STOPPING: "Stopping";
887
+ };
888
+ /**
889
+ * @public
890
+ */
891
+ export type FineTuningJobStatus = (typeof FineTuningJobStatus)[keyof typeof FineTuningJobStatus];