@aws-sdk/client-transcribe 3.296.0 → 3.297.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.
Files changed (53) hide show
  1. package/dist-types/Transcribe.d.ts +40 -0
  2. package/dist-types/TranscribeClient.d.ts +24 -4
  3. package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateLanguageModelCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateVocabularyCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteLanguageModelCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteVocabularyCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeLanguageModelCommand.d.ts +16 -0
  17. package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +16 -0
  18. package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +16 -0
  19. package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +16 -0
  20. package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +16 -0
  21. package/dist-types/commands/GetTranscriptionJobCommand.d.ts +16 -0
  22. package/dist-types/commands/GetVocabularyCommand.d.ts +16 -0
  23. package/dist-types/commands/GetVocabularyFilterCommand.d.ts +16 -0
  24. package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +16 -0
  25. package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListLanguageModelsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +16 -0
  29. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListVocabulariesCommand.d.ts +16 -0
  32. package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +16 -0
  33. package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +16 -0
  34. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +16 -0
  35. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +16 -0
  36. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateVocabularyCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +16 -0
  42. package/dist-types/models/TranscribeServiceException.d.ts +2 -0
  43. package/dist-types/models/models_0.d.ts +320 -0
  44. package/dist-types/pagination/Interfaces.d.ts +3 -0
  45. package/dist-types/pagination/ListCallAnalyticsCategoriesPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListCallAnalyticsJobsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListLanguageModelsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListMedicalTranscriptionJobsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListMedicalVocabulariesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListTranscriptionJobsPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListVocabulariesPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListVocabularyFiltersPaginator.d.ts +3 -0
  53. package/package.json +3 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { TranscribeServiceException as __BaseException } from "./TranscribeServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>A time range, in milliseconds, between two points in your media file.</p>
5
6
  * <p>You can use <code>StartTime</code> and <code>EndTime</code> to search a custom
6
7
  * segment. For example, setting <code>StartTime</code> to 10000 and <code>EndTime</code>
@@ -41,6 +42,7 @@ export interface AbsoluteTimeRange {
41
42
  Last?: number;
42
43
  }
43
44
  /**
45
+ * @public
44
46
  * <p>Your request didn't pass one or more validation tests. This can occur when the entity
45
47
  * you're trying to delete doesn't exist or if it's in a non-terminal state (such as
46
48
  * <code>IN PROGRESS</code>). See the exception message field for more
@@ -55,21 +57,31 @@ export declare class BadRequestException extends __BaseException {
55
57
  */
56
58
  constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
57
59
  }
60
+ /**
61
+ * @public
62
+ */
58
63
  export declare enum BaseModelName {
59
64
  NARROW_BAND = "NarrowBand",
60
65
  WIDE_BAND = "WideBand"
61
66
  }
67
+ /**
68
+ * @public
69
+ */
62
70
  export declare enum CallAnalyticsJobStatus {
63
71
  COMPLETED = "COMPLETED",
64
72
  FAILED = "FAILED",
65
73
  IN_PROGRESS = "IN_PROGRESS",
66
74
  QUEUED = "QUEUED"
67
75
  }
76
+ /**
77
+ * @public
78
+ */
68
79
  export declare enum ParticipantRole {
69
80
  AGENT = "AGENT",
70
81
  CUSTOMER = "CUSTOMER"
71
82
  }
72
83
  /**
84
+ * @public
73
85
  * <p>Makes it possible to specify which speaker is on which channel. For example, if your
74
86
  * agent is the first participant to speak, you would set <code>ChannelId</code> to
75
87
  * <code>0</code> (to indicate the first channel) and <code>ParticipantRole</code> to
@@ -86,6 +98,9 @@ export interface ChannelDefinition {
86
98
  */
87
99
  ParticipantRole?: ParticipantRole | string;
88
100
  }
101
+ /**
102
+ * @public
103
+ */
89
104
  export declare enum LanguageCode {
90
105
  AF_ZA = "af-ZA",
91
106
  AR_AE = "ar-AE",
@@ -128,6 +143,7 @@ export declare enum LanguageCode {
128
143
  ZH_TW = "zh-TW"
129
144
  }
130
145
  /**
146
+ * @public
131
147
  * <p>Describes the Amazon S3 location of the media file you want to use in your
132
148
  * request.</p>
133
149
  * <p>For information on supported media formats, refer to the <a href="https://docs.aws.amazon.com/APIReference/API_StartTranscriptionJob.html#transcribe-StartTranscriptionJob-request-MediaFormat">MediaFormat</a> parameter or the <a href="https://docs.aws.amazon.com/transcribe/latest/dg/how-input.html#how-input-audio">Media formats</a> section
@@ -181,6 +197,9 @@ export interface Media {
181
197
  */
182
198
  RedactedMediaFileUri?: string;
183
199
  }
