@aws-sdk/client-transcribe 3.428.0 → 3.429.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.
|
@@ -35,7 +35,7 @@ export type ParticipantRole =
|
|
|
35
35
|
(typeof ParticipantRole)[keyof typeof ParticipantRole];
|
|
36
36
|
export interface ChannelDefinition {
|
|
37
37
|
ChannelId?: number;
|
|
38
|
-
ParticipantRole?: ParticipantRole
|
|
38
|
+
ParticipantRole?: ParticipantRole;
|
|
39
39
|
}
|
|
40
40
|
export declare const LanguageCode: {
|
|
41
41
|
readonly AF_ZA: "af-ZA";
|
|
@@ -120,9 +120,9 @@ export declare const RedactionType: {
|
|
|
120
120
|
};
|
|
121
121
|
export type RedactionType = (typeof RedactionType)[keyof typeof RedactionType];
|
|
122
122
|
export interface ContentRedaction {
|
|
123
|
-
RedactionType: RedactionType |
|
|
124
|
-
RedactionOutput: RedactionOutput |
|
|
125
|
-
PiiEntityTypes?:
|
|
123
|
+
RedactionType: RedactionType | undefined;
|
|
124
|
+
RedactionOutput: RedactionOutput | undefined;
|
|
125
|
+
PiiEntityTypes?: PiiEntityType[];
|
|
126
126
|
}
|
|
127
127
|
export interface LanguageIdSettings {
|
|
128
128
|
VocabularyName?: string;
|
|
@@ -139,11 +139,11 @@ export type VocabularyFilterMethod =
|
|
|
139
139
|
export interface CallAnalyticsJobSettings {
|
|
140
140
|
VocabularyName?: string;
|
|
141
141
|
VocabularyFilterName?: string;
|
|
142
|
-
VocabularyFilterMethod?: VocabularyFilterMethod
|
|
142
|
+
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
143
143
|
LanguageModelName?: string;
|
|
144
144
|
ContentRedaction?: ContentRedaction;
|
|
145
|
-
LanguageOptions?:
|
|
146
|
-
LanguageIdSettings?: Record<
|
|
145
|
+
LanguageOptions?: LanguageCode[];
|
|
146
|
+
LanguageIdSettings?: Record<LanguageCode, LanguageIdSettings>;
|
|
147
147
|
}
|
|
148
148
|
export interface Transcript {
|
|
149
149
|
TranscriptFileUri?: string;
|
|
@@ -151,10 +151,10 @@ export interface Transcript {
|
|
|
151
151
|
}
|
|
152
152
|
export interface CallAnalyticsJob {
|
|
153
153
|
CallAnalyticsJobName?: string;
|
|
154
|
-
CallAnalyticsJobStatus?: CallAnalyticsJobStatus
|
|
155
|
-
LanguageCode?: LanguageCode
|
|
154
|
+
CallAnalyticsJobStatus?: CallAnalyticsJobStatus;
|
|
155
|
+
LanguageCode?: LanguageCode;
|
|
156
156
|
MediaSampleRateHertz?: number;
|
|
157
|
-
MediaFormat?: MediaFormat
|
|
157
|
+
MediaFormat?: MediaFormat;
|
|
158
158
|
Media?: Media;
|
|
159
159
|
Transcript?: Transcript;
|
|
160
160
|
StartTime?: Date;
|
|
@@ -171,8 +171,8 @@ export interface CallAnalyticsJobSummary {
|
|
|
171
171
|
CreationTime?: Date;
|
|
172
172
|
StartTime?: Date;
|
|
173
173
|
CompletionTime?: Date;
|
|
174
|
-
LanguageCode?: LanguageCode
|
|
175
|
-
CallAnalyticsJobStatus?: CallAnalyticsJobStatus
|
|
174
|
+
LanguageCode?: LanguageCode;
|
|
175
|
+
CallAnalyticsJobStatus?: CallAnalyticsJobStatus;
|
|
176
176
|
FailureReason?: string;
|
|
177
177
|
}
|
|
178
178
|
export declare const InputType: {
|
|
@@ -188,7 +188,7 @@ export interface RelativeTimeRange {
|
|
|
188
188
|
}
|
|
189
189
|
export interface InterruptionFilter {
|
|
190
190
|
Threshold?: number;
|
|
191
|
-
ParticipantRole?: ParticipantRole
|
|
191
|
+
ParticipantRole?: ParticipantRole;
|
|
192
192
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
193
193
|
RelativeTimeRange?: RelativeTimeRange;
|
|
194
194
|
Negate?: boolean;
|
|
@@ -208,10 +208,10 @@ export declare const SentimentValue: {
|
|
|
208
208
|
export type SentimentValue =
|
|
209
209
|
(typeof SentimentValue)[keyof typeof SentimentValue];
|
|
210
210
|
export interface SentimentFilter {
|
|
211
|
-
Sentiments:
|
|
211
|
+
Sentiments: SentimentValue[] | undefined;
|
|
212
212
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
213
213
|
RelativeTimeRange?: RelativeTimeRange;
|
|
214
|
-
ParticipantRole?: ParticipantRole
|
|
214
|
+
ParticipantRole?: ParticipantRole;
|
|
215
215
|
Negate?: boolean;
|
|
216
216
|
}
|
|
217
217
|
export declare const TranscriptFilterType: {
|
|
@@ -220,10 +220,10 @@ export declare const TranscriptFilterType: {
|
|
|
220
220
|
export type TranscriptFilterType =
|
|
221
221
|
(typeof TranscriptFilterType)[keyof typeof TranscriptFilterType];
|
|
222
222
|
export interface TranscriptFilter {
|
|
223
|
-
TranscriptFilterType: TranscriptFilterType |
|
|
223
|
+
TranscriptFilterType: TranscriptFilterType | undefined;
|
|
224
224
|
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
225
225
|
RelativeTimeRange?: RelativeTimeRange;
|
|
226
|
-
ParticipantRole?: ParticipantRole
|
|
226
|
+
ParticipantRole?: ParticipantRole;
|
|
227
227
|
Negate?: boolean;
|
|
228
228
|
Targets: string[] | undefined;
|
|
229
229
|
}
|
|
@@ -283,7 +283,7 @@ export interface CategoryProperties {
|
|
|
283
283
|
Rules?: Rule[];
|
|
284
284
|
CreateTime?: Date;
|
|
285
285
|
LastUpdateTime?: Date;
|
|
286
|
-
InputType?: InputType
|
|
286
|
+
InputType?: InputType;
|
|
287
287
|
}
|
|
288
288
|
export declare const CLMLanguageCode: {
|
|
289
289
|
readonly DE_DE: "de-DE";
|
|
@@ -305,7 +305,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
305
305
|
export interface CreateCallAnalyticsCategoryRequest {
|
|
306
306
|
CategoryName: string | undefined;
|
|
307
307
|
Rules: Rule[] | undefined;
|
|
308
|
-
InputType?: InputType
|
|
308
|
+
InputType?: InputType;
|
|
309
309
|
}
|
|
310
310
|
export interface CreateCallAnalyticsCategoryResponse {
|
|
311
311
|
CategoryProperties?: CategoryProperties;
|
|
@@ -336,8 +336,8 @@ export interface Tag {
|
|
|
336
336
|
Value: string | undefined;
|
|
337
337
|
}
|
|
338
338
|
export interface CreateLanguageModelRequest {
|
|
339
|
-
LanguageCode: CLMLanguageCode |
|
|
340
|
-
BaseModelName: BaseModelName |
|
|
339
|
+
LanguageCode: CLMLanguageCode | undefined;
|
|
340
|
+
BaseModelName: BaseModelName | undefined;
|
|
341
341
|
ModelName: string | undefined;
|
|
342
342
|
InputDataConfig: InputDataConfig | undefined;
|
|
343
343
|
Tags?: Tag[];
|
|
@@ -349,15 +349,15 @@ export declare const ModelStatus: {
|
|
|
349
349
|
};
|
|
350
350
|
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
351
351
|
export interface CreateLanguageModelResponse {
|
|
352
|
-
LanguageCode?: CLMLanguageCode
|
|
353
|
-
BaseModelName?: BaseModelName
|
|
352
|
+
LanguageCode?: CLMLanguageCode;
|
|
353
|
+
BaseModelName?: BaseModelName;
|
|
354
354
|
ModelName?: string;
|
|
355
355
|
InputDataConfig?: InputDataConfig;
|
|
356
|
-
ModelStatus?: ModelStatus
|
|
356
|
+
ModelStatus?: ModelStatus;
|
|
357
357
|
}
|
|
358
358
|
export interface CreateMedicalVocabularyRequest {
|
|
359
359
|
VocabularyName: string | undefined;
|
|
360
|
-
LanguageCode: LanguageCode |
|
|
360
|
+
LanguageCode: LanguageCode | undefined;
|
|
361
361
|
VocabularyFileUri: string | undefined;
|
|
362
362
|
Tags?: Tag[];
|
|
363
363
|
}
|
|
@@ -370,14 +370,14 @@ export type VocabularyState =
|
|
|
370
370
|
(typeof VocabularyState)[keyof typeof VocabularyState];
|
|
371
371
|
export interface CreateMedicalVocabularyResponse {
|
|
372
372
|
VocabularyName?: string;
|
|
373
|
-
LanguageCode?: LanguageCode
|
|
374
|
-
VocabularyState?: VocabularyState
|
|
373
|
+
LanguageCode?: LanguageCode;
|
|
374
|
+
VocabularyState?: VocabularyState;
|
|
375
375
|
LastModifiedTime?: Date;
|
|
376
376
|
FailureReason?: string;
|
|
377
377
|
}
|
|
378
378
|
export interface CreateVocabularyRequest {
|
|
379
379
|
VocabularyName: string | undefined;
|
|
380
|
-
LanguageCode: LanguageCode |
|
|
380
|
+
LanguageCode: LanguageCode | undefined;
|
|
381
381
|
Phrases?: string[];
|
|
382
382
|
VocabularyFileUri?: string;
|
|
383
383
|
Tags?: Tag[];
|
|
@@ -385,14 +385,14 @@ export interface CreateVocabularyRequest {
|
|
|
385
385
|
}
|
|
386
386
|
export interface CreateVocabularyResponse {
|
|
387
387
|
VocabularyName?: string;
|
|
388
|
-
LanguageCode?: LanguageCode
|
|
389
|
-
VocabularyState?: VocabularyState
|
|
388
|
+
LanguageCode?: LanguageCode;
|
|
389
|
+
VocabularyState?: VocabularyState;
|
|
390
390
|
LastModifiedTime?: Date;
|
|
391
391
|
FailureReason?: string;
|
|
392
392
|
}
|
|
393
393
|
export interface CreateVocabularyFilterRequest {
|
|
394
394
|
VocabularyFilterName: string | undefined;
|
|
395
|
-
LanguageCode: LanguageCode |
|
|
395
|
+
LanguageCode: LanguageCode | undefined;
|
|
396
396
|
Words?: string[];
|
|
397
397
|
VocabularyFilterFileUri?: string;
|
|
398
398
|
Tags?: Tag[];
|
|
@@ -400,7 +400,7 @@ export interface CreateVocabularyFilterRequest {
|
|
|
400
400
|
}
|
|
401
401
|
export interface CreateVocabularyFilterResponse {
|
|
402
402
|
VocabularyFilterName?: string;
|
|
403
|
-
LanguageCode?: LanguageCode
|
|
403
|
+
LanguageCode?: LanguageCode;
|
|
404
404
|
LastModifiedTime?: Date;
|
|
405
405
|
}
|
|
406
406
|
export interface DeleteCallAnalyticsCategoryRequest {
|
|
@@ -442,9 +442,9 @@ export interface LanguageModel {
|
|
|
442
442
|
ModelName?: string;
|
|
443
443
|
CreateTime?: Date;
|
|
444
444
|
LastModifiedTime?: Date;
|
|
445
|
-
LanguageCode?: CLMLanguageCode
|
|
446
|
-
BaseModelName?: BaseModelName
|
|
447
|
-
ModelStatus?: ModelStatus
|
|
445
|
+
LanguageCode?: CLMLanguageCode;
|
|
446
|
+
BaseModelName?: BaseModelName;
|
|
447
|
+
ModelStatus?: ModelStatus;
|
|
448
448
|
UpgradeAvailability?: boolean;
|
|
449
449
|
FailureReason?: string;
|
|
450
450
|
InputDataConfig?: InputDataConfig;
|
|
@@ -502,10 +502,10 @@ export declare const Type: {
|
|
|
502
502
|
export type Type = (typeof Type)[keyof typeof Type];
|
|
503
503
|
export interface MedicalTranscriptionJob {
|
|
504
504
|
MedicalTranscriptionJobName?: string;
|
|
505
|
-
TranscriptionJobStatus?: TranscriptionJobStatus
|
|
506
|
-
LanguageCode?: LanguageCode
|
|
505
|
+
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
506
|
+
LanguageCode?: LanguageCode;
|
|
507
507
|
MediaSampleRateHertz?: number;
|
|
508
|
-
MediaFormat?: MediaFormat
|
|
508
|
+
MediaFormat?: MediaFormat;
|
|
509
509
|
Media?: Media;
|
|
510
510
|
Transcript?: MedicalTranscript;
|
|
511
511
|
StartTime?: Date;
|
|
@@ -513,9 +513,9 @@ export interface MedicalTranscriptionJob {
|
|
|
513
513
|
CompletionTime?: Date;
|
|
514
514
|
FailureReason?: string;
|
|
515
515
|
Settings?: MedicalTranscriptionSetting;
|
|
516
|
-
ContentIdentificationType?: MedicalContentIdentificationType
|
|
517
|
-
Specialty?: Specialty
|
|
518
|
-
Type?: Type
|
|
516
|
+
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
517
|
+
Specialty?: Specialty;
|
|
518
|
+
Type?: Type;
|
|
519
519
|
Tags?: Tag[];
|
|
520
520
|
}
|
|
521
521
|
export interface GetMedicalTranscriptionJobResponse {
|
|
@@ -526,8 +526,8 @@ export interface GetMedicalVocabularyRequest {
|
|
|
526
526
|
}
|
|
527
527
|
export interface GetMedicalVocabularyResponse {
|
|
528
528
|
VocabularyName?: string;
|
|
529
|
-
LanguageCode?: LanguageCode
|
|
530
|
-
VocabularyState?: VocabularyState
|
|
529
|
+
LanguageCode?: LanguageCode;
|
|
530
|
+
VocabularyState?: VocabularyState;
|
|
531
531
|
LastModifiedTime?: Date;
|
|
532
532
|
FailureReason?: string;
|
|
533
533
|
DownloadUri?: string;
|
|
@@ -540,7 +540,7 @@ export interface JobExecutionSettings {
|
|
|
540
540
|
DataAccessRoleArn?: string;
|
|
541
541
|
}
|
|
542
542
|
export interface LanguageCodeItem {
|
|
543
|
-
LanguageCode?: LanguageCode
|
|
543
|
+
LanguageCode?: LanguageCode;
|
|
544
544
|
DurationInSeconds?: number;
|
|
545
545
|
}
|
|
546
546
|
export interface ModelSettings {
|
|
@@ -554,7 +554,7 @@ export interface Settings {
|
|
|
554
554
|
ShowAlternatives?: boolean;
|
|
555
555
|
MaxAlternatives?: number;
|
|
556
556
|
VocabularyFilterName?: string;
|
|
557
|
-
VocabularyFilterMethod?: VocabularyFilterMethod
|
|
557
|
+
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
558
558
|
}
|
|
559
559
|
export declare const SubtitleFormat: {
|
|
560
560
|
readonly SRT: "srt";
|
|
@@ -563,7 +563,7 @@ export declare const SubtitleFormat: {
|
|
|
563
563
|
export type SubtitleFormat =
|
|
564
564
|
(typeof SubtitleFormat)[keyof typeof SubtitleFormat];
|
|
565
565
|
export interface SubtitlesOutput {
|
|
566
|
-
Formats?:
|
|
566
|
+
Formats?: SubtitleFormat[];
|
|
567
567
|
SubtitleFileUris?: string[];
|
|
568
568
|
OutputStartIndex?: number;
|
|
569
569
|
}
|
|
@@ -573,14 +573,14 @@ export declare const ToxicityCategory: {
|
|
|
573
573
|
export type ToxicityCategory =
|
|
574
574
|
(typeof ToxicityCategory)[keyof typeof ToxicityCategory];
|
|
575
575
|
export interface ToxicityDetectionSettings {
|
|
576
|
-
ToxicityCategories:
|
|
576
|
+
ToxicityCategories: ToxicityCategory[] | undefined;
|
|
577
577
|
}
|
|
578
578
|
export interface TranscriptionJob {
|
|
579
579
|
TranscriptionJobName?: string;
|
|
580
|
-
TranscriptionJobStatus?: TranscriptionJobStatus
|
|
581
|
-
LanguageCode?: LanguageCode
|
|
580
|
+
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
581
|
+
LanguageCode?: LanguageCode;
|
|
582
582
|
MediaSampleRateHertz?: number;
|
|
583
|
-
MediaFormat?: MediaFormat
|
|
583
|
+
MediaFormat?: MediaFormat;
|
|
584
584
|
Media?: Media;
|
|
585
585
|
Transcript?: Transcript;
|
|
586
586
|
StartTime?: Date;
|
|
@@ -593,12 +593,12 @@ export interface TranscriptionJob {
|
|
|
593
593
|
ContentRedaction?: ContentRedaction;
|
|
594
594
|
IdentifyLanguage?: boolean;
|
|
595
595
|
IdentifyMultipleLanguages?: boolean;
|
|
596
|
-
LanguageOptions?:
|
|
596
|
+
LanguageOptions?: LanguageCode[];
|
|
597
597
|
IdentifiedLanguageScore?: number;
|
|
598
598
|
LanguageCodes?: LanguageCodeItem[];
|
|
599
599
|
Tags?: Tag[];
|
|
600
600
|
Subtitles?: SubtitlesOutput;
|
|
601
|
-
LanguageIdSettings?: Record<
|
|
601
|
+
LanguageIdSettings?: Record<LanguageCode, LanguageIdSettings>;
|
|
602
602
|
ToxicityDetection?: ToxicityDetectionSettings[];
|
|
603
603
|
}
|
|
604
604
|
export interface GetTranscriptionJobResponse {
|
|
@@ -609,8 +609,8 @@ export interface GetVocabularyRequest {
|
|
|
609
609
|
}
|
|
610
610
|
export interface GetVocabularyResponse {
|
|
611
611
|
VocabularyName?: string;
|
|
612
|
-
LanguageCode?: LanguageCode
|
|
613
|
-
VocabularyState?: VocabularyState
|
|
612
|
+
LanguageCode?: LanguageCode;
|
|
613
|
+
VocabularyState?: VocabularyState;
|
|
614
614
|
LastModifiedTime?: Date;
|
|
615
615
|
FailureReason?: string;
|
|
616
616
|
DownloadUri?: string;
|
|
@@ -620,7 +620,7 @@ export interface GetVocabularyFilterRequest {
|
|
|
620
620
|
}
|
|
621
621
|
export interface GetVocabularyFilterResponse {
|
|
622
622
|
VocabularyFilterName?: string;
|
|
623
|
-
LanguageCode?: LanguageCode
|
|
623
|
+
LanguageCode?: LanguageCode;
|
|
624
624
|
LastModifiedTime?: Date;
|
|
625
625
|
DownloadUri?: string;
|
|
626
626
|
}
|
|
@@ -633,18 +633,18 @@ export interface ListCallAnalyticsCategoriesResponse {
|
|
|
633
633
|
Categories?: CategoryProperties[];
|
|
634
634
|
}
|
|
635
635
|
export interface ListCallAnalyticsJobsRequest {
|
|
636
|
-
Status?: CallAnalyticsJobStatus
|
|
636
|
+
Status?: CallAnalyticsJobStatus;
|
|
637
637
|
JobNameContains?: string;
|
|
638
638
|
NextToken?: string;
|
|
639
639
|
MaxResults?: number;
|
|
640
640
|
}
|
|
641
641
|
export interface ListCallAnalyticsJobsResponse {
|
|
642
|
-
Status?: CallAnalyticsJobStatus
|
|
642
|
+
Status?: CallAnalyticsJobStatus;
|
|
643
643
|
NextToken?: string;
|
|
644
644
|
CallAnalyticsJobSummaries?: CallAnalyticsJobSummary[];
|
|
645
645
|
}
|
|
646
646
|
export interface ListLanguageModelsRequest {
|
|
647
|
-
StatusEquals?: ModelStatus
|
|
647
|
+
StatusEquals?: ModelStatus;
|
|
648
648
|
NameContains?: string;
|
|
649
649
|
NextToken?: string;
|
|
650
650
|
MaxResults?: number;
|
|
@@ -654,7 +654,7 @@ export interface ListLanguageModelsResponse {
|
|
|
654
654
|
Models?: LanguageModel[];
|
|
655
655
|
}
|
|
656
656
|
export interface ListMedicalTranscriptionJobsRequest {
|
|
657
|
-
Status?: TranscriptionJobStatus
|
|
657
|
+
Status?: TranscriptionJobStatus;
|
|
658
658
|
JobNameContains?: string;
|
|
659
659
|
NextToken?: string;
|
|
660
660
|
MaxResults?: number;
|
|
@@ -670,33 +670,33 @@ export interface MedicalTranscriptionJobSummary {
|
|
|
670
670
|
CreationTime?: Date;
|
|
671
671
|
StartTime?: Date;
|
|
672
672
|
CompletionTime?: Date;
|
|
673
|
-
LanguageCode?: LanguageCode
|
|
674
|
-
TranscriptionJobStatus?: TranscriptionJobStatus
|
|
673
|
+
LanguageCode?: LanguageCode;
|
|
674
|
+
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
675
675
|
FailureReason?: string;
|
|
676
|
-
OutputLocationType?: OutputLocationType
|
|
677
|
-
Specialty?: Specialty
|
|
678
|
-
ContentIdentificationType?: MedicalContentIdentificationType
|
|
679
|
-
Type?: Type
|
|
676
|
+
OutputLocationType?: OutputLocationType;
|
|
677
|
+
Specialty?: Specialty;
|
|
678
|
+
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
679
|
+
Type?: Type;
|
|
680
680
|
}
|
|
681
681
|
export interface ListMedicalTranscriptionJobsResponse {
|
|
682
|
-
Status?: TranscriptionJobStatus
|
|
682
|
+
Status?: TranscriptionJobStatus;
|
|
683
683
|
NextToken?: string;
|
|
684
684
|
MedicalTranscriptionJobSummaries?: MedicalTranscriptionJobSummary[];
|
|
685
685
|
}
|
|
686
686
|
export interface ListMedicalVocabulariesRequest {
|
|
687
687
|
NextToken?: string;
|
|
688
688
|
MaxResults?: number;
|
|
689
|
-
StateEquals?: VocabularyState
|
|
689
|
+
StateEquals?: VocabularyState;
|
|
690
690
|
NameContains?: string;
|
|
691
691
|
}
|
|
692
692
|
export interface VocabularyInfo {
|
|
693
693
|
VocabularyName?: string;
|
|
694
|
-
LanguageCode?: LanguageCode
|
|
694
|
+
LanguageCode?: LanguageCode;
|
|
695
695
|
LastModifiedTime?: Date;
|
|
696
|
-
VocabularyState?: VocabularyState
|
|
696
|
+
VocabularyState?: VocabularyState;
|
|
697
697
|
}
|
|
698
698
|
export interface ListMedicalVocabulariesResponse {
|
|
699
|
-
Status?: VocabularyState
|
|
699
|
+
Status?: VocabularyState;
|
|
700
700
|
NextToken?: string;
|
|
701
701
|
Vocabularies?: VocabularyInfo[];
|
|
702
702
|
}
|
|
@@ -708,7 +708,7 @@ export interface ListTagsForResourceResponse {
|
|
|
708
708
|
Tags?: Tag[];
|
|
709
709
|
}
|
|
710
710
|
export interface ListTranscriptionJobsRequest {
|
|
711
|
-
Status?: TranscriptionJobStatus
|
|
711
|
+
Status?: TranscriptionJobStatus;
|
|
712
712
|
JobNameContains?: string;
|
|
713
713
|
NextToken?: string;
|
|
714
714
|
MaxResults?: number;
|
|
@@ -718,10 +718,10 @@ export interface TranscriptionJobSummary {
|
|
|
718
718
|
CreationTime?: Date;
|
|
719
719
|
StartTime?: Date;
|
|
720
720
|
CompletionTime?: Date;
|
|
721
|
-
LanguageCode?: LanguageCode
|
|
722
|
-
TranscriptionJobStatus?: TranscriptionJobStatus
|
|
721
|
+
LanguageCode?: LanguageCode;
|
|
722
|
+
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
723
723
|
FailureReason?: string;
|
|
724
|
-
OutputLocationType?: OutputLocationType
|
|
724
|
+
OutputLocationType?: OutputLocationType;
|
|
725
725
|
ContentRedaction?: ContentRedaction;
|
|
726
726
|
ModelSettings?: ModelSettings;
|
|
727
727
|
IdentifyLanguage?: boolean;
|
|
@@ -731,18 +731,18 @@ export interface TranscriptionJobSummary {
|
|
|
731
731
|
ToxicityDetection?: ToxicityDetectionSettings[];
|
|
732
732
|
}
|
|
733
733
|
export interface ListTranscriptionJobsResponse {
|
|
734
|
-
Status?: TranscriptionJobStatus
|
|
734
|
+
Status?: TranscriptionJobStatus;
|
|
735
735
|
NextToken?: string;
|
|
736
736
|
TranscriptionJobSummaries?: TranscriptionJobSummary[];
|
|
737
737
|
}
|
|
738
738
|
export interface ListVocabulariesRequest {
|
|
739
739
|
NextToken?: string;
|
|
740
740
|
MaxResults?: number;
|
|
741
|
-
StateEquals?: VocabularyState
|
|
741
|
+
StateEquals?: VocabularyState;
|
|
742
742
|
NameContains?: string;
|
|
743
743
|
}
|
|
744
744
|
export interface ListVocabulariesResponse {
|
|
745
|
-
Status?: VocabularyState
|
|
745
|
+
Status?: VocabularyState;
|
|
746
746
|
NextToken?: string;
|
|
747
747
|
Vocabularies?: VocabularyInfo[];
|
|
748
748
|
}
|
|
@@ -753,7 +753,7 @@ export interface ListVocabularyFiltersRequest {
|
|
|
753
753
|
}
|
|
754
754
|
export interface VocabularyFilterInfo {
|
|
755
755
|
VocabularyFilterName?: string;
|
|
756
|
-
LanguageCode?: LanguageCode
|
|
756
|
+
LanguageCode?: LanguageCode;
|
|
757
757
|
LastModifiedTime?: Date;
|
|
758
758
|
}
|
|
759
759
|
export interface ListVocabularyFiltersResponse {
|
|
@@ -774,32 +774,32 @@ export interface StartCallAnalyticsJobResponse {
|
|
|
774
774
|
}
|
|
775
775
|
export interface StartMedicalTranscriptionJobRequest {
|
|
776
776
|
MedicalTranscriptionJobName: string | undefined;
|
|
777
|
-
LanguageCode: LanguageCode |
|
|
777
|
+
LanguageCode: LanguageCode | undefined;
|
|
778
778
|
MediaSampleRateHertz?: number;
|
|
779
|
-
MediaFormat?: MediaFormat
|
|
779
|
+
MediaFormat?: MediaFormat;
|
|
780
780
|
Media: Media | undefined;
|
|
781
781
|
OutputBucketName: string | undefined;
|
|
782
782
|
OutputKey?: string;
|
|
783
783
|
OutputEncryptionKMSKeyId?: string;
|
|
784
784
|
KMSEncryptionContext?: Record<string, string>;
|
|
785
785
|
Settings?: MedicalTranscriptionSetting;
|
|
786
|
-
ContentIdentificationType?: MedicalContentIdentificationType
|
|
787
|
-
Specialty: Specialty |
|
|
788
|
-
Type: Type |
|
|
786
|
+
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
787
|
+
Specialty: Specialty | undefined;
|
|
788
|
+
Type: Type | undefined;
|
|
789
789
|
Tags?: Tag[];
|
|
790
790
|
}
|
|
791
791
|
export interface StartMedicalTranscriptionJobResponse {
|
|
792
792
|
MedicalTranscriptionJob?: MedicalTranscriptionJob;
|
|
793
793
|
}
|
|
794
794
|
export interface Subtitles {
|
|
795
|
-
Formats?:
|
|
795
|
+
Formats?: SubtitleFormat[];
|
|
796
796
|
OutputStartIndex?: number;
|
|
797
797
|
}
|
|
798
798
|
export interface StartTranscriptionJobRequest {
|
|
799
799
|
TranscriptionJobName: string | undefined;
|
|
800
|
-
LanguageCode?: LanguageCode
|
|
800
|
+
LanguageCode?: LanguageCode;
|
|
801
801
|
MediaSampleRateHertz?: number;
|
|
802
|
-
MediaFormat?: MediaFormat
|
|
802
|
+
MediaFormat?: MediaFormat;
|
|
803
803
|
Media: Media | undefined;
|
|
804
804
|
OutputBucketName?: string;
|
|
805
805
|
OutputKey?: string;
|
|
@@ -811,10 +811,10 @@ export interface StartTranscriptionJobRequest {
|
|
|
811
811
|
ContentRedaction?: ContentRedaction;
|
|
812
812
|
IdentifyLanguage?: boolean;
|
|
813
813
|
IdentifyMultipleLanguages?: boolean;
|
|
814
|
-
LanguageOptions?:
|
|
814
|
+
LanguageOptions?: LanguageCode[];
|
|
815
815
|
Subtitles?: Subtitles;
|
|
816
816
|
Tags?: Tag[];
|
|
817
|
-
LanguageIdSettings?: Record<
|
|
817
|
+
LanguageIdSettings?: Record<LanguageCode, LanguageIdSettings>;
|
|
818
818
|
ToxicityDetection?: ToxicityDetectionSettings[];
|
|
819
819
|
}
|
|
820
820
|
export interface StartTranscriptionJobResponse {
|
|
@@ -833,34 +833,34 @@ export interface UntagResourceResponse {}
|
|
|
833
833
|
export interface UpdateCallAnalyticsCategoryRequest {
|
|
834
834
|
CategoryName: string | undefined;
|
|
835
835
|
Rules: Rule[] | undefined;
|
|
836
|
-
InputType?: InputType
|
|
836
|
+
InputType?: InputType;
|
|
837
837
|
}
|
|
838
838
|
export interface UpdateCallAnalyticsCategoryResponse {
|
|
839
839
|
CategoryProperties?: CategoryProperties;
|
|
840
840
|
}
|
|
841
841
|
export interface UpdateMedicalVocabularyRequest {
|
|
842
842
|
VocabularyName: string | undefined;
|
|
843
|
-
LanguageCode: LanguageCode |
|
|
843
|
+
LanguageCode: LanguageCode | undefined;
|
|
844
844
|
VocabularyFileUri: string | undefined;
|
|
845
845
|
}
|
|
846
846
|
export interface UpdateMedicalVocabularyResponse {
|
|
847
847
|
VocabularyName?: string;
|
|
848
|
-
LanguageCode?: LanguageCode
|
|
848
|
+
LanguageCode?: LanguageCode;
|
|
849
849
|
LastModifiedTime?: Date;
|
|
850
|
-
VocabularyState?: VocabularyState
|
|
850
|
+
VocabularyState?: VocabularyState;
|
|
851
851
|
}
|
|
852
852
|
export interface UpdateVocabularyRequest {
|
|
853
853
|
VocabularyName: string | undefined;
|
|
854
|
-
LanguageCode: LanguageCode |
|
|
854
|
+
LanguageCode: LanguageCode | undefined;
|
|
855
855
|
Phrases?: string[];
|
|
856
856
|
VocabularyFileUri?: string;
|
|
857
857
|
DataAccessRoleArn?: string;
|
|
858
858
|
}
|
|
859
859
|
export interface UpdateVocabularyResponse {
|
|
860
860
|
VocabularyName?: string;
|
|
861
|
-
LanguageCode?: LanguageCode
|
|
861
|
+
LanguageCode?: LanguageCode;
|
|
862
862
|
LastModifiedTime?: Date;
|
|
863
|
-
VocabularyState?: VocabularyState
|
|
863
|
+
VocabularyState?: VocabularyState;
|
|
864
864
|
}
|
|
865
865
|
export interface UpdateVocabularyFilterRequest {
|
|
866
866
|
VocabularyFilterName: string | undefined;
|
|
@@ -870,6 +870,6 @@ export interface UpdateVocabularyFilterRequest {
|
|
|
870
870
|
}
|
|
871
871
|
export interface UpdateVocabularyFilterResponse {
|
|
872
872
|
VocabularyFilterName?: string;
|
|
873
|
-
LanguageCode?: LanguageCode
|
|
873
|
+
LanguageCode?: LanguageCode;
|
|
874
874
|
LastModifiedTime?: Date;
|
|
875
875
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-transcribe",
|
|
3
3
|
"description": "AWS SDK for JavaScript Transcribe Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|