@aws-sdk/client-transcribe 3.325.0 → 3.326.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 (40) hide show
  1. package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +87 -0
  2. package/dist-types/commands/CreateLanguageModelCommand.d.ts +14 -0
  3. package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +10 -0
  4. package/dist-types/commands/CreateVocabularyCommand.d.ts +10 -0
  5. package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +8 -0
  6. package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteLanguageModelCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteVocabularyCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +4 -0
  14. package/dist-types/commands/DescribeLanguageModelCommand.d.ts +20 -0
  15. package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +87 -0
  16. package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +55 -0
  17. package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +40 -0
  18. package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +11 -0
  19. package/dist-types/commands/GetTranscriptionJobCommand.d.ts +82 -0
  20. package/dist-types/commands/GetVocabularyCommand.d.ts +11 -0
  21. package/dist-types/commands/GetVocabularyFilterCommand.d.ts +9 -0
  22. package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +90 -0
  23. package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +18 -0
  24. package/dist-types/commands/ListLanguageModelsCommand.d.ts +23 -0
  25. package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +22 -0
  26. package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +15 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  28. package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +38 -0
  29. package/dist-types/commands/ListVocabulariesCommand.d.ts +15 -0
  30. package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +13 -0
  31. package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +55 -0
  32. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +40 -0
  33. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +82 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  35. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  36. package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +87 -0
  37. package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +9 -0
  38. package/dist-types/commands/UpdateVocabularyCommand.d.ts +9 -0
  39. package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +8 -0
  40. package/package.json +3 -3
@@ -109,6 +109,44 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
109
109
  * };
110
110
  * const command = new StartMedicalTranscriptionJobCommand(input);
111
111
  * const response = await client.send(command);