200
+ /**
201
+ * @public
202
+ */
184
203
  export declare enum MediaFormat {
185
204
  AMR = "amr",
186
205
  FLAC = "flac",
@@ -190,6 +209,9 @@ export declare enum MediaFormat {
190
209
  WAV = "wav",
191
210
  WEBM = "webm"
192
211
  }
212
+ /**
213
+ * @public
214
+ */
193
215
  export declare enum PiiEntityType {
194
216
  ADDRESS = "ADDRESS",
195
217
  ALL = "ALL",
@@ -204,14 +226,21 @@ export declare enum PiiEntityType {
204
226
  PIN = "PIN",
205
227
  SSN = "SSN"
206
228
  }
229
+ /**
230
+ * @public
231
+ */
207
232
  export declare enum RedactionOutput {
208
233
  REDACTED = "redacted",
209
234
  REDACTED_AND_UNREDACTED = "redacted_and_unredacted"
210
235
  }
236
+ /**
237
+ * @public
238
+ */
211
239
  export declare enum RedactionType {
212
240
  PII = "PII"
213
241
  }
214
242
  /**
243
+ * @public
215
244
  * <p>Makes it possible to redact or flag specified personally identifiable information
216
245
  * (PII) in your transcript. If you use <code>ContentRedaction</code>, you must also
217
246
  * include the sub-parameters: <code>PiiEntityTypes</code>, <code>RedactionOutput</code>,
@@ -242,6 +271,7 @@ export interface ContentRedaction {
242
271
  PiiEntityTypes?: (PiiEntityType | string)[];
243
272
  }
244
273
  /**
274
+ * @public
245
275
  * <p>If using automatic language identification in your request and you want to apply a
246
276
  * custom language model, a custom vocabulary, or a custom vocabulary filter, include
247
277
  * <code>LanguageIdSettings</code> with the relevant sub-parameters
@@ -302,12 +332,16 @@ export interface LanguageIdSettings {
302
332
  */
303
333
  LanguageModelName?: string;
304
334
  }
335
+ /**
336
+ * @public
337
+ */
305
338
  export declare enum VocabularyFilterMethod {
306
339
  MASK = "mask",
307
340
  REMOVE = "remove",
308
341
  TAG = "tag"
309
342
  }
310
343
  /**
344
+ * @public
311
345
  * <p>Provides additional optional settings for your request, including content redaction,
312
346
  * automatic language identification; allows you to apply custom language models, custom
313
347
  * vocabulary filters, and custom vocabularies.</p>
@@ -390,6 +424,7 @@ export interface CallAnalyticsJobSettings {
390
424
  LanguageIdSettings?: Record<string, LanguageIdSettings>;
391
425
  }
392
426
  /**
427
+ * @public
393
428
  * <p>Provides you with the Amazon S3 URI you can use to access your
394
429
  * transcript.</p>
395
430
  */
@@ -432,6 +467,7 @@ export interface Transcript {
432
467
  RedactedTranscriptFileUri?: string;
433
468
  }
434
469
  /**
470
+ * @public
435
471
  * <p>Provides detailed information about a Call Analytics job.</p>
436
472
  * <p>To view the job's status, refer to <code>CallAnalyticsJobStatus</code>. If the status
437
473
  * is <code>COMPLETED</code>, the job is finished. You can find your completed transcript
@@ -584,6 +620,7 @@ export interface CallAnalyticsJob {
584
620
  ChannelDefinitions?: ChannelDefinition[];
585
621
  }
586
622
  /**
623
+ * @public
587
624
  * <p>Provides detailed information about a specific Call Analytics job.</p>
588
625
  */
589
626
  export interface CallAnalyticsJobSummary {
@@ -633,11 +670,15 @@ export interface CallAnalyticsJobSummary {
633
670
  */
634
671
  FailureReason?: string;
635
672
  }
673
+ /**
674
+ * @public
675
+ */
636
676
  export declare enum InputType {
637
677
  POST_CALL = "POST_CALL",
638
678
  REAL_TIME = "REAL_TIME"
639
679
  }
640
680
  /**
681
+ * @public
641
682
  * <p>A time range, in percentage, between two points in your media file.</p>
642
683
  * <p>You can use <code>StartPercentage</code> and <code>EndPercentage</code> to search a
643
684
  * custom segment. For example, setting <code>StartPercentage</code> to 10 and
@@ -676,6 +717,7 @@ export interface RelativeTimeRange {
676
717
  Last?: number;
677
718
  }
678
719
  /**
720
+ * @public
679
721
  * <p>Flag the presence or absence of interruptions in your Call Analytics transcription
680
722
  * output.</p>
681
723
  * <p>Rules using <code>InterruptionFilter</code> are designed to match:</p>
@@ -724,6 +766,7 @@ export interface InterruptionFilter {
724
766
  Negate?: boolean;
725
767
  }
726
768
  /**
769
+ * @public
727
770
  * <p>Flag the presence or absence of periods of silence in your Call Analytics
728
771
  * transcription output.</p>
729
772
  * <p>Rules using <code>NonTalkTimeFilter</code> are designed to match:</p>
@@ -760,6 +803,9 @@ export interface NonTalkTimeFilter {
760
803
  */
761
804
  Negate?: boolean;
762
805
  }
806
+ /**
807
+ * @public
808
+ */
763
809
  export declare enum SentimentValue {
764
810
  MIXED = "MIXED",
765
811
  NEGATIVE = "NEGATIVE",
@@ -767,6 +813,7 @@ export declare enum SentimentValue {
767
813
  POSITIVE = "POSITIVE"
768
814
  }
769
815
  /**
816
+ * @public
770
817
  * <p>Flag the presence or absence of specific sentiments detected in your Call Analytics
771
818
  * transcription output.</p>
772
819
  * <p>Rules using <code>SentimentFilter</code> are designed to match:</p>
@@ -818,10 +865,14 @@ export interface SentimentFilter {
818
865
  */
819
866
  Negate?: boolean;
820
867
  }
868
+ /**
869
+ * @public
870
+ */
821
871
  export declare enum TranscriptFilterType {
822
872
  EXACT = "EXACT"
823
873
  }
824
874
  /**
875
+ * @public
825
876
  * <p>Flag the presence or absence of specific words or phrases detected in your Call
826
877
  * Analytics transcription output.</p>
827
878
  * <p>Rules using <code>TranscriptFilter</code> are designed to match:</p>
@@ -878,6 +929,7 @@ export interface TranscriptFilter {
878
929
  Targets: string[] | undefined;
879
930
  }
880
931
  /**
932
+ * @public
881
933
  * <p>A rule is a set of criteria that you can specify to flag an attribute in your Call
882
934
  * Analytics output. Rules define a Call Analytics category.</p>
883
935
  * <p>Rules can include these parameters: , , , and .</p>
@@ -888,6 +940,9 @@ export interface TranscriptFilter {
888
940
  * Analytics</a>.</p>
889
941
  */
890
942
  export type Rule = Rule.InterruptionFilterMember | Rule.NonTalkTimeFilterMember | Rule.SentimentFilterMember | Rule.TranscriptFilterMember | Rule.$UnknownMember;
943
+ /**
944
+ * @public
945
+ */
891
946
  export declare namespace Rule {
892
947
  /**
893
948
  * <p>Flag the presence or absence of periods of silence in your Call Analytics
@@ -953,6 +1008,7 @@ export declare namespace Rule {
953
1008
  const visit: <T>(value: Rule, visitor: Visitor<T>) => T;
954
1009
  }
955
1010
  /**
1011
+ * @public
956
1012
  * <p>Provides you with the properties of the Call Analytics category you specified in your
957
1013
  * request. This includes the list of rules that define the specified category.</p>
958
1014
  */
@@ -988,6 +1044,9 @@ export interface CategoryProperties {
988
1044
  */
989
1045
  InputType?: InputType | string;
990
1046
  }
1047
+ /**
1048
+ * @public
1049
+ */
991
1050
  export declare enum CLMLanguageCode {
992
1051
  DE_DE = "de-DE",
993
1052
  EN_AU = "en-AU",
@@ -998,6 +1057,7 @@ export declare enum CLMLanguageCode {
998
1057
  JA_JP = "ja-JP"
999
1058
  }
1000
1059
  /**
1060
+ * @public
1001
1061
  * <p>A resource already exists with this name. Resource names must be unique within an
1002
1062
  * Amazon Web Services account.</p>
1003
1063
  */
@@ -1010,6 +1070,9 @@ export declare class ConflictException extends __BaseException {
1010
1070
  */
1011
1071
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1012
1072
  }
1073
+ /**
1074
+ * @public
1075
+ */
1013
1076
  export interface CreateCallAnalyticsCategoryRequest {
1014
1077
  /**
1015
1078
  * <p>A unique name, chosen by you, for your Call Analytics category. It's helpful to use a
@@ -1039,6 +1102,9 @@ export interface CreateCallAnalyticsCategoryRequest {
1039
1102
  */
1040
1103
  InputType?: InputType | string;
1041
1104
  }
1105
+ /**
1106
+ * @public
1107
+ */
1042
1108
  export interface CreateCallAnalyticsCategoryResponse {
1043
1109
  /**
1044
1110
  * <p>Provides you with the properties of your new category, including its associated
@@ -1047,6 +1113,7 @@ export interface CreateCallAnalyticsCategoryResponse {
1047
1113
  CategoryProperties?: CategoryProperties;
1048
1114
  }
1049
1115
  /**
1116
+ * @public
1050
1117
  * <p>There was an internal error. Check the error message, correct the issue, and try your
1051
1118
  * request again.</p>
1052
1119
  */
@@ -1060,6 +1127,7 @@ export declare class InternalFailureException extends __BaseException {
1060
1127
  constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
1061
1128
  }
1062
1129
  /**
1130
+ * @public
1063
1131
  * <p>You've either sent too many requests or your input file is too long. Wait before
1064
1132
  * retrying your request, or use a smaller file and try your request again.</p>
1065
1133
  */
@@ -1073,6 +1141,7 @@ export declare class LimitExceededException extends __BaseException {
1073
1141
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
1074
1142
  }
1075
1143
  /**
1144
+ * @public
1076
1145
  * <p>Contains the Amazon S3 location of the training data you want to use to create
1077
1146
  * a new custom language model, and permissions to access this location.</p>
1078
1147
  * <p>When using <code>InputDataConfig</code>, you must include these sub-parameters:
@@ -1110,6 +1179,7 @@ export interface InputDataConfig {
1110
1179
  DataAccessRoleArn: string | undefined;
1111
1180
  }
1112
1181
  /**
1182
+ * @public
1113
1183
  * <p>Adds metadata, in the form of a key:value pair, to the specified resource.</p>
1114
1184
  * <p>For example, you could add the tag <code>Department:Sales</code> to a resource to
1115
1185
  * indicate that it pertains to your organization's sales department. You can also use tags
@@ -1131,6 +1201,9 @@ export interface Tag {
1131
1201
  */
1132
1202
  Value: string | undefined;
1133
1203
  }
1204
+ /**
1205
+ * @public
1206
+ */
1134
1207
  export interface CreateLanguageModelRequest {
1135
1208
  /**
1136
1209
  * <p>The language code that represents the language of your model. Each custom language
@@ -1184,11 +1257,17 @@ export interface CreateLanguageModelRequest {
1184
1257
  */
1185
1258
  Tags?: Tag[];
1186
1259
  }
1260
+ /**
1261
+ * @public
1262
+ */
1187
1263
  export declare enum ModelStatus {
1188
1264
  COMPLETED = "COMPLETED",
1189
1265
  FAILED = "FAILED",
1190
1266
  IN_PROGRESS = "IN_PROGRESS"
1191
1267
  }
1268
+ /**
1269
+ * @public
1270
+ */
1192
1271
  export interface CreateLanguageModelResponse {
1193
1272
  /**
1194
1273
  * <p>The language code you selected for your custom language model.</p>
@@ -1215,6 +1294,9 @@ export interface CreateLanguageModelResponse {
1215
1294
  */
1216
1295
  ModelStatus?: ModelStatus | string;
1217
1296
  }
1297
+ /**
1298
+ * @public
1299
+ */
1218
1300
  export interface CreateMedicalVocabularyRequest {
1219
1301
  /**
1220
1302
  * <p>A unique name, chosen by you, for your new custom medical vocabulary.</p>
@@ -1246,11 +1328,17 @@ export interface CreateMedicalVocabularyRequest {
1246
1328
  */
1247
1329
  Tags?: Tag[];
1248
1330
  }
1331
+ /**
1332
+ * @public
1333
+ */
1249
1334
  export declare enum VocabularyState {
1250
1335
  FAILED = "FAILED",
1251
1336
  PENDING = "PENDING",
1252
1337
  READY = "READY"
1253
1338
  }
1339
+ /**
1340
+ * @public
1341
+ */
1254
1342
  export interface CreateMedicalVocabularyResponse {
1255
1343
  /**
1256
1344
  * <p>The name you chose for your custom medical vocabulary.</p>
@@ -1282,6 +1370,9 @@ export interface CreateMedicalVocabularyResponse {
1282
1370
  */
1283
1371
  FailureReason?: string;
1284
1372
  }
1373
+ /**
1374
+ * @public
1375
+ */
1285
1376
  export interface CreateVocabularyRequest {
1286
1377
  /**
1287
1378
  * <p>A unique name, chosen by you, for your new custom vocabulary.</p>
@@ -1347,6 +1438,9 @@ export interface CreateVocabularyRequest {
1347
1438
  */
1348
1439
  DataAccessRoleArn?: string;
1349
1440
  }
1441
+ /**
1442
+ * @public
1443
+ */
1350
1444
  export interface CreateVocabularyResponse {
1351
1445
  /**
1352
1446
  * <p>The name you chose for your custom vocabulary.</p>
@@ -1376,6 +1470,9 @@ export interface CreateVocabularyResponse {
1376
1470
  */
1377
1471
  FailureReason?: string;
1378
1472
  }
1473
+ /**
1474
+ * @public
1475
+ */
1379
1476
  export interface CreateVocabularyFilterRequest {
1380
1477
  /**
1381
1478
  * <p>A unique name, chosen by you, for your new custom vocabulary filter.</p>
@@ -1441,6 +1538,9 @@ export interface CreateVocabularyFilterRequest {
1441
1538
  */
1442
1539
  DataAccessRoleArn?: string;
1443
1540
  }
1541
+ /**
1542
+ * @public
1543
+ */
1444
1544
  export interface CreateVocabularyFilterResponse {
1445
1545
  /**
1446
1546
  * <p>The name you chose for your custom vocabulary filter.</p>
@@ -1458,6 +1558,9 @@ export interface CreateVocabularyFilterResponse {
1458
1558
  */
1459
1559
  LastModifiedTime?: Date;
1460
1560
  }
1561
+ /**
1562
+ * @public
1563
+ */
1461
1564
  export interface DeleteCallAnalyticsCategoryRequest {
1462
1565
  /**
1463
1566
  * <p>The name of the Call Analytics category you want to delete. Category names are case
@@ -1465,9 +1568,13 @@ export interface DeleteCallAnalyticsCategoryRequest {
1465
1568
  */
1466
1569
  CategoryName: string | undefined;
1467
1570
  }
1571
+ /**
1572
+ * @public
1573
+ */
1468
1574
  export interface DeleteCallAnalyticsCategoryResponse {
1469
1575
  }
1470
1576
  /**
1577
+ * @public
1471
1578
  * <p>We can't find the requested resource. Check that the specified name is correct and try
1472
1579
  * your request again.</p>
1473
1580
  */
@@ -1480,6 +1587,9 @@ export declare class NotFoundException extends __BaseException {
1480
1587
  */
1481
1588
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
1482
1589
  }
1590
+ /**
1591
+ * @public
1592
+ */
1483
1593
  export interface DeleteCallAnalyticsJobRequest {
1484
1594
  /**
1485
1595
  * <p>The name of the Call Analytics job you want to delete. Job names are case
@@ -1487,8 +1597,14 @@ export interface DeleteCallAnalyticsJobRequest {
1487
1597
  */
1488
1598
  CallAnalyticsJobName: string | undefined;
1489
1599
  }
1600
+ /**
1601
+ * @public
1602
+ */
1490
1603
  export interface DeleteCallAnalyticsJobResponse {
1491
1604
  }
1605
+ /**
1606
+ * @public
1607
+ */
1492
1608
  export interface DeleteLanguageModelRequest {
1493
1609
  /**
1494
1610
  * <p>The name of the custom language model you want to delete. Model names are case
@@ -1496,6 +1612,9 @@ export interface DeleteLanguageModelRequest {
1496
1612
  */
1497
1613
  ModelName: string | undefined;
1498
1614
  }
1615
+ /**
1616
+ * @public
1617
+ */
1499
1618
  export interface DeleteMedicalTranscriptionJobRequest {
1500
1619
  /**
1501
1620
  * <p>The name of the medical transcription job you want to delete. Job names are case
@@ -1503,6 +1622,9 @@ export interface DeleteMedicalTranscriptionJobRequest {
1503
1622
  */
1504
1623
  MedicalTranscriptionJobName: string | undefined;
1505
1624
  }
1625
+ /**
1626
+ * @public
1627
+ */
1506
1628
  export interface DeleteMedicalVocabularyRequest {
1507
1629
  /**
1508
1630
  * <p>The name of the custom medical vocabulary you want to delete. Custom medical
@@ -1510,6 +1632,9 @@ export interface DeleteMedicalVocabularyRequest {
1510
1632
  */
1511
1633
  VocabularyName: string | undefined;
1512
1634
  }
1635
+ /**
1636
+ * @public
1637
+ */
1513
1638
  export interface DeleteTranscriptionJobRequest {
1514
1639
  /**
1515
1640
  * <p>The name of the transcription job you want to delete. Job names are case
@@ -1517,6 +1642,9 @@ export interface DeleteTranscriptionJobRequest {
1517
1642
  */
1518
1643
  TranscriptionJobName: string | undefined;
1519
1644
  }
1645
+ /**
1646
+ * @public
1647
+ */
1520
1648
  export interface DeleteVocabularyRequest {
1521
1649
  /**
1522
1650
  * <p>The name of the custom vocabulary you want to delete. Custom vocabulary names are case
@@ -1524,6 +1652,9 @@ export interface DeleteVocabularyRequest {
1524
1652
  */
1525
1653
  VocabularyName: string | undefined;
1526
1654
  }
1655
+ /**
1656
+ * @public
1657
+ */
1527
1658
  export interface DeleteVocabularyFilterRequest {
1528
1659
  /**
1529
1660
  * <p>The name of the custom vocabulary filter you want to delete. Custom vocabulary filter
@@ -1531,6 +1662,9 @@ export interface DeleteVocabularyFilterRequest {
1531
1662
  */
1532
1663
  VocabularyFilterName: string | undefined;
1533
1664
  }
1665
+ /**
1666
+ * @public
1667
+ */
1534
1668
  export interface DescribeLanguageModelRequest {
1535
1669
  /**
1536
1670
  * <p>The name of the custom language model you want information about. Model names are case
@@ -1539,6 +1673,7 @@ export interface DescribeLanguageModelRequest {
1539
1673
  ModelName: string | undefined;
1540
1674
  }
1541
1675
  /**
1676
+ * @public
1542
1677
  * <p>Provides information about a custom language model, including:</p>
1543
1678
  * <ul>
1544
1679
  * <li>
@@ -1632,6 +1767,9 @@ export interface LanguageModel {
1632
1767
  */
1633
1768
  InputDataConfig?: InputDataConfig;
1634
1769
  }
1770
+ /**
1771
+ * @public
1772
+ */
1635
1773
  export interface DescribeLanguageModelResponse {
1636
1774
  /**
1637
1775
  * <p>Provides information about the specified custom language model.</p>
@@ -1644,6 +1782,9 @@ export interface DescribeLanguageModelResponse {
1644
1782
  */
1645
1783
  LanguageModel?: LanguageModel;
1646
1784
  }
1785
+ /**
1786
+ * @public
1787
+ */
1647
1788
  export interface GetCallAnalyticsCategoryRequest {
1648
1789
  /**
1649
1790
  * <p>The name of the Call Analytics category you want information about. Category names are
@@ -1651,6 +1792,9 @@ export interface GetCallAnalyticsCategoryRequest {
1651
1792
  */
1652
1793
  CategoryName: string | undefined;
1653
1794
  }
1795
+ /**
1796
+ * @public
1797
+ */
1654
1798
  export interface GetCallAnalyticsCategoryResponse {
1655
1799
  /**
1656
1800
  * <p>Provides you with the properties of the Call Analytics category you specified in your
@@ -1658,6 +1802,9 @@ export interface GetCallAnalyticsCategoryResponse {
1658
1802
  */
1659
1803
  CategoryProperties?: CategoryProperties;
1660
1804
  }
1805
+ /**
1806
+ * @public
1807
+ */
1661
1808
  export interface GetCallAnalyticsJobRequest {
1662
1809
  /**
1663
1810
  * <p>The name of the Call Analytics job you want information about. Job names are case
@@ -1665,6 +1812,9 @@ export interface GetCallAnalyticsJobRequest {
1665
1812
  */
1666
1813
  CallAnalyticsJobName: string | undefined;
1667
1814
  }
1815
+ /**
1816
+ * @public
1817
+ */
1668
1818
  export interface GetCallAnalyticsJobResponse {
1669
1819
  /**
1670
1820
  * <p>Provides detailed information about the specified Call Analytics job, including job
@@ -1672,6 +1822,9 @@ export interface GetCallAnalyticsJobResponse {
1672
1822
  */
1673
1823
  CallAnalyticsJob?: CallAnalyticsJob;
1674
1824
  }
1825
+ /**
1826
+ * @public
1827
+ */
1675
1828
  export interface GetMedicalTranscriptionJobRequest {
1676
1829
  /**
1677
1830
  * <p>The name of the medical transcription job you want information about. Job names are
@@ -1679,10 +1832,14 @@ export interface GetMedicalTranscriptionJobRequest {
1679
1832
  */
1680
1833
  MedicalTranscriptionJobName: string | undefined;
1681
1834
  }
1835
+ /**
1836
+ * @public
1837
+ */
1682
1838
  export declare enum MedicalContentIdentificationType {
1683
1839
  PHI = "PHI"
1684
1840
  }
1685
1841
  /**
1842
+ * @public
1686
1843
  * <p>Allows additional optional settings in your request, including channel
1687
1844
  * identification, alternative transcriptions, and speaker partitioning. You can use that to
1688
1845
  * apply custom vocabularies to your medical transcription job.</p>
@@ -1754,10 +1911,14 @@ export interface MedicalTranscriptionSetting {
1754
1911
  */
1755
1912
  VocabularyName?: string;
1756
1913
  }
1914
+ /**
1915
+ * @public
1916
+ */
1757
1917
  export declare enum Specialty {
1758
1918
  PRIMARYCARE = "PRIMARYCARE"
1759
1919
  }
1760
1920
  /**
1921
+ * @public
1761
1922
  * <p>Provides you with the Amazon S3 URI you can use to access your
1762
1923
  * transcript.</p>
1763
1924
  */
@@ -1770,17 +1931,24 @@ export interface MedicalTranscript {
1770
1931
  */
1771
1932
  TranscriptFileUri?: string;
1772
1933
  }
1934
+ /**
1935
+ * @public
1936
+ */
1773
1937
  export declare enum TranscriptionJobStatus {
1774
1938
  COMPLETED = "COMPLETED",
1775
1939
  FAILED = "FAILED",
1776
1940
  IN_PROGRESS = "IN_PROGRESS",
1777
1941
  QUEUED = "QUEUED"
1778
1942
  }
1943
+ /**
1944
+ * @public
1945
+ */
1779
1946
  export declare enum Type {
1780
1947
  CONVERSATION = "CONVERSATION",
1781
1948
  DICTATION = "DICTATION"
1782
1949
  }
1783
1950
  /**
1951
+ * @public
1784
1952
  * <p>Provides detailed information about a medical transcription job.</p>
1785
1953
  * <p>To view the status of the specified medical transcription job, check the
1786
1954
  * <code>TranscriptionJobStatus</code> field. If the status is <code>COMPLETED</code>,
@@ -1928,6 +2096,9 @@ export interface MedicalTranscriptionJob {
1928
2096
  */
1929
2097
  Tags?: Tag[];
1930
2098
  }
2099
+ /**
2100
+ * @public
2101
+ */
1931
2102
  export interface GetMedicalTranscriptionJobResponse {
1932
2103
  /**
1933
2104
  * <p>Provides detailed information about the specified medical transcription job, including
@@ -1935,6 +2106,9 @@ export interface GetMedicalTranscriptionJobResponse {
1935
2106
  */
1936
2107
  MedicalTranscriptionJob?: MedicalTranscriptionJob;
1937
2108
  }
2109
+ /**
2110
+ * @public
2111
+ */
1938
2112
  export interface GetMedicalVocabularyRequest {
1939
2113
  /**
1940
2114
  * <p>The name of the custom medical vocabulary you want information about. Custom medical
@@ -1942,6 +2116,9 @@ export interface GetMedicalVocabularyRequest {
1942
2116
  */
1943
2117
  VocabularyName: string | undefined;
1944
2118
  }
2119
+ /**
2120
+ * @public
2121
+ */
1945
2122
  export interface GetMedicalVocabularyResponse {
1946
2123
  /**
1947
2124
  * <p>The name of the custom medical vocabulary you requested information about.</p>
@@ -1978,6 +2155,9 @@ export interface GetMedicalVocabularyResponse {
1978
2155
  */
1979
2156
  DownloadUri?: string;
1980
2157
  }
2158
+ /**
2159
+ * @public
2160
+ */
1981
2161
  export interface GetTranscriptionJobRequest {
1982
2162
  /**
1983
2163
  * <p>The name of the transcription job you want information about. Job names are case
@@ -1986,6 +2166,7 @@ export interface GetTranscriptionJobRequest {
1986
2166
  TranscriptionJobName: string | undefined;
1987
2167
  }
1988
2168
  /**
2169
+ * @public
1989
2170
  * <p>Makes it possible to control how your transcription job is processed. Currently, the
1990
2171
  * only <code>JobExecutionSettings</code> modification you can choose is enabling job
1991
2172
  * queueing using the <code>AllowDeferredExecution</code> sub-parameter.</p>
@@ -2020,6 +2201,7 @@ export interface JobExecutionSettings {
2020
2201
  DataAccessRoleArn?: string;
2021
2202
  }
2022
2203
  /**
2204
+ * @public
2023
2205
  * <p>Provides information on the speech contained in a discreet utterance when
2024
2206
  * multi-language identification is enabled in your request. This utterance represents a
2025
2207
  * block of speech consisting of one language, preceded or followed by a block of speech in
@@ -2037,6 +2219,7 @@ export interface LanguageCodeItem {
2037
2219
  DurationInSeconds?: number;
2038
2220
  }
2039
2221
  /**
2222
+ * @public
2040
2223
  * <p>Provides the name of the custom language model that was included in the specified
2041
2224
  * transcription job.</p>
2042
2225
  * <p>Only use <code>ModelSettings</code> with the <code>LanguageModelName</code>
@@ -2057,6 +2240,7 @@ export interface ModelSettings {
2057
2240
  LanguageModelName?: string;
2058
2241
  }
2059
2242
  /**
2243
+ * @public
2060
2244
  * <p>Allows additional optional settings in your request, including channel identification, alternative transcriptions, and speaker
2061
2245
  * partitioning. You can use that to apply custom vocabularies to your transcription
2062
2246
  * job.</p>
@@ -2139,11 +2323,15 @@ export interface Settings {
2139
2323
  */
2140
2324
  VocabularyFilterMethod?: VocabularyFilterMethod | string;
2141
2325
  }
2326
+ /**
2327
+ * @public
2328
+ */
2142
2329
  export declare enum SubtitleFormat {
2143
2330
  SRT = "srt",
2144
2331
  VTT = "vtt"
2145
2332
  }
2146
2333
  /**
2334
+ * @public
2147
2335
  * <p>Provides information about your subtitle file, including format, start index, and
2148
2336
  * Amazon S3 location.</p>
2149
2337
  */
@@ -2181,6 +2369,7 @@ export interface SubtitlesOutput {
2181
2369
  OutputStartIndex?: number;
2182
2370
  }
2183
2371
  /**
2372
+ * @public
2184
2373
  * <p>Provides detailed information about a transcription job.</p>
2185
2374
  * <p>To view the status of the specified transcription job, check the
2186
2375
  * <code>TranscriptionJobStatus</code> field. If the status is <code>COMPLETED</code>,
@@ -2365,6 +2554,9 @@ export interface TranscriptionJob {
2365
2554
  */
2366
2555
  LanguageIdSettings?: Record<string, LanguageIdSettings>;
2367
2556
  }
