@aws-sdk/client-bedrock 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 (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 +20 -20
  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
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./BedrockClient";
2
2
  export * from "./Bedrock";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { BedrockServiceException } from "./models/BedrockServiceException";
@@ -0,0 +1,355 @@
1
+ export const AgreementStatus = {
2
+ AVAILABLE: "AVAILABLE",
3
+ ERROR: "ERROR",
4
+ NOT_AVAILABLE: "NOT_AVAILABLE",
5
+ PENDING: "PENDING",
6
+ };
7
+ export const AutomatedReasoningCheckResult = {
8
+ IMPOSSIBLE: "IMPOSSIBLE",
9
+ INVALID: "INVALID",
10
+ NO_TRANSLATION: "NO_TRANSLATION",
11
+ SATISFIABLE: "SATISFIABLE",
12
+ TOO_COMPLEX: "TOO_COMPLEX",
13
+ TRANSLATION_AMBIGUOUS: "TRANSLATION_AMBIGUOUS",
14
+ VALID: "VALID",
15
+ };
16
+ export const AutomatedReasoningPolicyBuildWorkflowType = {
17
+ IMPORT_POLICY: "IMPORT_POLICY",
18
+ INGEST_CONTENT: "INGEST_CONTENT",
19
+ REFINE_POLICY: "REFINE_POLICY",
20
+ };
21
+ export const AutomatedReasoningPolicyBuildDocumentContentType = {
22
+ PDF: "pdf",
23
+ TEXT: "txt",
24
+ };
25
+ export const AutomatedReasoningPolicyBuildWorkflowStatus = {
26
+ BUILDING: "BUILDING",
27
+ CANCELLED: "CANCELLED",
28
+ CANCEL_REQUESTED: "CANCEL_REQUESTED",
29
+ COMPLETED: "COMPLETED",
30
+ FAILED: "FAILED",
31
+ PREPROCESSING: "PREPROCESSING",
32
+ SCHEDULED: "SCHEDULED",
33
+ TESTING: "TESTING",
34
+ };
35
+ export const AutomatedReasoningPolicyBuildResultAssetType = {
36
+ BUILD_LOG: "BUILD_LOG",
37
+ GENERATED_TEST_CASES: "GENERATED_TEST_CASES",
38
+ POLICY_DEFINITION: "POLICY_DEFINITION",
39
+ QUALITY_REPORT: "QUALITY_REPORT",
40
+ };
41
+ export const AutomatedReasoningPolicyBuildMessageType = {
42
+ ERROR: "ERROR",
43
+ INFO: "INFO",
44
+ WARNING: "WARNING",
45
+ };
46
+ export const AutomatedReasoningPolicyAnnotationStatus = {
47
+ APPLIED: "APPLIED",
48
+ FAILED: "FAILED",
49
+ };
50
+ export const AutomatedReasoningCheckLogicWarningType = {
51
+ ALWAYS_FALSE: "ALWAYS_FALSE",
52
+ ALWAYS_TRUE: "ALWAYS_TRUE",
53
+ };
54
+ export const AutomatedReasoningPolicyTestRunResult = {
55
+ FAILED: "FAILED",
56
+ PASSED: "PASSED",
57
+ };
58
+ export const AutomatedReasoningPolicyTestRunStatus = {
59
+ COMPLETED: "COMPLETED",
60
+ FAILED: "FAILED",
61
+ IN_PROGRESS: "IN_PROGRESS",
62
+ NOT_STARTED: "NOT_STARTED",
63
+ SCHEDULED: "SCHEDULED",
64
+ };
65
+ export const Status = {
66
+ INCOMPATIBLE_ENDPOINT: "INCOMPATIBLE_ENDPOINT",
67
+ REGISTERED: "REGISTERED",
68
+ };
69
+ export const CustomModelDeploymentStatus = {
70
+ ACTIVE: "Active",
71
+ CREATING: "Creating",
72
+ FAILED: "Failed",
73
+ };
74
+ export const SortModelsBy = {
75
+ CREATION_TIME: "CreationTime",
76
+ };
77
+ export const SortOrder = {
78
+ ASCENDING: "Ascending",
79
+ DESCENDING: "Descending",
80
+ };
81
+ export const CustomizationType = {
82
+ CONTINUED_PRE_TRAINING: "CONTINUED_PRE_TRAINING",
83
+ DISTILLATION: "DISTILLATION",
84
+ FINE_TUNING: "FINE_TUNING",
85
+ IMPORTED: "IMPORTED",
86
+ };
87
+ export const ModelStatus = {
88
+ ACTIVE: "Active",
89
+ CREATING: "Creating",
90
+ FAILED: "Failed",
91
+ };
92
+ export const EvaluationJobStatus = {
93
+ COMPLETED: "Completed",
94
+ DELETING: "Deleting",
95
+ FAILED: "Failed",
96
+ IN_PROGRESS: "InProgress",
97
+ STOPPED: "Stopped",
98
+ STOPPING: "Stopping",
99
+ };
100
+ export const ApplicationType = {
101
+ MODEL_EVALUATION: "ModelEvaluation",
102
+ RAG_EVALUATION: "RagEvaluation",
103
+ };
104
+ export const EvaluationTaskType = {
105
+ CLASSIFICATION: "Classification",
106
+ CUSTOM: "Custom",
107
+ GENERATION: "Generation",
108
+ QUESTION_AND_ANSWER: "QuestionAndAnswer",
109
+ SUMMARIZATION: "Summarization",
110
+ };
111
+ export const PerformanceConfigLatency = {
112
+ OPTIMIZED: "optimized",
113
+ STANDARD: "standard",
114
+ };
115
+ export const ExternalSourceType = {
116
+ BYTE_CONTENT: "BYTE_CONTENT",
117
+ S3: "S3",
118
+ };
119
+ export const QueryTransformationType = {
120
+ QUERY_DECOMPOSITION: "QUERY_DECOMPOSITION",
121
+ };
122
+ export const AttributeType = {
123
+ BOOLEAN: "BOOLEAN",
124
+ NUMBER: "NUMBER",
125
+ STRING: "STRING",
126
+ STRING_LIST: "STRING_LIST",
127
+ };
128
+ export const SearchType = {
129
+ HYBRID: "HYBRID",
130
+ SEMANTIC: "SEMANTIC",
131
+ };
132
+ export const RerankingMetadataSelectionMode = {
133
+ ALL: "ALL",
134
+ SELECTIVE: "SELECTIVE",
135
+ };
136
+ export const VectorSearchRerankingConfigurationType = {
137
+ BEDROCK_RERANKING_MODEL: "BEDROCK_RERANKING_MODEL",
138
+ };
139
+ export const RetrieveAndGenerateType = {
140
+ EXTERNAL_SOURCES: "EXTERNAL_SOURCES",
141
+ KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
142
+ };
143
+ export const EvaluationJobType = {
144
+ AUTOMATED: "Automated",
145
+ HUMAN: "Human",
146
+ };
147
+ export const SortJobsBy = {
148
+ CREATION_TIME: "CreationTime",
149
+ };
150
+ export const GuardrailContentFilterAction = {
151
+ BLOCK: "BLOCK",
152
+ NONE: "NONE",
153
+ };
154
+ export const GuardrailModality = {
155
+ IMAGE: "IMAGE",
156
+ TEXT: "TEXT",
157
+ };
158
+ export const GuardrailFilterStrength = {
159
+ HIGH: "HIGH",
160
+ LOW: "LOW",
161
+ MEDIUM: "MEDIUM",
162
+ NONE: "NONE",
163
+ };
164
+ export const GuardrailContentFilterType = {
165
+ HATE: "HATE",
166
+ INSULTS: "INSULTS",
167
+ MISCONDUCT: "MISCONDUCT",
168
+ PROMPT_ATTACK: "PROMPT_ATTACK",
169
+ SEXUAL: "SEXUAL",
170
+ VIOLENCE: "VIOLENCE",
171
+ };
172
+ export const GuardrailContentFiltersTierName = {
173
+ CLASSIC: "CLASSIC",
174
+ STANDARD: "STANDARD",
175
+ };
176
+ export const GuardrailContextualGroundingAction = {
177
+ BLOCK: "BLOCK",
178
+ NONE: "NONE",
179
+ };
180
+ export const GuardrailContextualGroundingFilterType = {
181
+ GROUNDING: "GROUNDING",
182
+ RELEVANCE: "RELEVANCE",
183
+ };
184
+ export const GuardrailSensitiveInformationAction = {
185
+ ANONYMIZE: "ANONYMIZE",
186
+ BLOCK: "BLOCK",
187
+ NONE: "NONE",
188
+ };
189
+ export const GuardrailPiiEntityType = {
190
+ ADDRESS: "ADDRESS",
191
+ AGE: "AGE",
192
+ AWS_ACCESS_KEY: "AWS_ACCESS_KEY",
193
+ AWS_SECRET_KEY: "AWS_SECRET_KEY",
194
+ CA_HEALTH_NUMBER: "CA_HEALTH_NUMBER",
195
+ CA_SOCIAL_INSURANCE_NUMBER: "CA_SOCIAL_INSURANCE_NUMBER",
196
+ CREDIT_DEBIT_CARD_CVV: "CREDIT_DEBIT_CARD_CVV",
197
+ CREDIT_DEBIT_CARD_EXPIRY: "CREDIT_DEBIT_CARD_EXPIRY",
198
+ CREDIT_DEBIT_CARD_NUMBER: "CREDIT_DEBIT_CARD_NUMBER",
199
+ DRIVER_ID: "DRIVER_ID",
200
+ EMAIL: "EMAIL",
201
+ INTERNATIONAL_BANK_ACCOUNT_NUMBER: "INTERNATIONAL_BANK_ACCOUNT_NUMBER",
202
+ IP_ADDRESS: "IP_ADDRESS",
203
+ LICENSE_PLATE: "LICENSE_PLATE",
204
+ MAC_ADDRESS: "MAC_ADDRESS",
205
+ NAME: "NAME",
206
+ PASSWORD: "PASSWORD",
207
+ PHONE: "PHONE",
208
+ PIN: "PIN",
209
+ SWIFT_CODE: "SWIFT_CODE",
210
+ UK_NATIONAL_HEALTH_SERVICE_NUMBER: "UK_NATIONAL_HEALTH_SERVICE_NUMBER",
211
+ UK_NATIONAL_INSURANCE_NUMBER: "UK_NATIONAL_INSURANCE_NUMBER",
212
+ UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER: "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER",
213
+ URL: "URL",
214
+ USERNAME: "USERNAME",
215
+ US_BANK_ACCOUNT_NUMBER: "US_BANK_ACCOUNT_NUMBER",
216
+ US_BANK_ROUTING_NUMBER: "US_BANK_ROUTING_NUMBER",
217
+ US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER: "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER",
218
+ US_PASSPORT_NUMBER: "US_PASSPORT_NUMBER",
219
+ US_SOCIAL_SECURITY_NUMBER: "US_SOCIAL_SECURITY_NUMBER",
220
+ VEHICLE_IDENTIFICATION_NUMBER: "VEHICLE_IDENTIFICATION_NUMBER",
221
+ };
222
+ export const GuardrailTopicsTierName = {
223
+ CLASSIC: "CLASSIC",
224
+ STANDARD: "STANDARD",
225
+ };
226
+ export const GuardrailTopicAction = {
227
+ BLOCK: "BLOCK",
228
+ NONE: "NONE",
229
+ };
230
+ export const GuardrailTopicType = {
231
+ DENY: "DENY",
232
+ };
233
+ export const GuardrailWordAction = {
234
+ BLOCK: "BLOCK",
235
+ NONE: "NONE",
236
+ };
237
+ export const GuardrailManagedWordsType = {
238
+ PROFANITY: "PROFANITY",
239
+ };
240
+ export const GuardrailStatus = {
241
+ CREATING: "CREATING",
242
+ DELETING: "DELETING",
243
+ FAILED: "FAILED",
244
+ READY: "READY",
245
+ UPDATING: "UPDATING",
246
+ VERSIONING: "VERSIONING",
247
+ };
248
+ export const InferenceProfileStatus = {
249
+ ACTIVE: "ACTIVE",
250
+ };
251
+ export const InferenceProfileType = {
252
+ APPLICATION: "APPLICATION",
253
+ SYSTEM_DEFINED: "SYSTEM_DEFINED",
254
+ };
255
+ export const ModelCopyJobStatus = {
256
+ COMPLETED: "Completed",
257
+ FAILED: "Failed",
258
+ IN_PROGRESS: "InProgress",
259
+ };
260
+ export const ModelImportJobStatus = {
261
+ COMPLETED: "Completed",
262
+ FAILED: "Failed",
263
+ IN_PROGRESS: "InProgress",
264
+ };
265
+ export const S3InputFormat = {
266
+ JSONL: "JSONL",
267
+ };
268
+ export const ModelInvocationJobStatus = {
269
+ COMPLETED: "Completed",
270
+ EXPIRED: "Expired",
271
+ FAILED: "Failed",
272
+ IN_PROGRESS: "InProgress",
273
+ PARTIALLY_COMPLETED: "PartiallyCompleted",
274
+ SCHEDULED: "Scheduled",
275
+ STOPPED: "Stopped",
276
+ STOPPING: "Stopping",
277
+ SUBMITTED: "Submitted",
278
+ VALIDATING: "Validating",
279
+ };
280
+ export const ModelCustomization = {
281
+ CONTINUED_PRE_TRAINING: "CONTINUED_PRE_TRAINING",
282
+ DISTILLATION: "DISTILLATION",
283
+ FINE_TUNING: "FINE_TUNING",
284
+ };
285
+ export const InferenceType = {
286
+ ON_DEMAND: "ON_DEMAND",
287
+ PROVISIONED: "PROVISIONED",
288
+ };
289
+ export const ModelModality = {
290
+ EMBEDDING: "EMBEDDING",
291
+ IMAGE: "IMAGE",
292
+ TEXT: "TEXT",
293
+ };
294
+ export const FoundationModelLifecycleStatus = {
295
+ ACTIVE: "ACTIVE",
296
+ LEGACY: "LEGACY",
297
+ };
298
+ export const PromptRouterStatus = {
299
+ AVAILABLE: "AVAILABLE",
300
+ };
301
+ export const PromptRouterType = {
302
+ CUSTOM: "custom",
303
+ DEFAULT: "default",
304
+ };
305
+ export const CommitmentDuration = {
306
+ ONE_MONTH: "OneMonth",
307
+ SIX_MONTHS: "SixMonths",
308
+ };
309
+ export const ProvisionedModelStatus = {
310
+ CREATING: "Creating",
311
+ FAILED: "Failed",
312
+ IN_SERVICE: "InService",
313
+ UPDATING: "Updating",
314
+ };
315
+ export const SortByProvisionedModels = {
316
+ CREATION_TIME: "CreationTime",
317
+ };
318
+ export const AuthorizationStatus = {
319
+ AUTHORIZED: "AUTHORIZED",
320
+ NOT_AUTHORIZED: "NOT_AUTHORIZED",
321
+ };
322
+ export const EntitlementAvailability = {
323
+ AVAILABLE: "AVAILABLE",
324
+ NOT_AVAILABLE: "NOT_AVAILABLE",
325
+ };
326
+ export const RegionAvailability = {
327
+ AVAILABLE: "AVAILABLE",
328
+ NOT_AVAILABLE: "NOT_AVAILABLE",
329
+ };
330
+ export const OfferType = {
331
+ ALL: "ALL",
332
+ PUBLIC: "PUBLIC",
333
+ };
334
+ export const ModelCustomizationJobStatus = {
335
+ COMPLETED: "Completed",
336
+ FAILED: "Failed",
337
+ IN_PROGRESS: "InProgress",
338
+ STOPPED: "Stopped",
339
+ STOPPING: "Stopping",
340
+ };
341
+ export const JobStatusDetails = {
342
+ COMPLETED: "Completed",
343
+ FAILED: "Failed",
344
+ IN_PROGRESS: "InProgress",
345
+ NOT_STARTED: "NotStarted",
346
+ STOPPED: "Stopped",
347
+ STOPPING: "Stopping",
348
+ };
349
+ export const FineTuningJobStatus = {
350
+ COMPLETED: "Completed",
351
+ FAILED: "Failed",
352
+ IN_PROGRESS: "InProgress",
353
+ STOPPED: "Stopped",
354
+ STOPPING: "Stopping",
355
+ };
@@ -0,0 +1,123 @@
1
+ import { BedrockServiceException as __BaseException } from "./BedrockServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ constructor(opts) {
6
+ super({
7
+ name: "AccessDeniedException",
8
+ $fault: "client",
9
+ ...opts,
10
+ });
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ }
13
+ }
14
+ export class InternalServerException extends __BaseException {
15
+ name = "InternalServerException";
16
+ $fault = "server";
17
+ constructor(opts) {
18
+ super({
19
+ name: "InternalServerException",
20
+ $fault: "server",
21
+ ...opts,
22
+ });
23
+ Object.setPrototypeOf(this, InternalServerException.prototype);
24
+ }
25
+ }
26
+ export class ResourceNotFoundException extends __BaseException {
27
+ name = "ResourceNotFoundException";
28
+ $fault = "client";
29
+ constructor(opts) {
30
+ super({
31
+ name: "ResourceNotFoundException",
32
+ $fault: "client",
33
+ ...opts,
34
+ });
35
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
36
+ }
37
+ }
38
+ export class ThrottlingException extends __BaseException {
39
+ name = "ThrottlingException";
40
+ $fault = "client";
41
+ constructor(opts) {
42
+ super({
43
+ name: "ThrottlingException",
44
+ $fault: "client",
45
+ ...opts,
46
+ });
47
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
48
+ }
49
+ }
50
+ export class ValidationException extends __BaseException {
51
+ name = "ValidationException";
52
+ $fault = "client";
53
+ constructor(opts) {
54
+ super({
55
+ name: "ValidationException",
56
+ $fault: "client",
57
+ ...opts,
58
+ });
59
+ Object.setPrototypeOf(this, ValidationException.prototype);
60
+ }
61
+ }
62
+ export class ConflictException extends __BaseException {
63
+ name = "ConflictException";
64
+ $fault = "client";
65
+ constructor(opts) {
66
+ super({
67
+ name: "ConflictException",
68
+ $fault: "client",
69
+ ...opts,
70
+ });
71
+ Object.setPrototypeOf(this, ConflictException.prototype);
72
+ }
73
+ }
74
+ export class ServiceQuotaExceededException extends __BaseException {
75
+ name = "ServiceQuotaExceededException";
76
+ $fault = "client";
77
+ constructor(opts) {
78
+ super({
79
+ name: "ServiceQuotaExceededException",
80
+ $fault: "client",
81
+ ...opts,
82
+ });
83
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
84
+ }
85
+ }
86
+ export class TooManyTagsException extends __BaseException {
87
+ name = "TooManyTagsException";
88
+ $fault = "client";
89
+ resourceName;
90
+ constructor(opts) {
91
+ super({
92
+ name: "TooManyTagsException",
93
+ $fault: "client",
94
+ ...opts,
95
+ });
96
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
97
+ this.resourceName = opts.resourceName;
98
+ }
99
+ }
100
+ export class ResourceInUseException extends __BaseException {
101
+ name = "ResourceInUseException";
102
+ $fault = "client";
103
+ constructor(opts) {
104
+ super({
105
+ name: "ResourceInUseException",
106
+ $fault: "client",
107
+ ...opts,
108
+ });
109
+ Object.setPrototypeOf(this, ResourceInUseException.prototype);
110
+ }
111
+ }
112
+ export class ServiceUnavailableException extends __BaseException {
113
+ name = "ServiceUnavailableException";
114
+ $fault = "server";
115
+ constructor(opts) {
116
+ super({
117
+ name: "ServiceUnavailableException",
118
+ $fault: "server",
119
+ ...opts,
120
+ });
121
+ Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
122
+ }
123
+ }