@aws-sdk/client-transcribe-streaming 3.686.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 +180 -180
- package/dist-types/ts3.4/models/models_0.d.ts +184 -180
- package/package.json +10 -10
|
@@ -11,28 +11,28 @@ export interface Entity {
|
|
|
11
11
|
* <p>The start time, in milliseconds, of the utterance that was identified as PII.</p>
|
|
12
12
|
* @public
|
|
13
13
|
*/
|
|
14
|
-
StartTime?: number;
|
|
14
|
+
StartTime?: number | undefined;
|
|
15
15
|
/**
|
|
16
16
|
* <p>The end time, in milliseconds, of the utterance that was identified as PII.</p>
|
|
17
17
|
* @public
|
|
18
18
|
*/
|
|
19
|
-
EndTime?: number;
|
|
19
|
+
EndTime?: number | undefined;
|
|
20
20
|
/**
|
|
21
21
|
* <p>The category of information identified. The only category is <code>PII</code>.</p>
|
|
22
22
|
* @public
|
|
23
23
|
*/
|
|
24
|
-
Category?: string;
|
|
24
|
+
Category?: string | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* <p>The type of PII identified. For example, <code>NAME</code> or
|
|
27
27
|
* <code>CREDIT_DEBIT_NUMBER</code>.</p>
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
Type?: string;
|
|
30
|
+
Type?: string | undefined;
|
|
31
31
|
/**
|
|
32
32
|
* <p>The word or words identified as PII.</p>
|
|
33
33
|
* @public
|
|
34
34
|
*/
|
|
35
|
-
Content?: string;
|
|
35
|
+
Content?: string | undefined;
|
|
36
36
|
/**
|
|
37
37
|
* <p>The confidence score associated with the identified PII entity in your audio.</p>
|
|
38
38
|
* <p>Confidence scores are values between 0 and 1. A larger value indicates a higher
|
|
@@ -40,7 +40,7 @@ export interface Entity {
|
|
|
40
40
|
* media.</p>
|
|
41
41
|
* @public
|
|
42
42
|
*/
|
|
43
|
-
Confidence?: number;
|
|
43
|
+
Confidence?: number | undefined;
|
|
44
44
|
}
|
|
45
45
|
/**
|
|
46
46
|
* @public
|
|
@@ -64,49 +64,49 @@ export interface Item {
|
|
|
64
64
|
* <p>The start time, in milliseconds, of the transcribed item.</p>
|
|
65
65
|
* @public
|
|
66
66
|
*/
|
|
67
|
-
StartTime?: number;
|
|
67
|
+
StartTime?: number | undefined;
|
|
68
68
|
/**
|
|
69
69
|
* <p>The end time, in milliseconds, of the transcribed item.</p>
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
EndTime?: number;
|
|
72
|
+
EndTime?: number | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* <p>The type of item identified. Options are: <code>PRONUNCIATION</code> (spoken words) and
|
|
75
75
|
* <code>PUNCTUATION</code>.</p>
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
|
-
Type?: ItemType;
|
|
78
|
+
Type?: ItemType | undefined;
|
|
79
79
|
/**
|
|
80
80
|
* <p>The word or punctuation that was transcribed.</p>
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
|
-
Content?: string;
|
|
83
|
+
Content?: string | undefined;
|
|
84
84
|
/**
|
|
85
85
|
* <p>Indicates whether the specified item matches a word in the vocabulary filter included in
|
|
86
86
|
* your request. If <code>true</code>, there is a vocabulary filter match.</p>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
VocabularyFilterMatch?: boolean;
|
|
89
|
+
VocabularyFilterMatch?: boolean | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* <p>If speaker partitioning is enabled, <code>Speaker</code> labels the speaker of the
|
|
92
92
|
* specified item.</p>
|
|
93
93
|
* @public
|
|
94
94
|
*/
|
|
95
|
-
Speaker?: string;
|
|
95
|
+
Speaker?: string | undefined;
|
|
96
96
|
/**
|
|
97
97
|
* <p>The confidence score associated with a word or phrase in your transcript.</p>
|
|
98
98
|
* <p>Confidence scores are values between 0 and 1. A larger value indicates a higher
|
|
99
99
|
* probability that the identified item correctly matches the item spoken in your media.</p>
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
|
-
Confidence?: number;
|
|
102
|
+
Confidence?: number | undefined;
|
|
103
103
|
/**
|
|
104
104
|
* <p>If partial result stabilization is enabled, <code>Stable</code> indicates whether the specified
|
|
105
105
|
* item is stable (<code>true</code>) or if it may change when the segment is complete
|
|
106
106
|
* (<code>false</code>).</p>
|
|
107
107
|
* @public
|
|
108
108
|
*/
|
|
109
|
-
Stable?: boolean;
|
|
109
|
+
Stable?: boolean | undefined;
|
|
110
110
|
}
|
|
111
111
|
/**
|
|
112
112
|
* <p>A list of possible alternative transcriptions for the input audio. Each alternative may contain
|
|
@@ -118,18 +118,18 @@ export interface Alternative {
|
|
|
118
118
|
* <p>Contains transcribed text.</p>
|
|
119
119
|
* @public
|
|
120
120
|
*/
|
|
121
|
-
Transcript?: string;
|
|
121
|
+
Transcript?: string | undefined;
|
|
122
122
|
/**
|
|
123
123
|
* <p>Contains words, phrases, or punctuation marks in your transcription output.</p>
|
|
124
124
|
* @public
|
|
125
125
|
*/
|
|
126
|
-
Items?: Item[];
|
|
126
|
+
Items?: Item[] | undefined;
|
|
127
127
|
/**
|
|
128
128
|
* <p>Contains entities identified as personally identifiable information (PII) in your transcription
|
|
129
129
|
* output.</p>
|
|
130
130
|
* @public
|
|
131
131
|
*/
|
|
132
|
-
Entities?: Entity[];
|
|
132
|
+
Entities?: Entity[] | undefined;
|
|
133
133
|
}
|
|
134
134
|
/**
|
|
135
135
|
* <p>A wrapper for your audio chunks. Your audio stream consists of one or more audio
|
|
@@ -143,7 +143,7 @@ export interface AudioEvent {
|
|
|
143
143
|
* maximum audio chunk size is 32 KB.</p>
|
|
144
144
|
* @public
|
|
145
145
|
*/
|
|
146
|
-
AudioChunk?: Uint8Array;
|
|
146
|
+
AudioChunk?: Uint8Array | undefined;
|
|
147
147
|
}
|
|
148
148
|
/**
|
|
149
149
|
* @public
|
|
@@ -241,7 +241,7 @@ export interface PostCallAnalyticsSettings {
|
|
|
241
241
|
* enable content redaction (<code>ContentRedactionType</code>).</p>
|
|
242
242
|
* @public
|
|
243
243
|
*/
|
|
244
|
-
ContentRedactionOutput?: ContentRedactionOutput;
|
|
244
|
+
ContentRedactionOutput?: ContentRedactionOutput | undefined;
|
|
245
245
|
/**
|
|
246
246
|
* <p>The KMS key you want to use to encrypt your Call Analytics post-call
|
|
247
247
|
* output.</p>
|
|
@@ -284,7 +284,7 @@ export interface PostCallAnalyticsSettings {
|
|
|
284
284
|
* request must have permission to use the specified KMS key.</p>
|
|
285
285
|
* @public
|
|
286
286
|
*/
|
|
287
|
-
OutputEncryptionKMSKeyId?: string;
|
|
287
|
+
OutputEncryptionKMSKeyId?: string | undefined;
|
|
288
288
|
}
|
|
289
289
|
/**
|
|
290
290
|
* <p>Allows you to set audio channel definitions and post-call analytics settings.</p>
|
|
@@ -295,7 +295,7 @@ export interface ConfigurationEvent {
|
|
|
295
295
|
* <p>Indicates which speaker is on which audio channel.</p>
|
|
296
296
|
* @public
|
|
297
297
|
*/
|
|
298
|
-
ChannelDefinitions?: ChannelDefinition[];
|
|
298
|
+
ChannelDefinitions?: ChannelDefinition[] | undefined;
|
|
299
299
|
/**
|
|
300
300
|
* <p>Provides additional optional settings for your Call Analytics post-call request, including
|
|
301
301
|
* encryption and output locations for your redacted transcript.</p>
|
|
@@ -305,7 +305,7 @@ export interface ConfigurationEvent {
|
|
|
305
305
|
* on this feature.</p>
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
|
-
PostCallAnalyticsSettings?: PostCallAnalyticsSettings;
|
|
308
|
+
PostCallAnalyticsSettings?: PostCallAnalyticsSettings | undefined;
|
|
309
309
|
}
|
|
310
310
|
/**
|
|
311
311
|
* <p>An encoded stream of audio blobs. Audio streams are encoded as either HTTP/2 or WebSocket
|
|
@@ -363,7 +363,7 @@ export declare namespace AudioStream {
|
|
|
363
363
|
export declare class BadRequestException extends __BaseException {
|
|
364
364
|
readonly name: "BadRequestException";
|
|
365
365
|
readonly $fault: "client";
|
|
366
|
-
Message?: string;
|
|
366
|
+
Message?: string | undefined;
|
|
367
367
|
/**
|
|
368
368
|
* @internal
|
|
369
369
|
*/
|
|
@@ -380,28 +380,28 @@ export interface CallAnalyticsEntity {
|
|
|
380
380
|
* <p>The time, in milliseconds, from the beginning of the audio stream to the start of the identified entity.</p>
|
|
381
381
|
* @public
|
|
382
382
|
*/
|
|
383
|
-
BeginOffsetMillis?: number;
|
|
383
|
+
BeginOffsetMillis?: number | undefined;
|
|
384
384
|
/**
|
|
385
385
|
* <p>The time, in milliseconds, from the beginning of the audio stream to the end of the identified entity.</p>
|
|
386
386
|
* @public
|
|
387
387
|
*/
|
|
388
|
-
EndOffsetMillis?: number;
|
|
388
|
+
EndOffsetMillis?: number | undefined;
|
|
389
389
|
/**
|
|
390
390
|
* <p>The category of information identified. For example, <code>PII</code>.</p>
|
|
391
391
|
* @public
|
|
392
392
|
*/
|
|
393
|
-
Category?: string;
|
|
393
|
+
Category?: string | undefined;
|
|
394
394
|
/**
|
|
395
395
|
* <p>The type of PII identified. For example, <code>NAME</code> or
|
|
396
396
|
* <code>CREDIT_DEBIT_NUMBER</code>.</p>
|
|
397
397
|
* @public
|
|
398
398
|
*/
|
|
399
|
-
Type?: string;
|
|
399
|
+
Type?: string | undefined;
|
|
400
400
|
/**
|
|
401
401
|
* <p>The word or words that represent the identified entity.</p>
|
|
402
402
|
* @public
|
|
403
403
|
*/
|
|
404
|
-
Content?: string;
|
|
404
|
+
Content?: string | undefined;
|
|
405
405
|
/**
|
|
406
406
|
* <p>The confidence score associated with the identification of an entity in your transcript.</p>
|
|
407
407
|
* <p>Confidence scores are values between 0 and 1. A larger value indicates a higher
|
|
@@ -409,7 +409,7 @@ export interface CallAnalyticsEntity {
|
|
|
409
409
|
* media.</p>
|
|
410
410
|
* @public
|
|
411
411
|
*/
|
|
412
|
-
Confidence?: number;
|
|
412
|
+
Confidence?: number | undefined;
|
|
413
413
|
}
|
|
414
414
|
/**
|
|
415
415
|
* <p>A word, phrase, or punctuation mark in your Call Analytics transcription output, along with various
|
|
@@ -421,43 +421,43 @@ export interface CallAnalyticsItem {
|
|
|
421
421
|
* <p>The time, in milliseconds, from the beginning of the audio stream to the start of the identified item.</p>
|
|
422
422
|
* @public
|
|
423
423
|
*/
|
|
424
|
-
BeginOffsetMillis?: number;
|
|
424
|
+
BeginOffsetMillis?: number | undefined;
|
|
425
425
|
/**
|
|
426
426
|
* <p>The time, in milliseconds, from the beginning of the audio stream to the end of the identified item.</p>
|
|
427
427
|
* @public
|
|
428
428
|
*/
|
|
429
|
-
EndOffsetMillis?: number;
|
|
429
|
+
EndOffsetMillis?: number | undefined;
|
|
430
430
|
/**
|
|
431
431
|
* <p>The type of item identified. Options are: <code>PRONUNCIATION</code> (spoken words) and
|
|
432
432
|
* <code>PUNCTUATION</code>.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
Type?: ItemType;
|
|
435
|
+
Type?: ItemType | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>The word or punctuation that was transcribed.</p>
|
|
438
438
|
* @public
|
|
439
439
|
*/
|
|
440
|
-
Content?: string;
|
|
440
|
+
Content?: string | undefined;
|
|
441
441
|
/**
|
|
442
442
|
* <p>The confidence score associated with a word or phrase in your transcript.</p>
|
|
443
443
|
* <p>Confidence scores are values between 0 and 1. A larger value indicates a higher
|
|
444
444
|
* probability that the identified item correctly matches the item spoken in your media.</p>
|
|
445
445
|
* @public
|
|
446
446
|
*/
|
|
447
|
-
Confidence?: number;
|
|
447
|
+
Confidence?: number | undefined;
|
|
448
448
|
/**
|
|
449
449
|
* <p>Indicates whether the specified item matches a word in the vocabulary filter included in
|
|
450
450
|
* your Call Analytics request. If <code>true</code>, there is a vocabulary filter match.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
VocabularyFilterMatch?: boolean;
|
|
453
|
+
VocabularyFilterMatch?: boolean | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>If partial result stabilization is enabled, <code>Stable</code> indicates whether the specified
|
|
456
456
|
* item is stable (<code>true</code>) or if it may change when the segment is complete
|
|
457
457
|
* (<code>false</code>).</p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
Stable?: boolean;
|
|
460
|
+
Stable?: boolean | undefined;
|
|
461
461
|
}
|
|
462
462
|
/**
|
|
463
463
|
* @public
|
|
@@ -488,13 +488,13 @@ export interface TimestampRange {
|
|
|
488
488
|
* match.</p>
|
|
489
489
|
* @public
|
|
490
490
|
*/
|
|
491
|
-
BeginOffsetMillis?: number;
|
|
491
|
+
BeginOffsetMillis?: number | undefined;
|
|
492
492
|
/**
|
|
493
493
|
* <p>The time, in milliseconds, from the beginning of the audio stream to the end of the category
|
|
494
494
|
* match.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
EndOffsetMillis?: number;
|
|
497
|
+
EndOffsetMillis?: number | undefined;
|
|
498
498
|
}
|
|
499
499
|
/**
|
|
500
500
|
* <p>Contains the timestamps of matched categories.</p>
|
|
@@ -505,7 +505,7 @@ export interface PointsOfInterest {
|
|
|
505
505
|
* <p>Contains the timestamp ranges (start time through end time) of matched categories and rules.</p>
|
|
506
506
|
* @public
|
|
507
507
|
*/
|
|
508
|
-
TimestampRanges?: TimestampRange[];
|
|
508
|
+
TimestampRanges?: TimestampRange[] | undefined;
|
|
509
509
|
}
|
|
510
510
|
/**
|
|
511
511
|
* <p>Provides information on any <code>TranscriptFilterType</code> categories that matched your
|
|
@@ -517,12 +517,12 @@ export interface CategoryEvent {
|
|
|
517
517
|
* <p>Lists the categories that were matched in your audio segment.</p>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
MatchedCategories?: string[];
|
|
520
|
+
MatchedCategories?: string[] | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>Contains information about the matched categories, including category names and timestamps.</p>
|
|
523
523
|
* @public
|
|
524
524
|
*/
|
|
525
|
-
MatchedDetails?: Record<string, PointsOfInterest
|
|
525
|
+
MatchedDetails?: Record<string, PointsOfInterest> | undefined;
|
|
526
526
|
}
|
|
527
527
|
/**
|
|
528
528
|
* <p>A new stream started with the same session ID. The current stream has been terminated.</p>
|
|
@@ -531,7 +531,7 @@ export interface CategoryEvent {
|
|
|
531
531
|
export declare class ConflictException extends __BaseException {
|
|
532
532
|
readonly name: "ConflictException";
|
|
533
533
|
readonly $fault: "client";
|
|
534
|
-
Message?: string;
|
|
534
|
+
Message?: string | undefined;
|
|
535
535
|
/**
|
|
536
536
|
* @internal
|
|
537
537
|
*/
|
|
@@ -545,7 +545,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
545
545
|
export declare class InternalFailureException extends __BaseException {
|
|
546
546
|
readonly name: "InternalFailureException";
|
|
547
547
|
readonly $fault: "server";
|
|
548
|
-
Message?: string;
|
|
548
|
+
Message?: string | undefined;
|
|
549
549
|
/**
|
|
550
550
|
* @internal
|
|
551
551
|
*/
|
|
@@ -559,7 +559,7 @@ export declare class InternalFailureException extends __BaseException {
|
|
|
559
559
|
export declare class LimitExceededException extends __BaseException {
|
|
560
560
|
readonly name: "LimitExceededException";
|
|
561
561
|
readonly $fault: "client";
|
|
562
|
-
Message?: string;
|
|
562
|
+
Message?: string | undefined;
|
|
563
563
|
/**
|
|
564
564
|
* @internal
|
|
565
565
|
*/
|
|
@@ -572,7 +572,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
572
572
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
573
573
|
readonly name: "ServiceUnavailableException";
|
|
574
574
|
readonly $fault: "server";
|
|
575
|
-
Message?: string;
|
|
575
|
+
Message?: string | undefined;
|
|
576
576
|
/**
|
|
577
577
|
* @internal
|
|
578
578
|
*/
|
|
@@ -589,13 +589,13 @@ export interface CharacterOffsets {
|
|
|
589
589
|
* character associated with an issue or a category match in a segment transcript.</p>
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
Begin?: number;
|
|
592
|
+
Begin?: number | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* <p>Provides the character count of the last character where a match is identified. For example, the last
|
|
595
595
|
* character associated with an issue or a category match in a segment transcript.</p>
|
|
596
596
|
* @public
|
|
597
597
|
*/
|
|
598
|
-
End?: number;
|
|
598
|
+
End?: number | undefined;
|
|
599
599
|
}
|
|
600
600
|
/**
|
|
601
601
|
* <p>Lists the issues that were identified in your audio segment.</p>
|
|
@@ -606,7 +606,7 @@ export interface IssueDetected {
|
|
|
606
606
|
* <p>Provides the timestamps that identify when in an audio segment the specified issue occurs.</p>
|
|
607
607
|
* @public
|
|
608
608
|
*/
|
|
609
|
-
CharacterOffsets?: CharacterOffsets;
|
|
609
|
+
CharacterOffsets?: CharacterOffsets | undefined;
|
|
610
610
|
}
|
|
611
611
|
/**
|
|
612
612
|
* @public
|
|
@@ -633,58 +633,58 @@ export interface UtteranceEvent {
|
|
|
633
633
|
* <p>The unique identifier that is associated with the specified <code>UtteranceEvent</code>.</p>
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
UtteranceId?: string;
|
|
636
|
+
UtteranceId?: string | undefined;
|
|
637
637
|
/**
|
|
638
638
|
* <p>Indicates whether the segment in the <code>UtteranceEvent</code> is complete
|
|
639
639
|
* (<code>FALSE</code>) or partial (<code>TRUE</code>).</p>
|
|
640
640
|
* @public
|
|
641
641
|
*/
|
|
642
|
-
IsPartial?: boolean;
|
|
642
|
+
IsPartial?: boolean | undefined;
|
|
643
643
|
/**
|
|
644
644
|
* <p>Provides the role of the speaker for each audio channel, either <code>CUSTOMER</code> or
|
|
645
645
|
* <code>AGENT</code>.</p>
|
|
646
646
|
* @public
|
|
647
647
|
*/
|
|
648
|
-
ParticipantRole?: ParticipantRole;
|
|
648
|
+
ParticipantRole?: ParticipantRole | undefined;
|
|
649
649
|
/**
|
|
650
650
|
* <p>The time, in milliseconds, from the beginning of the audio stream to the start of the
|
|
651
651
|
* <code>UtteranceEvent</code>.</p>
|
|
652
652
|
* @public
|
|
653
653
|
*/
|
|
654
|
-
BeginOffsetMillis?: number;
|
|
654
|
+
BeginOffsetMillis?: number | undefined;
|
|
655
655
|
/**
|
|
656
656
|
* <p>The time, in milliseconds, from the beginning of the audio stream to the start of the
|
|
657
657
|
* <code>UtteranceEvent</code>.</p>
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
EndOffsetMillis?: number;
|
|
660
|
+
EndOffsetMillis?: number | undefined;
|
|
661
661
|
/**
|
|
662
662
|
* <p>Contains transcribed text.</p>
|
|
663
663
|
* @public
|
|
664
664
|
*/
|
|
665
|
-
Transcript?: string;
|
|
665
|
+
Transcript?: string | undefined;
|
|
666
666
|
/**
|
|
667
667
|
* <p>Contains words, phrases, or punctuation marks that are associated with the specified
|
|
668
668
|
* <code>UtteranceEvent</code>.</p>
|
|
669
669
|
* @public
|
|
670
670
|
*/
|
|
671
|
-
Items?: CallAnalyticsItem[];
|
|
671
|
+
Items?: CallAnalyticsItem[] | undefined;
|
|
672
672
|
/**
|
|
673
673
|
* <p>Contains entities identified as personally identifiable information (PII) in your transcription
|
|
674
674
|
* output.</p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
Entities?: CallAnalyticsEntity[];
|
|
677
|
+
Entities?: CallAnalyticsEntity[] | undefined;
|
|
678
678
|
/**
|
|
679
679
|
* <p>Provides the sentiment that was detected in the specified segment.</p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
Sentiment?: Sentiment;
|
|
682
|
+
Sentiment?: Sentiment | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>Provides the issue that was detected in the specified segment.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
IssuesDetected?: IssueDetected[];
|
|
687
|
+
IssuesDetected?: IssueDetected[] | undefined;
|
|
688
688
|
}
|
|
689
689
|
/**
|
|
690
690
|
* <p>Contains detailed information about your real-time Call Analytics session. These details are
|
|
@@ -924,13 +924,13 @@ export interface LanguageWithScore {
|
|
|
924
924
|
* <p>The language code of the identified language.</p>
|
|
925
925
|
* @public
|
|
926
926
|
*/
|
|
927
|
-
LanguageCode?: LanguageCode;
|
|
927
|
+
LanguageCode?: LanguageCode | undefined;
|
|
928
928
|
/**
|
|
929
929
|
* <p>The confidence score associated with the identified language code. Confidence scores are values
|
|
930
930
|
* between zero and one; larger values indicate a higher confidence in the identified language.</p>
|
|
931
931
|
* @public
|
|
932
932
|
*/
|
|
933
|
-
Score?: number;
|
|
933
|
+
Score?: number | undefined;
|
|
934
934
|
}
|
|
935
935
|
/**
|
|
936
936
|
* @public
|
|
@@ -956,22 +956,22 @@ export interface MedicalEntity {
|
|
|
956
956
|
* <p>The start time, in milliseconds, of the utterance that was identified as PHI.</p>
|
|
957
957
|
* @public
|
|
958
958
|
*/
|
|
959
|
-
StartTime?: number;
|
|
959
|
+
StartTime?: number | undefined;
|
|
960
960
|
/**
|
|
961
961
|
* <p>The end time, in milliseconds, of the utterance that was identified as PHI.</p>
|
|
962
962
|
* @public
|
|
963
963
|
*/
|
|
964
|
-
EndTime?: number;
|
|
964
|
+
EndTime?: number | undefined;
|
|
965
965
|
/**
|
|
966
966
|
* <p>The category of information identified. The only category is <code>PHI</code>.</p>
|
|
967
967
|
* @public
|
|
968
968
|
*/
|
|
969
|
-
Category?: string;
|
|
969
|
+
Category?: string | undefined;
|
|
970
970
|
/**
|
|
971
971
|
* <p>The word or words identified as PHI.</p>
|
|
972
972
|
* @public
|
|
973
973
|
*/
|
|
974
|
-
Content?: string;
|
|
974
|
+
Content?: string | undefined;
|
|
975
975
|
/**
|
|
976
976
|
* <p>The confidence score associated with the identified PHI entity in your audio.</p>
|
|
977
977
|
* <p>Confidence scores are values between 0 and 1. A larger value indicates a higher
|
|
@@ -979,7 +979,7 @@ export interface MedicalEntity {
|
|
|
979
979
|
* media.</p>
|
|
980
980
|
* @public
|
|
981
981
|
*/
|
|
982
|
-
Confidence?: number;
|
|
982
|
+
Confidence?: number | undefined;
|
|
983
983
|
}
|
|
984
984
|
/**
|
|
985
985
|
* <p>A word, phrase, or punctuation mark in your transcription output, along with various
|
|
@@ -991,23 +991,23 @@ export interface MedicalItem {
|
|
|
991
991
|
* <p>The start time, in milliseconds, of the transcribed item.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
StartTime?: number;
|
|
994
|
+
StartTime?: number | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>The end time, in milliseconds, of the transcribed item.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
EndTime?: number;
|
|
999
|
+
EndTime?: number | undefined;
|
|
1000
1000
|
/**
|
|
1001
1001
|
* <p>The type of item identified. Options are: <code>PRONUNCIATION</code> (spoken
|
|
1002
1002
|
* words) and <code>PUNCTUATION</code>.</p>
|
|
1003
1003
|
* @public
|
|
1004
1004
|
*/
|
|
1005
|
-
Type?: ItemType;
|
|
1005
|
+
Type?: ItemType | undefined;
|
|
1006
1006
|
/**
|
|
1007
1007
|
* <p>The word or punctuation that was transcribed.</p>
|
|
1008
1008
|
* @public
|
|
1009
1009
|
*/
|
|
1010
|
-
Content?: string;
|
|
1010
|
+
Content?: string | undefined;
|
|
1011
1011
|
/**
|
|
1012
1012
|
* <p>The confidence score associated with a word or phrase in your transcript.</p>
|
|
1013
1013
|
* <p>Confidence scores are values between 0 and 1. A larger value indicates a higher
|
|
@@ -1015,13 +1015,13 @@ export interface MedicalItem {
|
|
|
1015
1015
|
* media.</p>
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*/
|
|
1018
|
-
Confidence?: number;
|
|
1018
|
+
Confidence?: number | undefined;
|
|
1019
1019
|
/**
|
|
1020
1020
|
* <p>If speaker partitioning is enabled, <code>Speaker</code> labels the speaker of the
|
|
1021
1021
|
* specified item.</p>
|
|
1022
1022
|
* @public
|
|
1023
1023
|
*/
|
|
1024
|
-
Speaker?: string;
|
|
1024
|
+
Speaker?: string | undefined;
|
|
1025
1025
|
}
|
|
1026
1026
|
/**
|
|
1027
1027
|
* <p>A list of possible alternative transcriptions for the input audio. Each alternative may
|
|
@@ -1034,18 +1034,18 @@ export interface MedicalAlternative {
|
|
|
1034
1034
|
* <p>Contains transcribed text.</p>
|
|
1035
1035
|
* @public
|
|
1036
1036
|
*/
|
|
1037
|
-
Transcript?: string;
|
|
1037
|
+
Transcript?: string | undefined;
|
|
1038
1038
|
/**
|
|
1039
1039
|
* <p>Contains words, phrases, or punctuation marks in your transcription output.</p>
|
|
1040
1040
|
* @public
|
|
1041
1041
|
*/
|
|
1042
|
-
Items?: MedicalItem[];
|
|
1042
|
+
Items?: MedicalItem[] | undefined;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* <p>Contains entities identified as personal health information (PHI) in your transcription
|
|
1045
1045
|
* output.</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
Entities?: MedicalEntity[];
|
|
1048
|
+
Entities?: MedicalEntity[] | undefined;
|
|
1049
1049
|
}
|
|
1050
1050
|
/**
|
|
1051
1051
|
* @public
|
|
@@ -1072,36 +1072,36 @@ export interface MedicalResult {
|
|
|
1072
1072
|
* <p>Provides a unique identifier for the <code>Result</code>.</p>
|
|
1073
1073
|
* @public
|
|
1074
1074
|
*/
|
|
1075
|
-
ResultId?: string;
|
|
1075
|
+
ResultId?: string | undefined;
|
|
1076
1076
|
/**
|
|
1077
1077
|
* <p>The start time, in milliseconds, of the <code>Result</code>.</p>
|
|
1078
1078
|
* @public
|
|
1079
1079
|
*/
|
|
1080
|
-
StartTime?: number;
|
|
1080
|
+
StartTime?: number | undefined;
|
|
1081
1081
|
/**
|
|
1082
1082
|
* <p>The end time, in milliseconds, of the <code>Result</code>.</p>
|
|
1083
1083
|
* @public
|
|
1084
1084
|
*/
|
|
1085
|
-
EndTime?: number;
|
|
1085
|
+
EndTime?: number | undefined;
|
|
1086
1086
|
/**
|
|
1087
1087
|
* <p>Indicates if the segment is complete.</p>
|
|
1088
1088
|
* <p>If <code>IsPartial</code> is <code>true</code>, the segment is not complete. If
|
|
1089
1089
|
* <code>IsPartial</code> is <code>false</code>, the segment is complete.</p>
|
|
1090
1090
|
* @public
|
|
1091
1091
|
*/
|
|
1092
|
-
IsPartial?: boolean;
|
|
1092
|
+
IsPartial?: boolean | undefined;
|
|
1093
1093
|
/**
|
|
1094
1094
|
* <p>A list of possible alternative transcriptions for the input audio. Each alternative may
|
|
1095
1095
|
* contain one or more of <code>Items</code>, <code>Entities</code>, or
|
|
1096
1096
|
* <code>Transcript</code>.</p>
|
|
1097
1097
|
* @public
|
|
1098
1098
|
*/
|
|
1099
|
-
Alternatives?: MedicalAlternative[];
|
|
1099
|
+
Alternatives?: MedicalAlternative[] | undefined;
|
|
1100
1100
|
/**
|
|
1101
1101
|
* <p>Indicates the channel identified for the <code>Result</code>.</p>
|
|
1102
1102
|
* @public
|
|
1103
1103
|
*/
|
|
1104
|
-
ChannelId?: string;
|
|
1104
|
+
ChannelId?: string | undefined;
|
|
1105
1105
|
}
|
|
1106
1106
|
/**
|
|
1107
1107
|
* <p>The <code>MedicalTranscript</code> associated with a
|
|
@@ -1120,7 +1120,7 @@ export interface MedicalTranscript {
|
|
|
1120
1120
|
* identification, and other transcription-related data.</p>
|
|
1121
1121
|
* @public
|
|
1122
1122
|
*/
|
|
1123
|
-
Results?: MedicalResult[];
|
|
1123
|
+
Results?: MedicalResult[] | undefined;
|
|
1124
1124
|
}
|
|
1125
1125
|
/**
|
|
1126
1126
|
* <p>The <code>MedicalTranscriptEvent</code> associated with a
|
|
@@ -1137,7 +1137,7 @@ export interface MedicalTranscriptEvent {
|
|
|
1137
1137
|
* stabilization, language identification, and other transcription-related data.</p>
|
|
1138
1138
|
* @public
|
|
1139
1139
|
*/
|
|
1140
|
-
Transcript?: MedicalTranscript;
|
|
1140
|
+
Transcript?: MedicalTranscript | undefined;
|
|
1141
1141
|
}
|
|
1142
1142
|
/**
|
|
1143
1143
|
* <p>Contains detailed information about your streaming session.</p>
|
|
@@ -1286,47 +1286,47 @@ export interface Result {
|
|
|
1286
1286
|
* <p>Provides a unique identifier for the <code>Result</code>.</p>
|
|
1287
1287
|
* @public
|
|
1288
1288
|
*/
|
|
1289
|
-
ResultId?: string;
|
|
1289
|
+
ResultId?: string | undefined;
|
|
1290
1290
|
/**
|
|
1291
1291
|
* <p>The start time, in milliseconds, of the <code>Result</code>.</p>
|
|
1292
1292
|
* @public
|
|
1293
1293
|
*/
|
|
1294
|
-
StartTime?: number;
|
|
1294
|
+
StartTime?: number | undefined;
|
|
1295
1295
|
/**
|
|
1296
1296
|
* <p>The end time, in milliseconds, of the <code>Result</code>.</p>
|
|
1297
1297
|
* @public
|
|
1298
1298
|
*/
|
|
1299
|
-
EndTime?: number;
|
|
1299
|
+
EndTime?: number | undefined;
|
|
1300
1300
|
/**
|
|
1301
1301
|
* <p>Indicates if the segment is complete.</p>
|
|
1302
1302
|
* <p>If <code>IsPartial</code> is <code>true</code>, the segment is not complete. If
|
|
1303
1303
|
* <code>IsPartial</code> is <code>false</code>, the segment is complete.</p>
|
|
1304
1304
|
* @public
|
|
1305
1305
|
*/
|
|
1306
|
-
IsPartial?: boolean;
|
|
1306
|
+
IsPartial?: boolean | undefined;
|
|
1307
1307
|
/**
|
|
1308
1308
|
* <p>A list of possible alternative transcriptions for the input audio. Each alternative may contain
|
|
1309
1309
|
* one or more of <code>Items</code>, <code>Entities</code>, or <code>Transcript</code>.</p>
|
|
1310
1310
|
* @public
|
|
1311
1311
|
*/
|
|
1312
|
-
Alternatives?: Alternative[];
|
|
1312
|
+
Alternatives?: Alternative[] | undefined;
|
|
1313
1313
|
/**
|
|
1314
1314
|
* <p>Indicates which audio channel is associated with the <code>Result</code>.</p>
|
|
1315
1315
|
* @public
|
|
1316
1316
|
*/
|
|
1317
|
-
ChannelId?: string;
|
|
1317
|
+
ChannelId?: string | undefined;
|
|
1318
1318
|
/**
|
|
1319
1319
|
* <p>The language code that represents the language spoken in your audio stream.</p>
|
|
1320
1320
|
* @public
|
|
1321
1321
|
*/
|
|
1322
|
-
LanguageCode?: LanguageCode;
|
|
1322
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* <p>The language code of the dominant language identified in your stream.</p>
|
|
1325
1325
|
* <p>If you enabled channel identification and each channel of your audio contains a different language,
|
|
1326
1326
|
* you may have more than one result.</p>
|
|
1327
1327
|
* @public
|
|
1328
1328
|
*/
|
|
1329
|
-
LanguageIdentification?: LanguageWithScore[];
|
|
1329
|
+
LanguageIdentification?: LanguageWithScore[] | undefined;
|
|
1330
1330
|
}
|
|
1331
1331
|
/**
|
|
1332
1332
|
* @public
|
|
@@ -1401,13 +1401,13 @@ export interface StartCallAnalyticsStreamTranscriptionRequest {
|
|
|
1401
1401
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html">Custom vocabularies</a>.</p>
|
|
1402
1402
|
* @public
|
|
1403
1403
|
*/
|
|
1404
|
-
VocabularyName?: string;
|
|
1404
|
+
VocabularyName?: string | undefined;
|
|
1405
1405
|
/**
|
|
1406
1406
|
* <p>Specify a name for your Call Analytics transcription session. If you don't include this parameter
|
|
1407
1407
|
* in your request, Amazon Transcribe generates an ID and returns it in the response.</p>
|
|
1408
1408
|
* @public
|
|
1409
1409
|
*/
|
|
1410
|
-
SessionId?: string;
|
|
1410
|
+
SessionId?: string | undefined;
|
|
1411
1411
|
/**
|
|
1412
1412
|
* <p>An encoded stream of audio blobs. Audio streams are encoded as either HTTP/2 or WebSocket
|
|
1413
1413
|
* data frames.</p>
|
|
@@ -1424,7 +1424,7 @@ export interface StartCallAnalyticsStreamTranscriptionRequest {
|
|
|
1424
1424
|
* words</a>.</p>
|
|
1425
1425
|
* @public
|
|
1426
1426
|
*/
|
|
1427
|
-
VocabularyFilterName?: string;
|
|
1427
|
+
VocabularyFilterName?: string | undefined;
|
|
1428
1428
|
/**
|
|
1429
1429
|
* <p>Specify how you want your vocabulary filter applied to your transcript.</p>
|
|
1430
1430
|
* <p>To replace words with <code>***</code>, choose <code>mask</code>.</p>
|
|
@@ -1432,7 +1432,7 @@ export interface StartCallAnalyticsStreamTranscriptionRequest {
|
|
|
1432
1432
|
* <p>To flag words without changing them, choose <code>tag</code>.</p>
|
|
1433
1433
|
* @public
|
|
1434
1434
|
*/
|
|
1435
|
-
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
1435
|
+
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
1436
1436
|
/**
|
|
1437
1437
|
* <p>Specify the name of the custom language model that you want to use when processing your
|
|
1438
1438
|
* transcription. Note that language model names are case sensitive.</p>
|
|
@@ -1442,7 +1442,7 @@ export interface StartCallAnalyticsStreamTranscriptionRequest {
|
|
|
1442
1442
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-language-models.html">Custom language models</a>.</p>
|
|
1443
1443
|
* @public
|
|
1444
1444
|
*/
|
|
1445
|
-
LanguageModelName?: string;
|
|
1445
|
+
LanguageModelName?: string | undefined;
|
|
1446
1446
|
/**
|
|
1447
1447
|
* <p>Enables partial result stabilization for your transcription. Partial result stabilization can reduce
|
|
1448
1448
|
* latency in your output, but may impact accuracy. For more information, see
|
|
@@ -1450,7 +1450,7 @@ export interface StartCallAnalyticsStreamTranscriptionRequest {
|
|
|
1450
1450
|
* stabilization</a>.</p>
|
|
1451
1451
|
* @public
|
|
1452
1452
|
*/
|
|
1453
|
-
EnablePartialResultsStabilization?: boolean;
|
|
1453
|
+
EnablePartialResultsStabilization?: boolean | undefined;
|
|
1454
1454
|
/**
|
|
1455
1455
|
* <p>Specify the level of stability to use when you enable partial results stabilization
|
|
1456
1456
|
* (<code>EnablePartialResultsStabilization</code>).</p>
|
|
@@ -1460,7 +1460,7 @@ export interface StartCallAnalyticsStreamTranscriptionRequest {
|
|
|
1460
1460
|
* stabilization</a>.</p>
|
|
1461
1461
|
* @public
|
|
1462
1462
|
*/
|
|
1463
|
-
PartialResultsStability?: PartialResultsStability;
|
|
1463
|
+
PartialResultsStability?: PartialResultsStability | undefined;
|
|
1464
1464
|
/**
|
|
1465
1465
|
* <p>Labels all personally identifiable information (PII) identified in your transcript.</p>
|
|
1466
1466
|
* <p>Content identification is performed at the segment level; PII specified in
|
|
@@ -1473,7 +1473,7 @@ export interface StartCallAnalyticsStreamTranscriptionRequest {
|
|
|
1473
1473
|
* information</a>.</p>
|
|
1474
1474
|
* @public
|
|
1475
1475
|
*/
|
|
1476
|
-
ContentIdentificationType?: ContentIdentificationType;
|
|
1476
|
+
ContentIdentificationType?: ContentIdentificationType | undefined;
|
|
1477
1477
|
/**
|
|
1478
1478
|
* <p>Redacts all personally identifiable information (PII) identified in your transcript.</p>
|
|
1479
1479
|
* <p>Content redaction is performed at the segment level; PII specified in
|
|
@@ -1485,7 +1485,7 @@ export interface StartCallAnalyticsStreamTranscriptionRequest {
|
|
|
1485
1485
|
* information</a>.</p>
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
ContentRedactionType?: ContentRedactionType;
|
|
1488
|
+
ContentRedactionType?: ContentRedactionType | undefined;
|
|
1489
1489
|
/**
|
|
1490
1490
|
* <p>Specify which types of personally identifiable information (PII) you want to redact in your
|
|
1491
1491
|
* transcript. You can include as many types as you'd like, or you can select
|
|
@@ -1503,7 +1503,7 @@ export interface StartCallAnalyticsStreamTranscriptionRequest {
|
|
|
1503
1503
|
* <code>PiiEntityTypes</code>, all PII is redacted or identified.</p>
|
|
1504
1504
|
* @public
|
|
1505
1505
|
*/
|
|
1506
|
-
PiiEntityTypes?: string;
|
|
1506
|
+
PiiEntityTypes?: string | undefined;
|
|
1507
1507
|
}
|
|
1508
1508
|
/**
|
|
1509
1509
|
* @public
|
|
@@ -1513,79 +1513,79 @@ export interface StartCallAnalyticsStreamTranscriptionResponse {
|
|
|
1513
1513
|
* <p>Provides the identifier for your real-time Call Analytics request.</p>
|
|
1514
1514
|
* @public
|
|
1515
1515
|
*/
|
|
1516
|
-
RequestId?: string;
|
|
1516
|
+
RequestId?: string | undefined;
|
|
1517
1517
|
/**
|
|
1518
1518
|
* <p>Provides the language code that you specified in your Call Analytics request.</p>
|
|
1519
1519
|
* @public
|
|
1520
1520
|
*/
|
|
1521
|
-
LanguageCode?: CallAnalyticsLanguageCode;
|
|
1521
|
+
LanguageCode?: CallAnalyticsLanguageCode | undefined;
|
|
1522
1522
|
/**
|
|
1523
1523
|
* <p>Provides the sample rate that you specified in your Call Analytics request.</p>
|
|
1524
1524
|
* @public
|
|
1525
1525
|
*/
|
|
1526
|
-
MediaSampleRateHertz?: number;
|
|
1526
|
+
MediaSampleRateHertz?: number | undefined;
|
|
1527
1527
|
/**
|
|
1528
1528
|
* <p>Provides the media encoding you specified in your Call Analytics request.</p>
|
|
1529
1529
|
* @public
|
|
1530
1530
|
*/
|
|
1531
|
-
MediaEncoding?: MediaEncoding;
|
|
1531
|
+
MediaEncoding?: MediaEncoding | undefined;
|
|
1532
1532
|
/**
|
|
1533
1533
|
* <p>Provides the name of the custom vocabulary that you specified in your Call Analytics request.</p>
|
|
1534
1534
|
* @public
|
|
1535
1535
|
*/
|
|
1536
|
-
VocabularyName?: string;
|
|
1536
|
+
VocabularyName?: string | undefined;
|
|
1537
1537
|
/**
|
|
1538
1538
|
* <p>Provides the identifier for your Call Analytics transcription session.</p>
|
|
1539
1539
|
* @public
|
|
1540
1540
|
*/
|
|
1541
|
-
SessionId?: string;
|
|
1541
|
+
SessionId?: string | undefined;
|
|
1542
1542
|
/**
|
|
1543
1543
|
* <p>Provides detailed information about your real-time Call Analytics session.</p>
|
|
1544
1544
|
* @public
|
|
1545
1545
|
*/
|
|
1546
|
-
CallAnalyticsTranscriptResultStream?: AsyncIterable<CallAnalyticsTranscriptResultStream
|
|
1546
|
+
CallAnalyticsTranscriptResultStream?: AsyncIterable<CallAnalyticsTranscriptResultStream> | undefined;
|
|
1547
1547
|
/**
|
|
1548
1548
|
* <p>Provides the name of the custom vocabulary filter that you specified in your Call Analytics
|
|
1549
1549
|
* request.</p>
|
|
1550
1550
|
* @public
|
|
1551
1551
|
*/
|
|
1552
|
-
VocabularyFilterName?: string;
|
|
1552
|
+
VocabularyFilterName?: string | undefined;
|
|
1553
1553
|
/**
|
|
1554
1554
|
* <p>Provides the vocabulary filtering method used in your Call Analytics transcription.</p>
|
|
1555
1555
|
* @public
|
|
1556
1556
|
*/
|
|
1557
|
-
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
1557
|
+
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
1558
1558
|
/**
|
|
1559
1559
|
* <p>Provides the name of the custom language model that you specified in your Call Analytics
|
|
1560
1560
|
* request.</p>
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
LanguageModelName?: string;
|
|
1563
|
+
LanguageModelName?: string | undefined;
|
|
1564
1564
|
/**
|
|
1565
1565
|
* <p>Shows whether partial results stabilization was enabled for your Call Analytics transcription.</p>
|
|
1566
1566
|
* @public
|
|
1567
1567
|
*/
|
|
1568
|
-
EnablePartialResultsStabilization?: boolean;
|
|
1568
|
+
EnablePartialResultsStabilization?: boolean | undefined;
|
|
1569
1569
|
/**
|
|
1570
1570
|
* <p>Provides the stabilization level used for your transcription.</p>
|
|
1571
1571
|
* @public
|
|
1572
1572
|
*/
|
|
1573
|
-
PartialResultsStability?: PartialResultsStability;
|
|
1573
|
+
PartialResultsStability?: PartialResultsStability | undefined;
|
|
1574
1574
|
/**
|
|
1575
1575
|
* <p>Shows whether content identification was enabled for your Call Analytics transcription.</p>
|
|
1576
1576
|
* @public
|
|
1577
1577
|
*/
|
|
1578
|
-
ContentIdentificationType?: ContentIdentificationType;
|
|
1578
|
+
ContentIdentificationType?: ContentIdentificationType | undefined;
|
|
1579
1579
|
/**
|
|
1580
1580
|
* <p>Shows whether content redaction was enabled for your Call Analytics transcription.</p>
|
|
1581
1581
|
* @public
|
|
1582
1582
|
*/
|
|
1583
|
-
ContentRedactionType?: ContentRedactionType;
|
|
1583
|
+
ContentRedactionType?: ContentRedactionType | undefined;
|
|
1584
1584
|
/**
|
|
1585
1585
|
* <p>Lists the PII entity types you specified in your Call Analytics request.</p>
|
|
1586
1586
|
* @public
|
|
1587
1587
|
*/
|
|
1588
|
-
PiiEntityTypes?: string;
|
|
1588
|
+
PiiEntityTypes?: string | undefined;
|
|
1589
1589
|
}
|
|
1590
1590
|
/**
|
|
1591
1591
|
* @public
|
|
@@ -1641,7 +1641,7 @@ export interface StartMedicalStreamTranscriptionRequest {
|
|
|
1641
1641
|
* transcription. Note that vocabulary names are case sensitive.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
VocabularyName?: string;
|
|
1644
|
+
VocabularyName?: string | undefined;
|
|
1645
1645
|
/**
|
|
1646
1646
|
* <p>Specify the medical specialty contained in your audio.</p>
|
|
1647
1647
|
* @public
|
|
@@ -1660,14 +1660,14 @@ export interface StartMedicalStreamTranscriptionRequest {
|
|
|
1660
1660
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/diarization.html">Partitioning speakers (diarization)</a>.</p>
|
|
1661
1661
|
* @public
|
|
1662
1662
|
*/
|
|
1663
|
-
ShowSpeakerLabel?: boolean;
|
|
1663
|
+
ShowSpeakerLabel?: boolean | undefined;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* <p>Specify a name for your transcription session. If you don't include this parameter in
|
|
1666
1666
|
* your request, Amazon Transcribe Medical generates an ID and returns it in the
|
|
1667
1667
|
* response.</p>
|
|
1668
1668
|
* @public
|
|
1669
1669
|
*/
|
|
1670
|
-
SessionId?: string;
|
|
1670
|
+
SessionId?: string | undefined;
|
|
1671
1671
|
/**
|
|
1672
1672
|
* <p>An encoded stream of audio blobs. Audio streams are encoded as either HTTP/2 or WebSocket
|
|
1673
1673
|
* data frames.</p>
|
|
@@ -1686,7 +1686,7 @@ export interface StartMedicalStreamTranscriptionRequest {
|
|
|
1686
1686
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/channel-id.html">Transcribing multi-channel audio</a>.</p>
|
|
1687
1687
|
* @public
|
|
1688
1688
|
*/
|
|
1689
|
-
EnableChannelIdentification?: boolean;
|
|
1689
|
+
EnableChannelIdentification?: boolean | undefined;
|
|
1690
1690
|
/**
|
|
1691
1691
|
* <p>Specify the number of channels in your audio stream. This value must be
|
|
1692
1692
|
* <code>2</code>, as only two channels are supported. If your audio doesn't contain
|
|
@@ -1695,7 +1695,7 @@ export interface StartMedicalStreamTranscriptionRequest {
|
|
|
1695
1695
|
* include <code>EnableChannelIdentification</code>.</p>
|
|
1696
1696
|
* @public
|
|
1697
1697
|
*/
|
|
1698
|
-
NumberOfChannels?: number;
|
|
1698
|
+
NumberOfChannels?: number | undefined;
|
|
1699
1699
|
/**
|
|
1700
1700
|
* <p>Labels all personal health information (PHI) identified in your transcript.</p>
|
|
1701
1701
|
* <p>Content identification is performed at the segment level; PHI is flagged upon complete
|
|
@@ -1704,7 +1704,7 @@ export interface StartMedicalStreamTranscriptionRequest {
|
|
|
1704
1704
|
* transcription</a>.</p>
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
1707
|
+
ContentIdentificationType?: MedicalContentIdentificationType | undefined;
|
|
1708
1708
|
}
|
|
1709
1709
|
/**
|
|
1710
1710
|
* @public
|
|
@@ -1714,68 +1714,68 @@ export interface StartMedicalStreamTranscriptionResponse {
|
|
|
1714
1714
|
* <p>Provides the identifier for your streaming request.</p>
|
|
1715
1715
|
* @public
|
|
1716
1716
|
*/
|
|
1717
|
-
RequestId?: string;
|
|
1717
|
+
RequestId?: string | undefined;
|
|
1718
1718
|
/**
|
|
1719
1719
|
* <p>Provides the language code that you specified in your request. This must be
|
|
1720
1720
|
* <code>en-US</code>.</p>
|
|
1721
1721
|
* @public
|
|
1722
1722
|
*/
|
|
1723
|
-
LanguageCode?: LanguageCode;
|
|
1723
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1724
1724
|
/**
|
|
1725
1725
|
* <p>Provides the sample rate that you specified in your request.</p>
|
|
1726
1726
|
* @public
|
|
1727
1727
|
*/
|
|
1728
|
-
MediaSampleRateHertz?: number;
|
|
1728
|
+
MediaSampleRateHertz?: number | undefined;
|
|
1729
1729
|
/**
|
|
1730
1730
|
* <p>Provides the media encoding you specified in your request.</p>
|
|
1731
1731
|
* @public
|
|
1732
1732
|
*/
|
|
1733
|
-
MediaEncoding?: MediaEncoding;
|
|
1733
|
+
MediaEncoding?: MediaEncoding | undefined;
|
|
1734
1734
|
/**
|
|
1735
1735
|
* <p>Provides the name of the custom vocabulary that you specified in your request.</p>
|
|
1736
1736
|
* @public
|
|
1737
1737
|
*/
|
|
1738
|
-
VocabularyName?: string;
|
|
1738
|
+
VocabularyName?: string | undefined;
|
|
1739
1739
|
/**
|
|
1740
1740
|
* <p>Provides the medical specialty that you specified in your request.</p>
|
|
1741
1741
|
* @public
|
|
1742
1742
|
*/
|
|
1743
|
-
Specialty?: Specialty;
|
|
1743
|
+
Specialty?: Specialty | undefined;
|
|
1744
1744
|
/**
|
|
1745
1745
|
* <p>Provides the type of audio you specified in your request.</p>
|
|
1746
1746
|
* @public
|
|
1747
1747
|
*/
|
|
1748
|
-
Type?: Type;
|
|
1748
|
+
Type?: Type | undefined;
|
|
1749
1749
|
/**
|
|
1750
1750
|
* <p>Shows whether speaker partitioning was enabled for your transcription.</p>
|
|
1751
1751
|
* @public
|
|
1752
1752
|
*/
|
|
1753
|
-
ShowSpeakerLabel?: boolean;
|
|
1753
|
+
ShowSpeakerLabel?: boolean | undefined;
|
|
1754
1754
|
/**
|
|
1755
1755
|
* <p>Provides the identifier for your transcription session.</p>
|
|
1756
1756
|
* @public
|
|
1757
1757
|
*/
|
|
1758
|
-
SessionId?: string;
|
|
1758
|
+
SessionId?: string | undefined;
|
|
1759
1759
|
/**
|
|
1760
1760
|
* <p>Provides detailed information about your streaming session.</p>
|
|
1761
1761
|
* @public
|
|
1762
1762
|
*/
|
|
1763
|
-
TranscriptResultStream?: AsyncIterable<MedicalTranscriptResultStream
|
|
1763
|
+
TranscriptResultStream?: AsyncIterable<MedicalTranscriptResultStream> | undefined;
|
|
1764
1764
|
/**
|
|
1765
1765
|
* <p>Shows whether channel identification was enabled for your transcription.</p>
|
|
1766
1766
|
* @public
|
|
1767
1767
|
*/
|
|
1768
|
-
EnableChannelIdentification?: boolean;
|
|
1768
|
+
EnableChannelIdentification?: boolean | undefined;
|
|
1769
1769
|
/**
|
|
1770
1770
|
* <p>Provides the number of channels that you specified in your request.</p>
|
|
1771
1771
|
* @public
|
|
1772
1772
|
*/
|
|
1773
|
-
NumberOfChannels?: number;
|
|
1773
|
+
NumberOfChannels?: number | undefined;
|
|
1774
1774
|
/**
|
|
1775
1775
|
* <p>Shows whether content identification was enabled for your transcription.</p>
|
|
1776
1776
|
* @public
|
|
1777
1777
|
*/
|
|
1778
|
-
ContentIdentificationType?: MedicalContentIdentificationType;
|
|
1778
|
+
ContentIdentificationType?: MedicalContentIdentificationType | undefined;
|
|
1779
1779
|
}
|
|
1780
1780
|
/**
|
|
1781
1781
|
* @public
|
|
@@ -1790,7 +1790,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1790
1790
|
* languages</a> table.</p>
|
|
1791
1791
|
* @public
|
|
1792
1792
|
*/
|
|
1793
|
-
LanguageCode?: LanguageCode;
|
|
1793
|
+
LanguageCode?: LanguageCode | undefined;
|
|
1794
1794
|
/**
|
|
1795
1795
|
* <p>The sample rate of the input audio (in hertz). Low-quality audio, such as telephone audio,
|
|
1796
1796
|
* is typically around 8,000 Hz. High-quality audio typically ranges from 16,000 Hz to 48,000 Hz.
|
|
@@ -1829,13 +1829,13 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1829
1829
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html">Custom vocabularies</a>.</p>
|
|
1830
1830
|
* @public
|
|
1831
1831
|
*/
|
|
1832
|
-
VocabularyName?: string;
|
|
1832
|
+
VocabularyName?: string | undefined;
|
|
1833
1833
|
/**
|
|
1834
1834
|
* <p>Specify a name for your transcription session. If you don't include this parameter in your request,
|
|
1835
1835
|
* Amazon Transcribe generates an ID and returns it in the response.</p>
|
|
1836
1836
|
* @public
|
|
1837
1837
|
*/
|
|
1838
|
-
SessionId?: string;
|
|
1838
|
+
SessionId?: string | undefined;
|
|
1839
1839
|
/**
|
|
1840
1840
|
* <p>An encoded stream of audio blobs. Audio streams are encoded as either HTTP/2 or WebSocket
|
|
1841
1841
|
* data frames.</p>
|
|
@@ -1858,7 +1858,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1858
1858
|
* words</a>.</p>
|
|
1859
1859
|
* @public
|
|
1860
1860
|
*/
|
|
1861
|
-
VocabularyFilterName?: string;
|
|
1861
|
+
VocabularyFilterName?: string | undefined;
|
|
1862
1862
|
/**
|
|
1863
1863
|
* <p>Specify how you want your vocabulary filter applied to your transcript.</p>
|
|
1864
1864
|
* <p>To replace words with <code>***</code>, choose <code>mask</code>.</p>
|
|
@@ -1866,14 +1866,14 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1866
1866
|
* <p>To flag words without changing them, choose <code>tag</code>.</p>
|
|
1867
1867
|
* @public
|
|
1868
1868
|
*/
|
|
1869
|
-
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
1869
|
+
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
1870
1870
|
/**
|
|
1871
1871
|
* <p>Enables speaker partitioning (diarization) in your transcription output. Speaker partitioning
|
|
1872
1872
|
* labels the speech from individual speakers in your media file.</p>
|
|
1873
1873
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/diarization.html">Partitioning speakers (diarization)</a>.</p>
|
|
1874
1874
|
* @public
|
|
1875
1875
|
*/
|
|
1876
|
-
ShowSpeakerLabel?: boolean;
|
|
1876
|
+
ShowSpeakerLabel?: boolean | undefined;
|
|
1877
1877
|
/**
|
|
1878
1878
|
* <p>Enables channel identification in multi-channel audio.</p>
|
|
1879
1879
|
* <p>Channel identification transcribes the audio on each channel independently, then appends the
|
|
@@ -1885,7 +1885,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1885
1885
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/channel-id.html">Transcribing multi-channel audio</a>.</p>
|
|
1886
1886
|
* @public
|
|
1887
1887
|
*/
|
|
1888
|
-
EnableChannelIdentification?: boolean;
|
|
1888
|
+
EnableChannelIdentification?: boolean | undefined;
|
|
1889
1889
|
/**
|
|
1890
1890
|
* <p>Specify the number of channels in your audio stream. This value must be
|
|
1891
1891
|
* <code>2</code>, as only two channels are supported. If your audio doesn't contain
|
|
@@ -1894,7 +1894,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1894
1894
|
* include <code>EnableChannelIdentification</code>.</p>
|
|
1895
1895
|
* @public
|
|
1896
1896
|
*/
|
|
1897
|
-
NumberOfChannels?: number;
|
|
1897
|
+
NumberOfChannels?: number | undefined;
|
|
1898
1898
|
/**
|
|
1899
1899
|
* <p>Enables partial result stabilization for your transcription. Partial result stabilization can reduce
|
|
1900
1900
|
* latency in your output, but may impact accuracy. For more information, see
|
|
@@ -1902,7 +1902,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1902
1902
|
* stabilization</a>.</p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
EnablePartialResultsStabilization?: boolean;
|
|
1905
|
+
EnablePartialResultsStabilization?: boolean | undefined;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* <p>Specify the level of stability to use when you enable partial results stabilization
|
|
1908
1908
|
* (<code>EnablePartialResultsStabilization</code>).</p>
|
|
@@ -1912,7 +1912,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1912
1912
|
* stabilization</a>.</p>
|
|
1913
1913
|
* @public
|
|
1914
1914
|
*/
|
|
1915
|
-
PartialResultsStability?: PartialResultsStability;
|
|
1915
|
+
PartialResultsStability?: PartialResultsStability | undefined;
|
|
1916
1916
|
/**
|
|
1917
1917
|
* <p>Labels all personally identifiable information (PII) identified in your transcript.</p>
|
|
1918
1918
|
* <p>Content identification is performed at the segment level; PII specified in
|
|
@@ -1925,7 +1925,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1925
1925
|
* information</a>.</p>
|
|
1926
1926
|
* @public
|
|
1927
1927
|
*/
|
|
1928
|
-
ContentIdentificationType?: ContentIdentificationType;
|
|
1928
|
+
ContentIdentificationType?: ContentIdentificationType | undefined;
|
|
1929
1929
|
/**
|
|
1930
1930
|
* <p>Redacts all personally identifiable information (PII) identified in your transcript.</p>
|
|
1931
1931
|
* <p>Content redaction is performed at the segment level; PII specified in
|
|
@@ -1937,7 +1937,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1937
1937
|
* information</a>.</p>
|
|
1938
1938
|
* @public
|
|
1939
1939
|
*/
|
|
1940
|
-
ContentRedactionType?: ContentRedactionType;
|
|
1940
|
+
ContentRedactionType?: ContentRedactionType | undefined;
|
|
1941
1941
|
/**
|
|
1942
1942
|
* <p>Specify which types of personally identifiable information (PII) you want to redact in your
|
|
1943
1943
|
* transcript. You can include as many types as you'd like, or you can select
|
|
@@ -1955,7 +1955,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1955
1955
|
* <code>PiiEntityTypes</code>, all PII is redacted or identified.</p>
|
|
1956
1956
|
* @public
|
|
1957
1957
|
*/
|
|
1958
|
-
PiiEntityTypes?: string;
|
|
1958
|
+
PiiEntityTypes?: string | undefined;
|
|
1959
1959
|
/**
|
|
1960
1960
|
* <p>Specify the name of the custom language model that you want to use when processing your
|
|
1961
1961
|
* transcription. Note that language model names are case sensitive.</p>
|
|
@@ -1965,7 +1965,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1965
1965
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-language-models.html">Custom language models</a>.</p>
|
|
1966
1966
|
* @public
|
|
1967
1967
|
*/
|
|
1968
|
-
LanguageModelName?: string;
|
|
1968
|
+
LanguageModelName?: string | undefined;
|
|
1969
1969
|
/**
|
|
1970
1970
|
* <p>Enables automatic language identification for your transcription.</p>
|
|
1971
1971
|
* <p>If you include <code>IdentifyLanguage</code>, you must include a list of
|
|
@@ -1984,7 +1984,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
1984
1984
|
* redaction.</p>
|
|
1985
1985
|
* @public
|
|
1986
1986
|
*/
|
|
1987
|
-
IdentifyLanguage?: boolean;
|
|
1987
|
+
IdentifyLanguage?: boolean | undefined;
|
|
1988
1988
|
/**
|
|
1989
1989
|
* <p>Specify two or more language codes that represent the languages you think may be present
|
|
1990
1990
|
* in your media; including more than five is not recommended.</p>
|
|
@@ -2000,7 +2000,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
2000
2000
|
* </important>
|
|
2001
2001
|
* @public
|
|
2002
2002
|
*/
|
|
2003
|
-
LanguageOptions?: string;
|
|
2003
|
+
LanguageOptions?: string | undefined;
|
|
2004
2004
|
/**
|
|
2005
2005
|
* <p>Specify a preferred language from the subset of languages codes you specified in
|
|
2006
2006
|
* <code>LanguageOptions</code>.</p>
|
|
@@ -2008,7 +2008,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
2008
2008
|
* <code>LanguageOptions</code> in your request.</p>
|
|
2009
2009
|
* @public
|
|
2010
2010
|
*/
|
|
2011
|
-
PreferredLanguage?: LanguageCode;
|
|
2011
|
+
PreferredLanguage?: LanguageCode | undefined;
|
|
2012
2012
|
/**
|
|
2013
2013
|
* <p>Enables automatic multi-language identification in your transcription job request. Use this parameter if your stream contains more than one language. If your stream contains only one language, use IdentifyLanguage instead.</p>
|
|
2014
2014
|
* <p>If you include <code>IdentifyMultipleLanguages</code>, you must include a list of language codes, using <code>LanguageOptions</code>, that you think may be present in your stream.</p>
|
|
@@ -2016,7 +2016,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
2016
2016
|
* <p>Note that you must include one of <code>LanguageCode</code>, <code>IdentifyLanguage</code>, or <code>IdentifyMultipleLanguages</code> in your request. If you include more than one of these parameters, your transcription job fails.</p>
|
|
2017
2017
|
* @public
|
|
2018
2018
|
*/
|
|
2019
|
-
IdentifyMultipleLanguages?: boolean;
|
|
2019
|
+
IdentifyMultipleLanguages?: boolean | undefined;
|
|
2020
2020
|
/**
|
|
2021
2021
|
* <p>Specify the names of the custom vocabularies that you want to use when processing your
|
|
2022
2022
|
* transcription. Note that vocabulary names are case sensitive.</p>
|
|
@@ -2031,7 +2031,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
2031
2031
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html">Custom vocabularies</a>.</p>
|
|
2032
2032
|
* @public
|
|
2033
2033
|
*/
|
|
2034
|
-
VocabularyNames?: string;
|
|
2034
|
+
VocabularyNames?: string | undefined;
|
|
2035
2035
|
/**
|
|
2036
2036
|
* <p>Specify the names of the custom vocabulary filters that you want to use when processing
|
|
2037
2037
|
* your transcription. Note that vocabulary filter names are case sensitive.</p>
|
|
@@ -2047,7 +2047,7 @@ export interface StartStreamTranscriptionRequest {
|
|
|
2047
2047
|
* words</a>.</p>
|
|
2048
2048
|
* @public
|
|
2049
2049
|
*/
|
|
2050
|
-
VocabularyFilterNames?: string;
|
|
2050
|
+
VocabularyFilterNames?: string | undefined;
|
|
2051
2051
|
}
|
|
2052
2052
|
/**
|
|
2053
2053
|
* <p>The <code>Transcript</code> associated with a
|
|
@@ -2066,7 +2066,7 @@ export interface Transcript {
|
|
|
2066
2066
|
* transcription-related data.</p>
|
|
2067
2067
|
* @public
|
|
2068
2068
|
*/
|
|
2069
|
-
Results?: Result[];
|
|
2069
|
+
Results?: Result[] | undefined;
|
|
2070
2070
|
}
|
|
2071
2071
|
/**
|
|
2072
2072
|
* <p>The <code>TranscriptEvent</code> associated with a
|
|
@@ -2083,7 +2083,7 @@ export interface TranscriptEvent {
|
|
|
2083
2083
|
* result stabilization, language identification, and other transcription-related data.</p>
|
|
2084
2084
|
* @public
|
|
2085
2085
|
*/
|
|
2086
|
-
Transcript?: Transcript;
|
|
2086
|
+
Transcript?: Transcript | undefined;
|
|
2087
2087
|
}
|
|
2088
2088
|
/**
|
|
2089
2089
|
* <p>Contains detailed information about your streaming session.</p>
|
|
@@ -2210,125 +2210,125 @@ export interface StartStreamTranscriptionResponse {
|
|
|
2210
2210
|
* <p>Provides the identifier for your streaming request.</p>
|
|
2211
2211
|
* @public
|
|
2212
2212
|
*/
|
|
2213
|
-
RequestId?: string;
|
|
2213
|
+
RequestId?: string | undefined;
|
|
2214
2214
|
/**
|
|
2215
2215
|
* <p>Provides the language code that you specified in your request.</p>
|
|
2216
2216
|
* @public
|
|
2217
2217
|
*/
|
|
2218
|
-
LanguageCode?: LanguageCode;
|
|
2218
|
+
LanguageCode?: LanguageCode | undefined;
|
|
2219
2219
|
/**
|
|
2220
2220
|
* <p>Provides the sample rate that you specified in your request.</p>
|
|
2221
2221
|
* @public
|
|
2222
2222
|
*/
|
|
2223
|
-
MediaSampleRateHertz?: number;
|
|
2223
|
+
MediaSampleRateHertz?: number | undefined;
|
|
2224
2224
|
/**
|
|
2225
2225
|
* <p>Provides the media encoding you specified in your request.</p>
|
|
2226
2226
|
* @public
|
|
2227
2227
|
*/
|
|
2228
|
-
MediaEncoding?: MediaEncoding;
|
|
2228
|
+
MediaEncoding?: MediaEncoding | undefined;
|
|
2229
2229
|
/**
|
|
2230
2230
|
* <p>Provides the name of the custom vocabulary that you specified in your request.</p>
|
|
2231
2231
|
* @public
|
|
2232
2232
|
*/
|
|
2233
|
-
VocabularyName?: string;
|
|
2233
|
+
VocabularyName?: string | undefined;
|
|
2234
2234
|
/**
|
|
2235
2235
|
* <p>Provides the identifier for your transcription session.</p>
|
|
2236
2236
|
* @public
|
|
2237
2237
|
*/
|
|
2238
|
-
SessionId?: string;
|
|
2238
|
+
SessionId?: string | undefined;
|
|
2239
2239
|
/**
|
|
2240
2240
|
* <p>Provides detailed information about your streaming session.</p>
|
|
2241
2241
|
* @public
|
|
2242
2242
|
*/
|
|
2243
|
-
TranscriptResultStream?: AsyncIterable<TranscriptResultStream
|
|
2243
|
+
TranscriptResultStream?: AsyncIterable<TranscriptResultStream> | undefined;
|
|
2244
2244
|
/**
|
|
2245
2245
|
* <p>Provides the name of the custom vocabulary filter that you specified in your
|
|
2246
2246
|
* request.</p>
|
|
2247
2247
|
* @public
|
|
2248
2248
|
*/
|
|
2249
|
-
VocabularyFilterName?: string;
|
|
2249
|
+
VocabularyFilterName?: string | undefined;
|
|
2250
2250
|
/**
|
|
2251
2251
|
* <p>Provides the vocabulary filtering method used in your transcription.</p>
|
|
2252
2252
|
* @public
|
|
2253
2253
|
*/
|
|
2254
|
-
VocabularyFilterMethod?: VocabularyFilterMethod;
|
|
2254
|
+
VocabularyFilterMethod?: VocabularyFilterMethod | undefined;
|
|
2255
2255
|
/**
|
|
2256
2256
|
* <p>Shows whether speaker partitioning was enabled for your transcription.</p>
|
|
2257
2257
|
* @public
|
|
2258
2258
|
*/
|
|
2259
|
-
ShowSpeakerLabel?: boolean;
|
|
2259
|
+
ShowSpeakerLabel?: boolean | undefined;
|
|
2260
2260
|
/**
|
|
2261
2261
|
* <p>Shows whether channel identification was enabled for your transcription.</p>
|
|
2262
2262
|
* @public
|
|
2263
2263
|
*/
|
|
2264
|
-
EnableChannelIdentification?: boolean;
|
|
2264
|
+
EnableChannelIdentification?: boolean | undefined;
|
|
2265
2265
|
/**
|
|
2266
2266
|
* <p>Provides the number of channels that you specified in your request.</p>
|
|
2267
2267
|
* @public
|
|
2268
2268
|
*/
|
|
2269
|
-
NumberOfChannels?: number;
|
|
2269
|
+
NumberOfChannels?: number | undefined;
|
|
2270
2270
|
/**
|
|
2271
2271
|
* <p>Shows whether partial results stabilization was enabled for your transcription.</p>
|
|
2272
2272
|
* @public
|
|
2273
2273
|
*/
|
|
2274
|
-
EnablePartialResultsStabilization?: boolean;
|
|
2274
|
+
EnablePartialResultsStabilization?: boolean | undefined;
|
|
2275
2275
|
/**
|
|
2276
2276
|
* <p>Provides the stabilization level used for your transcription.</p>
|
|
2277
2277
|
* @public
|
|
2278
2278
|
*/
|
|
2279
|
-
PartialResultsStability?: PartialResultsStability;
|
|
2279
|
+
PartialResultsStability?: PartialResultsStability | undefined;
|
|
2280
2280
|
/**
|
|
2281
2281
|
* <p>Shows whether content identification was enabled for your transcription.</p>
|
|
2282
2282
|
* @public
|
|
2283
2283
|
*/
|
|
2284
|
-
ContentIdentificationType?: ContentIdentificationType;
|
|
2284
|
+
ContentIdentificationType?: ContentIdentificationType | undefined;
|
|
2285
2285
|
/**
|
|
2286
2286
|
* <p>Shows whether content redaction was enabled for your transcription.</p>
|
|
2287
2287
|
* @public
|
|
2288
2288
|
*/
|
|
2289
|
-
ContentRedactionType?: ContentRedactionType;
|
|
2289
|
+
ContentRedactionType?: ContentRedactionType | undefined;
|
|
2290
2290
|
/**
|
|
2291
2291
|
* <p>Lists the PII entity types you specified in your request.</p>
|
|
2292
2292
|
* @public
|
|
2293
2293
|
*/
|
|
2294
|
-
PiiEntityTypes?: string;
|
|
2294
|
+
PiiEntityTypes?: string | undefined;
|
|
2295
2295
|
/**
|
|
2296
2296
|
* <p>Provides the name of the custom language model that you specified in your request.</p>
|
|
2297
2297
|
* @public
|
|
2298
2298
|
*/
|
|
2299
|
-
LanguageModelName?: string;
|
|
2299
|
+
LanguageModelName?: string | undefined;
|
|
2300
2300
|
/**
|
|
2301
2301
|
* <p>Shows whether automatic language identification was enabled for your
|
|
2302
2302
|
* transcription.</p>
|
|
2303
2303
|
* @public
|
|
2304
2304
|
*/
|
|
2305
|
-
IdentifyLanguage?: boolean;
|
|
2305
|
+
IdentifyLanguage?: boolean | undefined;
|
|
2306
2306
|
/**
|
|
2307
2307
|
* <p>Provides the language codes that you specified in your request.</p>
|
|
2308
2308
|
* @public
|
|
2309
2309
|
*/
|
|
2310
|
-
LanguageOptions?: string;
|
|
2310
|
+
LanguageOptions?: string | undefined;
|
|
2311
2311
|
/**
|
|
2312
2312
|
* <p>Provides the preferred language that you specified in your request.</p>
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
PreferredLanguage?: LanguageCode;
|
|
2315
|
+
PreferredLanguage?: LanguageCode | undefined;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* <p>Shows whether automatic multi-language identification was enabled for your transcription.</p>
|
|
2318
2318
|
* @public
|
|
2319
2319
|
*/
|
|
2320
|
-
IdentifyMultipleLanguages?: boolean;
|
|
2320
|
+
IdentifyMultipleLanguages?: boolean | undefined;
|
|
2321
2321
|
/**
|
|
2322
2322
|
* <p>Provides the names of the custom vocabularies that you specified in your request.</p>
|
|
2323
2323
|
* @public
|
|
2324
2324
|
*/
|
|
2325
|
-
VocabularyNames?: string;
|
|
2325
|
+
VocabularyNames?: string | undefined;
|
|
2326
2326
|
/**
|
|
2327
2327
|
* <p>Provides the names of the custom vocabulary filters that you specified in your
|
|
2328
2328
|
* request.</p>
|
|
2329
2329
|
* @public
|
|
2330
2330
|
*/
|
|
2331
|
-
VocabularyFilterNames?: string;
|
|
2331
|
+
VocabularyFilterNames?: string | undefined;
|
|
2332
2332
|
}
|
|
2333
2333
|
/**
|
|
2334
2334
|
* @internal
|