2557
+ /**
2558
+ * @public
2559
+ */
2368
2560
  export interface GetTranscriptionJobResponse {
2369
2561
  /**
2370
2562
  * <p>Provides detailed information about the specified transcription job, including job
@@ -2372,6 +2564,9 @@ export interface GetTranscriptionJobResponse {
2372
2564
  */
2373
2565
  TranscriptionJob?: TranscriptionJob;
2374
2566
  }
2567
+ /**
2568
+ * @public
2569
+ */
2375
2570
  export interface GetVocabularyRequest {
2376
2571
  /**
2377
2572
  * <p>The name of the custom vocabulary you want information about. Custom vocabulary names
@@ -2379,6 +2574,9 @@ export interface GetVocabularyRequest {
2379
2574
  */
2380
2575
  VocabularyName: string | undefined;
2381
2576
  }
2577
+ /**
2578
+ * @public
2579
+ */
2382
2580
  export interface GetVocabularyResponse {
2383
2581
  /**
2384
2582
  * <p>The name of the custom vocabulary you requested information about.</p>
@@ -2413,6 +2611,9 @@ export interface GetVocabularyResponse {
2413
2611
  */
2414
2612
  DownloadUri?: string;
2415
2613
  }
2614
+ /**
2615
+ * @public
2616
+ */
2416
2617
  export interface GetVocabularyFilterRequest {
2417
2618
  /**
2418
2619
  * <p>The name of the custom vocabulary filter you want information about. Custom vocabulary
@@ -2420,6 +2621,9 @@ export interface GetVocabularyFilterRequest {
2420
2621
  */
2421
2622
  VocabularyFilterName: string | undefined;
2422
2623
  }
