@aws-sdk/client-chime-sdk-meetings 3.933.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.
- package/dist-cjs/index.js +99 -98
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +98 -0
- package/dist-es/models/errors.js +223 -0
- package/dist-es/models/models_0.js +1 -321
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +226 -0
- package/dist-types/models/errors.d.ts +245 -0
- package/dist-types/models/models_0.d.ts +1 -471
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +130 -0
- package/dist-types/ts3.4/models/errors.d.ts +119 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -249
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -117,16 +117,6 @@ let ChimeSDKMeetingsServiceException$1 = class ChimeSDKMeetingsServiceException
|
|
|
117
117
|
}
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
const MediaCapabilities = {
|
|
121
|
-
NONE: "None",
|
|
122
|
-
RECEIVE: "Receive",
|
|
123
|
-
SEND: "Send",
|
|
124
|
-
SEND_RECEIVE: "SendReceive",
|
|
125
|
-
};
|
|
126
|
-
const MeetingFeatureStatus = {
|
|
127
|
-
AVAILABLE: "AVAILABLE",
|
|
128
|
-
UNAVAILABLE: "UNAVAILABLE",
|
|
129
|
-
};
|
|
130
120
|
let BadRequestException$1 = class BadRequestException extends ChimeSDKMeetingsServiceException$1 {
|
|
131
121
|
name = "BadRequestException";
|
|
132
122
|
$fault = "client";
|
|
@@ -309,20 +299,6 @@ let ConflictException$1 = class ConflictException extends ChimeSDKMeetingsServic
|
|
|
309
299
|
this.RequestId = opts.RequestId;
|
|
310
300
|
}
|
|
311
301
|
};
|
|
312
|
-
const MediaPlacementNetworkType = {
|
|
313
|
-
DUAL_STACK: "DualStack",
|
|
314
|
-
IPV4_ONLY: "Ipv4Only",
|
|
315
|
-
};
|
|
316
|
-
const ContentResolution = {
|
|
317
|
-
FHD: "FHD",
|
|
318
|
-
NONE: "None",
|
|
319
|
-
UHD: "UHD",
|
|
320
|
-
};
|
|
321
|
-
const VideoResolution = {
|
|
322
|
-
FHD: "FHD",
|
|
323
|
-
HD: "HD",
|
|
324
|
-
NONE: "None",
|
|
325
|
-
};
|
|
326
302
|
let ResourceNotFoundException$1 = class ResourceNotFoundException extends ChimeSDKMeetingsServiceException$1 {
|
|
327
303
|
name = "ResourceNotFoundException";
|
|
328
304
|
$fault = "client";
|
|
@@ -343,80 +319,6 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends ChimeS
|
|
|
343
319
|
this.ResourceName = opts.ResourceName;
|
|
344
320
|
}
|
|
345
321
|
};
|
|
346
|
-
const TranscribeMedicalContentIdentificationType = {
|
|
347
|
-
PHI: "PHI",
|
|
348
|
-
};
|
|
349
|
-
const TranscribeMedicalLanguageCode = {
|
|
350
|
-
EN_US: "en-US",
|
|
351
|
-
};
|
|
352
|
-
const TranscribeMedicalRegion = {
|
|
353
|
-
AP_SOUTHEAST_2: "ap-southeast-2",
|
|
354
|
-
AUTO: "auto",
|
|
355
|
-
CA_CENTRAL_1: "ca-central-1",
|
|
356
|
-
EU_WEST_1: "eu-west-1",
|
|
357
|
-
US_EAST_1: "us-east-1",
|
|
358
|
-
US_EAST_2: "us-east-2",
|
|
359
|
-
US_WEST_2: "us-west-2",
|
|
360
|
-
};
|
|
361
|
-
const TranscribeMedicalSpecialty = {
|
|
362
|
-
CARDIOLOGY: "CARDIOLOGY",
|
|
363
|
-
NEUROLOGY: "NEUROLOGY",
|
|
364
|
-
ONCOLOGY: "ONCOLOGY",
|
|
365
|
-
PRIMARYCARE: "PRIMARYCARE",
|
|
366
|
-
RADIOLOGY: "RADIOLOGY",
|
|
367
|
-
UROLOGY: "UROLOGY",
|
|
368
|
-
};
|
|
369
|
-
const TranscribeMedicalType = {
|
|
370
|
-
CONVERSATION: "CONVERSATION",
|
|
371
|
-
DICTATION: "DICTATION",
|
|
372
|
-
};
|
|
373
|
-
const TranscribeContentIdentificationType = {
|
|
374
|
-
PII: "PII",
|
|
375
|
-
};
|
|
376
|
-
const TranscribeContentRedactionType = {
|
|
377
|
-
PII: "PII",
|
|
378
|
-
};
|
|
379
|
-
const TranscribeLanguageCode = {
|
|
380
|
-
DE_DE: "de-DE",
|
|
381
|
-
EN_AU: "en-AU",
|
|
382
|
-
EN_GB: "en-GB",
|
|
383
|
-
EN_US: "en-US",
|
|
384
|
-
ES_US: "es-US",
|
|
385
|
-
FR_CA: "fr-CA",
|
|
386
|
-
FR_FR: "fr-FR",
|
|
387
|
-
HI_IN: "hi-IN",
|
|
388
|
-
IT_IT: "it-IT",
|
|
389
|
-
JA_JP: "ja-JP",
|
|
390
|
-
KO_KR: "ko-KR",
|
|
391
|
-
PT_BR: "pt-BR",
|
|
392
|
-
TH_TH: "th-TH",
|
|
393
|
-
ZH_CN: "zh-CN",
|
|
394
|
-
};
|
|
395
|
-
const TranscribePartialResultsStability = {
|
|
396
|
-
HIGH: "high",
|
|
397
|
-
LOW: "low",
|
|
398
|
-
MEDIUM: "medium",
|
|
399
|
-
};
|
|
400
|
-
const TranscribeRegion = {
|
|
401
|
-
AP_NORTHEAST_1: "ap-northeast-1",
|
|
402
|
-
AP_NORTHEAST_2: "ap-northeast-2",
|
|
403
|
-
AP_SOUTHEAST_2: "ap-southeast-2",
|
|
404
|
-
AUTO: "auto",
|
|
405
|
-
CA_CENTRAL_1: "ca-central-1",
|
|
406
|
-
EU_CENTRAL_1: "eu-central-1",
|
|
407
|
-
EU_WEST_1: "eu-west-1",
|
|
408
|
-
EU_WEST_2: "eu-west-2",
|
|
409
|
-
SA_EAST_1: "sa-east-1",
|
|
410
|
-
US_EAST_1: "us-east-1",
|
|
411
|
-
US_EAST_2: "us-east-2",
|
|
412
|
-
US_GOV_WEST_1: "us-gov-west-1",
|
|
413
|
-
US_WEST_2: "us-west-2",
|
|
414
|
-
};
|
|
415
|
-
const TranscribeVocabularyFilterMethod = {
|
|
416
|
-
MASK: "mask",
|
|
417
|
-
REMOVE: "remove",
|
|
418
|
-
TAG: "tag",
|
|
419
|
-
};
|
|
420
322
|
let TooManyTagsException$1 = class TooManyTagsException extends ChimeSDKMeetingsServiceException$1 {
|
|
421
323
|
name = "TooManyTagsException";
|
|
422
324
|
$fault = "client";
|
|
@@ -1434,6 +1336,105 @@ smithyClient.createAggregatedClient(commands, ChimeSDKMeetings);
|
|
|
1434
1336
|
|
|
1435
1337
|
const paginateListAttendees = core.createPaginator(ChimeSDKMeetingsClient, ListAttendeesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1436
1338
|
|
|
1339
|
+
const MediaCapabilities = {
|
|
1340
|
+
NONE: "None",
|
|
1341
|
+
RECEIVE: "Receive",
|
|
1342
|
+
SEND: "Send",
|
|
1343
|
+
SEND_RECEIVE: "SendReceive",
|
|
1344
|
+
};
|
|
1345
|
+
const MeetingFeatureStatus = {
|
|
1346
|
+
AVAILABLE: "AVAILABLE",
|
|
1347
|
+
UNAVAILABLE: "UNAVAILABLE",
|
|
1348
|
+
};
|
|
1349
|
+
const MediaPlacementNetworkType = {
|
|
1350
|
+
DUAL_STACK: "DualStack",
|
|
1351
|
+
IPV4_ONLY: "Ipv4Only",
|
|
1352
|
+
};
|
|
1353
|
+
const ContentResolution = {
|
|
1354
|
+
FHD: "FHD",
|
|
1355
|
+
NONE: "None",
|
|
1356
|
+
UHD: "UHD",
|
|
1357
|
+
};
|
|
1358
|
+
const VideoResolution = {
|
|
1359
|
+
FHD: "FHD",
|
|
1360
|
+
HD: "HD",
|
|
1361
|
+
NONE: "None",
|
|
1362
|
+
};
|
|
1363
|
+
const TranscribeMedicalContentIdentificationType = {
|
|
1364
|
+
PHI: "PHI",
|
|
1365
|
+
};
|
|
1366
|
+
const TranscribeMedicalLanguageCode = {
|
|
1367
|
+
EN_US: "en-US",
|
|
1368
|
+
};
|
|
1369
|
+
const TranscribeMedicalRegion = {
|
|
1370
|
+
AP_SOUTHEAST_2: "ap-southeast-2",
|
|
1371
|
+
AUTO: "auto",
|
|
1372
|
+
CA_CENTRAL_1: "ca-central-1",
|
|
1373
|
+
EU_WEST_1: "eu-west-1",
|
|
1374
|
+
US_EAST_1: "us-east-1",
|
|
1375
|
+
US_EAST_2: "us-east-2",
|
|
1376
|
+
US_WEST_2: "us-west-2",
|
|
1377
|
+
};
|
|
1378
|
+
const TranscribeMedicalSpecialty = {
|
|
1379
|
+
CARDIOLOGY: "CARDIOLOGY",
|
|
1380
|
+
NEUROLOGY: "NEUROLOGY",
|
|
1381
|
+
ONCOLOGY: "ONCOLOGY",
|
|
1382
|
+
PRIMARYCARE: "PRIMARYCARE",
|
|
1383
|
+
RADIOLOGY: "RADIOLOGY",
|
|
1384
|
+
UROLOGY: "UROLOGY",
|
|
1385
|
+
};
|
|
1386
|
+
const TranscribeMedicalType = {
|
|
1387
|
+
CONVERSATION: "CONVERSATION",
|
|
1388
|
+
DICTATION: "DICTATION",
|
|
1389
|
+
};
|
|
1390
|
+
const TranscribeContentIdentificationType = {
|
|
1391
|
+
PII: "PII",
|
|
1392
|
+
};
|
|
1393
|
+
const TranscribeContentRedactionType = {
|
|
1394
|
+
PII: "PII",
|
|
1395
|
+
};
|
|
1396
|
+
const TranscribeLanguageCode = {
|
|
1397
|
+
DE_DE: "de-DE",
|
|
1398
|
+
EN_AU: "en-AU",
|
|
1399
|
+
EN_GB: "en-GB",
|
|
1400
|
+
EN_US: "en-US",
|
|
1401
|
+
ES_US: "es-US",
|
|
1402
|
+
FR_CA: "fr-CA",
|
|
1403
|
+
FR_FR: "fr-FR",
|
|
1404
|
+
HI_IN: "hi-IN",
|
|
1405
|
+
IT_IT: "it-IT",
|
|
1406
|
+
JA_JP: "ja-JP",
|
|
1407
|
+
KO_KR: "ko-KR",
|
|
1408
|
+
PT_BR: "pt-BR",
|
|
1409
|
+
TH_TH: "th-TH",
|
|
1410
|
+
ZH_CN: "zh-CN",
|
|
1411
|
+
};
|
|
1412
|
+
const TranscribePartialResultsStability = {
|
|
1413
|
+
HIGH: "high",
|
|
1414
|
+
LOW: "low",
|
|
1415
|
+
MEDIUM: "medium",
|
|
1416
|
+
};
|
|
1417
|
+
const TranscribeRegion = {
|
|
1418
|
+
AP_NORTHEAST_1: "ap-northeast-1",
|
|
1419
|
+
AP_NORTHEAST_2: "ap-northeast-2",
|
|
1420
|
+
AP_SOUTHEAST_2: "ap-southeast-2",
|
|
1421
|
+
AUTO: "auto",
|
|
1422
|
+
CA_CENTRAL_1: "ca-central-1",
|
|
1423
|
+
EU_CENTRAL_1: "eu-central-1",
|
|
1424
|
+
EU_WEST_1: "eu-west-1",
|
|
1425
|
+
EU_WEST_2: "eu-west-2",
|
|
1426
|
+
SA_EAST_1: "sa-east-1",
|
|
1427
|
+
US_EAST_1: "us-east-1",
|
|
1428
|
+
US_EAST_2: "us-east-2",
|
|
1429
|
+
US_GOV_WEST_1: "us-gov-west-1",
|
|
1430
|
+
US_WEST_2: "us-west-2",
|
|
1431
|
+
};
|
|
1432
|
+
const TranscribeVocabularyFilterMethod = {
|
|
1433
|
+
MASK: "mask",
|
|
1434
|
+
REMOVE: "remove",
|
|
1435
|
+
TAG: "tag",
|
|
1436
|
+
};
|
|
1437
|
+
|
|
1437
1438
|
Object.defineProperty(exports, "$Command", {
|
|
1438
1439
|
enumerable: true,
|
|
1439
1440
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./ChimeSDKMeetingsClient";
|
|
|
2
2
|
export * from "./ChimeSDKMeetings";
|
|
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 { ChimeSDKMeetingsServiceException } from "./models/ChimeSDKMeetingsServiceException";
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
export const MediaCapabilities = {
|
|
2
|
+
NONE: "None",
|
|
3
|
+
RECEIVE: "Receive",
|
|
4
|
+
SEND: "Send",
|
|
5
|
+
SEND_RECEIVE: "SendReceive",
|
|
6
|
+
};
|
|
7
|
+
export const MeetingFeatureStatus = {
|
|
8
|
+
AVAILABLE: "AVAILABLE",
|
|
9
|
+
UNAVAILABLE: "UNAVAILABLE",
|
|
10
|
+
};
|
|
11
|
+
export const MediaPlacementNetworkType = {
|
|
12
|
+
DUAL_STACK: "DualStack",
|
|
13
|
+
IPV4_ONLY: "Ipv4Only",
|
|
14
|
+
};
|
|
15
|
+
export const ContentResolution = {
|
|
16
|
+
FHD: "FHD",
|
|
17
|
+
NONE: "None",
|
|
18
|
+
UHD: "UHD",
|
|
19
|
+
};
|
|
20
|
+
export const VideoResolution = {
|
|
21
|
+
FHD: "FHD",
|
|
22
|
+
HD: "HD",
|
|
23
|
+
NONE: "None",
|
|
24
|
+
};
|
|
25
|
+
export const TranscribeMedicalContentIdentificationType = {
|
|
26
|
+
PHI: "PHI",
|
|
27
|
+
};
|
|
28
|
+
export const TranscribeMedicalLanguageCode = {
|
|
29
|
+
EN_US: "en-US",
|
|
30
|
+
};
|
|
31
|
+
export const TranscribeMedicalRegion = {
|
|
32
|
+
AP_SOUTHEAST_2: "ap-southeast-2",
|
|
33
|
+
AUTO: "auto",
|
|
34
|
+
CA_CENTRAL_1: "ca-central-1",
|
|
35
|
+
EU_WEST_1: "eu-west-1",
|
|
36
|
+
US_EAST_1: "us-east-1",
|
|
37
|
+
US_EAST_2: "us-east-2",
|
|
38
|
+
US_WEST_2: "us-west-2",
|
|
39
|
+
};
|
|
40
|
+
export const TranscribeMedicalSpecialty = {
|
|
41
|
+
CARDIOLOGY: "CARDIOLOGY",
|
|
42
|
+
NEUROLOGY: "NEUROLOGY",
|
|
43
|
+
ONCOLOGY: "ONCOLOGY",
|
|
44
|
+
PRIMARYCARE: "PRIMARYCARE",
|
|
45
|
+
RADIOLOGY: "RADIOLOGY",
|
|
46
|
+
UROLOGY: "UROLOGY",
|
|
47
|
+
};
|
|
48
|
+
export const TranscribeMedicalType = {
|
|
49
|
+
CONVERSATION: "CONVERSATION",
|
|
50
|
+
DICTATION: "DICTATION",
|
|
51
|
+
};
|
|
52
|
+
export const TranscribeContentIdentificationType = {
|
|
53
|
+
PII: "PII",
|
|
54
|
+
};
|
|
55
|
+
export const TranscribeContentRedactionType = {
|
|
56
|
+
PII: "PII",
|
|
57
|
+
};
|
|
58
|
+
export const TranscribeLanguageCode = {
|
|
59
|
+
DE_DE: "de-DE",
|
|
60
|
+
EN_AU: "en-AU",
|
|
61
|
+
EN_GB: "en-GB",
|
|
62
|
+
EN_US: "en-US",
|
|
63
|
+
ES_US: "es-US",
|
|
64
|
+
FR_CA: "fr-CA",
|
|
65
|
+
FR_FR: "fr-FR",
|
|
66
|
+
HI_IN: "hi-IN",
|
|
67
|
+
IT_IT: "it-IT",
|
|
68
|
+
JA_JP: "ja-JP",
|
|
69
|
+
KO_KR: "ko-KR",
|
|
70
|
+
PT_BR: "pt-BR",
|
|
71
|
+
TH_TH: "th-TH",
|
|
72
|
+
ZH_CN: "zh-CN",
|
|
73
|
+
};
|
|
74
|
+
export const TranscribePartialResultsStability = {
|
|
75
|
+
HIGH: "high",
|
|
76
|
+
LOW: "low",
|
|
77
|
+
MEDIUM: "medium",
|
|
78
|
+
};
|
|
79
|
+
export const TranscribeRegion = {
|
|
80
|
+
AP_NORTHEAST_1: "ap-northeast-1",
|
|
81
|
+
AP_NORTHEAST_2: "ap-northeast-2",
|
|
82
|
+
AP_SOUTHEAST_2: "ap-southeast-2",
|
|
83
|
+
AUTO: "auto",
|
|
84
|
+
CA_CENTRAL_1: "ca-central-1",
|
|
85
|
+
EU_CENTRAL_1: "eu-central-1",
|
|
86
|
+
EU_WEST_1: "eu-west-1",
|
|
87
|
+
EU_WEST_2: "eu-west-2",
|
|
88
|
+
SA_EAST_1: "sa-east-1",
|
|
89
|
+
US_EAST_1: "us-east-1",
|
|
90
|
+
US_EAST_2: "us-east-2",
|
|
91
|
+
US_GOV_WEST_1: "us-gov-west-1",
|
|
92
|
+
US_WEST_2: "us-west-2",
|
|
93
|
+
};
|
|
94
|
+
export const TranscribeVocabularyFilterMethod = {
|
|
95
|
+
MASK: "mask",
|
|
96
|
+
REMOVE: "remove",
|
|
97
|
+
TAG: "tag",
|
|
98
|
+
};
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
2
|
+
export class BadRequestException extends __BaseException {
|
|
3
|
+
name = "BadRequestException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Code;
|
|
6
|
+
Message;
|
|
7
|
+
RequestId;
|
|
8
|
+
constructor(opts) {
|
|
9
|
+
super({
|
|
10
|
+
name: "BadRequestException",
|
|
11
|
+
$fault: "client",
|
|
12
|
+
...opts,
|
|
13
|
+
});
|
|
14
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
15
|
+
this.Code = opts.Code;
|
|
16
|
+
this.Message = opts.Message;
|
|
17
|
+
this.RequestId = opts.RequestId;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export class ForbiddenException extends __BaseException {
|
|
21
|
+
name = "ForbiddenException";
|
|
22
|
+
$fault = "client";
|
|
23
|
+
Code;
|
|
24
|
+
Message;
|
|
25
|
+
RequestId;
|
|
26
|
+
constructor(opts) {
|
|
27
|
+
super({
|
|
28
|
+
name: "ForbiddenException",
|
|
29
|
+
$fault: "client",
|
|
30
|
+
...opts,
|
|
31
|
+
});
|
|
32
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
33
|
+
this.Code = opts.Code;
|
|
34
|
+
this.Message = opts.Message;
|
|
35
|
+
this.RequestId = opts.RequestId;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class LimitExceededException extends __BaseException {
|
|
39
|
+
name = "LimitExceededException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
Code;
|
|
42
|
+
Message;
|
|
43
|
+
RequestId;
|
|
44
|
+
constructor(opts) {
|
|
45
|
+
super({
|
|
46
|
+
name: "LimitExceededException",
|
|
47
|
+
$fault: "client",
|
|
48
|
+
...opts,
|
|
49
|
+
});
|
|
50
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
51
|
+
this.Code = opts.Code;
|
|
52
|
+
this.Message = opts.Message;
|
|
53
|
+
this.RequestId = opts.RequestId;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
export class NotFoundException extends __BaseException {
|
|
57
|
+
name = "NotFoundException";
|
|
58
|
+
$fault = "client";
|
|
59
|
+
Code;
|
|
60
|
+
Message;
|
|
61
|
+
RequestId;
|
|
62
|
+
constructor(opts) {
|
|
63
|
+
super({
|
|
64
|
+
name: "NotFoundException",
|
|
65
|
+
$fault: "client",
|
|
66
|
+
...opts,
|
|
67
|
+
});
|
|
68
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
69
|
+
this.Code = opts.Code;
|
|
70
|
+
this.Message = opts.Message;
|
|
71
|
+
this.RequestId = opts.RequestId;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class ServiceFailureException extends __BaseException {
|
|
75
|
+
name = "ServiceFailureException";
|
|
76
|
+
$fault = "server";
|
|
77
|
+
Code;
|
|
78
|
+
Message;
|
|
79
|
+
RequestId;
|
|
80
|
+
constructor(opts) {
|
|
81
|
+
super({
|
|
82
|
+
name: "ServiceFailureException",
|
|
83
|
+
$fault: "server",
|
|
84
|
+
...opts,
|
|
85
|
+
});
|
|
86
|
+
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
87
|
+
this.Code = opts.Code;
|
|
88
|
+
this.Message = opts.Message;
|
|
89
|
+
this.RequestId = opts.RequestId;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
93
|
+
name = "ServiceUnavailableException";
|
|
94
|
+
$fault = "server";
|
|
95
|
+
Code;
|
|
96
|
+
Message;
|
|
97
|
+
RequestId;
|
|
98
|
+
RetryAfterSeconds;
|
|
99
|
+
constructor(opts) {
|
|
100
|
+
super({
|
|
101
|
+
name: "ServiceUnavailableException",
|
|
102
|
+
$fault: "server",
|
|
103
|
+
...opts,
|
|
104
|
+
});
|
|
105
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
106
|
+
this.Code = opts.Code;
|
|
107
|
+
this.Message = opts.Message;
|
|
108
|
+
this.RequestId = opts.RequestId;
|
|
109
|
+
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
export class ThrottlingException extends __BaseException {
|
|
113
|
+
name = "ThrottlingException";
|
|
114
|
+
$fault = "client";
|
|
115
|
+
Code;
|
|
116
|
+
Message;
|
|
117
|
+
RequestId;
|
|
118
|
+
constructor(opts) {
|
|
119
|
+
super({
|
|
120
|
+
name: "ThrottlingException",
|
|
121
|
+
$fault: "client",
|
|
122
|
+
...opts,
|
|
123
|
+
});
|
|
124
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
125
|
+
this.Code = opts.Code;
|
|
126
|
+
this.Message = opts.Message;
|
|
127
|
+
this.RequestId = opts.RequestId;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
export class UnauthorizedException extends __BaseException {
|
|
131
|
+
name = "UnauthorizedException";
|
|
132
|
+
$fault = "client";
|
|
133
|
+
Code;
|
|
134
|
+
Message;
|
|
135
|
+
RequestId;
|
|
136
|
+
constructor(opts) {
|
|
137
|
+
super({
|
|
138
|
+
name: "UnauthorizedException",
|
|
139
|
+
$fault: "client",
|
|
140
|
+
...opts,
|
|
141
|
+
});
|
|
142
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
143
|
+
this.Code = opts.Code;
|
|
144
|
+
this.Message = opts.Message;
|
|
145
|
+
this.RequestId = opts.RequestId;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
export class UnprocessableEntityException extends __BaseException {
|
|
149
|
+
name = "UnprocessableEntityException";
|
|
150
|
+
$fault = "client";
|
|
151
|
+
Code;
|
|
152
|
+
Message;
|
|
153
|
+
RequestId;
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "UnprocessableEntityException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
161
|
+
this.Code = opts.Code;
|
|
162
|
+
this.Message = opts.Message;
|
|
163
|
+
this.RequestId = opts.RequestId;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
export class ConflictException extends __BaseException {
|
|
167
|
+
name = "ConflictException";
|
|
168
|
+
$fault = "client";
|
|
169
|
+
Code;
|
|
170
|
+
Message;
|
|
171
|
+
RequestId;
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "ConflictException",
|
|
175
|
+
$fault: "client",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
179
|
+
this.Code = opts.Code;
|
|
180
|
+
this.Message = opts.Message;
|
|
181
|
+
this.RequestId = opts.RequestId;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
185
|
+
name = "ResourceNotFoundException";
|
|
186
|
+
$fault = "client";
|
|
187
|
+
Code;
|
|
188
|
+
Message;
|
|
189
|
+
RequestId;
|
|
190
|
+
ResourceName;
|
|
191
|
+
constructor(opts) {
|
|
192
|
+
super({
|
|
193
|
+
name: "ResourceNotFoundException",
|
|
194
|
+
$fault: "client",
|
|
195
|
+
...opts,
|
|
196
|
+
});
|
|
197
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
198
|
+
this.Code = opts.Code;
|
|
199
|
+
this.Message = opts.Message;
|
|
200
|
+
this.RequestId = opts.RequestId;
|
|
201
|
+
this.ResourceName = opts.ResourceName;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
export class TooManyTagsException extends __BaseException {
|
|
205
|
+
name = "TooManyTagsException";
|
|
206
|
+
$fault = "client";
|
|
207
|
+
Code;
|
|
208
|
+
Message;
|
|
209
|
+
RequestId;
|
|
210
|
+
ResourceName;
|
|
211
|
+
constructor(opts) {
|
|
212
|
+
super({
|
|
213
|
+
name: "TooManyTagsException",
|
|
214
|
+
$fault: "client",
|
|
215
|
+
...opts,
|
|
216
|
+
});
|
|
217
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
218
|
+
this.Code = opts.Code;
|
|
219
|
+
this.Message = opts.Message;
|
|
220
|
+
this.RequestId = opts.RequestId;
|
|
221
|
+
this.ResourceName = opts.ResourceName;
|
|
222
|
+
}
|
|
223
|
+
}
|