@aws-sdk/client-transcribe 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/Transcribe.d.ts +706 -200
- package/dist-types/ts3.4/TranscribeClient.d.ts +363 -112
- package/dist-types/ts3.4/commands/CreateCallAnalyticsCategoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLanguageModelCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateMedicalVocabularyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateVocabularyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateVocabularyFilterCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteCallAnalyticsCategoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteCallAnalyticsJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteLanguageModelCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteMedicalTranscriptionJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteMedicalVocabularyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteTranscriptionJobCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteVocabularyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteVocabularyFilterCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeLanguageModelCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCallAnalyticsCategoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCallAnalyticsJobCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetMedicalTranscriptionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetMedicalVocabularyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetTranscriptionJobCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetVocabularyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetVocabularyFilterCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListCallAnalyticsCategoriesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListCallAnalyticsJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListLanguageModelsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListMedicalTranscriptionJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListMedicalVocabulariesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTranscriptionJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListVocabulariesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListVocabularyFiltersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartCallAnalyticsJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartMedicalTranscriptionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartTranscriptionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateCallAnalyticsCategoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateMedicalVocabularyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateVocabularyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateVocabularyFilterCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +39 -39
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/TranscribeServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1553 -1452
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListCallAnalyticsCategoriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListCallAnalyticsJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListLanguageModelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMedicalTranscriptionJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMedicalVocabulariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTranscriptionJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVocabulariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVocabularyFiltersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +473 -119
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateVocabularyRequest,
|
|
10
|
+
CreateVocabularyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface CreateVocabularyCommandInput extends CreateVocabularyRequest {}
|
|
18
|
+
export interface CreateVocabularyCommandOutput
|
|
19
|
+
extends CreateVocabularyResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateVocabularyCommand extends $Command<
|
|
23
|
+
CreateVocabularyCommandInput,
|
|
24
|
+
CreateVocabularyCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateVocabularyCommandInput;
|
|
28
|
+
constructor(input: CreateVocabularyCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: TranscribeClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateVocabularyCommandInput, CreateVocabularyCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateVocabularyFilterRequest,
|
|
10
|
+
CreateVocabularyFilterResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface CreateVocabularyFilterCommandInput
|
|
18
|
+
extends CreateVocabularyFilterRequest {}
|
|
19
|
+
export interface CreateVocabularyFilterCommandOutput
|
|
20
|
+
extends CreateVocabularyFilterResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateVocabularyFilterCommand extends $Command<
|
|
24
|
+
CreateVocabularyFilterCommandInput,
|
|
25
|
+
CreateVocabularyFilterCommandOutput,
|
|
26
|
+
TranscribeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateVocabularyFilterCommandInput;
|
|
29
|
+
constructor(input: CreateVocabularyFilterCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TranscribeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateVocabularyFilterCommandInput,
|
|
37
|
+
CreateVocabularyFilterCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteCallAnalyticsCategoryRequest,
|
|
10
|
+
DeleteCallAnalyticsCategoryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface DeleteCallAnalyticsCategoryCommandInput
|
|
18
|
+
extends DeleteCallAnalyticsCategoryRequest {}
|
|
19
|
+
export interface DeleteCallAnalyticsCategoryCommandOutput
|
|
20
|
+
extends DeleteCallAnalyticsCategoryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteCallAnalyticsCategoryCommand extends $Command<
|
|
24
|
+
DeleteCallAnalyticsCategoryCommandInput,
|
|
25
|
+
DeleteCallAnalyticsCategoryCommandOutput,
|
|
26
|
+
TranscribeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteCallAnalyticsCategoryCommandInput;
|
|
29
|
+
constructor(input: DeleteCallAnalyticsCategoryCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TranscribeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteCallAnalyticsCategoryCommandInput,
|
|
37
|
+
DeleteCallAnalyticsCategoryCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteCallAnalyticsJobRequest,
|
|
10
|
+
DeleteCallAnalyticsJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface DeleteCallAnalyticsJobCommandInput
|
|
18
|
+
extends DeleteCallAnalyticsJobRequest {}
|
|
19
|
+
export interface DeleteCallAnalyticsJobCommandOutput
|
|
20
|
+
extends DeleteCallAnalyticsJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteCallAnalyticsJobCommand extends $Command<
|
|
24
|
+
DeleteCallAnalyticsJobCommandInput,
|
|
25
|
+
DeleteCallAnalyticsJobCommandOutput,
|
|
26
|
+
TranscribeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteCallAnalyticsJobCommandInput;
|
|
29
|
+
constructor(input: DeleteCallAnalyticsJobCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TranscribeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteCallAnalyticsJobCommandInput,
|
|
37
|
+
DeleteCallAnalyticsJobCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteLanguageModelRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TranscribeClientResolvedConfig,
|
|
13
|
+
} from "../TranscribeClient";
|
|
14
|
+
export interface DeleteLanguageModelCommandInput
|
|
15
|
+
extends DeleteLanguageModelRequest {}
|
|
16
|
+
export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteLanguageModelCommand extends $Command<
|
|
19
|
+
DeleteLanguageModelCommandInput,
|
|
20
|
+
DeleteLanguageModelCommandOutput,
|
|
21
|
+
TranscribeClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteLanguageModelCommandInput;
|
|
24
|
+
constructor(input: DeleteLanguageModelCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: TranscribeClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<DeleteLanguageModelCommandInput, DeleteLanguageModelCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteMedicalTranscriptionJobRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TranscribeClientResolvedConfig,
|
|
13
|
+
} from "../TranscribeClient";
|
|
14
|
+
export interface DeleteMedicalTranscriptionJobCommandInput
|
|
15
|
+
extends DeleteMedicalTranscriptionJobRequest {}
|
|
16
|
+
export interface DeleteMedicalTranscriptionJobCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteMedicalTranscriptionJobCommand extends $Command<
|
|
20
|
+
DeleteMedicalTranscriptionJobCommandInput,
|
|
21
|
+
DeleteMedicalTranscriptionJobCommandOutput,
|
|
22
|
+
TranscribeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteMedicalTranscriptionJobCommandInput;
|
|
25
|
+
constructor(input: DeleteMedicalTranscriptionJobCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: TranscribeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteMedicalTranscriptionJobCommandInput,
|
|
33
|
+
DeleteMedicalTranscriptionJobCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteMedicalVocabularyRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TranscribeClientResolvedConfig,
|
|
13
|
+
} from "../TranscribeClient";
|
|
14
|
+
export interface DeleteMedicalVocabularyCommandInput
|
|
15
|
+
extends DeleteMedicalVocabularyRequest {}
|
|
16
|
+
export interface DeleteMedicalVocabularyCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteMedicalVocabularyCommand extends $Command<
|
|
20
|
+
DeleteMedicalVocabularyCommandInput,
|
|
21
|
+
DeleteMedicalVocabularyCommandOutput,
|
|
22
|
+
TranscribeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteMedicalVocabularyCommandInput;
|
|
25
|
+
constructor(input: DeleteMedicalVocabularyCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: TranscribeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteMedicalVocabularyCommandInput,
|
|
33
|
+
DeleteMedicalVocabularyCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteTranscriptionJobRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TranscribeClientResolvedConfig,
|
|
13
|
+
} from "../TranscribeClient";
|
|
14
|
+
export interface DeleteTranscriptionJobCommandInput
|
|
15
|
+
extends DeleteTranscriptionJobRequest {}
|
|
16
|
+
export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteTranscriptionJobCommand extends $Command<
|
|
19
|
+
DeleteTranscriptionJobCommandInput,
|
|
20
|
+
DeleteTranscriptionJobCommandOutput,
|
|
21
|
+
TranscribeClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteTranscriptionJobCommandInput;
|
|
24
|
+
constructor(input: DeleteTranscriptionJobCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: TranscribeClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<
|
|
31
|
+
DeleteTranscriptionJobCommandInput,
|
|
32
|
+
DeleteTranscriptionJobCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteVocabularyRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TranscribeClientResolvedConfig,
|
|
13
|
+
} from "../TranscribeClient";
|
|
14
|
+
export interface DeleteVocabularyCommandInput extends DeleteVocabularyRequest {}
|
|
15
|
+
export interface DeleteVocabularyCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeleteVocabularyCommand extends $Command<
|
|
18
|
+
DeleteVocabularyCommandInput,
|
|
19
|
+
DeleteVocabularyCommandOutput,
|
|
20
|
+
TranscribeClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteVocabularyCommandInput;
|
|
23
|
+
constructor(input: DeleteVocabularyCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: TranscribeClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteVocabularyFilterRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TranscribeClientResolvedConfig,
|
|
13
|
+
} from "../TranscribeClient";
|
|
14
|
+
export interface DeleteVocabularyFilterCommandInput
|
|
15
|
+
extends DeleteVocabularyFilterRequest {}
|
|
16
|
+
export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteVocabularyFilterCommand extends $Command<
|
|
19
|
+
DeleteVocabularyFilterCommandInput,
|
|
20
|
+
DeleteVocabularyFilterCommandOutput,
|
|
21
|
+
TranscribeClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteVocabularyFilterCommandInput;
|
|
24
|
+
constructor(input: DeleteVocabularyFilterCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: TranscribeClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<
|
|
31
|
+
DeleteVocabularyFilterCommandInput,
|
|
32
|
+
DeleteVocabularyFilterCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeLanguageModelRequest,
|
|
10
|
+
DescribeLanguageModelResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface DescribeLanguageModelCommandInput
|
|
18
|
+
extends DescribeLanguageModelRequest {}
|
|
19
|
+
export interface DescribeLanguageModelCommandOutput
|
|
20
|
+
extends DescribeLanguageModelResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLanguageModelCommand extends $Command<
|
|
24
|
+
DescribeLanguageModelCommandInput,
|
|
25
|
+
DescribeLanguageModelCommandOutput,
|
|
26
|
+
TranscribeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLanguageModelCommandInput;
|
|
29
|
+
constructor(input: DescribeLanguageModelCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TranscribeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLanguageModelCommandInput,
|
|
37
|
+
DescribeLanguageModelCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|