@aws-sdk/client-transcribe 3.301.0 → 3.303.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/models/models_0.js +146 -167
- package/dist-es/models/models_0.js +146 -167
- package/dist-types/models/models_0.d.ts +252 -147
- package/dist-types/ts3.4/models/models_0.d.ts +179 -146
- package/package.json +34 -34
|
@@ -59,27 +59,42 @@ export declare class BadRequestException extends __BaseException {
|
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
61
|
* @public
|
|
62
|
+
* @enum
|
|
62
63
|
*/
|
|
63
|
-
export declare
|
|
64
|
-
NARROW_BAND
|
|
65
|
-
WIDE_BAND
|
|
66
|
-
}
|
|
64
|
+
export declare const BaseModelName: {
|
|
65
|
+
readonly NARROW_BAND: "NarrowBand";
|
|
66
|
+
readonly WIDE_BAND: "WideBand";
|
|
67
|
+
};
|
|
67
68
|
/**
|
|
68
69
|
* @public
|
|
69
70
|
*/
|
|
70
|
-
export
|
|
71
|
-
COMPLETED = "COMPLETED",
|
|
72
|
-
FAILED = "FAILED",
|
|
73
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
74
|
-
QUEUED = "QUEUED"
|
|
75
|
-
}
|
|
71
|
+
export type BaseModelName = (typeof BaseModelName)[keyof typeof BaseModelName];
|
|
76
72
|
/**
|
|
77
73
|
* @public
|
|
74
|
+
* @enum
|
|
78
75
|
*/
|
|
79
|
-
export declare
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
76
|
+
export declare const CallAnalyticsJobStatus: {
|
|
77
|
+
readonly COMPLETED: "COMPLETED";
|
|
78
|
+
readonly FAILED: "FAILED";
|
|
79
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
80
|
+
readonly QUEUED: "QUEUED";
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export type CallAnalyticsJobStatus = (typeof CallAnalyticsJobStatus)[keyof typeof CallAnalyticsJobStatus];
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
* @enum
|
|
89
|
+
*/
|
|
90
|
+
export declare const ParticipantRole: {
|
|
91
|
+
readonly AGENT: "AGENT";
|
|
92
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export type ParticipantRole = (typeof ParticipantRole)[keyof typeof ParticipantRole];
|
|
83
98
|
/**
|
|
84
99
|
* @public
|
|
85
100
|
* <p>Makes it possible to specify which speaker is on which channel. For example, if your
|
|
@@ -100,48 +115,53 @@ export interface ChannelDefinition {
|
|
|
100
115
|
}
|
|
101
116
|
/**
|
|
102
117
|
* @public
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
118
|
+
* @enum
|
|
119
|
+
*/
|
|
120
|
+
export declare const LanguageCode: {
|
|
121
|
+
readonly AF_ZA: "af-ZA";
|
|
122
|
+
readonly AR_AE: "ar-AE";
|
|
123
|
+
readonly AR_SA: "ar-SA";
|
|
124
|
+
readonly DA_DK: "da-DK";
|
|
125
|
+
readonly DE_CH: "de-CH";
|
|
126
|
+
readonly DE_DE: "de-DE";
|
|
127
|
+
readonly EN_AB: "en-AB";
|
|
128
|
+
readonly EN_AU: "en-AU";
|
|
129
|
+
readonly EN_GB: "en-GB";
|
|
130
|
+
readonly EN_IE: "en-IE";
|
|
131
|
+
readonly EN_IN: "en-IN";
|
|
132
|
+
readonly EN_NZ: "en-NZ";
|
|
133
|
+
readonly EN_US: "en-US";
|
|
134
|
+
readonly EN_WL: "en-WL";
|
|
135
|
+
readonly EN_ZA: "en-ZA";
|
|
136
|
+
readonly ES_ES: "es-ES";
|
|
137
|
+
readonly ES_US: "es-US";
|
|
138
|
+
readonly FA_IR: "fa-IR";
|
|
139
|
+
readonly FR_CA: "fr-CA";
|
|
140
|
+
readonly FR_FR: "fr-FR";
|
|
141
|
+
readonly HE_IL: "he-IL";
|
|
142
|
+
readonly HI_IN: "hi-IN";
|
|
143
|
+
readonly ID_ID: "id-ID";
|
|
144
|
+
readonly IT_IT: "it-IT";
|
|
145
|
+
readonly JA_JP: "ja-JP";
|
|
146
|
+
readonly KO_KR: "ko-KR";
|
|
147
|
+
readonly MS_MY: "ms-MY";
|
|
148
|
+
readonly NL_NL: "nl-NL";
|
|
149
|
+
readonly PT_BR: "pt-BR";
|
|
150
|
+
readonly PT_PT: "pt-PT";
|
|
151
|
+
readonly RU_RU: "ru-RU";
|
|
152
|
+
readonly SV_SE: "sv-SE";
|
|
153
|
+
readonly TA_IN: "ta-IN";
|
|
154
|
+
readonly TE_IN: "te-IN";
|
|
155
|
+
readonly TH_TH: "th-TH";
|
|
156
|
+
readonly TR_TR: "tr-TR";
|
|
157
|
+
readonly VI_VN: "vi-VN";
|
|
158
|
+
readonly ZH_CN: "zh-CN";
|
|
159
|
+
readonly ZH_TW: "zh-TW";
|
|
160
|
+
};
|
|
161
|
+
/**
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
164
|
+
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
145
165
|
/**
|
|
146
166
|
* @public
|
|
147
167
|
* <p>Describes the Amazon S3 location of the media file you want to use in your
|
|
@@ -199,46 +219,66 @@ export interface Media {
|
|
|
199
219
|
}
|
|
200
220
|
/**
|
|
201
221
|
* @public
|
|
222
|
+
* @enum
|
|
202
223
|
*/
|
|
203
|
-
export declare
|
|
204
|
-
AMR
|
|
205
|
-
FLAC
|
|
206
|
-
MP3
|
|
207
|
-
MP4
|
|
208
|
-
OGG
|
|
209
|
-
WAV
|
|
210
|
-
WEBM
|
|
211
|
-
}
|
|
224
|
+
export declare const MediaFormat: {
|
|
225
|
+
readonly AMR: "amr";
|
|
226
|
+
readonly FLAC: "flac";
|
|
227
|
+
readonly MP3: "mp3";
|
|
228
|
+
readonly MP4: "mp4";
|
|
229
|
+
readonly OGG: "ogg";
|
|
230
|
+
readonly WAV: "wav";
|
|
231
|
+
readonly WEBM: "webm";
|
|
232
|
+
};
|
|
212
233
|
/**
|
|
213
234
|
* @public
|
|
214
235
|
*/
|
|
215
|
-
export
|
|
216
|
-
ADDRESS = "ADDRESS",
|
|
217
|
-
ALL = "ALL",
|
|
218
|
-
BANK_ACCOUNT_NUMBER = "BANK_ACCOUNT_NUMBER",
|
|
219
|
-
BANK_ROUTING = "BANK_ROUTING",
|
|
220
|
-
CREDIT_DEBIT_CVV = "CREDIT_DEBIT_CVV",
|
|
221
|
-
CREDIT_DEBIT_EXPIRY = "CREDIT_DEBIT_EXPIRY",
|
|
222
|
-
CREDIT_DEBIT_NUMBER = "CREDIT_DEBIT_NUMBER",
|
|
223
|
-
EMAIL = "EMAIL",
|
|
224
|
-
NAME = "NAME",
|
|
225
|
-
PHONE = "PHONE",
|
|
226
|
-
PIN = "PIN",
|
|
227
|
-
SSN = "SSN"
|
|
228
|
-
}
|
|
236
|
+
export type MediaFormat = (typeof MediaFormat)[keyof typeof MediaFormat];
|
|
229
237
|
/**
|
|
230
238
|
* @public
|
|
239
|
+
* @enum
|
|
231
240
|
*/
|
|
232
|
-
export declare
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
241
|
+
export declare const PiiEntityType: {
|
|
242
|
+
readonly ADDRESS: "ADDRESS";
|
|
243
|
+
readonly ALL: "ALL";
|
|
244
|
+
readonly BANK_ACCOUNT_NUMBER: "BANK_ACCOUNT_NUMBER";
|
|
245
|
+
readonly BANK_ROUTING: "BANK_ROUTING";
|
|
246
|
+
readonly CREDIT_DEBIT_CVV: "CREDIT_DEBIT_CVV";
|
|
247
|
+
readonly CREDIT_DEBIT_EXPIRY: "CREDIT_DEBIT_EXPIRY";
|
|
248
|
+
readonly CREDIT_DEBIT_NUMBER: "CREDIT_DEBIT_NUMBER";
|
|
249
|
+
readonly EMAIL: "EMAIL";
|
|
250
|
+
readonly NAME: "NAME";
|
|
251
|
+
readonly PHONE: "PHONE";
|
|
252
|
+
readonly PIN: "PIN";
|
|
253
|
+
readonly SSN: "SSN";
|
|
254
|
+
};
|
|
236
255
|
/**
|
|
237
256
|
* @public
|
|
238
257
|
*/
|
|
239
|
-
export
|
|
240
|
-
|
|
241
|
-
|
|
258
|
+
export type PiiEntityType = (typeof PiiEntityType)[keyof typeof PiiEntityType];
|
|
259
|
+
/**
|
|
260
|
+
* @public
|
|
261
|
+
* @enum
|
|
262
|
+
*/
|
|
263
|
+
export declare const RedactionOutput: {
|
|
264
|
+
readonly REDACTED: "redacted";
|
|
265
|
+
readonly REDACTED_AND_UNREDACTED: "redacted_and_unredacted";
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* @public
|
|
269
|
+
*/
|
|
270
|
+
export type RedactionOutput = (typeof RedactionOutput)[keyof typeof RedactionOutput];
|
|
271
|
+
/**
|
|
272
|
+
* @public
|
|
273
|
+
* @enum
|
|
274
|
+
*/
|
|
275
|
+
export declare const RedactionType: {
|
|
276
|
+
readonly PII: "PII";
|
|
277
|
+
};
|
|
278
|
+
/**
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
export type RedactionType = (typeof RedactionType)[keyof typeof RedactionType];
|
|
242
282
|
/**
|
|
243
283
|
* @public
|
|
244
284
|
* <p>Makes it possible to redact or flag specified personally identifiable information
|
|
@@ -334,12 +374,17 @@ export interface LanguageIdSettings {
|
|
|
334
374
|
}
|
|
335
375
|
/**
|
|
336
376
|
* @public
|
|
377
|
+
* @enum
|
|
337
378
|
*/
|
|
338
|
-
export declare
|
|
339
|
-
MASK
|
|
340
|
-
REMOVE
|
|
341
|
-
TAG
|
|
342
|
-
}
|
|
379
|
+
export declare const VocabularyFilterMethod: {
|
|
380
|
+
readonly MASK: "mask";
|
|
381
|
+
readonly REMOVE: "remove";
|
|
382
|
+
readonly TAG: "tag";
|
|
383
|
+
};
|
|
384
|
+
/**
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
387
|
+
export type VocabularyFilterMethod = (typeof VocabularyFilterMethod)[keyof typeof VocabularyFilterMethod];
|
|
343
388
|
/**
|
|
344
389
|
* @public
|
|
345
390
|
* <p>Provides additional optional settings for your request, including content redaction,
|
|
@@ -672,11 +717,16 @@ export interface CallAnalyticsJobSummary {
|
|
|
672
717
|
}
|
|
673
718
|
/**
|
|
674
719
|
* @public
|
|
720
|
+
* @enum
|
|
675
721
|
*/
|
|
676
|
-
export declare
|
|
677
|
-
POST_CALL
|
|
678
|
-
REAL_TIME
|
|
679
|
-
}
|
|
722
|
+
export declare const InputType: {
|
|
723
|
+
readonly POST_CALL: "POST_CALL";
|
|
724
|
+
readonly REAL_TIME: "REAL_TIME";
|
|
725
|
+
};
|
|
726
|
+
/**
|
|
727
|
+
* @public
|
|
728
|
+
*/
|
|
729
|
+
export type InputType = (typeof InputType)[keyof typeof InputType];
|
|
680
730
|
/**
|
|
681
731
|
* @public
|
|
682
732
|
* <p>A time range, in percentage, between two points in your media file.</p>
|
|
@@ -805,13 +855,18 @@ export interface NonTalkTimeFilter {
|
|
|
805
855
|
}
|
|
806
856
|
/**
|
|
807
857
|
* @public
|
|
858
|
+
* @enum
|
|
808
859
|
*/
|
|
809
|
-
export declare
|
|
810
|
-
MIXED
|
|
811
|
-
NEGATIVE
|
|
812
|
-
NEUTRAL
|
|
813
|
-
POSITIVE
|
|
814
|
-
}
|
|
860
|
+
export declare const SentimentValue: {
|
|
861
|
+
readonly MIXED: "MIXED";
|
|
862
|
+
readonly NEGATIVE: "NEGATIVE";
|
|
863
|
+
readonly NEUTRAL: "NEUTRAL";
|
|
864
|
+
readonly POSITIVE: "POSITIVE";
|
|
865
|
+
};
|
|
866
|
+
/**
|
|
867
|
+
* @public
|
|
868
|
+
*/
|
|
869
|
+
export type SentimentValue = (typeof SentimentValue)[keyof typeof SentimentValue];
|
|
815
870
|
/**
|
|
816
871
|
* @public
|
|
817
872
|
* <p>Flag the presence or absence of specific sentiments detected in your Call Analytics
|
|
@@ -867,10 +922,15 @@ export interface SentimentFilter {
|
|
|
867
922
|
}
|
|
868
923
|
/**
|
|
869
924
|
* @public
|
|
925
|
+
* @enum
|
|
870
926
|
*/
|
|
871
|
-
export declare
|
|
872
|
-
EXACT
|
|
873
|
-
}
|
|
927
|
+
export declare const TranscriptFilterType: {
|
|
928
|
+
readonly EXACT: "EXACT";
|
|
929
|
+
};
|
|
930
|
+
/**
|
|
931
|
+
* @public
|
|
932
|
+
*/
|
|
933
|
+
export type TranscriptFilterType = (typeof TranscriptFilterType)[keyof typeof TranscriptFilterType];
|
|
874
934
|
/**
|
|
875
935
|
* @public
|
|
876
936
|
* <p>Flag the presence or absence of specific words or phrases detected in your Call
|
|
@@ -1046,16 +1106,21 @@ export interface CategoryProperties {
|
|
|
1046
1106
|
}
|
|
1047
1107
|
/**
|
|
1048
1108
|
* @public
|
|
1109
|
+
* @enum
|
|
1049
1110
|
*/
|
|
1050
|
-
export declare
|
|
1051
|
-
DE_DE
|
|
1052
|
-
EN_AU
|
|
1053
|
-
EN_GB
|
|
1054
|
-
EN_US
|
|
1055
|
-
ES_US
|
|
1056
|
-
HI_IN
|
|
1057
|
-
JA_JP
|
|
1058
|
-
}
|
|
1111
|
+
export declare const CLMLanguageCode: {
|
|
1112
|
+
readonly DE_DE: "de-DE";
|
|
1113
|
+
readonly EN_AU: "en-AU";
|
|
1114
|
+
readonly EN_GB: "en-GB";
|
|
1115
|
+
readonly EN_US: "en-US";
|
|
1116
|
+
readonly ES_US: "es-US";
|
|
1117
|
+
readonly HI_IN: "hi-IN";
|
|
1118
|
+
readonly JA_JP: "ja-JP";
|
|
1119
|
+
};
|
|
1120
|
+
/**
|
|
1121
|
+
* @public
|
|
1122
|
+
*/
|
|
1123
|
+
export type CLMLanguageCode = (typeof CLMLanguageCode)[keyof typeof CLMLanguageCode];
|
|
1059
1124
|
/**
|
|
1060
1125
|
* @public
|
|
1061
1126
|
* <p>A resource already exists with this name. Resource names must be unique within an
|
|
@@ -1259,12 +1324,17 @@ export interface CreateLanguageModelRequest {
|
|
|
1259
1324
|
}
|
|
1260
1325
|
/**
|
|
1261
1326
|
* @public
|
|
1327
|
+
* @enum
|
|
1262
1328
|
*/
|
|
1263
|
-
export declare
|
|
1264
|
-
COMPLETED
|
|
1265
|
-
FAILED
|
|
1266
|
-
IN_PROGRESS
|
|
1267
|
-
}
|
|
1329
|
+
export declare const ModelStatus: {
|
|
1330
|
+
readonly COMPLETED: "COMPLETED";
|
|
1331
|
+
readonly FAILED: "FAILED";
|
|
1332
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1333
|
+
};
|
|
1334
|
+
/**
|
|
1335
|
+
* @public
|
|
1336
|
+
*/
|
|
1337
|
+
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
1268
1338
|
/**
|
|
1269
1339
|
* @public
|
|
1270
1340
|
*/
|
|
@@ -1330,12 +1400,17 @@ export interface CreateMedicalVocabularyRequest {
|
|
|
1330
1400
|
}
|
|
1331
1401
|
/**
|
|
1332
1402
|
* @public
|
|
1403
|
+
* @enum
|
|
1333
1404
|
*/
|
|
1334
|
-
export declare
|
|
1335
|
-
FAILED
|
|
1336
|
-
PENDING
|
|
1337
|
-
READY
|
|
1338
|
-
}
|
|
1405
|
+
export declare const VocabularyState: {
|
|
1406
|
+
readonly FAILED: "FAILED";
|
|
1407
|
+
readonly PENDING: "PENDING";
|
|
1408
|
+
readonly READY: "READY";
|
|
1409
|
+
};
|
|
1410
|
+
/**
|
|
1411
|
+
* @public
|
|
1412
|
+
*/
|
|
1413
|
+
export type VocabularyState = (typeof VocabularyState)[keyof typeof VocabularyState];
|
|
1339
1414
|
/**
|
|
1340
1415
|
* @public
|
|
1341
1416
|
*/
|
|
@@ -1834,10 +1909,15 @@ export interface GetMedicalTranscriptionJobRequest {
|
|
|
1834
1909
|
}
|
|
1835
1910
|
/**
|
|
1836
1911
|
* @public
|
|
1912
|
+
* @enum
|
|
1837
1913
|
*/
|
|
1838
|
-
export declare
|
|
1839
|
-
PHI
|
|
1840
|
-
}
|
|
1914
|
+
export declare const MedicalContentIdentificationType: {
|
|
1915
|
+
readonly PHI: "PHI";
|
|
1916
|
+
};
|
|
1917
|
+
/**
|
|
1918
|
+
* @public
|
|
1919
|
+
*/
|
|
1920
|
+
export type MedicalContentIdentificationType = (typeof MedicalContentIdentificationType)[keyof typeof MedicalContentIdentificationType];
|
|
1841
1921
|
/**
|
|
1842
1922
|
* @public
|
|
1843
1923
|
* <p>Allows additional optional settings in your request, including channel
|
|
@@ -1913,10 +1993,15 @@ export interface MedicalTranscriptionSetting {
|
|
|
1913
1993
|
}
|
|
1914
1994
|
/**
|
|
1915
1995
|
* @public
|
|
1996
|
+
* @enum
|
|
1916
1997
|
*/
|
|
1917
|
-
export declare
|
|
1918
|
-
PRIMARYCARE
|
|
1919
|
-
}
|
|
1998
|
+
export declare const Specialty: {
|
|
1999
|
+
readonly PRIMARYCARE: "PRIMARYCARE";
|
|
2000
|
+
};
|
|
2001
|
+
/**
|
|
2002
|
+
* @public
|
|
2003
|
+
*/
|
|
2004
|
+
export type Specialty = (typeof Specialty)[keyof typeof Specialty];
|
|
1920
2005
|
/**
|
|
1921
2006
|
* @public
|
|
1922
2007
|
* <p>Provides you with the Amazon S3 URI you can use to access your
|
|
@@ -1933,20 +2018,30 @@ export interface MedicalTranscript {
|
|
|
1933
2018
|
}
|
|
1934
2019
|
/**
|
|
1935
2020
|
* @public
|
|
2021
|
+
* @enum
|
|
1936
2022
|
*/
|
|
1937
|
-
export declare
|
|
1938
|
-
COMPLETED
|
|
1939
|
-
FAILED
|
|
1940
|
-
IN_PROGRESS
|
|
1941
|
-
QUEUED
|
|
1942
|
-
}
|
|
2023
|
+
export declare const TranscriptionJobStatus: {
|
|
2024
|
+
readonly COMPLETED: "COMPLETED";
|
|
2025
|
+
readonly FAILED: "FAILED";
|
|
2026
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2027
|
+
readonly QUEUED: "QUEUED";
|
|
2028
|
+
};
|
|
1943
2029
|
/**
|
|
1944
2030
|
* @public
|
|
1945
2031
|
*/
|
|
1946
|
-
export
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
2032
|
+
export type TranscriptionJobStatus = (typeof TranscriptionJobStatus)[keyof typeof TranscriptionJobStatus];
|
|
2033
|
+
/**
|
|
2034
|
+
* @public
|
|
2035
|
+
* @enum
|
|
2036
|
+
*/
|
|
2037
|
+
export declare const Type: {
|
|
2038
|
+
readonly CONVERSATION: "CONVERSATION";
|
|
2039
|
+
readonly DICTATION: "DICTATION";
|
|
2040
|
+
};
|
|
2041
|
+
/**
|
|
2042
|
+
* @public
|
|
2043
|
+
*/
|
|
2044
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
1950
2045
|
/**
|
|
1951
2046
|
* @public
|
|
1952
2047
|
* <p>Provides detailed information about a medical transcription job.</p>
|
|
@@ -2325,11 +2420,16 @@ export interface Settings {
|
|
|
2325
2420
|
}
|
|
2326
2421
|
/**
|
|
2327
2422
|
* @public
|
|
2423
|
+
* @enum
|
|
2328
2424
|
*/
|
|
2329
|
-
export declare
|
|
2330
|
-
SRT
|
|
2331
|
-
VTT
|
|
2332
|
-
}
|
|
2425
|
+
export declare const SubtitleFormat: {
|
|
2426
|
+
readonly SRT: "srt";
|
|
2427
|
+
readonly VTT: "vtt";
|
|
2428
|
+
};
|
|
2429
|
+
/**
|
|
2430
|
+
* @public
|
|
2431
|
+
*/
|
|
2432
|
+
export type SubtitleFormat = (typeof SubtitleFormat)[keyof typeof SubtitleFormat];
|
|
2333
2433
|
/**
|
|
2334
2434
|
* @public
|
|
2335
2435
|
* <p>Provides information about your subtitle file, including format, start index, and
|
|
@@ -2815,11 +2915,16 @@ export interface ListMedicalTranscriptionJobsRequest {
|
|
|
2815
2915
|
}
|
|
2816
2916
|
/**
|
|
2817
2917
|
* @public
|
|
2918
|
+
* @enum
|
|
2818
2919
|
*/
|
|
2819
|
-
export declare
|
|
2820
|
-
CUSTOMER_BUCKET
|
|
2821
|
-
SERVICE_BUCKET
|
|
2822
|
-
}
|
|
2920
|
+
export declare const OutputLocationType: {
|
|
2921
|
+
readonly CUSTOMER_BUCKET: "CUSTOMER_BUCKET";
|
|
2922
|
+
readonly SERVICE_BUCKET: "SERVICE_BUCKET";
|
|
2923
|
+
};
|
|
2924
|
+
/**
|
|
2925
|
+
* @public
|
|
2926
|
+
*/
|
|
2927
|
+
export type OutputLocationType = (typeof OutputLocationType)[keyof typeof OutputLocationType];
|
|
2823
2928
|
/**
|
|
2824
2929
|
* @public
|
|
2825
2930
|
* <p>Provides detailed information about a specific medical transcription job.</p>
|