@aws-sdk/client-transcribe 3.325.0 → 3.327.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +87 -0
- package/dist-types/commands/CreateLanguageModelCommand.d.ts +14 -0
- package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +10 -0
- package/dist-types/commands/CreateVocabularyCommand.d.ts +10 -0
- package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +8 -0
- package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLanguageModelCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +4 -0
- package/dist-types/commands/DescribeLanguageModelCommand.d.ts +20 -0
- package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +87 -0
- package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +55 -0
- package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +40 -0
- package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +11 -0
- package/dist-types/commands/GetTranscriptionJobCommand.d.ts +82 -0
- package/dist-types/commands/GetVocabularyCommand.d.ts +11 -0
- package/dist-types/commands/GetVocabularyFilterCommand.d.ts +9 -0
- package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +90 -0
- package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +18 -0
- package/dist-types/commands/ListLanguageModelsCommand.d.ts +23 -0
- package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +22 -0
- package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +15 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +38 -0
- package/dist-types/commands/ListVocabulariesCommand.d.ts +15 -0
- package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +13 -0
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +55 -0
- package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +40 -0
- package/dist-types/commands/StartTranscriptionJobCommand.d.ts +82 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +87 -0
- package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +9 -0
- package/dist-types/commands/UpdateVocabularyCommand.d.ts +9 -0
- package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +8 -0
- package/package.json +7 -7
|
@@ -40,6 +40,86 @@ export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobRes
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new GetTranscriptionJobCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // GetTranscriptionJobResponse
|
|
44
|
+
* // TranscriptionJob: { // TranscriptionJob
|
|
45
|
+
* // TranscriptionJobName: "STRING_VALUE",
|
|
46
|
+
* // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
|
|
47
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
48
|
+
* // MediaSampleRateHertz: Number("int"),
|
|
49
|
+
* // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
|
|
50
|
+
* // Media: { // Media
|
|
51
|
+
* // MediaFileUri: "STRING_VALUE",
|
|
52
|
+
* // RedactedMediaFileUri: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // Transcript: { // Transcript
|
|
55
|
+
* // TranscriptFileUri: "STRING_VALUE",
|
|
56
|
+
* // RedactedTranscriptFileUri: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
60
|
+
* // CompletionTime: new Date("TIMESTAMP"),
|
|
61
|
+
* // FailureReason: "STRING_VALUE",
|
|
62
|
+
* // Settings: { // Settings
|
|
63
|
+
* // VocabularyName: "STRING_VALUE",
|
|
64
|
+
* // ShowSpeakerLabels: true || false,
|
|
65
|
+
* // MaxSpeakerLabels: Number("int"),
|
|
66
|
+
* // ChannelIdentification: true || false,
|
|
67
|
+
* // ShowAlternatives: true || false,
|
|
68
|
+
* // MaxAlternatives: Number("int"),
|
|
69
|
+
* // VocabularyFilterName: "STRING_VALUE",
|
|
70
|
+
* // VocabularyFilterMethod: "remove" || "mask" || "tag",
|
|
71
|
+
* // },
|
|
72
|
+
* // ModelSettings: { // ModelSettings
|
|
73
|
+
* // LanguageModelName: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // JobExecutionSettings: { // JobExecutionSettings
|
|
76
|
+
* // AllowDeferredExecution: true || false,
|
|
77
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // ContentRedaction: { // ContentRedaction
|
|
80
|
+
* // RedactionType: "PII", // required
|
|
81
|
+
* // RedactionOutput: "redacted" || "redacted_and_unredacted", // required
|
|
82
|
+
* // PiiEntityTypes: [ // PiiEntityTypes
|
|
83
|
+
* // "BANK_ACCOUNT_NUMBER" || "BANK_ROUTING" || "CREDIT_DEBIT_NUMBER" || "CREDIT_DEBIT_CVV" || "CREDIT_DEBIT_EXPIRY" || "PIN" || "EMAIL" || "ADDRESS" || "NAME" || "PHONE" || "SSN" || "ALL",
|
|
84
|
+
* // ],
|
|
85
|
+
* // },
|
|
86
|
+
* // IdentifyLanguage: true || false,
|
|
87
|
+
* // IdentifyMultipleLanguages: true || false,
|
|
88
|
+
* // LanguageOptions: [ // LanguageOptions
|
|
89
|
+
* // "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" || "vi-VN" || "sv-SE",
|
|
90
|
+
* // ],
|
|
91
|
+
* // IdentifiedLanguageScore: Number("float"),
|
|
92
|
+
* // LanguageCodes: [ // LanguageCodeList
|
|
93
|
+
* // { // LanguageCodeItem
|
|
94
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
95
|
+
* // DurationInSeconds: Number("float"),
|
|
96
|
+
* // },
|
|
97
|
+
* // ],
|
|
98
|
+
* // Tags: [ // TagList
|
|
99
|
+
* // { // Tag
|
|
100
|
+
* // Key: "STRING_VALUE", // required
|
|
101
|
+
* // Value: "STRING_VALUE", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // ],
|
|
104
|
+
* // Subtitles: { // SubtitlesOutput
|
|
105
|
+
* // Formats: [ // SubtitleFormats
|
|
106
|
+
* // "vtt" || "srt",
|
|
107
|
+
* // ],
|
|
108
|
+
* // SubtitleFileUris: [ // SubtitleFileUris
|
|
109
|
+
* // "STRING_VALUE",
|
|
110
|
+
* // ],
|
|
111
|
+
* // OutputStartIndex: Number("int"),
|
|
112
|
+
* // },
|
|
113
|
+
* // LanguageIdSettings: { // LanguageIdSettingsMap
|
|
114
|
+
* // "<keys>": { // LanguageIdSettings
|
|
115
|
+
* // VocabularyName: "STRING_VALUE",
|
|
116
|
+
* // VocabularyFilterName: "STRING_VALUE",
|
|
117
|
+
* // LanguageModelName: "STRING_VALUE",
|
|
118
|
+
* // },
|
|
119
|
+
* // },
|
|
120
|
+
* // },
|
|
121
|
+
* // };
|
|
122
|
+
*
|
|
43
123
|
* ```
|
|
44
124
|
*
|
|
45
125
|
* @param GetTranscriptionJobCommandInput - {@link GetTranscriptionJobCommandInput}
|
|
@@ -66,6 +146,8 @@ export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobRes
|
|
|
66
146
|
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
67
147
|
* your request again.</p>
|
|
68
148
|
*
|
|
149
|
+
* @throws {@link TranscribeServiceException}
|
|
150
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
69
151
|
*
|
|
70
152
|
*/
|
|
71
153
|
export declare class GetTranscriptionJobCommand extends $Command<GetTranscriptionJobCommandInput, GetTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -37,6 +37,15 @@ export interface GetVocabularyCommandOutput extends GetVocabularyResponse, __Met
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new GetVocabularyCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // GetVocabularyResponse
|
|
41
|
+
* // VocabularyName: "STRING_VALUE",
|
|
42
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
43
|
+
* // VocabularyState: "PENDING" || "READY" || "FAILED",
|
|
44
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // FailureReason: "STRING_VALUE",
|
|
46
|
+
* // DownloadUri: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
40
49
|
* ```
|
|
41
50
|
*
|
|
42
51
|
* @param GetVocabularyCommandInput - {@link GetVocabularyCommandInput}
|
|
@@ -63,6 +72,8 @@ export interface GetVocabularyCommandOutput extends GetVocabularyResponse, __Met
|
|
|
63
72
|
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
64
73
|
* your request again.</p>
|
|
65
74
|
*
|
|
75
|
+
* @throws {@link TranscribeServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
66
77
|
*
|
|
67
78
|
*/
|
|
68
79
|
export declare class GetVocabularyCommand extends $Command<GetVocabularyCommandInput, GetVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -32,6 +32,13 @@ export interface GetVocabularyFilterCommandOutput extends GetVocabularyFilterRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetVocabularyFilterCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetVocabularyFilterResponse
|
|
36
|
+
* // VocabularyFilterName: "STRING_VALUE",
|
|
37
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
38
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
39
|
+
* // DownloadUri: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
35
42
|
* ```
|
|
36
43
|
*
|
|
37
44
|
* @param GetVocabularyFilterCommandInput - {@link GetVocabularyFilterCommandInput}
|
|
@@ -58,6 +65,8 @@ export interface GetVocabularyFilterCommandOutput extends GetVocabularyFilterRes
|
|
|
58
65
|
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
59
66
|
* your request again.</p>
|
|
60
67
|
*
|
|
68
|
+
* @throws {@link TranscribeServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
61
70
|
*
|
|
62
71
|
*/
|
|
63
72
|
export declare class GetVocabularyFilterCommand extends $Command<GetVocabularyFilterCommandInput, GetVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -34,6 +34,94 @@ export interface ListCallAnalyticsCategoriesCommandOutput extends ListCallAnalyt
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListCallAnalyticsCategoriesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListCallAnalyticsCategoriesResponse
|
|
38
|
+
* // NextToken: "STRING_VALUE",
|
|
39
|
+
* // Categories: [ // CategoryPropertiesList
|
|
40
|
+
* // { // CategoryProperties
|
|
41
|
+
* // CategoryName: "STRING_VALUE",
|
|
42
|
+
* // Rules: [ // RuleList
|
|
43
|
+
* // { // Rule Union: only one key present
|
|
44
|
+
* // NonTalkTimeFilter: { // NonTalkTimeFilter
|
|
45
|
+
* // Threshold: Number("long"),
|
|
46
|
+
* // AbsoluteTimeRange: { // AbsoluteTimeRange
|
|
47
|
+
* // StartTime: Number("long"),
|
|
48
|
+
* // EndTime: Number("long"),
|
|
49
|
+
* // First: Number("long"),
|
|
50
|
+
* // Last: Number("long"),
|
|
51
|
+
* // },
|
|
52
|
+
* // RelativeTimeRange: { // RelativeTimeRange
|
|
53
|
+
* // StartPercentage: Number("int"),
|
|
54
|
+
* // EndPercentage: Number("int"),
|
|
55
|
+
* // First: Number("int"),
|
|
56
|
+
* // Last: Number("int"),
|
|
57
|
+
* // },
|
|
58
|
+
* // Negate: true || false,
|
|
59
|
+
* // },
|
|
60
|
+
* // InterruptionFilter: { // InterruptionFilter
|
|
61
|
+
* // Threshold: Number("long"),
|
|
62
|
+
* // ParticipantRole: "AGENT" || "CUSTOMER",
|
|
63
|
+
* // AbsoluteTimeRange: {
|
|
64
|
+
* // StartTime: Number("long"),
|
|
65
|
+
* // EndTime: Number("long"),
|
|
66
|
+
* // First: Number("long"),
|
|
67
|
+
* // Last: Number("long"),
|
|
68
|
+
* // },
|
|
69
|
+
* // RelativeTimeRange: {
|
|
70
|
+
* // StartPercentage: Number("int"),
|
|
71
|
+
* // EndPercentage: Number("int"),
|
|
72
|
+
* // First: Number("int"),
|
|
73
|
+
* // Last: Number("int"),
|
|
74
|
+
* // },
|
|
75
|
+
* // Negate: true || false,
|
|
76
|
+
* // },
|
|
77
|
+
* // TranscriptFilter: { // TranscriptFilter
|
|
78
|
+
* // TranscriptFilterType: "EXACT", // required
|
|
79
|
+
* // AbsoluteTimeRange: {
|
|
80
|
+
* // StartTime: Number("long"),
|
|
81
|
+
* // EndTime: Number("long"),
|
|
82
|
+
* // First: Number("long"),
|
|
83
|
+
* // Last: Number("long"),
|
|
84
|
+
* // },
|
|
85
|
+
* // RelativeTimeRange: {
|
|
86
|
+
* // StartPercentage: Number("int"),
|
|
87
|
+
* // EndPercentage: Number("int"),
|
|
88
|
+
* // First: Number("int"),
|
|
89
|
+
* // Last: Number("int"),
|
|
90
|
+
* // },
|
|
91
|
+
* // ParticipantRole: "AGENT" || "CUSTOMER",
|
|
92
|
+
* // Negate: true || false,
|
|
93
|
+
* // Targets: [ // StringTargetList // required
|
|
94
|
+
* // "STRING_VALUE",
|
|
95
|
+
* // ],
|
|
96
|
+
* // },
|
|
97
|
+
* // SentimentFilter: { // SentimentFilter
|
|
98
|
+
* // Sentiments: [ // SentimentValueList // required
|
|
99
|
+
* // "POSITIVE" || "NEGATIVE" || "NEUTRAL" || "MIXED",
|
|
100
|
+
* // ],
|
|
101
|
+
* // AbsoluteTimeRange: {
|
|
102
|
+
* // StartTime: Number("long"),
|
|
103
|
+
* // EndTime: Number("long"),
|
|
104
|
+
* // First: Number("long"),
|
|
105
|
+
* // Last: Number("long"),
|
|
106
|
+
* // },
|
|
107
|
+
* // RelativeTimeRange: {
|
|
108
|
+
* // StartPercentage: Number("int"),
|
|
109
|
+
* // EndPercentage: Number("int"),
|
|
110
|
+
* // First: Number("int"),
|
|
111
|
+
* // Last: Number("int"),
|
|
112
|
+
* // },
|
|
113
|
+
* // ParticipantRole: "AGENT" || "CUSTOMER",
|
|
114
|
+
* // Negate: true || false,
|
|
115
|
+
* // },
|
|
116
|
+
* // },
|
|
117
|
+
* // ],
|
|
118
|
+
* // CreateTime: new Date("TIMESTAMP"),
|
|
119
|
+
* // LastUpdateTime: new Date("TIMESTAMP"),
|
|
120
|
+
* // InputType: "REAL_TIME" || "POST_CALL",
|
|
121
|
+
* // },
|
|
122
|
+
* // ],
|
|
123
|
+
* // };
|
|
124
|
+
*
|
|
37
125
|
* ```
|
|
38
126
|
*
|
|
39
127
|
* @param ListCallAnalyticsCategoriesCommandInput - {@link ListCallAnalyticsCategoriesCommandInput}
|
|
@@ -56,6 +144,8 @@ export interface ListCallAnalyticsCategoriesCommandOutput extends ListCallAnalyt
|
|
|
56
144
|
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
57
145
|
* retrying your request, or use a smaller file and try your request again.</p>
|
|
58
146
|
*
|
|
147
|
+
* @throws {@link TranscribeServiceException}
|
|
148
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
59
149
|
*
|
|
60
150
|
*/
|
|
61
151
|
export declare class ListCallAnalyticsCategoriesCommand extends $Command<ListCallAnalyticsCategoriesCommandInput, ListCallAnalyticsCategoriesCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -36,6 +36,22 @@ export interface ListCallAnalyticsJobsCommandOutput extends ListCallAnalyticsJob
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListCallAnalyticsJobsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListCallAnalyticsJobsResponse
|
|
40
|
+
* // Status: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
|
|
41
|
+
* // NextToken: "STRING_VALUE",
|
|
42
|
+
* // CallAnalyticsJobSummaries: [ // CallAnalyticsJobSummaries
|
|
43
|
+
* // { // CallAnalyticsJobSummary
|
|
44
|
+
* // CallAnalyticsJobName: "STRING_VALUE",
|
|
45
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // CompletionTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
49
|
+
* // CallAnalyticsJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
|
|
50
|
+
* // FailureReason: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
39
55
|
* ```
|
|
40
56
|
*
|
|
41
57
|
* @param ListCallAnalyticsJobsCommandInput - {@link ListCallAnalyticsJobsCommandInput}
|
|
@@ -58,6 +74,8 @@ export interface ListCallAnalyticsJobsCommandOutput extends ListCallAnalyticsJob
|
|
|
58
74
|
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
59
75
|
* retrying your request, or use a smaller file and try your request again.</p>
|
|
60
76
|
*
|
|
77
|
+
* @throws {@link TranscribeServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
61
79
|
*
|
|
62
80
|
*/
|
|
63
81
|
export declare class ListCallAnalyticsJobsCommand extends $Command<ListCallAnalyticsJobsCommandInput, ListCallAnalyticsJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -36,6 +36,27 @@ export interface ListLanguageModelsCommandOutput extends ListLanguageModelsRespo
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListLanguageModelsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListLanguageModelsResponse
|
|
40
|
+
* // NextToken: "STRING_VALUE",
|
|
41
|
+
* // Models: [ // Models
|
|
42
|
+
* // { // LanguageModel
|
|
43
|
+
* // ModelName: "STRING_VALUE",
|
|
44
|
+
* // CreateTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // LanguageCode: "en-US" || "hi-IN" || "es-US" || "en-GB" || "en-AU" || "de-DE" || "ja-JP",
|
|
47
|
+
* // BaseModelName: "NarrowBand" || "WideBand",
|
|
48
|
+
* // ModelStatus: "IN_PROGRESS" || "FAILED" || "COMPLETED",
|
|
49
|
+
* // UpgradeAvailability: true || false,
|
|
50
|
+
* // FailureReason: "STRING_VALUE",
|
|
51
|
+
* // InputDataConfig: { // InputDataConfig
|
|
52
|
+
* // S3Uri: "STRING_VALUE", // required
|
|
53
|
+
* // TuningDataS3Uri: "STRING_VALUE",
|
|
54
|
+
* // DataAccessRoleArn: "STRING_VALUE", // required
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
39
60
|
* ```
|
|
40
61
|
*
|
|
41
62
|
* @param ListLanguageModelsCommandInput - {@link ListLanguageModelsCommandInput}
|
|
@@ -58,6 +79,8 @@ export interface ListLanguageModelsCommandOutput extends ListLanguageModelsRespo
|
|
|
58
79
|
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
59
80
|
* retrying your request, or use a smaller file and try your request again.</p>
|
|
60
81
|
*
|
|
82
|
+
* @throws {@link TranscribeServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
61
84
|
*
|
|
62
85
|
*/
|
|
63
86
|
export declare class ListLanguageModelsCommand extends $Command<ListLanguageModelsCommandInput, ListLanguageModelsCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -36,6 +36,26 @@ export interface ListMedicalTranscriptionJobsCommandOutput extends ListMedicalTr
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListMedicalTranscriptionJobsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListMedicalTranscriptionJobsResponse
|
|
40
|
+
* // Status: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
|
|
41
|
+
* // NextToken: "STRING_VALUE",
|
|
42
|
+
* // MedicalTranscriptionJobSummaries: [ // MedicalTranscriptionJobSummaries
|
|
43
|
+
* // { // MedicalTranscriptionJobSummary
|
|
44
|
+
* // MedicalTranscriptionJobName: "STRING_VALUE",
|
|
45
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // CompletionTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
49
|
+
* // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
|
|
50
|
+
* // FailureReason: "STRING_VALUE",
|
|
51
|
+
* // OutputLocationType: "CUSTOMER_BUCKET" || "SERVICE_BUCKET",
|
|
52
|
+
* // Specialty: "PRIMARYCARE",
|
|
53
|
+
* // ContentIdentificationType: "PHI",
|
|
54
|
+
* // Type: "CONVERSATION" || "DICTATION",
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
39
59
|
* ```
|
|
40
60
|
*
|
|
41
61
|
* @param ListMedicalTranscriptionJobsCommandInput - {@link ListMedicalTranscriptionJobsCommandInput}
|
|
@@ -58,6 +78,8 @@ export interface ListMedicalTranscriptionJobsCommandOutput extends ListMedicalTr
|
|
|
58
78
|
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
59
79
|
* retrying your request, or use a smaller file and try your request again.</p>
|
|
60
80
|
*
|
|
81
|
+
* @throws {@link TranscribeServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
61
83
|
*
|
|
62
84
|
*/
|
|
63
85
|
export declare class ListMedicalTranscriptionJobsCommand extends $Command<ListMedicalTranscriptionJobsCommandInput, ListMedicalTranscriptionJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -36,6 +36,19 @@ export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabul
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListMedicalVocabulariesCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListMedicalVocabulariesResponse
|
|
40
|
+
* // Status: "PENDING" || "READY" || "FAILED",
|
|
41
|
+
* // NextToken: "STRING_VALUE",
|
|
42
|
+
* // Vocabularies: [ // Vocabularies
|
|
43
|
+
* // { // VocabularyInfo
|
|
44
|
+
* // VocabularyName: "STRING_VALUE",
|
|
45
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
46
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // VocabularyState: "PENDING" || "READY" || "FAILED",
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
39
52
|
* ```
|
|
40
53
|
*
|
|
41
54
|
* @param ListMedicalVocabulariesCommandInput - {@link ListMedicalVocabulariesCommandInput}
|
|
@@ -58,6 +71,8 @@ export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabul
|
|
|
58
71
|
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
59
72
|
* retrying your request, or use a smaller file and try your request again.</p>
|
|
60
73
|
*
|
|
74
|
+
* @throws {@link TranscribeServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
61
76
|
*
|
|
62
77
|
*/
|
|
63
78
|
export declare class ListMedicalVocabulariesCommand extends $Command<ListMedicalVocabulariesCommandInput, ListMedicalVocabulariesCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -34,6 +34,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListTagsForResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListTagsForResourceResponse
|
|
38
|
+
* // ResourceArn: "STRING_VALUE",
|
|
39
|
+
* // Tags: [ // TagList
|
|
40
|
+
* // { // Tag
|
|
41
|
+
* // Key: "STRING_VALUE", // required
|
|
42
|
+
* // Value: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
37
47
|
* ```
|
|
38
48
|
*
|
|
39
49
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -60,6 +70,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
60
70
|
* <p>We can't find the requested resource. Check that the specified name is correct and try
|
|
61
71
|
* your request again.</p>
|
|
62
72
|
*
|
|
73
|
+
* @throws {@link TranscribeServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
63
75
|
*
|
|
64
76
|
*/
|
|
65
77
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -36,6 +36,42 @@ export interface ListTranscriptionJobsCommandOutput extends ListTranscriptionJob
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListTranscriptionJobsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListTranscriptionJobsResponse
|
|
40
|
+
* // Status: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
|
|
41
|
+
* // NextToken: "STRING_VALUE",
|
|
42
|
+
* // TranscriptionJobSummaries: [ // TranscriptionJobSummaries
|
|
43
|
+
* // { // TranscriptionJobSummary
|
|
44
|
+
* // TranscriptionJobName: "STRING_VALUE",
|
|
45
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // CompletionTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
49
|
+
* // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
|
|
50
|
+
* // FailureReason: "STRING_VALUE",
|
|
51
|
+
* // OutputLocationType: "CUSTOMER_BUCKET" || "SERVICE_BUCKET",
|
|
52
|
+
* // ContentRedaction: { // ContentRedaction
|
|
53
|
+
* // RedactionType: "PII", // required
|
|
54
|
+
* // RedactionOutput: "redacted" || "redacted_and_unredacted", // required
|
|
55
|
+
* // PiiEntityTypes: [ // PiiEntityTypes
|
|
56
|
+
* // "BANK_ACCOUNT_NUMBER" || "BANK_ROUTING" || "CREDIT_DEBIT_NUMBER" || "CREDIT_DEBIT_CVV" || "CREDIT_DEBIT_EXPIRY" || "PIN" || "EMAIL" || "ADDRESS" || "NAME" || "PHONE" || "SSN" || "ALL",
|
|
57
|
+
* // ],
|
|
58
|
+
* // },
|
|
59
|
+
* // ModelSettings: { // ModelSettings
|
|
60
|
+
* // LanguageModelName: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // IdentifyLanguage: true || false,
|
|
63
|
+
* // IdentifyMultipleLanguages: true || false,
|
|
64
|
+
* // IdentifiedLanguageScore: Number("float"),
|
|
65
|
+
* // LanguageCodes: [ // LanguageCodeList
|
|
66
|
+
* // { // LanguageCodeItem
|
|
67
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
68
|
+
* // DurationInSeconds: Number("float"),
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
39
75
|
* ```
|
|
40
76
|
*
|
|
41
77
|
* @param ListTranscriptionJobsCommandInput - {@link ListTranscriptionJobsCommandInput}
|
|
@@ -58,6 +94,8 @@ export interface ListTranscriptionJobsCommandOutput extends ListTranscriptionJob
|
|
|
58
94
|
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
59
95
|
* retrying your request, or use a smaller file and try your request again.</p>
|
|
60
96
|
*
|
|
97
|
+
* @throws {@link TranscribeServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
61
99
|
*
|
|
62
100
|
*/
|
|
63
101
|
export declare class ListTranscriptionJobsCommand extends $Command<ListTranscriptionJobsCommandInput, ListTranscriptionJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -36,6 +36,19 @@ export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse,
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListVocabulariesCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListVocabulariesResponse
|
|
40
|
+
* // Status: "PENDING" || "READY" || "FAILED",
|
|
41
|
+
* // NextToken: "STRING_VALUE",
|
|
42
|
+
* // Vocabularies: [ // Vocabularies
|
|
43
|
+
* // { // VocabularyInfo
|
|
44
|
+
* // VocabularyName: "STRING_VALUE",
|
|
45
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
46
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // VocabularyState: "PENDING" || "READY" || "FAILED",
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
39
52
|
* ```
|
|
40
53
|
*
|
|
41
54
|
* @param ListVocabulariesCommandInput - {@link ListVocabulariesCommandInput}
|
|
@@ -58,6 +71,8 @@ export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse,
|
|
|
58
71
|
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
59
72
|
* retrying your request, or use a smaller file and try your request again.</p>
|
|
60
73
|
*
|
|
74
|
+
* @throws {@link TranscribeServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
61
76
|
*
|
|
62
77
|
*/
|
|
63
78
|
export declare class ListVocabulariesCommand extends $Command<ListVocabulariesCommandInput, ListVocabulariesCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -35,6 +35,17 @@ export interface ListVocabularyFiltersCommandOutput extends ListVocabularyFilter
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListVocabularyFiltersCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListVocabularyFiltersResponse
|
|
39
|
+
* // NextToken: "STRING_VALUE",
|
|
40
|
+
* // VocabularyFilters: [ // VocabularyFilters
|
|
41
|
+
* // { // VocabularyFilterInfo
|
|
42
|
+
* // VocabularyFilterName: "STRING_VALUE",
|
|
43
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
44
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
38
49
|
* ```
|
|
39
50
|
*
|
|
40
51
|
* @param ListVocabularyFiltersCommandInput - {@link ListVocabularyFiltersCommandInput}
|
|
@@ -57,6 +68,8 @@ export interface ListVocabularyFiltersCommandOutput extends ListVocabularyFilter
|
|
|
57
68
|
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
58
69
|
* retrying your request, or use a smaller file and try your request again.</p>
|
|
59
70
|
*
|
|
71
|
+
* @throws {@link TranscribeServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
60
73
|
*
|
|
61
74
|
*/
|
|
62
75
|
export declare class ListVocabularyFiltersCommand extends $Command<ListVocabularyFiltersCommandInput, ListVocabularyFiltersCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -117,6 +117,59 @@ export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJo
|
|
|
117
117
|
* };
|
|
118
118
|
* const command = new StartCallAnalyticsJobCommand(input);
|
|
119
119
|
* const response = await client.send(command);
|
|
120
|
+
* // { // StartCallAnalyticsJobResponse
|
|
121
|
+
* // CallAnalyticsJob: { // CallAnalyticsJob
|
|
122
|
+
* // CallAnalyticsJobName: "STRING_VALUE",
|
|
123
|
+
* // CallAnalyticsJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
|
|
124
|
+
* // LanguageCode: "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" || "vi-VN" || "sv-SE",
|
|
125
|
+
* // MediaSampleRateHertz: Number("int"),
|
|
126
|
+
* // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
|
|
127
|
+
* // Media: { // Media
|
|
128
|
+
* // MediaFileUri: "STRING_VALUE",
|
|
129
|
+
* // RedactedMediaFileUri: "STRING_VALUE",
|
|
130
|
+
* // },
|
|
131
|
+
* // Transcript: { // Transcript
|
|
132
|
+
* // TranscriptFileUri: "STRING_VALUE",
|
|
133
|
+
* // RedactedTranscriptFileUri: "STRING_VALUE",
|
|
134
|
+
* // },
|
|
135
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
136
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
137
|
+
* // CompletionTime: new Date("TIMESTAMP"),
|
|
138
|
+
* // FailureReason: "STRING_VALUE",
|
|
139
|
+
* // DataAccessRoleArn: "STRING_VALUE",
|
|
140
|
+
* // IdentifiedLanguageScore: Number("float"),
|
|
141
|
+
* // Settings: { // CallAnalyticsJobSettings
|
|
142
|
+
* // VocabularyName: "STRING_VALUE",
|
|
143
|
+
* // VocabularyFilterName: "STRING_VALUE",
|
|
144
|
+
* // VocabularyFilterMethod: "remove" || "mask" || "tag",
|
|
145
|
+
* // LanguageModelName: "STRING_VALUE",
|
|
146
|
+
* // ContentRedaction: { // ContentRedaction
|
|
147
|
+
* // RedactionType: "PII", // required
|
|
148
|
+
* // RedactionOutput: "redacted" || "redacted_and_unredacted", // required
|
|
149
|
+
* // PiiEntityTypes: [ // PiiEntityTypes
|
|
150
|
+
* // "BANK_ACCOUNT_NUMBER" || "BANK_ROUTING" || "CREDIT_DEBIT_NUMBER" || "CREDIT_DEBIT_CVV" || "CREDIT_DEBIT_EXPIRY" || "PIN" || "EMAIL" || "ADDRESS" || "NAME" || "PHONE" || "SSN" || "ALL",
|
|
151
|
+
* // ],
|
|
152
|
+
* // },
|
|
153
|
+
* // LanguageOptions: [ // LanguageOptions
|
|
154
|
+
* // "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" || "vi-VN" || "sv-SE",
|
|
155
|
+
* // ],
|
|
156
|
+
* // LanguageIdSettings: { // LanguageIdSettingsMap
|
|
157
|
+
* // "<keys>": { // LanguageIdSettings
|
|
158
|
+
* // VocabularyName: "STRING_VALUE",
|
|
159
|
+
* // VocabularyFilterName: "STRING_VALUE",
|
|
160
|
+
* // LanguageModelName: "STRING_VALUE",
|
|
161
|
+
* // },
|
|
162
|
+
* // },
|
|
163
|
+
* // },
|
|
164
|
+
* // ChannelDefinitions: [ // ChannelDefinitions
|
|
165
|
+
* // { // ChannelDefinition
|
|
166
|
+
* // ChannelId: Number("int"),
|
|
167
|
+
* // ParticipantRole: "AGENT" || "CUSTOMER",
|
|
168
|
+
* // },
|
|
169
|
+
* // ],
|
|
170
|
+
* // },
|
|
171
|
+
* // };
|
|
172
|
+
*
|
|
120
173
|
* ```
|
|
121
174
|
*
|
|
122
175
|
* @param StartCallAnalyticsJobCommandInput - {@link StartCallAnalyticsJobCommandInput}
|
|
@@ -143,6 +196,8 @@ export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJo
|
|
|
143
196
|
* <p>You've either sent too many requests or your input file is too long. Wait before
|
|
144
197
|
* retrying your request, or use a smaller file and try your request again.</p>
|
|
145
198
|
*
|
|
199
|
+
* @throws {@link TranscribeServiceException}
|
|
200
|
+
* <p>Base exception class for all service exceptions from Transcribe service.</p>
|
|
146
201
|
*
|
|
147
202
|
*/
|
|
148
203
|
export declare class StartCallAnalyticsJobCommand extends $Command<StartCallAnalyticsJobCommandInput, StartCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
|