@aws-sdk/client-bedrock-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.
@@ -0,0 +1,492 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AsyncInvokeStatus: {
6
+ readonly COMPLETED: "Completed";
7
+ readonly FAILED: "Failed";
8
+ readonly IN_PROGRESS: "InProgress";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type AsyncInvokeStatus = (typeof AsyncInvokeStatus)[keyof typeof AsyncInvokeStatus];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const SortAsyncInvocationBy: {
19
+ readonly SUBMISSION_TIME: "SubmissionTime";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type SortAsyncInvocationBy = (typeof SortAsyncInvocationBy)[keyof typeof SortAsyncInvocationBy];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const SortOrder: {
30
+ readonly ASCENDING: "Ascending";
31
+ readonly DESCENDING: "Descending";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const GuardrailImageFormat: {
42
+ readonly JPEG: "jpeg";
43
+ readonly PNG: "png";
44
+ };
45
+ /**
46
+ * @public
47
+ */
48
+ export type GuardrailImageFormat = (typeof GuardrailImageFormat)[keyof typeof GuardrailImageFormat];
49
+ /**
50
+ * @public
51
+ * @enum
52
+ */
53
+ export declare const GuardrailContentQualifier: {
54
+ readonly GROUNDING_SOURCE: "grounding_source";
55
+ readonly GUARD_CONTENT: "guard_content";
56
+ readonly QUERY: "query";
57
+ };
58
+ /**
59
+ * @public
60
+ */
61
+ export type GuardrailContentQualifier = (typeof GuardrailContentQualifier)[keyof typeof GuardrailContentQualifier];
62
+ /**
63
+ * @public
64
+ * @enum
65
+ */
66
+ export declare const GuardrailOutputScope: {
67
+ readonly FULL: "FULL";
68
+ readonly INTERVENTIONS: "INTERVENTIONS";
69
+ };
70
+ /**
71
+ * @public
72
+ */
73
+ export type GuardrailOutputScope = (typeof GuardrailOutputScope)[keyof typeof GuardrailOutputScope];
74
+ /**
75
+ * @public
76
+ * @enum
77
+ */
78
+ export declare const GuardrailContentSource: {
79
+ readonly INPUT: "INPUT";
80
+ readonly OUTPUT: "OUTPUT";
81
+ };
82
+ /**
83
+ * @public
84
+ */
85
+ export type GuardrailContentSource = (typeof GuardrailContentSource)[keyof typeof GuardrailContentSource];
86
+ /**
87
+ * @public
88
+ * @enum
89
+ */
90
+ export declare const GuardrailAction: {
91
+ readonly GUARDRAIL_INTERVENED: "GUARDRAIL_INTERVENED";
92
+ readonly NONE: "NONE";
93
+ };
94
+ /**
95
+ * @public
96
+ */
97
+ export type GuardrailAction = (typeof GuardrailAction)[keyof typeof GuardrailAction];
98
+ /**
99
+ * @public
100
+ * @enum
101
+ */
102
+ export declare const GuardrailAutomatedReasoningLogicWarningType: {
103
+ readonly ALWAYS_FALSE: "ALWAYS_FALSE";
104
+ readonly ALWAYS_TRUE: "ALWAYS_TRUE";
105
+ };
106
+ /**
107
+ * @public
108
+ */
109
+ export type GuardrailAutomatedReasoningLogicWarningType = (typeof GuardrailAutomatedReasoningLogicWarningType)[keyof typeof GuardrailAutomatedReasoningLogicWarningType];
110
+ /**
111
+ * @public
112
+ * @enum
113
+ */
114
+ export declare const GuardrailContentPolicyAction: {
115
+ readonly BLOCKED: "BLOCKED";
116
+ readonly NONE: "NONE";
117
+ };
118
+ /**
119
+ * @public
120
+ */
121
+ export type GuardrailContentPolicyAction = (typeof GuardrailContentPolicyAction)[keyof typeof GuardrailContentPolicyAction];
122
+ /**
123
+ * @public
124
+ * @enum
125
+ */
126
+ export declare const GuardrailContentFilterConfidence: {
127
+ readonly HIGH: "HIGH";
128
+ readonly LOW: "LOW";
129
+ readonly MEDIUM: "MEDIUM";
130
+ readonly NONE: "NONE";
131
+ };
132
+ /**
133
+ * @public
134
+ */
135
+ export type GuardrailContentFilterConfidence = (typeof GuardrailContentFilterConfidence)[keyof typeof GuardrailContentFilterConfidence];
136
+ /**
137
+ * @public
138
+ * @enum
139
+ */
140
+ export declare const GuardrailContentFilterStrength: {
141
+ readonly HIGH: "HIGH";
142
+ readonly LOW: "LOW";
143
+ readonly MEDIUM: "MEDIUM";
144
+ readonly NONE: "NONE";
145
+ };
146
+ /**
147
+ * @public
148
+ */
149
+ export type GuardrailContentFilterStrength = (typeof GuardrailContentFilterStrength)[keyof typeof GuardrailContentFilterStrength];
150
+ /**
151
+ * @public
152
+ * @enum
153
+ */
154
+ export declare const GuardrailContentFilterType: {
155
+ readonly HATE: "HATE";
156
+ readonly INSULTS: "INSULTS";
157
+ readonly MISCONDUCT: "MISCONDUCT";
158
+ readonly PROMPT_ATTACK: "PROMPT_ATTACK";
159
+ readonly SEXUAL: "SEXUAL";
160
+ readonly VIOLENCE: "VIOLENCE";
161
+ };
162
+ /**
163
+ * @public
164
+ */
165
+ export type GuardrailContentFilterType = (typeof GuardrailContentFilterType)[keyof typeof GuardrailContentFilterType];
166
+ /**
167
+ * @public
168
+ * @enum
169
+ */
170
+ export declare const GuardrailContextualGroundingPolicyAction: {
171
+ readonly BLOCKED: "BLOCKED";
172
+ readonly NONE: "NONE";
173
+ };
174
+ /**
175
+ * @public
176
+ */
177
+ export type GuardrailContextualGroundingPolicyAction = (typeof GuardrailContextualGroundingPolicyAction)[keyof typeof GuardrailContextualGroundingPolicyAction];
178
+ /**
179
+ * @public
180
+ * @enum
181
+ */
182
+ export declare const GuardrailContextualGroundingFilterType: {
183
+ readonly GROUNDING: "GROUNDING";
184
+ readonly RELEVANCE: "RELEVANCE";
185
+ };
186
+ /**
187
+ * @public
188
+ */
189
+ export type GuardrailContextualGroundingFilterType = (typeof GuardrailContextualGroundingFilterType)[keyof typeof GuardrailContextualGroundingFilterType];
190
+ /**
191
+ * @public
192
+ * @enum
193
+ */
194
+ export declare const GuardrailSensitiveInformationPolicyAction: {
195
+ readonly ANONYMIZED: "ANONYMIZED";
196
+ readonly BLOCKED: "BLOCKED";
197
+ readonly NONE: "NONE";
198
+ };
199
+ /**
200
+ * @public
201
+ */
202
+ export type GuardrailSensitiveInformationPolicyAction = (typeof GuardrailSensitiveInformationPolicyAction)[keyof typeof GuardrailSensitiveInformationPolicyAction];
203
+ /**
204
+ * @public
205
+ * @enum
206
+ */
207
+ export declare const GuardrailPiiEntityType: {
208
+ readonly ADDRESS: "ADDRESS";
209
+ readonly AGE: "AGE";
210
+ readonly AWS_ACCESS_KEY: "AWS_ACCESS_KEY";
211
+ readonly AWS_SECRET_KEY: "AWS_SECRET_KEY";
212
+ readonly CA_HEALTH_NUMBER: "CA_HEALTH_NUMBER";
213
+ readonly CA_SOCIAL_INSURANCE_NUMBER: "CA_SOCIAL_INSURANCE_NUMBER";
214
+ readonly CREDIT_DEBIT_CARD_CVV: "CREDIT_DEBIT_CARD_CVV";
215
+ readonly CREDIT_DEBIT_CARD_EXPIRY: "CREDIT_DEBIT_CARD_EXPIRY";
216
+ readonly CREDIT_DEBIT_CARD_NUMBER: "CREDIT_DEBIT_CARD_NUMBER";
217
+ readonly DRIVER_ID: "DRIVER_ID";
218
+ readonly EMAIL: "EMAIL";
219
+ readonly INTERNATIONAL_BANK_ACCOUNT_NUMBER: "INTERNATIONAL_BANK_ACCOUNT_NUMBER";
220
+ readonly IP_ADDRESS: "IP_ADDRESS";
221
+ readonly LICENSE_PLATE: "LICENSE_PLATE";
222
+ readonly MAC_ADDRESS: "MAC_ADDRESS";
223
+ readonly NAME: "NAME";
224
+ readonly PASSWORD: "PASSWORD";
225
+ readonly PHONE: "PHONE";
226
+ readonly PIN: "PIN";
227
+ readonly SWIFT_CODE: "SWIFT_CODE";
228
+ readonly UK_NATIONAL_HEALTH_SERVICE_NUMBER: "UK_NATIONAL_HEALTH_SERVICE_NUMBER";
229
+ readonly UK_NATIONAL_INSURANCE_NUMBER: "UK_NATIONAL_INSURANCE_NUMBER";
230
+ readonly UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER: "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER";
231
+ readonly URL: "URL";
232
+ readonly USERNAME: "USERNAME";
233
+ readonly US_BANK_ACCOUNT_NUMBER: "US_BANK_ACCOUNT_NUMBER";
234
+ readonly US_BANK_ROUTING_NUMBER: "US_BANK_ROUTING_NUMBER";
235
+ readonly US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER: "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER";
236
+ readonly US_PASSPORT_NUMBER: "US_PASSPORT_NUMBER";
237
+ readonly US_SOCIAL_SECURITY_NUMBER: "US_SOCIAL_SECURITY_NUMBER";
238
+ readonly VEHICLE_IDENTIFICATION_NUMBER: "VEHICLE_IDENTIFICATION_NUMBER";
239
+ };
240
+ /**
241
+ * @public
242
+ */
243
+ export type GuardrailPiiEntityType = (typeof GuardrailPiiEntityType)[keyof typeof GuardrailPiiEntityType];
244
+ /**
245
+ * @public
246
+ * @enum
247
+ */
248
+ export declare const GuardrailTopicPolicyAction: {
249
+ readonly BLOCKED: "BLOCKED";
250
+ readonly NONE: "NONE";
251
+ };
252
+ /**
253
+ * @public
254
+ */
255
+ export type GuardrailTopicPolicyAction = (typeof GuardrailTopicPolicyAction)[keyof typeof GuardrailTopicPolicyAction];
256
+ /**
257
+ * @public
258
+ * @enum
259
+ */
260
+ export declare const GuardrailTopicType: {
261
+ readonly DENY: "DENY";
262
+ };
263
+ /**
264
+ * @public
265
+ */
266
+ export type GuardrailTopicType = (typeof GuardrailTopicType)[keyof typeof GuardrailTopicType];
267
+ /**
268
+ * @public
269
+ * @enum
270
+ */
271
+ export declare const GuardrailWordPolicyAction: {
272
+ readonly BLOCKED: "BLOCKED";
273
+ readonly NONE: "NONE";
274
+ };
275
+ /**
276
+ * @public
277
+ */
278
+ export type GuardrailWordPolicyAction = (typeof GuardrailWordPolicyAction)[keyof typeof GuardrailWordPolicyAction];
279
+ /**
280
+ * @public
281
+ * @enum
282
+ */
283
+ export declare const GuardrailManagedWordType: {
284
+ readonly PROFANITY: "PROFANITY";
285
+ };
286
+ /**
287
+ * @public
288
+ */
289
+ export type GuardrailManagedWordType = (typeof GuardrailManagedWordType)[keyof typeof GuardrailManagedWordType];
290
+ /**
291
+ * @public
292
+ * @enum
293
+ */
294
+ export declare const GuardrailTrace: {
295
+ readonly DISABLED: "disabled";
296
+ readonly ENABLED: "enabled";
297
+ readonly ENABLED_FULL: "enabled_full";
298
+ };
299
+ /**
300
+ * @public
301
+ */
302
+ export type GuardrailTrace = (typeof GuardrailTrace)[keyof typeof GuardrailTrace];
303
+ /**
304
+ * @public
305
+ * @enum
306
+ */
307
+ export declare const CachePointType: {
308
+ readonly DEFAULT: "default";
309
+ };
310
+ /**
311
+ * @public
312
+ */
313
+ export type CachePointType = (typeof CachePointType)[keyof typeof CachePointType];
314
+ /**
315
+ * @public
316
+ * @enum
317
+ */
318
+ export declare const DocumentFormat: {
319
+ readonly CSV: "csv";
320
+ readonly DOC: "doc";
321
+ readonly DOCX: "docx";
322
+ readonly HTML: "html";
323
+ readonly MD: "md";
324
+ readonly PDF: "pdf";
325
+ readonly TXT: "txt";
326
+ readonly XLS: "xls";
327
+ readonly XLSX: "xlsx";
328
+ };
329
+ /**
330
+ * @public
331
+ */
332
+ export type DocumentFormat = (typeof DocumentFormat)[keyof typeof DocumentFormat];
333
+ /**
334
+ * @public
335
+ * @enum
336
+ */
337
+ export declare const GuardrailConverseImageFormat: {
338
+ readonly JPEG: "jpeg";
339
+ readonly PNG: "png";
340
+ };
341
+ /**
342
+ * @public
343
+ */
344
+ export type GuardrailConverseImageFormat = (typeof GuardrailConverseImageFormat)[keyof typeof GuardrailConverseImageFormat];
345
+ /**
346
+ * @public
347
+ * @enum
348
+ */
349
+ export declare const GuardrailConverseContentQualifier: {
350
+ readonly GROUNDING_SOURCE: "grounding_source";
351
+ readonly GUARD_CONTENT: "guard_content";
352
+ readonly QUERY: "query";
353
+ };
354
+ /**
355
+ * @public
356
+ */
357
+ export type GuardrailConverseContentQualifier = (typeof GuardrailConverseContentQualifier)[keyof typeof GuardrailConverseContentQualifier];
358
+ /**
359
+ * @public
360
+ * @enum
361
+ */
362
+ export declare const ImageFormat: {
363
+ readonly GIF: "gif";
364
+ readonly JPEG: "jpeg";
365
+ readonly PNG: "png";
366
+ readonly WEBP: "webp";
367
+ };
368
+ /**
369
+ * @public
370
+ */
371
+ export type ImageFormat = (typeof ImageFormat)[keyof typeof ImageFormat];
372
+ /**
373
+ * @public
374
+ * @enum
375
+ */
376
+ export declare const VideoFormat: {
377
+ readonly FLV: "flv";
378
+ readonly MKV: "mkv";
379
+ readonly MOV: "mov";
380
+ readonly MP4: "mp4";
381
+ readonly MPEG: "mpeg";
382
+ readonly MPG: "mpg";
383
+ readonly THREE_GP: "three_gp";
384
+ readonly WEBM: "webm";
385
+ readonly WMV: "wmv";
386
+ };
387
+ /**
388
+ * @public
389
+ */
390
+ export type VideoFormat = (typeof VideoFormat)[keyof typeof VideoFormat];
391
+ /**
392
+ * @public
393
+ * @enum
394
+ */
395
+ export declare const ToolResultStatus: {
396
+ readonly ERROR: "error";
397
+ readonly SUCCESS: "success";
398
+ };
399
+ /**
400
+ * @public
401
+ */
402
+ export type ToolResultStatus = (typeof ToolResultStatus)[keyof typeof ToolResultStatus];
403
+ /**
404
+ * @public
405
+ * @enum
406
+ */
407
+ export declare const ToolUseType: {
408
+ readonly SERVER_TOOL_USE: "server_tool_use";
409
+ };
410
+ /**
411
+ * @public
412
+ */
413
+ export type ToolUseType = (typeof ToolUseType)[keyof typeof ToolUseType];
414
+ /**
415
+ * @public
416
+ * @enum
417
+ */
418
+ export declare const ConversationRole: {
419
+ readonly ASSISTANT: "assistant";
420
+ readonly USER: "user";
421
+ };
422
+ /**
423
+ * @public
424
+ */
425
+ export type ConversationRole = (typeof ConversationRole)[keyof typeof ConversationRole];
426
+ /**
427
+ * @public
428
+ * @enum
429
+ */
430
+ export declare const PerformanceConfigLatency: {
431
+ readonly OPTIMIZED: "optimized";
432
+ readonly STANDARD: "standard";
433
+ };
434
+ /**
435
+ * @public
436
+ */
437
+ export type PerformanceConfigLatency = (typeof PerformanceConfigLatency)[keyof typeof PerformanceConfigLatency];
438
+ /**
439
+ * @public
440
+ * @enum
441
+ */
442
+ export declare const ServiceTierType: {
443
+ readonly DEFAULT: "default";
444
+ readonly FLEX: "flex";
445
+ readonly PRIORITY: "priority";
446
+ };
447
+ /**
448
+ * @public
449
+ */
450
+ export type ServiceTierType = (typeof ServiceTierType)[keyof typeof ServiceTierType];
451
+ /**
452
+ * @public
453
+ * @enum
454
+ */
455
+ export declare const StopReason: {
456
+ readonly CONTENT_FILTERED: "content_filtered";
457
+ readonly END_TURN: "end_turn";
458
+ readonly GUARDRAIL_INTERVENED: "guardrail_intervened";
459
+ readonly MAX_TOKENS: "max_tokens";
460
+ readonly MODEL_CONTEXT_WINDOW_EXCEEDED: "model_context_window_exceeded";
461
+ readonly STOP_SEQUENCE: "stop_sequence";
462
+ readonly TOOL_USE: "tool_use";
463
+ };
464
+ /**
465
+ * @public
466
+ */
467
+ export type StopReason = (typeof StopReason)[keyof typeof StopReason];
468
+ /**
469
+ * @public
470
+ * @enum
471
+ */
472
+ export declare const GuardrailStreamProcessingMode: {
473
+ readonly ASYNC: "async";
474
+ readonly SYNC: "sync";
475
+ };
476
+ /**
477
+ * @public
478
+ */
479
+ export type GuardrailStreamProcessingMode = (typeof GuardrailStreamProcessingMode)[keyof typeof GuardrailStreamProcessingMode];
480
+ /**
481
+ * @public
482
+ * @enum
483
+ */
484
+ export declare const Trace: {
485
+ readonly DISABLED: "DISABLED";
486
+ readonly ENABLED: "ENABLED";
487
+ readonly ENABLED_FULL: "ENABLED_FULL";
488
+ };
489
+ /**
490
+ * @public
491
+ */
492
+ export type Trace = (typeof Trace)[keyof typeof Trace];
@@ -0,0 +1,167 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { BedrockRuntimeServiceException as __BaseException } from "./BedrockRuntimeServiceException";
3
+ /**
4
+ * <p>The request is denied because you do not have sufficient permissions to perform the requested action. For troubleshooting this error, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-access-denied">AccessDeniedException</a> in the Amazon Bedrock User Guide</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>An internal server error occurred. For troubleshooting this error, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-internal-failure">InternalFailure</a> in the Amazon Bedrock User Guide</p>
17
+ * @public
18
+ */
19
+ export declare class InternalServerException extends __BaseException {
20
+ readonly name: "InternalServerException";
21
+ readonly $fault: "server";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
26
+ }
27
+ /**
28
+ * <p>Your request was denied due to exceeding the account quotas for <i>Amazon Bedrock</i>. For troubleshooting this error, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-throttling-exception">ThrottlingException</a> in the Amazon Bedrock User Guide</p>
29
+ * @public
30
+ */
31
+ export declare class ThrottlingException extends __BaseException {
32
+ readonly name: "ThrottlingException";
33
+ readonly $fault: "client";
34
+ /**
35
+ * @internal
36
+ */
37
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
38
+ }
39
+ /**
40
+ * <p>The input fails to satisfy the constraints specified by <i>Amazon Bedrock</i>. For troubleshooting this error, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-validation-error">ValidationError</a> in the Amazon Bedrock User Guide</p>
41
+ * @public
42
+ */
43
+ export declare class ValidationException extends __BaseException {
44
+ readonly name: "ValidationException";
45
+ readonly $fault: "client";
46
+ /**
47
+ * @internal
48
+ */
49
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
50
+ }
51
+ /**
52
+ * <p>Error occurred because of a conflict while performing an operation.</p>
53
+ * @public
54
+ */
55
+ export declare class ConflictException extends __BaseException {
56
+ readonly name: "ConflictException";
57
+ readonly $fault: "client";
58
+ /**
59
+ * @internal
60
+ */
61
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
62
+ }
63
+ /**
64
+ * <p>The specified resource ARN was not found. For troubleshooting this error, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-resource-not-found">ResourceNotFound</a> in the Amazon Bedrock User Guide</p>
65
+ * @public
66
+ */
67
+ export declare class ResourceNotFoundException extends __BaseException {
68
+ readonly name: "ResourceNotFoundException";
69
+ readonly $fault: "client";
70
+ /**
71
+ * @internal
72
+ */
73
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
74
+ }
75
+ /**
76
+ * <p>Your request exceeds the service quota for your account. You can view your quotas at <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/gs-request-quota.html">Viewing service quotas</a>. You can resubmit your request later.</p>
77
+ * @public
78
+ */
79
+ export declare class ServiceQuotaExceededException extends __BaseException {
80
+ readonly name: "ServiceQuotaExceededException";
81
+ readonly $fault: "client";
82
+ /**
83
+ * @internal
84
+ */
85
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
86
+ }
87
+ /**
88
+ * <p>The service isn't currently available. For troubleshooting this error, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-service-unavailable">ServiceUnavailable</a> in the Amazon Bedrock User Guide</p>
89
+ * @public
90
+ */
91
+ export declare class ServiceUnavailableException extends __BaseException {
92
+ readonly name: "ServiceUnavailableException";
93
+ readonly $fault: "server";
94
+ /**
95
+ * @internal
96
+ */
97
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
98
+ }
99
+ /**
100
+ * <p>The request failed due to an error while processing the model.</p>
101
+ * @public
102
+ */
103
+ export declare class ModelErrorException extends __BaseException {
104
+ readonly name: "ModelErrorException";
105
+ readonly $fault: "client";
106
+ /**
107
+ * <p>The original status code.</p>
108
+ * @public
109
+ */
110
+ originalStatusCode?: number | undefined;
111
+ /**
112
+ * <p>The resource name.</p>
113
+ * @public
114
+ */
115
+ resourceName?: string | undefined;
116
+ /**
117
+ * @internal
118
+ */
119
+ constructor(opts: __ExceptionOptionType<ModelErrorException, __BaseException>);
120
+ }
121
+ /**
122
+ * <p>The model specified in the request is not ready to serve inference requests. The AWS SDK will automatically retry the operation up to 5 times. For information about configuring automatic retries, see <a href="https://docs.aws.amazon.com/sdkref/latest/guide/feature-retry-behavior.html">Retry behavior</a> in the <i>AWS SDKs and Tools</i> reference guide.</p>
123
+ * @public
124
+ */
125
+ export declare class ModelNotReadyException extends __BaseException {
126
+ readonly name: "ModelNotReadyException";
127
+ readonly $fault: "client";
128
+ $retryable: {};
129
+ /**
130
+ * @internal
131
+ */
132
+ constructor(opts: __ExceptionOptionType<ModelNotReadyException, __BaseException>);
133
+ }
134
+ /**
135
+ * <p>The request took too long to process. Processing time exceeded the model timeout length.</p>
136
+ * @public
137
+ */
138
+ export declare class ModelTimeoutException extends __BaseException {
139
+ readonly name: "ModelTimeoutException";
140
+ readonly $fault: "client";
141
+ /**
142
+ * @internal
143
+ */
144
+ constructor(opts: __ExceptionOptionType<ModelTimeoutException, __BaseException>);
145
+ }
146
+ /**
147
+ * <p>An error occurred while streaming the response. Retry your request.</p>
148
+ * @public
149
+ */
150
+ export declare class ModelStreamErrorException extends __BaseException {
151
+ readonly name: "ModelStreamErrorException";
152
+ readonly $fault: "client";
153
+ /**
154
+ * <p>The original status code.</p>
155
+ * @public
156
+ */
157
+ originalStatusCode?: number | undefined;
158
+ /**
159
+ * <p>The original message.</p>
160
+ * @public
161
+ */
162
+ originalMessage?: string | undefined;
163
+ /**
164
+ * @internal
165
+ */
166
+ constructor(opts: __ExceptionOptionType<ModelStreamErrorException, __BaseException>);
167
+ }