@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 { DeleteCallAnalyticsCategoryRequest, DeleteCallAnalyticsCategoryResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteCallAnalyticsCategoryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteCallAnalyticsCategoryCommandInput extends DeleteCallAnalyticsCategoryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteCallAnalyticsCategoryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteCallAnalyticsCategoryCommandOutput extends DeleteCallAnalyticsCategoryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a Call Analytics category. To use this operation, specify the name of the
|
|
18
23
|
* category you want to delete using <code>CategoryName</code>. Category names are case
|
|
19
24
|
* sensitive.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteCallAnalyticsCategoryCommandOutput extends DeleteCallAnal
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteCallAnalyticsCategoryCommandInput - {@link DeleteCallAnalyticsCategoryCommandInput}
|
|
36
|
+
* @returns {@link DeleteCallAnalyticsCategoryCommandOutput}
|
|
30
37
|
* @see {@link DeleteCallAnalyticsCategoryCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteCallAnalyticsCategoryCommandOutput extends DeleteCallAnal
|
|
|
54
61
|
export declare class DeleteCallAnalyticsCategoryCommand extends $Command<DeleteCallAnalyticsCategoryCommandInput, DeleteCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
55
62
|
readonly input: DeleteCallAnalyticsCategoryCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DeleteCallAnalyticsCategoryCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCallAnalyticsCategoryCommandInput, DeleteCallAnalyticsCategoryCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteCallAnalyticsJobRequest, DeleteCallAnalyticsJobResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteCallAnalyticsJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteCallAnalyticsJobCommandInput extends DeleteCallAnalyticsJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteCallAnalyticsJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteCallAnalyticsJobCommandOutput extends DeleteCallAnalyticsJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a Call Analytics job. To use this operation, specify the name of the job you
|
|
18
23
|
* want to delete using <code>CallAnalyticsJobName</code>. Job names are case
|
|
19
24
|
* sensitive.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteCallAnalyticsJobCommandOutput extends DeleteCallAnalytics
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteCallAnalyticsJobCommandInput - {@link DeleteCallAnalyticsJobCommandInput}
|
|
36
|
+
* @returns {@link DeleteCallAnalyticsJobCommandOutput}
|
|
30
37
|
* @see {@link DeleteCallAnalyticsJobCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteCallAnalyticsJobCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface DeleteCallAnalyticsJobCommandOutput extends DeleteCallAnalytics
|
|
|
50
57
|
export declare class DeleteCallAnalyticsJobCommand extends $Command<DeleteCallAnalyticsJobCommandInput, DeleteCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: DeleteCallAnalyticsJobCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: DeleteCallAnalyticsJobCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCallAnalyticsJobCommandInput, DeleteCallAnalyticsJobCommandOutput>;
|
|
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 { DeleteLanguageModelRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLanguageModelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLanguageModelCommandInput extends DeleteLanguageModelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLanguageModelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a custom language model. To use this operation, specify the name of the
|
|
18
23
|
* language model you want to delete using <code>ModelName</code>. custom language model
|
|
19
24
|
* names are case sensitive.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteLanguageModelCommandInput - {@link DeleteLanguageModelCommandInput}
|
|
36
|
+
* @returns {@link DeleteLanguageModelCommandOutput}
|
|
30
37
|
* @see {@link DeleteLanguageModelCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteLanguageModelCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {
|
|
|
50
57
|
export declare class DeleteLanguageModelCommand extends $Command<DeleteLanguageModelCommandInput, DeleteLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: DeleteLanguageModelCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: DeleteLanguageModelCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLanguageModelCommandInput, DeleteLanguageModelCommandOutput>;
|
|
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 { DeleteMedicalTranscriptionJobRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteMedicalTranscriptionJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteMedicalTranscriptionJobCommandInput extends DeleteMedicalTranscriptionJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteMedicalTranscriptionJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteMedicalTranscriptionJobCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a medical transcription job. To use this operation, specify the name of the
|
|
18
23
|
* job you want to delete using <code>MedicalTranscriptionJobName</code>. Job names are
|
|
19
24
|
* case sensitive.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteMedicalTranscriptionJobCommandOutput extends __MetadataBe
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteMedicalTranscriptionJobCommandInput - {@link DeleteMedicalTranscriptionJobCommandInput}
|
|
36
|
+
* @returns {@link DeleteMedicalTranscriptionJobCommandOutput}
|
|
30
37
|
* @see {@link DeleteMedicalTranscriptionJobCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteMedicalTranscriptionJobCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface DeleteMedicalTranscriptionJobCommandOutput extends __MetadataBe
|
|
|
50
57
|
export declare class DeleteMedicalTranscriptionJobCommand extends $Command<DeleteMedicalTranscriptionJobCommandInput, DeleteMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: DeleteMedicalTranscriptionJobCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: DeleteMedicalTranscriptionJobCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMedicalTranscriptionJobCommandInput, DeleteMedicalTranscriptionJobCommandOutput>;
|
|
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 { DeleteMedicalVocabularyRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteMedicalVocabularyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteMedicalVocabularyCommandInput extends DeleteMedicalVocabularyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteMedicalVocabularyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteMedicalVocabularyCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a custom medical vocabulary. To use this operation, specify the name of the
|
|
18
23
|
* custom vocabulary you want to delete using <code>VocabularyName</code>. Custom
|
|
19
24
|
* vocabulary names are case sensitive.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteMedicalVocabularyCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteMedicalVocabularyCommandInput - {@link DeleteMedicalVocabularyCommandInput}
|
|
36
|
+
* @returns {@link DeleteMedicalVocabularyCommandOutput}
|
|
30
37
|
* @see {@link DeleteMedicalVocabularyCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteMedicalVocabularyCommandOutput extends __MetadataBearer {
|
|
|
54
61
|
export declare class DeleteMedicalVocabularyCommand extends $Command<DeleteMedicalVocabularyCommandInput, DeleteMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
55
62
|
readonly input: DeleteMedicalVocabularyCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DeleteMedicalVocabularyCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMedicalVocabularyCommandInput, DeleteMedicalVocabularyCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteTranscriptionJobRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteTranscriptionJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteTranscriptionJobCommandInput extends DeleteTranscriptionJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteTranscriptionJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a transcription job. To use this operation, specify the name of the job you
|
|
18
23
|
* want to delete using <code>TranscriptionJobName</code>. Job names are case
|
|
19
24
|
* sensitive.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteTranscriptionJobCommandInput - {@link DeleteTranscriptionJobCommandInput}
|
|
36
|
+
* @returns {@link DeleteTranscriptionJobCommandOutput}
|
|
30
37
|
* @see {@link DeleteTranscriptionJobCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteTranscriptionJobCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {
|
|
|
50
57
|
export declare class DeleteTranscriptionJobCommand extends $Command<DeleteTranscriptionJobCommandInput, DeleteTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
51
58
|
readonly input: DeleteTranscriptionJobCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: DeleteTranscriptionJobCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTranscriptionJobCommandInput, DeleteTranscriptionJobCommandOutput>;
|
|
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 { DeleteVocabularyRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVocabularyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVocabularyCommandInput extends DeleteVocabularyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVocabularyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVocabularyCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a custom vocabulary. To use this operation, specify the name of the custom
|
|
18
23
|
* vocabulary you want to delete using <code>VocabularyName</code>. Custom vocabulary names
|
|
19
24
|
* are case sensitive.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteVocabularyCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteVocabularyCommandInput - {@link DeleteVocabularyCommandInput}
|
|
36
|
+
* @returns {@link DeleteVocabularyCommandOutput}
|
|
30
37
|
* @see {@link DeleteVocabularyCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteVocabularyCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteVocabularyCommandOutput extends __MetadataBearer {
|
|
|
54
61
|
export declare class DeleteVocabularyCommand extends $Command<DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
55
62
|
readonly input: DeleteVocabularyCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DeleteVocabularyCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteVocabularyFilterRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVocabularyFilterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVocabularyFilterCommandInput extends DeleteVocabularyFilterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVocabularyFilterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a custom vocabulary filter. To use this operation, specify the name of the
|
|
18
23
|
* custom vocabulary filter you want to delete using <code>VocabularyFilterName</code>.
|
|
19
24
|
* Custom vocabulary filter names are case sensitive.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteVocabularyFilterCommandInput - {@link DeleteVocabularyFilterCommandInput}
|
|
36
|
+
* @returns {@link DeleteVocabularyFilterCommandOutput}
|
|
30
37
|
* @see {@link DeleteVocabularyFilterCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteVocabularyFilterCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {
|
|
|
54
61
|
export declare class DeleteVocabularyFilterCommand extends $Command<DeleteVocabularyFilterCommandInput, DeleteVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
55
62
|
readonly input: DeleteVocabularyFilterCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DeleteVocabularyFilterCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVocabularyFilterCommandInput, DeleteVocabularyFilterCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeLanguageModelRequest, DescribeLanguageModelResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeLanguageModelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeLanguageModelCommandInput extends DescribeLanguageModelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeLanguageModelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeLanguageModelCommandOutput extends DescribeLanguageModelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides information about the specified custom language model.</p>
|
|
18
23
|
* <p>This operation also shows if the base language model that you used to create your
|
|
19
24
|
* custom language model has been updated. If Amazon Transcribe has updated the base
|
|
@@ -31,6 +36,8 @@ export interface DescribeLanguageModelCommandOutput extends DescribeLanguageMode
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param DescribeLanguageModelCommandInput - {@link DescribeLanguageModelCommandInput}
|
|
40
|
+
* @returns {@link DescribeLanguageModelCommandOutput}
|
|
34
41
|
* @see {@link DescribeLanguageModelCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link DescribeLanguageModelCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DescribeLanguageModelCommandOutput extends DescribeLanguageMode
|
|
|
58
65
|
export declare class DescribeLanguageModelCommand extends $Command<DescribeLanguageModelCommandInput, DescribeLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
|
|
59
66
|
readonly input: DescribeLanguageModelCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DescribeLanguageModelCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLanguageModelCommandInput, DescribeLanguageModelCommandOutput>;
|
|
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 { GetCallAnalyticsCategoryRequest, GetCallAnalyticsCategoryResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCallAnalyticsCategoryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCallAnalyticsCategoryCommandInput extends GetCallAnalyticsCategoryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCallAnalyticsCategoryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCallAnalyticsCategoryCommandOutput extends GetCallAnalyticsCategoryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides information about the specified Call Analytics category.</p>
|
|
18
23
|
* <p>To get a list of your Call Analytics categories, use the operation.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetCallAnalyticsCategoryCommandOutput extends GetCallAnalyticsC
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetCallAnalyticsCategoryCommandInput - {@link GetCallAnalyticsCategoryCommandInput}
|
|
35
|
+
* @returns {@link GetCallAnalyticsCategoryCommandOutput}
|
|
29
36
|
* @see {@link GetCallAnalyticsCategoryCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetCallAnalyticsCategoryCommandOutput extends GetCallAnalyticsC
|
|
|
53
60
|
export declare class GetCallAnalyticsCategoryCommand extends $Command<GetCallAnalyticsCategoryCommandInput, GetCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
54
61
|
readonly input: GetCallAnalyticsCategoryCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetCallAnalyticsCategoryCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCallAnalyticsCategoryCommandInput, GetCallAnalyticsCategoryCommandOutput>;
|
|
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 { GetCallAnalyticsJobRequest, GetCallAnalyticsJobResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCallAnalyticsJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCallAnalyticsJobCommandInput extends GetCallAnalyticsJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCallAnalyticsJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides information about the specified Call Analytics job.</p>
|
|
18
23
|
* <p>To view the job's status, refer to <code>CallAnalyticsJobStatus</code>. If the status
|
|
19
24
|
* is <code>COMPLETED</code>, the job is finished. You can find your completed transcript
|
|
@@ -36,6 +41,8 @@ export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobRes
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param GetCallAnalyticsJobCommandInput - {@link GetCallAnalyticsJobCommandInput}
|
|
45
|
+
* @returns {@link GetCallAnalyticsJobCommandOutput}
|
|
39
46
|
* @see {@link GetCallAnalyticsJobCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link GetCallAnalyticsJobCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobRes
|
|
|
63
70
|
export declare class GetCallAnalyticsJobCommand extends $Command<GetCallAnalyticsJobCommandInput, GetCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
64
71
|
readonly input: GetCallAnalyticsJobCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: GetCallAnalyticsJobCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCallAnalyticsJobCommandInput, GetCallAnalyticsJobCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetMedicalTranscriptionJobRequest, GetMedicalTranscriptionJobResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMedicalTranscriptionJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMedicalTranscriptionJobCommandInput extends GetMedicalTranscriptionJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMedicalTranscriptionJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTranscriptionJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides information about the specified medical transcription job.</p>
|
|
18
23
|
* <p>To view the status of the specified medical transcription job, check the
|
|
19
24
|
* <code>TranscriptionJobStatus</code> field. If the status is <code>COMPLETED</code>,
|
|
@@ -32,6 +37,8 @@ export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTrans
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param GetMedicalTranscriptionJobCommandInput - {@link GetMedicalTranscriptionJobCommandInput}
|
|
41
|
+
* @returns {@link GetMedicalTranscriptionJobCommandOutput}
|
|
35
42
|
* @see {@link GetMedicalTranscriptionJobCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link GetMedicalTranscriptionJobCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTrans
|
|
|
59
66
|
export declare class GetMedicalTranscriptionJobCommand extends $Command<GetMedicalTranscriptionJobCommandInput, GetMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
60
67
|
readonly input: GetMedicalTranscriptionJobCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: GetMedicalTranscriptionJobCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMedicalTranscriptionJobCommandInput, GetMedicalTranscriptionJobCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|