@aws-sdk/client-transcribe 3.169.0 → 3.171.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 +667 -200
- package/dist-types/ts3.4/TranscribeClient.d.ts +338 -112
- package/dist-types/ts3.4/commands/CreateCallAnalyticsCategoryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateLanguageModelCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateMedicalVocabularyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateVocabularyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateVocabularyFilterCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteCallAnalyticsCategoryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteCallAnalyticsJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteLanguageModelCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/DeleteMedicalTranscriptionJobCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteMedicalVocabularyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteTranscriptionJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteVocabularyCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteVocabularyFilterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeLanguageModelCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetCallAnalyticsCategoryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetCallAnalyticsJobCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetMedicalTranscriptionJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetMedicalVocabularyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetTranscriptionJobCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetVocabularyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetVocabularyFilterCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListCallAnalyticsCategoriesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListCallAnalyticsJobsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListLanguageModelsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListMedicalTranscriptionJobsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListMedicalVocabulariesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTranscriptionJobsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListVocabulariesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListVocabularyFiltersCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartCallAnalyticsJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartMedicalTranscriptionJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartTranscriptionJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateCallAnalyticsCategoryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateMedicalVocabularyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateVocabularyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateVocabularyFilterCommand.d.ts +39 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1118 -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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
GetCallAnalyticsCategoryRequest,
|
|
10
|
+
GetCallAnalyticsCategoryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface GetCallAnalyticsCategoryCommandInput
|
|
18
|
+
extends GetCallAnalyticsCategoryRequest {}
|
|
19
|
+
export interface GetCallAnalyticsCategoryCommandOutput
|
|
20
|
+
extends GetCallAnalyticsCategoryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetCallAnalyticsCategoryCommand extends $Command<
|
|
23
|
+
GetCallAnalyticsCategoryCommandInput,
|
|
24
|
+
GetCallAnalyticsCategoryCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetCallAnalyticsCategoryCommandInput;
|
|
28
|
+
constructor(input: GetCallAnalyticsCategoryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetCallAnalyticsCategoryCommandInput,
|
|
35
|
+
GetCallAnalyticsCategoryCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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 {
|
|
9
|
+
GetCallAnalyticsJobRequest,
|
|
10
|
+
GetCallAnalyticsJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface GetCallAnalyticsJobCommandInput
|
|
18
|
+
extends GetCallAnalyticsJobRequest {}
|
|
19
|
+
export interface GetCallAnalyticsJobCommandOutput
|
|
20
|
+
extends GetCallAnalyticsJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetCallAnalyticsJobCommand extends $Command<
|
|
23
|
+
GetCallAnalyticsJobCommandInput,
|
|
24
|
+
GetCallAnalyticsJobCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetCallAnalyticsJobCommandInput;
|
|
28
|
+
constructor(input: GetCallAnalyticsJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetCallAnalyticsJobCommandInput, GetCallAnalyticsJobCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
GetMedicalTranscriptionJobRequest,
|
|
10
|
+
GetMedicalTranscriptionJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface GetMedicalTranscriptionJobCommandInput
|
|
18
|
+
extends GetMedicalTranscriptionJobRequest {}
|
|
19
|
+
export interface GetMedicalTranscriptionJobCommandOutput
|
|
20
|
+
extends GetMedicalTranscriptionJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetMedicalTranscriptionJobCommand extends $Command<
|
|
23
|
+
GetMedicalTranscriptionJobCommandInput,
|
|
24
|
+
GetMedicalTranscriptionJobCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetMedicalTranscriptionJobCommandInput;
|
|
28
|
+
constructor(input: GetMedicalTranscriptionJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetMedicalTranscriptionJobCommandInput,
|
|
35
|
+
GetMedicalTranscriptionJobCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
GetMedicalVocabularyRequest,
|
|
10
|
+
GetMedicalVocabularyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface GetMedicalVocabularyCommandInput
|
|
18
|
+
extends GetMedicalVocabularyRequest {}
|
|
19
|
+
export interface GetMedicalVocabularyCommandOutput
|
|
20
|
+
extends GetMedicalVocabularyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetMedicalVocabularyCommand extends $Command<
|
|
23
|
+
GetMedicalVocabularyCommandInput,
|
|
24
|
+
GetMedicalVocabularyCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetMedicalVocabularyCommandInput;
|
|
28
|
+
constructor(input: GetMedicalVocabularyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetMedicalVocabularyCommandInput,
|
|
35
|
+
GetMedicalVocabularyCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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 {
|
|
9
|
+
GetTranscriptionJobRequest,
|
|
10
|
+
GetTranscriptionJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface GetTranscriptionJobCommandInput
|
|
18
|
+
extends GetTranscriptionJobRequest {}
|
|
19
|
+
export interface GetTranscriptionJobCommandOutput
|
|
20
|
+
extends GetTranscriptionJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetTranscriptionJobCommand extends $Command<
|
|
23
|
+
GetTranscriptionJobCommandInput,
|
|
24
|
+
GetTranscriptionJobCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetTranscriptionJobCommandInput;
|
|
28
|
+
constructor(input: GetTranscriptionJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetTranscriptionJobCommandInput, GetTranscriptionJobCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
GetVocabularyRequest,
|
|
10
|
+
GetVocabularyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface GetVocabularyCommandInput extends GetVocabularyRequest {}
|
|
18
|
+
export interface GetVocabularyCommandOutput
|
|
19
|
+
extends GetVocabularyResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetVocabularyCommand extends $Command<
|
|
22
|
+
GetVocabularyCommandInput,
|
|
23
|
+
GetVocabularyCommandOutput,
|
|
24
|
+
TranscribeClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetVocabularyCommandInput;
|
|
27
|
+
constructor(input: GetVocabularyCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: TranscribeClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetVocabularyCommandInput, GetVocabularyCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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 {
|
|
9
|
+
GetVocabularyFilterRequest,
|
|
10
|
+
GetVocabularyFilterResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface GetVocabularyFilterCommandInput
|
|
18
|
+
extends GetVocabularyFilterRequest {}
|
|
19
|
+
export interface GetVocabularyFilterCommandOutput
|
|
20
|
+
extends GetVocabularyFilterResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetVocabularyFilterCommand extends $Command<
|
|
23
|
+
GetVocabularyFilterCommandInput,
|
|
24
|
+
GetVocabularyFilterCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetVocabularyFilterCommandInput;
|
|
28
|
+
constructor(input: GetVocabularyFilterCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetVocabularyFilterCommandInput, GetVocabularyFilterCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
ListCallAnalyticsCategoriesRequest,
|
|
10
|
+
ListCallAnalyticsCategoriesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface ListCallAnalyticsCategoriesCommandInput
|
|
18
|
+
extends ListCallAnalyticsCategoriesRequest {}
|
|
19
|
+
export interface ListCallAnalyticsCategoriesCommandOutput
|
|
20
|
+
extends ListCallAnalyticsCategoriesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListCallAnalyticsCategoriesCommand extends $Command<
|
|
23
|
+
ListCallAnalyticsCategoriesCommandInput,
|
|
24
|
+
ListCallAnalyticsCategoriesCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListCallAnalyticsCategoriesCommandInput;
|
|
28
|
+
constructor(input: ListCallAnalyticsCategoriesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListCallAnalyticsCategoriesCommandInput,
|
|
35
|
+
ListCallAnalyticsCategoriesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
ListCallAnalyticsJobsRequest,
|
|
10
|
+
ListCallAnalyticsJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface ListCallAnalyticsJobsCommandInput
|
|
18
|
+
extends ListCallAnalyticsJobsRequest {}
|
|
19
|
+
export interface ListCallAnalyticsJobsCommandOutput
|
|
20
|
+
extends ListCallAnalyticsJobsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListCallAnalyticsJobsCommand extends $Command<
|
|
23
|
+
ListCallAnalyticsJobsCommandInput,
|
|
24
|
+
ListCallAnalyticsJobsCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListCallAnalyticsJobsCommandInput;
|
|
28
|
+
constructor(input: ListCallAnalyticsJobsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListCallAnalyticsJobsCommandInput,
|
|
35
|
+
ListCallAnalyticsJobsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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 {
|
|
9
|
+
ListLanguageModelsRequest,
|
|
10
|
+
ListLanguageModelsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface ListLanguageModelsCommandInput
|
|
18
|
+
extends ListLanguageModelsRequest {}
|
|
19
|
+
export interface ListLanguageModelsCommandOutput
|
|
20
|
+
extends ListLanguageModelsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListLanguageModelsCommand extends $Command<
|
|
23
|
+
ListLanguageModelsCommandInput,
|
|
24
|
+
ListLanguageModelsCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListLanguageModelsCommandInput;
|
|
28
|
+
constructor(input: ListLanguageModelsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListLanguageModelsCommandInput, ListLanguageModelsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
ListMedicalTranscriptionJobsRequest,
|
|
10
|
+
ListMedicalTranscriptionJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface ListMedicalTranscriptionJobsCommandInput
|
|
18
|
+
extends ListMedicalTranscriptionJobsRequest {}
|
|
19
|
+
export interface ListMedicalTranscriptionJobsCommandOutput
|
|
20
|
+
extends ListMedicalTranscriptionJobsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListMedicalTranscriptionJobsCommand extends $Command<
|
|
23
|
+
ListMedicalTranscriptionJobsCommandInput,
|
|
24
|
+
ListMedicalTranscriptionJobsCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListMedicalTranscriptionJobsCommandInput;
|
|
28
|
+
constructor(input: ListMedicalTranscriptionJobsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListMedicalTranscriptionJobsCommandInput,
|
|
35
|
+
ListMedicalTranscriptionJobsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|