@aws-sdk/client-transcribe 3.46.0 → 3.48.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 +38 -0
- package/dist-cjs/endpoints.js +0 -28
- package/dist-cjs/models/models_0.js +18 -33
- package/dist-cjs/protocols/Aws_json1_1.js +27 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +10 -2
- package/dist-es/endpoints.js +0 -28
- package/dist-es/models/models_0.js +15 -20
- package/dist-es/protocols/Aws_json1_1.js +27 -1
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -4
- package/dist-types/Transcribe.d.ts +37 -28
- package/dist-types/TranscribeClient.d.ts +5 -1
- package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +3 -3
- package/dist-types/commands/CreateLanguageModelCommand.d.ts +3 -2
- package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +2 -1
- package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +2 -2
- package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +2 -1
- package/dist-types/commands/ListLanguageModelsCommand.d.ts +4 -3
- package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +2 -2
- package/dist-types/commands/ListVocabulariesCommand.d.ts +2 -2
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +5 -4
- package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +3 -2
- package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +4 -3
- package/dist-types/commands/UpdateVocabularyCommand.d.ts +3 -2
- package/dist-types/models/models_0.d.ts +855 -694
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/TranscribeClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +16 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +35 -35
|
@@ -45,23 +45,25 @@ import { TranscribeClient } from "./TranscribeClient";
|
|
|
45
45
|
export declare class Transcribe extends TranscribeClient {
|
|
46
46
|
/**
|
|
47
47
|
* <p>Creates an analytics category. Amazon Transcribe applies the conditions specified by your
|
|
48
|
-
* analytics categories to your call analytics jobs. For each analytics category, you specify one
|
|
49
|
-
* more rules. For example, you can specify a rule that the customer sentiment was neutral
|
|
50
|
-
* negative within that category. If you start a call analytics job, Amazon Transcribe applies the
|
|
48
|
+
* analytics categories to your call analytics jobs. For each analytics category, you specify one
|
|
49
|
+
* or more rules. For example, you can specify a rule that the customer sentiment was neutral
|
|
50
|
+
* or negative within that category. If you start a call analytics job, Amazon Transcribe applies the
|
|
51
51
|
* category to the analytics job that you've specified.</p>
|
|
52
52
|
*/
|
|
53
53
|
createCallAnalyticsCategory(args: CreateCallAnalyticsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<CreateCallAnalyticsCategoryCommandOutput>;
|
|
54
54
|
createCallAnalyticsCategory(args: CreateCallAnalyticsCategoryCommandInput, cb: (err: any, data?: CreateCallAnalyticsCategoryCommandOutput) => void): void;
|
|
55
55
|
createCallAnalyticsCategory(args: CreateCallAnalyticsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCallAnalyticsCategoryCommandOutput) => void): void;
|
|
56
56
|
/**
|
|
57
|
-
* <p>Creates a new custom language model. Use Amazon S3 prefixes to provide the location of
|
|
58
|
-
* takes to create your model depends on the size of your training
|
|
57
|
+
* <p>Creates a new custom language model. Use Amazon S3 prefixes to provide the location of
|
|
58
|
+
* your input files. The time it takes to create your model depends on the size of your training
|
|
59
|
+
* data.</p>
|
|
59
60
|
*/
|
|
60
61
|
createLanguageModel(args: CreateLanguageModelCommandInput, options?: __HttpHandlerOptions): Promise<CreateLanguageModelCommandOutput>;
|
|
61
62
|
createLanguageModel(args: CreateLanguageModelCommandInput, cb: (err: any, data?: CreateLanguageModelCommandOutput) => void): void;
|
|
62
63
|
createLanguageModel(args: CreateLanguageModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLanguageModelCommandOutput) => void): void;
|
|
63
64
|
/**
|
|
64
|
-
* <p>Creates a new custom vocabulary that you can use to modify how Amazon Transcribe Medical transcribes
|
|
65
|
+
* <p>Creates a new custom vocabulary that you can use to modify how Amazon Transcribe Medical transcribes
|
|
66
|
+
* your audio file.</p>
|
|
65
67
|
*/
|
|
66
68
|
createMedicalVocabulary(args: CreateMedicalVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<CreateMedicalVocabularyCommandOutput>;
|
|
67
69
|
createMedicalVocabulary(args: CreateMedicalVocabularyCommandInput, cb: (err: any, data?: CreateMedicalVocabularyCommandOutput) => void): void;
|
|
@@ -74,8 +76,8 @@ export declare class Transcribe extends TranscribeClient {
|
|
|
74
76
|
createVocabulary(args: CreateVocabularyCommandInput, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
|
|
75
77
|
createVocabulary(args: CreateVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
|
|
76
78
|
/**
|
|
77
|
-
* <p>Creates a new vocabulary filter that you can use to filter words, such as profane words,
|
|
78
|
-
* a transcription job.</p>
|
|
79
|
+
* <p>Creates a new vocabulary filter that you can use to filter words, such as profane words,
|
|
80
|
+
* from the output of a transcription job.</p>
|
|
79
81
|
*/
|
|
80
82
|
createVocabularyFilter(args: CreateVocabularyFilterCommandInput, options?: __HttpHandlerOptions): Promise<CreateVocabularyFilterCommandOutput>;
|
|
81
83
|
createVocabularyFilter(args: CreateVocabularyFilterCommandInput, cb: (err: any, data?: CreateVocabularyFilterCommandOutput) => void): void;
|
|
@@ -193,7 +195,8 @@ export declare class Transcribe extends TranscribeClient {
|
|
|
193
195
|
/**
|
|
194
196
|
* <p>Provides more information about the call analytics categories that you've created. You
|
|
195
197
|
* can use the information in this list to find a specific category. You can then use the
|
|
196
|
-
* operation to get more information about
|
|
198
|
+
* operation to get more information about
|
|
199
|
+
* it.</p>
|
|
197
200
|
*/
|
|
198
201
|
listCallAnalyticsCategories(args: ListCallAnalyticsCategoriesCommandInput, options?: __HttpHandlerOptions): Promise<ListCallAnalyticsCategoriesCommandOutput>;
|
|
199
202
|
listCallAnalyticsCategories(args: ListCallAnalyticsCategoriesCommandInput, cb: (err: any, data?: ListCallAnalyticsCategoriesCommandOutput) => void): void;
|
|
@@ -205,22 +208,24 @@ export declare class Transcribe extends TranscribeClient {
|
|
|
205
208
|
listCallAnalyticsJobs(args: ListCallAnalyticsJobsCommandInput, cb: (err: any, data?: ListCallAnalyticsJobsCommandOutput) => void): void;
|
|
206
209
|
listCallAnalyticsJobs(args: ListCallAnalyticsJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCallAnalyticsJobsCommandOutput) => void): void;
|
|
207
210
|
/**
|
|
208
|
-
* <p>Provides more information about the custom language models you've created. You can
|
|
209
|
-
* this list to find a specific custom language model. You can then use
|
|
210
|
-
*
|
|
211
|
+
* <p>Provides more information about the custom language models you've created. You can
|
|
212
|
+
* use the information in this list to find a specific custom language model. You can then use
|
|
213
|
+
* the operation to get more information about
|
|
214
|
+
* it.</p>
|
|
211
215
|
*/
|
|
212
216
|
listLanguageModels(args: ListLanguageModelsCommandInput, options?: __HttpHandlerOptions): Promise<ListLanguageModelsCommandOutput>;
|
|
213
217
|
listLanguageModels(args: ListLanguageModelsCommandInput, cb: (err: any, data?: ListLanguageModelsCommandOutput) => void): void;
|
|
214
218
|
listLanguageModels(args: ListLanguageModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLanguageModelsCommandOutput) => void): void;
|
|
215
219
|
/**
|
|
216
|
-
* <p>Lists medical transcription jobs with a specified status or substring that matches their
|
|
220
|
+
* <p>Lists medical transcription jobs with a specified status or substring that matches their
|
|
221
|
+
* names.</p>
|
|
217
222
|
*/
|
|
218
223
|
listMedicalTranscriptionJobs(args: ListMedicalTranscriptionJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListMedicalTranscriptionJobsCommandOutput>;
|
|
219
224
|
listMedicalTranscriptionJobs(args: ListMedicalTranscriptionJobsCommandInput, cb: (err: any, data?: ListMedicalTranscriptionJobsCommandOutput) => void): void;
|
|
220
225
|
listMedicalTranscriptionJobs(args: ListMedicalTranscriptionJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMedicalTranscriptionJobsCommandOutput) => void): void;
|
|
221
226
|
/**
|
|
222
|
-
* <p>Returns a list of vocabularies that match the specified criteria. If you don't enter a value in
|
|
223
|
-
* parameters, returns the entire list of vocabularies.</p>
|
|
227
|
+
* <p>Returns a list of vocabularies that match the specified criteria. If you don't enter a value in
|
|
228
|
+
* any of the request parameters, returns the entire list of vocabularies.</p>
|
|
224
229
|
*/
|
|
225
230
|
listMedicalVocabularies(args: ListMedicalVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<ListMedicalVocabulariesCommandOutput>;
|
|
226
231
|
listMedicalVocabularies(args: ListMedicalVocabulariesCommandInput, cb: (err: any, data?: ListMedicalVocabulariesCommandOutput) => void): void;
|
|
@@ -238,8 +243,8 @@ export declare class Transcribe extends TranscribeClient {
|
|
|
238
243
|
listTranscriptionJobs(args: ListTranscriptionJobsCommandInput, cb: (err: any, data?: ListTranscriptionJobsCommandOutput) => void): void;
|
|
239
244
|
listTranscriptionJobs(args: ListTranscriptionJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTranscriptionJobsCommandOutput) => void): void;
|
|
240
245
|
/**
|
|
241
|
-
* <p>Returns a list of vocabularies that match the specified criteria. If no criteria are specified,
|
|
242
|
-
* of vocabularies.</p>
|
|
246
|
+
* <p>Returns a list of vocabularies that match the specified criteria. If no criteria are specified,
|
|
247
|
+
* returns the entire list of vocabularies.</p>
|
|
243
248
|
*/
|
|
244
249
|
listVocabularies(args: ListVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<ListVocabulariesCommandOutput>;
|
|
245
250
|
listVocabularies(args: ListVocabulariesCommandInput, cb: (err: any, data?: ListVocabulariesCommandOutput) => void): void;
|
|
@@ -251,10 +256,11 @@ export declare class Transcribe extends TranscribeClient {
|
|
|
251
256
|
listVocabularyFilters(args: ListVocabularyFiltersCommandInput, cb: (err: any, data?: ListVocabularyFiltersCommandOutput) => void): void;
|
|
252
257
|
listVocabularyFilters(args: ListVocabularyFiltersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVocabularyFiltersCommandOutput) => void): void;
|
|
253
258
|
/**
|
|
254
|
-
* <p>Starts an asynchronous analytics job that not only transcribes the audio recording of a
|
|
255
|
-
* also returns additional insights. These insights include how quickly or
|
|
256
|
-
*
|
|
257
|
-
*
|
|
259
|
+
* <p>Starts an asynchronous analytics job that not only transcribes the audio recording of a
|
|
260
|
+
* caller and agent, but also returns additional insights. These insights include how quickly or
|
|
261
|
+
* loudly the caller or agent was speaking. To retrieve additional insights with your analytics
|
|
262
|
+
* jobs, create categories. A category is a way to classify analytics jobs based on attributes,
|
|
263
|
+
* such as a customer's sentiment or a particular phrase being used during the call. For more
|
|
258
264
|
* information, see the operation. </p>
|
|
259
265
|
*/
|
|
260
266
|
startCallAnalyticsJob(args: StartCallAnalyticsJobCommandInput, options?: __HttpHandlerOptions): Promise<StartCallAnalyticsJobCommandOutput>;
|
|
@@ -285,23 +291,26 @@ export declare class Transcribe extends TranscribeClient {
|
|
|
285
291
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
286
292
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
287
293
|
/**
|
|
288
|
-
* <p>Updates the call analytics category with new values. The
|
|
289
|
-
* operation overwrites all of the existing
|
|
294
|
+
* <p>Updates the call analytics category with new values. The
|
|
295
|
+
* <code>UpdateCallAnalyticsCategory</code> operation overwrites all of the existing
|
|
296
|
+
* information with the values that you provide in the request.</p>
|
|
290
297
|
*/
|
|
291
298
|
updateCallAnalyticsCategory(args: UpdateCallAnalyticsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCallAnalyticsCategoryCommandOutput>;
|
|
292
299
|
updateCallAnalyticsCategory(args: UpdateCallAnalyticsCategoryCommandInput, cb: (err: any, data?: UpdateCallAnalyticsCategoryCommandOutput) => void): void;
|
|
293
300
|
updateCallAnalyticsCategory(args: UpdateCallAnalyticsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCallAnalyticsCategoryCommandOutput) => void): void;
|
|
294
301
|
/**
|
|
295
|
-
* <p>Updates a vocabulary with new values that you provide in a different text file from
|
|
296
|
-
* the vocabulary. The <code>UpdateMedicalVocabulary</code>
|
|
297
|
-
* with the values that you provide in the
|
|
302
|
+
* <p>Updates a vocabulary with new values that you provide in a different text file from
|
|
303
|
+
* the one you used to create the vocabulary. The <code>UpdateMedicalVocabulary</code>
|
|
304
|
+
* operation overwrites all of the existing information with the values that you provide in the
|
|
305
|
+
* request.</p>
|
|
298
306
|
*/
|
|
299
307
|
updateMedicalVocabulary(args: UpdateMedicalVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMedicalVocabularyCommandOutput>;
|
|
300
308
|
updateMedicalVocabulary(args: UpdateMedicalVocabularyCommandInput, cb: (err: any, data?: UpdateMedicalVocabularyCommandOutput) => void): void;
|
|
301
309
|
updateMedicalVocabulary(args: UpdateMedicalVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMedicalVocabularyCommandOutput) => void): void;
|
|
302
310
|
/**
|
|
303
|
-
* <p>Updates an existing vocabulary with new values. The
|
|
304
|
-
* all of the existing information with
|
|
311
|
+
* <p>Updates an existing vocabulary with new values. The
|
|
312
|
+
* <code>UpdateVocabulary</code> operation overwrites all of the existing information with
|
|
313
|
+
* the values that you provide in the request. </p>
|
|
305
314
|
*/
|
|
306
315
|
updateVocabulary(args: UpdateVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVocabularyCommandOutput>;
|
|
307
316
|
updateVocabulary(args: UpdateVocabularyCommandInput, cb: (err: any, data?: UpdateVocabularyCommandOutput) => void): void;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateCallAnalyticsCategoryCommandInput, CreateCallAnalyticsCategoryCommandOutput } from "./commands/CreateCallAnalyticsCategoryCommand";
|
|
10
10
|
import { CreateLanguageModelCommandInput, CreateLanguageModelCommandOutput } from "./commands/CreateLanguageModelCommand";
|
|
@@ -147,6 +147,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
147
147
|
* @internal
|
|
148
148
|
*/
|
|
149
149
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
150
|
+
/**
|
|
151
|
+
* The {@link DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
152
|
+
*/
|
|
153
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
150
154
|
}
|
|
151
155
|
declare type TranscribeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
152
156
|
/**
|
|
@@ -8,9 +8,9 @@ export interface CreateCallAnalyticsCategoryCommandOutput extends CreateCallAnal
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Creates an analytics category. Amazon Transcribe applies the conditions specified by your
|
|
11
|
-
* analytics categories to your call analytics jobs. For each analytics category, you specify one
|
|
12
|
-
* more rules. For example, you can specify a rule that the customer sentiment was neutral
|
|
13
|
-
* negative within that category. If you start a call analytics job, Amazon Transcribe applies the
|
|
11
|
+
* analytics categories to your call analytics jobs. For each analytics category, you specify one
|
|
12
|
+
* or more rules. For example, you can specify a rule that the customer sentiment was neutral
|
|
13
|
+
* or negative within that category. If you start a call analytics job, Amazon Transcribe applies the
|
|
14
14
|
* category to the analytics job that you've specified.</p>
|
|
15
15
|
* @example
|
|
16
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,8 +7,9 @@ export interface CreateLanguageModelCommandInput extends CreateLanguageModelRequ
|
|
|
7
7
|
export interface CreateLanguageModelCommandOutput extends CreateLanguageModelResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a new custom language model. Use Amazon S3 prefixes to provide the location of
|
|
11
|
-
* takes to create your model depends on the size of your training
|
|
10
|
+
* <p>Creates a new custom language model. Use Amazon S3 prefixes to provide the location of
|
|
11
|
+
* your input files. The time it takes to create your model depends on the size of your training
|
|
12
|
+
* data.</p>
|
|
12
13
|
* @example
|
|
13
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
15
|
* ```javascript
|
|
@@ -7,7 +7,8 @@ export interface CreateMedicalVocabularyCommandInput extends CreateMedicalVocabu
|
|
|
7
7
|
export interface CreateMedicalVocabularyCommandOutput extends CreateMedicalVocabularyResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a new custom vocabulary that you can use to modify how Amazon Transcribe Medical transcribes
|
|
10
|
+
* <p>Creates a new custom vocabulary that you can use to modify how Amazon Transcribe Medical transcribes
|
|
11
|
+
* your audio file.</p>
|
|
11
12
|
* @example
|
|
12
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
14
|
* ```javascript
|
|
@@ -7,8 +7,8 @@ export interface CreateVocabularyFilterCommandInput extends CreateVocabularyFilt
|
|
|
7
7
|
export interface CreateVocabularyFilterCommandOutput extends CreateVocabularyFilterResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a new vocabulary filter that you can use to filter words, such as profane words,
|
|
11
|
-
* a transcription job.</p>
|
|
10
|
+
* <p>Creates a new vocabulary filter that you can use to filter words, such as profane words,
|
|
11
|
+
* from the output of a transcription job.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
14
|
* ```javascript
|
|
@@ -9,7 +9,8 @@ export interface ListCallAnalyticsCategoriesCommandOutput extends ListCallAnalyt
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Provides more information about the call analytics categories that you've created. You
|
|
11
11
|
* can use the information in this list to find a specific category. You can then use the
|
|
12
|
-
* operation to get more information about
|
|
12
|
+
* operation to get more information about
|
|
13
|
+
* it.</p>
|
|
13
14
|
* @example
|
|
14
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
16
|
* ```javascript
|
|
@@ -7,9 +7,10 @@ export interface ListLanguageModelsCommandInput extends ListLanguageModelsReques
|
|
|
7
7
|
export interface ListLanguageModelsCommandOutput extends ListLanguageModelsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Provides more information about the custom language models you've created. You can
|
|
11
|
-
* this list to find a specific custom language model. You can then use
|
|
12
|
-
*
|
|
10
|
+
* <p>Provides more information about the custom language models you've created. You can
|
|
11
|
+
* use the information in this list to find a specific custom language model. You can then use
|
|
12
|
+
* the operation to get more information about
|
|
13
|
+
* it.</p>
|
|
13
14
|
* @example
|
|
14
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
16
|
* ```javascript
|
|
@@ -7,7 +7,8 @@ export interface ListMedicalTranscriptionJobsCommandInput extends ListMedicalTra
|
|
|
7
7
|
export interface ListMedicalTranscriptionJobsCommandOutput extends ListMedicalTranscriptionJobsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Lists medical transcription jobs with a specified status or substring that matches their
|
|
10
|
+
* <p>Lists medical transcription jobs with a specified status or substring that matches their
|
|
11
|
+
* names.</p>
|
|
11
12
|
* @example
|
|
12
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
14
|
* ```javascript
|
|
@@ -7,8 +7,8 @@ export interface ListMedicalVocabulariesCommandInput extends ListMedicalVocabula
|
|
|
7
7
|
export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabulariesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Returns a list of vocabularies that match the specified criteria. If you don't enter a value in
|
|
11
|
-
* parameters, returns the entire list of vocabularies.</p>
|
|
10
|
+
* <p>Returns a list of vocabularies that match the specified criteria. If you don't enter a value in
|
|
11
|
+
* any of the request parameters, returns the entire list of vocabularies.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
14
|
* ```javascript
|
|
@@ -7,8 +7,8 @@ export interface ListVocabulariesCommandInput extends ListVocabulariesRequest {
|
|
|
7
7
|
export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Returns a list of vocabularies that match the specified criteria. If no criteria are specified,
|
|
11
|
-
* of vocabularies.</p>
|
|
10
|
+
* <p>Returns a list of vocabularies that match the specified criteria. If no criteria are specified,
|
|
11
|
+
* returns the entire list of vocabularies.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
14
|
* ```javascript
|
|
@@ -7,10 +7,11 @@ export interface StartCallAnalyticsJobCommandInput extends StartCallAnalyticsJob
|
|
|
7
7
|
export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJobResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Starts an asynchronous analytics job that not only transcribes the audio recording of a
|
|
11
|
-
* also returns additional insights. These insights include how quickly or
|
|
12
|
-
*
|
|
13
|
-
*
|
|
10
|
+
* <p>Starts an asynchronous analytics job that not only transcribes the audio recording of a
|
|
11
|
+
* caller and agent, but also returns additional insights. These insights include how quickly or
|
|
12
|
+
* loudly the caller or agent was speaking. To retrieve additional insights with your analytics
|
|
13
|
+
* jobs, create categories. A category is a way to classify analytics jobs based on attributes,
|
|
14
|
+
* such as a customer's sentiment or a particular phrase being used during the call. For more
|
|
14
15
|
* information, see the operation. </p>
|
|
15
16
|
* @example
|
|
16
17
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,8 +7,9 @@ export interface UpdateCallAnalyticsCategoryCommandInput extends UpdateCallAnaly
|
|
|
7
7
|
export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnalyticsCategoryResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Updates the call analytics category with new values. The
|
|
11
|
-
* operation overwrites all of the existing
|
|
10
|
+
* <p>Updates the call analytics category with new values. The
|
|
11
|
+
* <code>UpdateCallAnalyticsCategory</code> operation overwrites all of the existing
|
|
12
|
+
* information with the values that you provide in the request.</p>
|
|
12
13
|
* @example
|
|
13
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
15
|
* ```javascript
|
|
@@ -7,9 +7,10 @@ export interface UpdateMedicalVocabularyCommandInput extends UpdateMedicalVocabu
|
|
|
7
7
|
export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocabularyResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Updates a vocabulary with new values that you provide in a different text file from
|
|
11
|
-
* the vocabulary. The <code>UpdateMedicalVocabulary</code>
|
|
12
|
-
* with the values that you provide in the
|
|
10
|
+
* <p>Updates a vocabulary with new values that you provide in a different text file from
|
|
11
|
+
* the one you used to create the vocabulary. The <code>UpdateMedicalVocabulary</code>
|
|
12
|
+
* operation overwrites all of the existing information with the values that you provide in the
|
|
13
|
+
* request.</p>
|
|
13
14
|
* @example
|
|
14
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
16
|
* ```javascript
|
|
@@ -7,8 +7,9 @@ export interface UpdateVocabularyCommandInput extends UpdateVocabularyRequest {
|
|
|
7
7
|
export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Updates an existing vocabulary with new values. The
|
|
11
|
-
* all of the existing information with
|
|
10
|
+
* <p>Updates an existing vocabulary with new values. The
|
|
11
|
+
* <code>UpdateVocabulary</code> operation overwrites all of the existing information with
|
|
12
|
+
* the values that you provide in the request. </p>
|
|
12
13
|
* @example
|
|
13
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
15
|
* ```javascript
|