@aws-sdk/client-transcribe 3.687.0 → 3.691.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/dist-types/models/models_0.d.ts +384 -384
- package/dist-types/ts3.4/models/models_0.d.ts +392 -384
- package/package.json +7 -7
|
@@ -24,26 +24,26 @@ export interface AbsoluteTimeRange {
|
|
|
24
24
|
* also include <code>EndTime</code>.</p>
|
|
25
25
|
* @public
|
|
26
26
|
*/
|
|
27
|
-
StartTime?: number;
|
|
27
|
+
StartTime?: number | undefined;
|
|
28
28
|
/**
|
|
29
29
|
* <p>The time, in milliseconds, when Amazon Transcribe stops searching for the specified
|
|
30
30
|
* criteria in your audio. If you include <code>EndTime</code> in your request, you must
|
|
31
31
|
* also include <code>StartTime</code>.</p>
|
|
32
32
|
* @public
|
|
33
33
|
*/
|
|
34
|
-
EndTime?: number;
|
|
34
|
+
EndTime?: number | undefined;
|
|
35
35
|
/**
|
|
36
36
|
* <p>The time, in milliseconds, from the start of your media file until the specified value.
|
|
37
37
|
* Amazon Transcribe searches for your specified criteria in this time segment.</p>
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
First?: number;
|
|
40
|
+
First?: number | undefined;
|
|
41
41
|
/**
|
|
42
42
|
* <p>The time, in milliseconds, from the specified value until the end of your media file.
|
|
43
43
|
* Amazon Transcribe searches for your specified criteria in this time segment.</p>
|
|
44
44
|
* @public
|
|
45
45
|
*/
|
|
46
|
-
Last?: number;
|
|
46
|
+
Last?: number | undefined;
|
|
47
47
|
}
|
|
48
48
|
/**
|
|
49
49
|
* <p>Your request didn't pass one or more validation tests. This can occur when the entity
|
|
@@ -55,7 +55,7 @@ export interface AbsoluteTimeRange {
|
|
|
55
55
|
export declare class BadRequestException extends __BaseException {
|
|
56
56
|
readonly name: "BadRequestException";
|
|
57
57
|
readonly $fault: "client";
|
|
58
|
-
Message?: string;
|
|
58
|
+
Message?: string | undefined;
|
|
59
59
|
/**
|
|
60
60
|
* @internal
|
|
61
61
|
*/
|
|
@@ -108,17 +108,17 @@ export interface CallAnalyticsSkippedFeature {
|
|
|
108
108
|
* <p>Indicates the type of analytics feature that was skipped during the analysis of a call analytics job.</p>
|
|
109
109
|
* @public
|
|
110
110
|
*/
|
|
111
|
-
Feature?: CallAnalyticsFeature;
|
|
111
|
+
Feature?: CallAnalyticsFeature | undefined;
|
|
112
112
|
/**
|
|
113
113
|
* <p>Provides a code indicating the reason why a specific analytics feature was skipped during the analysis of a call analytics job.</p>
|
|
114
114
|
* @public
|
|
115
115
|
*/
|
|
116
|
-
ReasonCode?: CallAnalyticsSkippedReasonCode;
|
|
116
|
+
ReasonCode?: CallAnalyticsSkippedReasonCode | undefined;
|
|
117
117
|
/**
|
|
118
118
|
* <p>Contains additional information or a message explaining why a specific analytics feature was skipped during the analysis of a call analytics job.</p>
|
|
119
119
|
* @public
|
|
120
120
|
*/
|
|
121
|
-
Message?: string;
|
|
121
|
+
Message?: string | undefined;
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* <p>Contains details about a call analytics job, including information about skipped analytics features.</p>
|
|
@@ -130,7 +130,7 @@ export interface CallAnalyticsJobDetails {
|
|
|
130
130
|
* <p>This array lists all the analytics features that were skipped, along with their corresponding reason code and message.</p>
|
|
131
131
|
* @public
|
|
132
132
|
*/
|
|
133
|
-
Skipped?: CallAnalyticsSkippedFeature[];
|
|
133
|
+
Skipped?: CallAnalyticsSkippedFeature[] | undefined;
|
|
134
134
|
}
|
|
135
135
|
/**
|
|
136
136
|
* @public
|
|
@@ -170,13 +170,13 @@ export interface ChannelDefinition {
|
|
|
170
170
|
* <p>Specify the audio channel you want to define.</p>
|
|
171
171
|
* @public
|
|
172
172
|
*/
|
|
173
|
-
ChannelId?: number;
|
|
173
|
+
ChannelId?: number | undefined;
|
|
174
174
|
/**
|
|
175
175
|
* <p>Specify the speaker you want to define. Omitting this parameter is equivalent to
|
|
176
176
|
* specifying both participants.</p>
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
|
-
ParticipantRole?: ParticipantRole;
|
|
179
|
+
ParticipantRole?: ParticipantRole | undefined;
|
|
180
180
|
}
|
|
181
181
|
/**
|
|
182
182
|
* @public
|
|
@@ -320,7 +320,7 @@ export interface Media {
|
|
|
320
320
|
* request.</p>
|
|
321
321
|
* @public
|
|
322
322
|
*/
|
|
323
|
-
MediaFileUri?: string;
|
|
323
|
+
MediaFileUri?: string | undefined;
|
|
324
324
|
/**
|
|
325
325
|
* <p>The Amazon S3 location of the media file you want to redact. For
|
|
326
326
|
* example:</p>
|
|
@@ -347,7 +347,7 @@ export interface Media {
|
|
|
347
347
|
* </important>
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
|
-
RedactedMediaFileUri?: string;
|
|
350
|
+
RedactedMediaFileUri?: string | undefined;
|
|
351
351
|
}
|
|
352
352
|
/**
|
|
353
353
|
* @public
|
|
@@ -447,7 +447,7 @@ export interface ContentRedaction {
|
|
|
447
447
|
* redacted.</p>
|
|
448
448
|
* @public
|
|
449
449
|
*/
|
|
450
|
-
PiiEntityTypes?: PiiEntityType[];
|
|
450
|
+
PiiEntityTypes?: PiiEntityType[] | undefined;
|
|
451
451
|
}
|
|
452
452
|
/**
|
|
453
453
|
* <p>If using automatic language identification in your request and you want to apply a
|
|
@@ -490,7 +490,7 @@ export interface LanguageIdSettings {
|
|
|
490
490
|
* mismatch.</p>
|
|
491
491
|
* @public
|
|
492
492
|
*/
|
|
493
|
-
VocabularyName?: string;
|
|
493
|
+
VocabularyName?: string | undefined;
|
|
494
494
|
/**
|
|
495
495
|
* <p>The name of the custom vocabulary filter you want to use when processing your
|
|
496
496
|
* transcription job. Custom vocabulary filter names are case sensitive.</p>
|
|
@@ -502,7 +502,7 @@ export interface LanguageIdSettings {
|
|
|
502
502
|
* also include <code>VocabularyFilterMethod</code>.</p>
|
|
503
503
|
* @public
|
|
504
504
|
*/
|
|
505
|
-
VocabularyFilterName?: string;
|
|
505
|
+
VocabularyFilterName?: string | undefined;
|
|
506
506
|
/**
|
|
507
507
|
* <p>The name of the custom language model you want to use when processing your
|
|
508
508
|
* transcription job. Note that custom language model names are case sensitive.</p>
|
|
@@ -512,7 +512,7 @@ export interface LanguageIdSettings {
|
|
|
512
512
|
* mismatch.</p>
|
|
513
513
|
* @public
|
|
514
514
|
*/
|
|
515
|
-
LanguageModelName?: string;
|
|
515
|
+
LanguageModelName?: string | undefined;
|
|
516
516
|
}
|
|
517
517
|
/**
|
|
518
518
|
* <p>Contains <code>GenerateAbstractiveSummary</code>, which is a required parameter if you
|
|
@@ -555,7 +555,7 @@ export interface CallAnalyticsJobSettings {
|
|
|
555
555
|
* transcription request. Custom vocabulary names are case sensitive.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
VocabularyName?: string;
|
|
558
|
+
VocabularyName?: string | undefined;
|
|
559
559
|
/**
|
|
560
560
|
* <p>The name of the custom vocabulary filter you want to include in your Call Analytics
|
|
561
561
|
* transcription request. Custom vocabulary filter names are case sensitive.</p>
|
|
@@ -563,7 +563,7 @@ export interface CallAnalyticsJobSettings {
|
|
|
563
563
|
* also include <code>VocabularyFilterMethod</code>.</p>
|
|
564
564
|
* @public
|
|
565
565
|
*/
|
|
566
|
-
VocabularyFilterName?: string;
|
|
566
|
+
VocabularyFilterName?: string | undefined;
|
|
567
567
|
/**
|
|
568
568
|
* <p>Specify how you want your custom vocabulary filter applied to your transcript.</p>
|
|
569
569
|
* <p>To replace words with <code>***</code>, choose <code>mask</code>.</p>
|
|
@@ -571,7 +571,7 @@ export interface CallAnalyticsJobSettings {
|
|
|
571
571
|
* <p>To flag words without changing them, choose <code>tag</code>.</p>
|
|
572
572
|
* @public
|
|
573
573
|
*/
|
|
574
|
-
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
574
|
+
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
575
575
|
/**
|
|
576
576
|
* <p>The name of the custom language model you want to use when processing your Call
|
|
577
577
|
* Analytics job. Note that custom language model names are case sensitive.</p>
|
|
@@ -581,7 +581,7 @@ export interface CallAnalyticsJobSettings {
|
|
|
581
581
|
* mismatch.</p>
|
|
582
582
|
* @public
|
|
583
583
|
*/
|
|
584
|
-
LanguageModelName?: string;
|
|
584
|
+
LanguageModelName?: string | undefined;
|
|
585
585
|
/**
|
|
586
586
|
* <p>Makes it possible to redact or flag specified personally identifiable information (PII) in
|
|
587
587
|
* your transcript. If you use <code>ContentRedaction</code>, you must also include the
|
|
@@ -590,7 +590,7 @@ export interface CallAnalyticsJobSettings {
|
|
|
590
590
|
* redact.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
ContentRedaction?: ContentRedaction;
|
|
593
|
+
ContentRedaction?: ContentRedaction | undefined;
|
|
594
594
|
/**
|
|
595
595
|
* <p>You can specify two or more language codes that represent the languages you think may
|
|
596
596
|
* be present in your media. Including more than five is not recommended. If you're unsure
|
|
@@ -602,7 +602,7 @@ export interface CallAnalyticsJobSettings {
|
|
|
602
602
|
* must be encoded at a sample rate of 16,000 Hz or higher.</p>
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
LanguageOptions?: LanguageCode[];
|
|
605
|
+
LanguageOptions?: LanguageCode[] | undefined;
|
|
606
606
|
/**
|
|
607
607
|
* <p>If using automatic language identification in your request and you want to apply a
|
|
608
608
|
* custom language model, a custom vocabulary, or a custom vocabulary filter, include
|
|
@@ -632,13 +632,13 @@ export interface CallAnalyticsJobSettings {
|
|
|
632
632
|
* language-specific features</a>.</p>
|
|
633
633
|
* @public
|
|
634
634
|
*/
|
|
635
|
-
LanguageIdSettings?: Partial<Record<LanguageCode, LanguageIdSettings
|
|
635
|
+
LanguageIdSettings?: Partial<Record<LanguageCode, LanguageIdSettings>> | undefined;
|
|
636
636
|
/**
|
|
637
637
|
* <p>Contains <code>GenerateAbstractiveSummary</code>, which is a required parameter if you
|
|
638
638
|
* want to enable Generative call summarization in your Call Analytics request.</p>
|
|
639
639
|
* @public
|
|
640
640
|
*/
|
|
641
|
-
Summarization?: Summarization;
|
|
641
|
+
Summarization?: Summarization | undefined;
|
|
642
642
|
}
|
|
643
643
|
/**
|
|
644
644
|
* <p>Provides you with the Amazon S3 URI you can use to access your
|
|
@@ -664,7 +664,7 @@ export interface Transcript {
|
|
|
664
664
|
* </note>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
TranscriptFileUri?: string;
|
|
667
|
+
TranscriptFileUri?: string | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* <p>The Amazon S3 location of your redacted transcript. You can use this URI to
|
|
670
670
|
* access or download your transcript.</p>
|
|
@@ -683,7 +683,7 @@ export interface Transcript {
|
|
|
683
683
|
* </note>
|
|
684
684
|
* @public
|
|
685
685
|
*/
|
|
686
|
-
RedactedTranscriptFileUri?: string;
|
|
686
|
+
RedactedTranscriptFileUri?: string | undefined;
|
|
687
687
|
}
|
|
688
688
|
/**
|
|
689
689
|
* <p>Provides detailed information about a Call Analytics job.</p>
|
|
@@ -706,7 +706,7 @@ export interface CallAnalyticsJob {
|
|
|
706
706
|
* within an Amazon Web Services account.</p>
|
|
707
707
|
* @public
|
|
708
708
|
*/
|
|
709
|
-
CallAnalyticsJobName?: string;
|
|
709
|
+
CallAnalyticsJobName?: string | undefined;
|
|
710
710
|
/**
|
|
711
711
|
* <p>Provides the status of the specified Call Analytics job.</p>
|
|
712
712
|
* <p>If the status is <code>COMPLETED</code>, the job is finished and you can find the
|
|
@@ -716,12 +716,12 @@ export interface CallAnalyticsJob {
|
|
|
716
716
|
* your transcription job failed.</p>
|
|
717
717
|
* @public
|
|
718
718
|
*/
|
|
719
|
-
CallAnalyticsJobStatus?: CallAnalyticsJobStatus;
|
|
719
|
+
CallAnalyticsJobStatus?: CallAnalyticsJobStatus | undefined;
|
|
720
720
|
/**
|
|
721
721
|
* <p>Provides detailed information about a call analytics job, including information about skipped analytics features.</p>
|
|
722
722
|
* @public
|
|
723
723
|
*/
|
|
724
|
-
CallAnalyticsJobDetails?: CallAnalyticsJobDetails;
|
|
724
|
+
CallAnalyticsJobDetails?: CallAnalyticsJobDetails | undefined;
|
|
725
725
|
/**
|
|
726
726
|
* <p>The language code used to create your Call Analytics job. For a list of supported
|
|
727
727
|
* languages and their associated language codes, refer to the <a href="https://docs.aws.amazon.com/transcribe/latest/dg/supported-languages.html">Supported languages</a>
|
|
@@ -731,29 +731,29 @@ export interface CallAnalyticsJob {
|
|
|
731
731
|
* accuracy of language identification, you can include several language codes and Amazon Transcribe chooses the closest match for your transcription.</p>
|
|
732
732
|
* @public
|
|
733
733
|
*/
|
|
734
|
-
LanguageCode?: LanguageCode;
|
|
734
|
+
LanguageCode?: LanguageCode | undefined;
|
|
735
735
|
/**
|
|
736
736
|
* <p>The sample rate, in hertz, of the audio track in your input media file.</p>
|
|
737
737
|
* @public
|
|
738
738
|
*/
|
|
739
|
-
MediaSampleRateHertz?: number;
|
|
739
|
+
MediaSampleRateHertz?: number | undefined;
|
|
740
740
|
/**
|
|
741
741
|
* <p>The format of the input media file.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
MediaFormat?: MediaFormat;
|
|
744
|
+
MediaFormat?: MediaFormat | undefined;
|
|
745
745
|
/**
|
|
746
746
|
* <p>Provides the Amazon S3 location of the media file you used in your Call
|
|
747
747
|
* Analytics request.</p>
|
|
748
748
|
* @public
|
|
749
749
|
*/
|
|
750
|
-
Media?: Media;
|
|
750
|
+
Media?: Media | undefined;
|
|
751
751
|
/**
|
|
752
752
|
* <p>Provides you with the Amazon S3 URI you can use to access your
|
|
753
753
|
* transcript.</p>
|
|
754
754
|
* @public
|
|
755
755
|
*/
|
|
756
|
-
Transcript?: Transcript;
|
|
756
|
+
Transcript?: Transcript | undefined;
|
|
757
757
|
/**
|
|
758
758
|
* <p>The date and time the specified Call Analytics job began processing.</p>
|
|
759
759
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -761,7 +761,7 @@ export interface CallAnalyticsJob {
|
|
|
761
761
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
762
762
|
* @public
|
|
763
763
|
*/
|
|
764
|
-
StartTime?: Date;
|
|
764
|
+
StartTime?: Date | undefined;
|
|
765
765
|
/**
|
|
766
766
|
* <p>The date and time the specified Call Analytics job request was made.</p>
|
|
767
767
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -769,7 +769,7 @@ export interface CallAnalyticsJob {
|
|
|
769
769
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
770
770
|
* @public
|
|
771
771
|
*/
|
|
772
|
-
CreationTime?: Date;
|
|
772
|
+
CreationTime?: Date | undefined;
|
|
773
773
|
/**
|
|
774
774
|
* <p>The date and time the specified Call Analytics job finished processing.</p>
|
|
775
775
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -777,7 +777,7 @@ export interface CallAnalyticsJob {
|
|
|
777
777
|
* that started processing at 12:33 PM UTC-7 on May 4, 2022.</p>
|
|
778
778
|
* @public
|
|
779
779
|
*/
|
|
780
|
-
CompletionTime?: Date;
|
|
780
|
+
CompletionTime?: Date | undefined;
|
|
781
781
|
/**
|
|
782
782
|
* <p>If <code>CallAnalyticsJobStatus</code> is <code>FAILED</code>,
|
|
783
783
|
* <code>FailureReason</code> contains information about why the Call Analytics job
|
|
@@ -830,12 +830,12 @@ export interface CallAnalyticsJob {
|
|
|
830
830
|
* </ul>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
FailureReason?: string;
|
|
833
|
+
FailureReason?: string | undefined;
|
|
834
834
|
/**
|
|
835
835
|
* <p>The Amazon Resource Name (ARN) you included in your request.</p>
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
DataAccessRoleArn?: string;
|
|
838
|
+
DataAccessRoleArn?: string | undefined;
|
|
839
839
|
/**
|
|
840
840
|
* <p>The confidence score associated with the language identified in your media
|
|
841
841
|
* file.</p>
|
|
@@ -844,19 +844,19 @@ export interface CallAnalyticsJob {
|
|
|
844
844
|
* media.</p>
|
|
845
845
|
* @public
|
|
846
846
|
*/
|
|
847
|
-
IdentifiedLanguageScore?: number;
|
|
847
|
+
IdentifiedLanguageScore?: number | undefined;
|
|
848
848
|
/**
|
|
849
849
|
* <p>Provides information on any additional settings that were included in your request.
|
|
850
850
|
* Additional settings include content redaction and language identification
|
|
851
851
|
* settings.</p>
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
Settings?: CallAnalyticsJobSettings;
|
|
854
|
+
Settings?: CallAnalyticsJobSettings | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* <p>Indicates which speaker is on which channel.</p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
ChannelDefinitions?: ChannelDefinition[];
|
|
859
|
+
ChannelDefinitions?: ChannelDefinition[] | undefined;
|
|
860
860
|
}
|
|
861
861
|
/**
|
|
862
862
|
* <p>Provides detailed information about a specific Call Analytics job.</p>
|
|
@@ -868,7 +868,7 @@ export interface CallAnalyticsJobSummary {
|
|
|
868
868
|
* within an Amazon Web Services account.</p>
|
|
869
869
|
* @public
|
|
870
870
|
*/
|
|
871
|
-
CallAnalyticsJobName?: string;
|
|
871
|
+
CallAnalyticsJobName?: string | undefined;
|
|
872
872
|
/**
|
|
873
873
|
* <p>The date and time the specified Call Analytics job request was made.</p>
|
|
874
874
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -876,7 +876,7 @@ export interface CallAnalyticsJobSummary {
|
|
|
876
876
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
877
877
|
* @public
|
|
878
878
|
*/
|
|
879
|
-
CreationTime?: Date;
|
|
879
|
+
CreationTime?: Date | undefined;
|
|
880
880
|
/**
|
|
881
881
|
* <p>The date and time your Call Analytics job began processing.</p>
|
|
882
882
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -884,7 +884,7 @@ export interface CallAnalyticsJobSummary {
|
|
|
884
884
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
885
885
|
* @public
|
|
886
886
|
*/
|
|
887
|
-
StartTime?: Date;
|
|
887
|
+
StartTime?: Date | undefined;
|
|
888
888
|
/**
|
|
889
889
|
* <p>The date and time the specified Call Analytics job finished processing.</p>
|
|
890
890
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -892,12 +892,12 @@ export interface CallAnalyticsJobSummary {
|
|
|
892
892
|
* that started processing at 12:33 PM UTC-7 on May 4, 2022.</p>
|
|
893
893
|
* @public
|
|
894
894
|
*/
|
|
895
|
-
CompletionTime?: Date;
|
|
895
|
+
CompletionTime?: Date | undefined;
|
|
896
896
|
/**
|
|
897
897
|
* <p>The language code used to create your Call Analytics transcription.</p>
|
|
898
898
|
* @public
|
|
899
899
|
*/
|
|
900
|
-
LanguageCode?: LanguageCode;
|
|
900
|
+
LanguageCode?: LanguageCode | undefined;
|
|
901
901
|
/**
|
|
902
902
|
* <p>Provides the status of your Call Analytics job.</p>
|
|
903
903
|
* <p>If the status is <code>COMPLETED</code>, the job is finished and you can find the
|
|
@@ -907,19 +907,19 @@ export interface CallAnalyticsJobSummary {
|
|
|
907
907
|
* your transcription job failed.</p>
|
|
908
908
|
* @public
|
|
909
909
|
*/
|
|
910
|
-
CallAnalyticsJobStatus?: CallAnalyticsJobStatus;
|
|
910
|
+
CallAnalyticsJobStatus?: CallAnalyticsJobStatus | undefined;
|
|
911
911
|
/**
|
|
912
912
|
* <p>Provides detailed information about a call analytics job, including information about skipped analytics features.</p>
|
|
913
913
|
* @public
|
|
914
914
|
*/
|
|
915
|
-
CallAnalyticsJobDetails?: CallAnalyticsJobDetails;
|
|
915
|
+
CallAnalyticsJobDetails?: CallAnalyticsJobDetails | undefined;
|
|
916
916
|
/**
|
|
917
917
|
* <p>If <code>CallAnalyticsJobStatus</code> is <code>FAILED</code>,
|
|
918
918
|
* <code>FailureReason</code> contains information about why the Call Analytics job
|
|
919
919
|
* failed. See also: <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common Errors</a>.</p>
|
|
920
920
|
* @public
|
|
921
921
|
*/
|
|
922
|
-
FailureReason?: string;
|
|
922
|
+
FailureReason?: string | undefined;
|
|
923
923
|
}
|
|
924
924
|
/**
|
|
925
925
|
* @public
|
|
@@ -955,26 +955,26 @@ export interface RelativeTimeRange {
|
|
|
955
955
|
* request, you must also include <code>EndPercentage</code>.</p>
|
|
956
956
|
* @public
|
|
957
957
|
*/
|
|
958
|
-
StartPercentage?: number;
|
|
958
|
+
StartPercentage?: number | undefined;
|
|
959
959
|
/**
|
|
960
960
|
* <p>The time, in percentage, when Amazon Transcribe stops searching for the specified
|
|
961
961
|
* criteria in your media file. If you include <code>EndPercentage</code> in your request,
|
|
962
962
|
* you must also include <code>StartPercentage</code>.</p>
|
|
963
963
|
* @public
|
|
964
964
|
*/
|
|
965
|
-
EndPercentage?: number;
|
|
965
|
+
EndPercentage?: number | undefined;
|
|
966
966
|
/**
|
|
967
967
|
* <p>The time, in percentage, from the start of your media file until the specified value.
|
|
968
968
|
* Amazon Transcribe searches for your specified criteria in this time segment.</p>
|
|
969
969
|
* @public
|
|
970
970
|
*/
|
|
971
|
-
First?: number;
|
|
971
|
+
First?: number | undefined;
|
|
972
972
|
/**
|
|
973
973
|
* <p>The time, in percentage, from the specified value until the end of your media file.
|
|
974
974
|
* Amazon Transcribe searches for your specified criteria in this time segment.</p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
Last?: number;
|
|
977
|
+
Last?: number | undefined;
|
|
978
978
|
}
|
|
979
979
|
/**
|
|
980
980
|
* <p>Flag the presence or absence of interruptions in your Call Analytics transcription
|
|
@@ -1004,31 +1004,31 @@ export interface InterruptionFilter {
|
|
|
1004
1004
|
* speech that contains more than 10,000 milliseconds of interruptions.</p>
|
|
1005
1005
|
* @public
|
|
1006
1006
|
*/
|
|
1007
|
-
Threshold?: number;
|
|
1007
|
+
Threshold?: number | undefined;
|
|
1008
1008
|
/**
|
|
1009
1009
|
* <p>Specify the interrupter that you want to flag. Omitting this parameter is equivalent
|
|
1010
1010
|
* to specifying both participants.</p>
|
|
1011
1011
|
* @public
|
|
1012
1012
|
*/
|
|
1013
|
-
ParticipantRole?: ParticipantRole;
|
|
1013
|
+
ParticipantRole?: ParticipantRole | undefined;
|
|
1014
1014
|
/**
|
|
1015
1015
|
* <p>Makes it possible to specify a time range (in milliseconds) in your audio, during
|
|
1016
1016
|
* which you want to search for an interruption. See for more detail.</p>
|
|
1017
1017
|
* @public
|
|
1018
1018
|
*/
|
|
1019
|
-
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
1019
|
+
AbsoluteTimeRange?: AbsoluteTimeRange | undefined;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* <p>Makes it possible to specify a time range (in percentage) in your media file, during
|
|
1022
1022
|
* which you want to search for an interruption. See for more detail.</p>
|
|
1023
1023
|
* @public
|
|
1024
1024
|
*/
|
|
1025
|
-
RelativeTimeRange?: RelativeTimeRange;
|
|
1025
|
+
RelativeTimeRange?: RelativeTimeRange | undefined;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* <p>Set to <code>TRUE</code> to flag speech that does not contain interruptions. Set to
|
|
1028
1028
|
* <code>FALSE</code> to flag speech that contains interruptions.</p>
|
|
1029
1029
|
* @public
|
|
1030
1030
|
*/
|
|
1031
|
-
Negate?: boolean;
|
|
1031
|
+
Negate?: boolean | undefined;
|
|
1032
1032
|
}
|
|
1033
1033
|
/**
|
|
1034
1034
|
* <p>Flag the presence or absence of periods of silence in your Call Analytics
|
|
@@ -1052,25 +1052,25 @@ export interface NonTalkTimeFilter {
|
|
|
1052
1052
|
* For example, you can flag a silent period that lasts 30,000 milliseconds.</p>
|
|
1053
1053
|
* @public
|
|
1054
1054
|
*/
|
|
1055
|
-
Threshold?: number;
|
|
1055
|
+
Threshold?: number | undefined;
|
|
1056
1056
|
/**
|
|
1057
1057
|
* <p>Makes it possible to specify a time range (in milliseconds) in your audio, during
|
|
1058
1058
|
* which you want to search for a period of silence. See for more detail.</p>
|
|
1059
1059
|
* @public
|
|
1060
1060
|
*/
|
|
1061
|
-
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
1061
|
+
AbsoluteTimeRange?: AbsoluteTimeRange | undefined;
|
|
1062
1062
|
/**
|
|
1063
1063
|
* <p>Makes it possible to specify a time range (in percentage) in your media file, during
|
|
1064
1064
|
* which you want to search for a period of silence. See for more detail.</p>
|
|
1065
1065
|
* @public
|
|
1066
1066
|
*/
|
|
1067
|
-
RelativeTimeRange?: RelativeTimeRange;
|
|
1067
|
+
RelativeTimeRange?: RelativeTimeRange | undefined;
|
|
1068
1068
|
/**
|
|
1069
1069
|
* <p>Set to <code>TRUE</code> to flag periods of speech. Set to <code>FALSE</code> to flag
|
|
1070
1070
|
* periods of silence</p>
|
|
1071
1071
|
* @public
|
|
1072
1072
|
*/
|
|
1073
|
-
Negate?: boolean;
|
|
1073
|
+
Negate?: boolean | undefined;
|
|
1074
1074
|
}
|
|
1075
1075
|
/**
|
|
1076
1076
|
* @public
|
|
@@ -1123,26 +1123,26 @@ export interface SentimentFilter {
|
|
|
1123
1123
|
* which you want to search for the specified sentiments. See for more detail.</p>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
1126
|
+
AbsoluteTimeRange?: AbsoluteTimeRange | undefined;
|
|
1127
1127
|
/**
|
|
1128
1128
|
* <p>Makes it possible to specify a time range (in percentage) in your media file, during
|
|
1129
1129
|
* which you want to search for the specified sentiments. See for more detail.</p>
|
|
1130
1130
|
* @public
|
|
1131
1131
|
*/
|
|
1132
|
-
RelativeTimeRange?: RelativeTimeRange;
|
|
1132
|
+
RelativeTimeRange?: RelativeTimeRange | undefined;
|
|
1133
1133
|
/**
|
|
1134
1134
|
* <p>Specify the participant that you want to flag. Omitting this parameter is equivalent
|
|
1135
1135
|
* to specifying both participants.</p>
|
|
1136
1136
|
* @public
|
|
1137
1137
|
*/
|
|
1138
|
-
ParticipantRole?: ParticipantRole;
|
|
1138
|
+
ParticipantRole?: ParticipantRole | undefined;
|
|
1139
1139
|
/**
|
|
1140
1140
|
* <p>Set to <code>TRUE</code> to flag the sentiments that you didn't include in your
|
|
1141
1141
|
* request. Set to <code>FALSE</code> to flag the sentiments that you specified in your
|
|
1142
1142
|
* request.</p>
|
|
1143
1143
|
* @public
|
|
1144
1144
|
*/
|
|
1145
|
-
Negate?: boolean;
|
|
1145
|
+
Negate?: boolean | undefined;
|
|
1146
1146
|
}
|
|
1147
1147
|
/**
|
|
1148
1148
|
* @public
|
|
@@ -1192,26 +1192,26 @@ export interface TranscriptFilter {
|
|
|
1192
1192
|
* which you want to search for the specified key words or phrases. See for more detail.</p>
|
|
1193
1193
|
* @public
|
|
1194
1194
|
*/
|
|
1195
|
-
AbsoluteTimeRange?: AbsoluteTimeRange;
|
|
1195
|
+
AbsoluteTimeRange?: AbsoluteTimeRange | undefined;
|
|
1196
1196
|
/**
|
|
1197
1197
|
* <p>Makes it possible to specify a time range (in percentage) in your media file, during
|
|
1198
1198
|
* which you want to search for the specified key words or phrases. See for more detail.</p>
|
|
1199
1199
|
* @public
|
|
1200
1200
|
*/
|
|
1201
|
-
RelativeTimeRange?: RelativeTimeRange;
|
|
1201
|
+
RelativeTimeRange?: RelativeTimeRange | undefined;
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>Specify the participant that you want to flag. Omitting this parameter is equivalent
|
|
1204
1204
|
* to specifying both participants.</p>
|
|
1205
1205
|
* @public
|
|
1206
1206
|
*/
|
|
1207
|
-
ParticipantRole?: ParticipantRole;
|
|
1207
|
+
ParticipantRole?: ParticipantRole | undefined;
|
|
1208
1208
|
/**
|
|
1209
1209
|
* <p>Set to <code>TRUE</code> to flag the absence of the phrase that you specified in your
|
|
1210
1210
|
* request. Set to <code>FALSE</code> to flag the presence of the phrase that you specified
|
|
1211
1211
|
* in your request.</p>
|
|
1212
1212
|
* @public
|
|
1213
1213
|
*/
|
|
1214
|
-
Negate?: boolean;
|
|
1214
|
+
Negate?: boolean | undefined;
|
|
1215
1215
|
/**
|
|
1216
1216
|
* <p>Specify the phrases that you want to flag.</p>
|
|
1217
1217
|
* @public
|
|
@@ -1315,13 +1315,13 @@ export interface CategoryProperties {
|
|
|
1315
1315
|
* unique within an Amazon Web Services account.</p>
|
|
1316
1316
|
* @public
|
|
1317
1317
|
*/
|
|
1318
|
-
CategoryName?: string;
|
|
1318
|
+
CategoryName?: string | undefined;
|
|
1319
1319
|
/**
|
|
1320
1320
|
* <p>The rules used to define a Call Analytics category. Each category can have between 1
|
|
1321
1321
|
* and 20 rules.</p>
|
|
1322
1322
|
* @public
|
|
1323
1323
|
*/
|
|
1324
|
-
Rules?: Rule[];
|
|
1324
|
+
Rules?: Rule[] | undefined;
|
|
1325
1325
|
/**
|
|
1326
1326
|
* <p>The date and time the specified Call Analytics category was created.</p>
|
|
1327
1327
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -1329,7 +1329,7 @@ export interface CategoryProperties {
|
|
|
1329
1329
|
* 4, 2022.</p>
|
|
1330
1330
|
* @public
|
|
1331
1331
|
*/
|
|
1332
|
-
CreateTime?: Date;
|
|
1332
|
+
CreateTime?: Date | undefined;
|
|
1333
1333
|
/**
|
|
1334
1334
|
* <p>The date and time the specified Call Analytics category was last updated.</p>
|
|
1335
1335
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -1337,14 +1337,14 @@ export interface CategoryProperties {
|
|
|
1337
1337
|
* 5, 2022.</p>
|
|
1338
1338
|
* @public
|
|
1339
1339
|
*/
|
|
1340
|
-
LastUpdateTime?: Date;
|
|
1340
|
+
LastUpdateTime?: Date | undefined;
|
|
1341
1341
|
/**
|
|
1342
1342
|
* <p>The input type associated with the specified category. <code>POST_CALL</code>
|
|
1343
1343
|
* refers to a category that is applied to batch transcriptions; <code>REAL_TIME</code>
|
|
1344
1344
|
* refers to a category that is applied to streaming transcriptions.</p>
|
|
1345
1345
|
* @public
|
|
1346
1346
|
*/
|
|
1347
|
-
InputType?: InputType;
|
|
1347
|
+
InputType?: InputType | undefined;
|
|
1348
1348
|
}
|
|
1349
1349
|
/**
|
|
1350
1350
|
* @public
|
|
@@ -1371,7 +1371,7 @@ export type CLMLanguageCode = (typeof CLMLanguageCode)[keyof typeof CLMLanguageC
|
|
|
1371
1371
|
export declare class ConflictException extends __BaseException {
|
|
1372
1372
|
readonly name: "ConflictException";
|
|
1373
1373
|
readonly $fault: "client";
|
|
1374
|
-
Message?: string;
|
|
1374
|
+
Message?: string | undefined;
|
|
1375
1375
|
/**
|
|
1376
1376
|
* @internal
|
|
1377
1377
|
*/
|
|
@@ -1410,7 +1410,7 @@ export interface CreateCallAnalyticsCategoryRequest {
|
|
|
1410
1410
|
* category by default.</p>
|
|
1411
1411
|
* @public
|
|
1412
1412
|
*/
|
|
1413
|
-
InputType?: InputType;
|
|
1413
|
+
InputType?: InputType | undefined;
|
|
1414
1414
|
}
|
|
1415
1415
|
/**
|
|
1416
1416
|
* @public
|
|
@@ -1421,7 +1421,7 @@ export interface CreateCallAnalyticsCategoryResponse {
|
|
|
1421
1421
|
* rules.</p>
|
|
1422
1422
|
* @public
|
|
1423
1423
|
*/
|
|
1424
|
-
CategoryProperties?: CategoryProperties;
|
|
1424
|
+
CategoryProperties?: CategoryProperties | undefined;
|
|
1425
1425
|
}
|
|
1426
1426
|
/**
|
|
1427
1427
|
* <p>There was an internal error. Check the error message, correct the issue, and try your
|
|
@@ -1431,7 +1431,7 @@ export interface CreateCallAnalyticsCategoryResponse {
|
|
|
1431
1431
|
export declare class InternalFailureException extends __BaseException {
|
|
1432
1432
|
readonly name: "InternalFailureException";
|
|
1433
1433
|
readonly $fault: "server";
|
|
1434
|
-
Message?: string;
|
|
1434
|
+
Message?: string | undefined;
|
|
1435
1435
|
/**
|
|
1436
1436
|
* @internal
|
|
1437
1437
|
*/
|
|
@@ -1445,7 +1445,7 @@ export declare class InternalFailureException extends __BaseException {
|
|
|
1445
1445
|
export declare class LimitExceededException extends __BaseException {
|
|
1446
1446
|
readonly name: "LimitExceededException";
|
|
1447
1447
|
readonly $fault: "client";
|
|
1448
|
-
Message?: string;
|
|
1448
|
+
Message?: string | undefined;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* @internal
|
|
1451
1451
|
*/
|
|
@@ -1477,7 +1477,7 @@ export interface InputDataConfig {
|
|
|
1477
1477
|
* </p>
|
|
1478
1478
|
* @public
|
|
1479
1479
|
*/
|
|
1480
|
-
TuningDataS3Uri?: string;
|
|
1480
|
+
TuningDataS3Uri?: string | undefined;
|
|
1481
1481
|
/**
|
|
1482
1482
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permissions to
|
|
1483
1483
|
* access the Amazon S3 bucket that contains your input files. If the role that you
|
|
@@ -1574,7 +1574,7 @@ export interface CreateLanguageModelRequest {
|
|
|
1574
1574
|
* resources</a>.</p>
|
|
1575
1575
|
* @public
|
|
1576
1576
|
*/
|
|
1577
|
-
Tags?: Tag[];
|
|
1577
|
+
Tags?: Tag[] | undefined;
|
|
1578
1578
|
}
|
|
1579
1579
|
/**
|
|
1580
1580
|
* @public
|
|
@@ -1597,31 +1597,31 @@ export interface CreateLanguageModelResponse {
|
|
|
1597
1597
|
* <p>The language code you selected for your custom language model.</p>
|
|
1598
1598
|
* @public
|
|
1599
1599
|
*/
|
|
1600
|
-
LanguageCode?: CLMLanguageCode;
|
|
1600
|
+
LanguageCode?: CLMLanguageCode | undefined;
|
|
1601
1601
|
/**
|
|
1602
1602
|
* <p>The Amazon Transcribe standard language model, or base model, you specified when
|
|
1603
1603
|
* creating your custom language model.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
BaseModelName?: BaseModelName;
|
|
1606
|
+
BaseModelName?: BaseModelName | undefined;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* <p>The name of your custom language model.</p>
|
|
1609
1609
|
* @public
|
|
1610
1610
|
*/
|
|
1611
|
-
ModelName?: string;
|
|
1611
|
+
ModelName?: string | undefined;
|
|
1612
1612
|
/**
|
|
1613
1613
|
* <p>Lists your data access role ARN (Amazon Resource Name) and the Amazon S3
|
|
1614
1614
|
* locations you provided for your training (<code>S3Uri</code>) and tuning
|
|
1615
1615
|
* (<code>TuningDataS3Uri</code>) data.</p>
|
|
1616
1616
|
* @public
|
|
1617
1617
|
*/
|
|
1618
|
-
InputDataConfig?: InputDataConfig;
|
|
1618
|
+
InputDataConfig?: InputDataConfig | undefined;
|
|
1619
1619
|
/**
|
|
1620
1620
|
* <p>The status of your custom language model. When the status displays as
|
|
1621
1621
|
* <code>COMPLETED</code>, your model is ready to use.</p>
|
|
1622
1622
|
* @public
|
|
1623
1623
|
*/
|
|
1624
|
-
ModelStatus?: ModelStatus;
|
|
1624
|
+
ModelStatus?: ModelStatus | undefined;
|
|
1625
1625
|
}
|
|
1626
1626
|
/**
|
|
1627
1627
|
* @public
|
|
@@ -1659,7 +1659,7 @@ export interface CreateMedicalVocabularyRequest {
|
|
|
1659
1659
|
* resources</a>.</p>
|
|
1660
1660
|
* @public
|
|
1661
1661
|
*/
|
|
1662
|
-
Tags?: Tag[];
|
|
1662
|
+
Tags?: Tag[] | undefined;
|
|
1663
1663
|
}
|
|
1664
1664
|
/**
|
|
1665
1665
|
* @public
|
|
@@ -1682,21 +1682,21 @@ export interface CreateMedicalVocabularyResponse {
|
|
|
1682
1682
|
* <p>The name you chose for your custom medical vocabulary.</p>
|
|
1683
1683
|
* @public
|
|
1684
1684
|
*/
|
|
1685
|
-
VocabularyName?: string;
|
|
1685
|
+
VocabularyName?: string | undefined;
|
|
1686
1686
|
/**
|
|
1687
1687
|
* <p>The language code you selected for your custom medical vocabulary. US English
|
|
1688
1688
|
* (<code>en-US</code>) is the only language supported with Amazon Transcribe
|
|
1689
1689
|
* Medical.</p>
|
|
1690
1690
|
* @public
|
|
1691
1691
|
*/
|
|
1692
|
-
LanguageCode?: LanguageCode;
|
|
1692
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1693
1693
|
/**
|
|
1694
1694
|
* <p>The processing state of your custom medical vocabulary. If the state is
|
|
1695
1695
|
* <code>READY</code>, you can use the custom vocabulary in a
|
|
1696
1696
|
* <code>StartMedicalTranscriptionJob</code> request.</p>
|
|
1697
1697
|
* @public
|
|
1698
1698
|
*/
|
|
1699
|
-
VocabularyState?: VocabularyState;
|
|
1699
|
+
VocabularyState?: VocabularyState | undefined;
|
|
1700
1700
|
/**
|
|
1701
1701
|
* <p>The date and time you created your custom medical vocabulary.</p>
|
|
1702
1702
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -1704,14 +1704,14 @@ export interface CreateMedicalVocabularyResponse {
|
|
|
1704
1704
|
* 4, 2022.</p>
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
LastModifiedTime?: Date;
|
|
1707
|
+
LastModifiedTime?: Date | undefined;
|
|
1708
1708
|
/**
|
|
1709
1709
|
* <p>If <code>VocabularyState</code> is <code>FAILED</code>, <code>FailureReason</code>
|
|
1710
1710
|
* contains information about why the medical transcription job request failed. See also:
|
|
1711
1711
|
* <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common Errors</a>.</p>
|
|
1712
1712
|
* @public
|
|
1713
1713
|
*/
|
|
1714
|
-
FailureReason?: string;
|
|
1714
|
+
FailureReason?: string | undefined;
|
|
1715
1715
|
}
|
|
1716
1716
|
/**
|
|
1717
1717
|
* @public
|
|
@@ -1752,7 +1752,7 @@ export interface CreateVocabularyRequest {
|
|
|
1752
1752
|
* Vocabularies</a> to get the character set for your language.</p>
|
|
1753
1753
|
* @public
|
|
1754
1754
|
*/
|
|
1755
|
-
Phrases?: string[];
|
|
1755
|
+
Phrases?: string[] | undefined;
|
|
1756
1756
|
/**
|
|
1757
1757
|
* <p>The Amazon S3 location of the text file that contains your custom vocabulary.
|
|
1758
1758
|
* The URI must be located in the same Amazon Web Services Region as the resource you're
|
|
@@ -1764,7 +1764,7 @@ export interface CreateVocabularyRequest {
|
|
|
1764
1764
|
* use the <code>Phrases</code> flag; you must choose one or the other.</p>
|
|
1765
1765
|
* @public
|
|
1766
1766
|
*/
|
|
1767
|
-
VocabularyFileUri?: string;
|
|
1767
|
+
VocabularyFileUri?: string | undefined;
|
|
1768
1768
|
/**
|
|
1769
1769
|
* <p>Adds one or more custom tags, each in the form of a key:value pair, to a new custom
|
|
1770
1770
|
* vocabulary at the time you create this new custom vocabulary.</p>
|
|
@@ -1772,7 +1772,7 @@ export interface CreateVocabularyRequest {
|
|
|
1772
1772
|
* resources</a>.</p>
|
|
1773
1773
|
* @public
|
|
1774
1774
|
*/
|
|
1775
|
-
Tags?: Tag[];
|
|
1775
|
+
Tags?: Tag[] | undefined;
|
|
1776
1776
|
/**
|
|
1777
1777
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permissions to
|
|
1778
1778
|
* access the Amazon S3 bucket that contains your input files (in this case, your custom
|
|
@@ -1785,7 +1785,7 @@ export interface CreateVocabularyRequest {
|
|
|
1785
1785
|
* ARNs</a>.</p>
|
|
1786
1786
|
* @public
|
|
1787
1787
|
*/
|
|
1788
|
-
DataAccessRoleArn?: string;
|
|
1788
|
+
DataAccessRoleArn?: string | undefined;
|
|
1789
1789
|
}
|
|
1790
1790
|
/**
|
|
1791
1791
|
* @public
|
|
@@ -1795,19 +1795,19 @@ export interface CreateVocabularyResponse {
|
|
|
1795
1795
|
* <p>The name you chose for your custom vocabulary.</p>
|
|
1796
1796
|
* @public
|
|
1797
1797
|
*/
|
|
1798
|
-
VocabularyName?: string;
|
|
1798
|
+
VocabularyName?: string | undefined;
|
|
1799
1799
|
/**
|
|
1800
1800
|
* <p>The language code you selected for your custom vocabulary.</p>
|
|
1801
1801
|
* @public
|
|
1802
1802
|
*/
|
|
1803
|
-
LanguageCode?: LanguageCode;
|
|
1803
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1804
1804
|
/**
|
|
1805
1805
|
* <p>The processing state of your custom vocabulary. If the state is <code>READY</code>,
|
|
1806
1806
|
* you can use the custom vocabulary in a <code>StartTranscriptionJob</code>
|
|
1807
1807
|
* request.</p>
|
|
1808
1808
|
* @public
|
|
1809
1809
|
*/
|
|
1810
|
-
VocabularyState?: VocabularyState;
|
|
1810
|
+
VocabularyState?: VocabularyState | undefined;
|
|
1811
1811
|
/**
|
|
1812
1812
|
* <p>The date and time you created your custom vocabulary.</p>
|
|
1813
1813
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -1815,14 +1815,14 @@ export interface CreateVocabularyResponse {
|
|
|
1815
1815
|
* 4, 2022.</p>
|
|
1816
1816
|
* @public
|
|
1817
1817
|
*/
|
|
1818
|
-
LastModifiedTime?: Date;
|
|
1818
|
+
LastModifiedTime?: Date | undefined;
|
|
1819
1819
|
/**
|
|
1820
1820
|
* <p>If <code>VocabularyState</code> is <code>FAILED</code>, <code>FailureReason</code>
|
|
1821
1821
|
* contains information about why the custom vocabulary request failed. See also: <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common
|
|
1822
1822
|
* Errors</a>.</p>
|
|
1823
1823
|
* @public
|
|
1824
1824
|
*/
|
|
1825
|
-
FailureReason?: string;
|
|
1825
|
+
FailureReason?: string | undefined;
|
|
1826
1826
|
}
|
|
1827
1827
|
/**
|
|
1828
1828
|
* @public
|
|
@@ -1863,7 +1863,7 @@ export interface CreateVocabularyFilterRequest {
|
|
|
1863
1863
|
* Vocabularies</a> to get the character set for your language.</p>
|
|
1864
1864
|
* @public
|
|
1865
1865
|
*/
|
|
1866
|
-
Words?: string[];
|
|
1866
|
+
Words?: string[] | undefined;
|
|
1867
1867
|
/**
|
|
1868
1868
|
* <p>The Amazon S3 location of the text file that contains your custom vocabulary
|
|
1869
1869
|
* filter terms. The URI must be located in the same Amazon Web Services Region as the
|
|
@@ -1875,7 +1875,7 @@ export interface CreateVocabularyFilterRequest {
|
|
|
1875
1875
|
* cannot use <code>Words</code>; you must choose one or the other.</p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
VocabularyFilterFileUri?: string;
|
|
1878
|
+
VocabularyFilterFileUri?: string | undefined;
|
|
1879
1879
|
/**
|
|
1880
1880
|
* <p>Adds one or more custom tags, each in the form of a key:value pair, to a new custom
|
|
1881
1881
|
* vocabulary filter at the time you create this new vocabulary filter.</p>
|
|
@@ -1883,7 +1883,7 @@ export interface CreateVocabularyFilterRequest {
|
|
|
1883
1883
|
* resources</a>.</p>
|
|
1884
1884
|
* @public
|
|
1885
1885
|
*/
|
|
1886
|
-
Tags?: Tag[];
|
|
1886
|
+
Tags?: Tag[] | undefined;
|
|
1887
1887
|
/**
|
|
1888
1888
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permissions to
|
|
1889
1889
|
* access the Amazon S3 bucket that contains your input files (in this case, your custom
|
|
@@ -1896,7 +1896,7 @@ export interface CreateVocabularyFilterRequest {
|
|
|
1896
1896
|
* ARNs</a>.</p>
|
|
1897
1897
|
* @public
|
|
1898
1898
|
*/
|
|
1899
|
-
DataAccessRoleArn?: string;
|
|
1899
|
+
DataAccessRoleArn?: string | undefined;
|
|
1900
1900
|
}
|
|
1901
1901
|
/**
|
|
1902
1902
|
* @public
|
|
@@ -1906,12 +1906,12 @@ export interface CreateVocabularyFilterResponse {
|
|
|
1906
1906
|
* <p>The name you chose for your custom vocabulary filter.</p>
|
|
1907
1907
|
* @public
|
|
1908
1908
|
*/
|
|
1909
|
-
VocabularyFilterName?: string;
|
|
1909
|
+
VocabularyFilterName?: string | undefined;
|
|
1910
1910
|
/**
|
|
1911
1911
|
* <p>The language code you selected for your custom vocabulary filter.</p>
|
|
1912
1912
|
* @public
|
|
1913
1913
|
*/
|
|
1914
|
-
LanguageCode?: LanguageCode;
|
|
1914
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1915
1915
|
/**
|
|
1916
1916
|
* <p>The date and time you created your custom vocabulary filter.</p>
|
|
1917
1917
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -1919,7 +1919,7 @@ export interface CreateVocabularyFilterResponse {
|
|
|
1919
1919
|
* 4, 2022.</p>
|
|
1920
1920
|
* @public
|
|
1921
1921
|
*/
|
|
1922
|
-
LastModifiedTime?: Date;
|
|
1922
|
+
LastModifiedTime?: Date | undefined;
|
|
1923
1923
|
}
|
|
1924
1924
|
/**
|
|
1925
1925
|
* @public
|
|
@@ -1945,7 +1945,7 @@ export interface DeleteCallAnalyticsCategoryResponse {
|
|
|
1945
1945
|
export declare class NotFoundException extends __BaseException {
|
|
1946
1946
|
readonly name: "NotFoundException";
|
|
1947
1947
|
readonly $fault: "client";
|
|
1948
|
-
Message?: string;
|
|
1948
|
+
Message?: string | undefined;
|
|
1949
1949
|
/**
|
|
1950
1950
|
* @internal
|
|
1951
1951
|
*/
|
|
@@ -2092,7 +2092,7 @@ export interface LanguageModel {
|
|
|
2092
2092
|
* Amazon Web Services account.</p>
|
|
2093
2093
|
* @public
|
|
2094
2094
|
*/
|
|
2095
|
-
ModelName?: string;
|
|
2095
|
+
ModelName?: string | undefined;
|
|
2096
2096
|
/**
|
|
2097
2097
|
* <p>The date and time the specified custom language model was created.</p>
|
|
2098
2098
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -2100,7 +2100,7 @@ export interface LanguageModel {
|
|
|
2100
2100
|
* 4, 2022.</p>
|
|
2101
2101
|
* @public
|
|
2102
2102
|
*/
|
|
2103
|
-
CreateTime?: Date;
|
|
2103
|
+
CreateTime?: Date | undefined;
|
|
2104
2104
|
/**
|
|
2105
2105
|
* <p>The date and time the specified custom language model was last modified.</p>
|
|
2106
2106
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -2108,7 +2108,7 @@ export interface LanguageModel {
|
|
|
2108
2108
|
* 4, 2022.</p>
|
|
2109
2109
|
* @public
|
|
2110
2110
|
*/
|
|
2111
|
-
LastModifiedTime?: Date;
|
|
2111
|
+
LastModifiedTime?: Date | undefined;
|
|
2112
2112
|
/**
|
|
2113
2113
|
* <p>The language code used to create your custom language model. Each custom language
|
|
2114
2114
|
* model must contain terms in only one language, and the language you select for your
|
|
@@ -2118,19 +2118,19 @@ export interface LanguageModel {
|
|
|
2118
2118
|
* the only language supported with Amazon Transcribe Medical.</p>
|
|
2119
2119
|
* @public
|
|
2120
2120
|
*/
|
|
2121
|
-
LanguageCode?: CLMLanguageCode;
|
|
2121
|
+
LanguageCode?: CLMLanguageCode | undefined;
|
|
2122
2122
|
/**
|
|
2123
2123
|
* <p>The Amazon Transcribe standard language model, or base model, used to create your
|
|
2124
2124
|
* custom language model.</p>
|
|
2125
2125
|
* @public
|
|
2126
2126
|
*/
|
|
2127
|
-
BaseModelName?: BaseModelName;
|
|
2127
|
+
BaseModelName?: BaseModelName | undefined;
|
|
2128
2128
|
/**
|
|
2129
2129
|
* <p>The status of the specified custom language model. When the status displays as
|
|
2130
2130
|
* <code>COMPLETED</code> the model is ready for use.</p>
|
|
2131
2131
|
* @public
|
|
2132
2132
|
*/
|
|
2133
|
-
ModelStatus?: ModelStatus;
|
|
2133
|
+
ModelStatus?: ModelStatus | undefined;
|
|
2134
2134
|
/**
|
|
2135
2135
|
* <p>Shows if a more current base model is available for use with the specified custom
|
|
2136
2136
|
* language model.</p>
|
|
@@ -2143,21 +2143,21 @@ export interface LanguageModel {
|
|
|
2143
2143
|
* supported.</p>
|
|
2144
2144
|
* @public
|
|
2145
2145
|
*/
|
|
2146
|
-
UpgradeAvailability?: boolean;
|
|
2146
|
+
UpgradeAvailability?: boolean | undefined;
|
|
2147
2147
|
/**
|
|
2148
2148
|
* <p>If <code>ModelStatus</code> is <code>FAILED</code>, <code>FailureReason</code>
|
|
2149
2149
|
* contains information about why the custom language model request failed. See also:
|
|
2150
2150
|
* <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common Errors</a>.</p>
|
|
2151
2151
|
* @public
|
|
2152
2152
|
*/
|
|
2153
|
-
FailureReason?: string;
|
|
2153
|
+
FailureReason?: string | undefined;
|
|
2154
2154
|
/**
|
|
2155
2155
|
* <p>The Amazon S3 location of the input files used to train and tune your custom
|
|
2156
2156
|
* language model, in addition to the data access role ARN (Amazon Resource Name) that has
|
|
2157
2157
|
* permissions to access these data.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
InputDataConfig?: InputDataConfig;
|
|
2160
|
+
InputDataConfig?: InputDataConfig | undefined;
|
|
2161
2161
|
}
|
|
2162
2162
|
/**
|
|
2163
2163
|
* @public
|
|
@@ -2173,7 +2173,7 @@ export interface DescribeLanguageModelResponse {
|
|
|
2173
2173
|
* failure.</p>
|
|
2174
2174
|
* @public
|
|
2175
2175
|
*/
|
|
2176
|
-
LanguageModel?: LanguageModel;
|
|
2176
|
+
LanguageModel?: LanguageModel | undefined;
|
|
2177
2177
|
}
|
|
2178
2178
|
/**
|
|
2179
2179
|
* @public
|
|
@@ -2195,7 +2195,7 @@ export interface GetCallAnalyticsCategoryResponse {
|
|
|
2195
2195
|
* <code>GetCallAnalyticsCategory</code> request.</p>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
CategoryProperties?: CategoryProperties;
|
|
2198
|
+
CategoryProperties?: CategoryProperties | undefined;
|
|
2199
2199
|
}
|
|
2200
2200
|
/**
|
|
2201
2201
|
* @public
|
|
@@ -2217,7 +2217,7 @@ export interface GetCallAnalyticsJobResponse {
|
|
|
2217
2217
|
* status and, if applicable, failure reason.</p>
|
|
2218
2218
|
* @public
|
|
2219
2219
|
*/
|
|
2220
|
-
CallAnalyticsJob?: CallAnalyticsJob;
|
|
2220
|
+
CallAnalyticsJob?: CallAnalyticsJob | undefined;
|
|
2221
2221
|
}
|
|
2222
2222
|
/**
|
|
2223
2223
|
* @public
|
|
@@ -2326,7 +2326,7 @@ export interface MedicalScribeSettings {
|
|
|
2326
2326
|
* (diarization)</a>.</p>
|
|
2327
2327
|
* @public
|
|
2328
2328
|
*/
|
|
2329
|
-
ShowSpeakerLabels?: boolean;
|
|
2329
|
+
ShowSpeakerLabels?: boolean | undefined;
|
|
2330
2330
|
/**
|
|
2331
2331
|
* <p>Specify the maximum number of speakers you want to partition in your media.</p>
|
|
2332
2332
|
* <p>Note that if your media contains more speakers than the specified number, multiple
|
|
@@ -2335,7 +2335,7 @@ export interface MedicalScribeSettings {
|
|
|
2335
2335
|
* <code>ShowSpeakerLabels</code> field to true.</p>
|
|
2336
2336
|
* @public
|
|
2337
2337
|
*/
|
|
2338
|
-
MaxSpeakerLabels?: number;
|
|
2338
|
+
MaxSpeakerLabels?: number | undefined;
|
|
2339
2339
|
/**
|
|
2340
2340
|
* <p>Enables channel identification in multi-channel audio.</p>
|
|
2341
2341
|
* <p>Channel identification transcribes the audio on each channel independently, then
|
|
@@ -2344,13 +2344,13 @@ export interface MedicalScribeSettings {
|
|
|
2344
2344
|
* audio</a>.</p>
|
|
2345
2345
|
* @public
|
|
2346
2346
|
*/
|
|
2347
|
-
ChannelIdentification?: boolean;
|
|
2347
|
+
ChannelIdentification?: boolean | undefined;
|
|
2348
2348
|
/**
|
|
2349
2349
|
* <p>The name of the custom vocabulary you want to include in your Medical Scribe
|
|
2350
2350
|
* request. Custom vocabulary names are case sensitive.</p>
|
|
2351
2351
|
* @public
|
|
2352
2352
|
*/
|
|
2353
|
-
VocabularyName?: string;
|
|
2353
|
+
VocabularyName?: string | undefined;
|
|
2354
2354
|
/**
|
|
2355
2355
|
* <p>The name of the custom vocabulary filter you want to include in your Medical Scribe
|
|
2356
2356
|
* request. Custom vocabulary filter names are case sensitive.</p>
|
|
@@ -2358,7 +2358,7 @@ export interface MedicalScribeSettings {
|
|
|
2358
2358
|
* also include <code>VocabularyFilterMethod</code>.</p>
|
|
2359
2359
|
* @public
|
|
2360
2360
|
*/
|
|
2361
|
-
VocabularyFilterName?: string;
|
|
2361
|
+
VocabularyFilterName?: string | undefined;
|
|
2362
2362
|
/**
|
|
2363
2363
|
* <p>Specify how you want your custom vocabulary filter applied to your transcript.</p>
|
|
2364
2364
|
* <p>To replace words with <code>***</code>, choose <code>mask</code>.</p>
|
|
@@ -2366,7 +2366,7 @@ export interface MedicalScribeSettings {
|
|
|
2366
2366
|
* <p>To flag words without changing them, choose <code>tag</code>.</p>
|
|
2367
2367
|
* @public
|
|
2368
2368
|
*/
|
|
2369
|
-
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
2369
|
+
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
2370
2370
|
}
|
|
2371
2371
|
/**
|
|
2372
2372
|
* <p>Provides detailed information about a Medical Scribe job.</p>
|
|
@@ -2384,7 +2384,7 @@ export interface MedicalScribeJob {
|
|
|
2384
2384
|
* unique within an Amazon Web Services account.</p>
|
|
2385
2385
|
* @public
|
|
2386
2386
|
*/
|
|
2387
|
-
MedicalScribeJobName?: string;
|
|
2387
|
+
MedicalScribeJobName?: string | undefined;
|
|
2388
2388
|
/**
|
|
2389
2389
|
* <p>Provides the status of the specified Medical Scribe job.</p>
|
|
2390
2390
|
* <p>If the status is <code>COMPLETED</code>, the job is finished and you can find the
|
|
@@ -2393,13 +2393,13 @@ export interface MedicalScribeJob {
|
|
|
2393
2393
|
* your Medical Scribe job failed.</p>
|
|
2394
2394
|
* @public
|
|
2395
2395
|
*/
|
|
2396
|
-
MedicalScribeJobStatus?: MedicalScribeJobStatus;
|
|
2396
|
+
MedicalScribeJobStatus?: MedicalScribeJobStatus | undefined;
|
|
2397
2397
|
/**
|
|
2398
2398
|
* <p>The language code used to create your Medical Scribe job. US English
|
|
2399
2399
|
* (<code>en-US</code>) is the only supported language for Medical Scribe jobs. </p>
|
|
2400
2400
|
* @public
|
|
2401
2401
|
*/
|
|
2402
|
-
LanguageCode?: MedicalScribeLanguageCode;
|
|
2402
|
+
LanguageCode?: MedicalScribeLanguageCode | undefined;
|
|
2403
2403
|
/**
|
|
2404
2404
|
* <p>Describes the Amazon S3 location of the media file you want to use in your
|
|
2405
2405
|
* request.</p>
|
|
@@ -2408,14 +2408,14 @@ export interface MedicalScribeJob {
|
|
|
2408
2408
|
* in the Amazon S3 Developer Guide.</p>
|
|
2409
2409
|
* @public
|
|
2410
2410
|
*/
|
|
2411
|
-
Media?: Media;
|
|
2411
|
+
Media?: Media | undefined;
|
|
2412
2412
|
/**
|
|
2413
2413
|
* <p>The location of the output of your Medical Scribe job.
|
|
2414
2414
|
* <code>ClinicalDocumentUri</code> holds the Amazon S3 URI for the Clinical Document
|
|
2415
2415
|
* and <code>TranscriptFileUri</code> holds the Amazon S3 URI for the Transcript.</p>
|
|
2416
2416
|
* @public
|
|
2417
2417
|
*/
|
|
2418
|
-
MedicalScribeOutput?: MedicalScribeOutput;
|
|
2418
|
+
MedicalScribeOutput?: MedicalScribeOutput | undefined;
|
|
2419
2419
|
/**
|
|
2420
2420
|
* <p>The date and time your Medical Scribe job began processing.</p>
|
|
2421
2421
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -2423,7 +2423,7 @@ export interface MedicalScribeJob {
|
|
|
2423
2423
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
2424
2424
|
* @public
|
|
2425
2425
|
*/
|
|
2426
|
-
StartTime?: Date;
|
|
2426
|
+
StartTime?: Date | undefined;
|
|
2427
2427
|
/**
|
|
2428
2428
|
* <p>The date and time the specified Medical Scribe job request was made.</p>
|
|
2429
2429
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -2431,7 +2431,7 @@ export interface MedicalScribeJob {
|
|
|
2431
2431
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
2432
2432
|
* @public
|
|
2433
2433
|
*/
|
|
2434
|
-
CreationTime?: Date;
|
|
2434
|
+
CreationTime?: Date | undefined;
|
|
2435
2435
|
/**
|
|
2436
2436
|
* <p>The date and time the specified Medical Scribe job finished processing.</p>
|
|
2437
2437
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -2439,14 +2439,14 @@ export interface MedicalScribeJob {
|
|
|
2439
2439
|
* that finished processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
2440
2440
|
* @public
|
|
2441
2441
|
*/
|
|
2442
|
-
CompletionTime?: Date;
|
|
2442
|
+
CompletionTime?: Date | undefined;
|
|
2443
2443
|
/**
|
|
2444
2444
|
* <p>If <code>MedicalScribeJobStatus</code> is <code>FAILED</code>,
|
|
2445
2445
|
* <code>FailureReason</code> contains information about why the transcription job
|
|
2446
2446
|
* failed. See also: <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common Errors</a>.</p>
|
|
2447
2447
|
* @public
|
|
2448
2448
|
*/
|
|
2449
|
-
FailureReason?: string;
|
|
2449
|
+
FailureReason?: string | undefined;
|
|
2450
2450
|
/**
|
|
2451
2451
|
* <p>Makes it possible to control how your Medical Scribe job is processed using a
|
|
2452
2452
|
* <code>MedicalScribeSettings</code> object. Specify <code>ChannelIdentification</code> if
|
|
@@ -2458,7 +2458,7 @@ export interface MedicalScribeJob {
|
|
|
2458
2458
|
* </p>
|
|
2459
2459
|
* @public
|
|
2460
2460
|
*/
|
|
2461
|
-
Settings?: MedicalScribeSettings;
|
|
2461
|
+
Settings?: MedicalScribeSettings | undefined;
|
|
2462
2462
|
/**
|
|
2463
2463
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permissions to
|
|
2464
2464
|
* access the Amazon S3 bucket that contains your input files,
|
|
@@ -2471,7 +2471,7 @@ export interface MedicalScribeJob {
|
|
|
2471
2471
|
* ARNs</a>.</p>
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
DataAccessRoleArn?: string;
|
|
2474
|
+
DataAccessRoleArn?: string | undefined;
|
|
2475
2475
|
/**
|
|
2476
2476
|
* <p>Makes it possible to specify which speaker is on which channel. For example, if the clinician
|
|
2477
2477
|
* is the first participant to speak, you would set <code>ChannelId</code> of the first <code>ChannelDefinition</code>
|
|
@@ -2483,14 +2483,14 @@ export interface MedicalScribeJob {
|
|
|
2483
2483
|
* </p>
|
|
2484
2484
|
* @public
|
|
2485
2485
|
*/
|
|
2486
|
-
ChannelDefinitions?: MedicalScribeChannelDefinition[];
|
|
2486
|
+
ChannelDefinitions?: MedicalScribeChannelDefinition[] | undefined;
|
|
2487
2487
|
/**
|
|
2488
2488
|
* <p>Adds one or more custom tags, each in the form of a key:value pair, to the Medica Scribe job.</p>
|
|
2489
2489
|
* <p>To learn more about using tags with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tagging.html">Tagging
|
|
2490
2490
|
* resources</a>.</p>
|
|
2491
2491
|
* @public
|
|
2492
2492
|
*/
|
|
2493
|
-
Tags?: Tag[];
|
|
2493
|
+
Tags?: Tag[] | undefined;
|
|
2494
2494
|
}
|
|
2495
2495
|
/**
|
|
2496
2496
|
* @public
|
|
@@ -2501,7 +2501,7 @@ export interface GetMedicalScribeJobResponse {
|
|
|
2501
2501
|
* job status and, if applicable, failure reason</p>
|
|
2502
2502
|
* @public
|
|
2503
2503
|
*/
|
|
2504
|
-
MedicalScribeJob?: MedicalScribeJob;
|
|
2504
|
+
MedicalScribeJob?: MedicalScribeJob | undefined;
|
|
2505
2505
|
}
|
|
2506
2506
|
/**
|
|
2507
2507
|
* @public
|
|
@@ -2541,7 +2541,7 @@ export interface MedicalTranscriptionSetting {
|
|
|
2541
2541
|
* (diarization)</a>.</p>
|
|
2542
2542
|
* @public
|
|
2543
2543
|
*/
|
|
2544
|
-
ShowSpeakerLabels?: boolean;
|
|
2544
|
+
ShowSpeakerLabels?: boolean | undefined;
|
|
2545
2545
|
/**
|
|
2546
2546
|
* <p>Specify the maximum number of speakers you want to partition in your media.</p>
|
|
2547
2547
|
* <p>Note that if your media contains more speakers than the specified number, multiple
|
|
@@ -2550,7 +2550,7 @@ export interface MedicalTranscriptionSetting {
|
|
|
2550
2550
|
* <code>ShowSpeakerLabels</code> field to true.</p>
|
|
2551
2551
|
* @public
|
|
2552
2552
|
*/
|
|
2553
|
-
MaxSpeakerLabels?: number;
|
|
2553
|
+
MaxSpeakerLabels?: number | undefined;
|
|
2554
2554
|
/**
|
|
2555
2555
|
* <p>Enables channel identification in multi-channel audio.</p>
|
|
2556
2556
|
* <p>Channel identification transcribes the audio on each channel independently, then
|
|
@@ -2562,7 +2562,7 @@ export interface MedicalTranscriptionSetting {
|
|
|
2562
2562
|
* audio</a>.</p>
|
|
2563
2563
|
* @public
|
|
2564
2564
|
*/
|
|
2565
|
-
ChannelIdentification?: boolean;
|
|
2565
|
+
ChannelIdentification?: boolean | undefined;
|
|
2566
2566
|
/**
|
|
2567
2567
|
* <p>To include alternative transcriptions within your transcription output, include
|
|
2568
2568
|
* <code>ShowAlternatives</code> in your transcription request.</p>
|
|
@@ -2573,7 +2573,7 @@ export interface MedicalTranscriptionSetting {
|
|
|
2573
2573
|
* transcriptions</a>.</p>
|
|
2574
2574
|
* @public
|
|
2575
2575
|
*/
|
|
2576
|
-
ShowAlternatives?: boolean;
|
|
2576
|
+
ShowAlternatives?: boolean | undefined;
|
|
2577
2577
|
/**
|
|
2578
2578
|
* <p>Indicate the maximum number of alternative transcriptions you want Amazon Transcribe
|
|
2579
2579
|
* Medical to include in your transcript.</p>
|
|
@@ -2586,7 +2586,7 @@ export interface MedicalTranscriptionSetting {
|
|
|
2586
2586
|
* transcriptions</a>.</p>
|
|
2587
2587
|
* @public
|
|
2588
2588
|
*/
|
|
2589
|
-
MaxAlternatives?: number;
|
|
2589
|
+
MaxAlternatives?: number | undefined;
|
|
2590
2590
|
/**
|
|
2591
2591
|
* <p>The name of the custom vocabulary you want to use when processing your medical
|
|
2592
2592
|
* transcription job. Custom vocabulary names are case sensitive.</p>
|
|
@@ -2596,7 +2596,7 @@ export interface MedicalTranscriptionSetting {
|
|
|
2596
2596
|
* mismatch. US English (<code>en-US</code>) is the only valid language for Amazon Transcribe Medical.</p>
|
|
2597
2597
|
* @public
|
|
2598
2598
|
*/
|
|
2599
|
-
VocabularyName?: string;
|
|
2599
|
+
VocabularyName?: string | undefined;
|
|
2600
2600
|
}
|
|
2601
2601
|
/**
|
|
2602
2602
|
* @public
|
|
@@ -2622,7 +2622,7 @@ export interface MedicalTranscript {
|
|
|
2622
2622
|
* <code>OutputBucketName</code> parameter.</p>
|
|
2623
2623
|
* @public
|
|
2624
2624
|
*/
|
|
2625
|
-
TranscriptFileUri?: string;
|
|
2625
|
+
TranscriptFileUri?: string | undefined;
|
|
2626
2626
|
}
|
|
2627
2627
|
/**
|
|
2628
2628
|
* @public
|
|
@@ -2666,7 +2666,7 @@ export interface MedicalTranscriptionJob {
|
|
|
2666
2666
|
* unique within an Amazon Web Services account.</p>
|
|
2667
2667
|
* @public
|
|
2668
2668
|
*/
|
|
2669
|
-
MedicalTranscriptionJobName?: string;
|
|
2669
|
+
MedicalTranscriptionJobName?: string | undefined;
|
|
2670
2670
|
/**
|
|
2671
2671
|
* <p>Provides the status of the specified medical transcription job.</p>
|
|
2672
2672
|
* <p>If the status is <code>COMPLETED</code>, the job is finished and you can find the
|
|
@@ -2675,24 +2675,24 @@ export interface MedicalTranscriptionJob {
|
|
|
2675
2675
|
* transcription job failed.</p>
|
|
2676
2676
|
* @public
|
|
2677
2677
|
*/
|
|
2678
|
-
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
2678
|
+
TranscriptionJobStatus?: TranscriptionJobStatus | undefined;
|
|
2679
2679
|
/**
|
|
2680
2680
|
* <p>The language code used to create your medical transcription job. US English
|
|
2681
2681
|
* (<code>en-US</code>) is the only supported language for medical
|
|
2682
2682
|
* transcriptions.</p>
|
|
2683
2683
|
* @public
|
|
2684
2684
|
*/
|
|
2685
|
-
LanguageCode?: LanguageCode;
|
|
2685
|
+
LanguageCode?: LanguageCode | undefined;
|
|
2686
2686
|
/**
|
|
2687
2687
|
* <p>The sample rate, in hertz, of the audio track in your input media file.</p>
|
|
2688
2688
|
* @public
|
|
2689
2689
|
*/
|
|
2690
|
-
MediaSampleRateHertz?: number;
|
|
2690
|
+
MediaSampleRateHertz?: number | undefined;
|
|
2691
2691
|
/**
|
|
2692
2692
|
* <p>The format of the input media file.</p>
|
|
2693
2693
|
* @public
|
|
2694
2694
|
*/
|
|
2695
|
-
MediaFormat?: MediaFormat;
|
|
2695
|
+
MediaFormat?: MediaFormat | undefined;
|
|
2696
2696
|
/**
|
|
2697
2697
|
* <p>Describes the Amazon S3 location of the media file you want to use in your
|
|
2698
2698
|
* request.</p>
|
|
@@ -2701,13 +2701,13 @@ export interface MedicalTranscriptionJob {
|
|
|
2701
2701
|
* in the Amazon S3 Developer Guide.</p>
|
|
2702
2702
|
* @public
|
|
2703
2703
|
*/
|
|
2704
|
-
Media?: Media;
|
|
2704
|
+
Media?: Media | undefined;
|
|
2705
2705
|
/**
|
|
2706
2706
|
* <p>Provides you with the Amazon S3 URI you can use to access your
|
|
2707
2707
|
* transcript.</p>
|
|
2708
2708
|
* @public
|
|
2709
2709
|
*/
|
|
2710
|
-
Transcript?: MedicalTranscript;
|
|
2710
|
+
Transcript?: MedicalTranscript | undefined;
|
|
2711
2711
|
/**
|
|
2712
2712
|
* <p>The date and time the specified medical transcription job began processing.</p>
|
|
2713
2713
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -2715,7 +2715,7 @@ export interface MedicalTranscriptionJob {
|
|
|
2715
2715
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
2716
2716
|
* @public
|
|
2717
2717
|
*/
|
|
2718
|
-
StartTime?: Date;
|
|
2718
|
+
StartTime?: Date | undefined;
|
|
2719
2719
|
/**
|
|
2720
2720
|
* <p>The date and time the specified medical transcription job request was made.</p>
|
|
2721
2721
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -2723,7 +2723,7 @@ export interface MedicalTranscriptionJob {
|
|
|
2723
2723
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
2724
2724
|
* @public
|
|
2725
2725
|
*/
|
|
2726
|
-
CreationTime?: Date;
|
|
2726
|
+
CreationTime?: Date | undefined;
|
|
2727
2727
|
/**
|
|
2728
2728
|
* <p>The date and time the specified medical transcription job finished processing.</p>
|
|
2729
2729
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -2731,7 +2731,7 @@ export interface MedicalTranscriptionJob {
|
|
|
2731
2731
|
* that started processing at 12:33 PM UTC-7 on May 4, 2022.</p>
|
|
2732
2732
|
* @public
|
|
2733
2733
|
*/
|
|
2734
|
-
CompletionTime?: Date;
|
|
2734
|
+
CompletionTime?: Date | undefined;
|
|
2735
2735
|
/**
|
|
2736
2736
|
* <p>If <code>TranscriptionJobStatus</code> is <code>FAILED</code>,
|
|
2737
2737
|
* <code>FailureReason</code> contains information about why the transcription job
|
|
@@ -2784,37 +2784,37 @@ export interface MedicalTranscriptionJob {
|
|
|
2784
2784
|
* </ul>
|
|
2785
2785
|
* @public
|
|
2786
2786
|
*/
|
|
2787
|
-
FailureReason?: string;
|
|
2787
|
+
FailureReason?: string | undefined;
|
|
2788
2788
|
/**
|
|
2789
2789
|
* <p>Provides information on any additional settings that were included in your request.
|
|
2790
2790
|
* Additional settings include channel identification, alternative transcriptions, speaker
|
|
2791
2791
|
* partitioning, custom vocabularies, and custom vocabulary filters.</p>
|
|
2792
2792
|
* @public
|
|
2793
2793
|
*/
|
|
2794
|
-
Settings?: MedicalTranscriptionSetting;
|
|
2794
|
+
Settings?: MedicalTranscriptionSetting | undefined;
|
|
2795
2795
|
/**
|
|
2796
2796
|
* <p>Indicates whether content identification was enabled for your transcription
|
|
2797
2797
|
* request.</p>
|
|
2798
2798
|
* @public
|
|
2799
2799
|
*/
|
|
2800
|
-
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
2800
|
+
ContentIdentificationType?: MedicalContentIdentificationType | undefined;
|
|
2801
2801
|
/**
|
|
2802
2802
|
* <p>Describes the medical specialty represented in your media.</p>
|
|
2803
2803
|
* @public
|
|
2804
2804
|
*/
|
|
2805
|
-
Specialty?: Specialty;
|
|
2805
|
+
Specialty?: Specialty | undefined;
|
|
2806
2806
|
/**
|
|
2807
2807
|
* <p>Indicates whether the input media is a dictation or a conversation, as specified in
|
|
2808
2808
|
* the <code>StartMedicalTranscriptionJob</code> request.</p>
|
|
2809
2809
|
* @public
|
|
2810
2810
|
*/
|
|
2811
|
-
Type?: Type;
|
|
2811
|
+
Type?: Type | undefined;
|
|
2812
2812
|
/**
|
|
2813
2813
|
* <p>The tags, each in the form of a key:value pair, assigned to the specified medical
|
|
2814
2814
|
* transcription job.</p>
|
|
2815
2815
|
* @public
|
|
2816
2816
|
*/
|
|
2817
|
-
Tags?: Tag[];
|
|
2817
|
+
Tags?: Tag[] | undefined;
|
|
2818
2818
|
}
|
|
2819
2819
|
/**
|
|
2820
2820
|
* @public
|
|
@@ -2825,7 +2825,7 @@ export interface GetMedicalTranscriptionJobResponse {
|
|
|
2825
2825
|
* job status and, if applicable, failure reason.</p>
|
|
2826
2826
|
* @public
|
|
2827
2827
|
*/
|
|
2828
|
-
MedicalTranscriptionJob?: MedicalTranscriptionJob;
|
|
2828
|
+
MedicalTranscriptionJob?: MedicalTranscriptionJob | undefined;
|
|
2829
2829
|
}
|
|
2830
2830
|
/**
|
|
2831
2831
|
* @public
|
|
@@ -2846,21 +2846,21 @@ export interface GetMedicalVocabularyResponse {
|
|
|
2846
2846
|
* <p>The name of the custom medical vocabulary you requested information about.</p>
|
|
2847
2847
|
* @public
|
|
2848
2848
|
*/
|
|
2849
|
-
VocabularyName?: string;
|
|
2849
|
+
VocabularyName?: string | undefined;
|
|
2850
2850
|
/**
|
|
2851
2851
|
* <p>The language code you selected for your custom medical vocabulary. US English
|
|
2852
2852
|
* (<code>en-US</code>) is the only language supported with Amazon Transcribe
|
|
2853
2853
|
* Medical.</p>
|
|
2854
2854
|
* @public
|
|
2855
2855
|
*/
|
|
2856
|
-
LanguageCode?: LanguageCode;
|
|
2856
|
+
LanguageCode?: LanguageCode | undefined;
|
|
2857
2857
|
/**
|
|
2858
2858
|
* <p>The processing state of your custom medical vocabulary. If the state is
|
|
2859
2859
|
* <code>READY</code>, you can use the custom vocabulary in a
|
|
2860
2860
|
* <code>StartMedicalTranscriptionJob</code> request.</p>
|
|
2861
2861
|
* @public
|
|
2862
2862
|
*/
|
|
2863
|
-
VocabularyState?: VocabularyState;
|
|
2863
|
+
VocabularyState?: VocabularyState | undefined;
|
|
2864
2864
|
/**
|
|
2865
2865
|
* <p>The date and time the specified custom medical vocabulary was last modified.</p>
|
|
2866
2866
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -2868,20 +2868,20 @@ export interface GetMedicalVocabularyResponse {
|
|
|
2868
2868
|
* 4, 2022.</p>
|
|
2869
2869
|
* @public
|
|
2870
2870
|
*/
|
|
2871
|
-
LastModifiedTime?: Date;
|
|
2871
|
+
LastModifiedTime?: Date | undefined;
|
|
2872
2872
|
/**
|
|
2873
2873
|
* <p>If <code>VocabularyState</code> is <code>FAILED</code>, <code>FailureReason</code>
|
|
2874
2874
|
* contains information about why the custom medical vocabulary request failed. See also:
|
|
2875
2875
|
* <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common Errors</a>.</p>
|
|
2876
2876
|
* @public
|
|
2877
2877
|
*/
|
|
2878
|
-
FailureReason?: string;
|
|
2878
|
+
FailureReason?: string | undefined;
|
|
2879
2879
|
/**
|
|
2880
2880
|
* <p>The Amazon S3 location where the specified custom medical vocabulary is stored; use this URI
|
|
2881
2881
|
* to view or download the custom vocabulary.</p>
|
|
2882
2882
|
* @public
|
|
2883
2883
|
*/
|
|
2884
|
-
DownloadUri?: string;
|
|
2884
|
+
DownloadUri?: string | undefined;
|
|
2885
2885
|
}
|
|
2886
2886
|
/**
|
|
2887
2887
|
* @public
|
|
@@ -2915,7 +2915,7 @@ export interface JobExecutionSettings {
|
|
|
2915
2915
|
* include <code>DataAccessRoleArn</code>.</p>
|
|
2916
2916
|
* @public
|
|
2917
2917
|
*/
|
|
2918
|
-
AllowDeferredExecution?: boolean;
|
|
2918
|
+
AllowDeferredExecution?: boolean | undefined;
|
|
2919
2919
|
/**
|
|
2920
2920
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permissions to
|
|
2921
2921
|
* access the Amazon S3 bucket that contains your input files. If the role that you
|
|
@@ -2929,7 +2929,7 @@ export interface JobExecutionSettings {
|
|
|
2929
2929
|
* include <code>AllowDeferredExecution</code>.</p>
|
|
2930
2930
|
* @public
|
|
2931
2931
|
*/
|
|
2932
|
-
DataAccessRoleArn?: string;
|
|
2932
|
+
DataAccessRoleArn?: string | undefined;
|
|
2933
2933
|
}
|
|
2934
2934
|
/**
|
|
2935
2935
|
* <p>Provides information on the speech contained in a discreet utterance when
|
|
@@ -2943,13 +2943,13 @@ export interface LanguageCodeItem {
|
|
|
2943
2943
|
* <p>Provides the language code for each language identified in your media.</p>
|
|
2944
2944
|
* @public
|
|
2945
2945
|
*/
|
|
2946
|
-
LanguageCode?: LanguageCode;
|
|
2946
|
+
LanguageCode?: LanguageCode | undefined;
|
|
2947
2947
|
/**
|
|
2948
2948
|
* <p>Provides the total time, in seconds, each identified language is spoken in your
|
|
2949
2949
|
* media.</p>
|
|
2950
2950
|
* @public
|
|
2951
2951
|
*/
|
|
2952
|
-
DurationInSeconds?: number;
|
|
2952
|
+
DurationInSeconds?: number | undefined;
|
|
2953
2953
|
}
|
|
2954
2954
|
/**
|
|
2955
2955
|
* <p>Provides the name of the custom language model that was included in the specified
|
|
@@ -2971,7 +2971,7 @@ export interface ModelSettings {
|
|
|
2971
2971
|
* mismatch.</p>
|
|
2972
2972
|
* @public
|
|
2973
2973
|
*/
|
|
2974
|
-
LanguageModelName?: string;
|
|
2974
|
+
LanguageModelName?: string | undefined;
|
|
2975
2975
|
}
|
|
2976
2976
|
/**
|
|
2977
2977
|
* <p>Allows additional optional settings in your
|
|
@@ -2986,7 +2986,7 @@ export interface Settings {
|
|
|
2986
2986
|
* This name is case sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account.</p>
|
|
2987
2987
|
* @public
|
|
2988
2988
|
*/
|
|
2989
|
-
VocabularyName?: string;
|
|
2989
|
+
VocabularyName?: string | undefined;
|
|
2990
2990
|
/**
|
|
2991
2991
|
* <p>Enables speaker partitioning (diarization) in your transcription output. Speaker
|
|
2992
2992
|
* partitioning labels the speech from individual speakers in your media file.</p>
|
|
@@ -2996,7 +2996,7 @@ export interface Settings {
|
|
|
2996
2996
|
* (diarization)</a>.</p>
|
|
2997
2997
|
* @public
|
|
2998
2998
|
*/
|
|
2999
|
-
ShowSpeakerLabels?: boolean;
|
|
2999
|
+
ShowSpeakerLabels?: boolean | undefined;
|
|
3000
3000
|
/**
|
|
3001
3001
|
* <p>Specify the maximum number of speakers you want to partition in your media.</p>
|
|
3002
3002
|
* <p>Note that if your media contains more speakers than the specified number, multiple
|
|
@@ -3005,7 +3005,7 @@ export interface Settings {
|
|
|
3005
3005
|
* <code>ShowSpeakerLabels</code> field to true.</p>
|
|
3006
3006
|
* @public
|
|
3007
3007
|
*/
|
|
3008
|
-
MaxSpeakerLabels?: number;
|
|
3008
|
+
MaxSpeakerLabels?: number | undefined;
|
|
3009
3009
|
/**
|
|
3010
3010
|
* <p>Enables channel identification in multi-channel audio.</p>
|
|
3011
3011
|
* <p>Channel identification transcribes the audio on each channel independently, then
|
|
@@ -3014,7 +3014,7 @@ export interface Settings {
|
|
|
3014
3014
|
* audio</a>.</p>
|
|
3015
3015
|
* @public
|
|
3016
3016
|
*/
|
|
3017
|
-
ChannelIdentification?: boolean;
|
|
3017
|
+
ChannelIdentification?: boolean | undefined;
|
|
3018
3018
|
/**
|
|
3019
3019
|
* <p>To include alternative transcriptions within your transcription output, include
|
|
3020
3020
|
* <code>ShowAlternatives</code> in your transcription request.</p>
|
|
@@ -3028,7 +3028,7 @@ export interface Settings {
|
|
|
3028
3028
|
* transcriptions</a>.</p>
|
|
3029
3029
|
* @public
|
|
3030
3030
|
*/
|
|
3031
|
-
ShowAlternatives?: boolean;
|
|
3031
|
+
ShowAlternatives?: boolean | undefined;
|
|
3032
3032
|
/**
|
|
3033
3033
|
* <p>Indicate the maximum number of alternative transcriptions you want Amazon Transcribe
|
|
3034
3034
|
* to include in your transcript.</p>
|
|
@@ -3041,7 +3041,7 @@ export interface Settings {
|
|
|
3041
3041
|
* transcriptions</a>.</p>
|
|
3042
3042
|
* @public
|
|
3043
3043
|
*/
|
|
3044
|
-
MaxAlternatives?: number;
|
|
3044
|
+
MaxAlternatives?: number | undefined;
|
|
3045
3045
|
/**
|
|
3046
3046
|
* <p>The name of the custom vocabulary filter you want to use in your transcription job
|
|
3047
3047
|
* request. This name is case sensitive, cannot contain spaces, and must be unique within
|
|
@@ -3050,7 +3050,7 @@ export interface Settings {
|
|
|
3050
3050
|
* also include <code>VocabularyFilterMethod</code>.</p>
|
|
3051
3051
|
* @public
|
|
3052
3052
|
*/
|
|
3053
|
-
VocabularyFilterName?: string;
|
|
3053
|
+
VocabularyFilterName?: string | undefined;
|
|
3054
3054
|
/**
|
|
3055
3055
|
* <p>Specify how you want your custom vocabulary filter applied to your transcript.</p>
|
|
3056
3056
|
* <p>To replace words with <code>***</code>, choose <code>mask</code>.</p>
|
|
@@ -3058,7 +3058,7 @@ export interface Settings {
|
|
|
3058
3058
|
* <p>To flag words without changing them, choose <code>tag</code>.</p>
|
|
3059
3059
|
* @public
|
|
3060
3060
|
*/
|
|
3061
|
-
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
3061
|
+
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
3062
3062
|
}
|
|
3063
3063
|
/**
|
|
3064
3064
|
* @public
|
|
@@ -3084,7 +3084,7 @@ export interface SubtitlesOutput {
|
|
|
3084
3084
|
* shown.</p>
|
|
3085
3085
|
* @public
|
|
3086
3086
|
*/
|
|
3087
|
-
Formats?: SubtitleFormat[];
|
|
3087
|
+
Formats?: SubtitleFormat[] | undefined;
|
|
3088
3088
|
/**
|
|
3089
3089
|
* <p>The Amazon S3 location of your transcript. You can use this URI to access or
|
|
3090
3090
|
* download your subtitle file. Your subtitle file is stored in the same location as your
|
|
@@ -3105,13 +3105,13 @@ export interface SubtitlesOutput {
|
|
|
3105
3105
|
* </note>
|
|
3106
3106
|
* @public
|
|
3107
3107
|
*/
|
|
3108
|
-
SubtitleFileUris?: string[];
|
|
3108
|
+
SubtitleFileUris?: string[] | undefined;
|
|
3109
3109
|
/**
|
|
3110
3110
|
* <p>Provides the start index value for your subtitle files. If you did not specify a value
|
|
3111
3111
|
* in your request, the default value of <code>0</code> is used.</p>
|
|
3112
3112
|
* @public
|
|
3113
3113
|
*/
|
|
3114
|
-
OutputStartIndex?: number;
|
|
3114
|
+
OutputStartIndex?: number | undefined;
|
|
3115
3115
|
}
|
|
3116
3116
|
/**
|
|
3117
3117
|
* @public
|
|
@@ -3157,7 +3157,7 @@ export interface TranscriptionJob {
|
|
|
3157
3157
|
* within an Amazon Web Services account.</p>
|
|
3158
3158
|
* @public
|
|
3159
3159
|
*/
|
|
3160
|
-
TranscriptionJobName?: string;
|
|
3160
|
+
TranscriptionJobName?: string | undefined;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* <p>Provides the status of the specified transcription job.</p>
|
|
3163
3163
|
* <p>If the status is <code>COMPLETED</code>, the job is finished and you can find the
|
|
@@ -3167,36 +3167,36 @@ export interface TranscriptionJob {
|
|
|
3167
3167
|
* your transcription job failed.</p>
|
|
3168
3168
|
* @public
|
|
3169
3169
|
*/
|
|
3170
|
-
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
3170
|
+
TranscriptionJobStatus?: TranscriptionJobStatus | undefined;
|
|
3171
3171
|
/**
|
|
3172
3172
|
* <p>The language code used to create your transcription job. This parameter is used with
|
|
3173
3173
|
* single-language identification. For multi-language identification requests, refer to the
|
|
3174
3174
|
* plural version of this parameter, <code>LanguageCodes</code>.</p>
|
|
3175
3175
|
* @public
|
|
3176
3176
|
*/
|
|
3177
|
-
LanguageCode?: LanguageCode;
|
|
3177
|
+
LanguageCode?: LanguageCode | undefined;
|
|
3178
3178
|
/**
|
|
3179
3179
|
* <p>The sample rate, in hertz, of the audio track in your input media file.</p>
|
|
3180
3180
|
* @public
|
|
3181
3181
|
*/
|
|
3182
|
-
MediaSampleRateHertz?: number;
|
|
3182
|
+
MediaSampleRateHertz?: number | undefined;
|
|
3183
3183
|
/**
|
|
3184
3184
|
* <p>The format of the input media file.</p>
|
|
3185
3185
|
* @public
|
|
3186
3186
|
*/
|
|
3187
|
-
MediaFormat?: MediaFormat;
|
|
3187
|
+
MediaFormat?: MediaFormat | undefined;
|
|
3188
3188
|
/**
|
|
3189
3189
|
* <p>Provides the Amazon S3 location of the media file you used in your
|
|
3190
3190
|
* request.</p>
|
|
3191
3191
|
* @public
|
|
3192
3192
|
*/
|
|
3193
|
-
Media?: Media;
|
|
3193
|
+
Media?: Media | undefined;
|
|
3194
3194
|
/**
|
|
3195
3195
|
* <p>Provides you with the Amazon S3 URI you can use to access your
|
|
3196
3196
|
* transcript.</p>
|
|
3197
3197
|
* @public
|
|
3198
3198
|
*/
|
|
3199
|
-
Transcript?: Transcript;
|
|
3199
|
+
Transcript?: Transcript | undefined;
|
|
3200
3200
|
/**
|
|
3201
3201
|
* <p>The date and time the specified transcription job began processing.</p>
|
|
3202
3202
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3204,7 +3204,7 @@ export interface TranscriptionJob {
|
|
|
3204
3204
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
3205
3205
|
* @public
|
|
3206
3206
|
*/
|
|
3207
|
-
StartTime?: Date;
|
|
3207
|
+
StartTime?: Date | undefined;
|
|
3208
3208
|
/**
|
|
3209
3209
|
* <p>The date and time the specified transcription job request was made.</p>
|
|
3210
3210
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3212,7 +3212,7 @@ export interface TranscriptionJob {
|
|
|
3212
3212
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
3213
3213
|
* @public
|
|
3214
3214
|
*/
|
|
3215
|
-
CreationTime?: Date;
|
|
3215
|
+
CreationTime?: Date | undefined;
|
|
3216
3216
|
/**
|
|
3217
3217
|
* <p>The date and time the specified transcription job finished processing.</p>
|
|
3218
3218
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3220,7 +3220,7 @@ export interface TranscriptionJob {
|
|
|
3220
3220
|
* that started processing at 12:33 PM UTC-7 on May 4, 2022.</p>
|
|
3221
3221
|
* @public
|
|
3222
3222
|
*/
|
|
3223
|
-
CompletionTime?: Date;
|
|
3223
|
+
CompletionTime?: Date | undefined;
|
|
3224
3224
|
/**
|
|
3225
3225
|
* <p>If <code>TranscriptionJobStatus</code> is <code>FAILED</code>,
|
|
3226
3226
|
* <code>FailureReason</code> contains information about why the transcription job
|
|
@@ -3273,47 +3273,47 @@ export interface TranscriptionJob {
|
|
|
3273
3273
|
* </ul>
|
|
3274
3274
|
* @public
|
|
3275
3275
|
*/
|
|
3276
|
-
FailureReason?: string;
|
|
3276
|
+
FailureReason?: string | undefined;
|
|
3277
3277
|
/**
|
|
3278
3278
|
* <p>Provides information on any additional settings that were included in your request.
|
|
3279
3279
|
* Additional settings include channel identification, alternative transcriptions, speaker
|
|
3280
3280
|
* partitioning, custom vocabularies, and custom vocabulary filters.</p>
|
|
3281
3281
|
* @public
|
|
3282
3282
|
*/
|
|
3283
|
-
Settings?: Settings;
|
|
3283
|
+
Settings?: Settings | undefined;
|
|
3284
3284
|
/**
|
|
3285
3285
|
* <p>Provides information on the custom language model you included in your request.</p>
|
|
3286
3286
|
* @public
|
|
3287
3287
|
*/
|
|
3288
|
-
ModelSettings?: ModelSettings;
|
|
3288
|
+
ModelSettings?: ModelSettings | undefined;
|
|
3289
3289
|
/**
|
|
3290
3290
|
* <p>Provides information about how your transcription job was processed. This parameter
|
|
3291
3291
|
* shows if your request was queued and what data access role was used.</p>
|
|
3292
3292
|
* @public
|
|
3293
3293
|
*/
|
|
3294
|
-
JobExecutionSettings?: JobExecutionSettings;
|
|
3294
|
+
JobExecutionSettings?: JobExecutionSettings | undefined;
|
|
3295
3295
|
/**
|
|
3296
3296
|
* <p>Indicates whether redaction was enabled in your transcript.</p>
|
|
3297
3297
|
* @public
|
|
3298
3298
|
*/
|
|
3299
|
-
ContentRedaction?: ContentRedaction;
|
|
3299
|
+
ContentRedaction?: ContentRedaction | undefined;
|
|
3300
3300
|
/**
|
|
3301
3301
|
* <p>Indicates whether automatic language identification was enabled (<code>TRUE</code>)
|
|
3302
3302
|
* for the specified transcription job.</p>
|
|
3303
3303
|
* @public
|
|
3304
3304
|
*/
|
|
3305
|
-
IdentifyLanguage?: boolean;
|
|
3305
|
+
IdentifyLanguage?: boolean | undefined;
|
|
3306
3306
|
/**
|
|
3307
3307
|
* <p>Indicates whether automatic multi-language identification was enabled
|
|
3308
3308
|
* (<code>TRUE</code>) for the specified transcription job.</p>
|
|
3309
3309
|
* @public
|
|
3310
3310
|
*/
|
|
3311
|
-
IdentifyMultipleLanguages?: boolean;
|
|
3311
|
+
IdentifyMultipleLanguages?: boolean | undefined;
|
|
3312
3312
|
/**
|
|
3313
3313
|
* <p>Provides the language codes you specified in your request.</p>
|
|
3314
3314
|
* @public
|
|
3315
3315
|
*/
|
|
3316
|
-
LanguageOptions?: LanguageCode[];
|
|
3316
|
+
LanguageOptions?: LanguageCode[] | undefined;
|
|
3317
3317
|
/**
|
|
3318
3318
|
* <p>The confidence score associated with the language identified in your media
|
|
3319
3319
|
* file.</p>
|
|
@@ -3322,36 +3322,36 @@ export interface TranscriptionJob {
|
|
|
3322
3322
|
* media.</p>
|
|
3323
3323
|
* @public
|
|
3324
3324
|
*/
|
|
3325
|
-
IdentifiedLanguageScore?: number;
|
|
3325
|
+
IdentifiedLanguageScore?: number | undefined;
|
|
3326
3326
|
/**
|
|
3327
3327
|
* <p>The language codes used to create your transcription job. This parameter is used with
|
|
3328
3328
|
* multi-language identification. For single-language identification requests, refer to the
|
|
3329
3329
|
* singular version of this parameter, <code>LanguageCode</code>.</p>
|
|
3330
3330
|
* @public
|
|
3331
3331
|
*/
|
|
3332
|
-
LanguageCodes?: LanguageCodeItem[];
|
|
3332
|
+
LanguageCodes?: LanguageCodeItem[] | undefined;
|
|
3333
3333
|
/**
|
|
3334
3334
|
* <p>The tags, each in the form of a key:value pair, assigned to the specified
|
|
3335
3335
|
* transcription job.</p>
|
|
3336
3336
|
* @public
|
|
3337
3337
|
*/
|
|
3338
|
-
Tags?: Tag[];
|
|
3338
|
+
Tags?: Tag[] | undefined;
|
|
3339
3339
|
/**
|
|
3340
3340
|
* <p>Indicates whether subtitles were generated with your transcription.</p>
|
|
3341
3341
|
* @public
|
|
3342
3342
|
*/
|
|
3343
|
-
Subtitles?: SubtitlesOutput;
|
|
3343
|
+
Subtitles?: SubtitlesOutput | undefined;
|
|
3344
3344
|
/**
|
|
3345
3345
|
* <p>Provides the name and language of all custom language models, custom vocabularies, and
|
|
3346
3346
|
* custom vocabulary filters that you included in your request.</p>
|
|
3347
3347
|
* @public
|
|
3348
3348
|
*/
|
|
3349
|
-
LanguageIdSettings?: Partial<Record<LanguageCode, LanguageIdSettings
|
|
3349
|
+
LanguageIdSettings?: Partial<Record<LanguageCode, LanguageIdSettings>> | undefined;
|
|
3350
3350
|
/**
|
|
3351
3351
|
* <p>Provides information about the toxicity detection settings applied to your transcription.</p>
|
|
3352
3352
|
* @public
|
|
3353
3353
|
*/
|
|
3354
|
-
ToxicityDetection?: ToxicityDetectionSettings[];
|
|
3354
|
+
ToxicityDetection?: ToxicityDetectionSettings[] | undefined;
|
|
3355
3355
|
}
|
|
3356
3356
|
/**
|
|
3357
3357
|
* @public
|
|
@@ -3362,7 +3362,7 @@ export interface GetTranscriptionJobResponse {
|
|
|
3362
3362
|
* status and, if applicable, failure reason.</p>
|
|
3363
3363
|
* @public
|
|
3364
3364
|
*/
|
|
3365
|
-
TranscriptionJob?: TranscriptionJob;
|
|
3365
|
+
TranscriptionJob?: TranscriptionJob | undefined;
|
|
3366
3366
|
}
|
|
3367
3367
|
/**
|
|
3368
3368
|
* @public
|
|
@@ -3383,19 +3383,19 @@ export interface GetVocabularyResponse {
|
|
|
3383
3383
|
* <p>The name of the custom vocabulary you requested information about.</p>
|
|
3384
3384
|
* @public
|
|
3385
3385
|
*/
|
|
3386
|
-
VocabularyName?: string;
|
|
3386
|
+
VocabularyName?: string | undefined;
|
|
3387
3387
|
/**
|
|
3388
3388
|
* <p>The language code you selected for your custom vocabulary.</p>
|
|
3389
3389
|
* @public
|
|
3390
3390
|
*/
|
|
3391
|
-
LanguageCode?: LanguageCode;
|
|
3391
|
+
LanguageCode?: LanguageCode | undefined;
|
|
3392
3392
|
/**
|
|
3393
3393
|
* <p>The processing state of your custom vocabulary. If the state is <code>READY</code>,
|
|
3394
3394
|
* you can use the custom vocabulary in a <code>StartTranscriptionJob</code>
|
|
3395
3395
|
* request.</p>
|
|
3396
3396
|
* @public
|
|
3397
3397
|
*/
|
|
3398
|
-
VocabularyState?: VocabularyState;
|
|
3398
|
+
VocabularyState?: VocabularyState | undefined;
|
|
3399
3399
|
/**
|
|
3400
3400
|
* <p>The date and time the specified custom vocabulary was last modified.</p>
|
|
3401
3401
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3403,20 +3403,20 @@ export interface GetVocabularyResponse {
|
|
|
3403
3403
|
* 4, 2022.</p>
|
|
3404
3404
|
* @public
|
|
3405
3405
|
*/
|
|
3406
|
-
LastModifiedTime?: Date;
|
|
3406
|
+
LastModifiedTime?: Date | undefined;
|
|
3407
3407
|
/**
|
|
3408
3408
|
* <p>If <code>VocabularyState</code> is <code>FAILED</code>, <code>FailureReason</code>
|
|
3409
3409
|
* contains information about why the custom vocabulary request failed. See also: <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common
|
|
3410
3410
|
* Errors</a>.</p>
|
|
3411
3411
|
* @public
|
|
3412
3412
|
*/
|
|
3413
|
-
FailureReason?: string;
|
|
3413
|
+
FailureReason?: string | undefined;
|
|
3414
3414
|
/**
|
|
3415
3415
|
* <p>The Amazon S3 location where the custom vocabulary is stored; use this URI to view or
|
|
3416
3416
|
* download the custom vocabulary.</p>
|
|
3417
3417
|
* @public
|
|
3418
3418
|
*/
|
|
3419
|
-
DownloadUri?: string;
|
|
3419
|
+
DownloadUri?: string | undefined;
|
|
3420
3420
|
}
|
|
3421
3421
|
/**
|
|
3422
3422
|
* @public
|
|
@@ -3437,12 +3437,12 @@ export interface GetVocabularyFilterResponse {
|
|
|
3437
3437
|
* <p>The name of the custom vocabulary filter you requested information about.</p>
|
|
3438
3438
|
* @public
|
|
3439
3439
|
*/
|
|
3440
|
-
VocabularyFilterName?: string;
|
|
3440
|
+
VocabularyFilterName?: string | undefined;
|
|
3441
3441
|
/**
|
|
3442
3442
|
* <p>The language code you selected for your custom vocabulary filter.</p>
|
|
3443
3443
|
* @public
|
|
3444
3444
|
*/
|
|
3445
|
-
LanguageCode?: LanguageCode;
|
|
3445
|
+
LanguageCode?: LanguageCode | undefined;
|
|
3446
3446
|
/**
|
|
3447
3447
|
* <p>The date and time the specified custom vocabulary filter was last modified.</p>
|
|
3448
3448
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3450,13 +3450,13 @@ export interface GetVocabularyFilterResponse {
|
|
|
3450
3450
|
* 4, 2022.</p>
|
|
3451
3451
|
* @public
|
|
3452
3452
|
*/
|
|
3453
|
-
LastModifiedTime?: Date;
|
|
3453
|
+
LastModifiedTime?: Date | undefined;
|
|
3454
3454
|
/**
|
|
3455
3455
|
* <p>The Amazon S3 location where the custom vocabulary filter is stored; use this
|
|
3456
3456
|
* URI to view or download the custom vocabulary filter.</p>
|
|
3457
3457
|
* @public
|
|
3458
3458
|
*/
|
|
3459
|
-
DownloadUri?: string;
|
|
3459
|
+
DownloadUri?: string | undefined;
|
|
3460
3460
|
}
|
|
3461
3461
|
/**
|
|
3462
3462
|
* @public
|
|
@@ -3470,14 +3470,14 @@ export interface ListCallAnalyticsCategoriesRequest {
|
|
|
3470
3470
|
* to view all your results.</p>
|
|
3471
3471
|
* @public
|
|
3472
3472
|
*/
|
|
3473
|
-
NextToken?: string;
|
|
3473
|
+
NextToken?: string | undefined;
|
|
3474
3474
|
/**
|
|
3475
3475
|
* <p>The maximum number of Call Analytics categories to return in each page of results. If
|
|
3476
3476
|
* there are fewer results than the value that you specify, only the actual results are
|
|
3477
3477
|
* returned. If you do not specify a value, a default of 5 is used.</p>
|
|
3478
3478
|
* @public
|
|
3479
3479
|
*/
|
|
3480
|
-
MaxResults?: number;
|
|
3480
|
+
MaxResults?: number | undefined;
|
|
3481
3481
|
}
|
|
3482
3482
|
/**
|
|
3483
3483
|
* @public
|
|
@@ -3491,13 +3491,13 @@ export interface ListCallAnalyticsCategoriesResponse {
|
|
|
3491
3491
|
* to view all your results.</p>
|
|
3492
3492
|
* @public
|
|
3493
3493
|
*/
|
|
3494
|
-
NextToken?: string;
|
|
3494
|
+
NextToken?: string | undefined;
|
|
3495
3495
|
/**
|
|
3496
3496
|
* <p>Provides detailed information about your Call Analytics categories, including all the
|
|
3497
3497
|
* rules associated with each category.</p>
|
|
3498
3498
|
* @public
|
|
3499
3499
|
*/
|
|
3500
|
-
Categories?: CategoryProperties[];
|
|
3500
|
+
Categories?: CategoryProperties[] | undefined;
|
|
3501
3501
|
}
|
|
3502
3502
|
/**
|
|
3503
3503
|
* @public
|
|
@@ -3509,13 +3509,13 @@ export interface ListCallAnalyticsJobsRequest {
|
|
|
3509
3509
|
* Call Analytics jobs are returned.</p>
|
|
3510
3510
|
* @public
|
|
3511
3511
|
*/
|
|
3512
|
-
Status?: CallAnalyticsJobStatus;
|
|
3512
|
+
Status?: CallAnalyticsJobStatus | undefined;
|
|
3513
3513
|
/**
|
|
3514
3514
|
* <p>Returns only the Call Analytics jobs that contain the specified string. The search is
|
|
3515
3515
|
* not case sensitive.</p>
|
|
3516
3516
|
* @public
|
|
3517
3517
|
*/
|
|
3518
|
-
JobNameContains?: string;
|
|
3518
|
+
JobNameContains?: string | undefined;
|
|
3519
3519
|
/**
|
|
3520
3520
|
* <p>If your <code>ListCallAnalyticsJobs</code> request returns more results than can be
|
|
3521
3521
|
* displayed, <code>NextToken</code> is displayed in the response with an associated
|
|
@@ -3524,14 +3524,14 @@ export interface ListCallAnalyticsJobsRequest {
|
|
|
3524
3524
|
* to view all your results.</p>
|
|
3525
3525
|
* @public
|
|
3526
3526
|
*/
|
|
3527
|
-
NextToken?: string;
|
|
3527
|
+
NextToken?: string | undefined;
|
|
3528
3528
|
/**
|
|
3529
3529
|
* <p>The maximum number of Call Analytics jobs to return in each page of results. If there
|
|
3530
3530
|
* are fewer results than the value that you specify, only the actual results are returned.
|
|
3531
3531
|
* If you do not specify a value, a default of 5 is used.</p>
|
|
3532
3532
|
* @public
|
|
3533
3533
|
*/
|
|
3534
|
-
MaxResults?: number;
|
|
3534
|
+
MaxResults?: number | undefined;
|
|
3535
3535
|
}
|
|
3536
3536
|
/**
|
|
3537
3537
|
* @public
|
|
@@ -3542,7 +3542,7 @@ export interface ListCallAnalyticsJobsResponse {
|
|
|
3542
3542
|
* ordered by creation date, with the newest job first.</p>
|
|
3543
3543
|
* @public
|
|
3544
3544
|
*/
|
|
3545
|
-
Status?: CallAnalyticsJobStatus;
|
|
3545
|
+
Status?: CallAnalyticsJobStatus | undefined;
|
|
3546
3546
|
/**
|
|
3547
3547
|
* <p>If <code>NextToken</code> is present in your response, it indicates that not all
|
|
3548
3548
|
* results are displayed. To view the next set of results, copy the string associated with
|
|
@@ -3551,12 +3551,12 @@ export interface ListCallAnalyticsJobsResponse {
|
|
|
3551
3551
|
* to view all your results.</p>
|
|
3552
3552
|
* @public
|
|
3553
3553
|
*/
|
|
3554
|
-
NextToken?: string;
|
|
3554
|
+
NextToken?: string | undefined;
|
|
3555
3555
|
/**
|
|
3556
3556
|
* <p>Provides a summary of information about each result.</p>
|
|
3557
3557
|
* @public
|
|
3558
3558
|
*/
|
|
3559
|
-
CallAnalyticsJobSummaries?: CallAnalyticsJobSummary[];
|
|
3559
|
+
CallAnalyticsJobSummaries?: CallAnalyticsJobSummary[] | undefined;
|
|
3560
3560
|
}
|
|
3561
3561
|
/**
|
|
3562
3562
|
* @public
|
|
@@ -3568,13 +3568,13 @@ export interface ListLanguageModelsRequest {
|
|
|
3568
3568
|
* <code>StatusEquals</code>, all custom language models are returned.</p>
|
|
3569
3569
|
* @public
|
|
3570
3570
|
*/
|
|
3571
|
-
StatusEquals?: ModelStatus;
|
|
3571
|
+
StatusEquals?: ModelStatus | undefined;
|
|
3572
3572
|
/**
|
|
3573
3573
|
* <p>Returns only the custom language models that contain the specified string. The search
|
|
3574
3574
|
* is not case sensitive.</p>
|
|
3575
3575
|
* @public
|
|
3576
3576
|
*/
|
|
3577
|
-
NameContains?: string;
|
|
3577
|
+
NameContains?: string | undefined;
|
|
3578
3578
|
/**
|
|
3579
3579
|
* <p>If your <code>ListLanguageModels</code> request returns more results than can be
|
|
3580
3580
|
* displayed, <code>NextToken</code> is displayed in the response with an associated
|
|
@@ -3583,14 +3583,14 @@ export interface ListLanguageModelsRequest {
|
|
|
3583
3583
|
* to view all your results.</p>
|
|
3584
3584
|
* @public
|
|
3585
3585
|
*/
|
|
3586
|
-
NextToken?: string;
|
|
3586
|
+
NextToken?: string | undefined;
|
|
3587
3587
|
/**
|
|
3588
3588
|
* <p>The maximum number of custom language models to return in each page of results. If
|
|
3589
3589
|
* there are fewer results than the value that you specify, only the actual results are
|
|
3590
3590
|
* returned. If you do not specify a value, a default of 5 is used.</p>
|
|
3591
3591
|
* @public
|
|
3592
3592
|
*/
|
|
3593
|
-
MaxResults?: number;
|
|
3593
|
+
MaxResults?: number | undefined;
|
|
3594
3594
|
}
|
|
3595
3595
|
/**
|
|
3596
3596
|
* @public
|
|
@@ -3604,13 +3604,13 @@ export interface ListLanguageModelsResponse {
|
|
|
3604
3604
|
* to view all your results.</p>
|
|
3605
3605
|
* @public
|
|
3606
3606
|
*/
|
|
3607
|
-
NextToken?: string;
|
|
3607
|
+
NextToken?: string | undefined;
|
|
3608
3608
|
/**
|
|
3609
3609
|
* <p>Provides information about the custom language models that match the criteria
|
|
3610
3610
|
* specified in your request.</p>
|
|
3611
3611
|
* @public
|
|
3612
3612
|
*/
|
|
3613
|
-
Models?: LanguageModel[];
|
|
3613
|
+
Models?: LanguageModel[] | undefined;
|
|
3614
3614
|
}
|
|
3615
3615
|
/**
|
|
3616
3616
|
* @public
|
|
@@ -3622,13 +3622,13 @@ export interface ListMedicalScribeJobsRequest {
|
|
|
3622
3622
|
* Medical Scribe jobs are returned.</p>
|
|
3623
3623
|
* @public
|
|
3624
3624
|
*/
|
|
3625
|
-
Status?: MedicalScribeJobStatus;
|
|
3625
|
+
Status?: MedicalScribeJobStatus | undefined;
|
|
3626
3626
|
/**
|
|
3627
3627
|
* <p>Returns only the Medical Scribe jobs that contain the specified string. The
|
|
3628
3628
|
* search is not case sensitive.</p>
|
|
3629
3629
|
* @public
|
|
3630
3630
|
*/
|
|
3631
|
-
JobNameContains?: string;
|
|
3631
|
+
JobNameContains?: string | undefined;
|
|
3632
3632
|
/**
|
|
3633
3633
|
* <p>If your <code>ListMedicalScribeJobs</code> request returns more results than
|
|
3634
3634
|
* can be displayed, <code>NextToken</code> is displayed in the response with an associated
|
|
@@ -3637,14 +3637,14 @@ export interface ListMedicalScribeJobsRequest {
|
|
|
3637
3637
|
* to view all your results.</p>
|
|
3638
3638
|
* @public
|
|
3639
3639
|
*/
|
|
3640
|
-
NextToken?: string;
|
|
3640
|
+
NextToken?: string | undefined;
|
|
3641
3641
|
/**
|
|
3642
3642
|
* <p>The maximum number of Medical Scribe jobs to return in each page of results. If
|
|
3643
3643
|
* there are fewer results than the value that you specify, only the actual results are
|
|
3644
3644
|
* returned. If you do not specify a value, a default of 5 is used.</p>
|
|
3645
3645
|
* @public
|
|
3646
3646
|
*/
|
|
3647
|
-
MaxResults?: number;
|
|
3647
|
+
MaxResults?: number | undefined;
|
|
3648
3648
|
}
|
|
3649
3649
|
/**
|
|
3650
3650
|
* <p>Provides detailed information about a specific Medical Scribe job.</p>
|
|
@@ -3656,7 +3656,7 @@ export interface MedicalScribeJobSummary {
|
|
|
3656
3656
|
* unique within an Amazon Web Services account.</p>
|
|
3657
3657
|
* @public
|
|
3658
3658
|
*/
|
|
3659
|
-
MedicalScribeJobName?: string;
|
|
3659
|
+
MedicalScribeJobName?: string | undefined;
|
|
3660
3660
|
/**
|
|
3661
3661
|
* <p>The date and time the specified Medical Scribe job request was made.</p>
|
|
3662
3662
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3664,7 +3664,7 @@ export interface MedicalScribeJobSummary {
|
|
|
3664
3664
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
3665
3665
|
* @public
|
|
3666
3666
|
*/
|
|
3667
|
-
CreationTime?: Date;
|
|
3667
|
+
CreationTime?: Date | undefined;
|
|
3668
3668
|
/**
|
|
3669
3669
|
* <p>The date and time your Medical Scribe job began processing.</p>
|
|
3670
3670
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3672,7 +3672,7 @@ export interface MedicalScribeJobSummary {
|
|
|
3672
3672
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
3673
3673
|
* @public
|
|
3674
3674
|
*/
|
|
3675
|
-
StartTime?: Date;
|
|
3675
|
+
StartTime?: Date | undefined;
|
|
3676
3676
|
/**
|
|
3677
3677
|
* <p>The date and time the specified Medical Scribe job finished processing.</p>
|
|
3678
3678
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3680,13 +3680,13 @@ export interface MedicalScribeJobSummary {
|
|
|
3680
3680
|
* that finished processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
3681
3681
|
* @public
|
|
3682
3682
|
*/
|
|
3683
|
-
CompletionTime?: Date;
|
|
3683
|
+
CompletionTime?: Date | undefined;
|
|
3684
3684
|
/**
|
|
3685
3685
|
* <p>The language code used to create your Medical Scribe job. US English
|
|
3686
3686
|
* (<code>en-US</code>) is the only supported language for Medical Scribe jobs. </p>
|
|
3687
3687
|
* @public
|
|
3688
3688
|
*/
|
|
3689
|
-
LanguageCode?: MedicalScribeLanguageCode;
|
|
3689
|
+
LanguageCode?: MedicalScribeLanguageCode | undefined;
|
|
3690
3690
|
/**
|
|
3691
3691
|
* <p>Provides the status of the specified Medical Scribe job.</p>
|
|
3692
3692
|
* <p>If the status is <code>COMPLETED</code>, the job is finished and you can find the
|
|
@@ -3695,14 +3695,14 @@ export interface MedicalScribeJobSummary {
|
|
|
3695
3695
|
* your Medical Scribe job failed.</p>
|
|
3696
3696
|
* @public
|
|
3697
3697
|
*/
|
|
3698
|
-
MedicalScribeJobStatus?: MedicalScribeJobStatus;
|
|
3698
|
+
MedicalScribeJobStatus?: MedicalScribeJobStatus | undefined;
|
|
3699
3699
|
/**
|
|
3700
3700
|
* <p>If <code>MedicalScribeJobStatus</code> is <code>FAILED</code>,
|
|
3701
3701
|
* <code>FailureReason</code> contains information about why the transcription job
|
|
3702
3702
|
* failed. See also: <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common Errors</a>.</p>
|
|
3703
3703
|
* @public
|
|
3704
3704
|
*/
|
|
3705
|
-
FailureReason?: string;
|
|
3705
|
+
FailureReason?: string | undefined;
|
|
3706
3706
|
}
|
|
3707
3707
|
/**
|
|
3708
3708
|
* @public
|
|
@@ -3713,7 +3713,7 @@ export interface ListMedicalScribeJobsResponse {
|
|
|
3713
3713
|
* Jobs are ordered by creation date, with the newest job first.</p>
|
|
3714
3714
|
* @public
|
|
3715
3715
|
*/
|
|
3716
|
-
Status?: MedicalScribeJobStatus;
|
|
3716
|
+
Status?: MedicalScribeJobStatus | undefined;
|
|
3717
3717
|
/**
|
|
3718
3718
|
* <p>If <code>NextToken</code> is present in your response, it indicates that not all
|
|
3719
3719
|
* results are displayed. To view the next set of results, copy the string associated with
|
|
@@ -3722,12 +3722,12 @@ export interface ListMedicalScribeJobsResponse {
|
|
|
3722
3722
|
* to view all your results.</p>
|
|
3723
3723
|
* @public
|
|
3724
3724
|
*/
|
|
3725
|
-
NextToken?: string;
|
|
3725
|
+
NextToken?: string | undefined;
|
|
3726
3726
|
/**
|
|
3727
3727
|
* <p>Provides a summary of information about each result.</p>
|
|
3728
3728
|
* @public
|
|
3729
3729
|
*/
|
|
3730
|
-
MedicalScribeJobSummaries?: MedicalScribeJobSummary[];
|
|
3730
|
+
MedicalScribeJobSummaries?: MedicalScribeJobSummary[] | undefined;
|
|
3731
3731
|
}
|
|
3732
3732
|
/**
|
|
3733
3733
|
* @public
|
|
@@ -3739,13 +3739,13 @@ export interface ListMedicalTranscriptionJobsRequest {
|
|
|
3739
3739
|
* medical transcription jobs are returned.</p>
|
|
3740
3740
|
* @public
|
|
3741
3741
|
*/
|
|
3742
|
-
Status?: TranscriptionJobStatus;
|
|
3742
|
+
Status?: TranscriptionJobStatus | undefined;
|
|
3743
3743
|
/**
|
|
3744
3744
|
* <p>Returns only the medical transcription jobs that contain the specified string. The
|
|
3745
3745
|
* search is not case sensitive.</p>
|
|
3746
3746
|
* @public
|
|
3747
3747
|
*/
|
|
3748
|
-
JobNameContains?: string;
|
|
3748
|
+
JobNameContains?: string | undefined;
|
|
3749
3749
|
/**
|
|
3750
3750
|
* <p>If your <code>ListMedicalTranscriptionJobs</code> request returns more results than
|
|
3751
3751
|
* can be displayed, <code>NextToken</code> is displayed in the response with an associated
|
|
@@ -3754,14 +3754,14 @@ export interface ListMedicalTranscriptionJobsRequest {
|
|
|
3754
3754
|
* to view all your results.</p>
|
|
3755
3755
|
* @public
|
|
3756
3756
|
*/
|
|
3757
|
-
NextToken?: string;
|
|
3757
|
+
NextToken?: string | undefined;
|
|
3758
3758
|
/**
|
|
3759
3759
|
* <p>The maximum number of medical transcription jobs to return in each page of results. If
|
|
3760
3760
|
* there are fewer results than the value that you specify, only the actual results are
|
|
3761
3761
|
* returned. If you do not specify a value, a default of 5 is used.</p>
|
|
3762
3762
|
* @public
|
|
3763
3763
|
*/
|
|
3764
|
-
MaxResults?: number;
|
|
3764
|
+
MaxResults?: number | undefined;
|
|
3765
3765
|
}
|
|
3766
3766
|
/**
|
|
3767
3767
|
* @public
|
|
@@ -3785,7 +3785,7 @@ export interface MedicalTranscriptionJobSummary {
|
|
|
3785
3785
|
* unique within an Amazon Web Services account.</p>
|
|
3786
3786
|
* @public
|
|
3787
3787
|
*/
|
|
3788
|
-
MedicalTranscriptionJobName?: string;
|
|
3788
|
+
MedicalTranscriptionJobName?: string | undefined;
|
|
3789
3789
|
/**
|
|
3790
3790
|
* <p>The date and time the specified medical transcription job request was made.</p>
|
|
3791
3791
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3793,7 +3793,7 @@ export interface MedicalTranscriptionJobSummary {
|
|
|
3793
3793
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
3794
3794
|
* @public
|
|
3795
3795
|
*/
|
|
3796
|
-
CreationTime?: Date;
|
|
3796
|
+
CreationTime?: Date | undefined;
|
|
3797
3797
|
/**
|
|
3798
3798
|
* <p>The date and time your medical transcription job began processing.</p>
|
|
3799
3799
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3801,7 +3801,7 @@ export interface MedicalTranscriptionJobSummary {
|
|
|
3801
3801
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
3802
3802
|
* @public
|
|
3803
3803
|
*/
|
|
3804
|
-
StartTime?: Date;
|
|
3804
|
+
StartTime?: Date | undefined;
|
|
3805
3805
|
/**
|
|
3806
3806
|
* <p>The date and time the specified medical transcription job finished processing.</p>
|
|
3807
3807
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3809,14 +3809,14 @@ export interface MedicalTranscriptionJobSummary {
|
|
|
3809
3809
|
* that started processing at 12:33 PM UTC-7 on May 4, 2022.</p>
|
|
3810
3810
|
* @public
|
|
3811
3811
|
*/
|
|
3812
|
-
CompletionTime?: Date;
|
|
3812
|
+
CompletionTime?: Date | undefined;
|
|
3813
3813
|
/**
|
|
3814
3814
|
* <p>The language code used to create your medical transcription. US English
|
|
3815
3815
|
* (<code>en-US</code>) is the only supported language for medical
|
|
3816
3816
|
* transcriptions.</p>
|
|
3817
3817
|
* @public
|
|
3818
3818
|
*/
|
|
3819
|
-
LanguageCode?: LanguageCode;
|
|
3819
|
+
LanguageCode?: LanguageCode | undefined;
|
|
3820
3820
|
/**
|
|
3821
3821
|
* <p>Provides the status of your medical transcription job.</p>
|
|
3822
3822
|
* <p>If the status is <code>COMPLETED</code>, the job is finished and you can find the
|
|
@@ -3825,14 +3825,14 @@ export interface MedicalTranscriptionJobSummary {
|
|
|
3825
3825
|
* transcription job failed.</p>
|
|
3826
3826
|
* @public
|
|
3827
3827
|
*/
|
|
3828
|
-
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
3828
|
+
TranscriptionJobStatus?: TranscriptionJobStatus | undefined;
|
|
3829
3829
|
/**
|
|
3830
3830
|
* <p>If <code>TranscriptionJobStatus</code> is <code>FAILED</code>,
|
|
3831
3831
|
* <code>FailureReason</code> contains information about why the transcription job
|
|
3832
3832
|
* failed. See also: <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common Errors</a>.</p>
|
|
3833
3833
|
* @public
|
|
3834
3834
|
*/
|
|
3835
|
-
FailureReason?: string;
|
|
3835
|
+
FailureReason?: string | undefined;
|
|
3836
3836
|
/**
|
|
3837
3837
|
* <p>Indicates where the specified medical transcription output is stored.</p>
|
|
3838
3838
|
* <p>If the value is <code>CUSTOMER_BUCKET</code>, the location is the Amazon S3
|
|
@@ -3843,24 +3843,24 @@ export interface MedicalTranscriptionJobSummary {
|
|
|
3843
3843
|
* URI shown in the <code>TranscriptFileUri</code> field.</p>
|
|
3844
3844
|
* @public
|
|
3845
3845
|
*/
|
|
3846
|
-
OutputLocationType?: OutputLocationType;
|
|
3846
|
+
OutputLocationType?: OutputLocationType | undefined;
|
|
3847
3847
|
/**
|
|
3848
3848
|
* <p>Provides the medical specialty represented in your media.</p>
|
|
3849
3849
|
* @public
|
|
3850
3850
|
*/
|
|
3851
|
-
Specialty?: Specialty;
|
|
3851
|
+
Specialty?: Specialty | undefined;
|
|
3852
3852
|
/**
|
|
3853
3853
|
* <p>Labels all personal health information (PHI) identified in your transcript. For more
|
|
3854
3854
|
* information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/phi-id.html">Identifying personal health information (PHI) in a transcription</a>.</p>
|
|
3855
3855
|
* @public
|
|
3856
3856
|
*/
|
|
3857
|
-
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
3857
|
+
ContentIdentificationType?: MedicalContentIdentificationType | undefined;
|
|
3858
3858
|
/**
|
|
3859
3859
|
* <p>Indicates whether the input media is a dictation or a conversation, as specified in
|
|
3860
3860
|
* the <code>StartMedicalTranscriptionJob</code> request.</p>
|
|
3861
3861
|
* @public
|
|
3862
3862
|
*/
|
|
3863
|
-
Type?: Type;
|
|
3863
|
+
Type?: Type | undefined;
|
|
3864
3864
|
}
|
|
3865
3865
|
/**
|
|
3866
3866
|
* @public
|
|
@@ -3871,7 +3871,7 @@ export interface ListMedicalTranscriptionJobsResponse {
|
|
|
3871
3871
|
* Jobs are ordered by creation date, with the newest job first.</p>
|
|
3872
3872
|
* @public
|
|
3873
3873
|
*/
|
|
3874
|
-
Status?: TranscriptionJobStatus;
|
|
3874
|
+
Status?: TranscriptionJobStatus | undefined;
|
|
3875
3875
|
/**
|
|
3876
3876
|
* <p>If <code>NextToken</code> is present in your response, it indicates that not all
|
|
3877
3877
|
* results are displayed. To view the next set of results, copy the string associated with
|
|
@@ -3880,12 +3880,12 @@ export interface ListMedicalTranscriptionJobsResponse {
|
|
|
3880
3880
|
* to view all your results.</p>
|
|
3881
3881
|
* @public
|
|
3882
3882
|
*/
|
|
3883
|
-
NextToken?: string;
|
|
3883
|
+
NextToken?: string | undefined;
|
|
3884
3884
|
/**
|
|
3885
3885
|
* <p>Provides a summary of information about each result.</p>
|
|
3886
3886
|
* @public
|
|
3887
3887
|
*/
|
|
3888
|
-
MedicalTranscriptionJobSummaries?: MedicalTranscriptionJobSummary[];
|
|
3888
|
+
MedicalTranscriptionJobSummaries?: MedicalTranscriptionJobSummary[] | undefined;
|
|
3889
3889
|
}
|
|
3890
3890
|
/**
|
|
3891
3891
|
* @public
|
|
@@ -3899,27 +3899,27 @@ export interface ListMedicalVocabulariesRequest {
|
|
|
3899
3899
|
* to view all your results.</p>
|
|
3900
3900
|
* @public
|
|
3901
3901
|
*/
|
|
3902
|
-
NextToken?: string;
|
|
3902
|
+
NextToken?: string | undefined;
|
|
3903
3903
|
/**
|
|
3904
3904
|
* <p>The maximum number of custom medical vocabularies to return in each page of results.
|
|
3905
3905
|
* If there are fewer results than the value that you specify, only the actual results are
|
|
3906
3906
|
* returned. If you do not specify a value, a default of 5 is used.</p>
|
|
3907
3907
|
* @public
|
|
3908
3908
|
*/
|
|
3909
|
-
MaxResults?: number;
|
|
3909
|
+
MaxResults?: number | undefined;
|
|
3910
3910
|
/**
|
|
3911
3911
|
* <p>Returns only custom medical vocabularies with the specified state. Custom vocabularies
|
|
3912
3912
|
* are ordered by creation date, with the newest vocabulary first. If you do not include
|
|
3913
3913
|
* <code>StateEquals</code>, all custom medical vocabularies are returned.</p>
|
|
3914
3914
|
* @public
|
|
3915
3915
|
*/
|
|
3916
|
-
StateEquals?: VocabularyState;
|
|
3916
|
+
StateEquals?: VocabularyState | undefined;
|
|
3917
3917
|
/**
|
|
3918
3918
|
* <p>Returns only the custom medical vocabularies that contain the specified string. The
|
|
3919
3919
|
* search is not case sensitive.</p>
|
|
3920
3920
|
* @public
|
|
3921
3921
|
*/
|
|
3922
|
-
NameContains?: string;
|
|
3922
|
+
NameContains?: string | undefined;
|
|
3923
3923
|
}
|
|
3924
3924
|
/**
|
|
3925
3925
|
* <p>Provides information about a custom vocabulary, including the language of the custom
|
|
@@ -3932,7 +3932,7 @@ export interface VocabularyInfo {
|
|
|
3932
3932
|
* cannot contain spaces, and must be unique within an Amazon Web Services account.</p>
|
|
3933
3933
|
* @public
|
|
3934
3934
|
*/
|
|
3935
|
-
VocabularyName?: string;
|
|
3935
|
+
VocabularyName?: string | undefined;
|
|
3936
3936
|
/**
|
|
3937
3937
|
* <p>The language code used to create your custom vocabulary. Each custom vocabulary must
|
|
3938
3938
|
* contain terms in only one language.</p>
|
|
@@ -3942,7 +3942,7 @@ export interface VocabularyInfo {
|
|
|
3942
3942
|
* contain English audio.</p>
|
|
3943
3943
|
* @public
|
|
3944
3944
|
*/
|
|
3945
|
-
LanguageCode?: LanguageCode;
|
|
3945
|
+
LanguageCode?: LanguageCode | undefined;
|
|
3946
3946
|
/**
|
|
3947
3947
|
* <p>The date and time the specified custom vocabulary was last modified.</p>
|
|
3948
3948
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -3950,14 +3950,14 @@ export interface VocabularyInfo {
|
|
|
3950
3950
|
* 4, 2022.</p>
|
|
3951
3951
|
* @public
|
|
3952
3952
|
*/
|
|
3953
|
-
LastModifiedTime?: Date;
|
|
3953
|
+
LastModifiedTime?: Date | undefined;
|
|
3954
3954
|
/**
|
|
3955
3955
|
* <p>The processing state of your custom vocabulary. If the state is <code>READY</code>,
|
|
3956
3956
|
* you can use the custom vocabulary in a <code>StartTranscriptionJob</code>
|
|
3957
3957
|
* request.</p>
|
|
3958
3958
|
* @public
|
|
3959
3959
|
*/
|
|
3960
|
-
VocabularyState?: VocabularyState;
|
|
3960
|
+
VocabularyState?: VocabularyState | undefined;
|
|
3961
3961
|
}
|
|
3962
3962
|
/**
|
|
3963
3963
|
* @public
|
|
@@ -3969,7 +3969,7 @@ export interface ListMedicalVocabulariesResponse {
|
|
|
3969
3969
|
* first.</p>
|
|
3970
3970
|
* @public
|
|
3971
3971
|
*/
|
|
3972
|
-
Status?: VocabularyState;
|
|
3972
|
+
Status?: VocabularyState | undefined;
|
|
3973
3973
|
/**
|
|
3974
3974
|
* <p>If <code>NextToken</code> is present in your response, it indicates that not all
|
|
3975
3975
|
* results are displayed. To view the next set of results, copy the string associated with
|
|
@@ -3978,13 +3978,13 @@ export interface ListMedicalVocabulariesResponse {
|
|
|
3978
3978
|
* to view all your results.</p>
|
|
3979
3979
|
* @public
|
|
3980
3980
|
*/
|
|
3981
|
-
NextToken?: string;
|
|
3981
|
+
NextToken?: string | undefined;
|
|
3982
3982
|
/**
|
|
3983
3983
|
* <p>Provides information about the custom medical vocabularies that match the criteria
|
|
3984
3984
|
* specified in your request.</p>
|
|
3985
3985
|
* @public
|
|
3986
3986
|
*/
|
|
3987
|
-
Vocabularies?: VocabularyInfo[];
|
|
3987
|
+
Vocabularies?: VocabularyInfo[] | undefined;
|
|
3988
3988
|
}
|
|
3989
3989
|
/**
|
|
3990
3990
|
* @public
|
|
@@ -4012,13 +4012,13 @@ export interface ListTagsForResourceResponse {
|
|
|
4012
4012
|
* <p>The Amazon Resource Name (ARN) specified in your request.</p>
|
|
4013
4013
|
* @public
|
|
4014
4014
|
*/
|
|
4015
|
-
ResourceArn?: string;
|
|
4015
|
+
ResourceArn?: string | undefined;
|
|
4016
4016
|
/**
|
|
4017
4017
|
* <p>Lists all tags associated with the given transcription job, vocabulary, model, or
|
|
4018
4018
|
* resource.</p>
|
|
4019
4019
|
* @public
|
|
4020
4020
|
*/
|
|
4021
|
-
Tags?: Tag[];
|
|
4021
|
+
Tags?: Tag[] | undefined;
|
|
4022
4022
|
}
|
|
4023
4023
|
/**
|
|
4024
4024
|
* @public
|
|
@@ -4030,13 +4030,13 @@ export interface ListTranscriptionJobsRequest {
|
|
|
4030
4030
|
* transcription jobs are returned.</p>
|
|
4031
4031
|
* @public
|
|
4032
4032
|
*/
|
|
4033
|
-
Status?: TranscriptionJobStatus;
|
|
4033
|
+
Status?: TranscriptionJobStatus | undefined;
|
|
4034
4034
|
/**
|
|
4035
4035
|
* <p>Returns only the transcription jobs that contain the specified string. The search is
|
|
4036
4036
|
* not case sensitive.</p>
|
|
4037
4037
|
* @public
|
|
4038
4038
|
*/
|
|
4039
|
-
JobNameContains?: string;
|
|
4039
|
+
JobNameContains?: string | undefined;
|
|
4040
4040
|
/**
|
|
4041
4041
|
* <p>If your <code>ListTranscriptionJobs</code> request returns more results than can be
|
|
4042
4042
|
* displayed, <code>NextToken</code> is displayed in the response with an associated
|
|
@@ -4045,14 +4045,14 @@ export interface ListTranscriptionJobsRequest {
|
|
|
4045
4045
|
* to view all your results.</p>
|
|
4046
4046
|
* @public
|
|
4047
4047
|
*/
|
|
4048
|
-
NextToken?: string;
|
|
4048
|
+
NextToken?: string | undefined;
|
|
4049
4049
|
/**
|
|
4050
4050
|
* <p>The maximum number of transcription jobs to return in each page of results. If there
|
|
4051
4051
|
* are fewer results than the value that you specify, only the actual results are returned.
|
|
4052
4052
|
* If you do not specify a value, a default of 5 is used.</p>
|
|
4053
4053
|
* @public
|
|
4054
4054
|
*/
|
|
4055
|
-
MaxResults?: number;
|
|
4055
|
+
MaxResults?: number | undefined;
|
|
4056
4056
|
}
|
|
4057
4057
|
/**
|
|
4058
4058
|
* <p>Provides detailed information about a specific transcription job.</p>
|
|
@@ -4064,7 +4064,7 @@ export interface TranscriptionJobSummary {
|
|
|
4064
4064
|
* within an Amazon Web Services account.</p>
|
|
4065
4065
|
* @public
|
|
4066
4066
|
*/
|
|
4067
|
-
TranscriptionJobName?: string;
|
|
4067
|
+
TranscriptionJobName?: string | undefined;
|
|
4068
4068
|
/**
|
|
4069
4069
|
* <p>The date and time the specified transcription job request was made.</p>
|
|
4070
4070
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -4072,7 +4072,7 @@ export interface TranscriptionJobSummary {
|
|
|
4072
4072
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
4073
4073
|
* @public
|
|
4074
4074
|
*/
|
|
4075
|
-
CreationTime?: Date;
|
|
4075
|
+
CreationTime?: Date | undefined;
|
|
4076
4076
|
/**
|
|
4077
4077
|
* <p>The date and time your transcription job began processing.</p>
|
|
4078
4078
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -4080,7 +4080,7 @@ export interface TranscriptionJobSummary {
|
|
|
4080
4080
|
* that started processing at 12:32 PM UTC-7 on May 4, 2022.</p>
|
|
4081
4081
|
* @public
|
|
4082
4082
|
*/
|
|
4083
|
-
StartTime?: Date;
|
|
4083
|
+
StartTime?: Date | undefined;
|
|
4084
4084
|
/**
|
|
4085
4085
|
* <p>The date and time the specified transcription job finished processing.</p>
|
|
4086
4086
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -4088,12 +4088,12 @@ export interface TranscriptionJobSummary {
|
|
|
4088
4088
|
* that started processing at 12:33 PM UTC-7 on May 4, 2022.</p>
|
|
4089
4089
|
* @public
|
|
4090
4090
|
*/
|
|
4091
|
-
CompletionTime?: Date;
|
|
4091
|
+
CompletionTime?: Date | undefined;
|
|
4092
4092
|
/**
|
|
4093
4093
|
* <p>The language code used to create your transcription.</p>
|
|
4094
4094
|
* @public
|
|
4095
4095
|
*/
|
|
4096
|
-
LanguageCode?: LanguageCode;
|
|
4096
|
+
LanguageCode?: LanguageCode | undefined;
|
|
4097
4097
|
/**
|
|
4098
4098
|
* <p>Provides the status of your transcription job.</p>
|
|
4099
4099
|
* <p>If the status is <code>COMPLETED</code>, the job is finished and you can find the
|
|
@@ -4103,14 +4103,14 @@ export interface TranscriptionJobSummary {
|
|
|
4103
4103
|
* your transcription job failed.</p>
|
|
4104
4104
|
* @public
|
|
4105
4105
|
*/
|
|
4106
|
-
TranscriptionJobStatus?: TranscriptionJobStatus;
|
|
4106
|
+
TranscriptionJobStatus?: TranscriptionJobStatus | undefined;
|
|
4107
4107
|
/**
|
|
4108
4108
|
* <p>If <code>TranscriptionJobStatus</code> is <code>FAILED</code>,
|
|
4109
4109
|
* <code>FailureReason</code> contains information about why the transcription job
|
|
4110
4110
|
* failed. See also: <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/CommonErrors.html">Common Errors</a>.</p>
|
|
4111
4111
|
* @public
|
|
4112
4112
|
*/
|
|
4113
|
-
FailureReason?: string;
|
|
4113
|
+
FailureReason?: string | undefined;
|
|
4114
4114
|
/**
|
|
4115
4115
|
* <p>Indicates where the specified transcription output is stored.</p>
|
|
4116
4116
|
* <p>If the value is <code>CUSTOMER_BUCKET</code>, the location is the Amazon S3
|
|
@@ -4122,12 +4122,12 @@ export interface TranscriptionJobSummary {
|
|
|
4122
4122
|
* <code>RedactedTranscriptFileUri</code> field.</p>
|
|
4123
4123
|
* @public
|
|
4124
4124
|
*/
|
|
4125
|
-
OutputLocationType?: OutputLocationType;
|
|
4125
|
+
OutputLocationType?: OutputLocationType | undefined;
|
|
4126
4126
|
/**
|
|
4127
4127
|
* <p>The content redaction settings of the transcription job.</p>
|
|
4128
4128
|
* @public
|
|
4129
4129
|
*/
|
|
4130
|
-
ContentRedaction?: ContentRedaction;
|
|
4130
|
+
ContentRedaction?: ContentRedaction | undefined;
|
|
4131
4131
|
/**
|
|
4132
4132
|
* <p>Provides the name of the custom language model that was included in the specified
|
|
4133
4133
|
* transcription job.</p>
|
|
@@ -4138,19 +4138,19 @@ export interface TranscriptionJobSummary {
|
|
|
4138
4138
|
* <code>LanguageModelName</code> sub-parameter.</p>
|
|
4139
4139
|
* @public
|
|
4140
4140
|
*/
|
|
4141
|
-
ModelSettings?: ModelSettings;
|
|
4141
|
+
ModelSettings?: ModelSettings | undefined;
|
|
4142
4142
|
/**
|
|
4143
4143
|
* <p>Indicates whether automatic language identification was enabled (<code>TRUE</code>)
|
|
4144
4144
|
* for the specified transcription job.</p>
|
|
4145
4145
|
* @public
|
|
4146
4146
|
*/
|
|
4147
|
-
IdentifyLanguage?: boolean;
|
|
4147
|
+
IdentifyLanguage?: boolean | undefined;
|
|
4148
4148
|
/**
|
|
4149
4149
|
* <p>Indicates whether automatic multi-language identification was enabled
|
|
4150
4150
|
* (<code>TRUE</code>) for the specified transcription job.</p>
|
|
4151
4151
|
* @public
|
|
4152
4152
|
*/
|
|
4153
|
-
IdentifyMultipleLanguages?: boolean;
|
|
4153
|
+
IdentifyMultipleLanguages?: boolean | undefined;
|
|
4154
4154
|
/**
|
|
4155
4155
|
* <p>The confidence score associated with the language identified in your media
|
|
4156
4156
|
* file.</p>
|
|
@@ -4159,20 +4159,20 @@ export interface TranscriptionJobSummary {
|
|
|
4159
4159
|
* media.</p>
|
|
4160
4160
|
* @public
|
|
4161
4161
|
*/
|
|
4162
|
-
IdentifiedLanguageScore?: number;
|
|
4162
|
+
IdentifiedLanguageScore?: number | undefined;
|
|
4163
4163
|
/**
|
|
4164
4164
|
* <p>The language codes used to create your transcription job. This parameter is used with
|
|
4165
4165
|
* multi-language identification. For single-language identification, the singular version
|
|
4166
4166
|
* of this parameter, <code>LanguageCode</code>, is present.</p>
|
|
4167
4167
|
* @public
|
|
4168
4168
|
*/
|
|
4169
|
-
LanguageCodes?: LanguageCodeItem[];
|
|
4169
|
+
LanguageCodes?: LanguageCodeItem[] | undefined;
|
|
4170
4170
|
/**
|
|
4171
4171
|
* <p>Indicates whether toxicity detection was enabled for the specified transcription
|
|
4172
4172
|
* job.</p>
|
|
4173
4173
|
* @public
|
|
4174
4174
|
*/
|
|
4175
|
-
ToxicityDetection?: ToxicityDetectionSettings[];
|
|
4175
|
+
ToxicityDetection?: ToxicityDetectionSettings[] | undefined;
|
|
4176
4176
|
}
|
|
4177
4177
|
/**
|
|
4178
4178
|
* @public
|
|
@@ -4183,7 +4183,7 @@ export interface ListTranscriptionJobsResponse {
|
|
|
4183
4183
|
* ordered by creation date, with the newest job first.</p>
|
|
4184
4184
|
* @public
|
|
4185
4185
|
*/
|
|
4186
|
-
Status?: TranscriptionJobStatus;
|
|
4186
|
+
Status?: TranscriptionJobStatus | undefined;
|
|
4187
4187
|
/**
|
|
4188
4188
|
* <p>If <code>NextToken</code> is present in your response, it indicates that not all
|
|
4189
4189
|
* results are displayed. To view the next set of results, copy the string associated with
|
|
@@ -4192,12 +4192,12 @@ export interface ListTranscriptionJobsResponse {
|
|
|
4192
4192
|
* to view all your results.</p>
|
|
4193
4193
|
* @public
|
|
4194
4194
|
*/
|
|
4195
|
-
NextToken?: string;
|
|
4195
|
+
NextToken?: string | undefined;
|
|
4196
4196
|
/**
|
|
4197
4197
|
* <p>Provides a summary of information about each result.</p>
|
|
4198
4198
|
* @public
|
|
4199
4199
|
*/
|
|
4200
|
-
TranscriptionJobSummaries?: TranscriptionJobSummary[];
|
|
4200
|
+
TranscriptionJobSummaries?: TranscriptionJobSummary[] | undefined;
|
|
4201
4201
|
}
|
|
4202
4202
|
/**
|
|
4203
4203
|
* @public
|
|
@@ -4211,27 +4211,27 @@ export interface ListVocabulariesRequest {
|
|
|
4211
4211
|
* to view all your results.</p>
|
|
4212
4212
|
* @public
|
|
4213
4213
|
*/
|
|
4214
|
-
NextToken?: string;
|
|
4214
|
+
NextToken?: string | undefined;
|
|
4215
4215
|
/**
|
|
4216
4216
|
* <p>The maximum number of custom vocabularies to return in each page of results. If there
|
|
4217
4217
|
* are fewer results than the value that you specify, only the actual results are returned.
|
|
4218
4218
|
* If you do not specify a value, a default of 5 is used.</p>
|
|
4219
4219
|
* @public
|
|
4220
4220
|
*/
|
|
4221
|
-
MaxResults?: number;
|
|
4221
|
+
MaxResults?: number | undefined;
|
|
4222
4222
|
/**
|
|
4223
4223
|
* <p>Returns only custom vocabularies with the specified state. Vocabularies are ordered by
|
|
4224
4224
|
* creation date, with the newest vocabulary first. If you do not include
|
|
4225
4225
|
* <code>StateEquals</code>, all custom medical vocabularies are returned.</p>
|
|
4226
4226
|
* @public
|
|
4227
4227
|
*/
|
|
4228
|
-
StateEquals?: VocabularyState;
|
|
4228
|
+
StateEquals?: VocabularyState | undefined;
|
|
4229
4229
|
/**
|
|
4230
4230
|
* <p>Returns only the custom vocabularies that contain the specified string. The search is
|
|
4231
4231
|
* not case sensitive.</p>
|
|
4232
4232
|
* @public
|
|
4233
4233
|
*/
|
|
4234
|
-
NameContains?: string;
|
|
4234
|
+
NameContains?: string | undefined;
|
|
4235
4235
|
}
|
|
4236
4236
|
/**
|
|
4237
4237
|
* @public
|
|
@@ -4242,7 +4242,7 @@ export interface ListVocabulariesResponse {
|
|
|
4242
4242
|
* Vocabularies are ordered by creation date, with the newest vocabulary first.</p>
|
|
4243
4243
|
* @public
|
|
4244
4244
|
*/
|
|
4245
|
-
Status?: VocabularyState;
|
|
4245
|
+
Status?: VocabularyState | undefined;
|
|
4246
4246
|
/**
|
|
4247
4247
|
* <p>If <code>NextToken</code> is present in your response, it indicates that not all
|
|
4248
4248
|
* results are displayed. To view the next set of results, copy the string associated with
|
|
@@ -4251,13 +4251,13 @@ export interface ListVocabulariesResponse {
|
|
|
4251
4251
|
* to view all your results.</p>
|
|
4252
4252
|
* @public
|
|
4253
4253
|
*/
|
|
4254
|
-
NextToken?: string;
|
|
4254
|
+
NextToken?: string | undefined;
|
|
4255
4255
|
/**
|
|
4256
4256
|
* <p>Provides information about the custom vocabularies that match the criteria specified
|
|
4257
4257
|
* in your request.</p>
|
|
4258
4258
|
* @public
|
|
4259
4259
|
*/
|
|
4260
|
-
Vocabularies?: VocabularyInfo[];
|
|
4260
|
+
Vocabularies?: VocabularyInfo[] | undefined;
|
|
4261
4261
|
}
|
|
4262
4262
|
/**
|
|
4263
4263
|
* @public
|
|
@@ -4271,20 +4271,20 @@ export interface ListVocabularyFiltersRequest {
|
|
|
4271
4271
|
* to view all your results.</p>
|
|
4272
4272
|
* @public
|
|
4273
4273
|
*/
|
|
4274
|
-
NextToken?: string;
|
|
4274
|
+
NextToken?: string | undefined;
|
|
4275
4275
|
/**
|
|
4276
4276
|
* <p>The maximum number of custom vocabulary filters to return in each page of results. If
|
|
4277
4277
|
* there are fewer results than the value that you specify, only the actual results are
|
|
4278
4278
|
* returned. If you do not specify a value, a default of 5 is used.</p>
|
|
4279
4279
|
* @public
|
|
4280
4280
|
*/
|
|
4281
|
-
MaxResults?: number;
|
|
4281
|
+
MaxResults?: number | undefined;
|
|
4282
4282
|
/**
|
|
4283
4283
|
* <p>Returns only the custom vocabulary filters that contain the specified string. The
|
|
4284
4284
|
* search is not case sensitive.</p>
|
|
4285
4285
|
* @public
|
|
4286
4286
|
*/
|
|
4287
|
-
NameContains?: string;
|
|
4287
|
+
NameContains?: string | undefined;
|
|
4288
4288
|
}
|
|
4289
4289
|
/**
|
|
4290
4290
|
* <p>Provides information about a custom vocabulary filter, including the language of the
|
|
@@ -4297,7 +4297,7 @@ export interface VocabularyFilterInfo {
|
|
|
4297
4297
|
* sensitive, cannot contain spaces, and must be unique within an Amazon Web Services account.</p>
|
|
4298
4298
|
* @public
|
|
4299
4299
|
*/
|
|
4300
|
-
VocabularyFilterName?: string;
|
|
4300
|
+
VocabularyFilterName?: string | undefined;
|
|
4301
4301
|
/**
|
|
4302
4302
|
* <p>The language code that represents the language of the entries in your vocabulary
|
|
4303
4303
|
* filter. Each custom vocabulary filter must contain terms in only one language.</p>
|
|
@@ -4309,7 +4309,7 @@ export interface VocabularyFilterInfo {
|
|
|
4309
4309
|
* <a href="https://docs.aws.amazon.com/transcribe/latest/dg/supported-languages.html">Supported languages</a> table.</p>
|
|
4310
4310
|
* @public
|
|
4311
4311
|
*/
|
|
4312
|
-
LanguageCode?: LanguageCode;
|
|
4312
|
+
LanguageCode?: LanguageCode | undefined;
|
|
4313
4313
|
/**
|
|
4314
4314
|
* <p>The date and time the specified custom vocabulary filter was last modified.</p>
|
|
4315
4315
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -4317,7 +4317,7 @@ export interface VocabularyFilterInfo {
|
|
|
4317
4317
|
* 4, 2022.</p>
|
|
4318
4318
|
* @public
|
|
4319
4319
|
*/
|
|
4320
|
-
LastModifiedTime?: Date;
|
|
4320
|
+
LastModifiedTime?: Date | undefined;
|
|
4321
4321
|
}
|
|
4322
4322
|
/**
|
|
4323
4323
|
* @public
|
|
@@ -4331,13 +4331,13 @@ export interface ListVocabularyFiltersResponse {
|
|
|
4331
4331
|
* to view all your results.</p>
|
|
4332
4332
|
* @public
|
|
4333
4333
|
*/
|
|
4334
|
-
NextToken?: string;
|
|
4334
|
+
NextToken?: string | undefined;
|
|
4335
4335
|
/**
|
|
4336
4336
|
* <p>Provides information about the custom vocabulary filters that match the criteria
|
|
4337
4337
|
* specified in your request.</p>
|
|
4338
4338
|
* @public
|
|
4339
4339
|
*/
|
|
4340
|
-
VocabularyFilters?: VocabularyFilterInfo[];
|
|
4340
|
+
VocabularyFilters?: VocabularyFilterInfo[] | undefined;
|
|
4341
4341
|
}
|
|
4342
4342
|
/**
|
|
4343
4343
|
* @public
|
|
@@ -4382,7 +4382,7 @@ export interface StartCallAnalyticsJobRequest {
|
|
|
4382
4382
|
* transcript.</p>
|
|
4383
4383
|
* @public
|
|
4384
4384
|
*/
|
|
4385
|
-
OutputLocation?: string;
|
|
4385
|
+
OutputLocation?: string | undefined;
|
|
4386
4386
|
/**
|
|
4387
4387
|
* <p>The KMS key you want to use to encrypt your Call Analytics
|
|
4388
4388
|
* output.</p>
|
|
@@ -4429,7 +4429,7 @@ export interface StartCallAnalyticsJobRequest {
|
|
|
4429
4429
|
* have permission to use the specified KMS key.</p>
|
|
4430
4430
|
* @public
|
|
4431
4431
|
*/
|
|
4432
|
-
OutputEncryptionKMSKeyId?: string;
|
|
4432
|
+
OutputEncryptionKMSKeyId?: string | undefined;
|
|
4433
4433
|
/**
|
|
4434
4434
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permissions to
|
|
4435
4435
|
* access the Amazon S3 bucket that contains your input files. If the role that you
|
|
@@ -4441,13 +4441,13 @@ export interface StartCallAnalyticsJobRequest {
|
|
|
4441
4441
|
* ARNs</a>.</p>
|
|
4442
4442
|
* @public
|
|
4443
4443
|
*/
|
|
4444
|
-
DataAccessRoleArn?: string;
|
|
4444
|
+
DataAccessRoleArn?: string | undefined;
|
|
4445
4445
|
/**
|
|
4446
4446
|
* <p>Specify additional optional settings in your request, including content redaction; allows you to apply custom language models,
|
|
4447
4447
|
* vocabulary filters, and custom vocabularies to your Call Analytics job.</p>
|
|
4448
4448
|
* @public
|
|
4449
4449
|
*/
|
|
4450
|
-
Settings?: CallAnalyticsJobSettings;
|
|
4450
|
+
Settings?: CallAnalyticsJobSettings | undefined;
|
|
4451
4451
|
/**
|
|
4452
4452
|
* <p>Makes it possible to specify which speaker is on which channel. For example, if your
|
|
4453
4453
|
* agent is the first participant to speak, you would set <code>ChannelId</code> to
|
|
@@ -4455,7 +4455,7 @@ export interface StartCallAnalyticsJobRequest {
|
|
|
4455
4455
|
* <code>AGENT</code> (to indicate that it's the agent speaking).</p>
|
|
4456
4456
|
* @public
|
|
4457
4457
|
*/
|
|
4458
|
-
ChannelDefinitions?: ChannelDefinition[];
|
|
4458
|
+
ChannelDefinitions?: ChannelDefinition[] | undefined;
|
|
4459
4459
|
}
|
|
4460
4460
|
/**
|
|
4461
4461
|
* @public
|
|
@@ -4466,7 +4466,7 @@ export interface StartCallAnalyticsJobResponse {
|
|
|
4466
4466
|
* status and, if applicable, failure reason.</p>
|
|
4467
4467
|
* @public
|
|
4468
4468
|
*/
|
|
4469
|
-
CallAnalyticsJob?: CallAnalyticsJob;
|
|
4469
|
+
CallAnalyticsJob?: CallAnalyticsJob | undefined;
|
|
4470
4470
|
}
|
|
4471
4471
|
/**
|
|
4472
4472
|
* @public
|
|
@@ -4543,13 +4543,13 @@ export interface StartMedicalScribeJobRequest {
|
|
|
4543
4543
|
* must have permission to use the specified KMS key.</p>
|
|
4544
4544
|
* @public
|
|
4545
4545
|
*/
|
|
4546
|
-
OutputEncryptionKMSKeyId?: string;
|
|
4546
|
+
OutputEncryptionKMSKeyId?: string | undefined;
|
|
4547
4547
|
/**
|
|
4548
4548
|
* <p>A map of plain text, non-secret key:value pairs, known as encryption context pairs,
|
|
4549
4549
|
* that provide an added layer of security for your data. For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/key-management.html#kms-context">KMS encryption context</a> and <a href="https://docs.aws.amazon.com/transcribe/latest/dg/symmetric-asymmetric.html">Asymmetric keys in KMS</a>.</p>
|
|
4550
4550
|
* @public
|
|
4551
4551
|
*/
|
|
4552
|
-
KMSEncryptionContext?: Record<string, string
|
|
4552
|
+
KMSEncryptionContext?: Record<string, string> | undefined;
|
|
4553
4553
|
/**
|
|
4554
4554
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permissions to
|
|
4555
4555
|
* access the Amazon S3 bucket that contains your input files,
|
|
@@ -4586,14 +4586,14 @@ export interface StartMedicalScribeJobRequest {
|
|
|
4586
4586
|
* </p>
|
|
4587
4587
|
* @public
|
|
4588
4588
|
*/
|
|
4589
|
-
ChannelDefinitions?: MedicalScribeChannelDefinition[];
|
|
4589
|
+
ChannelDefinitions?: MedicalScribeChannelDefinition[] | undefined;
|
|
4590
4590
|
/**
|
|
4591
4591
|
* <p>Adds one or more custom tags, each in the form of a key:value pair, to the Medica Scribe job.</p>
|
|
4592
4592
|
* <p>To learn more about using tags with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tagging.html">Tagging
|
|
4593
4593
|
* resources</a>.</p>
|
|
4594
4594
|
* @public
|
|
4595
4595
|
*/
|
|
4596
|
-
Tags?: Tag[];
|
|
4596
|
+
Tags?: Tag[] | undefined;
|
|
4597
4597
|
}
|
|
4598
4598
|
/**
|
|
4599
4599
|
* @public
|
|
@@ -4604,7 +4604,7 @@ export interface StartMedicalScribeJobResponse {
|
|
|
4604
4604
|
* job status and, if applicable, failure reason.</p>
|
|
4605
4605
|
* @public
|
|
4606
4606
|
*/
|
|
4607
|
-
MedicalScribeJob?: MedicalScribeJob;
|
|
4607
|
+
MedicalScribeJob?: MedicalScribeJob | undefined;
|
|
4608
4608
|
}
|
|
4609
4609
|
/**
|
|
4610
4610
|
* @public
|
|
@@ -4638,12 +4638,12 @@ export interface StartMedicalTranscriptionJobRequest {
|
|
|
4638
4638
|
* sample rate.</p>
|
|
4639
4639
|
* @public
|
|
4640
4640
|
*/
|
|
4641
|
-
MediaSampleRateHertz?: number;
|
|
4641
|
+
MediaSampleRateHertz?: number | undefined;
|
|
4642
4642
|
/**
|
|
4643
4643
|
* <p>Specify the format of your input media file.</p>
|
|
4644
4644
|
* @public
|
|
4645
4645
|
*/
|
|
4646
|
-
MediaFormat?: MediaFormat;
|
|
4646
|
+
MediaFormat?: MediaFormat | undefined;
|
|
4647
4647
|
/**
|
|
4648
4648
|
* <p>Describes the Amazon S3 location of the media file you want to use in your
|
|
4649
4649
|
* request.</p>
|
|
@@ -4707,7 +4707,7 @@ export interface StartMedicalTranscriptionJobRequest {
|
|
|
4707
4707
|
* one is created for you.</p>
|
|
4708
4708
|
* @public
|
|
4709
4709
|
*/
|
|
4710
|
-
OutputKey?: string;
|
|
4710
|
+
OutputKey?: string | undefined;
|
|
4711
4711
|
/**
|
|
4712
4712
|
* <p>The KMS key you want to use to encrypt your medical transcription
|
|
4713
4713
|
* output.</p>
|
|
@@ -4754,26 +4754,26 @@ export interface StartMedicalTranscriptionJobRequest {
|
|
|
4754
4754
|
* have permission to use the specified KMS key.</p>
|
|
4755
4755
|
* @public
|
|
4756
4756
|
*/
|
|
4757
|
-
OutputEncryptionKMSKeyId?: string;
|
|
4757
|
+
OutputEncryptionKMSKeyId?: string | undefined;
|
|
4758
4758
|
/**
|
|
4759
4759
|
* <p>A map of plain text, non-secret key:value pairs, known as encryption context pairs,
|
|
4760
4760
|
* that provide an added layer of security for your data. For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/key-management.html#kms-context">KMS encryption context</a> and <a href="https://docs.aws.amazon.com/transcribe/latest/dg/symmetric-asymmetric.html">Asymmetric keys in KMS</a>.</p>
|
|
4761
4761
|
* @public
|
|
4762
4762
|
*/
|
|
4763
|
-
KMSEncryptionContext?: Record<string, string
|
|
4763
|
+
KMSEncryptionContext?: Record<string, string> | undefined;
|
|
4764
4764
|
/**
|
|
4765
4765
|
* <p>Specify additional optional settings in your request, including channel
|
|
4766
4766
|
* identification, alternative transcriptions, and speaker partitioning. You can use that to
|
|
4767
4767
|
* apply custom vocabularies to your transcription job.</p>
|
|
4768
4768
|
* @public
|
|
4769
4769
|
*/
|
|
4770
|
-
Settings?: MedicalTranscriptionSetting;
|
|
4770
|
+
Settings?: MedicalTranscriptionSetting | undefined;
|
|
4771
4771
|
/**
|
|
4772
4772
|
* <p>Labels all personal health information (PHI) identified in your transcript. For more
|
|
4773
4773
|
* information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/phi-id.html">Identifying personal health information (PHI) in a transcription</a>.</p>
|
|
4774
4774
|
* @public
|
|
4775
4775
|
*/
|
|
4776
|
-
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
4776
|
+
ContentIdentificationType?: MedicalContentIdentificationType | undefined;
|
|
4777
4777
|
/**
|
|
4778
4778
|
* <p>Specify the predominant medical specialty represented in your media. For batch
|
|
4779
4779
|
* transcriptions, <code>PRIMARYCARE</code> is the only valid value. If you require
|
|
@@ -4797,7 +4797,7 @@ export interface StartMedicalTranscriptionJobRequest {
|
|
|
4797
4797
|
* resources</a>.</p>
|
|
4798
4798
|
* @public
|
|
4799
4799
|
*/
|
|
4800
|
-
Tags?: Tag[];
|
|
4800
|
+
Tags?: Tag[] | undefined;
|
|
4801
4801
|
}
|
|
4802
4802
|
/**
|
|
4803
4803
|
* @public
|
|
@@ -4808,7 +4808,7 @@ export interface StartMedicalTranscriptionJobResponse {
|
|
|
4808
4808
|
* job status and, if applicable, failure reason.</p>
|
|
4809
4809
|
* @public
|
|
4810
4810
|
*/
|
|
4811
|
-
MedicalTranscriptionJob?: MedicalTranscriptionJob;
|
|
4811
|
+
MedicalTranscriptionJob?: MedicalTranscriptionJob | undefined;
|
|
4812
4812
|
}
|
|
4813
4813
|
/**
|
|
4814
4814
|
* <p>Generate subtitles for your media file with your transcription request.</p>
|
|
@@ -4825,7 +4825,7 @@ export interface Subtitles {
|
|
|
4825
4825
|
* generated.</p>
|
|
4826
4826
|
* @public
|
|
4827
4827
|
*/
|
|
4828
|
-
Formats?: SubtitleFormat[];
|
|
4828
|
+
Formats?: SubtitleFormat[] | undefined;
|
|
4829
4829
|
/**
|
|
4830
4830
|
* <p>Specify the starting value that is assigned to the first subtitle segment.</p>
|
|
4831
4831
|
* <p>The default start index for Amazon Transcribe is <code>0</code>, which differs from
|
|
@@ -4834,7 +4834,7 @@ export interface Subtitles {
|
|
|
4834
4834
|
* services.</p>
|
|
4835
4835
|
* @public
|
|
4836
4836
|
*/
|
|
4837
|
-
OutputStartIndex?: number;
|
|
4837
|
+
OutputStartIndex?: number | undefined;
|
|
4838
4838
|
}
|
|
4839
4839
|
/**
|
|
4840
4840
|
* @public
|
|
@@ -4868,7 +4868,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
4868
4868
|
* </note>
|
|
4869
4869
|
* @public
|
|
4870
4870
|
*/
|
|
4871
|
-
LanguageCode?: LanguageCode;
|
|
4871
|
+
LanguageCode?: LanguageCode | undefined;
|
|
4872
4872
|
/**
|
|
4873
4873
|
* <p>The sample rate, in hertz, of the audio track in your input media file.</p>
|
|
4874
4874
|
* <p>If you do not specify the media sample rate, Amazon Transcribe determines it for you.
|
|
@@ -4877,12 +4877,12 @@ export interface StartTranscriptionJobRequest {
|
|
|
4877
4877
|
* job fails. In most cases, you can omit <code>MediaSampleRateHertz</code> and let Amazon Transcribe determine the sample rate.</p>
|
|
4878
4878
|
* @public
|
|
4879
4879
|
*/
|
|
4880
|
-
MediaSampleRateHertz?: number;
|
|
4880
|
+
MediaSampleRateHertz?: number | undefined;
|
|
4881
4881
|
/**
|
|
4882
4882
|
* <p>Specify the format of your input media file.</p>
|
|
4883
4883
|
* @public
|
|
4884
4884
|
*/
|
|
4885
|
-
MediaFormat?: MediaFormat;
|
|
4885
|
+
MediaFormat?: MediaFormat | undefined;
|
|
4886
4886
|
/**
|
|
4887
4887
|
* <p>Describes the Amazon S3 location of the media file you want to use in your
|
|
4888
4888
|
* request.</p>
|
|
@@ -4907,7 +4907,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
4907
4907
|
* transcript.</p>
|
|
4908
4908
|
* @public
|
|
4909
4909
|
*/
|
|
4910
|
-
OutputBucketName?: string;
|
|
4910
|
+
OutputBucketName?: string | undefined;
|
|
4911
4911
|
/**
|
|
4912
4912
|
* <p>Use in combination with <code>OutputBucketName</code> to specify the output location
|
|
4913
4913
|
* of your transcript and, optionally, a unique name for your output file. The default name
|
|
@@ -4945,7 +4945,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
4945
4945
|
* one is created for you.</p>
|
|
4946
4946
|
* @public
|
|
4947
4947
|
*/
|
|
4948
|
-
OutputKey?: string;
|
|
4948
|
+
OutputKey?: string | undefined;
|
|
4949
4949
|
/**
|
|
4950
4950
|
* <p>The KMS key you want to use to encrypt your transcription
|
|
4951
4951
|
* output.</p>
|
|
@@ -4992,13 +4992,13 @@ export interface StartTranscriptionJobRequest {
|
|
|
4992
4992
|
* have permission to use the specified KMS key.</p>
|
|
4993
4993
|
* @public
|
|
4994
4994
|
*/
|
|
4995
|
-
OutputEncryptionKMSKeyId?: string;
|
|
4995
|
+
OutputEncryptionKMSKeyId?: string | undefined;
|
|
4996
4996
|
/**
|
|
4997
4997
|
* <p>A map of plain text, non-secret key:value pairs, known as encryption context pairs,
|
|
4998
4998
|
* that provide an added layer of security for your data. For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/key-management.html#kms-context">KMS encryption context</a> and <a href="https://docs.aws.amazon.com/transcribe/latest/dg/symmetric-asymmetric.html">Asymmetric keys in KMS</a>.</p>
|
|
4999
4999
|
* @public
|
|
5000
5000
|
*/
|
|
5001
|
-
KMSEncryptionContext?: Record<string, string
|
|
5001
|
+
KMSEncryptionContext?: Record<string, string> | undefined;
|
|
5002
5002
|
/**
|
|
5003
5003
|
* <p>Specify additional optional settings in your
|
|
5004
5004
|
* request, including channel identification, alternative transcriptions, speaker
|
|
@@ -5014,7 +5014,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
5014
5014
|
* <code>VocabularyFilterName</code> sub-parameters.</p>
|
|
5015
5015
|
* @public
|
|
5016
5016
|
*/
|
|
5017
|
-
Settings?: Settings;
|
|
5017
|
+
Settings?: Settings | undefined;
|
|
5018
5018
|
/**
|
|
5019
5019
|
* <p>Specify the custom language model you want to include with your transcription job. If
|
|
5020
5020
|
* you include <code>ModelSettings</code> in your request, you must include the
|
|
@@ -5023,7 +5023,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
5023
5023
|
* models</a>.</p>
|
|
5024
5024
|
* @public
|
|
5025
5025
|
*/
|
|
5026
|
-
ModelSettings?: ModelSettings;
|
|
5026
|
+
ModelSettings?: ModelSettings | undefined;
|
|
5027
5027
|
/**
|
|
5028
5028
|
* <p>Makes it possible to control how your transcription job is processed. Currently, the
|
|
5029
5029
|
* only <code>JobExecutionSettings</code> modification you can choose is enabling job
|
|
@@ -5033,7 +5033,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
5033
5033
|
* <code>DataAccessRoleArn</code>.</p>
|
|
5034
5034
|
* @public
|
|
5035
5035
|
*/
|
|
5036
|
-
JobExecutionSettings?: JobExecutionSettings;
|
|
5036
|
+
JobExecutionSettings?: JobExecutionSettings | undefined;
|
|
5037
5037
|
/**
|
|
5038
5038
|
* <p>Makes it possible to redact or flag specified personally identifiable information (PII) in
|
|
5039
5039
|
* your transcript. If you use <code>ContentRedaction</code>, you must also include the
|
|
@@ -5042,7 +5042,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
5042
5042
|
* If you do not include <code>PiiEntityTypes</code> in your request, all PII is redacted.</p>
|
|
5043
5043
|
* @public
|
|
5044
5044
|
*/
|
|
5045
|
-
ContentRedaction?: ContentRedaction;
|
|
5045
|
+
ContentRedaction?: ContentRedaction | undefined;
|
|
5046
5046
|
/**
|
|
5047
5047
|
* <p>Enables automatic language identification in your transcription job request. Use this
|
|
5048
5048
|
* parameter if your media file contains only one language. If your media contains multiple
|
|
@@ -5064,7 +5064,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
5064
5064
|
* fails.</p>
|
|
5065
5065
|
* @public
|
|
5066
5066
|
*/
|
|
5067
|
-
IdentifyLanguage?: boolean;
|
|
5067
|
+
IdentifyLanguage?: boolean | undefined;
|
|
5068
5068
|
/**
|
|
5069
5069
|
* <p>Enables automatic multi-language identification in your transcription job request. Use
|
|
5070
5070
|
* this parameter if your media file contains more than one language. If your media
|
|
@@ -5085,7 +5085,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
5085
5085
|
* fails.</p>
|
|
5086
5086
|
* @public
|
|
5087
5087
|
*/
|
|
5088
|
-
IdentifyMultipleLanguages?: boolean;
|
|
5088
|
+
IdentifyMultipleLanguages?: boolean | undefined;
|
|
5089
5089
|
/**
|
|
5090
5090
|
* <p>You can specify two or more language codes that represent the languages you think may
|
|
5091
5091
|
* be present in your media. Including more than five is not recommended. If you're unsure
|
|
@@ -5098,13 +5098,13 @@ export interface StartTranscriptionJobRequest {
|
|
|
5098
5098
|
* must be encoded at a sample rate of 16,000 Hz or higher.</p>
|
|
5099
5099
|
* @public
|
|
5100
5100
|
*/
|
|
5101
|
-
LanguageOptions?: LanguageCode[];
|
|
5101
|
+
LanguageOptions?: LanguageCode[] | undefined;
|
|
5102
5102
|
/**
|
|
5103
5103
|
* <p>Produces subtitle files for your input media. You can specify WebVTT (*.vtt) and
|
|
5104
5104
|
* SubRip (*.srt) formats.</p>
|
|
5105
5105
|
* @public
|
|
5106
5106
|
*/
|
|
5107
|
-
Subtitles?: Subtitles;
|
|
5107
|
+
Subtitles?: Subtitles | undefined;
|
|
5108
5108
|
/**
|
|
5109
5109
|
* <p>Adds one or more custom tags, each in the form of a key:value pair, to a new
|
|
5110
5110
|
* transcription job at the time you start this new job.</p>
|
|
@@ -5112,7 +5112,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
5112
5112
|
* resources</a>.</p>
|
|
5113
5113
|
* @public
|
|
5114
5114
|
*/
|
|
5115
|
-
Tags?: Tag[];
|
|
5115
|
+
Tags?: Tag[] | undefined;
|
|
5116
5116
|
/**
|
|
5117
5117
|
* <p>If using automatic language identification in your request and you want to apply a
|
|
5118
5118
|
* custom language model, a custom vocabulary, or a custom vocabulary filter, include
|
|
@@ -5144,7 +5144,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
5144
5144
|
* sub-parameter.</p>
|
|
5145
5145
|
* @public
|
|
5146
5146
|
*/
|
|
5147
|
-
LanguageIdSettings?: Partial<Record<LanguageCode, LanguageIdSettings
|
|
5147
|
+
LanguageIdSettings?: Partial<Record<LanguageCode, LanguageIdSettings>> | undefined;
|
|
5148
5148
|
/**
|
|
5149
5149
|
* <p>Enables toxic speech detection in your transcript. If you include
|
|
5150
5150
|
* <code>ToxicityDetection</code> in your request, you must also include
|
|
@@ -5154,7 +5154,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
5154
5154
|
* speech</a>.</p>
|
|
5155
5155
|
* @public
|
|
5156
5156
|
*/
|
|
5157
|
-
ToxicityDetection?: ToxicityDetectionSettings[];
|
|
5157
|
+
ToxicityDetection?: ToxicityDetectionSettings[] | undefined;
|
|
5158
5158
|
}
|
|
5159
5159
|
/**
|
|
5160
5160
|
* @public
|
|
@@ -5165,7 +5165,7 @@ export interface StartTranscriptionJobResponse {
|
|
|
5165
5165
|
* status and, if applicable, failure reason.</p>
|
|
5166
5166
|
* @public
|
|
5167
5167
|
*/
|
|
5168
|
-
TranscriptionJob?: TranscriptionJob;
|
|
5168
|
+
TranscriptionJob?: TranscriptionJob | undefined;
|
|
5169
5169
|
}
|
|
5170
5170
|
/**
|
|
5171
5171
|
* @public
|
|
@@ -5248,7 +5248,7 @@ export interface UpdateCallAnalyticsCategoryRequest {
|
|
|
5248
5248
|
* use <code>POST_CALL</code> as the input type when updating this category.</p>
|
|
5249
5249
|
* @public
|
|
5250
5250
|
*/
|
|
5251
|
-
InputType?: InputType;
|
|
5251
|
+
InputType?: InputType | undefined;
|
|
5252
5252
|
}
|
|
5253
5253
|
/**
|
|
5254
5254
|
* @public
|
|
@@ -5259,7 +5259,7 @@ export interface UpdateCallAnalyticsCategoryResponse {
|
|
|
5259
5259
|
* <code>UpdateCallAnalyticsCategory</code> request.</p>
|
|
5260
5260
|
* @public
|
|
5261
5261
|
*/
|
|
5262
|
-
CategoryProperties?: CategoryProperties;
|
|
5262
|
+
CategoryProperties?: CategoryProperties | undefined;
|
|
5263
5263
|
}
|
|
5264
5264
|
/**
|
|
5265
5265
|
* @public
|
|
@@ -5297,14 +5297,14 @@ export interface UpdateMedicalVocabularyResponse {
|
|
|
5297
5297
|
* <p>The name of the updated custom medical vocabulary.</p>
|
|
5298
5298
|
* @public
|
|
5299
5299
|
*/
|
|
5300
|
-
VocabularyName?: string;
|
|
5300
|
+
VocabularyName?: string | undefined;
|
|
5301
5301
|
/**
|
|
5302
5302
|
* <p>The language code you selected for your custom medical vocabulary. US English
|
|
5303
5303
|
* (<code>en-US</code>) is the only language supported with Amazon Transcribe
|
|
5304
5304
|
* Medical.</p>
|
|
5305
5305
|
* @public
|
|
5306
5306
|
*/
|
|
5307
|
-
LanguageCode?: LanguageCode;
|
|
5307
|
+
LanguageCode?: LanguageCode | undefined;
|
|
5308
5308
|
/**
|
|
5309
5309
|
* <p>The date and time the specified custom medical vocabulary was last updated.</p>
|
|
5310
5310
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -5312,14 +5312,14 @@ export interface UpdateMedicalVocabularyResponse {
|
|
|
5312
5312
|
* 4, 2022.</p>
|
|
5313
5313
|
* @public
|
|
5314
5314
|
*/
|
|
5315
|
-
LastModifiedTime?: Date;
|
|
5315
|
+
LastModifiedTime?: Date | undefined;
|
|
5316
5316
|
/**
|
|
5317
5317
|
* <p>The processing state of your custom medical vocabulary. If the state is
|
|
5318
5318
|
* <code>READY</code>, you can use the custom vocabulary in a
|
|
5319
5319
|
* <code>StartMedicalTranscriptionJob</code> request.</p>
|
|
5320
5320
|
* @public
|
|
5321
5321
|
*/
|
|
5322
|
-
VocabularyState?: VocabularyState;
|
|
5322
|
+
VocabularyState?: VocabularyState | undefined;
|
|
5323
5323
|
}
|
|
5324
5324
|
/**
|
|
5325
5325
|
* @public
|
|
@@ -5358,7 +5358,7 @@ export interface UpdateVocabularyRequest {
|
|
|
5358
5358
|
* Vocabularies</a> to get the character set for your language.</p>
|
|
5359
5359
|
* @public
|
|
5360
5360
|
*/
|
|
5361
|
-
Phrases?: string[];
|
|
5361
|
+
Phrases?: string[] | undefined;
|
|
5362
5362
|
/**
|
|
5363
5363
|
* <p>The Amazon S3 location of the text file that contains your custom vocabulary.
|
|
5364
5364
|
* The URI must be located in the same Amazon Web Services Region as the resource you're
|
|
@@ -5370,7 +5370,7 @@ export interface UpdateVocabularyRequest {
|
|
|
5370
5370
|
* use the <code>Phrases</code> flag; you must choose one or the other.</p>
|
|
5371
5371
|
* @public
|
|
5372
5372
|
*/
|
|
5373
|
-
VocabularyFileUri?: string;
|
|
5373
|
+
VocabularyFileUri?: string | undefined;
|
|
5374
5374
|
/**
|
|
5375
5375
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permissions to
|
|
5376
5376
|
* access the Amazon S3 bucket that contains your input files (in this case, your custom
|
|
@@ -5383,7 +5383,7 @@ export interface UpdateVocabularyRequest {
|
|
|
5383
5383
|
* ARNs</a>.</p>
|
|
5384
5384
|
* @public
|
|
5385
5385
|
*/
|
|
5386
|
-
DataAccessRoleArn?: string;
|
|
5386
|
+
DataAccessRoleArn?: string | undefined;
|
|
5387
5387
|
}
|
|
5388
5388
|
/**
|
|
5389
5389
|
* @public
|
|
@@ -5393,12 +5393,12 @@ export interface UpdateVocabularyResponse {
|
|
|
5393
5393
|
* <p>The name of the updated custom vocabulary.</p>
|
|
5394
5394
|
* @public
|
|
5395
5395
|
*/
|
|
5396
|
-
VocabularyName?: string;
|
|
5396
|
+
VocabularyName?: string | undefined;
|
|
5397
5397
|
/**
|
|
5398
5398
|
* <p>The language code you selected for your custom vocabulary.</p>
|
|
5399
5399
|
* @public
|
|
5400
5400
|
*/
|
|
5401
|
-
LanguageCode?: LanguageCode;
|
|
5401
|
+
LanguageCode?: LanguageCode | undefined;
|
|
5402
5402
|
/**
|
|
5403
5403
|
* <p>The date and time the specified custom vocabulary was last updated.</p>
|
|
5404
5404
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -5406,14 +5406,14 @@ export interface UpdateVocabularyResponse {
|
|
|
5406
5406
|
* 4, 2022.</p>
|
|
5407
5407
|
* @public
|
|
5408
5408
|
*/
|
|
5409
|
-
LastModifiedTime?: Date;
|
|
5409
|
+
LastModifiedTime?: Date | undefined;
|
|
5410
5410
|
/**
|
|
5411
5411
|
* <p>The processing state of your custom vocabulary. If the state is <code>READY</code>,
|
|
5412
5412
|
* you can use the custom vocabulary in a <code>StartTranscriptionJob</code>
|
|
5413
5413
|
* request.</p>
|
|
5414
5414
|
* @public
|
|
5415
5415
|
*/
|
|
5416
|
-
VocabularyState?: VocabularyState;
|
|
5416
|
+
VocabularyState?: VocabularyState | undefined;
|
|
5417
5417
|
}
|
|
5418
5418
|
/**
|
|
5419
5419
|
* @public
|
|
@@ -5439,7 +5439,7 @@ export interface UpdateVocabularyFilterRequest {
|
|
|
5439
5439
|
* Vocabularies</a> to get the character set for your language.</p>
|
|
5440
5440
|
* @public
|
|
5441
5441
|
*/
|
|
5442
|
-
Words?: string[];
|
|
5442
|
+
Words?: string[] | undefined;
|
|
5443
5443
|
/**
|
|
5444
5444
|
* <p>The Amazon S3 location of the text file that contains your custom vocabulary
|
|
5445
5445
|
* filter terms. The URI must be located in the same Amazon Web Services Region as the
|
|
@@ -5451,7 +5451,7 @@ export interface UpdateVocabularyFilterRequest {
|
|
|
5451
5451
|
* cannot use <code>Words</code>; you must choose one or the other.</p>
|
|
5452
5452
|
* @public
|
|
5453
5453
|
*/
|
|
5454
|
-
VocabularyFilterFileUri?: string;
|
|
5454
|
+
VocabularyFilterFileUri?: string | undefined;
|
|
5455
5455
|
/**
|
|
5456
5456
|
* <p>The Amazon Resource Name (ARN) of an IAM role that has permissions to
|
|
5457
5457
|
* access the Amazon S3 bucket that contains your input files (in this case, your custom
|
|
@@ -5464,7 +5464,7 @@ export interface UpdateVocabularyFilterRequest {
|
|
|
5464
5464
|
* ARNs</a>.</p>
|
|
5465
5465
|
* @public
|
|
5466
5466
|
*/
|
|
5467
|
-
DataAccessRoleArn?: string;
|
|
5467
|
+
DataAccessRoleArn?: string | undefined;
|
|
5468
5468
|
}
|
|
5469
5469
|
/**
|
|
5470
5470
|
* @public
|
|
@@ -5474,12 +5474,12 @@ export interface UpdateVocabularyFilterResponse {
|
|
|
5474
5474
|
* <p>The name of the updated custom vocabulary filter.</p>
|
|
5475
5475
|
* @public
|
|
5476
5476
|
*/
|
|
5477
|
-
VocabularyFilterName?: string;
|
|
5477
|
+
VocabularyFilterName?: string | undefined;
|
|
5478
5478
|
/**
|
|
5479
5479
|
* <p>The language code you selected for your custom vocabulary filter.</p>
|
|
5480
5480
|
* @public
|
|
5481
5481
|
*/
|
|
5482
|
-
LanguageCode?: LanguageCode;
|
|
5482
|
+
LanguageCode?: LanguageCode | undefined;
|
|
5483
5483
|
/**
|
|
5484
5484
|
* <p>The date and time the specified custom vocabulary filter was last updated.</p>
|
|
5485
5485
|
* <p>Timestamps are in the format <code>YYYY-MM-DD'T'HH:MM:SS.SSSSSS-UTC</code>. For
|
|
@@ -5487,5 +5487,5 @@ export interface UpdateVocabularyFilterResponse {
|
|
|
5487
5487
|
* 4, 2022.</p>
|
|
5488
5488
|
* @public
|
|
5489
5489
|
*/
|
|
5490
|
-
LastModifiedTime?: Date;
|
|
5490
|
+
LastModifiedTime?: Date | undefined;
|
|
5491
5491
|
}
|