@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
|
+
ListMedicalVocabulariesRequest,
|
|
10
|
+
ListMedicalVocabulariesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface ListMedicalVocabulariesCommandInput
|
|
18
|
+
extends ListMedicalVocabulariesRequest {}
|
|
19
|
+
export interface ListMedicalVocabulariesCommandOutput
|
|
20
|
+
extends ListMedicalVocabulariesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListMedicalVocabulariesCommand extends $Command<
|
|
23
|
+
ListMedicalVocabulariesCommandInput,
|
|
24
|
+
ListMedicalVocabulariesCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListMedicalVocabulariesCommandInput;
|
|
28
|
+
constructor(input: ListMedicalVocabulariesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListMedicalVocabulariesCommandInput,
|
|
35
|
+
ListMedicalVocabulariesCommandOutput
|
|
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
|
+
ListTagsForResourceRequest,
|
|
10
|
+
ListTagsForResourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
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
|
+
ListTranscriptionJobsRequest,
|
|
10
|
+
ListTranscriptionJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface ListTranscriptionJobsCommandInput
|
|
18
|
+
extends ListTranscriptionJobsRequest {}
|
|
19
|
+
export interface ListTranscriptionJobsCommandOutput
|
|
20
|
+
extends ListTranscriptionJobsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTranscriptionJobsCommand extends $Command<
|
|
23
|
+
ListTranscriptionJobsCommandInput,
|
|
24
|
+
ListTranscriptionJobsCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTranscriptionJobsCommandInput;
|
|
28
|
+
constructor(input: ListTranscriptionJobsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListTranscriptionJobsCommandInput,
|
|
35
|
+
ListTranscriptionJobsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
ListVocabulariesRequest,
|
|
10
|
+
ListVocabulariesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface ListVocabulariesCommandInput extends ListVocabulariesRequest {}
|
|
18
|
+
export interface ListVocabulariesCommandOutput
|
|
19
|
+
extends ListVocabulariesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListVocabulariesCommand extends $Command<
|
|
22
|
+
ListVocabulariesCommandInput,
|
|
23
|
+
ListVocabulariesCommandOutput,
|
|
24
|
+
TranscribeClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListVocabulariesCommandInput;
|
|
27
|
+
constructor(input: ListVocabulariesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: TranscribeClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListVocabulariesCommandInput, ListVocabulariesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
ListVocabularyFiltersRequest,
|
|
10
|
+
ListVocabularyFiltersResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface ListVocabularyFiltersCommandInput
|
|
18
|
+
extends ListVocabularyFiltersRequest {}
|
|
19
|
+
export interface ListVocabularyFiltersCommandOutput
|
|
20
|
+
extends ListVocabularyFiltersResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListVocabularyFiltersCommand extends $Command<
|
|
23
|
+
ListVocabularyFiltersCommandInput,
|
|
24
|
+
ListVocabularyFiltersCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListVocabularyFiltersCommandInput;
|
|
28
|
+
constructor(input: ListVocabularyFiltersCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListVocabularyFiltersCommandInput,
|
|
35
|
+
ListVocabularyFiltersCommandOutput
|
|
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
|
+
StartCallAnalyticsJobRequest,
|
|
10
|
+
StartCallAnalyticsJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface StartCallAnalyticsJobCommandInput
|
|
18
|
+
extends StartCallAnalyticsJobRequest {}
|
|
19
|
+
export interface StartCallAnalyticsJobCommandOutput
|
|
20
|
+
extends StartCallAnalyticsJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class StartCallAnalyticsJobCommand extends $Command<
|
|
23
|
+
StartCallAnalyticsJobCommandInput,
|
|
24
|
+
StartCallAnalyticsJobCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StartCallAnalyticsJobCommandInput;
|
|
28
|
+
constructor(input: StartCallAnalyticsJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
StartCallAnalyticsJobCommandInput,
|
|
35
|
+
StartCallAnalyticsJobCommandOutput
|
|
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
|
+
StartMedicalTranscriptionJobRequest,
|
|
10
|
+
StartMedicalTranscriptionJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface StartMedicalTranscriptionJobCommandInput
|
|
18
|
+
extends StartMedicalTranscriptionJobRequest {}
|
|
19
|
+
export interface StartMedicalTranscriptionJobCommandOutput
|
|
20
|
+
extends StartMedicalTranscriptionJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class StartMedicalTranscriptionJobCommand extends $Command<
|
|
23
|
+
StartMedicalTranscriptionJobCommandInput,
|
|
24
|
+
StartMedicalTranscriptionJobCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StartMedicalTranscriptionJobCommandInput;
|
|
28
|
+
constructor(input: StartMedicalTranscriptionJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
StartMedicalTranscriptionJobCommandInput,
|
|
35
|
+
StartMedicalTranscriptionJobCommandOutput
|
|
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
|
+
StartTranscriptionJobRequest,
|
|
10
|
+
StartTranscriptionJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface StartTranscriptionJobCommandInput
|
|
18
|
+
extends StartTranscriptionJobRequest {}
|
|
19
|
+
export interface StartTranscriptionJobCommandOutput
|
|
20
|
+
extends StartTranscriptionJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class StartTranscriptionJobCommand extends $Command<
|
|
23
|
+
StartTranscriptionJobCommandInput,
|
|
24
|
+
StartTranscriptionJobCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StartTranscriptionJobCommandInput;
|
|
28
|
+
constructor(input: StartTranscriptionJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
StartTranscriptionJobCommandInput,
|
|
35
|
+
StartTranscriptionJobCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TranscribeClientResolvedConfig,
|
|
13
|
+
} from "../TranscribeClient";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
TranscribeClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: TranscribeClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
UntagResourceRequest,
|
|
10
|
+
UntagResourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
TranscribeClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: TranscribeClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
UpdateCallAnalyticsCategoryRequest,
|
|
10
|
+
UpdateCallAnalyticsCategoryResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface UpdateCallAnalyticsCategoryCommandInput
|
|
18
|
+
extends UpdateCallAnalyticsCategoryRequest {}
|
|
19
|
+
export interface UpdateCallAnalyticsCategoryCommandOutput
|
|
20
|
+
extends UpdateCallAnalyticsCategoryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateCallAnalyticsCategoryCommand extends $Command<
|
|
23
|
+
UpdateCallAnalyticsCategoryCommandInput,
|
|
24
|
+
UpdateCallAnalyticsCategoryCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateCallAnalyticsCategoryCommandInput;
|
|
28
|
+
constructor(input: UpdateCallAnalyticsCategoryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranscribeClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateCallAnalyticsCategoryCommandInput,
|
|
35
|
+
UpdateCallAnalyticsCategoryCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|