112
+ * // { // StartMedicalTranscriptionJobResponse
113
+ * // MedicalTranscriptionJob: { // MedicalTranscriptionJob
114
+ * // MedicalTranscriptionJobName: "STRING_VALUE",
115
+ * // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
116
+ * // 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",
117
+ * // MediaSampleRateHertz: Number("int"),
118
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
119
+ * // Media: { // Media
120
+ * // MediaFileUri: "STRING_VALUE",
121
+ * // RedactedMediaFileUri: "STRING_VALUE",
122
+ * // },
123
+ * // Transcript: { // MedicalTranscript
124
+ * // TranscriptFileUri: "STRING_VALUE",
125
+ * // },
126
+ * // StartTime: new Date("TIMESTAMP"),
127
+ * // CreationTime: new Date("TIMESTAMP"),
128
+ * // CompletionTime: new Date("TIMESTAMP"),
129
+ * // FailureReason: "STRING_VALUE",
130
+ * // Settings: { // MedicalTranscriptionSetting
131
+ * // ShowSpeakerLabels: true || false,
132
+ * // MaxSpeakerLabels: Number("int"),
133
+ * // ChannelIdentification: true || false,
134
+ * // ShowAlternatives: true || false,
135
+ * // MaxAlternatives: Number("int"),
136
+ * // VocabularyName: "STRING_VALUE",
137
+ * // },
138
+ * // ContentIdentificationType: "PHI",
139
+ * // Specialty: "PRIMARYCARE",
140
+ * // Type: "CONVERSATION" || "DICTATION",
141
+ * // Tags: [ // TagList
142
+ * // { // Tag
143
+ * // Key: "STRING_VALUE", // required
144
+ * // Value: "STRING_VALUE", // required
145
+ * // },
146
+ * // ],
147
+ * // },
148
+ * // };
149
+ *
112
150
  * ```
113
151
  *
114
152
  * @param StartMedicalTranscriptionJobCommandInput - {@link StartMedicalTranscriptionJobCommandInput}
@@ -135,6 +173,8 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
135
173
  * <p>You've either sent too many requests or your input file is too long. Wait before
136
174
  * retrying your request, or use a smaller file and try your request again.</p>
137
175
  *
176
+ * @throws {@link TranscribeServiceException}
177
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
138
178
  *
139
179
  */
140
180
  export declare class StartMedicalTranscriptionJobCommand extends $Command<StartMedicalTranscriptionJobCommandInput, StartMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
@@ -126,6 +126,86 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
126
126
  * };
127
127
  * const command = new StartTranscriptionJobCommand(input);
128
128
  * const response = await client.send(command);
129
+ * // { // StartTranscriptionJobResponse
130
+ * // TranscriptionJob: { // TranscriptionJob
131
+ * // TranscriptionJobName: "STRING_VALUE",
132
+ * // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
133
+ * // 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",
134
+ * // MediaSampleRateHertz: Number("int"),
135
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
136
+ * // Media: { // Media
137
+ * // MediaFileUri: "STRING_VALUE",
138
+ * // RedactedMediaFileUri: "STRING_VALUE",
139
+ * // },
140
+ * // Transcript: { // Transcript
141
+ * // TranscriptFileUri: "STRING_VALUE",
142
+ * // RedactedTranscriptFileUri: "STRING_VALUE",
143
+ * // },
144
+ * // StartTime: new Date("TIMESTAMP"),
145
+ * // CreationTime: new Date("TIMESTAMP"),
146
+ * // CompletionTime: new Date("TIMESTAMP"),
147
+ * // FailureReason: "STRING_VALUE",
148
+ * // Settings: { // Settings
149
+ * // VocabularyName: "STRING_VALUE",
150
+ * // ShowSpeakerLabels: true || false,
151
+ * // MaxSpeakerLabels: Number("int"),
152
+ * // ChannelIdentification: true || false,
153
+ * // ShowAlternatives: true || false,
154
+ * // MaxAlternatives: Number("int"),
155
+ * // VocabularyFilterName: "STRING_VALUE",
156
+ * // VocabularyFilterMethod: "remove" || "mask" || "tag",
157
+ * // },
158
+ * // ModelSettings: { // ModelSettings
159
+ * // LanguageModelName: "STRING_VALUE",
160
+ * // },
161
+ * // JobExecutionSettings: { // JobExecutionSettings
162
+ * // AllowDeferredExecution: true || false,
163
+ * // DataAccessRoleArn: "STRING_VALUE",
164
+ * // },
165
+ * // ContentRedaction: { // ContentRedaction
166
+ * // RedactionType: "PII", // required
167
+ * // RedactionOutput: "redacted" || "redacted_and_unredacted", // required
168
+ * // PiiEntityTypes: [ // PiiEntityTypes
169
+ * // "BANK_ACCOUNT_NUMBER" || "BANK_ROUTING" || "CREDIT_DEBIT_NUMBER" || "CREDIT_DEBIT_CVV" || "CREDIT_DEBIT_EXPIRY" || "PIN" || "EMAIL" || "ADDRESS" || "NAME" || "PHONE" || "SSN" || "ALL",
170
+ * // ],
171
+ * // },
172
+ * // IdentifyLanguage: true || false,
173
+ * // IdentifyMultipleLanguages: true || false,
174
+ * // LanguageOptions: [ // LanguageOptions
175
+ * // "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",
176
+ * // ],
177
+ * // IdentifiedLanguageScore: Number("float"),
178
+ * // LanguageCodes: [ // LanguageCodeList
179
+ * // { // LanguageCodeItem
180
+ * // 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",
181
+ * // DurationInSeconds: Number("float"),
182
+ * // },
183
+ * // ],
184
+ * // Tags: [ // TagList
185
+ * // { // Tag
186
+ * // Key: "STRING_VALUE", // required
187
+ * // Value: "STRING_VALUE", // required
188
+ * // },
189
+ * // ],
190
+ * // Subtitles: { // SubtitlesOutput
191
+ * // Formats: [ // SubtitleFormats
192
+ * // "vtt" || "srt",
193
+ * // ],
194
+ * // SubtitleFileUris: [ // SubtitleFileUris
195
+ * // "STRING_VALUE",
196
+ * // ],
197
+ * // OutputStartIndex: Number("int"),
198
+ * // },
199
+ * // LanguageIdSettings: { // LanguageIdSettingsMap
200
+ * // "<keys>": { // LanguageIdSettings
201
+ * // VocabularyName: "STRING_VALUE",
202
+ * // VocabularyFilterName: "STRING_VALUE",
203
+ * // LanguageModelName: "STRING_VALUE",
204
+ * // },
205
+ * // },
206
+ * // },
207
+ * // };
208
+ *
129
209
  * ```
130
210
  *
131
211
  * @param StartTranscriptionJobCommandInput - {@link StartTranscriptionJobCommandInput}
