@aws-sdk/client-transcribe 3.170.0 → 3.178.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/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Transcribe.d.ts +0 -39
- package/dist-types/ts3.4/TranscribeClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateCallAnalyticsCategoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLanguageModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateMedicalVocabularyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateVocabularyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateVocabularyFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteCallAnalyticsCategoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteCallAnalyticsJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLanguageModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteMedicalTranscriptionJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteMedicalVocabularyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteTranscriptionJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteVocabularyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteVocabularyFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeLanguageModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetCallAnalyticsCategoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetCallAnalyticsJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetMedicalTranscriptionJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetMedicalVocabularyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetTranscriptionJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetVocabularyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetVocabularyFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListCallAnalyticsCategoriesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListCallAnalyticsJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLanguageModelsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListMedicalTranscriptionJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListMedicalVocabulariesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTranscriptionJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListVocabulariesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListVocabularyFiltersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartCallAnalyticsJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartMedicalTranscriptionJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartTranscriptionJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateCallAnalyticsCategoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateMedicalVocabularyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateVocabularyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateVocabularyFilterCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/TranscribeServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -435
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { TranscribeServiceException as __BaseException } from "./TranscribeServiceException";
|
|
3
|
-
|
|
4
3
|
export interface AbsoluteTimeRange {
|
|
5
4
|
StartTime?: number;
|
|
6
|
-
|
|
7
5
|
EndTime?: number;
|
|
8
|
-
|
|
9
6
|
First?: number;
|
|
10
|
-
|
|
11
7
|
Last?: number;
|
|
12
8
|
}
|
|
13
|
-
|
|
14
9
|
export declare class BadRequestException extends __BaseException {
|
|
15
10
|
readonly name: "BadRequestException";
|
|
16
11
|
readonly $fault: "client";
|
|
17
12
|
Message?: string;
|
|
18
|
-
|
|
19
13
|
constructor(
|
|
20
14
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
21
15
|
);
|
|
@@ -34,10 +28,8 @@ export declare enum ParticipantRole {
|
|
|
34
28
|
AGENT = "AGENT",
|
|
35
29
|
CUSTOMER = "CUSTOMER",
|
|
36
30
|
}
|
|
37
|
-
|
|
38
31
|
export interface ChannelDefinition {
|
|
39
32
|
ChannelId?: number;
|
|
40
|
-
|
|
41
33
|
ParticipantRole?: ParticipantRole | string;
|
|
42
34
|
}
|
|
43
35
|
export declare enum LanguageCode {
|
|
@@ -79,10 +71,8 @@ export declare enum LanguageCode {
|
|
|
79
71
|
ZH_CN = "zh-CN",
|
|
80
72
|
ZH_TW = "zh-TW",
|
|
81
73
|
}
|
|
82
|
-
|
|
83
74
|
export interface Media {
|
|
84
75
|
MediaFileUri?: string;
|
|
85
|
-
|
|
86
76
|
RedactedMediaFileUri?: string;
|
|
87
77
|
}
|
|
88
78
|
export declare enum MediaFormat {
|
|
@@ -115,20 +105,14 @@ export declare enum RedactionOutput {
|
|
|
115
105
|
export declare enum RedactionType {
|
|
116
106
|
PII = "PII",
|
|
117
107
|
}
|
|
118
|
-
|
|
119
108
|
export interface ContentRedaction {
|
|
120
109
|
RedactionType: RedactionType | string | undefined;
|
|
121
|
-
|
|
122
110
|
RedactionOutput: RedactionOutput | string | undefined;
|
|
123
|
-
|
|
124
111
|
PiiEntityTypes?: (PiiEntityType | string)[];
|
|
125
112
|
}
|
|
126
|
-
|
|
127
113
|
export interface LanguageIdSettings {
|
|
128
114
|
VocabularyName?: string;
|
|
129
|
-
|
|
130
115
|
VocabularyFilterName?: string;
|
|
131
|
-
|
|
132
116
|
LanguageModelName?: string;
|
|
133
117
|
}
|
|
134
118
|
export declare enum VocabularyFilterMethod {
|
|
@@ -136,106 +120,62 @@ export declare enum VocabularyFilterMethod {
|
|
|
136
120
|
REMOVE = "remove",
|
|
137
121
|
TAG = "tag",
|
|
138
122
|
}
|
|
139
|
-
|
|
140
123
|
export interface CallAnalyticsJobSettings {
|
|
141
124
|
VocabularyName?: string;
|
|
142
|
-
|
|
143
125
|
VocabularyFilterName?: string;
|
|
144
|
-
|
|
145
126
|
VocabularyFilterMethod?: VocabularyFilterMethod | string;
|
|
146
|
-
|
|
147
127
|
LanguageModelName?: string;
|
|
148
|
-
|
|
149
128
|
ContentRedaction?: ContentRedaction;
|
|
150
|
-
|
|
151
129
|
LanguageOptions?: (LanguageCode | string)[];
|
|
152
|
-
|
|
153
130
|
LanguageIdSettings?: Record<string, LanguageIdSettings>;
|
|
154
131
|
}
|
|
155
|
-
|
|
156
132
|
export interface Transcript {
|
|
157
133
|
TranscriptFileUri?: string;
|
|
158
|
-
|
|
159
134
|
RedactedTranscriptFileUri?: string;
|
|
160
135
|
}
|
|
161
|
-
|
|
162
136
|
export interface CallAnalyticsJob {
|
|
163
137
|
CallAnalyticsJobName?: string;
|
|
164
|
-
|
|
165
138
|
CallAnalyticsJobStatus?: CallAnalyticsJobStatus | string;
|
|
166
|
-
|
|
167
139
|
LanguageCode?: LanguageCode | string;
|
|
168
|
-
|
|
169
140
|
MediaSampleRateHertz?: number;
|
|
170
|
-
|
|
171
141
|
MediaFormat?: MediaFormat | string;
|
|
172
|
-
|
|
173
142
|
Media?: Media;
|
|
174
|
-
|
|
175
143
|
Transcript?: Transcript;
|
|
176
|
-
|
|
177
144
|
StartTime?: Date;
|
|
178
|
-
|
|
179
145
|
CreationTime?: Date;
|
|
180
|
-
|
|
181
146
|
CompletionTime?: Date;
|
|
182
|
-
|
|
183
147
|
FailureReason?: string;
|
|
184
|
-
|
|
185
148
|
DataAccessRoleArn?: string;
|
|
186
|
-
|
|
187
149
|
IdentifiedLanguageScore?: number;
|
|
188
|
-
|
|
189
150
|
Settings?: CallAnalyticsJobSettings;
|
|
190
|
-
|
|
191
151
|
ChannelDefinitions?: ChannelDefinition[];
|
|
192
152
|
}
|
|
193
|
-
|
|
194
153
|
export interface CallAnalyticsJobSummary {
|
|
195
154
|
CallAnalyticsJobName?: string;
|
|
196
|
-
|
|
197
155
|
CreationTime?: Date;
|
|
198
|
-
|
|
199
156
|
StartTime?: Date;
|
|
200
|
-
|
|
201
157
|
CompletionTime?: Date;
|
|
202
|
-
|
|
203
158
|
LanguageCode?: LanguageCode | string;
|
|
204
|
-
|
|
205
159
|
CallAnalyticsJobStatus?: CallAnalyticsJobStatus | string;
|
|
206
|
-
|
|
207
160
|
FailureReason?: string;
|
|
208
161
|
}
|
|
209
|
-
|
|
210
162
|
export interface RelativeTimeRange {
|
|
211
163
|
StartPercentage?: number;
|
|
212
|
-
|
|
213
164
|
EndPercentage?: number;
|
|
214
|
-
|
|
215
165
|
First?: number;
|
|
216
|
-
|
|
217
166
|
Last?: number;
|
|
218
167
|
}
|
|
219
|
-
|
|
220
168
|
export interface InterruptionFilter {
|
|
221
169
|
Threshold?: number;
|
|
222
|
-
|
|
223
170
|
ParticipantRole?: ParticipantRole | string;
|
|
224
|
-
|
|
225
171
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
226
|
-
|
|
227
172
|
RelativeTimeRange?: RelativeTimeRange;
|
|
228
|
-
|
|
229
173
|
Negate?: boolean;
|
|
230
174
|
}
|
|
231
|
-
|
|
232
175
|
export interface NonTalkTimeFilter {
|
|
233
176
|
Threshold?: number;
|
|
234
|
-
|
|
235
177
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
236
|
-
|
|
237
178
|
RelativeTimeRange?: RelativeTimeRange;
|
|
238
|
-
|
|
239
179
|
Negate?: boolean;
|
|
240
180
|
}
|
|
241
181
|
export declare enum SentimentValue {
|
|
@@ -244,36 +184,24 @@ export declare enum SentimentValue {
|
|
|
244
184
|
NEUTRAL = "NEUTRAL",
|
|
245
185
|
POSITIVE = "POSITIVE",
|
|
246
186
|
}
|
|
247
|
-
|
|
248
187
|
export interface SentimentFilter {
|
|
249
188
|
Sentiments: (SentimentValue | string)[] | undefined;
|
|
250
|
-
|
|
251
189
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
252
|
-
|
|
253
190
|
RelativeTimeRange?: RelativeTimeRange;
|
|
254
|
-
|
|
255
191
|
ParticipantRole?: ParticipantRole | string;
|
|
256
|
-
|
|
257
192
|
Negate?: boolean;
|
|
258
193
|
}
|
|
259
194
|
export declare enum TranscriptFilterType {
|
|
260
195
|
EXACT = "EXACT",
|
|
261
196
|
}
|
|
262
|
-
|
|
263
197
|
export interface TranscriptFilter {
|
|
264
198
|
TranscriptFilterType: TranscriptFilterType | string | undefined;
|
|
265
|
-
|
|
266
199
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
267
|
-
|
|
268
200
|
RelativeTimeRange?: RelativeTimeRange;
|
|
269
|
-
|
|
270
201
|
ParticipantRole?: ParticipantRole | string;
|
|
271
|
-
|
|
272
202
|
Negate?: boolean;
|
|
273
|
-
|
|
274
203
|
Targets: string[] | undefined;
|
|
275
204
|
}
|
|
276
|
-
|
|
277
205
|
export declare type Rule =
|
|
278
206
|
| Rule.InterruptionFilterMember
|
|
279
207
|
| Rule.NonTalkTimeFilterMember
|
|
@@ -288,7 +216,6 @@ export declare namespace Rule {
|
|
|
288
216
|
SentimentFilter?: never;
|
|
289
217
|
$unknown?: never;
|
|
290
218
|
}
|
|
291
|
-
|
|
292
219
|
interface InterruptionFilterMember {
|
|
293
220
|
NonTalkTimeFilter?: never;
|
|
294
221
|
InterruptionFilter: InterruptionFilter;
|
|
@@ -296,7 +223,6 @@ export declare namespace Rule {
|
|
|
296
223
|
SentimentFilter?: never;
|
|
297
224
|
$unknown?: never;
|
|
298
225
|
}
|
|
299
|
-
|
|
300
226
|
interface TranscriptFilterMember {
|
|
301
227
|
NonTalkTimeFilter?: never;
|
|
302
228
|
InterruptionFilter?: never;
|
|
@@ -304,7 +230,6 @@ export declare namespace Rule {
|
|
|
304
230
|
SentimentFilter?: never;
|
|
305
231
|
$unknown?: never;
|
|
306
232
|
}
|
|
307
|
-
|
|
308
233
|
interface SentimentFilterMember {
|
|
309
234
|
NonTalkTimeFilter?: never;
|
|
310
235
|
InterruptionFilter?: never;
|
|
@@ -328,14 +253,10 @@ export declare namespace Rule {
|
|
|
328
253
|
}
|
|
329
254
|
const visit: <T>(value: Rule, visitor: Visitor<T>) => T;
|
|
330
255
|
}
|
|
331
|
-
|
|
332
256
|
export interface CategoryProperties {
|
|
333
257
|
CategoryName?: string;
|
|
334
|
-
|
|
335
258
|
Rules?: Rule[];
|
|
336
|
-
|
|
337
259
|
CreateTime?: Date;
|
|
338
|
-
|
|
339
260
|
LastUpdateTime?: Date;
|
|
340
261
|
}
|
|
341
262
|
export declare enum CLMLanguageCode {
|
|
@@ -345,65 +266,49 @@ export declare enum CLMLanguageCode {
|
|
|
345
266
|
ES_US = "es-US",
|
|
346
267
|
HI_IN = "hi-IN",
|
|
347
268
|
}
|
|
348
|
-
|
|
349
269
|
export declare class ConflictException extends __BaseException {
|
|
350
270
|
readonly name: "ConflictException";
|
|
351
271
|
readonly $fault: "client";
|
|
352
272
|
Message?: string;
|
|
353
|
-
|
|
354
273
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
355
274
|
}
|
|
356
275
|
export interface CreateCallAnalyticsCategoryRequest {
|
|
357
276
|
CategoryName: string | undefined;
|
|
358
|
-
|
|
359
277
|
Rules: Rule[] | undefined;
|
|
360
278
|
}
|
|
361
279
|
export interface CreateCallAnalyticsCategoryResponse {
|
|
362
280
|
CategoryProperties?: CategoryProperties;
|
|
363
281
|
}
|
|
364
|
-
|
|
365
282
|
export declare class InternalFailureException extends __BaseException {
|
|
366
283
|
readonly name: "InternalFailureException";
|
|
367
284
|
readonly $fault: "server";
|
|
368
285
|
Message?: string;
|
|
369
|
-
|
|
370
286
|
constructor(
|
|
371
287
|
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
372
288
|
);
|
|
373
289
|
}
|
|
374
|
-
|
|
375
290
|
export declare class LimitExceededException extends __BaseException {
|
|
376
291
|
readonly name: "LimitExceededException";
|
|
377
292
|
readonly $fault: "client";
|
|
378
293
|
Message?: string;
|
|
379
|
-
|
|
380
294
|
constructor(
|
|
381
295
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
382
296
|
);
|
|
383
297
|
}
|
|
384
|
-
|
|
385
298
|
export interface InputDataConfig {
|
|
386
299
|
S3Uri: string | undefined;
|
|
387
|
-
|
|
388
300
|
TuningDataS3Uri?: string;
|
|
389
|
-
|
|
390
301
|
DataAccessRoleArn: string | undefined;
|
|
391
302
|
}
|
|
392
|
-
|
|
393
303
|
export interface Tag {
|
|
394
304
|
Key: string | undefined;
|
|
395
|
-
|
|
396
305
|
Value: string | undefined;
|
|
397
306
|
}
|
|
398
307
|
export interface CreateLanguageModelRequest {
|
|
399
308
|
LanguageCode: CLMLanguageCode | string | undefined;
|
|
400
|
-
|
|
401
309
|
BaseModelName: BaseModelName | string | undefined;
|
|
402
|
-
|
|
403
310
|
ModelName: string | undefined;
|
|
404
|
-
|
|
405
311
|
InputDataConfig: InputDataConfig | undefined;
|
|
406
|
-
|
|
407
312
|
Tags?: Tag[];
|
|
408
313
|
}
|
|
409
314
|
export declare enum ModelStatus {
|
|
@@ -413,22 +318,15 @@ export declare enum ModelStatus {
|
|
|
413
318
|
}
|
|
414
319
|
export interface CreateLanguageModelResponse {
|
|
415
320
|
LanguageCode?: CLMLanguageCode | string;
|
|
416
|
-
|
|
417
321
|
BaseModelName?: BaseModelName | string;
|
|
418
|
-
|
|
419
322
|
ModelName?: string;
|
|
420
|
-
|
|
421
323
|
InputDataConfig?: InputDataConfig;
|
|
422
|
-
|
|
423
324
|
ModelStatus?: ModelStatus | string;
|
|
424
325
|
}
|
|
425
326
|
export interface CreateMedicalVocabularyRequest {
|
|
426
327
|
VocabularyName: string | undefined;
|
|
427
|
-
|
|
428
328
|
LanguageCode: LanguageCode | string | undefined;
|
|
429
|
-
|
|
430
329
|
VocabularyFileUri: string | undefined;
|
|
431
|
-
|
|
432
330
|
Tags?: Tag[];
|
|
433
331
|
}
|
|
434
332
|
export declare enum VocabularyState {
|
|
@@ -438,65 +336,45 @@ export declare enum VocabularyState {
|
|
|
438
336
|
}
|
|
439
337
|
export interface CreateMedicalVocabularyResponse {
|
|
440
338
|
VocabularyName?: string;
|
|
441
|
-
|
|
442
339
|
LanguageCode?: LanguageCode | string;
|
|
443
|
-
|
|
444
340
|
VocabularyState?: VocabularyState | string;
|
|
445
|
-
|
|
446
341
|
LastModifiedTime?: Date;
|
|
447
|
-
|
|
448
342
|
FailureReason?: string;
|
|
449
343
|
}
|
|
450
344
|
export interface CreateVocabularyRequest {
|
|
451
345
|
VocabularyName: string | undefined;
|
|
452
|
-
|
|
453
346
|
LanguageCode: LanguageCode | string | undefined;
|
|
454
|
-
|
|
455
347
|
Phrases?: string[];
|
|
456
|
-
|
|
457
348
|
VocabularyFileUri?: string;
|
|
458
|
-
|
|
459
349
|
Tags?: Tag[];
|
|
460
350
|
}
|
|
461
351
|
export interface CreateVocabularyResponse {
|
|
462
352
|
VocabularyName?: string;
|
|
463
|
-
|
|
464
353
|
LanguageCode?: LanguageCode | string;
|
|
465
|
-
|
|
466
354
|
VocabularyState?: VocabularyState | string;
|
|
467
|
-
|
|
468
355
|
LastModifiedTime?: Date;
|
|
469
|
-
|
|
470
356
|
FailureReason?: string;
|
|
471
357
|
}
|
|
472
358
|
export interface CreateVocabularyFilterRequest {
|
|
473
359
|
VocabularyFilterName: string | undefined;
|
|
474
|
-
|
|
475
360
|
LanguageCode: LanguageCode | string | undefined;
|
|
476
|
-
|
|
477
361
|
Words?: string[];
|
|
478
|
-
|
|
479
362
|
VocabularyFilterFileUri?: string;
|
|
480
|
-
|
|
481
363
|
Tags?: Tag[];
|
|
482
364
|
}
|
|
483
365
|
export interface CreateVocabularyFilterResponse {
|
|
484
366
|
VocabularyFilterName?: string;
|
|
485
|
-
|
|
486
367
|
LanguageCode?: LanguageCode | string;
|
|
487
|
-
|
|
488
368
|
LastModifiedTime?: Date;
|
|
489
369
|
}
|
|
490
370
|
export interface DeleteCallAnalyticsCategoryRequest {
|
|
491
371
|
CategoryName: string | undefined;
|
|
492
372
|
}
|
|
493
373
|
export interface DeleteCallAnalyticsCategoryResponse {}
|
|
494
|
-
|
|
495
374
|
export declare class NotFoundException extends __BaseException {
|
|
496
375
|
readonly name: "NotFoundException";
|
|
497
376
|
readonly $fault: "client";
|
|
498
377
|
Message?: string;
|
|
499
|
-
|
|
500
378
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
501
379
|
}
|
|
502
380
|
export interface DeleteCallAnalyticsJobRequest {
|
|
@@ -524,24 +402,15 @@ export interface DeleteVocabularyFilterRequest {
|
|
|
524
402
|
export interface DescribeLanguageModelRequest {
|
|
525
403
|
ModelName: string | undefined;
|
|
526
404
|
}
|
|
527
|
-
|
|
528
405
|
export interface LanguageModel {
|
|
529
406
|
ModelName?: string;
|
|
530
|
-
|
|
531
407
|
CreateTime?: Date;
|
|
532
|
-
|
|
533
408
|
LastModifiedTime?: Date;
|
|
534
|
-
|
|
535
409
|
LanguageCode?: CLMLanguageCode | string;
|
|
536
|
-
|
|
537
410
|
BaseModelName?: BaseModelName | string;
|
|
538
|
-
|
|
539
411
|
ModelStatus?: ModelStatus | string;
|
|
540
|
-
|
|
541
412
|
UpgradeAvailability?: boolean;
|
|
542
|
-
|
|
543
413
|
FailureReason?: string;
|
|
544
|
-
|
|
545
414
|
InputDataConfig?: InputDataConfig;
|
|
546
415
|
}
|
|
547
416
|
export interface DescribeLanguageModelResponse {
|
|
@@ -565,24 +434,17 @@ export interface GetMedicalTranscriptionJobRequest {
|
|
|
565
434
|
export declare enum MedicalContentIdentificationType {
|
|
566
435
|
PHI = "PHI",
|
|
567
436
|
}
|
|
568
|
-
|
|
569
437
|
export interface MedicalTranscriptionSetting {
|
|
570
438
|
ShowSpeakerLabels?: boolean;
|
|
571
|
-
|
|
572
439
|
MaxSpeakerLabels?: number;
|
|
573
|
-
|
|
574
440
|
ChannelIdentification?: boolean;
|
|
575
|
-
|
|
576
441
|
ShowAlternatives?: boolean;
|
|
577
|
-
|
|
578
442
|
MaxAlternatives?: number;
|
|
579
|
-
|
|
580
443
|
VocabularyName?: string;
|
|
581
444
|
}
|
|
582
445
|
export declare enum Specialty {
|
|
583
446
|
PRIMARYCARE = "PRIMARYCARE",
|
|
584
447
|
}
|
|
585
|
-
|
|
586
448
|
export interface MedicalTranscript {
|
|
587
449
|
TranscriptFileUri?: string;
|
|
588
450
|
}
|
|
@@ -596,38 +458,22 @@ export declare enum Type {
|
|
|
596
458
|
CONVERSATION = "CONVERSATION",
|
|
597
459
|
DICTATION = "DICTATION",
|
|
598
460
|
}
|
|
599
|
-
|
|
600
461
|
export interface MedicalTranscriptionJob {
|
|
601
462
|
MedicalTranscriptionJobName?: string;
|
|
602
|
-
|
|
603
463
|
TranscriptionJobStatus?: TranscriptionJobStatus | string;
|
|
604
|
-
|
|
605
464
|
LanguageCode?: LanguageCode | string;
|
|
606
|
-
|
|
607
465
|
MediaSampleRateHertz?: number;
|
|
608
|
-
|
|
609
466
|
MediaFormat?: MediaFormat | string;
|
|
610
|
-
|
|
611
467
|
Media?: Media;
|
|
612
|
-
|
|
613
468
|
Transcript?: MedicalTranscript;
|
|
614
|
-
|
|
615
469
|
StartTime?: Date;
|
|
616
|
-
|
|
617
470
|
CreationTime?: Date;
|
|
618
|
-
|
|
619
471
|
CompletionTime?: Date;
|
|
620
|
-
|
|
621
472
|
FailureReason?: string;
|
|
622
|
-
|
|
623
473
|
Settings?: MedicalTranscriptionSetting;
|
|
624
|
-
|
|
625
474
|
ContentIdentificationType?: MedicalContentIdentificationType | string;
|
|
626
|
-
|
|
627
475
|
Specialty?: Specialty | string;
|
|
628
|
-
|
|
629
476
|
Type?: Type | string;
|
|
630
|
-
|
|
631
477
|
Tags?: Tag[];
|
|
632
478
|
}
|
|
633
479
|
export interface GetMedicalTranscriptionJobResponse {
|
|
@@ -638,112 +484,68 @@ export interface GetMedicalVocabularyRequest {
|
|
|
638
484
|
}
|
|
639
485
|
export interface GetMedicalVocabularyResponse {
|
|
640
486
|
VocabularyName?: string;
|
|
641
|
-
|
|
642
487
|
LanguageCode?: LanguageCode | string;
|
|
643
|
-
|
|
644
488
|
VocabularyState?: VocabularyState | string;
|
|
645
|
-
|
|
646
489
|
LastModifiedTime?: Date;
|
|
647
|
-
|
|
648
490
|
FailureReason?: string;
|
|
649
|
-
|
|
650
491
|
DownloadUri?: string;
|
|
651
492
|
}
|
|
652
493
|
export interface GetTranscriptionJobRequest {
|
|
653
494
|
TranscriptionJobName: string | undefined;
|
|
654
495
|
}
|
|
655
|
-
|
|
656
496
|
export interface JobExecutionSettings {
|
|
657
497
|
AllowDeferredExecution?: boolean;
|
|
658
|
-
|
|
659
498
|
DataAccessRoleArn?: string;
|
|
660
499
|
}
|
|
661
|
-
|
|
662
500
|
export interface LanguageCodeItem {
|
|
663
501
|
LanguageCode?: LanguageCode | string;
|
|
664
|
-
|
|
665
502
|
DurationInSeconds?: number;
|
|
666
503
|
}
|
|
667
|
-
|
|
668
504
|
export interface ModelSettings {
|
|
669
505
|
LanguageModelName?: string;
|
|
670
506
|
}
|
|
671
|
-
|
|
672
507
|
export interface Settings {
|
|
673
508
|
VocabularyName?: string;
|
|
674
|
-
|
|
675
509
|
ShowSpeakerLabels?: boolean;
|
|
676
|
-
|
|
677
510
|
MaxSpeakerLabels?: number;
|
|
678
|
-
|
|
679
511
|
ChannelIdentification?: boolean;
|
|
680
|
-
|
|
681
512
|
ShowAlternatives?: boolean;
|
|
682
|
-
|
|
683
513
|
MaxAlternatives?: number;
|
|
684
|
-
|
|
685
514
|
VocabularyFilterName?: string;
|
|
686
|
-
|
|
687
515
|
VocabularyFilterMethod?: VocabularyFilterMethod | string;
|
|
688
516
|
}
|
|
689
517
|
export declare enum SubtitleFormat {
|
|
690
518
|
SRT = "srt",
|
|
691
519
|
VTT = "vtt",
|
|
692
520
|
}
|
|
693
|
-
|
|
694
521
|
export interface SubtitlesOutput {
|
|
695
522
|
Formats?: (SubtitleFormat | string)[];
|
|
696
|
-
|
|
697
523
|
SubtitleFileUris?: string[];
|
|
698
|
-
|
|
699
524
|
OutputStartIndex?: number;
|
|
700
525
|
}
|
|
701
|
-
|
|
702
526
|
export interface TranscriptionJob {
|
|
703
527
|
TranscriptionJobName?: string;
|
|
704
|
-
|
|
705
528
|
TranscriptionJobStatus?: TranscriptionJobStatus | string;
|
|
706
|
-
|
|
707
529
|
LanguageCode?: LanguageCode | string;
|
|
708
|
-
|
|
709
530
|
MediaSampleRateHertz?: number;
|
|
710
|
-
|
|
711
531
|
MediaFormat?: MediaFormat | string;
|
|
712
|
-
|
|
713
532
|
Media?: Media;
|
|
714
|
-
|
|
715
533
|
Transcript?: Transcript;
|
|
716
|
-
|
|
717
534
|
StartTime?: Date;
|
|
718
|
-
|
|
719
535
|
CreationTime?: Date;
|
|
720
|
-
|
|
721
536
|
CompletionTime?: Date;
|
|
722
|
-
|
|
723
537
|
FailureReason?: string;
|
|
724
|
-
|
|
725
538
|
Settings?: Settings;
|
|
726
|
-
|
|
727
539
|
ModelSettings?: ModelSettings;
|
|
728
|
-
|
|
729
540
|
JobExecutionSettings?: JobExecutionSettings;
|
|
730
|
-
|
|
731
541
|
ContentRedaction?: ContentRedaction;
|
|
732
|
-
|
|
733
542
|
IdentifyLanguage?: boolean;
|
|
734
|
-
|
|
735
543
|
IdentifyMultipleLanguages?: boolean;
|
|
736
|
-
|
|
737
544
|
LanguageOptions?: (LanguageCode | string)[];
|
|
738
|
-
|
|
739
545
|
IdentifiedLanguageScore?: number;
|
|
740
|
-
|
|
741
546
|
LanguageCodes?: LanguageCodeItem[];
|
|
742
|
-
|
|
743
547
|
Tags?: Tag[];
|
|
744
|
-
|
|
745
548
|
Subtitles?: SubtitlesOutput;
|
|
746
|
-
|
|
747
549
|
LanguageIdSettings?: Record<string, LanguageIdSettings>;
|
|
748
550
|
}
|
|
749
551
|
export interface GetTranscriptionJobResponse {
|
|
@@ -754,15 +556,10 @@ export interface GetVocabularyRequest {
|
|
|
754
556
|
}
|
|
755
557
|
export interface GetVocabularyResponse {
|
|
756
558
|
VocabularyName?: string;
|
|
757
|
-
|
|
758
559
|
LanguageCode?: LanguageCode | string;
|
|
759
|
-
|
|
760
560
|
VocabularyState?: VocabularyState | string;
|
|
761
|
-
|
|
762
561
|
LastModifiedTime?: Date;
|
|
763
|
-
|
|
764
562
|
FailureReason?: string;
|
|
765
|
-
|
|
766
563
|
DownloadUri?: string;
|
|
767
564
|
}
|
|
768
565
|
export interface GetVocabularyFilterRequest {
|
|
@@ -770,121 +567,82 @@ export interface GetVocabularyFilterRequest {
|
|
|
770
567
|
}
|
|
771
568
|
export interface GetVocabularyFilterResponse {
|
|
772
569
|
VocabularyFilterName?: string;
|
|
773
|
-
|
|
774
570
|
LanguageCode?: LanguageCode | string;
|
|
775
|
-
|
|
776
571
|
LastModifiedTime?: Date;
|
|
777
|
-
|
|
778
572
|
DownloadUri?: string;
|
|
779
573
|
}
|
|
780
574
|
export interface ListCallAnalyticsCategoriesRequest {
|
|
781
575
|
NextToken?: string;
|
|
782
|
-
|
|
783
576
|
MaxResults?: number;
|
|
784
577
|
}
|
|
785
578
|
export interface ListCallAnalyticsCategoriesResponse {
|
|
786
579
|
NextToken?: string;
|
|
787
|
-
|
|
788
580
|
Categories?: CategoryProperties[];
|
|
789
581
|
}
|
|
790
582
|
export interface ListCallAnalyticsJobsRequest {
|
|
791
583
|
Status?: CallAnalyticsJobStatus | string;
|
|
792
|
-
|
|
793
584
|
JobNameContains?: string;
|
|
794
|
-
|
|
795
585
|
NextToken?: string;
|
|
796
|
-
|
|
797
586
|
MaxResults?: number;
|
|
798
587
|
}
|
|
799
588
|
export interface ListCallAnalyticsJobsResponse {
|
|
800
589
|
Status?: CallAnalyticsJobStatus | string;
|
|
801
|
-
|
|
802
590
|
NextToken?: string;
|
|
803
|
-
|
|
804
591
|
CallAnalyticsJobSummaries?: CallAnalyticsJobSummary[];
|
|
805
592
|
}
|
|
806
593
|
export interface ListLanguageModelsRequest {
|
|
807
594
|
StatusEquals?: ModelStatus | string;
|
|
808
|
-
|
|
809
595
|
NameContains?: string;
|
|
810
|
-
|
|
811
596
|
NextToken?: string;
|
|
812
|
-
|
|
813
597
|
MaxResults?: number;
|
|
814
598
|
}
|
|
815
599
|
export interface ListLanguageModelsResponse {
|
|
816
600
|
NextToken?: string;
|
|
817
|
-
|
|
818
601
|
Models?: LanguageModel[];
|
|
819
602
|
}
|
|
820
603
|
export interface ListMedicalTranscriptionJobsRequest {
|
|
821
604
|
Status?: TranscriptionJobStatus | string;
|
|
822
|
-
|
|
823
605
|
JobNameContains?: string;
|
|
824
|
-
|
|
825
606
|
NextToken?: string;
|
|
826
|
-
|
|
827
607
|
MaxResults?: number;
|
|
828
608
|
}
|
|
829
609
|
export declare enum OutputLocationType {
|
|
830
610
|
CUSTOMER_BUCKET = "CUSTOMER_BUCKET",
|
|
831
611
|
SERVICE_BUCKET = "SERVICE_BUCKET",
|
|
832
612
|
}
|
|
833
|
-
|
|
834
613
|
export interface MedicalTranscriptionJobSummary {
|
|
835
614
|
MedicalTranscriptionJobName?: string;
|
|
836
|
-
|
|
837
615
|
CreationTime?: Date;
|
|
838
|
-
|
|
839
616
|
StartTime?: Date;
|
|
840
|
-
|
|
841
617
|
CompletionTime?: Date;
|
|
842
|
-
|
|
843
618
|
LanguageCode?: LanguageCode | string;
|
|
844
|
-
|
|
845
619
|
TranscriptionJobStatus?: TranscriptionJobStatus | string;
|
|
846
|
-
|
|
847
620
|
FailureReason?: string;
|
|
848
|
-
|
|
849
621
|
OutputLocationType?: OutputLocationType | string;
|
|
850
|
-
|
|
851
622
|
Specialty?: Specialty | string;
|
|
852
|
-
|
|
853
623
|
ContentIdentificationType?: MedicalContentIdentificationType | string;
|
|
854
|
-
|
|
855
624
|
Type?: Type | string;
|
|
856
625
|
}
|
|
857
626
|
export interface ListMedicalTranscriptionJobsResponse {
|
|
858
627
|
Status?: TranscriptionJobStatus | string;
|
|
859
|
-
|
|
860
628
|
NextToken?: string;
|
|
861
|
-
|
|
862
629
|
MedicalTranscriptionJobSummaries?: MedicalTranscriptionJobSummary[];
|
|
863
630
|
}
|
|
864
631
|
export interface ListMedicalVocabulariesRequest {
|
|
865
632
|
NextToken?: string;
|
|
866
|
-
|
|
867
633
|
MaxResults?: number;
|
|
868
|
-
|
|
869
634
|
StateEquals?: VocabularyState | string;
|
|
870
|
-
|
|
871
635
|
NameContains?: string;
|
|
872
636
|
}
|
|
873
|
-
|
|
874
637
|
export interface VocabularyInfo {
|
|
875
638
|
VocabularyName?: string;
|
|
876
|
-
|
|
877
639
|
LanguageCode?: LanguageCode | string;
|
|
878
|
-
|
|
879
640
|
LastModifiedTime?: Date;
|
|
880
|
-
|
|
881
641
|
VocabularyState?: VocabularyState | string;
|
|
882
642
|
}
|
|
883
643
|
export interface ListMedicalVocabulariesResponse {
|
|
884
644
|
Status?: VocabularyState | string;
|
|
885
|
-
|
|
886
645
|
NextToken?: string;
|
|
887
|
-
|
|
888
646
|
Vocabularies?: VocabularyInfo[];
|
|
889
647
|
}
|
|
890
648
|
export interface ListTagsForResourceRequest {
|
|
@@ -892,104 +650,67 @@ export interface ListTagsForResourceRequest {
|
|
|
892
650
|
}
|
|
893
651
|
export interface ListTagsForResourceResponse {
|
|
894
652
|
ResourceArn?: string;
|
|
895
|
-
|
|
896
653
|
Tags?: Tag[];
|
|
897
654
|
}
|
|
898
655
|
export interface ListTranscriptionJobsRequest {
|
|
899
656
|
Status?: TranscriptionJobStatus | string;
|
|
900
|
-
|
|
901
657
|
JobNameContains?: string;
|
|
902
|
-
|
|
903
658
|
NextToken?: string;
|
|
904
|
-
|
|
905
659
|
MaxResults?: number;
|
|
906
660
|
}
|
|
907
|
-
|
|
908
661
|
export interface TranscriptionJobSummary {
|
|
909
662
|
TranscriptionJobName?: string;
|
|
910
|
-
|
|
911
663
|
CreationTime?: Date;
|
|
912
|
-
|
|
913
664
|
StartTime?: Date;
|
|
914
|
-
|
|
915
665
|
CompletionTime?: Date;
|
|
916
|
-
|
|
917
666
|
LanguageCode?: LanguageCode | string;
|
|
918
|
-
|
|
919
667
|
TranscriptionJobStatus?: TranscriptionJobStatus | string;
|
|
920
|
-
|
|
921
668
|
FailureReason?: string;
|
|
922
|
-
|
|
923
669
|
OutputLocationType?: OutputLocationType | string;
|
|
924
|
-
|
|
925
670
|
ContentRedaction?: ContentRedaction;
|
|
926
|
-
|
|
927
671
|
ModelSettings?: ModelSettings;
|
|
928
|
-
|
|
929
672
|
IdentifyLanguage?: boolean;
|
|
930
|
-
|
|
931
673
|
IdentifyMultipleLanguages?: boolean;
|
|
932
|
-
|
|
933
674
|
IdentifiedLanguageScore?: number;
|
|
934
|
-
|
|
935
675
|
LanguageCodes?: LanguageCodeItem[];
|
|
936
676
|
}
|
|
937
677
|
export interface ListTranscriptionJobsResponse {
|
|
938
678
|
Status?: TranscriptionJobStatus | string;
|
|
939
|
-
|
|
940
679
|
NextToken?: string;
|
|
941
|
-
|
|
942
680
|
TranscriptionJobSummaries?: TranscriptionJobSummary[];
|
|
943
681
|
}
|
|
944
682
|
export interface ListVocabulariesRequest {
|
|
945
683
|
NextToken?: string;
|
|
946
|
-
|
|
947
684
|
MaxResults?: number;
|
|
948
|
-
|
|
949
685
|
StateEquals?: VocabularyState | string;
|
|
950
|
-
|
|
951
686
|
NameContains?: string;
|
|
952
687
|
}
|
|
953
688
|
export interface ListVocabulariesResponse {
|
|
954
689
|
Status?: VocabularyState | string;
|
|
955
|
-
|
|
956
690
|
NextToken?: string;
|
|
957
|
-
|
|
958
691
|
Vocabularies?: VocabularyInfo[];
|
|
959
692
|
}
|
|
960
693
|
export interface ListVocabularyFiltersRequest {
|
|
961
694
|
NextToken?: string;
|
|
962
|
-
|
|
963
695
|
MaxResults?: number;
|
|
964
|
-
|
|
965
696
|
NameContains?: string;
|
|
966
697
|
}
|
|
967
|
-
|
|
968
698
|
export interface VocabularyFilterInfo {
|
|
969
699
|
VocabularyFilterName?: string;
|
|
970
|
-
|
|
971
700
|
LanguageCode?: LanguageCode | string;
|
|
972
|
-
|
|
973
701
|
LastModifiedTime?: Date;
|
|
974
702
|
}
|
|
975
703
|
export interface ListVocabularyFiltersResponse {
|
|
976
704
|
NextToken?: string;
|
|
977
|
-
|
|
978
705
|
VocabularyFilters?: VocabularyFilterInfo[];
|
|
979
706
|
}
|
|
980
707
|
export interface StartCallAnalyticsJobRequest {
|
|
981
708
|
CallAnalyticsJobName: string | undefined;
|
|
982
|
-
|
|
983
709
|
Media: Media | undefined;
|
|
984
|
-
|
|
985
710
|
OutputLocation?: string;
|
|
986
|
-
|
|
987
711
|
OutputEncryptionKMSKeyId?: string;
|
|
988
|
-
|
|
989
712
|
DataAccessRoleArn?: string;
|
|
990
|
-
|
|
991
713
|
Settings?: CallAnalyticsJobSettings;
|
|
992
|
-
|
|
993
714
|
ChannelDefinitions?: ChannelDefinition[];
|
|
994
715
|
}
|
|
995
716
|
export interface StartCallAnalyticsJobResponse {
|
|
@@ -997,79 +718,46 @@ export interface StartCallAnalyticsJobResponse {
|
|
|
997
718
|
}
|
|
998
719
|
export interface StartMedicalTranscriptionJobRequest {
|
|
999
720
|
MedicalTranscriptionJobName: string | undefined;
|
|
1000
|
-
|
|
1001
721
|
LanguageCode: LanguageCode | string | undefined;
|
|
1002
|
-
|
|
1003
722
|
MediaSampleRateHertz?: number;
|
|
1004
|
-
|
|
1005
723
|
MediaFormat?: MediaFormat | string;
|
|
1006
|
-
|
|
1007
724
|
Media: Media | undefined;
|
|
1008
|
-
|
|
1009
725
|
OutputBucketName: string | undefined;
|
|
1010
|
-
|
|
1011
726
|
OutputKey?: string;
|
|
1012
|
-
|
|
1013
727
|
OutputEncryptionKMSKeyId?: string;
|
|
1014
|
-
|
|
1015
728
|
KMSEncryptionContext?: Record<string, string>;
|
|
1016
|
-
|
|
1017
729
|
Settings?: MedicalTranscriptionSetting;
|
|
1018
|
-
|
|
1019
730
|
ContentIdentificationType?: MedicalContentIdentificationType | string;
|
|
1020
|
-
|
|
1021
731
|
Specialty: Specialty | string | undefined;
|
|
1022
|
-
|
|
1023
732
|
Type: Type | string | undefined;
|
|
1024
|
-
|
|
1025
733
|
Tags?: Tag[];
|
|
1026
734
|
}
|
|
1027
735
|
export interface StartMedicalTranscriptionJobResponse {
|
|
1028
736
|
MedicalTranscriptionJob?: MedicalTranscriptionJob;
|
|
1029
737
|
}
|
|
1030
|
-
|
|
1031
738
|
export interface Subtitles {
|
|
1032
739
|
Formats?: (SubtitleFormat | string)[];
|
|
1033
|
-
|
|
1034
740
|
OutputStartIndex?: number;
|
|
1035
741
|
}
|
|
1036
742
|
export interface StartTranscriptionJobRequest {
|
|
1037
743
|
TranscriptionJobName: string | undefined;
|
|
1038
|
-
|
|
1039
744
|
LanguageCode?: LanguageCode | string;
|
|
1040
|
-
|
|
1041
745
|
MediaSampleRateHertz?: number;
|
|
1042
|
-
|
|
1043
746
|
MediaFormat?: MediaFormat | string;
|
|
1044
|
-
|
|
1045
747
|
Media: Media | undefined;
|
|
1046
|
-
|
|
1047
748
|
OutputBucketName?: string;
|
|
1048
|
-
|
|
1049
749
|
OutputKey?: string;
|
|
1050
|
-
|
|
1051
750
|
OutputEncryptionKMSKeyId?: string;
|
|
1052
|
-
|
|
1053
751
|
KMSEncryptionContext?: Record<string, string>;
|
|
1054
|
-
|
|
1055
752
|
Settings?: Settings;
|
|
1056
|
-
|
|
1057
753
|
ModelSettings?: ModelSettings;
|
|
1058
|
-
|
|
1059
754
|
JobExecutionSettings?: JobExecutionSettings;
|
|
1060
|
-
|
|
1061
755
|
ContentRedaction?: ContentRedaction;
|
|
1062
|
-
|
|
1063
756
|
IdentifyLanguage?: boolean;
|
|
1064
|
-
|
|
1065
757
|
IdentifyMultipleLanguages?: boolean;
|
|
1066
|
-
|
|
1067
758
|
LanguageOptions?: (LanguageCode | string)[];
|
|
1068
|
-
|
|
1069
759
|
Subtitles?: Subtitles;
|
|
1070
|
-
|
|
1071
760
|
Tags?: Tag[];
|
|
1072
|
-
|
|
1073
761
|
LanguageIdSettings?: Record<string, LanguageIdSettings>;
|
|
1074
762
|
}
|
|
1075
763
|
export interface StartTranscriptionJobResponse {
|
|
@@ -1077,19 +765,16 @@ export interface StartTranscriptionJobResponse {
|
|
|
1077
765
|
}
|
|
1078
766
|
export interface TagResourceRequest {
|
|
1079
767
|
ResourceArn: string | undefined;
|
|
1080
|
-
|
|
1081
768
|
Tags: Tag[] | undefined;
|
|
1082
769
|
}
|
|
1083
770
|
export interface TagResourceResponse {}
|
|
1084
771
|
export interface UntagResourceRequest {
|
|
1085
772
|
ResourceArn: string | undefined;
|
|
1086
|
-
|
|
1087
773
|
TagKeys: string[] | undefined;
|
|
1088
774
|
}
|
|
1089
775
|
export interface UntagResourceResponse {}
|
|
1090
776
|
export interface UpdateCallAnalyticsCategoryRequest {
|
|
1091
777
|
CategoryName: string | undefined;
|
|
1092
|
-
|
|
1093
778
|
Rules: Rule[] | undefined;
|
|
1094
779
|
}
|
|
1095
780
|
export interface UpdateCallAnalyticsCategoryResponse {
|
|
@@ -1097,457 +782,337 @@ export interface UpdateCallAnalyticsCategoryResponse {
|
|
|
1097
782
|
}
|
|
1098
783
|
export interface UpdateMedicalVocabularyRequest {
|
|
1099
784
|
VocabularyName: string | undefined;
|
|
1100
|
-
|
|
1101
785
|
LanguageCode: LanguageCode | string | undefined;
|
|
1102
|
-
|
|
1103
786
|
VocabularyFileUri: string | undefined;
|
|
1104
787
|
}
|
|
1105
788
|
export interface UpdateMedicalVocabularyResponse {
|
|
1106
789
|
VocabularyName?: string;
|
|
1107
|
-
|
|
1108
790
|
LanguageCode?: LanguageCode | string;
|
|
1109
|
-
|
|
1110
791
|
LastModifiedTime?: Date;
|
|
1111
|
-
|
|
1112
792
|
VocabularyState?: VocabularyState | string;
|
|
1113
793
|
}
|
|
1114
794
|
export interface UpdateVocabularyRequest {
|
|
1115
795
|
VocabularyName: string | undefined;
|
|
1116
|
-
|
|
1117
796
|
LanguageCode: LanguageCode | string | undefined;
|
|
1118
|
-
|
|
1119
797
|
Phrases?: string[];
|
|
1120
|
-
|
|
1121
798
|
VocabularyFileUri?: string;
|
|
1122
799
|
}
|
|
1123
800
|
export interface UpdateVocabularyResponse {
|
|
1124
801
|
VocabularyName?: string;
|
|
1125
|
-
|
|
1126
802
|
LanguageCode?: LanguageCode | string;
|
|
1127
|
-
|
|
1128
803
|
LastModifiedTime?: Date;
|
|
1129
|
-
|
|
1130
804
|
VocabularyState?: VocabularyState | string;
|
|
1131
805
|
}
|
|
1132
806
|
export interface UpdateVocabularyFilterRequest {
|
|
1133
807
|
VocabularyFilterName: string | undefined;
|
|
1134
|
-
|
|
1135
808
|
Words?: string[];
|
|
1136
|
-
|
|
1137
809
|
VocabularyFilterFileUri?: string;
|
|
1138
810
|
}
|
|
1139
811
|
export interface UpdateVocabularyFilterResponse {
|
|
1140
812
|
VocabularyFilterName?: string;
|
|
1141
|
-
|
|
1142
813
|
LanguageCode?: LanguageCode | string;
|
|
1143
|
-
|
|
1144
814
|
LastModifiedTime?: Date;
|
|
1145
815
|
}
|
|
1146
|
-
|
|
1147
816
|
export declare const AbsoluteTimeRangeFilterSensitiveLog: (
|
|
1148
817
|
obj: AbsoluteTimeRange
|
|
1149
818
|
) => any;
|
|
1150
|
-
|
|
1151
819
|
export declare const ChannelDefinitionFilterSensitiveLog: (
|
|
1152
820
|
obj: ChannelDefinition
|
|
1153
821
|
) => any;
|
|
1154
|
-
|
|
1155
822
|
export declare const MediaFilterSensitiveLog: (obj: Media) => any;
|
|
1156
|
-
|
|
1157
823
|
export declare const ContentRedactionFilterSensitiveLog: (
|
|
1158
824
|
obj: ContentRedaction
|
|
1159
825
|
) => any;
|
|
1160
|
-
|
|
1161
826
|
export declare const LanguageIdSettingsFilterSensitiveLog: (
|
|
1162
827
|
obj: LanguageIdSettings
|
|
1163
828
|
) => any;
|
|
1164
|
-
|
|
1165
829
|
export declare const CallAnalyticsJobSettingsFilterSensitiveLog: (
|
|
1166
830
|
obj: CallAnalyticsJobSettings
|
|
1167
831
|
) => any;
|
|
1168
|
-
|
|
1169
832
|
export declare const TranscriptFilterSensitiveLog: (obj: Transcript) => any;
|
|
1170
|
-
|
|
1171
833
|
export declare const CallAnalyticsJobFilterSensitiveLog: (
|
|
1172
834
|
obj: CallAnalyticsJob
|
|
1173
835
|
) => any;
|
|
1174
|
-
|
|
1175
836
|
export declare const CallAnalyticsJobSummaryFilterSensitiveLog: (
|
|
1176
837
|
obj: CallAnalyticsJobSummary
|
|
1177
838
|
) => any;
|
|
1178
|
-
|
|
1179
839
|
export declare const RelativeTimeRangeFilterSensitiveLog: (
|
|
1180
840
|
obj: RelativeTimeRange
|
|
1181
841
|
) => any;
|
|
1182
|
-
|
|
1183
842
|
export declare const InterruptionFilterFilterSensitiveLog: (
|
|
1184
843
|
obj: InterruptionFilter
|
|
1185
844
|
) => any;
|
|
1186
|
-
|
|
1187
845
|
export declare const NonTalkTimeFilterFilterSensitiveLog: (
|
|
1188
846
|
obj: NonTalkTimeFilter
|
|
1189
847
|
) => any;
|
|
1190
|
-
|
|
1191
848
|
export declare const SentimentFilterFilterSensitiveLog: (
|
|
1192
849
|
obj: SentimentFilter
|
|
1193
850
|
) => any;
|
|
1194
|
-
|
|
1195
851
|
export declare const TranscriptFilterFilterSensitiveLog: (
|
|
1196
852
|
obj: TranscriptFilter
|
|
1197
853
|
) => any;
|
|
1198
|
-
|
|
1199
854
|
export declare const RuleFilterSensitiveLog: (obj: Rule) => any;
|
|
1200
|
-
|
|
1201
855
|
export declare const CategoryPropertiesFilterSensitiveLog: (
|
|
1202
856
|
obj: CategoryProperties
|
|
1203
857
|
) => any;
|
|
1204
|
-
|
|
1205
858
|
export declare const CreateCallAnalyticsCategoryRequestFilterSensitiveLog: (
|
|
1206
859
|
obj: CreateCallAnalyticsCategoryRequest
|
|
1207
860
|
) => any;
|
|
1208
|
-
|
|
1209
861
|
export declare const CreateCallAnalyticsCategoryResponseFilterSensitiveLog: (
|
|
1210
862
|
obj: CreateCallAnalyticsCategoryResponse
|
|
1211
863
|
) => any;
|
|
1212
|
-
|
|
1213
864
|
export declare const InputDataConfigFilterSensitiveLog: (
|
|
1214
865
|
obj: InputDataConfig
|
|
1215
866
|
) => any;
|
|
1216
|
-
|
|
1217
867
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1218
|
-
|
|
1219
868
|
export declare const CreateLanguageModelRequestFilterSensitiveLog: (
|
|
1220
869
|
obj: CreateLanguageModelRequest
|
|
1221
870
|
) => any;
|
|
1222
|
-
|
|
1223
871
|
export declare const CreateLanguageModelResponseFilterSensitiveLog: (
|
|
1224
872
|
obj: CreateLanguageModelResponse
|
|
1225
873
|
) => any;
|
|
1226
|
-
|
|
1227
874
|
export declare const CreateMedicalVocabularyRequestFilterSensitiveLog: (
|
|
1228
875
|
obj: CreateMedicalVocabularyRequest
|
|
1229
876
|
) => any;
|
|
1230
|
-
|
|
1231
877
|
export declare const CreateMedicalVocabularyResponseFilterSensitiveLog: (
|
|
1232
878
|
obj: CreateMedicalVocabularyResponse
|
|
1233
879
|
) => any;
|
|
1234
|
-
|
|
1235
880
|
export declare const CreateVocabularyRequestFilterSensitiveLog: (
|
|
1236
881
|
obj: CreateVocabularyRequest
|
|
1237
882
|
) => any;
|
|
1238
|
-
|
|
1239
883
|
export declare const CreateVocabularyResponseFilterSensitiveLog: (
|
|
1240
884
|
obj: CreateVocabularyResponse
|
|
1241
885
|
) => any;
|
|
1242
|
-
|
|
1243
886
|
export declare const CreateVocabularyFilterRequestFilterSensitiveLog: (
|
|
1244
887
|
obj: CreateVocabularyFilterRequest
|
|
1245
888
|
) => any;
|
|
1246
|
-
|
|
1247
889
|
export declare const CreateVocabularyFilterResponseFilterSensitiveLog: (
|
|
1248
890
|
obj: CreateVocabularyFilterResponse
|
|
1249
891
|
) => any;
|
|
1250
|
-
|
|
1251
892
|
export declare const DeleteCallAnalyticsCategoryRequestFilterSensitiveLog: (
|
|
1252
893
|
obj: DeleteCallAnalyticsCategoryRequest
|
|
1253
894
|
) => any;
|
|
1254
|
-
|
|
1255
895
|
export declare const DeleteCallAnalyticsCategoryResponseFilterSensitiveLog: (
|
|
1256
896
|
obj: DeleteCallAnalyticsCategoryResponse
|
|
1257
897
|
) => any;
|
|
1258
|
-
|
|
1259
898
|
export declare const DeleteCallAnalyticsJobRequestFilterSensitiveLog: (
|
|
1260
899
|
obj: DeleteCallAnalyticsJobRequest
|
|
1261
900
|
) => any;
|
|
1262
|
-
|
|
1263
901
|
export declare const DeleteCallAnalyticsJobResponseFilterSensitiveLog: (
|
|
1264
902
|
obj: DeleteCallAnalyticsJobResponse
|
|
1265
903
|
) => any;
|
|
1266
|
-
|
|
1267
904
|
export declare const DeleteLanguageModelRequestFilterSensitiveLog: (
|
|
1268
905
|
obj: DeleteLanguageModelRequest
|
|
1269
906
|
) => any;
|
|
1270
|
-
|
|
1271
907
|
export declare const DeleteMedicalTranscriptionJobRequestFilterSensitiveLog: (
|
|
1272
908
|
obj: DeleteMedicalTranscriptionJobRequest
|
|
1273
909
|
) => any;
|
|
1274
|
-
|
|
1275
910
|
export declare const DeleteMedicalVocabularyRequestFilterSensitiveLog: (
|
|
1276
911
|
obj: DeleteMedicalVocabularyRequest
|
|
1277
912
|
) => any;
|
|
1278
|
-
|
|
1279
913
|
export declare const DeleteTranscriptionJobRequestFilterSensitiveLog: (
|
|
1280
914
|
obj: DeleteTranscriptionJobRequest
|
|
1281
915
|
) => any;
|
|
1282
|
-
|
|
1283
916
|
export declare const DeleteVocabularyRequestFilterSensitiveLog: (
|
|
1284
917
|
obj: DeleteVocabularyRequest
|
|
1285
918
|
) => any;
|
|
1286
|
-
|
|
1287
919
|
export declare const DeleteVocabularyFilterRequestFilterSensitiveLog: (
|
|
1288
920
|
obj: DeleteVocabularyFilterRequest
|
|
1289
921
|
) => any;
|
|
1290
|
-
|
|
1291
922
|
export declare const DescribeLanguageModelRequestFilterSensitiveLog: (
|
|
1292
923
|
obj: DescribeLanguageModelRequest
|
|
1293
924
|
) => any;
|
|
1294
|
-
|
|
1295
925
|
export declare const LanguageModelFilterSensitiveLog: (
|
|
1296
926
|
obj: LanguageModel
|
|
1297
927
|
) => any;
|
|
1298
|
-
|
|
1299
928
|
export declare const DescribeLanguageModelResponseFilterSensitiveLog: (
|
|
1300
929
|
obj: DescribeLanguageModelResponse
|
|
1301
930
|
) => any;
|
|
1302
|
-
|
|
1303
931
|
export declare const GetCallAnalyticsCategoryRequestFilterSensitiveLog: (
|
|
1304
932
|
obj: GetCallAnalyticsCategoryRequest
|
|
1305
933
|
) => any;
|
|
1306
|
-
|
|
1307
934
|
export declare const GetCallAnalyticsCategoryResponseFilterSensitiveLog: (
|
|
1308
935
|
obj: GetCallAnalyticsCategoryResponse
|
|
1309
936
|
) => any;
|
|
1310
|
-
|
|
1311
937
|
export declare const GetCallAnalyticsJobRequestFilterSensitiveLog: (
|
|
1312
938
|
obj: GetCallAnalyticsJobRequest
|
|
1313
939
|
) => any;
|
|
1314
|
-
|
|
1315
940
|
export declare const GetCallAnalyticsJobResponseFilterSensitiveLog: (
|
|
1316
941
|
obj: GetCallAnalyticsJobResponse
|
|
1317
942
|
) => any;
|
|
1318
|
-
|
|
1319
943
|
export declare const GetMedicalTranscriptionJobRequestFilterSensitiveLog: (
|
|
1320
944
|
obj: GetMedicalTranscriptionJobRequest
|
|
1321
945
|
) => any;
|
|
1322
|
-
|
|
1323
946
|
export declare const MedicalTranscriptionSettingFilterSensitiveLog: (
|
|
1324
947
|
obj: MedicalTranscriptionSetting
|
|
1325
948
|
) => any;
|
|
1326
|
-
|
|
1327
949
|
export declare const MedicalTranscriptFilterSensitiveLog: (
|
|
1328
950
|
obj: MedicalTranscript
|
|
1329
951
|
) => any;
|
|
1330
|
-
|
|
1331
952
|
export declare const MedicalTranscriptionJobFilterSensitiveLog: (
|
|
1332
953
|
obj: MedicalTranscriptionJob
|
|
1333
954
|
) => any;
|
|
1334
|
-
|
|
1335
955
|
export declare const GetMedicalTranscriptionJobResponseFilterSensitiveLog: (
|
|
1336
956
|
obj: GetMedicalTranscriptionJobResponse
|
|
1337
957
|
) => any;
|
|
1338
|
-
|
|
1339
958
|
export declare const GetMedicalVocabularyRequestFilterSensitiveLog: (
|
|
1340
959
|
obj: GetMedicalVocabularyRequest
|
|
1341
960
|
) => any;
|
|
1342
|
-
|
|
1343
961
|
export declare const GetMedicalVocabularyResponseFilterSensitiveLog: (
|
|
1344
962
|
obj: GetMedicalVocabularyResponse
|
|
1345
963
|
) => any;
|
|
1346
|
-
|
|
1347
964
|
export declare const GetTranscriptionJobRequestFilterSensitiveLog: (
|
|
1348
965
|
obj: GetTranscriptionJobRequest
|
|
1349
966
|
) => any;
|
|
1350
|
-
|
|
1351
967
|
export declare const JobExecutionSettingsFilterSensitiveLog: (
|
|
1352
968
|
obj: JobExecutionSettings
|
|
1353
969
|
) => any;
|
|
1354
|
-
|
|
1355
970
|
export declare const LanguageCodeItemFilterSensitiveLog: (
|
|
1356
971
|
obj: LanguageCodeItem
|
|
1357
972
|
) => any;
|
|
1358
|
-
|
|
1359
973
|
export declare const ModelSettingsFilterSensitiveLog: (
|
|
1360
974
|
obj: ModelSettings
|
|
1361
975
|
) => any;
|
|
1362
|
-
|
|
1363
976
|
export declare const SettingsFilterSensitiveLog: (obj: Settings) => any;
|
|
1364
|
-
|
|
1365
977
|
export declare const SubtitlesOutputFilterSensitiveLog: (
|
|
1366
978
|
obj: SubtitlesOutput
|
|
1367
979
|
) => any;
|
|
1368
|
-
|
|
1369
980
|
export declare const TranscriptionJobFilterSensitiveLog: (
|
|
1370
981
|
obj: TranscriptionJob
|
|
1371
982
|
) => any;
|
|
1372
|
-
|
|
1373
983
|
export declare const GetTranscriptionJobResponseFilterSensitiveLog: (
|
|
1374
984
|
obj: GetTranscriptionJobResponse
|
|
1375
985
|
) => any;
|
|
1376
|
-
|
|
1377
986
|
export declare const GetVocabularyRequestFilterSensitiveLog: (
|
|
1378
987
|
obj: GetVocabularyRequest
|
|
1379
988
|
) => any;
|
|
1380
|
-
|
|
1381
989
|
export declare const GetVocabularyResponseFilterSensitiveLog: (
|
|
1382
990
|
obj: GetVocabularyResponse
|
|
1383
991
|
) => any;
|
|
1384
|
-
|
|
1385
992
|
export declare const GetVocabularyFilterRequestFilterSensitiveLog: (
|
|
1386
993
|
obj: GetVocabularyFilterRequest
|
|
1387
994
|
) => any;
|
|
1388
|
-
|
|
1389
995
|
export declare const GetVocabularyFilterResponseFilterSensitiveLog: (
|
|
1390
996
|
obj: GetVocabularyFilterResponse
|
|
1391
997
|
) => any;
|
|
1392
|
-
|
|
1393
998
|
export declare const ListCallAnalyticsCategoriesRequestFilterSensitiveLog: (
|
|
1394
999
|
obj: ListCallAnalyticsCategoriesRequest
|
|
1395
1000
|
) => any;
|
|
1396
|
-
|
|
1397
1001
|
export declare const ListCallAnalyticsCategoriesResponseFilterSensitiveLog: (
|
|
1398
1002
|
obj: ListCallAnalyticsCategoriesResponse
|
|
1399
1003
|
) => any;
|
|
1400
|
-
|
|
1401
1004
|
export declare const ListCallAnalyticsJobsRequestFilterSensitiveLog: (
|
|
1402
1005
|
obj: ListCallAnalyticsJobsRequest
|
|
1403
1006
|
) => any;
|
|
1404
|
-
|
|
1405
1007
|
export declare const ListCallAnalyticsJobsResponseFilterSensitiveLog: (
|
|
1406
1008
|
obj: ListCallAnalyticsJobsResponse
|
|
1407
1009
|
) => any;
|
|
1408
|
-
|
|
1409
1010
|
export declare const ListLanguageModelsRequestFilterSensitiveLog: (
|
|
1410
1011
|
obj: ListLanguageModelsRequest
|
|
1411
1012
|
) => any;
|
|
1412
|
-
|
|
1413
1013
|
export declare const ListLanguageModelsResponseFilterSensitiveLog: (
|
|
1414
1014
|
obj: ListLanguageModelsResponse
|
|
1415
1015
|
) => any;
|
|
1416
|
-
|
|
1417
1016
|
export declare const ListMedicalTranscriptionJobsRequestFilterSensitiveLog: (
|
|
1418
1017
|
obj: ListMedicalTranscriptionJobsRequest
|
|
1419
1018
|
) => any;
|
|
1420
|
-
|
|
1421
1019
|
export declare const MedicalTranscriptionJobSummaryFilterSensitiveLog: (
|
|
1422
1020
|
obj: MedicalTranscriptionJobSummary
|
|
1423
1021
|
) => any;
|
|
1424
|
-
|
|
1425
1022
|
export declare const ListMedicalTranscriptionJobsResponseFilterSensitiveLog: (
|
|
1426
1023
|
obj: ListMedicalTranscriptionJobsResponse
|
|
1427
1024
|
) => any;
|
|
1428
|
-
|
|
1429
1025
|
export declare const ListMedicalVocabulariesRequestFilterSensitiveLog: (
|
|
1430
1026
|
obj: ListMedicalVocabulariesRequest
|
|
1431
1027
|
) => any;
|
|
1432
|
-
|
|
1433
1028
|
export declare const VocabularyInfoFilterSensitiveLog: (
|
|
1434
1029
|
obj: VocabularyInfo
|
|
1435
1030
|
) => any;
|
|
1436
|
-
|
|
1437
1031
|
export declare const ListMedicalVocabulariesResponseFilterSensitiveLog: (
|
|
1438
1032
|
obj: ListMedicalVocabulariesResponse
|
|
1439
1033
|
) => any;
|
|
1440
|
-
|
|
1441
1034
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1442
1035
|
obj: ListTagsForResourceRequest
|
|
1443
1036
|
) => any;
|
|
1444
|
-
|
|
1445
1037
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1446
1038
|
obj: ListTagsForResourceResponse
|
|
1447
1039
|
) => any;
|
|
1448
|
-
|
|
1449
1040
|
export declare const ListTranscriptionJobsRequestFilterSensitiveLog: (
|
|
1450
1041
|
obj: ListTranscriptionJobsRequest
|
|
1451
1042
|
) => any;
|
|
1452
|
-
|
|
1453
1043
|
export declare const TranscriptionJobSummaryFilterSensitiveLog: (
|
|
1454
1044
|
obj: TranscriptionJobSummary
|
|
1455
1045
|
) => any;
|
|
1456
|
-
|
|
1457
1046
|
export declare const ListTranscriptionJobsResponseFilterSensitiveLog: (
|
|
1458
1047
|
obj: ListTranscriptionJobsResponse
|
|
1459
1048
|
) => any;
|
|
1460
|
-
|
|
1461
1049
|
export declare const ListVocabulariesRequestFilterSensitiveLog: (
|
|
1462
1050
|
obj: ListVocabulariesRequest
|
|
1463
1051
|
) => any;
|
|
1464
|
-
|
|
1465
1052
|
export declare const ListVocabulariesResponseFilterSensitiveLog: (
|
|
1466
1053
|
obj: ListVocabulariesResponse
|
|
1467
1054
|
) => any;
|
|
1468
|
-
|
|
1469
1055
|
export declare const ListVocabularyFiltersRequestFilterSensitiveLog: (
|
|
1470
1056
|
obj: ListVocabularyFiltersRequest
|
|
1471
1057
|
) => any;
|
|
1472
|
-
|
|
1473
1058
|
export declare const VocabularyFilterInfoFilterSensitiveLog: (
|
|
1474
1059
|
obj: VocabularyFilterInfo
|
|
1475
1060
|
) => any;
|
|
1476
|
-
|
|
1477
1061
|
export declare const ListVocabularyFiltersResponseFilterSensitiveLog: (
|
|
1478
1062
|
obj: ListVocabularyFiltersResponse
|
|
1479
1063
|
) => any;
|
|
1480
|
-
|
|
1481
1064
|
export declare const StartCallAnalyticsJobRequestFilterSensitiveLog: (
|
|
1482
1065
|
obj: StartCallAnalyticsJobRequest
|
|
1483
1066
|
) => any;
|
|
1484
|
-
|
|
1485
1067
|
export declare const StartCallAnalyticsJobResponseFilterSensitiveLog: (
|
|
1486
1068
|
obj: StartCallAnalyticsJobResponse
|
|
1487
1069
|
) => any;
|
|
1488
|
-
|
|
1489
1070
|
export declare const StartMedicalTranscriptionJobRequestFilterSensitiveLog: (
|
|
1490
1071
|
obj: StartMedicalTranscriptionJobRequest
|
|
1491
1072
|
) => any;
|
|
1492
|
-
|
|
1493
1073
|
export declare const StartMedicalTranscriptionJobResponseFilterSensitiveLog: (
|
|
1494
1074
|
obj: StartMedicalTranscriptionJobResponse
|
|
1495
1075
|
) => any;
|
|
1496
|
-
|
|
1497
1076
|
export declare const SubtitlesFilterSensitiveLog: (obj: Subtitles) => any;
|
|
1498
|
-
|
|
1499
1077
|
export declare const StartTranscriptionJobRequestFilterSensitiveLog: (
|
|
1500
1078
|
obj: StartTranscriptionJobRequest
|
|
1501
1079
|
) => any;
|
|
1502
|
-
|
|
1503
1080
|
export declare const StartTranscriptionJobResponseFilterSensitiveLog: (
|
|
1504
1081
|
obj: StartTranscriptionJobResponse
|
|
1505
1082
|
) => any;
|
|
1506
|
-
|
|
1507
1083
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1508
1084
|
obj: TagResourceRequest
|
|
1509
1085
|
) => any;
|
|
1510
|
-
|
|
1511
1086
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1512
1087
|
obj: TagResourceResponse
|
|
1513
1088
|
) => any;
|
|
1514
|
-
|
|
1515
1089
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1516
1090
|
obj: UntagResourceRequest
|
|
1517
1091
|
) => any;
|
|
1518
|
-
|
|
1519
1092
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1520
1093
|
obj: UntagResourceResponse
|
|
1521
1094
|
) => any;
|
|
1522
|
-
|
|
1523
1095
|
export declare const UpdateCallAnalyticsCategoryRequestFilterSensitiveLog: (
|
|
1524
1096
|
obj: UpdateCallAnalyticsCategoryRequest
|
|
1525
1097
|
) => any;
|
|
1526
|
-
|
|
1527
1098
|
export declare const UpdateCallAnalyticsCategoryResponseFilterSensitiveLog: (
|
|
1528
1099
|
obj: UpdateCallAnalyticsCategoryResponse
|
|
1529
1100
|
) => any;
|
|
1530
|
-
|
|
1531
1101
|
export declare const UpdateMedicalVocabularyRequestFilterSensitiveLog: (
|
|
1532
1102
|
obj: UpdateMedicalVocabularyRequest
|
|
1533
1103
|
) => any;
|
|
1534
|
-
|
|
1535
1104
|
export declare const UpdateMedicalVocabularyResponseFilterSensitiveLog: (
|
|
1536
1105
|
obj: UpdateMedicalVocabularyResponse
|
|
1537
1106
|
) => any;
|
|
1538
|
-
|
|
1539
1107
|
export declare const UpdateVocabularyRequestFilterSensitiveLog: (
|
|
1540
1108
|
obj: UpdateVocabularyRequest
|
|
1541
1109
|
) => any;
|
|
1542
|
-
|
|
1543
1110
|
export declare const UpdateVocabularyResponseFilterSensitiveLog: (
|
|
1544
1111
|
obj: UpdateVocabularyResponse
|
|
1545
1112
|
) => any;
|
|
1546
|
-
|
|
1547
1113
|
export declare const UpdateVocabularyFilterRequestFilterSensitiveLog: (
|
|
1548
1114
|
obj: UpdateVocabularyFilterRequest
|
|
1549
1115
|
) => any;
|
|
1550
|
-
|
|
1551
1116
|
export declare const UpdateVocabularyFilterResponseFilterSensitiveLog: (
|
|
1552
1117
|
obj: UpdateVocabularyFilterResponse
|
|
1553
1118
|
) => any;
|