@aws-sdk/client-transcribe 3.39.0 → 3.43.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/CHANGELOG.md +42 -0
- package/dist-cjs/endpoints.js +165 -25
- package/dist-cjs/models/models_0.js +9 -3
- package/dist-cjs/protocols/Aws_json1_1.js +53 -0
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/endpoints.js +165 -25
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +48 -3
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/Transcribe.d.ts +1 -1
- package/dist-types/TranscribeClient.d.ts +8 -0
- package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +1 -1
- package/dist-types/commands/CreateLanguageModelCommand.d.ts +1 -1
- package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/CreateVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLanguageModelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLanguageModelCommand.d.ts +1 -1
- package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +1 -1
- package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +1 -1
- package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/GetTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/GetVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/GetVocabularyFilterCommand.d.ts +1 -1
- package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +1 -1
- package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListLanguageModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListVocabulariesCommand.d.ts +1 -1
- package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +1 -1
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +1 -1
- package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/StartTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +87 -11
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/TranscribeClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +23 -23
|
@@ -20,7 +20,7 @@ export interface GetVocabularyCommandOutput extends GetVocabularyResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetVocabularyCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetVocabularyCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetVocabularyCommand extends $Command<GetVocabularyCommandInput, GetVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetVocabularyFilterCommandOutput extends GetVocabularyFilterRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetVocabularyFilterCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetVocabularyFilterCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetVocabularyFilterCommand extends $Command<GetVocabularyFilterCommandInput, GetVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface ListCallAnalyticsCategoriesCommandOutput extends ListCallAnalyt
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link ListCallAnalyticsCategoriesCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link ListCallAnalyticsCategoriesCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class ListCallAnalyticsCategoriesCommand extends $Command<ListCallAnalyticsCategoriesCommandInput, ListCallAnalyticsCategoriesCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListCallAnalyticsJobsCommandOutput extends ListCallAnalyticsJob
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListCallAnalyticsJobsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListCallAnalyticsJobsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListCallAnalyticsJobsCommand extends $Command<ListCallAnalyticsJobsCommandInput, ListCallAnalyticsJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface ListLanguageModelsCommandOutput extends ListLanguageModelsRespo
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link ListLanguageModelsCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link ListLanguageModelsCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class ListLanguageModelsCommand extends $Command<ListLanguageModelsCommandInput, ListLanguageModelsCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListMedicalTranscriptionJobsCommandOutput extends ListMedicalTr
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListMedicalTranscriptionJobsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListMedicalTranscriptionJobsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListMedicalTranscriptionJobsCommand extends $Command<ListMedicalTranscriptionJobsCommandInput, ListMedicalTranscriptionJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabul
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ListMedicalVocabulariesCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ListMedicalVocabulariesCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ListMedicalVocabulariesCommand extends $Command<ListMedicalVocabulariesCommandInput, ListMedicalVocabulariesCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListTranscriptionJobsCommandOutput extends ListTranscriptionJob
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListTranscriptionJobsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListTranscriptionJobsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListTranscriptionJobsCommand extends $Command<ListTranscriptionJobsCommandInput, ListTranscriptionJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse,
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ListVocabulariesCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ListVocabulariesCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ListVocabulariesCommand extends $Command<ListVocabulariesCommandInput, ListVocabulariesCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListVocabularyFiltersCommandOutput extends ListVocabularyFilter
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListVocabularyFiltersCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListVocabularyFiltersCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListVocabularyFiltersCommand extends $Command<ListVocabularyFiltersCommandInput, ListVocabularyFiltersCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -24,7 +24,7 @@ export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJo
|
|
|
24
24
|
*
|
|
25
25
|
* @see {@link StartCallAnalyticsJobCommandInput} for command's `input` shape.
|
|
26
26
|
* @see {@link StartCallAnalyticsJobCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export declare class StartCallAnalyticsJobCommand extends $Command<StartCallAnalyticsJobCommandInput, StartCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StartMedicalTranscriptionJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StartMedicalTranscriptionJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StartMedicalTranscriptionJobCommand extends $Command<StartMedicalTranscriptionJobCommandInput, StartMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StartTranscriptionJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StartTranscriptionJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StartTranscriptionJobCommand extends $Command<StartTranscriptionJobCommandInput, StartTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
7
7
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Tags
|
|
10
|
+
* <p>Tags an Amazon Transcribe resource with the given list of tags.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link UpdateCallAnalyticsCategoryCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link UpdateCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class UpdateCallAnalyticsCategoryCommand extends $Command<UpdateCallAnalyticsCategoryCommandInput, UpdateCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocab
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link UpdateMedicalVocabularyCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link UpdateMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class UpdateMedicalVocabularyCommand extends $Command<UpdateMedicalVocabularyCommandInput, UpdateMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse,
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link UpdateVocabularyCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link UpdateVocabularyCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class UpdateVocabularyCommand extends $Command<UpdateVocabularyCommandInput, UpdateVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFil
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateVocabularyFilterCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateVocabularyFilterCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateVocabularyFilterCommand extends $Command<UpdateVocabularyFilterCommandInput, UpdateVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -204,6 +204,35 @@ export declare namespace ContentRedaction {
|
|
|
204
204
|
*/
|
|
205
205
|
const filterSensitiveLog: (obj: ContentRedaction) => any;
|
|
206
206
|
}
|
|
207
|
+
/**
|
|
208
|
+
* <p>Language-specific settings that can be specified when language identification is enabled.</p>
|
|
209
|
+
*/
|
|
210
|
+
export interface LanguageIdSettings {
|
|
211
|
+
/**
|
|
212
|
+
* <p>The name of the vocabulary you want to use when processing your transcription job. The
|
|
213
|
+
* vocabulary you specify must have the same language code as the transcription job; if the languages don't
|
|
214
|
+
* match, the vocabulary won't be applied.</p>
|
|
215
|
+
*/
|
|
216
|
+
VocabularyName?: string;
|
|
217
|
+
/**
|
|
218
|
+
* <p>The name of the vocabulary filter you want to use when transcribing your audio. The filter you specify
|
|
219
|
+
* must have the same language code as the transcription job; if the languages don't match, the vocabulary
|
|
220
|
+
* filter won't be applied.</p>
|
|
221
|
+
*/
|
|
222
|
+
VocabularyFilterName?: string;
|
|
223
|
+
/**
|
|
224
|
+
* <p>The name of the language model you want to use when transcribing your audio. The model you specify
|
|
225
|
+
* must have the same language code as the transcription job; if the languages don't match, the language model
|
|
226
|
+
* won't be applied.</p>
|
|
227
|
+
*/
|
|
228
|
+
LanguageModelName?: string;
|
|
229
|
+
}
|
|
230
|
+
export declare namespace LanguageIdSettings {
|
|
231
|
+
/**
|
|
232
|
+
* @internal
|
|
233
|
+
*/
|
|
234
|
+
const filterSensitiveLog: (obj: LanguageIdSettings) => any;
|
|
235
|
+
}
|
|
207
236
|
export declare enum VocabularyFilterMethod {
|
|
208
237
|
MASK = "mask",
|
|
209
238
|
REMOVE = "remove",
|
|
@@ -247,6 +276,14 @@ export interface CallAnalyticsJobSettings {
|
|
|
247
276
|
* features</a> for additional information.</p>
|
|
248
277
|
*/
|
|
249
278
|
LanguageOptions?: (LanguageCode | string)[];
|
|
279
|
+
/**
|
|
280
|
+
* <p>The language identification settings associated with your call analytics job. These settings include
|
|
281
|
+
* <code>VocabularyName</code>, <code>VocabularyFilterName</code>, and
|
|
282
|
+
* <code>LanguageModelName</code>.</p>
|
|
283
|
+
*/
|
|
284
|
+
LanguageIdSettings?: {
|
|
285
|
+
[key: string]: LanguageIdSettings;
|
|
286
|
+
};
|
|
250
287
|
}
|
|
251
288
|
export declare namespace CallAnalyticsJobSettings {
|
|
252
289
|
/**
|
|
@@ -375,7 +412,8 @@ export interface CallAnalyticsJob {
|
|
|
375
412
|
*/
|
|
376
413
|
FailureReason?: string;
|
|
377
414
|
/**
|
|
378
|
-
* <p>The Amazon Resource Number (ARN) that you use to
|
|
415
|
+
* <p>The Amazon Resource Number (ARN) that you use to access the analytics job. ARNs have the format
|
|
416
|
+
* <code>arn:partition:service:region:account-id:resource-type/resource-id</code>.</p>
|
|
379
417
|
*/
|
|
380
418
|
DataAccessRoleArn?: string;
|
|
381
419
|
/**
|
|
@@ -839,7 +877,8 @@ export interface InputDataConfig {
|
|
|
839
877
|
TuningDataS3Uri?: string;
|
|
840
878
|
/**
|
|
841
879
|
* <p>The Amazon Resource Name (ARN) that uniquely identifies the permissions you've given Amazon Transcribe to access your
|
|
842
|
-
* Amazon S3 buckets containing your media files or text data
|
|
880
|
+
* Amazon S3 buckets containing your media files or text data. ARNs have the format
|
|
881
|
+
* <code>arn:partition:service:region:account-id:resource-type/resource-id</code>.</p>
|
|
843
882
|
*/
|
|
844
883
|
DataAccessRoleArn: string | undefined;
|
|
845
884
|
}
|
|
@@ -1712,9 +1751,11 @@ export interface JobExecutionSettings {
|
|
|
1712
1751
|
*/
|
|
1713
1752
|
AllowDeferredExecution?: boolean;
|
|
1714
1753
|
/**
|
|
1715
|
-
* <p>The Amazon Resource Name (ARN)
|
|
1716
|
-
*
|
|
1717
|
-
*
|
|
1754
|
+
* <p>The Amazon Resource Name (ARN), in the form
|
|
1755
|
+
* <code>arn:partition:service:region:account-id:resource-type/resource-id</code>, of a role
|
|
1756
|
+
* that has access to the S3 bucket that contains the input files. Amazon Transcribe assumes this role to read queued
|
|
1757
|
+
* media files. If you have specified an output S3 bucket for the transcription results, this role should
|
|
1758
|
+
* have access to the output bucket as well.</p>
|
|
1718
1759
|
* <p>If you specify the <code>AllowDeferredExecution</code> field, you must specify the
|
|
1719
1760
|
* <code>DataAccessRoleArn</code> field.</p>
|
|
1720
1761
|
*/
|
|
@@ -1955,6 +1996,14 @@ export interface TranscriptionJob {
|
|
|
1955
1996
|
* <p>Generate subtitles for your batch transcription job.</p>
|
|
1956
1997
|
*/
|
|
1957
1998
|
Subtitles?: SubtitlesOutput;
|
|
1999
|
+
/**
|
|
2000
|
+
* <p>Language-specific settings that can be specified when language identification is enabled for your transcription
|
|
2001
|
+
* job. These settings include <code>VocabularyName</code>, <code>VocabularyFilterName</code>, and
|
|
2002
|
+
* <code>LanguageModelName</code>LanguageModelName.</p>
|
|
2003
|
+
*/
|
|
2004
|
+
LanguageIdSettings?: {
|
|
2005
|
+
[key: string]: LanguageIdSettings;
|
|
2006
|
+
};
|
|
1958
2007
|
}
|
|
1959
2008
|
export declare namespace TranscriptionJob {
|
|
1960
2009
|
/**
|
|
@@ -2394,7 +2443,13 @@ export declare namespace ListMedicalVocabulariesResponse {
|
|
|
2394
2443
|
}
|
|
2395
2444
|
export interface ListTagsForResourceRequest {
|
|
2396
2445
|
/**
|
|
2397
|
-
* <p>Lists all tags associated with a given Amazon Resource Name (ARN)
|
|
2446
|
+
* <p>Lists all tags associated with a given Amazon Resource Name (ARN). ARNs have the format
|
|
2447
|
+
* <code>arn:partition:service:region:account-id:resource-type/resource-id</code> (for example,
|
|
2448
|
+
* <code>arn:aws:transcribe:us-east-1:account-id:transcription-job/your-job-name</code>). Valid
|
|
2449
|
+
* values for <code>resource-type</code> are: <code>transcription-job</code>,
|
|
2450
|
+
* <code>medical-transcription-job</code>, <code>vocabulary</code>,
|
|
2451
|
+
* <code>medical-vocabulary</code>, <code>vocabulary-filter</code>, and
|
|
2452
|
+
* <code>language-model</code>.</p>
|
|
2398
2453
|
*/
|
|
2399
2454
|
ResourceArn: string | undefined;
|
|
2400
2455
|
}
|
|
@@ -2406,7 +2461,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
2406
2461
|
}
|
|
2407
2462
|
export interface ListTagsForResourceResponse {
|
|
2408
2463
|
/**
|
|
2409
|
-
* <p>Lists all tags associated with the given Amazon Resource Name (ARN)
|
|
2464
|
+
* <p>Lists all tags associated with the given Amazon Resource Name (ARN). </p>
|
|
2410
2465
|
*/
|
|
2411
2466
|
ResourceArn?: string;
|
|
2412
2467
|
/**
|
|
@@ -2828,7 +2883,7 @@ export interface StartMedicalTranscriptionJobRequest {
|
|
|
2828
2883
|
* <ul>
|
|
2829
2884
|
* <li>
|
|
2830
2885
|
* <p>Amazon Resource Name (ARN) of a KMS key in the current account or another
|
|
2831
|
-
* account: "arn:aws:kms:region:account
|
|
2886
|
+
* account: "arn:aws:kms:region:account-ID:key/1234abcd-12ab-34cd-56ef-1234567890ab"</p>
|
|
2832
2887
|
* </li>
|
|
2833
2888
|
* <li>
|
|
2834
2889
|
* <p>ARN of a KMS Key Alias: "arn:aws:kms:region:account ID:alias/ExampleAlias"</p>
|
|
@@ -2982,7 +3037,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
2982
3037
|
* ID:key/1234abcd-12ab-34cd-56ef-1234567890ab"</p>
|
|
2983
3038
|
* </li>
|
|
2984
3039
|
* <li>
|
|
2985
|
-
* <p>ARN of a KMS Key Alias: "arn:aws:kms:region:account
|
|
3040
|
+
* <p>ARN of a KMS Key Alias: "arn:aws:kms:region:account-ID:alias/ExampleAlias"</p>
|
|
2986
3041
|
* </li>
|
|
2987
3042
|
* </ul>
|
|
2988
3043
|
* <p>If you don't specify an encryption key, the output of the transcription job is encrypted with the default
|
|
@@ -3037,6 +3092,14 @@ export interface StartTranscriptionJobRequest {
|
|
|
3037
3092
|
* <p>Add tags to an Amazon Transcribe transcription job.</p>
|
|
3038
3093
|
*/
|
|
3039
3094
|
Tags?: Tag[];
|
|
3095
|
+
/**
|
|
3096
|
+
* <p>The language identification settings associated with your transcription job. These settings include
|
|
3097
|
+
* <code>VocabularyName</code>, <code>VocabularyFilterName</code>, and
|
|
3098
|
+
* <code>LanguageModelName</code>.</p>
|
|
3099
|
+
*/
|
|
3100
|
+
LanguageIdSettings?: {
|
|
3101
|
+
[key: string]: LanguageIdSettings;
|
|
3102
|
+
};
|
|
3040
3103
|
}
|
|
3041
3104
|
export declare namespace StartTranscriptionJobRequest {
|
|
3042
3105
|
/**
|
|
@@ -3058,7 +3121,13 @@ export declare namespace StartTranscriptionJobResponse {
|
|
|
3058
3121
|
}
|
|
3059
3122
|
export interface TagResourceRequest {
|
|
3060
3123
|
/**
|
|
3061
|
-
* <p>The Amazon Resource Name (ARN) of the Amazon Transcribe resource you want to tag
|
|
3124
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Transcribe resource you want to tag. ARNs have the format
|
|
3125
|
+
* <code>arn:partition:service:region:account-id:resource-type/resource-id</code> (for example,
|
|
3126
|
+
* <code>arn:aws:transcribe:us-east-1:account-id:transcription-job/your-job-name</code>). Valid
|
|
3127
|
+
* values for <code>resource-type</code> are: <code>transcription-job</code>,
|
|
3128
|
+
* <code>medical-transcription-job</code>, <code>vocabulary</code>,
|
|
3129
|
+
* <code>medical-vocabulary</code>, <code>vocabulary-filter</code>, and
|
|
3130
|
+
* <code>language-model</code>.</p>
|
|
3062
3131
|
*/
|
|
3063
3132
|
ResourceArn: string | undefined;
|
|
3064
3133
|
/**
|
|
@@ -3082,7 +3151,14 @@ export declare namespace TagResourceResponse {
|
|
|
3082
3151
|
}
|
|
3083
3152
|
export interface UntagResourceRequest {
|
|
3084
3153
|
/**
|
|
3085
|
-
* <p>The Amazon Resource Name (ARN) of the Amazon Transcribe resource you want to remove tags from
|
|
3154
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Transcribe resource you want to remove tags from.
|
|
3155
|
+
* ARNs have the format
|
|
3156
|
+
* <code>arn:partition:service:region:account-id:resource-type/resource-id</code> (for example,
|
|
3157
|
+
* <code>arn:aws:transcribe:us-east-1:account-id:transcription-job/your-job-name</code>). Valid
|
|
3158
|
+
* values for <code>resource-type</code> are: <code>transcription-job</code>,
|
|
3159
|
+
* <code>medical-transcription-job</code>, <code>vocabulary</code>,
|
|
3160
|
+
* <code>medical-vocabulary</code>, <code>vocabulary-filter</code>, and
|
|
3161
|
+
* <code>language-model</code>.</p>
|
|
3086
3162
|
*/
|
|
3087
3163
|
ResourceArn: string | undefined;
|
|
3088
3164
|
/**
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: TranscribeClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: TranscribeClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -18,6 +18,8 @@ export declare const getRuntimeConfig: (config: TranscribeClientConfig) => {
|
|
|
18
18
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
19
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
20
|
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
23
|
serviceId: string;
|
|
22
24
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
@@ -77,6 +77,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
77
77
|
|
|
78
78
|
logger?: __Logger;
|
|
79
79
|
|
|
80
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
81
|
+
|
|
82
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
83
|
+
|
|
80
84
|
serviceId?: string;
|
|
81
85
|
|
|
82
86
|
region?: string | __Provider<string>;
|
|
@@ -129,6 +129,19 @@ export declare namespace ContentRedaction {
|
|
|
129
129
|
|
|
130
130
|
const filterSensitiveLog: (obj: ContentRedaction) => any;
|
|
131
131
|
}
|
|
132
|
+
|
|
133
|
+
export interface LanguageIdSettings {
|
|
134
|
+
|
|
135
|
+
VocabularyName?: string;
|
|
136
|
+
|
|
137
|
+
VocabularyFilterName?: string;
|
|
138
|
+
|
|
139
|
+
LanguageModelName?: string;
|
|
140
|
+
}
|
|
141
|
+
export declare namespace LanguageIdSettings {
|
|
142
|
+
|
|
143
|
+
const filterSensitiveLog: (obj: LanguageIdSettings) => any;
|
|
144
|
+
}
|
|
132
145
|
export declare enum VocabularyFilterMethod {
|
|
133
146
|
MASK = "mask",
|
|
134
147
|
REMOVE = "remove",
|
|
@@ -148,6 +161,10 @@ export interface CallAnalyticsJobSettings {
|
|
|
148
161
|
ContentRedaction?: ContentRedaction;
|
|
149
162
|
|
|
150
163
|
LanguageOptions?: (LanguageCode | string)[];
|
|
164
|
+
|
|
165
|
+
LanguageIdSettings?: {
|
|
166
|
+
[key: string]: LanguageIdSettings;
|
|
167
|
+
};
|
|
151
168
|
}
|
|
152
169
|
export declare namespace CallAnalyticsJobSettings {
|
|
153
170
|
|
|
@@ -988,6 +1005,10 @@ export interface TranscriptionJob {
|
|
|
988
1005
|
Tags?: Tag[];
|
|
989
1006
|
|
|
990
1007
|
Subtitles?: SubtitlesOutput;
|
|
1008
|
+
|
|
1009
|
+
LanguageIdSettings?: {
|
|
1010
|
+
[key: string]: LanguageIdSettings;
|
|
1011
|
+
};
|
|
991
1012
|
}
|
|
992
1013
|
export declare namespace TranscriptionJob {
|
|
993
1014
|
|
|
@@ -1473,6 +1494,10 @@ export interface StartTranscriptionJobRequest {
|
|
|
1473
1494
|
Subtitles?: Subtitles;
|
|
1474
1495
|
|
|
1475
1496
|
Tags?: Tag[];
|
|
1497
|
+
|
|
1498
|
+
LanguageIdSettings?: {
|
|
1499
|
+
[key: string]: LanguageIdSettings;
|
|
1500
|
+
};
|
|
1476
1501
|
}
|
|
1477
1502
|
export declare namespace StartTranscriptionJobRequest {
|
|
1478
1503
|
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: TranscribeClientConfig) => {
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: TranscribeClientConfig) => {
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: TranscribeClientConfig) => {
|
|
|
16
16
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
18
|
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
serviceId: string;
|
|
20
22
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
21
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
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.
|
|
4
|
+
"version": "3.43.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,32 +21,32 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.43.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.40.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.41.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.40.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.40.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.40.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.40.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.40.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.40.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.40.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.41.0",
|
|
42
|
+
"@aws-sdk/types": "3.40.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.40.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.40.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.40.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
52
|
"tslib": "^2.3.0"
|