2624
+ /**
2625
+ * @public
2626
+ */
2423
2627
  export interface GetVocabularyFilterResponse {
2424
2628
  /**
2425
2629
  * <p>The name of the custom vocabulary filter you requested information about.</p>
@@ -2442,6 +2646,9 @@ export interface GetVocabularyFilterResponse {
2442
2646
  */
2443
2647
  DownloadUri?: string;
2444
2648
  }
2649
+ /**
2650
+ * @public
2651
+ */
2445
2652
  export interface ListCallAnalyticsCategoriesRequest {
2446
2653
  /**
2447
2654
  * <p>If your <code>ListCallAnalyticsCategories</code> request returns more results than can
@@ -2458,6 +2665,9 @@ export interface ListCallAnalyticsCategoriesRequest {
2458
2665
  */
2459
2666
  MaxResults?: number;
2460
2667
  }
2668
+ /**
2669
+ * @public
2670
+ */
2461
2671
  export interface ListCallAnalyticsCategoriesResponse {
2462
2672
  /**
2463
2673
  * <p>If <code>NextToken</code> is present in your response, it indicates that not all
@@ -2473,6 +2683,9 @@ export interface ListCallAnalyticsCategoriesResponse {
2473
2683
  */
2474
2684
  Categories?: CategoryProperties[];
2475
2685
  }
