aws-sdk-transcribeservice 1.78.0 → 1.80.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transcribeservice/client.rb +42 -42
- data/lib/aws-sdk-transcribeservice/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-transcribeservice/endpoint_provider.rb +95 -96
- data/lib/aws-sdk-transcribeservice/types.rb +0 -837
- data/lib/aws-sdk-transcribeservice.rb +1 -1
- metadata +2 -2
@@ -28,16 +28,6 @@ module Aws::TranscribeService
|
|
28
28
|
#
|
29
29
|
# If you prefer to use percentage instead of milliseconds, see .
|
30
30
|
#
|
31
|
-
# @note When making an API call, you may pass AbsoluteTimeRange
|
32
|
-
# data as a hash:
|
33
|
-
#
|
34
|
-
# {
|
35
|
-
# start_time: 1,
|
36
|
-
# end_time: 1,
|
37
|
-
# first: 1,
|
38
|
-
# last: 1,
|
39
|
-
# }
|
40
|
-
#
|
41
31
|
# @!attribute [rw] start_time
|
42
32
|
# The time, in milliseconds, when Amazon Transcribe starts searching
|
43
33
|
# for the specified criteria in your audio. If you include `StartTime`
|
@@ -280,29 +270,6 @@ module Aws::TranscribeService
|
|
280
270
|
# apply custom language models, custom vocabulary filters, and custom
|
281
271
|
# vocabularies.
|
282
272
|
#
|
283
|
-
# @note When making an API call, you may pass CallAnalyticsJobSettings
|
284
|
-
# data as a hash:
|
285
|
-
#
|
286
|
-
# {
|
287
|
-
# vocabulary_name: "VocabularyName",
|
288
|
-
# vocabulary_filter_name: "VocabularyFilterName",
|
289
|
-
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
290
|
-
# language_model_name: "ModelName",
|
291
|
-
# content_redaction: {
|
292
|
-
# redaction_type: "PII", # required, accepts PII
|
293
|
-
# redaction_output: "redacted", # required, accepts redacted, redacted_and_unredacted
|
294
|
-
# pii_entity_types: ["BANK_ACCOUNT_NUMBER"], # accepts BANK_ACCOUNT_NUMBER, BANK_ROUTING, CREDIT_DEBIT_NUMBER, CREDIT_DEBIT_CVV, CREDIT_DEBIT_EXPIRY, PIN, EMAIL, ADDRESS, NAME, PHONE, SSN, ALL
|
295
|
-
# },
|
296
|
-
# language_options: ["af-ZA"], # accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
297
|
-
# language_id_settings: {
|
298
|
-
# "af-ZA" => {
|
299
|
-
# vocabulary_name: "VocabularyName",
|
300
|
-
# vocabulary_filter_name: "VocabularyFilterName",
|
301
|
-
# language_model_name: "ModelName",
|
302
|
-
# },
|
303
|
-
# },
|
304
|
-
# }
|
305
|
-
#
|
306
273
|
# @!attribute [rw] vocabulary_name
|
307
274
|
# The name of the custom vocabulary you want to include in your Call
|
308
275
|
# Analytics transcription request. Custom vocabulary names are case
|
@@ -543,14 +510,6 @@ module Aws::TranscribeService
|
|
543
510
|
# `ParticipantRole` to `AGENT` (to indicate that it's the agent
|
544
511
|
# speaking).
|
545
512
|
#
|
546
|
-
# @note When making an API call, you may pass ChannelDefinition
|
547
|
-
# data as a hash:
|
548
|
-
#
|
549
|
-
# {
|
550
|
-
# channel_id: 1,
|
551
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
552
|
-
# }
|
553
|
-
#
|
554
513
|
# @!attribute [rw] channel_id
|
555
514
|
# Specify the audio channel you want to define.
|
556
515
|
# @return [Integer]
|
@@ -588,15 +547,6 @@ module Aws::TranscribeService
|
|
588
547
|
# you must also include the sub-parameters: `PiiEntityTypes`,
|
589
548
|
# `RedactionOutput`, and `RedactionType`.
|
590
549
|
#
|
591
|
-
# @note When making an API call, you may pass ContentRedaction
|
592
|
-
# data as a hash:
|
593
|
-
#
|
594
|
-
# {
|
595
|
-
# redaction_type: "PII", # required, accepts PII
|
596
|
-
# redaction_output: "redacted", # required, accepts redacted, redacted_and_unredacted
|
597
|
-
# pii_entity_types: ["BANK_ACCOUNT_NUMBER"], # accepts BANK_ACCOUNT_NUMBER, BANK_ROUTING, CREDIT_DEBIT_NUMBER, CREDIT_DEBIT_CVV, CREDIT_DEBIT_EXPIRY, PIN, EMAIL, ADDRESS, NAME, PHONE, SSN, ALL
|
598
|
-
# }
|
599
|
-
#
|
600
550
|
# @!attribute [rw] redaction_type
|
601
551
|
# Specify the category of information you want to redact; `PII`
|
602
552
|
# (personally identifiable information) is the only valid value. You
|
@@ -631,86 +581,6 @@ module Aws::TranscribeService
|
|
631
581
|
include Aws::Structure
|
632
582
|
end
|
633
583
|
|
634
|
-
# @note When making an API call, you may pass CreateCallAnalyticsCategoryRequest
|
635
|
-
# data as a hash:
|
636
|
-
#
|
637
|
-
# {
|
638
|
-
# category_name: "CategoryName", # required
|
639
|
-
# rules: [ # required
|
640
|
-
# {
|
641
|
-
# non_talk_time_filter: {
|
642
|
-
# threshold: 1,
|
643
|
-
# absolute_time_range: {
|
644
|
-
# start_time: 1,
|
645
|
-
# end_time: 1,
|
646
|
-
# first: 1,
|
647
|
-
# last: 1,
|
648
|
-
# },
|
649
|
-
# relative_time_range: {
|
650
|
-
# start_percentage: 1,
|
651
|
-
# end_percentage: 1,
|
652
|
-
# first: 1,
|
653
|
-
# last: 1,
|
654
|
-
# },
|
655
|
-
# negate: false,
|
656
|
-
# },
|
657
|
-
# interruption_filter: {
|
658
|
-
# threshold: 1,
|
659
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
660
|
-
# absolute_time_range: {
|
661
|
-
# start_time: 1,
|
662
|
-
# end_time: 1,
|
663
|
-
# first: 1,
|
664
|
-
# last: 1,
|
665
|
-
# },
|
666
|
-
# relative_time_range: {
|
667
|
-
# start_percentage: 1,
|
668
|
-
# end_percentage: 1,
|
669
|
-
# first: 1,
|
670
|
-
# last: 1,
|
671
|
-
# },
|
672
|
-
# negate: false,
|
673
|
-
# },
|
674
|
-
# transcript_filter: {
|
675
|
-
# transcript_filter_type: "EXACT", # required, accepts EXACT
|
676
|
-
# absolute_time_range: {
|
677
|
-
# start_time: 1,
|
678
|
-
# end_time: 1,
|
679
|
-
# first: 1,
|
680
|
-
# last: 1,
|
681
|
-
# },
|
682
|
-
# relative_time_range: {
|
683
|
-
# start_percentage: 1,
|
684
|
-
# end_percentage: 1,
|
685
|
-
# first: 1,
|
686
|
-
# last: 1,
|
687
|
-
# },
|
688
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
689
|
-
# negate: false,
|
690
|
-
# targets: ["NonEmptyString"], # required
|
691
|
-
# },
|
692
|
-
# sentiment_filter: {
|
693
|
-
# sentiments: ["POSITIVE"], # required, accepts POSITIVE, NEGATIVE, NEUTRAL, MIXED
|
694
|
-
# absolute_time_range: {
|
695
|
-
# start_time: 1,
|
696
|
-
# end_time: 1,
|
697
|
-
# first: 1,
|
698
|
-
# last: 1,
|
699
|
-
# },
|
700
|
-
# relative_time_range: {
|
701
|
-
# start_percentage: 1,
|
702
|
-
# end_percentage: 1,
|
703
|
-
# first: 1,
|
704
|
-
# last: 1,
|
705
|
-
# },
|
706
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
707
|
-
# negate: false,
|
708
|
-
# },
|
709
|
-
# },
|
710
|
-
# ],
|
711
|
-
# input_type: "REAL_TIME", # accepts REAL_TIME, POST_CALL
|
712
|
-
# }
|
713
|
-
#
|
714
584
|
# @!attribute [rw] category_name
|
715
585
|
# A unique name, chosen by you, for your Call Analytics category.
|
716
586
|
# It's helpful to use a detailed naming system that will make sense
|
@@ -769,26 +639,6 @@ module Aws::TranscribeService
|
|
769
639
|
include Aws::Structure
|
770
640
|
end
|
771
641
|
|
772
|
-
# @note When making an API call, you may pass CreateLanguageModelRequest
|
773
|
-
# data as a hash:
|
774
|
-
#
|
775
|
-
# {
|
776
|
-
# language_code: "en-US", # required, accepts en-US, hi-IN, es-US, en-GB, en-AU
|
777
|
-
# base_model_name: "NarrowBand", # required, accepts NarrowBand, WideBand
|
778
|
-
# model_name: "ModelName", # required
|
779
|
-
# input_data_config: { # required
|
780
|
-
# s3_uri: "Uri", # required
|
781
|
-
# tuning_data_s3_uri: "Uri",
|
782
|
-
# data_access_role_arn: "DataAccessRoleArn", # required
|
783
|
-
# },
|
784
|
-
# tags: [
|
785
|
-
# {
|
786
|
-
# key: "TagKey", # required
|
787
|
-
# value: "TagValue", # required
|
788
|
-
# },
|
789
|
-
# ],
|
790
|
-
# }
|
791
|
-
#
|
792
642
|
# @!attribute [rw] language_code
|
793
643
|
# The language code that represents the language of your model. Each
|
794
644
|
# custom language model must contain terms in only one language, and
|
@@ -905,21 +755,6 @@ module Aws::TranscribeService
|
|
905
755
|
include Aws::Structure
|
906
756
|
end
|
907
757
|
|
908
|
-
# @note When making an API call, you may pass CreateMedicalVocabularyRequest
|
909
|
-
# data as a hash:
|
910
|
-
#
|
911
|
-
# {
|
912
|
-
# vocabulary_name: "VocabularyName", # required
|
913
|
-
# language_code: "af-ZA", # required, accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
914
|
-
# vocabulary_file_uri: "Uri", # required
|
915
|
-
# tags: [
|
916
|
-
# {
|
917
|
-
# key: "TagKey", # required
|
918
|
-
# value: "TagValue", # required
|
919
|
-
# },
|
920
|
-
# ],
|
921
|
-
# }
|
922
|
-
#
|
923
758
|
# @!attribute [rw] vocabulary_name
|
924
759
|
# A unique name, chosen by you, for your new custom medical
|
925
760
|
# vocabulary.
|
@@ -1015,22 +850,6 @@ module Aws::TranscribeService
|
|
1015
850
|
include Aws::Structure
|
1016
851
|
end
|
1017
852
|
|
1018
|
-
# @note When making an API call, you may pass CreateVocabularyFilterRequest
|
1019
|
-
# data as a hash:
|
1020
|
-
#
|
1021
|
-
# {
|
1022
|
-
# vocabulary_filter_name: "VocabularyFilterName", # required
|
1023
|
-
# language_code: "af-ZA", # required, accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
1024
|
-
# words: ["Word"],
|
1025
|
-
# vocabulary_filter_file_uri: "Uri",
|
1026
|
-
# tags: [
|
1027
|
-
# {
|
1028
|
-
# key: "TagKey", # required
|
1029
|
-
# value: "TagValue", # required
|
1030
|
-
# },
|
1031
|
-
# ],
|
1032
|
-
# }
|
1033
|
-
#
|
1034
853
|
# @!attribute [rw] vocabulary_filter_name
|
1035
854
|
# A unique name, chosen by you, for your new custom vocabulary filter.
|
1036
855
|
#
|
@@ -1143,22 +962,6 @@ module Aws::TranscribeService
|
|
1143
962
|
include Aws::Structure
|
1144
963
|
end
|
1145
964
|
|
1146
|
-
# @note When making an API call, you may pass CreateVocabularyRequest
|
1147
|
-
# data as a hash:
|
1148
|
-
#
|
1149
|
-
# {
|
1150
|
-
# vocabulary_name: "VocabularyName", # required
|
1151
|
-
# language_code: "af-ZA", # required, accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
1152
|
-
# phrases: ["Phrase"],
|
1153
|
-
# vocabulary_file_uri: "Uri",
|
1154
|
-
# tags: [
|
1155
|
-
# {
|
1156
|
-
# key: "TagKey", # required
|
1157
|
-
# value: "TagValue", # required
|
1158
|
-
# },
|
1159
|
-
# ],
|
1160
|
-
# }
|
1161
|
-
#
|
1162
965
|
# @!attribute [rw] vocabulary_name
|
1163
966
|
# A unique name, chosen by you, for your new custom vocabulary.
|
1164
967
|
#
|
@@ -1289,13 +1092,6 @@ module Aws::TranscribeService
|
|
1289
1092
|
include Aws::Structure
|
1290
1093
|
end
|
1291
1094
|
|
1292
|
-
# @note When making an API call, you may pass DeleteCallAnalyticsCategoryRequest
|
1293
|
-
# data as a hash:
|
1294
|
-
#
|
1295
|
-
# {
|
1296
|
-
# category_name: "CategoryName", # required
|
1297
|
-
# }
|
1298
|
-
#
|
1299
1095
|
# @!attribute [rw] category_name
|
1300
1096
|
# The name of the Call Analytics category you want to delete. Category
|
1301
1097
|
# names are case sensitive.
|
@@ -1313,13 +1109,6 @@ module Aws::TranscribeService
|
|
1313
1109
|
#
|
1314
1110
|
class DeleteCallAnalyticsCategoryResponse < Aws::EmptyStructure; end
|
1315
1111
|
|
1316
|
-
# @note When making an API call, you may pass DeleteCallAnalyticsJobRequest
|
1317
|
-
# data as a hash:
|
1318
|
-
#
|
1319
|
-
# {
|
1320
|
-
# call_analytics_job_name: "CallAnalyticsJobName", # required
|
1321
|
-
# }
|
1322
|
-
#
|
1323
1112
|
# @!attribute [rw] call_analytics_job_name
|
1324
1113
|
# The name of the Call Analytics job you want to delete. Job names are
|
1325
1114
|
# case sensitive.
|
@@ -1337,13 +1126,6 @@ module Aws::TranscribeService
|
|
1337
1126
|
#
|
1338
1127
|
class DeleteCallAnalyticsJobResponse < Aws::EmptyStructure; end
|
1339
1128
|
|
1340
|
-
# @note When making an API call, you may pass DeleteLanguageModelRequest
|
1341
|
-
# data as a hash:
|
1342
|
-
#
|
1343
|
-
# {
|
1344
|
-
# model_name: "ModelName", # required
|
1345
|
-
# }
|
1346
|
-
#
|
1347
1129
|
# @!attribute [rw] model_name
|
1348
1130
|
# The name of the custom language model you want to delete. Model
|
1349
1131
|
# names are case sensitive.
|
@@ -1357,13 +1139,6 @@ module Aws::TranscribeService
|
|
1357
1139
|
include Aws::Structure
|
1358
1140
|
end
|
1359
1141
|
|
1360
|
-
# @note When making an API call, you may pass DeleteMedicalTranscriptionJobRequest
|
1361
|
-
# data as a hash:
|
1362
|
-
#
|
1363
|
-
# {
|
1364
|
-
# medical_transcription_job_name: "TranscriptionJobName", # required
|
1365
|
-
# }
|
1366
|
-
#
|
1367
1142
|
# @!attribute [rw] medical_transcription_job_name
|
1368
1143
|
# The name of the medical transcription job you want to delete. Job
|
1369
1144
|
# names are case sensitive.
|
@@ -1377,13 +1152,6 @@ module Aws::TranscribeService
|
|
1377
1152
|
include Aws::Structure
|
1378
1153
|
end
|
1379
1154
|
|
1380
|
-
# @note When making an API call, you may pass DeleteMedicalVocabularyRequest
|
1381
|
-
# data as a hash:
|
1382
|
-
#
|
1383
|
-
# {
|
1384
|
-
# vocabulary_name: "VocabularyName", # required
|
1385
|
-
# }
|
1386
|
-
#
|
1387
1155
|
# @!attribute [rw] vocabulary_name
|
1388
1156
|
# The name of the custom medical vocabulary you want to delete. Custom
|
1389
1157
|
# medical vocabulary names are case sensitive.
|
@@ -1397,13 +1165,6 @@ module Aws::TranscribeService
|
|
1397
1165
|
include Aws::Structure
|
1398
1166
|
end
|
1399
1167
|
|
1400
|
-
# @note When making an API call, you may pass DeleteTranscriptionJobRequest
|
1401
|
-
# data as a hash:
|
1402
|
-
#
|
1403
|
-
# {
|
1404
|
-
# transcription_job_name: "TranscriptionJobName", # required
|
1405
|
-
# }
|
1406
|
-
#
|
1407
1168
|
# @!attribute [rw] transcription_job_name
|
1408
1169
|
# The name of the transcription job you want to delete. Job names are
|
1409
1170
|
# case sensitive.
|
@@ -1417,13 +1178,6 @@ module Aws::TranscribeService
|
|
1417
1178
|
include Aws::Structure
|
1418
1179
|
end
|
1419
1180
|
|
1420
|
-
# @note When making an API call, you may pass DeleteVocabularyFilterRequest
|
1421
|
-
# data as a hash:
|
1422
|
-
#
|
1423
|
-
# {
|
1424
|
-
# vocabulary_filter_name: "VocabularyFilterName", # required
|
1425
|
-
# }
|
1426
|
-
#
|
1427
1181
|
# @!attribute [rw] vocabulary_filter_name
|
1428
1182
|
# The name of the custom vocabulary filter you want to delete. Custom
|
1429
1183
|
# vocabulary filter names are case sensitive.
|
@@ -1437,13 +1191,6 @@ module Aws::TranscribeService
|
|
1437
1191
|
include Aws::Structure
|
1438
1192
|
end
|
1439
1193
|
|
1440
|
-
# @note When making an API call, you may pass DeleteVocabularyRequest
|
1441
|
-
# data as a hash:
|
1442
|
-
#
|
1443
|
-
# {
|
1444
|
-
# vocabulary_name: "VocabularyName", # required
|
1445
|
-
# }
|
1446
|
-
#
|
1447
1194
|
# @!attribute [rw] vocabulary_name
|
1448
1195
|
# The name of the custom vocabulary you want to delete. Custom
|
1449
1196
|
# vocabulary names are case sensitive.
|
@@ -1457,13 +1204,6 @@ module Aws::TranscribeService
|
|
1457
1204
|
include Aws::Structure
|
1458
1205
|
end
|
1459
1206
|
|
1460
|
-
# @note When making an API call, you may pass DescribeLanguageModelRequest
|
1461
|
-
# data as a hash:
|
1462
|
-
#
|
1463
|
-
# {
|
1464
|
-
# model_name: "ModelName", # required
|
1465
|
-
# }
|
1466
|
-
#
|
1467
1207
|
# @!attribute [rw] model_name
|
1468
1208
|
# The name of the custom language model you want information about.
|
1469
1209
|
# Model names are case sensitive.
|
@@ -1498,13 +1238,6 @@ module Aws::TranscribeService
|
|
1498
1238
|
include Aws::Structure
|
1499
1239
|
end
|
1500
1240
|
|
1501
|
-
# @note When making an API call, you may pass GetCallAnalyticsCategoryRequest
|
1502
|
-
# data as a hash:
|
1503
|
-
#
|
1504
|
-
# {
|
1505
|
-
# category_name: "CategoryName", # required
|
1506
|
-
# }
|
1507
|
-
#
|
1508
1241
|
# @!attribute [rw] category_name
|
1509
1242
|
# The name of the Call Analytics category you want information about.
|
1510
1243
|
# Category names are case sensitive.
|
@@ -1531,13 +1264,6 @@ module Aws::TranscribeService
|
|
1531
1264
|
include Aws::Structure
|
1532
1265
|
end
|
1533
1266
|
|
1534
|
-
# @note When making an API call, you may pass GetCallAnalyticsJobRequest
|
1535
|
-
# data as a hash:
|
1536
|
-
#
|
1537
|
-
# {
|
1538
|
-
# call_analytics_job_name: "CallAnalyticsJobName", # required
|
1539
|
-
# }
|
1540
|
-
#
|
1541
1267
|
# @!attribute [rw] call_analytics_job_name
|
1542
1268
|
# The name of the Call Analytics job you want information about. Job
|
1543
1269
|
# names are case sensitive.
|
@@ -1564,13 +1290,6 @@ module Aws::TranscribeService
|
|
1564
1290
|
include Aws::Structure
|
1565
1291
|
end
|
1566
1292
|
|
1567
|
-
# @note When making an API call, you may pass GetMedicalTranscriptionJobRequest
|
1568
|
-
# data as a hash:
|
1569
|
-
#
|
1570
|
-
# {
|
1571
|
-
# medical_transcription_job_name: "TranscriptionJobName", # required
|
1572
|
-
# }
|
1573
|
-
#
|
1574
1293
|
# @!attribute [rw] medical_transcription_job_name
|
1575
1294
|
# The name of the medical transcription job you want information
|
1576
1295
|
# about. Job names are case sensitive.
|
@@ -1598,13 +1317,6 @@ module Aws::TranscribeService
|
|
1598
1317
|
include Aws::Structure
|
1599
1318
|
end
|
1600
1319
|
|
1601
|
-
# @note When making an API call, you may pass GetMedicalVocabularyRequest
|
1602
|
-
# data as a hash:
|
1603
|
-
#
|
1604
|
-
# {
|
1605
|
-
# vocabulary_name: "VocabularyName", # required
|
1606
|
-
# }
|
1607
|
-
#
|
1608
1320
|
# @!attribute [rw] vocabulary_name
|
1609
1321
|
# The name of the custom medical vocabulary you want information
|
1610
1322
|
# about. Custom medical vocabulary names are case sensitive.
|
@@ -1672,13 +1384,6 @@ module Aws::TranscribeService
|
|
1672
1384
|
include Aws::Structure
|
1673
1385
|
end
|
1674
1386
|
|
1675
|
-
# @note When making an API call, you may pass GetTranscriptionJobRequest
|
1676
|
-
# data as a hash:
|
1677
|
-
#
|
1678
|
-
# {
|
1679
|
-
# transcription_job_name: "TranscriptionJobName", # required
|
1680
|
-
# }
|
1681
|
-
#
|
1682
1387
|
# @!attribute [rw] transcription_job_name
|
1683
1388
|
# The name of the transcription job you want information about. Job
|
1684
1389
|
# names are case sensitive.
|
@@ -1705,13 +1410,6 @@ module Aws::TranscribeService
|
|
1705
1410
|
include Aws::Structure
|
1706
1411
|
end
|
1707
1412
|
|
1708
|
-
# @note When making an API call, you may pass GetVocabularyFilterRequest
|
1709
|
-
# data as a hash:
|
1710
|
-
#
|
1711
|
-
# {
|
1712
|
-
# vocabulary_filter_name: "VocabularyFilterName", # required
|
1713
|
-
# }
|
1714
|
-
#
|
1715
1413
|
# @!attribute [rw] vocabulary_filter_name
|
1716
1414
|
# The name of the custom vocabulary filter you want information about.
|
1717
1415
|
# Custom vocabulary filter names are case sensitive.
|
@@ -1759,13 +1457,6 @@ module Aws::TranscribeService
|
|
1759
1457
|
include Aws::Structure
|
1760
1458
|
end
|
1761
1459
|
|
1762
|
-
# @note When making an API call, you may pass GetVocabularyRequest
|
1763
|
-
# data as a hash:
|
1764
|
-
#
|
1765
|
-
# {
|
1766
|
-
# vocabulary_name: "VocabularyName", # required
|
1767
|
-
# }
|
1768
|
-
#
|
1769
1460
|
# @!attribute [rw] vocabulary_name
|
1770
1461
|
# The name of the custom vocabulary you want information about. Custom
|
1771
1462
|
# vocabulary names are case sensitive.
|
@@ -1837,15 +1528,6 @@ module Aws::TranscribeService
|
|
1837
1528
|
# `S3Uri` and `DataAccessRoleArn`. You can optionally include
|
1838
1529
|
# `TuningDataS3Uri`.
|
1839
1530
|
#
|
1840
|
-
# @note When making an API call, you may pass InputDataConfig
|
1841
|
-
# data as a hash:
|
1842
|
-
#
|
1843
|
-
# {
|
1844
|
-
# s3_uri: "Uri", # required
|
1845
|
-
# tuning_data_s3_uri: "Uri",
|
1846
|
-
# data_access_role_arn: "DataAccessRoleArn", # required
|
1847
|
-
# }
|
1848
|
-
#
|
1849
1531
|
# @!attribute [rw] s3_uri
|
1850
1532
|
# The Amazon S3 location (URI) of the text files you want to use to
|
1851
1533
|
# train your custom language model.
|
@@ -1922,27 +1604,6 @@ module Aws::TranscribeService
|
|
1922
1604
|
#
|
1923
1605
|
# [1]: https://docs.aws.amazon.com/transcribe/latest/dg/tca-categories-batch.html#tca-rules-batch
|
1924
1606
|
#
|
1925
|
-
# @note When making an API call, you may pass InterruptionFilter
|
1926
|
-
# data as a hash:
|
1927
|
-
#
|
1928
|
-
# {
|
1929
|
-
# threshold: 1,
|
1930
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
1931
|
-
# absolute_time_range: {
|
1932
|
-
# start_time: 1,
|
1933
|
-
# end_time: 1,
|
1934
|
-
# first: 1,
|
1935
|
-
# last: 1,
|
1936
|
-
# },
|
1937
|
-
# relative_time_range: {
|
1938
|
-
# start_percentage: 1,
|
1939
|
-
# end_percentage: 1,
|
1940
|
-
# first: 1,
|
1941
|
-
# last: 1,
|
1942
|
-
# },
|
1943
|
-
# negate: false,
|
1944
|
-
# }
|
1945
|
-
#
|
1946
1607
|
# @!attribute [rw] threshold
|
1947
1608
|
# Specify the duration of the interruptions in milliseconds. For
|
1948
1609
|
# example, you can flag speech that contains more than 10,000
|
@@ -1992,14 +1653,6 @@ module Aws::TranscribeService
|
|
1992
1653
|
# include the sub-parameters: `AllowDeferredExecution` and
|
1993
1654
|
# `DataAccessRoleArn`.
|
1994
1655
|
#
|
1995
|
-
# @note When making an API call, you may pass JobExecutionSettings
|
1996
|
-
# data as a hash:
|
1997
|
-
#
|
1998
|
-
# {
|
1999
|
-
# allow_deferred_execution: false,
|
2000
|
-
# data_access_role_arn: "DataAccessRoleArn",
|
2001
|
-
# }
|
2002
|
-
#
|
2003
1656
|
# @!attribute [rw] allow_deferred_execution
|
2004
1657
|
# Makes it possible to enable job queuing when your concurrent request
|
2005
1658
|
# limit is exceeded. When `AllowDeferredExecution` is set to `true`,
|
@@ -2099,15 +1752,6 @@ module Aws::TranscribeService
|
|
2099
1752
|
# VocabularyFilterName (or both) sub-parameter.</p>
|
2100
1753
|
# `
|
2101
1754
|
#
|
2102
|
-
# @note When making an API call, you may pass LanguageIdSettings
|
2103
|
-
# data as a hash:
|
2104
|
-
#
|
2105
|
-
# {
|
2106
|
-
# vocabulary_name: "VocabularyName",
|
2107
|
-
# vocabulary_filter_name: "VocabularyFilterName",
|
2108
|
-
# language_model_name: "ModelName",
|
2109
|
-
# }
|
2110
|
-
#
|
2111
1755
|
# @!attribute [rw] vocabulary_name
|
2112
1756
|
# The name of the custom vocabulary you want to use when processing
|
2113
1757
|
# your transcription job. Custom vocabulary names are case sensitive.
|
@@ -2272,14 +1916,6 @@ module Aws::TranscribeService
|
|
2272
1916
|
include Aws::Structure
|
2273
1917
|
end
|
2274
1918
|
|
2275
|
-
# @note When making an API call, you may pass ListCallAnalyticsCategoriesRequest
|
2276
|
-
# data as a hash:
|
2277
|
-
#
|
2278
|
-
# {
|
2279
|
-
# next_token: "NextToken",
|
2280
|
-
# max_results: 1,
|
2281
|
-
# }
|
2282
|
-
#
|
2283
1919
|
# @!attribute [rw] next_token
|
2284
1920
|
# If your `ListCallAnalyticsCategories` request returns more results
|
2285
1921
|
# than can be displayed, `NextToken` is displayed in the response with
|
@@ -2327,16 +1963,6 @@ module Aws::TranscribeService
|
|
2327
1963
|
include Aws::Structure
|
2328
1964
|
end
|
2329
1965
|
|
2330
|
-
# @note When making an API call, you may pass ListCallAnalyticsJobsRequest
|
2331
|
-
# data as a hash:
|
2332
|
-
#
|
2333
|
-
# {
|
2334
|
-
# status: "QUEUED", # accepts QUEUED, IN_PROGRESS, FAILED, COMPLETED
|
2335
|
-
# job_name_contains: "CallAnalyticsJobName",
|
2336
|
-
# next_token: "NextToken",
|
2337
|
-
# max_results: 1,
|
2338
|
-
# }
|
2339
|
-
#
|
2340
1966
|
# @!attribute [rw] status
|
2341
1967
|
# Returns only Call Analytics jobs with the specified status. Jobs are
|
2342
1968
|
# ordered by creation date, with the newest job first. If you don't
|
@@ -2403,16 +2029,6 @@ module Aws::TranscribeService
|
|
2403
2029
|
include Aws::Structure
|
2404
2030
|
end
|
2405
2031
|
|
2406
|
-
# @note When making an API call, you may pass ListLanguageModelsRequest
|
2407
|
-
# data as a hash:
|
2408
|
-
#
|
2409
|
-
# {
|
2410
|
-
# status_equals: "IN_PROGRESS", # accepts IN_PROGRESS, FAILED, COMPLETED
|
2411
|
-
# name_contains: "ModelName",
|
2412
|
-
# next_token: "NextToken",
|
2413
|
-
# max_results: 1,
|
2414
|
-
# }
|
2415
|
-
#
|
2416
2032
|
# @!attribute [rw] status_equals
|
2417
2033
|
# Returns only custom language models with the specified status.
|
2418
2034
|
# Language models are ordered by creation date, with the newest model
|
@@ -2474,16 +2090,6 @@ module Aws::TranscribeService
|
|
2474
2090
|
include Aws::Structure
|
2475
2091
|
end
|
2476
2092
|
|
2477
|
-
# @note When making an API call, you may pass ListMedicalTranscriptionJobsRequest
|
2478
|
-
# data as a hash:
|
2479
|
-
#
|
2480
|
-
# {
|
2481
|
-
# status: "QUEUED", # accepts QUEUED, IN_PROGRESS, FAILED, COMPLETED
|
2482
|
-
# job_name_contains: "TranscriptionJobName",
|
2483
|
-
# next_token: "NextToken",
|
2484
|
-
# max_results: 1,
|
2485
|
-
# }
|
2486
|
-
#
|
2487
2093
|
# @!attribute [rw] status
|
2488
2094
|
# Returns only medical transcription jobs with the specified status.
|
2489
2095
|
# Jobs are ordered by creation date, with the newest job first. If you
|
@@ -2551,16 +2157,6 @@ module Aws::TranscribeService
|
|
2551
2157
|
include Aws::Structure
|
2552
2158
|
end
|
2553
2159
|
|
2554
|
-
# @note When making an API call, you may pass ListMedicalVocabulariesRequest
|
2555
|
-
# data as a hash:
|
2556
|
-
#
|
2557
|
-
# {
|
2558
|
-
# next_token: "NextToken",
|
2559
|
-
# max_results: 1,
|
2560
|
-
# state_equals: "PENDING", # accepts PENDING, READY, FAILED
|
2561
|
-
# name_contains: "VocabularyName",
|
2562
|
-
# }
|
2563
|
-
#
|
2564
2160
|
# @!attribute [rw] next_token
|
2565
2161
|
# If your `ListMedicalVocabularies` request returns more results than
|
2566
2162
|
# can be displayed, `NextToken` is displayed in the response with an
|
@@ -2629,13 +2225,6 @@ module Aws::TranscribeService
|
|
2629
2225
|
include Aws::Structure
|
2630
2226
|
end
|
2631
2227
|
|
2632
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2633
|
-
# data as a hash:
|
2634
|
-
#
|
2635
|
-
# {
|
2636
|
-
# resource_arn: "TranscribeArn", # required
|
2637
|
-
# }
|
2638
|
-
#
|
2639
2228
|
# @!attribute [rw] resource_arn
|
2640
2229
|
# Returns a list of all tags associated with the specified Amazon
|
2641
2230
|
# Resource Name (ARN). ARNs have the format
|
@@ -2675,16 +2264,6 @@ module Aws::TranscribeService
|
|
2675
2264
|
include Aws::Structure
|
2676
2265
|
end
|
2677
2266
|
|
2678
|
-
# @note When making an API call, you may pass ListTranscriptionJobsRequest
|
2679
|
-
# data as a hash:
|
2680
|
-
#
|
2681
|
-
# {
|
2682
|
-
# status: "QUEUED", # accepts QUEUED, IN_PROGRESS, FAILED, COMPLETED
|
2683
|
-
# job_name_contains: "TranscriptionJobName",
|
2684
|
-
# next_token: "NextToken",
|
2685
|
-
# max_results: 1,
|
2686
|
-
# }
|
2687
|
-
#
|
2688
2267
|
# @!attribute [rw] status
|
2689
2268
|
# Returns only transcription jobs with the specified status. Jobs are
|
2690
2269
|
# ordered by creation date, with the newest job first. If you don't
|
@@ -2751,16 +2330,6 @@ module Aws::TranscribeService
|
|
2751
2330
|
include Aws::Structure
|
2752
2331
|
end
|
2753
2332
|
|
2754
|
-
# @note When making an API call, you may pass ListVocabulariesRequest
|
2755
|
-
# data as a hash:
|
2756
|
-
#
|
2757
|
-
# {
|
2758
|
-
# next_token: "NextToken",
|
2759
|
-
# max_results: 1,
|
2760
|
-
# state_equals: "PENDING", # accepts PENDING, READY, FAILED
|
2761
|
-
# name_contains: "VocabularyName",
|
2762
|
-
# }
|
2763
|
-
#
|
2764
2333
|
# @!attribute [rw] next_token
|
2765
2334
|
# If your `ListVocabularies` request returns more results than can be
|
2766
2335
|
# displayed, `NextToken` is displayed in the response with an
|
@@ -2829,15 +2398,6 @@ module Aws::TranscribeService
|
|
2829
2398
|
include Aws::Structure
|
2830
2399
|
end
|
2831
2400
|
|
2832
|
-
# @note When making an API call, you may pass ListVocabularyFiltersRequest
|
2833
|
-
# data as a hash:
|
2834
|
-
#
|
2835
|
-
# {
|
2836
|
-
# next_token: "NextToken",
|
2837
|
-
# max_results: 1,
|
2838
|
-
# name_contains: "VocabularyFilterName",
|
2839
|
-
# }
|
2840
|
-
#
|
2841
2401
|
# @!attribute [rw] next_token
|
2842
2402
|
# If your `ListVocabularyFilters` request returns more results than
|
2843
2403
|
# can be displayed, `NextToken` is displayed in the response with an
|
@@ -2903,14 +2463,6 @@ module Aws::TranscribeService
|
|
2903
2463
|
# [1]: https://docs.aws.amazon.com/APIReference/API_StartTranscriptionJob.html#transcribe-StartTranscriptionJob-request-MediaFormat
|
2904
2464
|
# [2]: https://docs.aws.amazon.com/transcribe/latest/dg/how-input.html#how-input-audio
|
2905
2465
|
#
|
2906
|
-
# @note When making an API call, you may pass Media
|
2907
|
-
# data as a hash:
|
2908
|
-
#
|
2909
|
-
# {
|
2910
|
-
# media_file_uri: "Uri",
|
2911
|
-
# redacted_media_file_uri: "Uri",
|
2912
|
-
# }
|
2913
|
-
#
|
2914
2466
|
# @!attribute [rw] media_file_uri
|
2915
2467
|
# The Amazon S3 location of the media file you want to transcribe. For
|
2916
2468
|
# example:
|
@@ -3269,18 +2821,6 @@ module Aws::TranscribeService
|
|
3269
2821
|
# You can use that to apply custom vocabularies to your medical
|
3270
2822
|
# transcription job.
|
3271
2823
|
#
|
3272
|
-
# @note When making an API call, you may pass MedicalTranscriptionSetting
|
3273
|
-
# data as a hash:
|
3274
|
-
#
|
3275
|
-
# {
|
3276
|
-
# show_speaker_labels: false,
|
3277
|
-
# max_speaker_labels: 1,
|
3278
|
-
# channel_identification: false,
|
3279
|
-
# show_alternatives: false,
|
3280
|
-
# max_alternatives: 1,
|
3281
|
-
# vocabulary_name: "VocabularyName",
|
3282
|
-
# }
|
3283
|
-
#
|
3284
2824
|
# @!attribute [rw] show_speaker_labels
|
3285
2825
|
# Enables speaker partitioning (diarization) in your transcription
|
3286
2826
|
# output. Speaker partitioning labels the speech from individual
|
@@ -3401,13 +2941,6 @@ module Aws::TranscribeService
|
|
3401
2941
|
# LanguageModelName sub-parameter.</p>
|
3402
2942
|
# `
|
3403
2943
|
#
|
3404
|
-
# @note When making an API call, you may pass ModelSettings
|
3405
|
-
# data as a hash:
|
3406
|
-
#
|
3407
|
-
# {
|
3408
|
-
# language_model_name: "ModelName",
|
3409
|
-
# }
|
3410
|
-
#
|
3411
2944
|
# @!attribute [rw] language_model_name
|
3412
2945
|
# The name of the custom language model you want to use when
|
3413
2946
|
# processing your transcription job. Note that custom language model
|
@@ -3442,26 +2975,6 @@ module Aws::TranscribeService
|
|
3442
2975
|
#
|
3443
2976
|
# [1]: https://docs.aws.amazon.com/transcribe/latest/dg/tca-categories-batch.html#tca-rules-batch
|
3444
2977
|
#
|
3445
|
-
# @note When making an API call, you may pass NonTalkTimeFilter
|
3446
|
-
# data as a hash:
|
3447
|
-
#
|
3448
|
-
# {
|
3449
|
-
# threshold: 1,
|
3450
|
-
# absolute_time_range: {
|
3451
|
-
# start_time: 1,
|
3452
|
-
# end_time: 1,
|
3453
|
-
# first: 1,
|
3454
|
-
# last: 1,
|
3455
|
-
# },
|
3456
|
-
# relative_time_range: {
|
3457
|
-
# start_percentage: 1,
|
3458
|
-
# end_percentage: 1,
|
3459
|
-
# first: 1,
|
3460
|
-
# last: 1,
|
3461
|
-
# },
|
3462
|
-
# negate: false,
|
3463
|
-
# }
|
3464
|
-
#
|
3465
2978
|
# @!attribute [rw] threshold
|
3466
2979
|
# Specify the duration, in milliseconds, of the period of silence that
|
3467
2980
|
# you want to flag. For example, you can flag a silent period that
|
@@ -3526,16 +3039,6 @@ module Aws::TranscribeService
|
|
3526
3039
|
#
|
3527
3040
|
# If you prefer to use milliseconds instead of percentage, see .
|
3528
3041
|
#
|
3529
|
-
# @note When making an API call, you may pass RelativeTimeRange
|
3530
|
-
# data as a hash:
|
3531
|
-
#
|
3532
|
-
# {
|
3533
|
-
# start_percentage: 1,
|
3534
|
-
# end_percentage: 1,
|
3535
|
-
# first: 1,
|
3536
|
-
# last: 1,
|
3537
|
-
# }
|
3538
|
-
#
|
3539
3042
|
# @!attribute [rw] start_percentage
|
3540
3043
|
# The time, in percentage, when Amazon Transcribe starts searching for
|
3541
3044
|
# the specified criteria in your media file. If you include
|
@@ -3657,27 +3160,6 @@ module Aws::TranscribeService
|
|
3657
3160
|
#
|
3658
3161
|
# [1]: https://docs.aws.amazon.com/transcribe/latest/dg/tca-categories-batch.html#tca-rules-batch
|
3659
3162
|
#
|
3660
|
-
# @note When making an API call, you may pass SentimentFilter
|
3661
|
-
# data as a hash:
|
3662
|
-
#
|
3663
|
-
# {
|
3664
|
-
# sentiments: ["POSITIVE"], # required, accepts POSITIVE, NEGATIVE, NEUTRAL, MIXED
|
3665
|
-
# absolute_time_range: {
|
3666
|
-
# start_time: 1,
|
3667
|
-
# end_time: 1,
|
3668
|
-
# first: 1,
|
3669
|
-
# last: 1,
|
3670
|
-
# },
|
3671
|
-
# relative_time_range: {
|
3672
|
-
# start_percentage: 1,
|
3673
|
-
# end_percentage: 1,
|
3674
|
-
# first: 1,
|
3675
|
-
# last: 1,
|
3676
|
-
# },
|
3677
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
3678
|
-
# negate: false,
|
3679
|
-
# }
|
3680
|
-
#
|
3681
3163
|
# @!attribute [rw] sentiments
|
3682
3164
|
# Specify the sentiments that you want to flag.
|
3683
3165
|
# @return [Array<String>]
|
@@ -3722,20 +3204,6 @@ module Aws::TranscribeService
|
|
3722
3204
|
# You can use that to apply custom vocabularies to your transcription
|
3723
3205
|
# job.
|
3724
3206
|
#
|
3725
|
-
# @note When making an API call, you may pass Settings
|
3726
|
-
# data as a hash:
|
3727
|
-
#
|
3728
|
-
# {
|
3729
|
-
# vocabulary_name: "VocabularyName",
|
3730
|
-
# show_speaker_labels: false,
|
3731
|
-
# max_speaker_labels: 1,
|
3732
|
-
# channel_identification: false,
|
3733
|
-
# show_alternatives: false,
|
3734
|
-
# max_alternatives: 1,
|
3735
|
-
# vocabulary_filter_name: "VocabularyFilterName",
|
3736
|
-
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
3737
|
-
# }
|
3738
|
-
#
|
3739
3207
|
# @!attribute [rw] vocabulary_name
|
3740
3208
|
# The name of the custom vocabulary you want to use in your
|
3741
3209
|
# transcription job request. This name is case sensitive, cannot
|
@@ -3864,45 +3332,6 @@ module Aws::TranscribeService
|
|
3864
3332
|
include Aws::Structure
|
3865
3333
|
end
|
3866
3334
|
|
3867
|
-
# @note When making an API call, you may pass StartCallAnalyticsJobRequest
|
3868
|
-
# data as a hash:
|
3869
|
-
#
|
3870
|
-
# {
|
3871
|
-
# call_analytics_job_name: "CallAnalyticsJobName", # required
|
3872
|
-
# media: { # required
|
3873
|
-
# media_file_uri: "Uri",
|
3874
|
-
# redacted_media_file_uri: "Uri",
|
3875
|
-
# },
|
3876
|
-
# output_location: "Uri",
|
3877
|
-
# output_encryption_kms_key_id: "KMSKeyId",
|
3878
|
-
# data_access_role_arn: "DataAccessRoleArn",
|
3879
|
-
# settings: {
|
3880
|
-
# vocabulary_name: "VocabularyName",
|
3881
|
-
# vocabulary_filter_name: "VocabularyFilterName",
|
3882
|
-
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
3883
|
-
# language_model_name: "ModelName",
|
3884
|
-
# content_redaction: {
|
3885
|
-
# redaction_type: "PII", # required, accepts PII
|
3886
|
-
# redaction_output: "redacted", # required, accepts redacted, redacted_and_unredacted
|
3887
|
-
# pii_entity_types: ["BANK_ACCOUNT_NUMBER"], # accepts BANK_ACCOUNT_NUMBER, BANK_ROUTING, CREDIT_DEBIT_NUMBER, CREDIT_DEBIT_CVV, CREDIT_DEBIT_EXPIRY, PIN, EMAIL, ADDRESS, NAME, PHONE, SSN, ALL
|
3888
|
-
# },
|
3889
|
-
# language_options: ["af-ZA"], # accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
3890
|
-
# language_id_settings: {
|
3891
|
-
# "af-ZA" => {
|
3892
|
-
# vocabulary_name: "VocabularyName",
|
3893
|
-
# vocabulary_filter_name: "VocabularyFilterName",
|
3894
|
-
# language_model_name: "ModelName",
|
3895
|
-
# },
|
3896
|
-
# },
|
3897
|
-
# },
|
3898
|
-
# channel_definitions: [
|
3899
|
-
# {
|
3900
|
-
# channel_id: 1,
|
3901
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
3902
|
-
# },
|
3903
|
-
# ],
|
3904
|
-
# }
|
3905
|
-
#
|
3906
3335
|
# @!attribute [rw] call_analytics_job_name
|
3907
3336
|
# A unique name, chosen by you, for your Call Analytics job.
|
3908
3337
|
#
|
@@ -4040,43 +3469,6 @@ module Aws::TranscribeService
|
|
4040
3469
|
include Aws::Structure
|
4041
3470
|
end
|
4042
3471
|
|
4043
|
-
# @note When making an API call, you may pass StartMedicalTranscriptionJobRequest
|
4044
|
-
# data as a hash:
|
4045
|
-
#
|
4046
|
-
# {
|
4047
|
-
# medical_transcription_job_name: "TranscriptionJobName", # required
|
4048
|
-
# language_code: "af-ZA", # required, accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
4049
|
-
# media_sample_rate_hertz: 1,
|
4050
|
-
# media_format: "mp3", # accepts mp3, mp4, wav, flac, ogg, amr, webm
|
4051
|
-
# media: { # required
|
4052
|
-
# media_file_uri: "Uri",
|
4053
|
-
# redacted_media_file_uri: "Uri",
|
4054
|
-
# },
|
4055
|
-
# output_bucket_name: "OutputBucketName", # required
|
4056
|
-
# output_key: "OutputKey",
|
4057
|
-
# output_encryption_kms_key_id: "KMSKeyId",
|
4058
|
-
# kms_encryption_context: {
|
4059
|
-
# "NonEmptyString" => "NonEmptyString",
|
4060
|
-
# },
|
4061
|
-
# settings: {
|
4062
|
-
# show_speaker_labels: false,
|
4063
|
-
# max_speaker_labels: 1,
|
4064
|
-
# channel_identification: false,
|
4065
|
-
# show_alternatives: false,
|
4066
|
-
# max_alternatives: 1,
|
4067
|
-
# vocabulary_name: "VocabularyName",
|
4068
|
-
# },
|
4069
|
-
# content_identification_type: "PHI", # accepts PHI
|
4070
|
-
# specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE
|
4071
|
-
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
4072
|
-
# tags: [
|
4073
|
-
# {
|
4074
|
-
# key: "TagKey", # required
|
4075
|
-
# value: "TagValue", # required
|
4076
|
-
# },
|
4077
|
-
# ],
|
4078
|
-
# }
|
4079
|
-
#
|
4080
3472
|
# @!attribute [rw] medical_transcription_job_name
|
4081
3473
|
# A unique name, chosen by you, for your medical transcription job.
|
4082
3474
|
# The name that you specify is also used as the default name of your
|
@@ -4321,68 +3713,6 @@ module Aws::TranscribeService
|
|
4321
3713
|
include Aws::Structure
|
4322
3714
|
end
|
4323
3715
|
|
4324
|
-
# @note When making an API call, you may pass StartTranscriptionJobRequest
|
4325
|
-
# data as a hash:
|
4326
|
-
#
|
4327
|
-
# {
|
4328
|
-
# transcription_job_name: "TranscriptionJobName", # required
|
4329
|
-
# language_code: "af-ZA", # accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
4330
|
-
# media_sample_rate_hertz: 1,
|
4331
|
-
# media_format: "mp3", # accepts mp3, mp4, wav, flac, ogg, amr, webm
|
4332
|
-
# media: { # required
|
4333
|
-
# media_file_uri: "Uri",
|
4334
|
-
# redacted_media_file_uri: "Uri",
|
4335
|
-
# },
|
4336
|
-
# output_bucket_name: "OutputBucketName",
|
4337
|
-
# output_key: "OutputKey",
|
4338
|
-
# output_encryption_kms_key_id: "KMSKeyId",
|
4339
|
-
# kms_encryption_context: {
|
4340
|
-
# "NonEmptyString" => "NonEmptyString",
|
4341
|
-
# },
|
4342
|
-
# settings: {
|
4343
|
-
# vocabulary_name: "VocabularyName",
|
4344
|
-
# show_speaker_labels: false,
|
4345
|
-
# max_speaker_labels: 1,
|
4346
|
-
# channel_identification: false,
|
4347
|
-
# show_alternatives: false,
|
4348
|
-
# max_alternatives: 1,
|
4349
|
-
# vocabulary_filter_name: "VocabularyFilterName",
|
4350
|
-
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
4351
|
-
# },
|
4352
|
-
# model_settings: {
|
4353
|
-
# language_model_name: "ModelName",
|
4354
|
-
# },
|
4355
|
-
# job_execution_settings: {
|
4356
|
-
# allow_deferred_execution: false,
|
4357
|
-
# data_access_role_arn: "DataAccessRoleArn",
|
4358
|
-
# },
|
4359
|
-
# content_redaction: {
|
4360
|
-
# redaction_type: "PII", # required, accepts PII
|
4361
|
-
# redaction_output: "redacted", # required, accepts redacted, redacted_and_unredacted
|
4362
|
-
# pii_entity_types: ["BANK_ACCOUNT_NUMBER"], # accepts BANK_ACCOUNT_NUMBER, BANK_ROUTING, CREDIT_DEBIT_NUMBER, CREDIT_DEBIT_CVV, CREDIT_DEBIT_EXPIRY, PIN, EMAIL, ADDRESS, NAME, PHONE, SSN, ALL
|
4363
|
-
# },
|
4364
|
-
# identify_language: false,
|
4365
|
-
# identify_multiple_languages: false,
|
4366
|
-
# language_options: ["af-ZA"], # accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
4367
|
-
# subtitles: {
|
4368
|
-
# formats: ["vtt"], # accepts vtt, srt
|
4369
|
-
# output_start_index: 1,
|
4370
|
-
# },
|
4371
|
-
# tags: [
|
4372
|
-
# {
|
4373
|
-
# key: "TagKey", # required
|
4374
|
-
# value: "TagValue", # required
|
4375
|
-
# },
|
4376
|
-
# ],
|
4377
|
-
# language_id_settings: {
|
4378
|
-
# "af-ZA" => {
|
4379
|
-
# vocabulary_name: "VocabularyName",
|
4380
|
-
# vocabulary_filter_name: "VocabularyFilterName",
|
4381
|
-
# language_model_name: "ModelName",
|
4382
|
-
# },
|
4383
|
-
# },
|
4384
|
-
# }
|
4385
|
-
#
|
4386
3716
|
# @!attribute [rw] transcription_job_name
|
4387
3717
|
# A unique name, chosen by you, for your transcription job. The name
|
4388
3718
|
# that you specify is also used as the default name of your
|
@@ -4774,14 +4104,6 @@ module Aws::TranscribeService
|
|
4774
4104
|
# Note that your subtitle files are placed in the same location as your
|
4775
4105
|
# transcription output.
|
4776
4106
|
#
|
4777
|
-
# @note When making an API call, you may pass Subtitles
|
4778
|
-
# data as a hash:
|
4779
|
-
#
|
4780
|
-
# {
|
4781
|
-
# formats: ["vtt"], # accepts vtt, srt
|
4782
|
-
# output_start_index: 1,
|
4783
|
-
# }
|
4784
|
-
#
|
4785
4107
|
# @!attribute [rw] formats
|
4786
4108
|
# Specify the output format for your subtitle file; if you select both
|
4787
4109
|
# WebVTT (`vtt`) and SubRip (`srt`) formats, two output files are
|
@@ -4869,14 +4191,6 @@ module Aws::TranscribeService
|
|
4869
4191
|
#
|
4870
4192
|
# [1]: https://docs.aws.amazon.com/transcribe/latest/dg/tagging.html
|
4871
4193
|
#
|
4872
|
-
# @note When making an API call, you may pass Tag
|
4873
|
-
# data as a hash:
|
4874
|
-
#
|
4875
|
-
# {
|
4876
|
-
# key: "TagKey", # required
|
4877
|
-
# value: "TagValue", # required
|
4878
|
-
# }
|
4879
|
-
#
|
4880
4194
|
# @!attribute [rw] key
|
4881
4195
|
# The first part of a key:value pair that forms a tag associated with
|
4882
4196
|
# a given resource. For example, in the tag `Department:Sales`, the
|
@@ -4902,19 +4216,6 @@ module Aws::TranscribeService
|
|
4902
4216
|
include Aws::Structure
|
4903
4217
|
end
|
4904
4218
|
|
4905
|
-
# @note When making an API call, you may pass TagResourceRequest
|
4906
|
-
# data as a hash:
|
4907
|
-
#
|
4908
|
-
# {
|
4909
|
-
# resource_arn: "TranscribeArn", # required
|
4910
|
-
# tags: [ # required
|
4911
|
-
# {
|
4912
|
-
# key: "TagKey", # required
|
4913
|
-
# value: "TagValue", # required
|
4914
|
-
# },
|
4915
|
-
# ],
|
4916
|
-
# }
|
4917
|
-
#
|
4918
4219
|
# @!attribute [rw] resource_arn
|
4919
4220
|
# The Amazon Resource Name (ARN) of the resource you want to tag. ARNs
|
4920
4221
|
# have the format
|
@@ -5029,28 +4330,6 @@ module Aws::TranscribeService
|
|
5029
4330
|
# [1]: https://docs.aws.amazon.com/transcribe/latest/dg/tca-categories-batch.html#tca-rules-batch
|
5030
4331
|
# [2]: https://docs.aws.amazon.com/transcribe/latest/dg/tca-categories-stream.html#tca-rules-stream
|
5031
4332
|
#
|
5032
|
-
# @note When making an API call, you may pass TranscriptFilter
|
5033
|
-
# data as a hash:
|
5034
|
-
#
|
5035
|
-
# {
|
5036
|
-
# transcript_filter_type: "EXACT", # required, accepts EXACT
|
5037
|
-
# absolute_time_range: {
|
5038
|
-
# start_time: 1,
|
5039
|
-
# end_time: 1,
|
5040
|
-
# first: 1,
|
5041
|
-
# last: 1,
|
5042
|
-
# },
|
5043
|
-
# relative_time_range: {
|
5044
|
-
# start_percentage: 1,
|
5045
|
-
# end_percentage: 1,
|
5046
|
-
# first: 1,
|
5047
|
-
# last: 1,
|
5048
|
-
# },
|
5049
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
5050
|
-
# negate: false,
|
5051
|
-
# targets: ["NonEmptyString"], # required
|
5052
|
-
# }
|
5053
|
-
#
|
5054
4333
|
# @!attribute [rw] transcript_filter_type
|
5055
4334
|
# Flag the presence or absence of an exact match to the phrases that
|
5056
4335
|
# you specify. For example, if you specify the phrase "speak to a
|
@@ -5461,14 +4740,6 @@ module Aws::TranscribeService
|
|
5461
4740
|
include Aws::Structure
|
5462
4741
|
end
|
5463
4742
|
|
5464
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
5465
|
-
# data as a hash:
|
5466
|
-
#
|
5467
|
-
# {
|
5468
|
-
# resource_arn: "TranscribeArn", # required
|
5469
|
-
# tag_keys: ["TagKey"], # required
|
5470
|
-
# }
|
5471
|
-
#
|
5472
4743
|
# @!attribute [rw] resource_arn
|
5473
4744
|
# The Amazon Resource Name (ARN) of the Amazon Transcribe resource you
|
5474
4745
|
# want to remove tags from. ARNs have the format
|
@@ -5500,86 +4771,6 @@ module Aws::TranscribeService
|
|
5500
4771
|
#
|
5501
4772
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
5502
4773
|
|
5503
|
-
# @note When making an API call, you may pass UpdateCallAnalyticsCategoryRequest
|
5504
|
-
# data as a hash:
|
5505
|
-
#
|
5506
|
-
# {
|
5507
|
-
# category_name: "CategoryName", # required
|
5508
|
-
# rules: [ # required
|
5509
|
-
# {
|
5510
|
-
# non_talk_time_filter: {
|
5511
|
-
# threshold: 1,
|
5512
|
-
# absolute_time_range: {
|
5513
|
-
# start_time: 1,
|
5514
|
-
# end_time: 1,
|
5515
|
-
# first: 1,
|
5516
|
-
# last: 1,
|
5517
|
-
# },
|
5518
|
-
# relative_time_range: {
|
5519
|
-
# start_percentage: 1,
|
5520
|
-
# end_percentage: 1,
|
5521
|
-
# first: 1,
|
5522
|
-
# last: 1,
|
5523
|
-
# },
|
5524
|
-
# negate: false,
|
5525
|
-
# },
|
5526
|
-
# interruption_filter: {
|
5527
|
-
# threshold: 1,
|
5528
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
5529
|
-
# absolute_time_range: {
|
5530
|
-
# start_time: 1,
|
5531
|
-
# end_time: 1,
|
5532
|
-
# first: 1,
|
5533
|
-
# last: 1,
|
5534
|
-
# },
|
5535
|
-
# relative_time_range: {
|
5536
|
-
# start_percentage: 1,
|
5537
|
-
# end_percentage: 1,
|
5538
|
-
# first: 1,
|
5539
|
-
# last: 1,
|
5540
|
-
# },
|
5541
|
-
# negate: false,
|
5542
|
-
# },
|
5543
|
-
# transcript_filter: {
|
5544
|
-
# transcript_filter_type: "EXACT", # required, accepts EXACT
|
5545
|
-
# absolute_time_range: {
|
5546
|
-
# start_time: 1,
|
5547
|
-
# end_time: 1,
|
5548
|
-
# first: 1,
|
5549
|
-
# last: 1,
|
5550
|
-
# },
|
5551
|
-
# relative_time_range: {
|
5552
|
-
# start_percentage: 1,
|
5553
|
-
# end_percentage: 1,
|
5554
|
-
# first: 1,
|
5555
|
-
# last: 1,
|
5556
|
-
# },
|
5557
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
5558
|
-
# negate: false,
|
5559
|
-
# targets: ["NonEmptyString"], # required
|
5560
|
-
# },
|
5561
|
-
# sentiment_filter: {
|
5562
|
-
# sentiments: ["POSITIVE"], # required, accepts POSITIVE, NEGATIVE, NEUTRAL, MIXED
|
5563
|
-
# absolute_time_range: {
|
5564
|
-
# start_time: 1,
|
5565
|
-
# end_time: 1,
|
5566
|
-
# first: 1,
|
5567
|
-
# last: 1,
|
5568
|
-
# },
|
5569
|
-
# relative_time_range: {
|
5570
|
-
# start_percentage: 1,
|
5571
|
-
# end_percentage: 1,
|
5572
|
-
# first: 1,
|
5573
|
-
# last: 1,
|
5574
|
-
# },
|
5575
|
-
# participant_role: "AGENT", # accepts AGENT, CUSTOMER
|
5576
|
-
# negate: false,
|
5577
|
-
# },
|
5578
|
-
# },
|
5579
|
-
# ],
|
5580
|
-
# input_type: "REAL_TIME", # accepts REAL_TIME, POST_CALL
|
5581
|
-
# }
|
5582
|
-
#
|
5583
4774
|
# @!attribute [rw] category_name
|
5584
4775
|
# The name of the Call Analytics category you want to update. Category
|
5585
4776
|
# names are case sensitive.
|
@@ -5622,15 +4813,6 @@ module Aws::TranscribeService
|
|
5622
4813
|
include Aws::Structure
|
5623
4814
|
end
|
5624
4815
|
|
5625
|
-
# @note When making an API call, you may pass UpdateMedicalVocabularyRequest
|
5626
|
-
# data as a hash:
|
5627
|
-
#
|
5628
|
-
# {
|
5629
|
-
# vocabulary_name: "VocabularyName", # required
|
5630
|
-
# language_code: "af-ZA", # required, accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
5631
|
-
# vocabulary_file_uri: "Uri", # required
|
5632
|
-
# }
|
5633
|
-
#
|
5634
4816
|
# @!attribute [rw] vocabulary_name
|
5635
4817
|
# The name of the custom medical vocabulary you want to update. Custom
|
5636
4818
|
# medical vocabulary names are case sensitive.
|
@@ -5697,15 +4879,6 @@ module Aws::TranscribeService
|
|
5697
4879
|
include Aws::Structure
|
5698
4880
|
end
|
5699
4881
|
|
5700
|
-
# @note When making an API call, you may pass UpdateVocabularyFilterRequest
|
5701
|
-
# data as a hash:
|
5702
|
-
#
|
5703
|
-
# {
|
5704
|
-
# vocabulary_filter_name: "VocabularyFilterName", # required
|
5705
|
-
# words: ["Word"],
|
5706
|
-
# vocabulary_filter_file_uri: "Uri",
|
5707
|
-
# }
|
5708
|
-
#
|
5709
4882
|
# @!attribute [rw] vocabulary_filter_name
|
5710
4883
|
# The name of the custom vocabulary filter you want to update. Custom
|
5711
4884
|
# vocabulary filter names are case sensitive.
|
@@ -5782,16 +4955,6 @@ module Aws::TranscribeService
|
|
5782
4955
|
include Aws::Structure
|
5783
4956
|
end
|
5784
4957
|
|
5785
|
-
# @note When making an API call, you may pass UpdateVocabularyRequest
|
5786
|
-
# data as a hash:
|
5787
|
-
#
|
5788
|
-
# {
|
5789
|
-
# vocabulary_name: "VocabularyName", # required
|
5790
|
-
# language_code: "af-ZA", # required, accepts af-ZA, ar-AE, ar-SA, da-DK, de-CH, de-DE, en-AB, en-AU, en-GB, en-IE, en-IN, en-US, en-WL, es-ES, es-US, fa-IR, fr-CA, fr-FR, he-IL, hi-IN, id-ID, it-IT, ja-JP, ko-KR, ms-MY, nl-NL, pt-BR, pt-PT, ru-RU, ta-IN, te-IN, tr-TR, zh-CN, zh-TW, th-TH, en-ZA, en-NZ
|
5791
|
-
# phrases: ["Phrase"],
|
5792
|
-
# vocabulary_file_uri: "Uri",
|
5793
|
-
# }
|
5794
|
-
#
|
5795
4958
|
# @!attribute [rw] vocabulary_name
|
5796
4959
|
# The name of the custom vocabulary you want to update. Custom
|
5797
4960
|
# vocabulary names are case sensitive.
|