@@ -152,6 +232,8 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
152
232
  * <p>You've either sent too many requests or your input file is too long. Wait before
153
233
  * retrying your request, or use a smaller file and try your request again.</p>
154
234
  *
235
+ * @throws {@link TranscribeServiceException}
236
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
155
237
  *
156
238
  */
157
239
  export declare class StartTranscriptionJobCommand extends $Command<StartTranscriptionJobCommandInput, StartTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
@@ -40,6 +40,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
40
40
  * };
41
41
  * const command = new TagResourceCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // {};
44
+ *
43
45
  * ```
44
46
  *
45
47
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -70,6 +72,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
70
72
  * <p>We can't find the requested resource. Check that the specified name is correct and try
71
73
  * your request again.</p>
72
74
  *
75
+ * @throws {@link TranscribeServiceException}
76
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
73
77
  *
74
78
  */
75
79
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TranscribeClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
36
36
  * };
37
37
  * const command = new UntagResourceCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -66,6 +68,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
66
68
  * <p>We can't find the requested resource. Check that the specified name is correct and try
67
69
  * your request again.</p>
68
70
  *
71
+ * @throws {@link TranscribeServiceException}
72
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
69
73
  *
70
74
  */
71
75
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TranscribeClientResolvedConfig> {
@@ -112,6 +112,91 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
112
112
  * };
113
113
  * const command = new UpdateCallAnalyticsCategoryCommand(input);
114
114
  * const response = await client.send(command);
115
+ * // { // UpdateCallAnalyticsCategoryResponse
116
+ * // CategoryProperties: { // CategoryProperties
117
+ * // CategoryName: "STRING_VALUE",
118
+ * // Rules: [ // RuleList
119
+ * // { // Rule Union: only one key present
120
+ * // NonTalkTimeFilter: { // NonTalkTimeFilter
121
+ * // Threshold: Number("long"),
122
+ * // AbsoluteTimeRange: { // AbsoluteTimeRange
123
+ * // StartTime: Number("long"),
124
+ * // EndTime: Number("long"),
125
+ * // First: Number("long"),
126
+ * // Last: Number("long"),
127
+ * // },
128
+ * // RelativeTimeRange: { // RelativeTimeRange
129
+ * // StartPercentage: Number("int"),
130
+ * // EndPercentage: Number("int"),
131
+ * // First: Number("int"),
132
+ * // Last: Number("int"),
133
+ * // },
134
+ * // Negate: true || false,
135
+ * // },
136
+ * // InterruptionFilter: { // InterruptionFilter
137
+ * // Threshold: Number("long"),
138
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
139
+ * // AbsoluteTimeRange: {
140
+ * // StartTime: Number("long"),
141
+ * // EndTime: Number("long"),
142
+ * // First: Number("long"),
143
+ * // Last: Number("long"),
144
+ * // },
145
+ * // RelativeTimeRange: {
146
+ * // StartPercentage: Number("int"),
147
+ * // EndPercentage: Number("int"),
148
+ * // First: Number("int"),
149
+ * // Last: Number("int"),
150
+ * // },
151
+ * // Negate: true || false,
152
+ * // },
153
+ * // TranscriptFilter: { // TranscriptFilter
154
+ * // TranscriptFilterType: "EXACT", // required
155
+ * // AbsoluteTimeRange: {
156
+ * // StartTime: Number("long"),
157
+ * // EndTime: Number("long"),
158
+ * // First: Number("long"),
159
+ * // Last: Number("long"),
160
+ * // },
161
+ * // RelativeTimeRange: {
162
+ * // StartPercentage: Number("int"),
163
+ * // EndPercentage: Number("int"),
164
+ * // First: Number("int"),
165
+ * // Last: Number("int"),
166
+ * // },
167
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
168
+ * // Negate: true || false,
169
+ * // Targets: [ // StringTargetList // required
170
+ * // "STRING_VALUE",
171
+ * // ],
172
+ * // },
173
+ * // SentimentFilter: { // SentimentFilter
174
+ * // Sentiments: [ // SentimentValueList // required
175
+ * // "POSITIVE" || "NEGATIVE" || "NEUTRAL" || "MIXED",
176
+ * // ],
177
+ * // AbsoluteTimeRange: {
178
+ * // StartTime: Number("long"),
179
+ * // EndTime: Number("long"),
180
+ * // First: Number("long"),
181
+ * // Last: Number("long"),
182
+ * // },
183
+ * // RelativeTimeRange: {
184
+ * // StartPercentage: Number("int"),
185
+ * // EndPercentage: Number("int"),
186
+ * // First: Number("int"),
187
+ * // Last: Number("int"),
188
+ * // },
189
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
190
+ * // Negate: true || false,
191
+ * // },
192
+ * // },
193
+ * // ],
194
+ * // CreateTime: new Date("TIMESTAMP"),
195
+ * // LastUpdateTime: new Date("TIMESTAMP"),
196
+ * // InputType: "REAL_TIME" || "POST_CALL",
197
+ * // },
198
+ * // };
199
+ *
115
200
  * ```