2686
+ /**
2687
+ * @public
2688
+ */
2476
2689
  export interface ListCallAnalyticsJobsRequest {
2477
2690
  /**
2478
2691
  * <p>Returns only Call Analytics jobs with the specified status. Jobs are ordered by
@@ -2500,6 +2713,9 @@ export interface ListCallAnalyticsJobsRequest {
2500
2713
  */
2501
2714
  MaxResults?: number;
2502
2715
  }
2716
+ /**
2717
+ * @public
2718
+ */
2503
2719
  export interface ListCallAnalyticsJobsResponse {
2504
2720
  /**
2505
2721
  * <p>Lists all Call Analytics jobs that have the status specified in your request. Jobs are
@@ -2519,6 +2735,9 @@ export interface ListCallAnalyticsJobsResponse {
2519
2735
  */
2520
2736
  CallAnalyticsJobSummaries?: CallAnalyticsJobSummary[];
2521
2737
  }
2738
+ /**
2739
+ * @public
2740
+ */
2522
2741
  export interface ListLanguageModelsRequest {
2523
2742
  /**
2524
2743
  * <p>Returns only custom language models with the specified status. Language models are
@@ -2546,6 +2765,9 @@ export interface ListLanguageModelsRequest {
2546
2765
  */
2547
2766
  MaxResults?: number;
2548
2767
  }
