@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
|
@@ -1,321 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const MediaCapabilities = {
|
|
3
|
-
NONE: "None",
|
|
4
|
-
RECEIVE: "Receive",
|
|
5
|
-
SEND: "Send",
|
|
6
|
-
SEND_RECEIVE: "SendReceive",
|
|
7
|
-
};
|
|
8
|
-
export const MeetingFeatureStatus = {
|
|
9
|
-
AVAILABLE: "AVAILABLE",
|
|
10
|
-
UNAVAILABLE: "UNAVAILABLE",
|
|
11
|
-
};
|
|
12
|
-
export class BadRequestException extends __BaseException {
|
|
13
|
-
name = "BadRequestException";
|
|
14
|
-
$fault = "client";
|
|
15
|
-
Code;
|
|
16
|
-
Message;
|
|
17
|
-
RequestId;
|
|
18
|
-
constructor(opts) {
|
|
19
|
-
super({
|
|
20
|
-
name: "BadRequestException",
|
|
21
|
-
$fault: "client",
|
|
22
|
-
...opts,
|
|
23
|
-
});
|
|
24
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
25
|
-
this.Code = opts.Code;
|
|
26
|
-
this.Message = opts.Message;
|
|
27
|
-
this.RequestId = opts.RequestId;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
export class ForbiddenException extends __BaseException {
|
|
31
|
-
name = "ForbiddenException";
|
|
32
|
-
$fault = "client";
|
|
33
|
-
Code;
|
|
34
|
-
Message;
|
|
35
|
-
RequestId;
|
|
36
|
-
constructor(opts) {
|
|
37
|
-
super({
|
|
38
|
-
name: "ForbiddenException",
|
|
39
|
-
$fault: "client",
|
|
40
|
-
...opts,
|
|
41
|
-
});
|
|
42
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
43
|
-
this.Code = opts.Code;
|
|
44
|
-
this.Message = opts.Message;
|
|
45
|
-
this.RequestId = opts.RequestId;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
export class LimitExceededException extends __BaseException {
|
|
49
|
-
name = "LimitExceededException";
|
|
50
|
-
$fault = "client";
|
|
51
|
-
Code;
|
|
52
|
-
Message;
|
|
53
|
-
RequestId;
|
|
54
|
-
constructor(opts) {
|
|
55
|
-
super({
|
|
56
|
-
name: "LimitExceededException",
|
|
57
|
-
$fault: "client",
|
|
58
|
-
...opts,
|
|
59
|
-
});
|
|
60
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
61
|
-
this.Code = opts.Code;
|
|
62
|
-
this.Message = opts.Message;
|
|
63
|
-
this.RequestId = opts.RequestId;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
export class NotFoundException extends __BaseException {
|
|
67
|
-
name = "NotFoundException";
|
|
68
|
-
$fault = "client";
|
|
69
|
-
Code;
|
|
70
|
-
Message;
|
|
71
|
-
RequestId;
|
|
72
|
-
constructor(opts) {
|
|
73
|
-
super({
|
|
74
|
-
name: "NotFoundException",
|
|
75
|
-
$fault: "client",
|
|
76
|
-
...opts,
|
|
77
|
-
});
|
|
78
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
79
|
-
this.Code = opts.Code;
|
|
80
|
-
this.Message = opts.Message;
|
|
81
|
-
this.RequestId = opts.RequestId;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
export class ServiceFailureException extends __BaseException {
|
|
85
|
-
name = "ServiceFailureException";
|
|
86
|
-
$fault = "server";
|
|
87
|
-
Code;
|
|
88
|
-
Message;
|
|
89
|
-
RequestId;
|
|
90
|
-
constructor(opts) {
|
|
91
|
-
super({
|
|
92
|
-
name: "ServiceFailureException",
|
|
93
|
-
$fault: "server",
|
|
94
|
-
...opts,
|
|
95
|
-
});
|
|
96
|
-
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
97
|
-
this.Code = opts.Code;
|
|
98
|
-
this.Message = opts.Message;
|
|
99
|
-
this.RequestId = opts.RequestId;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
export class ServiceUnavailableException extends __BaseException {
|
|
103
|
-
name = "ServiceUnavailableException";
|
|
104
|
-
$fault = "server";
|
|
105
|
-
Code;
|
|
106
|
-
Message;
|
|
107
|
-
RequestId;
|
|
108
|
-
RetryAfterSeconds;
|
|
109
|
-
constructor(opts) {
|
|
110
|
-
super({
|
|
111
|
-
name: "ServiceUnavailableException",
|
|
112
|
-
$fault: "server",
|
|
113
|
-
...opts,
|
|
114
|
-
});
|
|
115
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
116
|
-
this.Code = opts.Code;
|
|
117
|
-
this.Message = opts.Message;
|
|
118
|
-
this.RequestId = opts.RequestId;
|
|
119
|
-
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
export class ThrottlingException extends __BaseException {
|
|
123
|
-
name = "ThrottlingException";
|
|
124
|
-
$fault = "client";
|
|
125
|
-
Code;
|
|
126
|
-
Message;
|
|
127
|
-
RequestId;
|
|
128
|
-
constructor(opts) {
|
|
129
|
-
super({
|
|
130
|
-
name: "ThrottlingException",
|
|
131
|
-
$fault: "client",
|
|
132
|
-
...opts,
|
|
133
|
-
});
|
|
134
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
135
|
-
this.Code = opts.Code;
|
|
136
|
-
this.Message = opts.Message;
|
|
137
|
-
this.RequestId = opts.RequestId;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
export class UnauthorizedException extends __BaseException {
|
|
141
|
-
name = "UnauthorizedException";
|
|
142
|
-
$fault = "client";
|
|
143
|
-
Code;
|
|
144
|
-
Message;
|
|
145
|
-
RequestId;
|
|
146
|
-
constructor(opts) {
|
|
147
|
-
super({
|
|
148
|
-
name: "UnauthorizedException",
|
|
149
|
-
$fault: "client",
|
|
150
|
-
...opts,
|
|
151
|
-
});
|
|
152
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
153
|
-
this.Code = opts.Code;
|
|
154
|
-
this.Message = opts.Message;
|
|
155
|
-
this.RequestId = opts.RequestId;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
export class UnprocessableEntityException extends __BaseException {
|
|
159
|
-
name = "UnprocessableEntityException";
|
|
160
|
-
$fault = "client";
|
|
161
|
-
Code;
|
|
162
|
-
Message;
|
|
163
|
-
RequestId;
|
|
164
|
-
constructor(opts) {
|
|
165
|
-
super({
|
|
166
|
-
name: "UnprocessableEntityException",
|
|
167
|
-
$fault: "client",
|
|
168
|
-
...opts,
|
|
169
|
-
});
|
|
170
|
-
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
171
|
-
this.Code = opts.Code;
|
|
172
|
-
this.Message = opts.Message;
|
|
173
|
-
this.RequestId = opts.RequestId;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
export class ConflictException extends __BaseException {
|
|
177
|
-
name = "ConflictException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Code;
|
|
180
|
-
Message;
|
|
181
|
-
RequestId;
|
|
182
|
-
constructor(opts) {
|
|
183
|
-
super({
|
|
184
|
-
name: "ConflictException",
|
|
185
|
-
$fault: "client",
|
|
186
|
-
...opts,
|
|
187
|
-
});
|
|
188
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
189
|
-
this.Code = opts.Code;
|
|
190
|
-
this.Message = opts.Message;
|
|
191
|
-
this.RequestId = opts.RequestId;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
export const MediaPlacementNetworkType = {
|
|
195
|
-
DUAL_STACK: "DualStack",
|
|
196
|
-
IPV4_ONLY: "Ipv4Only",
|
|
197
|
-
};
|
|
198
|
-
export const ContentResolution = {
|
|
199
|
-
FHD: "FHD",
|
|
200
|
-
NONE: "None",
|
|
201
|
-
UHD: "UHD",
|
|
202
|
-
};
|
|
203
|
-
export const VideoResolution = {
|
|
204
|
-
FHD: "FHD",
|
|
205
|
-
HD: "HD",
|
|
206
|
-
NONE: "None",
|
|
207
|
-
};
|
|
208
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
209
|
-
name = "ResourceNotFoundException";
|
|
210
|
-
$fault = "client";
|
|
211
|
-
Code;
|
|
212
|
-
Message;
|
|
213
|
-
RequestId;
|
|
214
|
-
ResourceName;
|
|
215
|
-
constructor(opts) {
|
|
216
|
-
super({
|
|
217
|
-
name: "ResourceNotFoundException",
|
|
218
|
-
$fault: "client",
|
|
219
|
-
...opts,
|
|
220
|
-
});
|
|
221
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
222
|
-
this.Code = opts.Code;
|
|
223
|
-
this.Message = opts.Message;
|
|
224
|
-
this.RequestId = opts.RequestId;
|
|
225
|
-
this.ResourceName = opts.ResourceName;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
export const TranscribeMedicalContentIdentificationType = {
|
|
229
|
-
PHI: "PHI",
|
|
230
|
-
};
|
|
231
|
-
export const TranscribeMedicalLanguageCode = {
|
|
232
|
-
EN_US: "en-US",
|
|
233
|
-
};
|
|
234
|
-
export const TranscribeMedicalRegion = {
|
|
235
|
-
AP_SOUTHEAST_2: "ap-southeast-2",
|
|
236
|
-
AUTO: "auto",
|
|
237
|
-
CA_CENTRAL_1: "ca-central-1",
|
|
238
|
-
EU_WEST_1: "eu-west-1",
|
|
239
|
-
US_EAST_1: "us-east-1",
|
|
240
|
-
US_EAST_2: "us-east-2",
|
|
241
|
-
US_WEST_2: "us-west-2",
|
|
242
|
-
};
|
|
243
|
-
export const TranscribeMedicalSpecialty = {
|
|
244
|
-
CARDIOLOGY: "CARDIOLOGY",
|
|
245
|
-
NEUROLOGY: "NEUROLOGY",
|
|
246
|
-
ONCOLOGY: "ONCOLOGY",
|
|
247
|
-
PRIMARYCARE: "PRIMARYCARE",
|
|
248
|
-
RADIOLOGY: "RADIOLOGY",
|
|
249
|
-
UROLOGY: "UROLOGY",
|
|
250
|
-
};
|
|
251
|
-
export const TranscribeMedicalType = {
|
|
252
|
-
CONVERSATION: "CONVERSATION",
|
|
253
|
-
DICTATION: "DICTATION",
|
|
254
|
-
};
|
|
255
|
-
export const TranscribeContentIdentificationType = {
|
|
256
|
-
PII: "PII",
|
|
257
|
-
};
|
|
258
|
-
export const TranscribeContentRedactionType = {
|
|
259
|
-
PII: "PII",
|
|
260
|
-
};
|
|
261
|
-
export const TranscribeLanguageCode = {
|
|
262
|
-
DE_DE: "de-DE",
|
|
263
|
-
EN_AU: "en-AU",
|
|
264
|
-
EN_GB: "en-GB",
|
|
265
|
-
EN_US: "en-US",
|
|
266
|
-
ES_US: "es-US",
|
|
267
|
-
FR_CA: "fr-CA",
|
|
268
|
-
FR_FR: "fr-FR",
|
|
269
|
-
HI_IN: "hi-IN",
|
|
270
|
-
IT_IT: "it-IT",
|
|
271
|
-
JA_JP: "ja-JP",
|
|
272
|
-
KO_KR: "ko-KR",
|
|
273
|
-
PT_BR: "pt-BR",
|
|
274
|
-
TH_TH: "th-TH",
|
|
275
|
-
ZH_CN: "zh-CN",
|
|
276
|
-
};
|
|
277
|
-
export const TranscribePartialResultsStability = {
|
|
278
|
-
HIGH: "high",
|
|
279
|
-
LOW: "low",
|
|
280
|
-
MEDIUM: "medium",
|
|
281
|
-
};
|
|
282
|
-
export const TranscribeRegion = {
|
|
283
|
-
AP_NORTHEAST_1: "ap-northeast-1",
|
|
284
|
-
AP_NORTHEAST_2: "ap-northeast-2",
|
|
285
|
-
AP_SOUTHEAST_2: "ap-southeast-2",
|
|
286
|
-
AUTO: "auto",
|
|
287
|
-
CA_CENTRAL_1: "ca-central-1",
|
|
288
|
-
EU_CENTRAL_1: "eu-central-1",
|
|
289
|
-
EU_WEST_1: "eu-west-1",
|
|
290
|
-
EU_WEST_2: "eu-west-2",
|
|
291
|
-
SA_EAST_1: "sa-east-1",
|
|
292
|
-
US_EAST_1: "us-east-1",
|
|
293
|
-
US_EAST_2: "us-east-2",
|
|
294
|
-
US_GOV_WEST_1: "us-gov-west-1",
|
|
295
|
-
US_WEST_2: "us-west-2",
|
|
296
|
-
};
|
|
297
|
-
export const TranscribeVocabularyFilterMethod = {
|
|
298
|
-
MASK: "mask",
|
|
299
|
-
REMOVE: "remove",
|
|
300
|
-
TAG: "tag",
|
|
301
|
-
};
|
|
302
|
-
export class TooManyTagsException extends __BaseException {
|
|
303
|
-
name = "TooManyTagsException";
|
|
304
|
-
$fault = "client";
|
|
305
|
-
Code;
|
|
306
|
-
Message;
|
|
307
|
-
RequestId;
|
|
308
|
-
ResourceName;
|
|
309
|
-
constructor(opts) {
|
|
310
|
-
super({
|
|
311
|
-
name: "TooManyTagsException",
|
|
312
|
-
$fault: "client",
|
|
313
|
-
...opts,
|
|
314
|
-
});
|
|
315
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
316
|
-
this.Code = opts.Code;
|
|
317
|
-
this.Message = opts.Message;
|
|
318
|
-
this.RequestId = opts.RequestId;
|
|
319
|
-
this.ResourceName = opts.ResourceName;
|
|
320
|
-
}
|
|
321
|
-
}
|
|
1
|
+
export {};
|
|
@@ -159,7 +159,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.chimesdkmeetings";
|
|
|
159
159
|
const n0 = "com.amazonaws.chimesdkmeetings";
|
|
160
160
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
161
161
|
import { ChimeSDKMeetingsServiceException as __ChimeSDKMeetingsServiceException } from "../models/ChimeSDKMeetingsServiceException";
|
|
162
|
-
import { BadRequestException as __BadRequestException, ConflictException as __ConflictException, ForbiddenException as __ForbiddenException, LimitExceededException as __LimitExceededException, NotFoundException as __NotFoundException, ResourceNotFoundException as __ResourceNotFoundException, ServiceFailureException as __ServiceFailureException, ServiceUnavailableException as __ServiceUnavailableException, ThrottlingException as __ThrottlingException, TooManyTagsException as __TooManyTagsException, UnauthorizedException as __UnauthorizedException, UnprocessableEntityException as __UnprocessableEntityException, } from "../models/
|
|
162
|
+
import { BadRequestException as __BadRequestException, ConflictException as __ConflictException, ForbiddenException as __ForbiddenException, LimitExceededException as __LimitExceededException, NotFoundException as __NotFoundException, ResourceNotFoundException as __ResourceNotFoundException, ServiceFailureException as __ServiceFailureException, ServiceUnavailableException as __ServiceUnavailableException, ThrottlingException as __ThrottlingException, TooManyTagsException as __TooManyTagsException, UnauthorizedException as __UnauthorizedException, UnprocessableEntityException as __UnprocessableEntityException, } from "../models/errors";
|
|
163
163
|
export var Arn = [0, n0, _A, 8, 0];
|
|
164
164
|
export var ClientRequestToken = [0, n0, _CRT, 8, 0];
|
|
165
165
|
export var ExternalMeetingId = [0, n0, _EMI, 8, 0];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -12,5 +12,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
12
12
|
export type { ChimeSDKMeetingsExtensionConfiguration } from "./extensionConfiguration";
|
|
13
13
|
export * from "./commands";
|
|
14
14
|
export * from "./pagination";
|
|
15
|
-
export * from "./models";
|
|
15
|
+
export * from "./models/enums";
|
|
16
|
+
export * from "./models/errors";
|
|
17
|
+
export type * from "./models/models_0";
|
|
16
18
|
export { ChimeSDKMeetingsServiceException } from "./models/ChimeSDKMeetingsServiceException";
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const MediaCapabilities: {
|
|
6
|
+
readonly NONE: "None";
|
|
7
|
+
readonly RECEIVE: "Receive";
|
|
8
|
+
readonly SEND: "Send";
|
|
9
|
+
readonly SEND_RECEIVE: "SendReceive";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type MediaCapabilities = (typeof MediaCapabilities)[keyof typeof MediaCapabilities];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* @enum
|
|
18
|
+
*/
|
|
19
|
+
export declare const MeetingFeatureStatus: {
|
|
20
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
21
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type MeetingFeatureStatus = (typeof MeetingFeatureStatus)[keyof typeof MeetingFeatureStatus];
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* @enum
|
|
30
|
+
*/
|
|
31
|
+
export declare const MediaPlacementNetworkType: {
|
|
32
|
+
readonly DUAL_STACK: "DualStack";
|
|
33
|
+
readonly IPV4_ONLY: "Ipv4Only";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type MediaPlacementNetworkType = (typeof MediaPlacementNetworkType)[keyof typeof MediaPlacementNetworkType];
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* @enum
|
|
42
|
+
*/
|
|
43
|
+
export declare const ContentResolution: {
|
|
44
|
+
readonly FHD: "FHD";
|
|
45
|
+
readonly NONE: "None";
|
|
46
|
+
readonly UHD: "UHD";
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export type ContentResolution = (typeof ContentResolution)[keyof typeof ContentResolution];
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* @enum
|
|
55
|
+
*/
|
|
56
|
+
export declare const VideoResolution: {
|
|
57
|
+
readonly FHD: "FHD";
|
|
58
|
+
readonly HD: "HD";
|
|
59
|
+
readonly NONE: "None";
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export type VideoResolution = (typeof VideoResolution)[keyof typeof VideoResolution];
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
* @enum
|
|
68
|
+
*/
|
|
69
|
+
export declare const TranscribeMedicalContentIdentificationType: {
|
|
70
|
+
readonly PHI: "PHI";
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export type TranscribeMedicalContentIdentificationType = (typeof TranscribeMedicalContentIdentificationType)[keyof typeof TranscribeMedicalContentIdentificationType];
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
* @enum
|
|
79
|
+
*/
|
|
80
|
+
export declare const TranscribeMedicalLanguageCode: {
|
|
81
|
+
readonly EN_US: "en-US";
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export type TranscribeMedicalLanguageCode = (typeof TranscribeMedicalLanguageCode)[keyof typeof TranscribeMedicalLanguageCode];
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* @enum
|
|
90
|
+
*/
|
|
91
|
+
export declare const TranscribeMedicalRegion: {
|
|
92
|
+
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
93
|
+
readonly AUTO: "auto";
|
|
94
|
+
readonly CA_CENTRAL_1: "ca-central-1";
|
|
95
|
+
readonly EU_WEST_1: "eu-west-1";
|
|
96
|
+
readonly US_EAST_1: "us-east-1";
|
|
97
|
+
readonly US_EAST_2: "us-east-2";
|
|
98
|
+
readonly US_WEST_2: "us-west-2";
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export type TranscribeMedicalRegion = (typeof TranscribeMedicalRegion)[keyof typeof TranscribeMedicalRegion];
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
* @enum
|
|
107
|
+
*/
|
|
108
|
+
export declare const TranscribeMedicalSpecialty: {
|
|
109
|
+
readonly CARDIOLOGY: "CARDIOLOGY";
|
|
110
|
+
readonly NEUROLOGY: "NEUROLOGY";
|
|
111
|
+
readonly ONCOLOGY: "ONCOLOGY";
|
|
112
|
+
readonly PRIMARYCARE: "PRIMARYCARE";
|
|
113
|
+
readonly RADIOLOGY: "RADIOLOGY";
|
|
114
|
+
readonly UROLOGY: "UROLOGY";
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
export type TranscribeMedicalSpecialty = (typeof TranscribeMedicalSpecialty)[keyof typeof TranscribeMedicalSpecialty];
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
* @enum
|
|
123
|
+
*/
|
|
124
|
+
export declare const TranscribeMedicalType: {
|
|
125
|
+
readonly CONVERSATION: "CONVERSATION";
|
|
126
|
+
readonly DICTATION: "DICTATION";
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export type TranscribeMedicalType = (typeof TranscribeMedicalType)[keyof typeof TranscribeMedicalType];
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
* @enum
|
|
135
|
+
*/
|
|
136
|
+
export declare const TranscribeContentIdentificationType: {
|
|
137
|
+
readonly PII: "PII";
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
export type TranscribeContentIdentificationType = (typeof TranscribeContentIdentificationType)[keyof typeof TranscribeContentIdentificationType];
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
* @enum
|
|
146
|
+
*/
|
|
147
|
+
export declare const TranscribeContentRedactionType: {
|
|
148
|
+
readonly PII: "PII";
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
export type TranscribeContentRedactionType = (typeof TranscribeContentRedactionType)[keyof typeof TranscribeContentRedactionType];
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
* @enum
|
|
157
|
+
*/
|
|
158
|
+
export declare const TranscribeLanguageCode: {
|
|
159
|
+
readonly DE_DE: "de-DE";
|
|
160
|
+
readonly EN_AU: "en-AU";
|
|
161
|
+
readonly EN_GB: "en-GB";
|
|
162
|
+
readonly EN_US: "en-US";
|
|
163
|
+
readonly ES_US: "es-US";
|
|
164
|
+
readonly FR_CA: "fr-CA";
|
|
165
|
+
readonly FR_FR: "fr-FR";
|
|
166
|
+
readonly HI_IN: "hi-IN";
|
|
167
|
+
readonly IT_IT: "it-IT";
|
|
168
|
+
readonly JA_JP: "ja-JP";
|
|
169
|
+
readonly KO_KR: "ko-KR";
|
|
170
|
+
readonly PT_BR: "pt-BR";
|
|
171
|
+
readonly TH_TH: "th-TH";
|
|
172
|
+
readonly ZH_CN: "zh-CN";
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
export type TranscribeLanguageCode = (typeof TranscribeLanguageCode)[keyof typeof TranscribeLanguageCode];
|
|
178
|
+
/**
|
|
179
|
+
* @public
|
|
180
|
+
* @enum
|
|
181
|
+
*/
|
|
182
|
+
export declare const TranscribePartialResultsStability: {
|
|
183
|
+
readonly HIGH: "high";
|
|
184
|
+
readonly LOW: "low";
|
|
185
|
+
readonly MEDIUM: "medium";
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
export type TranscribePartialResultsStability = (typeof TranscribePartialResultsStability)[keyof typeof TranscribePartialResultsStability];
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
* @enum
|
|
194
|
+
*/
|
|
195
|
+
export declare const TranscribeRegion: {
|
|
196
|
+
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
197
|
+
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
198
|
+
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
199
|
+
readonly AUTO: "auto";
|
|
200
|
+
readonly CA_CENTRAL_1: "ca-central-1";
|
|
201
|
+
readonly EU_CENTRAL_1: "eu-central-1";
|
|
202
|
+
readonly EU_WEST_1: "eu-west-1";
|
|
203
|
+
readonly EU_WEST_2: "eu-west-2";
|
|
204
|
+
readonly SA_EAST_1: "sa-east-1";
|
|
205
|
+
readonly US_EAST_1: "us-east-1";
|
|
206
|
+
readonly US_EAST_2: "us-east-2";
|
|
207
|
+
readonly US_GOV_WEST_1: "us-gov-west-1";
|
|
208
|
+
readonly US_WEST_2: "us-west-2";
|
|
209
|
+
};
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
*/
|
|
213
|
+
export type TranscribeRegion = (typeof TranscribeRegion)[keyof typeof TranscribeRegion];
|
|
214
|
+
/**
|
|
215
|
+
* @public
|
|
216
|
+
* @enum
|
|
217
|
+
*/
|
|
218
|
+
export declare const TranscribeVocabularyFilterMethod: {
|
|
219
|
+
readonly MASK: "mask";
|
|
220
|
+
readonly REMOVE: "remove";
|
|
221
|
+
readonly TAG: "tag";
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
export type TranscribeVocabularyFilterMethod = (typeof TranscribeVocabularyFilterMethod)[keyof typeof TranscribeVocabularyFilterMethod];
|