@aws-sdk/client-transcribe 3.296.0 → 3.297.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/Transcribe.d.ts +40 -0
- package/dist-types/TranscribeClient.d.ts +24 -4
- package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +16 -0
- package/dist-types/commands/CreateLanguageModelCommand.d.ts +16 -0
- package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +16 -0
- package/dist-types/commands/CreateVocabularyCommand.d.ts +16 -0
- package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLanguageModelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLanguageModelCommand.d.ts +16 -0
- package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +16 -0
- package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +16 -0
- package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +16 -0
- package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +16 -0
- package/dist-types/commands/GetTranscriptionJobCommand.d.ts +16 -0
- package/dist-types/commands/GetVocabularyCommand.d.ts +16 -0
- package/dist-types/commands/GetVocabularyFilterCommand.d.ts +16 -0
- package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +16 -0
- package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListLanguageModelsCommand.d.ts +16 -0
- package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListVocabulariesCommand.d.ts +16 -0
- package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +16 -0
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +16 -0
- package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +16 -0
- package/dist-types/commands/StartTranscriptionJobCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +16 -0
- package/dist-types/commands/UpdateVocabularyCommand.d.ts +16 -0
- package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +16 -0
- package/dist-types/models/TranscribeServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +320 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCallAnalyticsCategoriesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCallAnalyticsJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLanguageModelsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMedicalTranscriptionJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMedicalVocabulariesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTranscriptionJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVocabulariesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVocabularyFiltersPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetMedicalVocabularyRequest, GetMedicalVocabularyResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMedicalVocabularyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMedicalVocabularyCommandInput extends GetMedicalVocabularyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMedicalVocabularyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMedicalVocabularyCommandOutput extends GetMedicalVocabularyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides information about the specified custom medical vocabulary.</p>
|
|
18
23
|
* <p>To view the status of the specified custom medical vocabulary, check the
|
|
19
24
|
* <code>VocabularyState</code> field. If the status is <code>READY</code>, your custom
|
|
@@ -30,6 +35,8 @@ export interface GetMedicalVocabularyCommandOutput extends GetMedicalVocabularyR
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param GetMedicalVocabularyCommandInput - {@link GetMedicalVocabularyCommandInput}
|
|
39
|
+
* @returns {@link GetMedicalVocabularyCommandOutput}
|
|
33
40
|
* @see {@link GetMedicalVocabularyCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link GetMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface GetMedicalVocabularyCommandOutput extends GetMedicalVocabularyR
|
|
|
57
64
|
export declare class GetMedicalVocabularyCommand extends $Command<GetMedicalVocabularyCommandInput, GetMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
58
65
|
readonly input: GetMedicalVocabularyCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: GetMedicalVocabularyCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMedicalVocabularyCommandInput, GetMedicalVocabularyCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetTranscriptionJobRequest, GetTranscriptionJobResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTranscriptionJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTranscriptionJobCommandInput extends GetTranscriptionJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTranscriptionJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides information about the specified transcription job.</p>
|
|
18
23
|
* <p>To view the status of the specified transcription job, check the
|
|
19
24
|
* <code>TranscriptionJobStatus</code> field. If the status is <code>COMPLETED</code>,
|
|
@@ -34,6 +39,8 @@ export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobRes
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param GetTranscriptionJobCommandInput - {@link GetTranscriptionJobCommandInput}
|
|
43
|
+
* @returns {@link GetTranscriptionJobCommandOutput}
|
|
37
44
|
* @see {@link GetTranscriptionJobCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link GetTranscriptionJobCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobRes
|
|
|
61
68
|
export declare class GetTranscriptionJobCommand extends $Command<GetTranscriptionJobCommandInput, GetTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
62
69
|
readonly input: GetTranscriptionJobCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: GetTranscriptionJobCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTranscriptionJobCommandInput, GetTranscriptionJobCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetVocabularyRequest, GetVocabularyResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetVocabularyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetVocabularyCommandInput extends GetVocabularyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetVocabularyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetVocabularyCommandOutput extends GetVocabularyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides information about the specified custom vocabulary.</p>
|
|
18
23
|
* <p>To view the status of the specified custom vocabulary, check the
|
|
19
24
|
* <code>VocabularyState</code> field. If the status is <code>READY</code>, your custom
|
|
@@ -31,6 +36,8 @@ export interface GetVocabularyCommandOutput extends GetVocabularyResponse, __Met
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param GetVocabularyCommandInput - {@link GetVocabularyCommandInput}
|
|
40
|
+
* @returns {@link GetVocabularyCommandOutput}
|
|
34
41
|
* @see {@link GetVocabularyCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link GetVocabularyCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface GetVocabularyCommandOutput extends GetVocabularyResponse, __Met
|
|
|
58
65
|
export declare class GetVocabularyCommand extends $Command<GetVocabularyCommandInput, GetVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
59
66
|
readonly input: GetVocabularyCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: GetVocabularyCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetVocabularyCommandInput, GetVocabularyCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetVocabularyFilterRequest, GetVocabularyFilterResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetVocabularyFilterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetVocabularyFilterCommandInput extends GetVocabularyFilterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetVocabularyFilterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetVocabularyFilterCommandOutput extends GetVocabularyFilterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides information about the specified custom vocabulary filter.</p>
|
|
18
23
|
* <p>To get a list of your custom vocabulary filters, use the operation.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetVocabularyFilterCommandOutput extends GetVocabularyFilterRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetVocabularyFilterCommandInput - {@link GetVocabularyFilterCommandInput}
|
|
35
|
+
* @returns {@link GetVocabularyFilterCommandOutput}
|
|
29
36
|
* @see {@link GetVocabularyFilterCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetVocabularyFilterCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetVocabularyFilterCommandOutput extends GetVocabularyFilterRes
|
|
|
53
60
|
export declare class GetVocabularyFilterCommand extends $Command<GetVocabularyFilterCommandInput, GetVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
54
61
|
readonly input: GetVocabularyFilterCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetVocabularyFilterCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetVocabularyFilterCommandInput, GetVocabularyFilterCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListCallAnalyticsCategoriesRequest, ListCallAnalyticsCategoriesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCallAnalyticsCategoriesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCallAnalyticsCategoriesCommandInput extends ListCallAnalyticsCategoriesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCallAnalyticsCategoriesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCallAnalyticsCategoriesCommandOutput extends ListCallAnalyticsCategoriesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a list of Call Analytics categories, including all rules that make up each
|
|
18
23
|
* category.</p>
|
|
19
24
|
* <p>To get detailed information about a specific Call Analytics category, use the operation.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListCallAnalyticsCategoriesCommandOutput extends ListCallAnalyt
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListCallAnalyticsCategoriesCommandInput - {@link ListCallAnalyticsCategoriesCommandInput}
|
|
36
|
+
* @returns {@link ListCallAnalyticsCategoriesCommandOutput}
|
|
30
37
|
* @see {@link ListCallAnalyticsCategoriesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListCallAnalyticsCategoriesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListCallAnalyticsCategoriesCommandOutput extends ListCallAnalyt
|
|
|
50
57
|
export declare class ListCallAnalyticsCategoriesCommand extends $Command<ListCallAnalyticsCategoriesCommandInput, ListCallAnalyticsCategoriesCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: ListCallAnalyticsCategoriesCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListCallAnalyticsCategoriesCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCallAnalyticsCategoriesCommandInput, ListCallAnalyticsCategoriesCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListCallAnalyticsJobsRequest, ListCallAnalyticsJobsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCallAnalyticsJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCallAnalyticsJobsCommandInput extends ListCallAnalyticsJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCallAnalyticsJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCallAnalyticsJobsCommandOutput extends ListCallAnalyticsJobsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a list of Call Analytics jobs that match the specified criteria. If no
|
|
18
23
|
* criteria are specified, all Call Analytics jobs are returned.</p>
|
|
19
24
|
* <p>To get detailed information about a specific Call Analytics job, use the operation.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListCallAnalyticsJobsCommandOutput extends ListCallAnalyticsJob
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListCallAnalyticsJobsCommandInput - {@link ListCallAnalyticsJobsCommandInput}
|
|
36
|
+
* @returns {@link ListCallAnalyticsJobsCommandOutput}
|
|
30
37
|
* @see {@link ListCallAnalyticsJobsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListCallAnalyticsJobsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListCallAnalyticsJobsCommandOutput extends ListCallAnalyticsJob
|
|
|
50
57
|
export declare class ListCallAnalyticsJobsCommand extends $Command<ListCallAnalyticsJobsCommandInput, ListCallAnalyticsJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: ListCallAnalyticsJobsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListCallAnalyticsJobsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCallAnalyticsJobsCommandInput, ListCallAnalyticsJobsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListLanguageModelsRequest, ListLanguageModelsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLanguageModelsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLanguageModelsCommandInput extends ListLanguageModelsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLanguageModelsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLanguageModelsCommandOutput extends ListLanguageModelsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a list of custom language models that match the specified criteria. If no
|
|
18
23
|
* criteria are specified, all custom language models are returned.</p>
|
|
19
24
|
* <p>To get detailed information about a specific custom language model, use the operation.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListLanguageModelsCommandOutput extends ListLanguageModelsRespo
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListLanguageModelsCommandInput - {@link ListLanguageModelsCommandInput}
|
|
36
|
+
* @returns {@link ListLanguageModelsCommandOutput}
|
|
30
37
|
* @see {@link ListLanguageModelsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListLanguageModelsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListLanguageModelsCommandOutput extends ListLanguageModelsRespo
|
|
|
50
57
|
export declare class ListLanguageModelsCommand extends $Command<ListLanguageModelsCommandInput, ListLanguageModelsCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: ListLanguageModelsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListLanguageModelsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLanguageModelsCommandInput, ListLanguageModelsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListMedicalTranscriptionJobsRequest, ListMedicalTranscriptionJobsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListMedicalTranscriptionJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListMedicalTranscriptionJobsCommandInput extends ListMedicalTranscriptionJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListMedicalTranscriptionJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListMedicalTranscriptionJobsCommandOutput extends ListMedicalTranscriptionJobsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a list of medical transcription jobs that match the specified criteria. If no
|
|
18
23
|
* criteria are specified, all medical transcription jobs are returned.</p>
|
|
19
24
|
* <p>To get detailed information about a specific medical transcription job, use the operation.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListMedicalTranscriptionJobsCommandOutput extends ListMedicalTr
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListMedicalTranscriptionJobsCommandInput - {@link ListMedicalTranscriptionJobsCommandInput}
|
|
36
|
+
* @returns {@link ListMedicalTranscriptionJobsCommandOutput}
|
|
30
37
|
* @see {@link ListMedicalTranscriptionJobsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListMedicalTranscriptionJobsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListMedicalTranscriptionJobsCommandOutput extends ListMedicalTr
|
|
|
50
57
|
export declare class ListMedicalTranscriptionJobsCommand extends $Command<ListMedicalTranscriptionJobsCommandInput, ListMedicalTranscriptionJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: ListMedicalTranscriptionJobsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListMedicalTranscriptionJobsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMedicalTranscriptionJobsCommandInput, ListMedicalTranscriptionJobsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListMedicalVocabulariesRequest, ListMedicalVocabulariesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListMedicalVocabulariesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListMedicalVocabulariesCommandInput extends ListMedicalVocabulariesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListMedicalVocabulariesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabulariesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a list of custom medical vocabularies that match the specified criteria. If
|
|
18
23
|
* no criteria are specified, all custom medical vocabularies are returned.</p>
|
|
19
24
|
* <p>To get detailed information about a specific custom medical vocabulary, use the operation.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabul
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListMedicalVocabulariesCommandInput - {@link ListMedicalVocabulariesCommandInput}
|
|
36
|
+
* @returns {@link ListMedicalVocabulariesCommandOutput}
|
|
30
37
|
* @see {@link ListMedicalVocabulariesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListMedicalVocabulariesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabul
|
|
|
50
57
|
export declare class ListMedicalVocabulariesCommand extends $Command<ListMedicalVocabulariesCommandInput, ListMedicalVocabulariesCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: ListMedicalVocabulariesCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListMedicalVocabulariesCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMedicalVocabulariesCommandInput, ListMedicalVocabulariesCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all tags associated with the specified transcription job, vocabulary, model, or
|
|
18
23
|
* resource.</p>
|
|
19
24
|
* <p>To learn more about using tags with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tagging.html">Tagging
|
|
@@ -28,6 +33,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
37
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
31
38
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
55
62
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TranscribeClientResolvedConfig> {
|
|
56
63
|
readonly input: ListTagsForResourceCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ListTagsForResourceCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTranscriptionJobsRequest, ListTranscriptionJobsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTranscriptionJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTranscriptionJobsCommandInput extends ListTranscriptionJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTranscriptionJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTranscriptionJobsCommandOutput extends ListTranscriptionJobsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a list of transcription jobs that match the specified criteria. If no
|
|
18
23
|
* criteria are specified, all transcription jobs are returned.</p>
|
|
19
24
|
* <p>To get detailed information about a specific transcription job, use the operation.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListTranscriptionJobsCommandOutput extends ListTranscriptionJob
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListTranscriptionJobsCommandInput - {@link ListTranscriptionJobsCommandInput}
|
|
36
|
+
* @returns {@link ListTranscriptionJobsCommandOutput}
|
|
30
37
|
* @see {@link ListTranscriptionJobsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListTranscriptionJobsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListTranscriptionJobsCommandOutput extends ListTranscriptionJob
|
|
|
50
57
|
export declare class ListTranscriptionJobsCommand extends $Command<ListTranscriptionJobsCommandInput, ListTranscriptionJobsCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: ListTranscriptionJobsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListTranscriptionJobsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTranscriptionJobsCommandInput, ListTranscriptionJobsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListVocabulariesRequest, ListVocabulariesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListVocabulariesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListVocabulariesCommandInput extends ListVocabulariesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListVocabulariesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a list of custom vocabularies that match the specified criteria. If no
|
|
18
23
|
* criteria are specified, all custom vocabularies are returned.</p>
|
|
19
24
|
* <p>To get detailed information about a specific custom vocabulary, use the operation.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse,
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListVocabulariesCommandInput - {@link ListVocabulariesCommandInput}
|
|
36
|
+
* @returns {@link ListVocabulariesCommandOutput}
|
|
30
37
|
* @see {@link ListVocabulariesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListVocabulariesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse,
|
|
|
50
57
|
export declare class ListVocabulariesCommand extends $Command<ListVocabulariesCommandInput, ListVocabulariesCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: ListVocabulariesCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListVocabulariesCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVocabulariesCommandInput, ListVocabulariesCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|