2768
+ /**
2769
+ * @public
2770
+ */
2549
2771
  export interface ListLanguageModelsResponse {
2550
2772
  /**
2551
2773
  * <p>If <code>NextToken</code> is present in your response, it indicates that not all
@@ -2561,6 +2783,9 @@ export interface ListLanguageModelsResponse {
2561
2783
  */
2562
2784
  Models?: LanguageModel[];
2563
2785
  }
2786
+ /**
2787
+ * @public
2788
+ */
2564
2789
  export interface ListMedicalTranscriptionJobsRequest {
2565
2790
  /**
2566
2791
  * <p>Returns only medical transcription jobs with the specified status. Jobs are ordered by
@@ -2588,11 +2813,15 @@ export interface ListMedicalTranscriptionJobsRequest {
2588
2813
  */
2589
2814
  MaxResults?: number;
2590
2815
  }
2816
+ /**
2817
+ * @public
2818
+ */
2591
2819
  export declare enum OutputLocationType {
2592
2820
  CUSTOMER_BUCKET = "CUSTOMER_BUCKET",
2593
2821
  SERVICE_BUCKET = "SERVICE_BUCKET"
2594
2822
  }
2595
2823
  /**
2824
+ * @public
2596
2825
  * <p>Provides detailed information about a specific medical transcription job.</p>
2597
2826
  */
