@aws-sdk/client-transcribe 3.934.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 +254 -253
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +250 -0
- package/dist-es/models/errors.js +71 -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 +482 -0
- package/dist-types/models/errors.d.ts +74 -0
- package/dist-types/models/models_0.d.ts +1 -556
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +298 -0
- package/dist-types/ts3.4/models/errors.d.ts +38 -0
- package/dist-types/ts3.4/models/models_0.d.ts +31 -336
- 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,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { TranscribeServiceException as __BaseException } from "./TranscribeServiceException";
|
|
1
|
+
import { BaseModelName, CallAnalyticsFeature, CallAnalyticsJobStatus, CallAnalyticsSkippedReasonCode, CLMLanguageCode, InputType, LanguageCode, MediaFormat, MedicalContentIdentificationType, MedicalScribeJobStatus, MedicalScribeLanguageCode, MedicalScribeNoteTemplate, MedicalScribeParticipantRole, ModelStatus, OutputLocationType, ParticipantRole, PiiEntityType, Pronouns, RedactionOutput, RedactionType, SentimentValue, Specialty, SubtitleFormat, ToxicityCategory, TranscriptFilterType, TranscriptionJobStatus, Type, VocabularyFilterMethod, VocabularyState } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>A time range, in milliseconds, between two points in your media file.</p>
|
|
5
4
|
* <p>You can use <code>StartTime</code> and <code>EndTime</code> to search a custom
|
|
@@ -45,57 +44,6 @@ export interface AbsoluteTimeRange {
|
|
|
45
44
|
*/
|
|
46
45
|
Last?: number | undefined;
|
|
47
46
|
}
|
|
48
|
-
/**
|
|
49
|
-
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
50
|
-
* you're trying to delete doesn't exist or if it's in a non-terminal state (such as
|
|
51
|
-
* <code>IN PROGRESS</code>). See the exception message field for more
|
|
52
|
-
* information.</p>
|
|
53
|
-
* @public
|
|
54
|
-
*/
|
|
55
|
-
export declare class BadRequestException extends __BaseException {
|
|
56
|
-
readonly name: "BadRequestException";
|
|
57
|
-
readonly $fault: "client";
|
|
58
|
-
Message?: string | undefined;
|
|
59
|
-
/**
|
|
60
|
-
* @internal
|
|
61
|
-
*/
|
|
62
|
-
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
63
|
-
}
|
|
64
|
-
/**
|
|
65
|
-
* @public
|
|
66
|
-
* @enum
|
|
67
|
-
*/
|
|
68
|
-
export declare const BaseModelName: {
|
|
69
|
-
readonly NARROW_BAND: "NarrowBand";
|
|
70
|
-
readonly WIDE_BAND: "WideBand";
|
|
71
|
-
};
|
|
72
|
-
/**
|
|
73
|
-
* @public
|
|
74
|
-
*/
|
|
75
|
-
export type BaseModelName = (typeof BaseModelName)[keyof typeof BaseModelName];
|
|
76
|
-
/**
|
|
77
|
-
* @public
|
|
78
|
-
* @enum
|
|
79
|
-
*/
|
|
80
|
-
export declare const CallAnalyticsFeature: {
|
|
81
|
-
readonly GENERATIVE_SUMMARIZATION: "GENERATIVE_SUMMARIZATION";
|
|
82
|
-
};
|
|
83
|
-
/**
|
|
84
|
-
* @public
|
|
85
|
-
*/
|
|
86
|
-
export type CallAnalyticsFeature = (typeof CallAnalyticsFeature)[keyof typeof CallAnalyticsFeature];
|
|
87
|
-
/**
|
|
88
|
-
* @public
|
|
89
|
-
* @enum
|
|
90
|
-
*/
|
|
91
|
-
export declare const CallAnalyticsSkippedReasonCode: {
|
|
92
|
-
readonly FAILED_SAFETY_GUIDELINES: "FAILED_SAFETY_GUIDELINES";
|
|
93
|
-
readonly INSUFFICIENT_CONVERSATION_CONTENT: "INSUFFICIENT_CONVERSATION_CONTENT";
|
|
94
|
-
};
|
|
95
|
-
/**
|
|
96
|
-
* @public
|
|
97
|
-
*/
|
|
98
|
-
export type CallAnalyticsSkippedReasonCode = (typeof CallAnalyticsSkippedReasonCode)[keyof typeof CallAnalyticsSkippedReasonCode];
|
|
99
47
|
/**
|
|
100
48
|
* <p>Represents a skipped analytics feature during the analysis of a call analytics job.</p>
|
|
101
49
|
* <p>The <code>Feature</code> field indicates the type of analytics feature that was skipped.</p>
|
|
@@ -132,32 +80,6 @@ export interface CallAnalyticsJobDetails {
|
|
|
132
80
|
*/
|
|
133
81
|
Skipped?: CallAnalyticsSkippedFeature[] | undefined;
|
|
134
82
|
}
|
|
135
|
-
/**
|
|
136
|
-
* @public
|
|
137
|
-
* @enum
|
|
138
|
-
*/
|
|
139
|
-
export declare const CallAnalyticsJobStatus: {
|
|
140
|
-
readonly COMPLETED: "COMPLETED";
|
|
141
|
-
readonly FAILED: "FAILED";
|
|
142
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
143
|
-
readonly QUEUED: "QUEUED";
|
|
144
|
-
};
|
|
145
|
-
/**
|
|
146
|
-
* @public
|
|
147
|
-
*/
|
|
148
|
-
export type CallAnalyticsJobStatus = (typeof CallAnalyticsJobStatus)[keyof typeof CallAnalyticsJobStatus];
|
|
149
|
-
/**
|
|
150
|
-
* @public
|
|
151
|
-
* @enum
|
|
152
|
-
*/
|
|
153
|
-
export declare const ParticipantRole: {
|
|
154
|
-
readonly AGENT: "AGENT";
|
|
155
|
-
readonly CUSTOMER: "CUSTOMER";
|
|
156
|
-
};
|
|
157
|
-
/**
|
|
158
|
-
* @public
|
|
159
|
-
*/
|
|
160
|
-
export type ParticipantRole = (typeof ParticipantRole)[keyof typeof ParticipantRole];
|
|
161
83
|
/**
|
|
162
84
|
* <p>Makes it possible to specify which speaker is on which channel. For example, if your
|
|
163
85
|
* agent is the first participant to speak, you would set <code>ChannelId</code> to
|
|
@@ -178,121 +100,6 @@ export interface ChannelDefinition {
|
|
|
178
100
|
*/
|
|
179
101
|
ParticipantRole?: ParticipantRole | undefined;
|
|
180
102
|
}
|
|
181
|
-
/**
|
|
182
|
-
* @public
|
|
183
|
-
* @enum
|
|
184
|
-
*/
|
|
185
|
-
export declare const LanguageCode: {
|
|
186
|
-
readonly AB_GE: "ab-GE";
|
|
187
|
-
readonly AF_ZA: "af-ZA";
|
|
188
|
-
readonly AR_AE: "ar-AE";
|
|
189
|
-
readonly AR_SA: "ar-SA";
|
|
190
|
-
readonly AST_ES: "ast-ES";
|
|
191
|
-
readonly AZ_AZ: "az-AZ";
|
|
192
|
-
readonly BA_RU: "ba-RU";
|
|
193
|
-
readonly BE_BY: "be-BY";
|
|
194
|
-
readonly BG_BG: "bg-BG";
|
|
195
|
-
readonly BN_IN: "bn-IN";
|
|
196
|
-
readonly BS_BA: "bs-BA";
|
|
197
|
-
readonly CA_ES: "ca-ES";
|
|
198
|
-
readonly CKB_IQ: "ckb-IQ";
|
|
199
|
-
readonly CKB_IR: "ckb-IR";
|
|
200
|
-
readonly CS_CZ: "cs-CZ";
|
|
201
|
-
readonly CY_WL: "cy-WL";
|
|
202
|
-
readonly DA_DK: "da-DK";
|
|
203
|
-
readonly DE_CH: "de-CH";
|
|
204
|
-
readonly DE_DE: "de-DE";
|
|
205
|
-
readonly EL_GR: "el-GR";
|
|
206
|
-
readonly EN_AB: "en-AB";
|
|
207
|
-
readonly EN_AU: "en-AU";
|
|
208
|
-
readonly EN_GB: "en-GB";
|
|
209
|
-
readonly EN_IE: "en-IE";
|
|
210
|
-
readonly EN_IN: "en-IN";
|
|
211
|
-
readonly EN_NZ: "en-NZ";
|
|
212
|
-
readonly EN_US: "en-US";
|
|
213
|
-
readonly EN_WL: "en-WL";
|
|
214
|
-
readonly EN_ZA: "en-ZA";
|
|
215
|
-
readonly ES_ES: "es-ES";
|
|
216
|
-
readonly ES_US: "es-US";
|
|
217
|
-
readonly ET_EE: "et-EE";
|
|
218
|
-
readonly ET_ET: "et-ET";
|
|
219
|
-
readonly EU_ES: "eu-ES";
|
|
220
|
-
readonly FA_IR: "fa-IR";
|
|
221
|
-
readonly FI_FI: "fi-FI";
|
|
222
|
-
readonly FR_CA: "fr-CA";
|
|
223
|
-
readonly FR_FR: "fr-FR";
|
|
224
|
-
readonly GL_ES: "gl-ES";
|
|
225
|
-
readonly GU_IN: "gu-IN";
|
|
226
|
-
readonly HA_NG: "ha-NG";
|
|
227
|
-
readonly HE_IL: "he-IL";
|
|
228
|
-
readonly HI_IN: "hi-IN";
|
|
229
|
-
readonly HR_HR: "hr-HR";
|
|
230
|
-
readonly HU_HU: "hu-HU";
|
|
231
|
-
readonly HY_AM: "hy-AM";
|
|
232
|
-
readonly ID_ID: "id-ID";
|
|
233
|
-
readonly IS_IS: "is-IS";
|
|
234
|
-
readonly IT_IT: "it-IT";
|
|
235
|
-
readonly JA_JP: "ja-JP";
|
|
236
|
-
readonly KAB_DZ: "kab-DZ";
|
|
237
|
-
readonly KA_GE: "ka-GE";
|
|
238
|
-
readonly KK_KZ: "kk-KZ";
|
|
239
|
-
readonly KN_IN: "kn-IN";
|
|
240
|
-
readonly KO_KR: "ko-KR";
|
|
241
|
-
readonly KY_KG: "ky-KG";
|
|
242
|
-
readonly LG_IN: "lg-IN";
|
|
243
|
-
readonly LT_LT: "lt-LT";
|
|
244
|
-
readonly LV_LV: "lv-LV";
|
|
245
|
-
readonly MHR_RU: "mhr-RU";
|
|
246
|
-
readonly MI_NZ: "mi-NZ";
|
|
247
|
-
readonly MK_MK: "mk-MK";
|
|
248
|
-
readonly ML_IN: "ml-IN";
|
|
249
|
-
readonly MN_MN: "mn-MN";
|
|
250
|
-
readonly MR_IN: "mr-IN";
|
|
251
|
-
readonly MS_MY: "ms-MY";
|
|
252
|
-
readonly MT_MT: "mt-MT";
|
|
253
|
-
readonly NL_NL: "nl-NL";
|
|
254
|
-
readonly NO_NO: "no-NO";
|
|
255
|
-
readonly OR_IN: "or-IN";
|
|
256
|
-
readonly PA_IN: "pa-IN";
|
|
257
|
-
readonly PL_PL: "pl-PL";
|
|
258
|
-
readonly PS_AF: "ps-AF";
|
|
259
|
-
readonly PT_BR: "pt-BR";
|
|
260
|
-
readonly PT_PT: "pt-PT";
|
|
261
|
-
readonly RO_RO: "ro-RO";
|
|
262
|
-
readonly RU_RU: "ru-RU";
|
|
263
|
-
readonly RW_RW: "rw-RW";
|
|
264
|
-
readonly SI_LK: "si-LK";
|
|
265
|
-
readonly SK_SK: "sk-SK";
|
|
266
|
-
readonly SL_SI: "sl-SI";
|
|
267
|
-
readonly SO_SO: "so-SO";
|
|
268
|
-
readonly SR_RS: "sr-RS";
|
|
269
|
-
readonly SU_ID: "su-ID";
|
|
270
|
-
readonly SV_SE: "sv-SE";
|
|
271
|
-
readonly SW_BI: "sw-BI";
|
|
272
|
-
readonly SW_KE: "sw-KE";
|
|
273
|
-
readonly SW_RW: "sw-RW";
|
|
274
|
-
readonly SW_TZ: "sw-TZ";
|
|
275
|
-
readonly SW_UG: "sw-UG";
|
|
276
|
-
readonly TA_IN: "ta-IN";
|
|
277
|
-
readonly TE_IN: "te-IN";
|
|
278
|
-
readonly TH_TH: "th-TH";
|
|
279
|
-
readonly TL_PH: "tl-PH";
|
|
280
|
-
readonly TR_TR: "tr-TR";
|
|
281
|
-
readonly TT_RU: "tt-RU";
|
|
282
|
-
readonly UG_CN: "ug-CN";
|
|
283
|
-
readonly UK_UA: "uk-UA";
|
|
284
|
-
readonly UZ_UZ: "uz-UZ";
|
|
285
|
-
readonly VI_VN: "vi-VN";
|
|
286
|
-
readonly WO_SN: "wo-SN";
|
|
287
|
-
readonly ZH_CN: "zh-CN";
|
|
288
|
-
readonly ZH_HK: "zh-HK";
|
|
289
|
-
readonly ZH_TW: "zh-TW";
|
|
290
|
-
readonly ZU_ZA: "zu-ZA";
|
|
291
|
-
};
|
|
292
|
-
/**
|
|
293
|
-
* @public
|
|
294
|
-
*/
|
|
295
|
-
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
296
103
|
/**
|
|
297
104
|
* <p>Describes the Amazon S3 location of the media file you want to use in your
|
|
298
105
|
* request.</p>
|
|
@@ -351,69 +158,6 @@ export interface Media {
|
|
|
351
158
|
*/
|
|
352
159
|
RedactedMediaFileUri?: string | undefined;
|
|
353
160
|
}
|
|
354
|
-
/**
|
|
355
|
-
* @public
|
|
356
|
-
* @enum
|
|
357
|
-
*/
|
|
358
|
-
export declare const MediaFormat: {
|
|
359
|
-
readonly AMR: "amr";
|
|
360
|
-
readonly FLAC: "flac";
|
|
361
|
-
readonly M4A: "m4a";
|
|
362
|
-
readonly MP3: "mp3";
|
|
363
|
-
readonly MP4: "mp4";
|
|
364
|
-
readonly OGG: "ogg";
|
|
365
|
-
readonly WAV: "wav";
|
|
366
|
-
readonly WEBM: "webm";
|
|
367
|
-
};
|
|
368
|
-
/**
|
|
369
|
-
* @public
|
|
370
|
-
*/
|
|
371
|
-
export type MediaFormat = (typeof MediaFormat)[keyof typeof MediaFormat];
|
|
372
|
-
/**
|
|
373
|
-
* @public
|
|
374
|
-
* @enum
|
|
375
|
-
*/
|
|
376
|
-
export declare const PiiEntityType: {
|
|
377
|
-
readonly ADDRESS: "ADDRESS";
|
|
378
|
-
readonly ALL: "ALL";
|
|
379
|
-
readonly BANK_ACCOUNT_NUMBER: "BANK_ACCOUNT_NUMBER";
|
|
380
|
-
readonly BANK_ROUTING: "BANK_ROUTING";
|
|
381
|
-
readonly CREDIT_DEBIT_CVV: "CREDIT_DEBIT_CVV";
|
|
382
|
-
readonly CREDIT_DEBIT_EXPIRY: "CREDIT_DEBIT_EXPIRY";
|
|
383
|
-
readonly CREDIT_DEBIT_NUMBER: "CREDIT_DEBIT_NUMBER";
|
|
384
|
-
readonly EMAIL: "EMAIL";
|
|
385
|
-
readonly NAME: "NAME";
|
|
386
|
-
readonly PHONE: "PHONE";
|
|
387
|
-
readonly PIN: "PIN";
|
|
388
|
-
readonly SSN: "SSN";
|
|
389
|
-
};
|
|
390
|
-
/**
|
|
391
|
-
* @public
|
|
392
|
-
*/
|
|
393
|
-
export type PiiEntityType = (typeof PiiEntityType)[keyof typeof PiiEntityType];
|
|
394
|
-
/**
|
|
395
|
-
* @public
|
|
396
|
-
* @enum
|
|
397
|
-
*/
|
|
398
|
-
export declare const RedactionOutput: {
|
|
399
|
-
readonly REDACTED: "redacted";
|
|
400
|
-
readonly REDACTED_AND_UNREDACTED: "redacted_and_unredacted";
|
|
401
|
-
};
|
|
402
|
-
/**
|
|
403
|
-
* @public
|
|
404
|
-
*/
|
|
405
|
-
export type RedactionOutput = (typeof RedactionOutput)[keyof typeof RedactionOutput];
|
|
406
|
-
/**
|
|
407
|
-
* @public
|
|
408
|
-
* @enum
|
|
409
|
-
*/
|
|
410
|
-
export declare const RedactionType: {
|
|
411
|
-
readonly PII: "PII";
|
|
412
|
-
};
|
|
413
|
-
/**
|
|
414
|
-
* @public
|
|
415
|
-
*/
|
|
416
|
-
export type RedactionType = (typeof RedactionType)[keyof typeof RedactionType];
|
|
417
161
|
/**
|
|
418
162
|
* <p>Makes it possible to redact or flag specified personally identifiable information (PII) in
|
|
419
163
|
* your transcript. If you use <code>ContentRedaction</code>, you must also include the
|
|
@@ -532,19 +276,6 @@ export interface Summarization {
|
|
|
532
276
|
*/
|
|
533
277
|
GenerateAbstractiveSummary: boolean | undefined;
|
|
534
278
|
}
|
|
535
|
-
/**
|
|
536
|
-
* @public
|
|
537
|
-
* @enum
|
|
538
|
-
*/
|
|
539
|
-
export declare const VocabularyFilterMethod: {
|
|
540
|
-
readonly MASK: "mask";
|
|
541
|
-
readonly REMOVE: "remove";
|
|
542
|
-
readonly TAG: "tag";
|
|
543
|
-
};
|
|
544
|
-
/**
|
|
545
|
-
* @public
|
|
546
|
-
*/
|
|
547
|
-
export type VocabularyFilterMethod = (typeof VocabularyFilterMethod)[keyof typeof VocabularyFilterMethod];
|
|
548
279
|
/**
|
|
549
280
|
* <p>Provides additional optional settings for your request, including content redaction,
|
|
550
281
|
* automatic language identification; allows you to apply custom language models, custom
|
|
@@ -954,18 +685,6 @@ export interface CallAnalyticsJobSummary {
|
|
|
954
685
|
*/
|
|
955
686
|
FailureReason?: string | undefined;
|
|
956
687
|
}
|
|
957
|
-
/**
|
|
958
|
-
* @public
|
|
959
|
-
* @enum
|
|
960
|
-
*/
|
|
961
|
-
export declare const InputType: {
|
|
962
|
-
readonly POST_CALL: "POST_CALL";
|
|
963
|
-
readonly REAL_TIME: "REAL_TIME";
|
|
964
|
-
};
|
|
965
|
-
/**
|
|
966
|
-
* @public
|
|
967
|
-
*/
|
|
968
|
-
export type InputType = (typeof InputType)[keyof typeof InputType];
|
|
969
688
|
/**
|
|
970
689
|
* <p>A time range, in percentage, between two points in your media file.</p>
|
|
971
690
|
* <p>You can use <code>StartPercentage</code> and <code>EndPercentage</code> to search a
|
|
@@ -1105,20 +824,6 @@ export interface NonTalkTimeFilter {
|
|
|
1105
824
|
*/
|
|
1106
825
|
Negate?: boolean | undefined;
|
|
1107
826
|
}
|
|
1108
|
-
/**
|
|
1109
|
-
* @public
|
|
1110
|
-
* @enum
|
|
1111
|
-
*/
|
|
1112
|
-
export declare const SentimentValue: {
|
|
1113
|
-
readonly MIXED: "MIXED";
|
|
1114
|
-
readonly NEGATIVE: "NEGATIVE";
|
|
1115
|
-
readonly NEUTRAL: "NEUTRAL";
|
|
1116
|
-
readonly POSITIVE: "POSITIVE";
|
|
1117
|
-
};
|
|
1118
|
-
/**
|
|
1119
|
-
* @public
|
|
1120
|
-
*/
|
|
1121
|
-
export type SentimentValue = (typeof SentimentValue)[keyof typeof SentimentValue];
|
|
1122
827
|
/**
|
|
1123
828
|
* <p>Flag the presence or absence of specific sentiments detected in your Call Analytics
|
|
1124
829
|
* transcription output.</p>
|
|
@@ -1177,17 +882,6 @@ export interface SentimentFilter {
|
|
|
1177
882
|
*/
|
|
1178
883
|
Negate?: boolean | undefined;
|
|
1179
884
|
}
|
|
1180
|
-
/**
|
|
1181
|
-
* @public
|
|
1182
|
-
* @enum
|
|
1183
|
-
*/
|
|
1184
|
-
export declare const TranscriptFilterType: {
|
|
1185
|
-
readonly EXACT: "EXACT";
|
|
1186
|
-
};
|
|
1187
|
-
/**
|
|
1188
|
-
* @public
|
|
1189
|
-
*/
|
|
1190
|
-
export type TranscriptFilterType = (typeof TranscriptFilterType)[keyof typeof TranscriptFilterType];
|
|
1191
885
|
/**
|
|
1192
886
|
* <p>Flag the presence or absence of specific words or phrases detected in your Call
|
|
1193
887
|
* Analytics transcription output.</p>
|
|
@@ -1388,23 +1082,6 @@ export interface CategoryProperties {
|
|
|
1388
1082
|
*/
|
|
1389
1083
|
InputType?: InputType | undefined;
|
|
1390
1084
|
}
|
|
1391
|
-
/**
|
|
1392
|
-
* @public
|
|
1393
|
-
* @enum
|
|
1394
|
-
*/
|
|
1395
|
-
export declare const MedicalScribeNoteTemplate: {
|
|
1396
|
-
readonly BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP";
|
|
1397
|
-
readonly BIRP: "BIRP";
|
|
1398
|
-
readonly DAP: "DAP";
|
|
1399
|
-
readonly GIRPP: "GIRPP";
|
|
1400
|
-
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
1401
|
-
readonly PHYSICAL_SOAP: "PHYSICAL_SOAP";
|
|
1402
|
-
readonly SIRP: "SIRP";
|
|
1403
|
-
};
|
|
1404
|
-
/**
|
|
1405
|
-
* @public
|
|
1406
|
-
*/
|
|
1407
|
-
export type MedicalScribeNoteTemplate = (typeof MedicalScribeNoteTemplate)[keyof typeof MedicalScribeNoteTemplate];
|
|
1408
1085
|
/**
|
|
1409
1086
|
* <p>The output configuration for clinical note generation.</p>
|
|
1410
1087
|
* @public
|
|
@@ -1441,37 +1118,6 @@ export interface ClinicalNoteGenerationSettings {
|
|
|
1441
1118
|
*/
|
|
1442
1119
|
NoteTemplate?: MedicalScribeNoteTemplate | undefined;
|
|
1443
1120
|
}
|
|
1444
|
-
/**
|
|
1445
|
-
* @public
|
|
1446
|
-
* @enum
|
|
1447
|
-
*/
|
|
1448
|
-
export declare const CLMLanguageCode: {
|
|
1449
|
-
readonly DE_DE: "de-DE";
|
|
1450
|
-
readonly EN_AU: "en-AU";
|
|
1451
|
-
readonly EN_GB: "en-GB";
|
|
1452
|
-
readonly EN_US: "en-US";
|
|
1453
|
-
readonly ES_US: "es-US";
|
|
1454
|
-
readonly HI_IN: "hi-IN";
|
|
1455
|
-
readonly JA_JP: "ja-JP";
|
|
1456
|
-
};
|
|
1457
|
-
/**
|
|
1458
|
-
* @public
|
|
1459
|
-
*/
|
|
1460
|
-
export type CLMLanguageCode = (typeof CLMLanguageCode)[keyof typeof CLMLanguageCode];
|
|
1461
|
-
/**
|
|
1462
|
-
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
1463
|
-
* Amazon Web Services account.</p>
|
|
1464
|
-
* @public
|
|
1465
|
-
*/
|
|
1466
|
-
export declare class ConflictException extends __BaseException {
|
|
1467
|
-
readonly name: "ConflictException";
|
|
1468
|
-
readonly $fault: "client";
|
|
1469
|
-
Message?: string | undefined;
|
|
1470
|
-
/**
|
|
1471
|
-
* @internal
|
|
1472
|
-
*/
|
|
1473
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1474
|
-
}
|
|
1475
1121
|
/**
|
|
1476
1122
|
* @public
|
|
1477
1123
|
*/
|
|
@@ -1526,34 +1172,6 @@ export interface CreateCallAnalyticsCategoryResponse {
|
|
|
1526
1172
|
*/
|
|
1527
1173
|
CategoryProperties?: CategoryProperties | undefined;
|
|
1528
1174
|
}
|
|
1529
|
-
/**
|
|
1530
|
-
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
1531
|
-
* request again.</p>
|
|
1532
|
-
* @public
|
|
1533
|
-
*/
|
|
1534
|
-
export declare class InternalFailureException extends __BaseException {
|
|
1535
|
-
readonly name: "InternalFailureException";
|
|
1536
|
-
readonly $fault: "server";
|
|
1537
|
-
Message?: string | undefined;
|
|
1538
|
-
/**
|
|
1539
|
-
* @internal
|
|
1540
|
-
*/
|
|
1541
|
-
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
1542
|
-
}
|
|
1543
|
-
/**
|
|
1544
|
-
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
1545
|
-
* retrying your request, or use a smaller file and try your request again.</p>
|
|
1546
|
-
* @public
|
|
1547
|
-
*/
|
|
1548
|
-
export declare class LimitExceededException extends __BaseException {
|
|
1549
|
-
readonly name: "LimitExceededException";
|
|
1550
|
-
readonly $fault: "client";
|
|
1551
|
-
Message?: string | undefined;
|
|
1552
|
-
/**
|
|
1553
|
-
* @internal
|
|
1554
|
-
*/
|
|
1555
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1556
|
-
}
|
|
1557
1175
|
/**
|
|
1558
1176
|
* <p>Contains the Amazon S3 location of the training data you want to use to create
|
|
1559
1177
|
* a new custom language model, and permissions to access this location.</p>
|
|
@@ -1654,19 +1272,6 @@ export interface CreateLanguageModelRequest {
|
|
|
1654
1272
|
*/
|
|
1655
1273
|
Tags?: Tag[] | undefined;
|
|
1656
1274
|
}
|
|
1657
|
-
/**
|
|
1658
|
-
* @public
|
|
1659
|
-
* @enum
|
|
1660
|
-
*/
|
|
1661
|
-
export declare const ModelStatus: {
|
|
1662
|
-
readonly COMPLETED: "COMPLETED";
|
|
1663
|
-
readonly FAILED: "FAILED";
|
|
1664
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1665
|
-
};
|
|
1666
|
-
/**
|
|
1667
|
-
* @public
|
|
1668
|
-
*/
|
|
1669
|
-
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
1670
1275
|
/**
|
|
1671
1276
|
* @public
|
|
1672
1277
|
*/
|
|
@@ -1739,19 +1344,6 @@ export interface CreateMedicalVocabularyRequest {
|
|
|
1739
1344
|
*/
|
|
1740
1345
|
Tags?: Tag[] | undefined;
|
|
1741
1346
|
}
|
|
1742
|
-
/**
|
|
1743
|
-
* @public
|
|
1744
|
-
* @enum
|
|
1745
|
-
*/
|
|
1746
|
-
export declare const VocabularyState: {
|
|
1747
|
-
readonly FAILED: "FAILED";
|
|
1748
|
-
readonly PENDING: "PENDING";
|
|
1749
|
-
readonly READY: "READY";
|
|
1750
|
-
};
|
|
1751
|
-
/**
|
|
1752
|
-
* @public
|
|
1753
|
-
*/
|
|
1754
|
-
export type VocabularyState = (typeof VocabularyState)[keyof typeof VocabularyState];
|
|
1755
1347
|
/**
|
|
1756
1348
|
* @public
|
|
1757
1349
|
*/
|
|
@@ -2015,20 +1607,6 @@ export interface DeleteCallAnalyticsCategoryRequest {
|
|
|
2015
1607
|
*/
|
|
2016
1608
|
export interface DeleteCallAnalyticsCategoryResponse {
|
|
2017
1609
|
}
|
|
2018
|
-
/**
|
|
2019
|
-
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
2020
|
-
* your request again.</p>
|
|
2021
|
-
* @public
|
|
2022
|
-
*/
|
|
2023
|
-
export declare class NotFoundException extends __BaseException {
|
|
2024
|
-
readonly name: "NotFoundException";
|
|
2025
|
-
readonly $fault: "client";
|
|
2026
|
-
Message?: string | undefined;
|
|
2027
|
-
/**
|
|
2028
|
-
* @internal
|
|
2029
|
-
*/
|
|
2030
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
2031
|
-
}
|
|
2032
1610
|
/**
|
|
2033
1611
|
* @public
|
|
2034
1612
|
*/
|
|
@@ -2308,18 +1886,6 @@ export interface GetMedicalScribeJobRequest {
|
|
|
2308
1886
|
*/
|
|
2309
1887
|
MedicalScribeJobName: string | undefined;
|
|
2310
1888
|
}
|
|
2311
|
-
/**
|
|
2312
|
-
* @public
|
|
2313
|
-
* @enum
|
|
2314
|
-
*/
|
|
2315
|
-
export declare const MedicalScribeParticipantRole: {
|
|
2316
|
-
readonly CLINICIAN: "CLINICIAN";
|
|
2317
|
-
readonly PATIENT: "PATIENT";
|
|
2318
|
-
};
|
|
2319
|
-
/**
|
|
2320
|
-
* @public
|
|
2321
|
-
*/
|
|
2322
|
-
export type MedicalScribeParticipantRole = (typeof MedicalScribeParticipantRole)[keyof typeof MedicalScribeParticipantRole];
|
|
2323
1889
|
/**
|
|
2324
1890
|
* <p>Indicates which speaker is on which channel. The options are
|
|
2325
1891
|
* <code>CLINICIAN</code> and <code>PATIENT</code>
|
|
@@ -2340,31 +1906,6 @@ export interface MedicalScribeChannelDefinition {
|
|
|
2340
1906
|
*/
|
|
2341
1907
|
ParticipantRole: MedicalScribeParticipantRole | undefined;
|
|
2342
1908
|
}
|
|
2343
|
-
/**
|
|
2344
|
-
* @public
|
|
2345
|
-
* @enum
|
|
2346
|
-
*/
|
|
2347
|
-
export declare const MedicalScribeLanguageCode: {
|
|
2348
|
-
readonly EN_US: "en-US";
|
|
2349
|
-
};
|
|
2350
|
-
/**
|
|
2351
|
-
* @public
|
|
2352
|
-
*/
|
|
2353
|
-
export type MedicalScribeLanguageCode = (typeof MedicalScribeLanguageCode)[keyof typeof MedicalScribeLanguageCode];
|
|
2354
|
-
/**
|
|
2355
|
-
* @public
|
|
2356
|
-
* @enum
|
|
2357
|
-
*/
|
|
2358
|
-
export declare const MedicalScribeJobStatus: {
|
|
2359
|
-
readonly COMPLETED: "COMPLETED";
|
|
2360
|
-
readonly FAILED: "FAILED";
|
|
2361
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2362
|
-
readonly QUEUED: "QUEUED";
|
|
2363
|
-
};
|
|
2364
|
-
/**
|
|
2365
|
-
* @public
|
|
2366
|
-
*/
|
|
2367
|
-
export type MedicalScribeJobStatus = (typeof MedicalScribeJobStatus)[keyof typeof MedicalScribeJobStatus];
|
|
2368
1909
|
/**
|
|
2369
1910
|
* <p>The location of the output of your Medical Scribe job.
|
|
2370
1911
|
* <code>ClinicalDocumentUri</code> holds the Amazon S3 URI for the Clinical Document
|
|
@@ -2602,17 +2143,6 @@ export interface GetMedicalTranscriptionJobRequest {
|
|
|
2602
2143
|
*/
|
|
2603
2144
|
MedicalTranscriptionJobName: string | undefined;
|
|
2604
2145
|
}
|
|
2605
|
-
/**
|
|
2606
|
-
* @public
|
|
2607
|
-
* @enum
|
|
2608
|
-
*/
|
|
2609
|
-
export declare const MedicalContentIdentificationType: {
|
|
2610
|
-
readonly PHI: "PHI";
|
|
2611
|
-
};
|
|
2612
|
-
/**
|
|
2613
|
-
* @public
|
|
2614
|
-
*/
|
|
2615
|
-
export type MedicalContentIdentificationType = (typeof MedicalContentIdentificationType)[keyof typeof MedicalContentIdentificationType];
|
|
2616
2146
|
/**
|
|
2617
2147
|
* <p>Allows additional optional settings in your request, including channel
|
|
2618
2148
|
* identification, alternative transcriptions, and speaker partitioning. You can use that to
|
|
@@ -2686,17 +2216,6 @@ export interface MedicalTranscriptionSetting {
|
|
|
2686
2216
|
*/
|
|
2687
2217
|
VocabularyName?: string | undefined;
|
|
2688
2218
|
}
|
|
2689
|
-
/**
|
|
2690
|
-
* @public
|
|
2691
|
-
* @enum
|
|
2692
|
-
*/
|
|
2693
|
-
export declare const Specialty: {
|
|
2694
|
-
readonly PRIMARYCARE: "PRIMARYCARE";
|
|
2695
|
-
};
|
|
2696
|
-
/**
|
|
2697
|
-
* @public
|
|
2698
|
-
*/
|
|
2699
|
-
export type Specialty = (typeof Specialty)[keyof typeof Specialty];
|
|
2700
2219
|
/**
|
|
2701
2220
|
* <p>Provides you with the Amazon S3 URI you can use to access your
|
|
2702
2221
|
* transcript.</p>
|
|
@@ -2712,32 +2231,6 @@ export interface MedicalTranscript {
|
|
|
2712
2231
|
*/
|
|
2713
2232
|
TranscriptFileUri?: string | undefined;
|
|
2714
2233
|
}
|
|
2715
|
-
/**
|
|
2716
|
-
* @public
|
|
2717
|
-
* @enum
|
|
2718
|
-
*/
|
|
2719
|
-
export declare const TranscriptionJobStatus: {
|
|
2720
|
-
readonly COMPLETED: "COMPLETED";
|
|
2721
|
-
readonly FAILED: "FAILED";
|
|
2722
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2723
|
-
readonly QUEUED: "QUEUED";
|
|
2724
|
-
};
|
|
2725
|
-
/**
|
|
2726
|
-
* @public
|
|
2727
|
-
*/
|
|
2728
|
-
export type TranscriptionJobStatus = (typeof TranscriptionJobStatus)[keyof typeof TranscriptionJobStatus];
|
|
2729
|
-
/**
|
|
2730
|
-
* @public
|
|
2731
|
-
* @enum
|
|
2732
|
-
*/
|
|
2733
|
-
export declare const Type: {
|
|
2734
|
-
readonly CONVERSATION: "CONVERSATION";
|
|
2735
|
-
readonly DICTATION: "DICTATION";
|
|
2736
|
-
};
|
|
2737
|
-
/**
|
|
2738
|
-
* @public
|
|
2739
|
-
*/
|
|
2740
|
-
export type Type = (typeof Type)[keyof typeof Type];
|
|
2741
2234
|
/**
|
|
2742
2235
|
* <p>Provides detailed information about a medical transcription job.</p>
|
|
2743
2236
|
* <p>To view the status of the specified medical transcription job, check the
|
|
@@ -3148,18 +2641,6 @@ export interface Settings {
|
|
|
3148
2641
|
*/
|
|
3149
2642
|
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
3150
2643
|
}
|
|
3151
|
-
/**
|
|
3152
|
-
* @public
|
|
3153
|
-
* @enum
|
|
3154
|
-
*/
|
|
3155
|
-
export declare const SubtitleFormat: {
|
|
3156
|
-
readonly SRT: "srt";
|
|
3157
|
-
readonly VTT: "vtt";
|
|
3158
|
-
};
|
|
3159
|
-
/**
|
|
3160
|
-
* @public
|
|
3161
|
-
*/
|
|
3162
|
-
export type SubtitleFormat = (typeof SubtitleFormat)[keyof typeof SubtitleFormat];
|
|
3163
2644
|
/**
|
|
3164
2645
|
* <p>Provides information about your subtitle file, including format, start index, and
|
|
3165
2646
|
* Amazon S3 location.</p>
|
|
@@ -3201,17 +2682,6 @@ export interface SubtitlesOutput {
|
|
|
3201
2682
|
*/
|
|
3202
2683
|
OutputStartIndex?: number | undefined;
|
|
3203
2684
|
}
|
|
3204
|
-
/**
|
|
3205
|
-
* @public
|
|
3206
|
-
* @enum
|
|
3207
|
-
*/
|
|
3208
|
-
export declare const ToxicityCategory: {
|
|
3209
|
-
readonly ALL: "ALL";
|
|
3210
|
-
};
|
|
3211
|
-
/**
|
|
3212
|
-
* @public
|
|
3213
|
-
*/
|
|
3214
|
-
export type ToxicityCategory = (typeof ToxicityCategory)[keyof typeof ToxicityCategory];
|
|
3215
2685
|
/**
|
|
3216
2686
|
* <p>Contains <code>ToxicityCategories</code>, which is a required parameter if you
|
|
3217
2687
|
* want to enable toxicity detection (<code>ToxicityDetection</code>) in your transcription
|
|
@@ -3851,18 +3321,6 @@ export interface ListMedicalTranscriptionJobsRequest {
|
|
|
3851
3321
|
*/
|
|
3852
3322
|
MaxResults?: number | undefined;
|
|
3853
3323
|
}
|
|
3854
|
-
/**
|
|
3855
|
-
* @public
|
|
3856
|
-
* @enum
|
|
3857
|
-
*/
|
|
3858
|
-
export declare const OutputLocationType: {
|
|
3859
|
-
readonly CUSTOMER_BUCKET: "CUSTOMER_BUCKET";
|
|
3860
|
-
readonly SERVICE_BUCKET: "SERVICE_BUCKET";
|
|
3861
|
-
};
|
|
3862
|
-
/**
|
|
3863
|
-
* @public
|
|
3864
|
-
*/
|
|
3865
|
-
export type OutputLocationType = (typeof OutputLocationType)[keyof typeof OutputLocationType];
|
|
3866
3324
|
/**
|
|
3867
3325
|
* <p>Provides detailed information about a specific medical transcription job.</p>
|
|
3868
3326
|
* @public
|
|
@@ -4427,19 +3885,6 @@ export interface ListVocabularyFiltersResponse {
|
|
|
4427
3885
|
*/
|
|
4428
3886
|
VocabularyFilters?: VocabularyFilterInfo[] | undefined;
|
|
4429
3887
|
}
|
|
4430
|
-
/**
|
|
4431
|
-
* @public
|
|
4432
|
-
* @enum
|
|
4433
|
-
*/
|
|
4434
|
-
export declare const Pronouns: {
|
|
4435
|
-
readonly HE_HIM: "HE_HIM";
|
|
4436
|
-
readonly SHE_HER: "SHE_HER";
|
|
4437
|
-
readonly THEY_THEM: "THEY_THEM";
|
|
4438
|
-
};
|
|
4439
|
-
/**
|
|
4440
|
-
* @public
|
|
4441
|
-
*/
|
|
4442
|
-
export type Pronouns = (typeof Pronouns)[keyof typeof Pronouns];
|
|
4443
3888
|
/**
|
|
4444
3889
|
* <p>Contains patient-specific information used to customize the clinical note generation.</p>
|
|
4445
3890
|
* @public
|