116
201
  *
117
202
  * @param UpdateCallAnalyticsCategoryCommandInput - {@link UpdateCallAnalyticsCategoryCommandInput}
@@ -142,6 +227,8 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
142
227
  * <p>We can't find the requested resource. Check that the specified name is correct and try
143
228
  * your request again.</p>
144
229
  *
230
+ * @throws {@link TranscribeServiceException}
231
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
145
232
  *
146
233
  */
147
234
  export declare class UpdateCallAnalyticsCategoryCommand extends $Command<UpdateCallAnalyticsCategoryCommandInput, UpdateCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
@@ -35,6 +35,13 @@ export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocab
35
35
  * };
36
36
  * const command = new UpdateMedicalVocabularyCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // UpdateMedicalVocabularyResponse
39
+ * // VocabularyName: "STRING_VALUE",
40
+ * // 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",
41
+ * // LastModifiedTime: new Date("TIMESTAMP"),
42
+ * // VocabularyState: "PENDING" || "READY" || "FAILED",
43
+ * // };
44
+ *
38
45
  * ```
39
46
  *
40
47
  * @param UpdateMedicalVocabularyCommandInput - {@link UpdateMedicalVocabularyCommandInput}
@@ -65,6 +72,8 @@ export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocab
65
72
  * <p>We can't find the requested resource. Check that the specified name is correct and try
66
73
  * your request again.</p>
67
74
  *
75
+ * @throws {@link TranscribeServiceException}
76
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
68
77
  *
69
78
  */
70
79
  export declare class UpdateMedicalVocabularyCommand extends $Command<UpdateMedicalVocabularyCommandInput, UpdateMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
@@ -39,6 +39,13 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse,
39
39
  * };
40
40
  * const command = new UpdateVocabularyCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // UpdateVocabularyResponse
43
+ * // VocabularyName: "STRING_VALUE",
44
+ * // 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",
45
+ * // LastModifiedTime: new Date("TIMESTAMP"),
46
+ * // VocabularyState: "PENDING" || "READY" || "FAILED",
47
+ * // };
48
+ *
42
49
  * ```
43
50
  *
44
51
  * @param UpdateVocabularyCommandInput - {@link UpdateVocabularyCommandInput}
@@ -69,6 +76,8 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse,
69
76
  * <p>We can't find the requested resource. Check that the specified name is correct and try
70
77
  * your request again.</p>
71
78
  *
79
+ * @throws {@link TranscribeServiceException}
80
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
72
81
  *
73
82
  */
74
83
  export declare class UpdateVocabularyCommand extends $Command<UpdateVocabularyCommandInput, UpdateVocabularyCommandOutput, TranscribeClientResolvedConfig> {
@@ -38,6 +38,12 @@ export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFil
38
38
  * };
39
39
  * const command = new UpdateVocabularyFilterCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // UpdateVocabularyFilterResponse
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
+ *
41
47
  * ```
42
48
  *
43
49
  * @param UpdateVocabularyFilterCommandInput - {@link UpdateVocabularyFilterCommandInput}
@@ -64,6 +70,8 @@ export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFil
64
70
  * <p>We can't find the requested resource. Check that the specified name is correct and try
65
71
  * your request again.</p>
66
72
  *
73
+ * @throws {@link TranscribeServiceException}
74
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
67
75
  *
68
76
  */
69
77
  export declare class UpdateVocabularyFilterCommand extends $Command<UpdateVocabularyFilterCommandInput, UpdateVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transcribe",
3
3
  "description": "AWS SDK for JavaScript Transcribe Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
4
+ "version": "3.326.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",