2598
2827
  export interface MedicalTranscriptionJobSummary {
@@ -2667,6 +2896,9 @@ export interface MedicalTranscriptionJobSummary {
2667
2896
  */
2668
2897
  Type?: Type | string;
2669
2898
  }
2899
+ /**
2900
+ * @public
2901
+ */
2670
2902
  export interface ListMedicalTranscriptionJobsResponse {
2671
2903
  /**
2672
2904
  * <p>Lists all medical transcription jobs that have the status specified in your request.
@@ -2686,6 +2918,9 @@ export interface ListMedicalTranscriptionJobsResponse {
2686
2918
  */
2687
2919
  MedicalTranscriptionJobSummaries?: MedicalTranscriptionJobSummary[];
2688
2920
  }
2921
+ /**
2922
+ * @public
2923
+ */
2689
2924
  export interface ListMedicalVocabulariesRequest {
2690
2925
  /**
2691
2926
  * <p>If your <code>ListMedicalVocabularies</code> request returns more results than can be
@@ -2714,6 +2949,7 @@ export interface ListMedicalVocabulariesRequest {
2714
2949
  NameContains?: string;
2715
2950
  }
2716
2951
  /**
2952
+ * @public
2717
2953
  * <p>Provides information about a custom vocabulary, including the language of the custom
2718
2954
  * vocabulary, when it was last modified, its name, and the processing state.</p>
2719
2955
  */
@@ -2746,6 +2982,9 @@ export interface VocabularyInfo {
2746
2982
  */
2747
2983
  VocabularyState?: VocabularyState | string;
2748
2984
  }
2985
+ /**
2986
+ * @public
2987
+ */
2749
2988
  export interface ListMedicalVocabulariesResponse {
2750
2989
  /**
2751
2990
  * <p>Lists all custom medical vocabularies that have the status specified in your request.
@@ -2767,6 +3006,9 @@ export interface ListMedicalVocabulariesResponse {
2767
3006
  */
2768
3007
  Vocabularies?: VocabularyInfo[];
2769
3008
  }
3009
+ /**
3010
+ * @public
3011
+ */
2770
3012
  export interface ListTagsForResourceRequest {
2771
3013
  /**
2772
3014
  * <p>Returns a list of all tags associated with the specified Amazon Resource Name (ARN).
@@ -2781,6 +3023,9 @@ export interface ListTagsForResourceRequest {
2781
3023
  */
2782
3024
  ResourceArn: string | undefined;
2783
3025
  }
3026
+ /**
3027
+ * @public
3028
+ */
2784
3029
  export interface ListTagsForResourceResponse {
2785
3030
  /**
2786
3031
  * <p>The Amazon Resource Name (ARN) specified in your request.</p>
@@ -2792,6 +3037,9 @@ export interface ListTagsForResourceResponse {
2792
3037
  */
2793
3038
  Tags?: Tag[];
2794
3039
  }
3040
+ /**
3041
+ * @public
3042
+ */
2795
3043
  export interface ListTranscriptionJobsRequest {
2796
3044
  /**
2797
3045
  * <p>Returns only transcription jobs with the specified status. Jobs are ordered by
@@ -2820,6 +3068,7 @@ export interface ListTranscriptionJobsRequest {
2820
3068
  MaxResults?: number;
2821
3069
  }
2822
3070
  /**
3071
+ * @public
2823
3072
  * <p>Provides detailed information about a specific transcription job.</p>
2824
3073
  */
2825
3074
  export interface TranscriptionJobSummary {
@@ -2918,6 +3167,9 @@ export interface TranscriptionJobSummary {
2918
3167
  */
2919
3168
  LanguageCodes?: LanguageCodeItem[];
2920
3169
  }
3170
+ /**
3171
+ * @public
3172
+ */
2921
3173
  export interface ListTranscriptionJobsResponse {
2922
3174
  /**
2923
3175
  * <p>Lists all transcription jobs that have the status specified in your request. Jobs are
@@ -2937,6 +3189,9 @@ export interface ListTranscriptionJobsResponse {
2937
3189
  */
2938
3190
  TranscriptionJobSummaries?: TranscriptionJobSummary[];
2939
3191
  }
3192
+ /**
3193
+ * @public
3194
+ */
2940
3195
  export interface ListVocabulariesRequest {
2941
3196
  /**
2942
3197
  * <p>If your <code>ListVocabularies</code> request returns more results than can be
@@ -2964,6 +3219,9 @@ export interface ListVocabulariesRequest {
2964
3219
  */
2965
3220
  NameContains?: string;
2966
3221
  }
3222
+ /**
3223
+ * @public
3224
+ */
2967
3225
  export interface ListVocabulariesResponse {
2968
3226
  /**
2969
3227
  * <p>Lists all custom vocabularies that have the status specified in your request.
@@ -2984,6 +3242,9 @@ export interface ListVocabulariesResponse {
2984
3242
  */
2985
3243
  Vocabularies?: VocabularyInfo[];
2986
3244
  }
3245
+ /**
3246
+ * @public
3247
+ */
2987
3248
  export interface ListVocabularyFiltersRequest {
2988
3249
  /**
2989
3250
  * <p>If your <code>ListVocabularyFilters</code> request returns more results than can be
@@ -3006,6 +3267,7 @@ export interface ListVocabularyFiltersRequest {
3006
3267
  NameContains?: string;
3007
3268
  }
3008
3269
  /**
3270
+ * @public
3009
3271
  * <p>Provides information about a custom vocabulary filter, including the language of the
3010
3272
  * filter, when it was last modified, and its name.</p>
3011
3273
  */
@@ -3034,6 +3296,9 @@ export interface VocabularyFilterInfo {
3034
3296
  */
3035
3297
  LastModifiedTime?: Date;
3036
3298
  }
3299
+ /**
3300
+ * @public
3301
+ */
3037
3302
  export interface ListVocabularyFiltersResponse {
3038
3303
  /**
3039
3304
  * <p>If <code>NextToken</code> is present in your response, it indicates that not all
@@ -3049,6 +3314,9 @@ export interface ListVocabularyFiltersResponse {
3049
3314
  */
3050
3315
  VocabularyFilters?: VocabularyFilterInfo[];
3051
3316
  }
3317
+ /**
3318
+ * @public
3319
+ */
3052
3320
  export interface StartCallAnalyticsJobRequest {
3053
3321
  /**
3054
3322
  * <p>A unique name, chosen by you, for your Call Analytics job.</p>
@@ -3157,6 +3425,9 @@ export interface StartCallAnalyticsJobRequest {
3157
3425
  */
3158
3426
  ChannelDefinitions?: ChannelDefinition[];
3159
3427
  }
3428
+ /**
3429
+ * @public
3430
+ */
3160
3431
  export interface StartCallAnalyticsJobResponse {
3161
3432
  /**
3162
3433
  * <p>Provides detailed information about the current Call Analytics job, including job
@@ -3164,6 +3435,9 @@ export interface StartCallAnalyticsJobResponse {
3164
3435
  */
3165
3436
  CallAnalyticsJob?: CallAnalyticsJob;
3166
3437
  }
3438
+ /**
3439
+ * @public
3440
+ */
3167
3441
  export interface StartMedicalTranscriptionJobRequest {
3168
3442
  /**
3169
3443
  * <p>A unique name, chosen by you, for your medical transcription job. The name that you
@@ -3339,6 +3613,9 @@ export interface StartMedicalTranscriptionJobRequest {
3339
3613
  */
3340
3614
  Tags?: Tag[];
3341
3615
  }
3616
+ /**
3617
+ * @public
3618
+ */
3342
3619
  export interface StartMedicalTranscriptionJobResponse {
3343
3620
  /**
3344
3621
  * <p>Provides detailed information about the current medical transcription job, including
@@ -3347,6 +3624,7 @@ export interface StartMedicalTranscriptionJobResponse {
3347
3624
  MedicalTranscriptionJob?: MedicalTranscriptionJob;
3348
3625
  }
3349
3626
  /**
3627
+ * @public
3350
3628
  * <p>Generate subtitles for your media file with your transcription request.</p>
3351
3629
  * <p>You can choose a start index of 0 or 1, and you can specify either WebVTT or SubRip
3352
3630
  * (or both) as your output format.</p>
@@ -3369,6 +3647,9 @@ export interface Subtitles {
3369
3647
  */
3370
3648
  OutputStartIndex?: number;
3371
3649
  }
3650
+ /**
3651
+ * @public
3652
+ */
3372
3653
  export interface StartTranscriptionJobRequest {
3373
3654
  /**
3374
3655
  * <p>A unique name, chosen by you, for your transcription job. The name that you specify is
@@ -3655,6 +3936,9 @@ export interface StartTranscriptionJobRequest {
3655
3936
  */
3656
3937
  LanguageIdSettings?: Record<string, LanguageIdSettings>;
3657
3938
  }
3939
+ /**
3940
+ * @public
3941
+ */
3658
3942
  export interface StartTranscriptionJobResponse {
3659
3943
  /**
3660
3944
  * <p>Provides detailed information about the current transcription job, including job
@@ -3662,6 +3946,9 @@ export interface StartTranscriptionJobResponse {
3662
3946
  */
3663
3947
  TranscriptionJob?: TranscriptionJob;
3664
3948
  }
3949
+ /**
3950
+ * @public
3951
+ */
3665
3952
  export interface TagResourceRequest {
3666
3953
  /**
3667
3954
  * <p>The Amazon Resource Name (ARN) of the resource you want to tag. ARNs have the format
@@ -3682,8 +3969,14 @@ export interface TagResourceRequest {
3682
3969
  */
3683
3970
  Tags: Tag[] | undefined;
3684
3971
  }
3972
+ /**
3973
+ * @public
3974
+ */
3685
3975
  export interface TagResourceResponse {
3686
3976
  }
3977
+ /**
3978
+ * @public
3979
+ */
3687
3980
  export interface UntagResourceRequest {
3688
3981
  /**
3689
3982
  * <p>The Amazon Resource Name (ARN) of the Amazon Transcribe resource you want to remove
@@ -3702,8 +3995,14 @@ export interface UntagResourceRequest {
3702
3995
  */
3703
3996
  TagKeys: string[] | undefined;
3704
3997
  }
3998
+ /**
3999
+ * @public
4000
+ */
3705
4001
  export interface UntagResourceResponse {
3706
4002
  }
4003
+ /**
4004
+ * @public
4005
+ */
3707
4006
  export interface UpdateCallAnalyticsCategoryRequest {
3708
4007
  /**
3709
4008
  * <p>The name of the Call Analytics category you want to update. Category names are case
@@ -3723,6 +4022,9 @@ export interface UpdateCallAnalyticsCategoryRequest {
3723
4022
  */
3724
4023
  InputType?: InputType | string;
3725
4024
  }
4025
+ /**
4026
+ * @public
4027
+ */
3726
4028
  export interface UpdateCallAnalyticsCategoryResponse {
3727
4029
  /**
3728
4030
  * <p>Provides you with the properties of the Call Analytics category you specified in your
@@ -3730,6 +4032,9 @@ export interface UpdateCallAnalyticsCategoryResponse {
3730
4032
  */
3731
4033
  CategoryProperties?: CategoryProperties;
3732
4034
  }
4035
+ /**
4036
+ * @public
4037
+ */
3733
4038
  export interface UpdateMedicalVocabularyRequest {
3734
4039
  /**
3735
4040
  * <p>The name of the custom medical vocabulary you want to update. Custom medical
@@ -3752,6 +4057,9 @@ export interface UpdateMedicalVocabularyRequest {
3752
4057
  */
3753
4058
  VocabularyFileUri: string | undefined;
3754
4059
  }
4060
+ /**
4061
+ * @public
4062
+ */
3755
4063
  export interface UpdateMedicalVocabularyResponse {
3756
4064
  /**
3757
4065
  * <p>The name of the updated custom medical vocabulary.</p>
@@ -3777,6 +4085,9 @@ export interface UpdateMedicalVocabularyResponse {
3777
4085
  */
3778
4086
  VocabularyState?: VocabularyState | string;
3779
4087
  }
4088
+ /**
4089
+ * @public
4090
+ */
3780
4091
  export interface UpdateVocabularyRequest {
3781
4092
  /**
3782
4093
  * <p>The name of the custom vocabulary you want to update. Custom vocabulary names are case
@@ -3833,6 +4144,9 @@ export interface UpdateVocabularyRequest {
3833
4144
  */
3834
4145
  DataAccessRoleArn?: string;
3835
4146
  }
4147
+ /**
4148
+ * @public
4149
+ */
3836
4150
  export interface UpdateVocabularyResponse {
3837
4151
  /**
3838
4152
  * <p>The name of the updated custom vocabulary.</p>
@@ -3856,6 +4170,9 @@ export interface UpdateVocabularyResponse {
3856
4170
  */
3857
4171
  VocabularyState?: VocabularyState | string;
3858
4172
  }
4173
+ /**
4174
+ * @public
4175
+ */
3859
4176
  export interface UpdateVocabularyFilterRequest {
3860
4177
  /**
3861
4178
  * <p>The name of the custom vocabulary filter you want to update. Custom vocabulary filter
@@ -3900,6 +4217,9 @@ export interface UpdateVocabularyFilterRequest {
3900
4217
  */
3901
4218
  DataAccessRoleArn?: string;
3902
4219
  }
4220
+ /**
4221
+ * @public
4222
+ */
3903
4223
  export interface UpdateVocabularyFilterResponse {
3904
4224
  /**
3905
4225
  * <p>The name of the updated custom vocabulary filter.</p>