@aws-sdk/client-transcribe 3.458.0 → 3.460.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/README.md +32 -0
- package/dist-cjs/Transcribe.js +8 -0
- package/dist-cjs/commands/DeleteMedicalScribeJobCommand.js +51 -0
- package/dist-cjs/commands/GetMedicalScribeJobCommand.js +51 -0
- package/dist-cjs/commands/ListMedicalScribeJobsCommand.js +51 -0
- package/dist-cjs/commands/StartMedicalScribeJobCommand.js +51 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +14 -1
- package/dist-cjs/pagination/ListMedicalScribeJobsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +242 -2
- package/dist-es/Transcribe.js +8 -0
- package/dist-es/commands/DeleteMedicalScribeJobCommand.js +47 -0
- package/dist-es/commands/GetMedicalScribeJobCommand.js +47 -0
- package/dist-es/commands/ListMedicalScribeJobsCommand.js +47 -0
- package/dist-es/commands/StartMedicalScribeJobCommand.js +47 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/pagination/ListMedicalScribeJobsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +232 -0
- package/dist-types/Transcribe.d.ts +28 -0
- package/dist-types/TranscribeClient.d.ts +6 -2
- package/dist-types/commands/DeleteMedicalScribeJobCommand.d.ts +87 -0
- package/dist-types/commands/GetMedicalScribeJobCommand.d.ts +135 -0
- package/dist-types/commands/ListMedicalScribeJobsCommand.d.ts +104 -0
- package/dist-types/commands/StartMedicalScribeJobCommand.d.ts +203 -0
- package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/StartTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +623 -77
- package/dist-types/pagination/ListMedicalScribeJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/Transcribe.d.ts +68 -0
- package/dist-types/ts3.4/TranscribeClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteMedicalScribeJobCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetMedicalScribeJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListMedicalScribeJobsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartMedicalScribeJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +93 -0
- package/dist-types/ts3.4/pagination/ListMedicalScribeJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +12 -12
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMedicalScribeJobsCommandInput, ListMedicalScribeJobsCommandOutput } from "../commands/ListMedicalScribeJobsCommand";
|
|
3
|
+
import { TranscribePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListMedicalScribeJobs(config: TranscribePaginationConfiguration, input: ListMedicalScribeJobsCommandInput, ...additionalArguments: any): Paginator<ListMedicalScribeJobsCommandOutput>;
|
|
@@ -2,6 +2,7 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListCallAnalyticsCategoriesPaginator";
|
|
3
3
|
export * from "./ListCallAnalyticsJobsPaginator";
|
|
4
4
|
export * from "./ListLanguageModelsPaginator";
|
|
5
|
+
export * from "./ListMedicalScribeJobsPaginator";
|
|
5
6
|
export * from "./ListMedicalTranscriptionJobsPaginator";
|
|
6
7
|
export * from "./ListMedicalVocabulariesPaginator";
|
|
7
8
|
export * from "./ListTranscriptionJobsPaginator";
|
|
@@ -8,6 +8,7 @@ import { CreateVocabularyFilterCommandInput, CreateVocabularyFilterCommandOutput
|
|
|
8
8
|
import { DeleteCallAnalyticsCategoryCommandInput, DeleteCallAnalyticsCategoryCommandOutput } from "../commands/DeleteCallAnalyticsCategoryCommand";
|
|
9
9
|
import { DeleteCallAnalyticsJobCommandInput, DeleteCallAnalyticsJobCommandOutput } from "../commands/DeleteCallAnalyticsJobCommand";
|
|
10
10
|
import { DeleteLanguageModelCommandInput, DeleteLanguageModelCommandOutput } from "../commands/DeleteLanguageModelCommand";
|
|
11
|
+
import { DeleteMedicalScribeJobCommandInput, DeleteMedicalScribeJobCommandOutput } from "../commands/DeleteMedicalScribeJobCommand";
|
|
11
12
|
import { DeleteMedicalTranscriptionJobCommandInput, DeleteMedicalTranscriptionJobCommandOutput } from "../commands/DeleteMedicalTranscriptionJobCommand";
|
|
12
13
|
import { DeleteMedicalVocabularyCommandInput, DeleteMedicalVocabularyCommandOutput } from "../commands/DeleteMedicalVocabularyCommand";
|
|
13
14
|
import { DeleteTranscriptionJobCommandInput, DeleteTranscriptionJobCommandOutput } from "../commands/DeleteTranscriptionJobCommand";
|
|
@@ -16,6 +17,7 @@ import { DeleteVocabularyFilterCommandInput, DeleteVocabularyFilterCommandOutput
|
|
|
16
17
|
import { DescribeLanguageModelCommandInput, DescribeLanguageModelCommandOutput } from "../commands/DescribeLanguageModelCommand";
|
|
17
18
|
import { GetCallAnalyticsCategoryCommandInput, GetCallAnalyticsCategoryCommandOutput } from "../commands/GetCallAnalyticsCategoryCommand";
|
|
18
19
|
import { GetCallAnalyticsJobCommandInput, GetCallAnalyticsJobCommandOutput } from "../commands/GetCallAnalyticsJobCommand";
|
|
20
|
+
import { GetMedicalScribeJobCommandInput, GetMedicalScribeJobCommandOutput } from "../commands/GetMedicalScribeJobCommand";
|
|
19
21
|
import { GetMedicalTranscriptionJobCommandInput, GetMedicalTranscriptionJobCommandOutput } from "../commands/GetMedicalTranscriptionJobCommand";
|
|
20
22
|
import { GetMedicalVocabularyCommandInput, GetMedicalVocabularyCommandOutput } from "../commands/GetMedicalVocabularyCommand";
|
|
21
23
|
import { GetTranscriptionJobCommandInput, GetTranscriptionJobCommandOutput } from "../commands/GetTranscriptionJobCommand";
|
|
@@ -24,6 +26,7 @@ import { GetVocabularyFilterCommandInput, GetVocabularyFilterCommandOutput } fro
|
|
|
24
26
|
import { ListCallAnalyticsCategoriesCommandInput, ListCallAnalyticsCategoriesCommandOutput } from "../commands/ListCallAnalyticsCategoriesCommand";
|
|
25
27
|
import { ListCallAnalyticsJobsCommandInput, ListCallAnalyticsJobsCommandOutput } from "../commands/ListCallAnalyticsJobsCommand";
|
|
26
28
|
import { ListLanguageModelsCommandInput, ListLanguageModelsCommandOutput } from "../commands/ListLanguageModelsCommand";
|
|
29
|
+
import { ListMedicalScribeJobsCommandInput, ListMedicalScribeJobsCommandOutput } from "../commands/ListMedicalScribeJobsCommand";
|
|
27
30
|
import { ListMedicalTranscriptionJobsCommandInput, ListMedicalTranscriptionJobsCommandOutput } from "../commands/ListMedicalTranscriptionJobsCommand";
|
|
28
31
|
import { ListMedicalVocabulariesCommandInput, ListMedicalVocabulariesCommandOutput } from "../commands/ListMedicalVocabulariesCommand";
|
|
29
32
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -31,6 +34,7 @@ import { ListTranscriptionJobsCommandInput, ListTranscriptionJobsCommandOutput }
|
|
|
31
34
|
import { ListVocabulariesCommandInput, ListVocabulariesCommandOutput } from "../commands/ListVocabulariesCommand";
|
|
32
35
|
import { ListVocabularyFiltersCommandInput, ListVocabularyFiltersCommandOutput } from "../commands/ListVocabularyFiltersCommand";
|
|
33
36
|
import { StartCallAnalyticsJobCommandInput, StartCallAnalyticsJobCommandOutput } from "../commands/StartCallAnalyticsJobCommand";
|
|
37
|
+
import { StartMedicalScribeJobCommandInput, StartMedicalScribeJobCommandOutput } from "../commands/StartMedicalScribeJobCommand";
|
|
34
38
|
import { StartMedicalTranscriptionJobCommandInput, StartMedicalTranscriptionJobCommandOutput } from "../commands/StartMedicalTranscriptionJobCommand";
|
|
35
39
|
import { StartTranscriptionJobCommandInput, StartTranscriptionJobCommandOutput } from "../commands/StartTranscriptionJobCommand";
|
|
36
40
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
@@ -71,6 +75,10 @@ export declare const se_DeleteCallAnalyticsJobCommand: (input: DeleteCallAnalyti
|
|
|
71
75
|
* serializeAws_json1_1DeleteLanguageModelCommand
|
|
72
76
|
*/
|
|
73
77
|
export declare const se_DeleteLanguageModelCommand: (input: DeleteLanguageModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
/**
|
|
79
|
+
* serializeAws_json1_1DeleteMedicalScribeJobCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const se_DeleteMedicalScribeJobCommand: (input: DeleteMedicalScribeJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
82
|
/**
|
|
75
83
|
* serializeAws_json1_1DeleteMedicalTranscriptionJobCommand
|
|
76
84
|
*/
|
|
@@ -103,6 +111,10 @@ export declare const se_GetCallAnalyticsCategoryCommand: (input: GetCallAnalytic
|
|
|
103
111
|
* serializeAws_json1_1GetCallAnalyticsJobCommand
|
|
104
112
|
*/
|
|
105
113
|
export declare const se_GetCallAnalyticsJobCommand: (input: GetCallAnalyticsJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
+
/**
|
|
115
|
+
* serializeAws_json1_1GetMedicalScribeJobCommand
|
|
116
|
+
*/
|
|
117
|
+
export declare const se_GetMedicalScribeJobCommand: (input: GetMedicalScribeJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
118
|
/**
|
|
107
119
|
* serializeAws_json1_1GetMedicalTranscriptionJobCommand
|
|
108
120
|
*/
|
|
@@ -135,6 +147,10 @@ export declare const se_ListCallAnalyticsJobsCommand: (input: ListCallAnalyticsJ
|
|
|
135
147
|
* serializeAws_json1_1ListLanguageModelsCommand
|
|
136
148
|
*/
|
|
137
149
|
export declare const se_ListLanguageModelsCommand: (input: ListLanguageModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
|
+
/**
|
|
151
|
+
* serializeAws_json1_1ListMedicalScribeJobsCommand
|
|
152
|
+
*/
|
|
153
|
+
export declare const se_ListMedicalScribeJobsCommand: (input: ListMedicalScribeJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
154
|
/**
|
|
139
155
|
* serializeAws_json1_1ListMedicalTranscriptionJobsCommand
|
|
140
156
|
*/
|
|
@@ -163,6 +179,10 @@ export declare const se_ListVocabularyFiltersCommand: (input: ListVocabularyFilt
|
|
|
163
179
|
* serializeAws_json1_1StartCallAnalyticsJobCommand
|
|
164
180
|
*/
|
|
165
181
|
export declare const se_StartCallAnalyticsJobCommand: (input: StartCallAnalyticsJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
182
|
+
/**
|
|
183
|
+
* serializeAws_json1_1StartMedicalScribeJobCommand
|
|
184
|
+
*/
|
|
185
|
+
export declare const se_StartMedicalScribeJobCommand: (input: StartMedicalScribeJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
186
|
/**
|
|
167
187
|
* serializeAws_json1_1StartMedicalTranscriptionJobCommand
|
|
168
188
|
*/
|
|
@@ -227,6 +247,10 @@ export declare const de_DeleteCallAnalyticsJobCommand: (output: __HttpResponse,
|
|
|
227
247
|
* deserializeAws_json1_1DeleteLanguageModelCommand
|
|
228
248
|
*/
|
|
229
249
|
export declare const de_DeleteLanguageModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLanguageModelCommandOutput>;
|
|
250
|
+
/**
|
|
251
|
+
* deserializeAws_json1_1DeleteMedicalScribeJobCommand
|
|
252
|
+
*/
|
|
253
|
+
export declare const de_DeleteMedicalScribeJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMedicalScribeJobCommandOutput>;
|
|
230
254
|
/**
|
|
231
255
|
* deserializeAws_json1_1DeleteMedicalTranscriptionJobCommand
|
|
232
256
|
*/
|
|
@@ -259,6 +283,10 @@ export declare const de_GetCallAnalyticsCategoryCommand: (output: __HttpResponse
|
|
|
259
283
|
* deserializeAws_json1_1GetCallAnalyticsJobCommand
|
|
260
284
|
*/
|
|
261
285
|
export declare const de_GetCallAnalyticsJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCallAnalyticsJobCommandOutput>;
|
|
286
|
+
/**
|
|
287
|
+
* deserializeAws_json1_1GetMedicalScribeJobCommand
|
|
288
|
+
*/
|
|
289
|
+
export declare const de_GetMedicalScribeJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMedicalScribeJobCommandOutput>;
|
|
262
290
|
/**
|
|
263
291
|
* deserializeAws_json1_1GetMedicalTranscriptionJobCommand
|
|
264
292
|
*/
|
|
@@ -291,6 +319,10 @@ export declare const de_ListCallAnalyticsJobsCommand: (output: __HttpResponse, c
|
|
|
291
319
|
* deserializeAws_json1_1ListLanguageModelsCommand
|
|
292
320
|
*/
|
|
293
321
|
export declare const de_ListLanguageModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLanguageModelsCommandOutput>;
|
|
322
|
+
/**
|
|
323
|
+
* deserializeAws_json1_1ListMedicalScribeJobsCommand
|
|
324
|
+
*/
|
|
325
|
+
export declare const de_ListMedicalScribeJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMedicalScribeJobsCommandOutput>;
|
|
294
326
|
/**
|
|
295
327
|
* deserializeAws_json1_1ListMedicalTranscriptionJobsCommand
|
|
296
328
|
*/
|
|
@@ -319,6 +351,10 @@ export declare const de_ListVocabularyFiltersCommand: (output: __HttpResponse, c
|
|
|
319
351
|
* deserializeAws_json1_1StartCallAnalyticsJobCommand
|
|
320
352
|
*/
|
|
321
353
|
export declare const de_StartCallAnalyticsJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCallAnalyticsJobCommandOutput>;
|
|
354
|
+
/**
|
|
355
|
+
* deserializeAws_json1_1StartMedicalScribeJobCommand
|
|
356
|
+
*/
|
|
357
|
+
export declare const de_StartMedicalScribeJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMedicalScribeJobCommandOutput>;
|
|
322
358
|
/**
|
|
323
359
|
* deserializeAws_json1_1StartMedicalTranscriptionJobCommand
|
|
324
360
|
*/
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
DeleteLanguageModelCommandInput,
|
|
32
32
|
DeleteLanguageModelCommandOutput,
|
|
33
33
|
} from "./commands/DeleteLanguageModelCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteMedicalScribeJobCommandInput,
|
|
36
|
+
DeleteMedicalScribeJobCommandOutput,
|
|
37
|
+
} from "./commands/DeleteMedicalScribeJobCommand";
|
|
34
38
|
import {
|
|
35
39
|
DeleteMedicalTranscriptionJobCommandInput,
|
|
36
40
|
DeleteMedicalTranscriptionJobCommandOutput,
|
|
@@ -63,6 +67,10 @@ import {
|
|
|
63
67
|
GetCallAnalyticsJobCommandInput,
|
|
64
68
|
GetCallAnalyticsJobCommandOutput,
|
|
65
69
|
} from "./commands/GetCallAnalyticsJobCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetMedicalScribeJobCommandInput,
|
|
72
|
+
GetMedicalScribeJobCommandOutput,
|
|
73
|
+
} from "./commands/GetMedicalScribeJobCommand";
|
|
66
74
|
import {
|
|
67
75
|
GetMedicalTranscriptionJobCommandInput,
|
|
68
76
|
GetMedicalTranscriptionJobCommandOutput,
|
|
@@ -95,6 +103,10 @@ import {
|
|
|
95
103
|
ListLanguageModelsCommandInput,
|
|
96
104
|
ListLanguageModelsCommandOutput,
|
|
97
105
|
} from "./commands/ListLanguageModelsCommand";
|
|
106
|
+
import {
|
|
107
|
+
ListMedicalScribeJobsCommandInput,
|
|
108
|
+
ListMedicalScribeJobsCommandOutput,
|
|
109
|
+
} from "./commands/ListMedicalScribeJobsCommand";
|
|
98
110
|
import {
|
|
99
111
|
ListMedicalTranscriptionJobsCommandInput,
|
|
100
112
|
ListMedicalTranscriptionJobsCommandOutput,
|
|
@@ -123,6 +135,10 @@ import {
|
|
|
123
135
|
StartCallAnalyticsJobCommandInput,
|
|
124
136
|
StartCallAnalyticsJobCommandOutput,
|
|
125
137
|
} from "./commands/StartCallAnalyticsJobCommand";
|
|
138
|
+
import {
|
|
139
|
+
StartMedicalScribeJobCommandInput,
|
|
140
|
+
StartMedicalScribeJobCommandOutput,
|
|
141
|
+
} from "./commands/StartMedicalScribeJobCommand";
|
|
126
142
|
import {
|
|
127
143
|
StartMedicalTranscriptionJobCommandInput,
|
|
128
144
|
StartMedicalTranscriptionJobCommandOutput,
|
|
@@ -261,6 +277,19 @@ export interface Transcribe {
|
|
|
261
277
|
options: __HttpHandlerOptions,
|
|
262
278
|
cb: (err: any, data?: DeleteLanguageModelCommandOutput) => void
|
|
263
279
|
): void;
|
|
280
|
+
deleteMedicalScribeJob(
|
|
281
|
+
args: DeleteMedicalScribeJobCommandInput,
|
|
282
|
+
options?: __HttpHandlerOptions
|
|
283
|
+
): Promise<DeleteMedicalScribeJobCommandOutput>;
|
|
284
|
+
deleteMedicalScribeJob(
|
|
285
|
+
args: DeleteMedicalScribeJobCommandInput,
|
|
286
|
+
cb: (err: any, data?: DeleteMedicalScribeJobCommandOutput) => void
|
|
287
|
+
): void;
|
|
288
|
+
deleteMedicalScribeJob(
|
|
289
|
+
args: DeleteMedicalScribeJobCommandInput,
|
|
290
|
+
options: __HttpHandlerOptions,
|
|
291
|
+
cb: (err: any, data?: DeleteMedicalScribeJobCommandOutput) => void
|
|
292
|
+
): void;
|
|
264
293
|
deleteMedicalTranscriptionJob(
|
|
265
294
|
args: DeleteMedicalTranscriptionJobCommandInput,
|
|
266
295
|
options?: __HttpHandlerOptions
|
|
@@ -365,6 +394,19 @@ export interface Transcribe {
|
|
|
365
394
|
options: __HttpHandlerOptions,
|
|
366
395
|
cb: (err: any, data?: GetCallAnalyticsJobCommandOutput) => void
|
|
367
396
|
): void;
|
|
397
|
+
getMedicalScribeJob(
|
|
398
|
+
args: GetMedicalScribeJobCommandInput,
|
|
399
|
+
options?: __HttpHandlerOptions
|
|
400
|
+
): Promise<GetMedicalScribeJobCommandOutput>;
|
|
401
|
+
getMedicalScribeJob(
|
|
402
|
+
args: GetMedicalScribeJobCommandInput,
|
|
403
|
+
cb: (err: any, data?: GetMedicalScribeJobCommandOutput) => void
|
|
404
|
+
): void;
|
|
405
|
+
getMedicalScribeJob(
|
|
406
|
+
args: GetMedicalScribeJobCommandInput,
|
|
407
|
+
options: __HttpHandlerOptions,
|
|
408
|
+
cb: (err: any, data?: GetMedicalScribeJobCommandOutput) => void
|
|
409
|
+
): void;
|
|
368
410
|
getMedicalTranscriptionJob(
|
|
369
411
|
args: GetMedicalTranscriptionJobCommandInput,
|
|
370
412
|
options?: __HttpHandlerOptions
|
|
@@ -469,6 +511,19 @@ export interface Transcribe {
|
|
|
469
511
|
options: __HttpHandlerOptions,
|
|
470
512
|
cb: (err: any, data?: ListLanguageModelsCommandOutput) => void
|
|
471
513
|
): void;
|
|
514
|
+
listMedicalScribeJobs(
|
|
515
|
+
args: ListMedicalScribeJobsCommandInput,
|
|
516
|
+
options?: __HttpHandlerOptions
|
|
517
|
+
): Promise<ListMedicalScribeJobsCommandOutput>;
|
|
518
|
+
listMedicalScribeJobs(
|
|
519
|
+
args: ListMedicalScribeJobsCommandInput,
|
|
520
|
+
cb: (err: any, data?: ListMedicalScribeJobsCommandOutput) => void
|
|
521
|
+
): void;
|
|
522
|
+
listMedicalScribeJobs(
|
|
523
|
+
args: ListMedicalScribeJobsCommandInput,
|
|
524
|
+
options: __HttpHandlerOptions,
|
|
525
|
+
cb: (err: any, data?: ListMedicalScribeJobsCommandOutput) => void
|
|
526
|
+
): void;
|
|
472
527
|
listMedicalTranscriptionJobs(
|
|
473
528
|
args: ListMedicalTranscriptionJobsCommandInput,
|
|
474
529
|
options?: __HttpHandlerOptions
|
|
@@ -560,6 +615,19 @@ export interface Transcribe {
|
|
|
560
615
|
options: __HttpHandlerOptions,
|
|
561
616
|
cb: (err: any, data?: StartCallAnalyticsJobCommandOutput) => void
|
|
562
617
|
): void;
|
|
618
|
+
startMedicalScribeJob(
|
|
619
|
+
args: StartMedicalScribeJobCommandInput,
|
|
620
|
+
options?: __HttpHandlerOptions
|
|
621
|
+
): Promise<StartMedicalScribeJobCommandOutput>;
|
|
622
|
+
startMedicalScribeJob(
|
|
623
|
+
args: StartMedicalScribeJobCommandInput,
|
|
624
|
+
cb: (err: any, data?: StartMedicalScribeJobCommandOutput) => void
|
|
625
|
+
): void;
|
|
626
|
+
startMedicalScribeJob(
|
|
627
|
+
args: StartMedicalScribeJobCommandInput,
|
|
628
|
+
options: __HttpHandlerOptions,
|
|
629
|
+
cb: (err: any, data?: StartMedicalScribeJobCommandOutput) => void
|
|
630
|
+
): void;
|
|
563
631
|
startMedicalTranscriptionJob(
|
|
564
632
|
args: StartMedicalTranscriptionJobCommandInput,
|
|
565
633
|
options?: __HttpHandlerOptions
|
|
@@ -77,6 +77,10 @@ import {
|
|
|
77
77
|
DeleteLanguageModelCommandInput,
|
|
78
78
|
DeleteLanguageModelCommandOutput,
|
|
79
79
|
} from "./commands/DeleteLanguageModelCommand";
|
|
80
|
+
import {
|
|
81
|
+
DeleteMedicalScribeJobCommandInput,
|
|
82
|
+
DeleteMedicalScribeJobCommandOutput,
|
|
83
|
+
} from "./commands/DeleteMedicalScribeJobCommand";
|
|
80
84
|
import {
|
|
81
85
|
DeleteMedicalTranscriptionJobCommandInput,
|
|
82
86
|
DeleteMedicalTranscriptionJobCommandOutput,
|
|
@@ -109,6 +113,10 @@ import {
|
|
|
109
113
|
GetCallAnalyticsJobCommandInput,
|
|
110
114
|
GetCallAnalyticsJobCommandOutput,
|
|
111
115
|
} from "./commands/GetCallAnalyticsJobCommand";
|
|
116
|
+
import {
|
|
117
|
+
GetMedicalScribeJobCommandInput,
|
|
118
|
+
GetMedicalScribeJobCommandOutput,
|
|
119
|
+
} from "./commands/GetMedicalScribeJobCommand";
|
|
112
120
|
import {
|
|
113
121
|
GetMedicalTranscriptionJobCommandInput,
|
|
114
122
|
GetMedicalTranscriptionJobCommandOutput,
|
|
@@ -141,6 +149,10 @@ import {
|
|
|
141
149
|
ListLanguageModelsCommandInput,
|
|
142
150
|
ListLanguageModelsCommandOutput,
|
|
143
151
|
} from "./commands/ListLanguageModelsCommand";
|
|
152
|
+
import {
|
|
153
|
+
ListMedicalScribeJobsCommandInput,
|
|
154
|
+
ListMedicalScribeJobsCommandOutput,
|
|
155
|
+
} from "./commands/ListMedicalScribeJobsCommand";
|
|
144
156
|
import {
|
|
145
157
|
ListMedicalTranscriptionJobsCommandInput,
|
|
146
158
|
ListMedicalTranscriptionJobsCommandOutput,
|
|
@@ -169,6 +181,10 @@ import {
|
|
|
169
181
|
StartCallAnalyticsJobCommandInput,
|
|
170
182
|
StartCallAnalyticsJobCommandOutput,
|
|
171
183
|
} from "./commands/StartCallAnalyticsJobCommand";
|
|
184
|
+
import {
|
|
185
|
+
StartMedicalScribeJobCommandInput,
|
|
186
|
+
StartMedicalScribeJobCommandOutput,
|
|
187
|
+
} from "./commands/StartMedicalScribeJobCommand";
|
|
172
188
|
import {
|
|
173
189
|
StartMedicalTranscriptionJobCommandInput,
|
|
174
190
|
StartMedicalTranscriptionJobCommandOutput,
|
|
@@ -217,6 +233,7 @@ export type ServiceInputTypes =
|
|
|
217
233
|
| DeleteCallAnalyticsCategoryCommandInput
|
|
218
234
|
| DeleteCallAnalyticsJobCommandInput
|
|
219
235
|
| DeleteLanguageModelCommandInput
|
|
236
|
+
| DeleteMedicalScribeJobCommandInput
|
|
220
237
|
| DeleteMedicalTranscriptionJobCommandInput
|
|
221
238
|
| DeleteMedicalVocabularyCommandInput
|
|
222
239
|
| DeleteTranscriptionJobCommandInput
|
|
@@ -225,6 +242,7 @@ export type ServiceInputTypes =
|
|
|
225
242
|
| DescribeLanguageModelCommandInput
|
|
226
243
|
| GetCallAnalyticsCategoryCommandInput
|
|
227
244
|
| GetCallAnalyticsJobCommandInput
|
|
245
|
+
| GetMedicalScribeJobCommandInput
|
|
228
246
|
| GetMedicalTranscriptionJobCommandInput
|
|
229
247
|
| GetMedicalVocabularyCommandInput
|
|
230
248
|
| GetTranscriptionJobCommandInput
|
|
@@ -233,6 +251,7 @@ export type ServiceInputTypes =
|
|
|
233
251
|
| ListCallAnalyticsCategoriesCommandInput
|
|
234
252
|
| ListCallAnalyticsJobsCommandInput
|
|
235
253
|
| ListLanguageModelsCommandInput
|
|
254
|
+
| ListMedicalScribeJobsCommandInput
|
|
236
255
|
| ListMedicalTranscriptionJobsCommandInput
|
|
237
256
|
| ListMedicalVocabulariesCommandInput
|
|
238
257
|
| ListTagsForResourceCommandInput
|
|
@@ -240,6 +259,7 @@ export type ServiceInputTypes =
|
|
|
240
259
|
| ListVocabulariesCommandInput
|
|
241
260
|
| ListVocabularyFiltersCommandInput
|
|
242
261
|
| StartCallAnalyticsJobCommandInput
|
|
262
|
+
| StartMedicalScribeJobCommandInput
|
|
243
263
|
| StartMedicalTranscriptionJobCommandInput
|
|
244
264
|
| StartTranscriptionJobCommandInput
|
|
245
265
|
| TagResourceCommandInput
|
|
@@ -257,6 +277,7 @@ export type ServiceOutputTypes =
|
|
|
257
277
|
| DeleteCallAnalyticsCategoryCommandOutput
|
|
258
278
|
| DeleteCallAnalyticsJobCommandOutput
|
|
259
279
|
| DeleteLanguageModelCommandOutput
|
|
280
|
+
| DeleteMedicalScribeJobCommandOutput
|
|
260
281
|
| DeleteMedicalTranscriptionJobCommandOutput
|
|
261
282
|
| DeleteMedicalVocabularyCommandOutput
|
|
262
283
|
| DeleteTranscriptionJobCommandOutput
|
|
@@ -265,6 +286,7 @@ export type ServiceOutputTypes =
|
|
|
265
286
|
| DescribeLanguageModelCommandOutput
|
|
266
287
|
| GetCallAnalyticsCategoryCommandOutput
|
|
267
288
|
| GetCallAnalyticsJobCommandOutput
|
|
289
|
+
| GetMedicalScribeJobCommandOutput
|
|
268
290
|
| GetMedicalTranscriptionJobCommandOutput
|
|
269
291
|
| GetMedicalVocabularyCommandOutput
|
|
270
292
|
| GetTranscriptionJobCommandOutput
|
|
@@ -273,6 +295,7 @@ export type ServiceOutputTypes =
|
|
|
273
295
|
| ListCallAnalyticsCategoriesCommandOutput
|
|
274
296
|
| ListCallAnalyticsJobsCommandOutput
|
|
275
297
|
| ListLanguageModelsCommandOutput
|
|
298
|
+
| ListMedicalScribeJobsCommandOutput
|
|
276
299
|
| ListMedicalTranscriptionJobsCommandOutput
|
|
277
300
|
| ListMedicalVocabulariesCommandOutput
|
|
278
301
|
| ListTagsForResourceCommandOutput
|
|
@@ -280,6 +303,7 @@ export type ServiceOutputTypes =
|
|
|
280
303
|
| ListVocabulariesCommandOutput
|
|
281
304
|
| ListVocabularyFiltersCommandOutput
|
|
282
305
|
| StartCallAnalyticsJobCommandOutput
|
|
306
|
+
| StartMedicalScribeJobCommandOutput
|
|
283
307
|
| StartMedicalTranscriptionJobCommandOutput
|
|
284
308
|
| StartTranscriptionJobCommandOutput
|
|
285
309
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { DeleteMedicalScribeJobRequest } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
TranscribeClientResolvedConfig,
|
|
14
|
+
} from "../TranscribeClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteMedicalScribeJobCommandInput
|
|
17
|
+
extends DeleteMedicalScribeJobRequest {}
|
|
18
|
+
export interface DeleteMedicalScribeJobCommandOutput extends __MetadataBearer {}
|
|
19
|
+
export declare class DeleteMedicalScribeJobCommand extends $Command<
|
|
20
|
+
DeleteMedicalScribeJobCommandInput,
|
|
21
|
+
DeleteMedicalScribeJobCommandOutput,
|
|
22
|
+
TranscribeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteMedicalScribeJobCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteMedicalScribeJobCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: TranscribeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteMedicalScribeJobCommandInput,
|
|
33
|
+
DeleteMedicalScribeJobCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GetMedicalScribeJobRequest,
|
|
11
|
+
GetMedicalScribeJobResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TranscribeClientResolvedConfig,
|
|
17
|
+
} from "../TranscribeClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetMedicalScribeJobCommandInput
|
|
20
|
+
extends GetMedicalScribeJobRequest {}
|
|
21
|
+
export interface GetMedicalScribeJobCommandOutput
|
|
22
|
+
extends GetMedicalScribeJobResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetMedicalScribeJobCommand extends $Command<
|
|
25
|
+
GetMedicalScribeJobCommandInput,
|
|
26
|
+
GetMedicalScribeJobCommandOutput,
|
|
27
|
+
TranscribeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetMedicalScribeJobCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetMedicalScribeJobCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: TranscribeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<GetMedicalScribeJobCommandInput, GetMedicalScribeJobCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListMedicalScribeJobsRequest,
|
|
11
|
+
ListMedicalScribeJobsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TranscribeClientResolvedConfig,
|
|
17
|
+
} from "../TranscribeClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListMedicalScribeJobsCommandInput
|
|
20
|
+
extends ListMedicalScribeJobsRequest {}
|
|
21
|
+
export interface ListMedicalScribeJobsCommandOutput
|
|
22
|
+
extends ListMedicalScribeJobsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListMedicalScribeJobsCommand extends $Command<
|
|
25
|
+
ListMedicalScribeJobsCommandInput,
|
|
26
|
+
ListMedicalScribeJobsCommandOutput,
|
|
27
|
+
TranscribeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListMedicalScribeJobsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListMedicalScribeJobsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: TranscribeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListMedicalScribeJobsCommandInput,
|
|
38
|
+
ListMedicalScribeJobsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
StartMedicalScribeJobRequest,
|
|
11
|
+
StartMedicalScribeJobResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TranscribeClientResolvedConfig,
|
|
17
|
+
} from "../TranscribeClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartMedicalScribeJobCommandInput
|
|
20
|
+
extends StartMedicalScribeJobRequest {}
|
|
21
|
+
export interface StartMedicalScribeJobCommandOutput
|
|
22
|
+
extends StartMedicalScribeJobResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class StartMedicalScribeJobCommand extends $Command<
|
|
25
|
+
StartMedicalScribeJobCommandInput,
|
|
26
|
+
StartMedicalScribeJobCommandOutput,
|
|
27
|
+
TranscribeClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: StartMedicalScribeJobCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: StartMedicalScribeJobCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: TranscribeClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
StartMedicalScribeJobCommandInput,
|
|
38
|
+
StartMedicalScribeJobCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -6,6 +6,7 @@ export * from "./CreateVocabularyFilterCommand";
|
|
|
6
6
|
export * from "./DeleteCallAnalyticsCategoryCommand";
|
|
7
7
|
export * from "./DeleteCallAnalyticsJobCommand";
|
|
8
8
|
export * from "./DeleteLanguageModelCommand";
|
|
9
|
+
export * from "./DeleteMedicalScribeJobCommand";
|
|
9
10
|
export * from "./DeleteMedicalTranscriptionJobCommand";
|
|
10
11
|
export * from "./DeleteMedicalVocabularyCommand";
|
|
11
12
|
export * from "./DeleteTranscriptionJobCommand";
|
|
@@ -14,6 +15,7 @@ export * from "./DeleteVocabularyFilterCommand";
|
|
|
14
15
|
export * from "./DescribeLanguageModelCommand";
|
|
15
16
|
export * from "./GetCallAnalyticsCategoryCommand";
|
|
16
17
|
export * from "./GetCallAnalyticsJobCommand";
|
|
18
|
+
export * from "./GetMedicalScribeJobCommand";
|
|
17
19
|
export * from "./GetMedicalTranscriptionJobCommand";
|
|
18
20
|
export * from "./GetMedicalVocabularyCommand";
|
|
19
21
|
export * from "./GetTranscriptionJobCommand";
|
|
@@ -22,6 +24,7 @@ export * from "./GetVocabularyFilterCommand";
|
|
|
22
24
|
export * from "./ListCallAnalyticsCategoriesCommand";
|
|
23
25
|
export * from "./ListCallAnalyticsJobsCommand";
|
|
24
26
|
export * from "./ListLanguageModelsCommand";
|
|
27
|
+
export * from "./ListMedicalScribeJobsCommand";
|
|
25
28
|
export * from "./ListMedicalTranscriptionJobsCommand";
|
|
26
29
|
export * from "./ListMedicalVocabulariesCommand";
|
|
27
30
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -29,6 +32,7 @@ export * from "./ListTranscriptionJobsCommand";
|
|
|
29
32
|
export * from "./ListVocabulariesCommand";
|
|
30
33
|
export * from "./ListVocabularyFiltersCommand";
|
|
31
34
|
export * from "./StartCallAnalyticsJobCommand";
|
|
35
|
+
export * from "./StartMedicalScribeJobCommand";
|
|
32
36
|
export * from "./StartMedicalTranscriptionJobCommand";
|
|
33
37
|
export * from "./StartTranscriptionJobCommand";
|
|
34
38
|
export * from "./TagResourceCommand";
|
|
@@ -488,6 +488,9 @@ export interface DeleteCallAnalyticsJobResponse {}
|
|
|
488
488
|
export interface DeleteLanguageModelRequest {
|
|
489
489
|
ModelName: string | undefined;
|
|
490
490
|
}
|
|
491
|
+
export interface DeleteMedicalScribeJobRequest {
|
|
492
|
+
MedicalScribeJobName: string | undefined;
|
|
493
|
+
}
|
|
491
494
|
export interface DeleteMedicalTranscriptionJobRequest {
|
|
492
495
|
MedicalTranscriptionJobName: string | undefined;
|
|
493
496
|
}
|
|
@@ -532,6 +535,62 @@ export interface GetCallAnalyticsJobRequest {
|
|
|
532
535
|
export interface GetCallAnalyticsJobResponse {
|
|
533
536
|
CallAnalyticsJob?: CallAnalyticsJob;
|
|
534
537
|
}
|
|
538
|
+
export interface GetMedicalScribeJobRequest {
|
|
539
|
+
MedicalScribeJobName: string | undefined;
|
|
540
|
+
}
|
|
541
|
+
export declare const MedicalScribeParticipantRole: {
|
|
542
|
+
readonly CLINICIAN: "CLINICIAN";
|
|
543
|
+
readonly PATIENT: "PATIENT";
|
|
544
|
+
};
|
|
545
|
+
export type MedicalScribeParticipantRole =
|
|
546
|
+
(typeof MedicalScribeParticipantRole)[keyof typeof MedicalScribeParticipantRole];
|
|
547
|
+
export interface MedicalScribeChannelDefinition {
|
|
548
|
+
ChannelId: number | undefined;
|
|
549
|
+
ParticipantRole: MedicalScribeParticipantRole | undefined;
|
|
550
|
+
}
|
|
551
|
+
export declare const MedicalScribeLanguageCode: {
|
|
552
|
+
readonly EN_US: "en-US";
|
|
553
|
+
};
|
|
554
|
+
export type MedicalScribeLanguageCode =
|
|
555
|
+
(typeof MedicalScribeLanguageCode)[keyof typeof MedicalScribeLanguageCode];
|
|
556
|
+
export declare const MedicalScribeJobStatus: {
|
|
557
|
+
readonly COMPLETED: "COMPLETED";
|
|
558
|
+
readonly FAILED: "FAILED";
|
|
559
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
560
|
+
readonly QUEUED: "QUEUED";
|
|
561
|
+
};
|
|
562
|
+
export type MedicalScribeJobStatus =
|
|
563
|
+
(typeof MedicalScribeJobStatus)[keyof typeof MedicalScribeJobStatus];
|
|
564
|
+
export interface MedicalScribeOutput {
|
|
565
|
+
TranscriptFileUri: string | undefined;
|
|
566
|
+
ClinicalDocumentUri: string | undefined;
|
|
567
|
+
}
|
|
568
|
+
export interface MedicalScribeSettings {
|
|
569
|
+
ShowSpeakerLabels?: boolean;
|
|
570
|
+
MaxSpeakerLabels?: number;
|
|
571
|
+
ChannelIdentification?: boolean;
|
|
572
|
+
VocabularyName?: string;
|
|
573
|
+
VocabularyFilterName?: string;
|
|
574
|
+
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
575
|
+
}
|
|
576
|
+
export interface MedicalScribeJob {
|
|
577
|
+
MedicalScribeJobName?: string;
|
|
578
|
+
MedicalScribeJobStatus?: MedicalScribeJobStatus;
|
|
579
|
+
LanguageCode?: MedicalScribeLanguageCode;
|
|
580
|
+
Media?: Media;
|
|
581
|
+
MedicalScribeOutput?: MedicalScribeOutput;
|
|
582
|
+
StartTime?: Date;
|
|
583
|
+
CreationTime?: Date;
|
|
584
|
+
CompletionTime?: Date;
|
|
585
|
+
FailureReason?: string;
|
|
586
|
+
Settings?: MedicalScribeSettings;
|
|
587
|
+
DataAccessRoleArn?: string;
|
|
588
|
+
ChannelDefinitions?: MedicalScribeChannelDefinition[];
|
|
589
|
+
Tags?: Tag[];
|
|
590
|
+
}
|
|
591
|
+
export interface GetMedicalScribeJobResponse {
|
|
592
|
+
MedicalScribeJob?: MedicalScribeJob;
|
|
593
|
+
}
|
|
535
594
|
export interface GetMedicalTranscriptionJobRequest {
|
|
536
595
|
MedicalTranscriptionJobName: string | undefined;
|
|
537
596
|
}
|
|
@@ -721,6 +780,26 @@ export interface ListLanguageModelsResponse {
|
|
|
721
780
|
NextToken?: string;
|
|
722
781
|
Models?: LanguageModel[];
|
|
723
782
|
}
|
|
783
|
+
export interface ListMedicalScribeJobsRequest {
|
|
784
|
+
Status?: MedicalScribeJobStatus;
|
|
785
|
+
JobNameContains?: string;
|
|
786
|
+
NextToken?: string;
|
|
787
|
+
MaxResults?: number;
|
|
788
|
+
}
|
|
789
|
+
export interface MedicalScribeJobSummary {
|
|
790
|
+
MedicalScribeJobName?: string;
|
|
791
|
+
CreationTime?: Date;
|
|
792
|
+
StartTime?: Date;
|
|
793
|
+
CompletionTime?: Date;
|
|
794
|
+
LanguageCode?: MedicalScribeLanguageCode;
|
|
795
|
+
MedicalScribeJobStatus?: MedicalScribeJobStatus;
|
|
796
|
+
FailureReason?: string;
|
|
797
|
+
}
|
|
798
|
+
export interface ListMedicalScribeJobsResponse {
|
|
799
|
+
Status?: MedicalScribeJobStatus;
|
|
800
|
+
NextToken?: string;
|
|
801
|
+
MedicalScribeJobSummaries?: MedicalScribeJobSummary[];
|
|
802
|
+
}
|
|
724
803
|
export interface ListMedicalTranscriptionJobsRequest {
|
|
725
804
|
Status?: TranscriptionJobStatus;
|
|
726
805
|
JobNameContains?: string;
|
|
@@ -840,6 +919,20 @@ export interface StartCallAnalyticsJobRequest {
|
|
|
840
919
|
export interface StartCallAnalyticsJobResponse {
|
|
841
920
|
CallAnalyticsJob?: CallAnalyticsJob;
|
|
842
921
|
}
|
|
922
|
+
export interface StartMedicalScribeJobRequest {
|
|
923
|
+
MedicalScribeJobName: string | undefined;
|
|
924
|
+
Media: Media | undefined;
|
|
925
|
+
OutputBucketName: string | undefined;
|
|
926
|
+
OutputEncryptionKMSKeyId?: string;
|
|
927
|
+
KMSEncryptionContext?: Record<string, string>;
|
|
928
|
+
DataAccessRoleArn: string | undefined;
|
|
929
|
+
Settings: MedicalScribeSettings | undefined;
|
|
930
|
+
ChannelDefinitions?: MedicalScribeChannelDefinition[];
|
|
931
|
+
Tags?: Tag[];
|
|
932
|
+
}
|
|
933
|
+
export interface StartMedicalScribeJobResponse {
|
|
934
|
+
MedicalScribeJob?: MedicalScribeJob;
|
|
935
|
+
}
|
|
843
936
|
export interface StartMedicalTranscriptionJobRequest {
|
|
844
937
|
MedicalTranscriptionJobName: string | undefined;
|
|
845
938
|
LanguageCode: LanguageCode | undefined;
|