@aws-sdk/client-chime-sdk-media-pipelines 3.934.0 → 3.936.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.
@@ -0,0 +1,604 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ActiveSpeakerPosition: {
6
+ readonly BottomLeft: "BottomLeft";
7
+ readonly BottomRight: "BottomRight";
8
+ readonly TopLeft: "TopLeft";
9
+ readonly TopRight: "TopRight";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type ActiveSpeakerPosition = (typeof ActiveSpeakerPosition)[keyof typeof ActiveSpeakerPosition];
15
+ /**
16
+ * @public
17
+ * @enum
18
+ */
19
+ export declare const ContentType: {
20
+ readonly PII: "PII";
21
+ };
22
+ /**
23
+ * @public
24
+ */
25
+ export type ContentType = (typeof ContentType)[keyof typeof ContentType];
26
+ /**
27
+ * @public
28
+ * @enum
29
+ */
30
+ export declare const CallAnalyticsLanguageCode: {
31
+ readonly DE_DE: "de-DE";
32
+ readonly EN_AU: "en-AU";
33
+ readonly EN_GB: "en-GB";
34
+ readonly EN_US: "en-US";
35
+ readonly ES_US: "es-US";
36
+ readonly FR_CA: "fr-CA";
37
+ readonly FR_FR: "fr-FR";
38
+ readonly IT_IT: "it-IT";
39
+ readonly PT_BR: "pt-BR";
40
+ };
41
+ /**
42
+ * @public
43
+ */
44
+ export type CallAnalyticsLanguageCode = (typeof CallAnalyticsLanguageCode)[keyof typeof CallAnalyticsLanguageCode];
45
+ /**
46
+ * @public
47
+ * @enum
48
+ */
49
+ export declare const PartialResultsStability: {
50
+ readonly HIGH: "high";
51
+ readonly LOW: "low";
52
+ readonly MEDIUM: "medium";
53
+ };
54
+ /**
55
+ * @public
56
+ */
57
+ export type PartialResultsStability = (typeof PartialResultsStability)[keyof typeof PartialResultsStability];
58
+ /**
59
+ * @public
60
+ * @enum
61
+ */
62
+ export declare const ContentRedactionOutput: {
63
+ readonly REDACTED: "redacted";
64
+ readonly REDACTED_AND_UNREDACTED: "redacted_and_unredacted";
65
+ };
66
+ /**
67
+ * @public
68
+ */
69
+ export type ContentRedactionOutput = (typeof ContentRedactionOutput)[keyof typeof ContentRedactionOutput];
70
+ /**
71
+ * @public
72
+ * @enum
73
+ */
74
+ export declare const VocabularyFilterMethod: {
75
+ readonly MASK: "mask";
76
+ readonly REMOVE: "remove";
77
+ readonly TAG: "tag";
78
+ };
79
+ /**
80
+ * @public
81
+ */
82
+ export type VocabularyFilterMethod = (typeof VocabularyFilterMethod)[keyof typeof VocabularyFilterMethod];
83
+ /**
84
+ * @public
85
+ * @enum
86
+ */
87
+ export declare const AudioArtifactsConcatenationState: {
88
+ readonly Enabled: "Enabled";
89
+ };
90
+ /**
91
+ * @public
92
+ */
93
+ export type AudioArtifactsConcatenationState = (typeof AudioArtifactsConcatenationState)[keyof typeof AudioArtifactsConcatenationState];
94
+ /**
95
+ * @public
96
+ * @enum
97
+ */
98
+ export declare const ArtifactsConcatenationState: {
99
+ readonly Disabled: "Disabled";
100
+ readonly Enabled: "Enabled";
101
+ };
102
+ /**
103
+ * @public
104
+ */
105
+ export type ArtifactsConcatenationState = (typeof ArtifactsConcatenationState)[keyof typeof ArtifactsConcatenationState];
106
+ /**
107
+ * @public
108
+ * @enum
109
+ */
110
+ export declare const AudioMuxType: {
111
+ readonly AudioOnly: "AudioOnly";
112
+ readonly AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo";
113
+ readonly AudioWithCompositedVideo: "AudioWithCompositedVideo";
114
+ };
115
+ /**
116
+ * @public
117
+ */
118
+ export type AudioMuxType = (typeof AudioMuxType)[keyof typeof AudioMuxType];
119
+ /**
120
+ * @public
121
+ * @enum
122
+ */
123
+ export declare const CanvasOrientation: {
124
+ readonly Landscape: "Landscape";
125
+ readonly Portrait: "Portrait";
126
+ };
127
+ /**
128
+ * @public
129
+ */
130
+ export type CanvasOrientation = (typeof CanvasOrientation)[keyof typeof CanvasOrientation];
131
+ /**
132
+ * @public
133
+ * @enum
134
+ */
135
+ export declare const ContentShareLayoutOption: {
136
+ readonly ActiveSpeakerOnly: "ActiveSpeakerOnly";
137
+ readonly Horizontal: "Horizontal";
138
+ readonly PresenterOnly: "PresenterOnly";
139
+ readonly Vertical: "Vertical";
140
+ };
141
+ /**
142
+ * @public
143
+ */
144
+ export type ContentShareLayoutOption = (typeof ContentShareLayoutOption)[keyof typeof ContentShareLayoutOption];
145
+ /**
146
+ * @public
147
+ * @enum
148
+ */
149
+ export declare const TileOrder: {
150
+ readonly JoinSequence: "JoinSequence";
151
+ readonly SpeakerSequence: "SpeakerSequence";
152
+ };
153
+ /**
154
+ * @public
155
+ */
156
+ export type TileOrder = (typeof TileOrder)[keyof typeof TileOrder];
157
+ /**
158
+ * @public
159
+ * @enum
160
+ */
161
+ export declare const HorizontalTilePosition: {
162
+ readonly Bottom: "Bottom";
163
+ readonly Top: "Top";
164
+ };
165
+ /**
166
+ * @public
167
+ */
168
+ export type HorizontalTilePosition = (typeof HorizontalTilePosition)[keyof typeof HorizontalTilePosition];
169
+ /**
170
+ * @public
171
+ * @enum
172
+ */
173
+ export declare const PresenterPosition: {
174
+ readonly BottomLeft: "BottomLeft";
175
+ readonly BottomRight: "BottomRight";
176
+ readonly TopLeft: "TopLeft";
177
+ readonly TopRight: "TopRight";
178
+ };
179
+ /**
180
+ * @public
181
+ */
182
+ export type PresenterPosition = (typeof PresenterPosition)[keyof typeof PresenterPosition];
183
+ /**
184
+ * @public
185
+ * @enum
186
+ */
187
+ export declare const VerticalTilePosition: {
188
+ readonly Left: "Left";
189
+ readonly Right: "Right";
190
+ };
191
+ /**
192
+ * @public
193
+ */
194
+ export type VerticalTilePosition = (typeof VerticalTilePosition)[keyof typeof VerticalTilePosition];
195
+ /**
196
+ * @public
197
+ * @enum
198
+ */
199
+ export declare const BorderColor: {
200
+ readonly Black: "Black";
201
+ readonly Blue: "Blue";
202
+ readonly Green: "Green";
203
+ readonly Red: "Red";
204
+ readonly White: "White";
205
+ readonly Yellow: "Yellow";
206
+ };
207
+ /**
208
+ * @public
209
+ */
210
+ export type BorderColor = (typeof BorderColor)[keyof typeof BorderColor];
211
+ /**
212
+ * @public
213
+ * @enum
214
+ */
215
+ export declare const HighlightColor: {
216
+ readonly Black: "Black";
217
+ readonly Blue: "Blue";
218
+ readonly Green: "Green";
219
+ readonly Red: "Red";
220
+ readonly White: "White";
221
+ readonly Yellow: "Yellow";
222
+ };
223
+ /**
224
+ * @public
225
+ */
226
+ export type HighlightColor = (typeof HighlightColor)[keyof typeof HighlightColor];
227
+ /**
228
+ * @public
229
+ * @enum
230
+ */
231
+ export declare const LayoutOption: {
232
+ readonly GridView: "GridView";
233
+ };
234
+ /**
235
+ * @public
236
+ */
237
+ export type LayoutOption = (typeof LayoutOption)[keyof typeof LayoutOption];
238
+ /**
239
+ * @public
240
+ * @enum
241
+ */
242
+ export declare const ResolutionOption: {
243
+ readonly FHD: "FHD";
244
+ readonly HD: "HD";
245
+ };
246
+ /**
247
+ * @public
248
+ */
249
+ export type ResolutionOption = (typeof ResolutionOption)[keyof typeof ResolutionOption];
250
+ /**
251
+ * @public
252
+ * @enum
253
+ */
254
+ export declare const ContentMuxType: {
255
+ readonly ContentOnly: "ContentOnly";
256
+ };
257
+ /**
258
+ * @public
259
+ */
260
+ export type ContentMuxType = (typeof ContentMuxType)[keyof typeof ContentMuxType];
261
+ /**
262
+ * @public
263
+ * @enum
264
+ */
265
+ export declare const ArtifactsState: {
266
+ readonly Disabled: "Disabled";
267
+ readonly Enabled: "Enabled";
268
+ };
269
+ /**
270
+ * @public
271
+ */
272
+ export type ArtifactsState = (typeof ArtifactsState)[keyof typeof ArtifactsState];
273
+ /**
274
+ * @public
275
+ * @enum
276
+ */
277
+ export declare const VideoMuxType: {
278
+ readonly VideoOnly: "VideoOnly";
279
+ };
280
+ /**
281
+ * @public
282
+ */
283
+ export type VideoMuxType = (typeof VideoMuxType)[keyof typeof VideoMuxType];
284
+ /**
285
+ * @public
286
+ * @enum
287
+ */
288
+ export declare const AudioChannelsOption: {
289
+ readonly Mono: "Mono";
290
+ readonly Stereo: "Stereo";
291
+ };
292
+ /**
293
+ * @public
294
+ */
295
+ export type AudioChannelsOption = (typeof AudioChannelsOption)[keyof typeof AudioChannelsOption];
296
+ /**
297
+ * @public
298
+ * @enum
299
+ */
300
+ export declare const ErrorCode: {
301
+ readonly BadRequest: "BadRequest";
302
+ readonly Forbidden: "Forbidden";
303
+ readonly NotFound: "NotFound";
304
+ readonly ResourceLimitExceeded: "ResourceLimitExceeded";
305
+ readonly ServiceFailure: "ServiceFailure";
306
+ readonly ServiceUnavailable: "ServiceUnavailable";
307
+ readonly Throttling: "Throttling";
308
+ };
309
+ /**
310
+ * @public
311
+ */
312
+ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
313
+ /**
314
+ * @public
315
+ * @enum
316
+ */
317
+ export declare const ParticipantRole: {
318
+ readonly AGENT: "AGENT";
319
+ readonly CUSTOMER: "CUSTOMER";
320
+ };
321
+ /**
322
+ * @public
323
+ */
324
+ export type ParticipantRole = (typeof ParticipantRole)[keyof typeof ParticipantRole];
325
+ /**
326
+ * @public
327
+ * @enum
328
+ */
329
+ export declare const MediaPipelineSinkType: {
330
+ readonly S3Bucket: "S3Bucket";
331
+ };
332
+ /**
333
+ * @public
334
+ */
335
+ export type MediaPipelineSinkType = (typeof MediaPipelineSinkType)[keyof typeof MediaPipelineSinkType];
336
+ /**
337
+ * @public
338
+ * @enum
339
+ */
340
+ export declare const MediaPipelineSourceType: {
341
+ readonly ChimeSdkMeeting: "ChimeSdkMeeting";
342
+ };
343
+ /**
344
+ * @public
345
+ */
346
+ export type MediaPipelineSourceType = (typeof MediaPipelineSourceType)[keyof typeof MediaPipelineSourceType];
347
+ /**
348
+ * @public
349
+ * @enum
350
+ */
351
+ export declare const MediaPipelineStatus: {
352
+ readonly Failed: "Failed";
353
+ readonly InProgress: "InProgress";
354
+ readonly Initializing: "Initializing";
355
+ readonly NotStarted: "NotStarted";
356
+ readonly Paused: "Paused";
357
+ readonly Stopped: "Stopped";
358
+ readonly Stopping: "Stopping";
359
+ };
360
+ /**
361
+ * @public
362
+ */
363
+ export type MediaPipelineStatus = (typeof MediaPipelineStatus)[keyof typeof MediaPipelineStatus];
364
+ /**
365
+ * @public
366
+ * @enum
367
+ */
368
+ export declare const ConcatenationSinkType: {
369
+ readonly S3Bucket: "S3Bucket";
370
+ };
371
+ /**
372
+ * @public
373
+ */
374
+ export type ConcatenationSinkType = (typeof ConcatenationSinkType)[keyof typeof ConcatenationSinkType];
375
+ /**
376
+ * @public
377
+ * @enum
378
+ */
379
+ export declare const ConcatenationSourceType: {
380
+ readonly MediaCapturePipeline: "MediaCapturePipeline";
381
+ };
382
+ /**
383
+ * @public
384
+ */
385
+ export type ConcatenationSourceType = (typeof ConcatenationSourceType)[keyof typeof ConcatenationSourceType];
386
+ /**
387
+ * @public
388
+ * @enum
389
+ */
390
+ export declare const FragmentSelectorType: {
391
+ readonly ProducerTimestamp: "ProducerTimestamp";
392
+ readonly ServerTimestamp: "ServerTimestamp";
393
+ };
394
+ /**
395
+ * @public
396
+ */
397
+ export type FragmentSelectorType = (typeof FragmentSelectorType)[keyof typeof FragmentSelectorType];
398
+ /**
399
+ * @public
400
+ * @enum
401
+ */
402
+ export declare const MediaEncoding: {
403
+ readonly PCM: "pcm";
404
+ };
405
+ /**
406
+ * @public
407
+ */
408
+ export type MediaEncoding = (typeof MediaEncoding)[keyof typeof MediaEncoding];
409
+ /**
410
+ * @public
411
+ * @enum
412
+ */
413
+ export declare const RecordingFileFormat: {
414
+ readonly Opus: "Opus";
415
+ readonly Wav: "Wav";
416
+ };
417
+ /**
418
+ * @public
419
+ */
420
+ export type RecordingFileFormat = (typeof RecordingFileFormat)[keyof typeof RecordingFileFormat];
421
+ /**
422
+ * @public
423
+ * @enum
424
+ */
425
+ export declare const MediaPipelineElementStatus: {
426
+ readonly Failed: "Failed";
427
+ readonly InProgress: "InProgress";
428
+ readonly Initializing: "Initializing";
429
+ readonly NotStarted: "NotStarted";
430
+ readonly NotSupported: "NotSupported";
431
+ readonly Paused: "Paused";
432
+ readonly Stopped: "Stopped";
433
+ readonly Stopping: "Stopping";
434
+ };
435
+ /**
436
+ * @public
437
+ */
438
+ export type MediaPipelineElementStatus = (typeof MediaPipelineElementStatus)[keyof typeof MediaPipelineElementStatus];
439
+ /**
440
+ * @public
441
+ * @enum
442
+ */
443
+ export declare const MediaInsightsPipelineConfigurationElementType: {
444
+ readonly AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR: "AmazonTranscribeCallAnalyticsProcessor";
445
+ readonly AMAZON_TRANSCRIBE_PROCESSOR: "AmazonTranscribeProcessor";
446
+ readonly KINESIS_DATA_STREAM_SINK: "KinesisDataStreamSink";
447
+ readonly LAMBDA_FUNCTION_SINK: "LambdaFunctionSink";
448
+ readonly S3_RECORDING_SINK: "S3RecordingSink";
449
+ readonly SNS_TOPIC_SINK: "SnsTopicSink";
450
+ readonly SQS_QUEUE_SINK: "SqsQueueSink";
451
+ readonly VOICE_ANALYTICS_PROCESSOR: "VoiceAnalyticsProcessor";
452
+ readonly VOICE_ENHANCEMENT_SINK: "VoiceEnhancementSink";
453
+ };
454
+ /**
455
+ * @public
456
+ */
457
+ export type MediaInsightsPipelineConfigurationElementType = (typeof MediaInsightsPipelineConfigurationElementType)[keyof typeof MediaInsightsPipelineConfigurationElementType];
458
+ /**
459
+ * @public
460
+ * @enum
461
+ */
462
+ export declare const VoiceAnalyticsConfigurationStatus: {
463
+ readonly DISABLED: "Disabled";
464
+ readonly ENABLED: "Enabled";
465
+ };
466
+ /**
467
+ * @public
468
+ */
469
+ export type VoiceAnalyticsConfigurationStatus = (typeof VoiceAnalyticsConfigurationStatus)[keyof typeof VoiceAnalyticsConfigurationStatus];
470
+ /**
471
+ * @public
472
+ * @enum
473
+ */
474
+ export declare const SentimentType: {
475
+ readonly NEGATIVE: "NEGATIVE";
476
+ };
477
+ /**
478
+ * @public
479
+ */
480
+ export type SentimentType = (typeof SentimentType)[keyof typeof SentimentType];
481
+ /**
482
+ * @public
483
+ * @enum
484
+ */
485
+ export declare const RealTimeAlertRuleType: {
486
+ readonly IssueDetection: "IssueDetection";
487
+ readonly KeywordMatch: "KeywordMatch";
488
+ readonly Sentiment: "Sentiment";
489
+ };
490
+ /**
491
+ * @public
492
+ */
493
+ export type RealTimeAlertRuleType = (typeof RealTimeAlertRuleType)[keyof typeof RealTimeAlertRuleType];
494
+ /**
495
+ * @public
496
+ * @enum
497
+ */
498
+ export declare const LiveConnectorSinkType: {
499
+ readonly RTMP: "RTMP";
500
+ };
501
+ /**
502
+ * @public
503
+ */
504
+ export type LiveConnectorSinkType = (typeof LiveConnectorSinkType)[keyof typeof LiveConnectorSinkType];
505
+ /**
506
+ * @public
507
+ * @enum
508
+ */
509
+ export declare const LiveConnectorMuxType: {
510
+ readonly AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo";
511
+ readonly AudioWithCompositedVideo: "AudioWithCompositedVideo";
512
+ };
513
+ /**
514
+ * @public
515
+ */
516
+ export type LiveConnectorMuxType = (typeof LiveConnectorMuxType)[keyof typeof LiveConnectorMuxType];
517
+ /**
518
+ * @public
519
+ * @enum
520
+ */
521
+ export declare const LiveConnectorSourceType: {
522
+ readonly ChimeSdkMeeting: "ChimeSdkMeeting";
523
+ };
524
+ /**
525
+ * @public
526
+ */
527
+ export type LiveConnectorSourceType = (typeof LiveConnectorSourceType)[keyof typeof LiveConnectorSourceType];
528
+ /**
529
+ * @public
530
+ * @enum
531
+ */
532
+ export declare const KinesisVideoStreamPoolStatus: {
533
+ readonly ACTIVE: "ACTIVE";
534
+ readonly CREATING: "CREATING";
535
+ readonly DELETING: "DELETING";
536
+ readonly FAILED: "FAILED";
537
+ readonly UPDATING: "UPDATING";
538
+ };
539
+ /**
540
+ * @public
541
+ */
542
+ export type KinesisVideoStreamPoolStatus = (typeof KinesisVideoStreamPoolStatus)[keyof typeof KinesisVideoStreamPoolStatus];
543
+ /**
544
+ * @public
545
+ * @enum
546
+ */
547
+ export declare const MediaStreamType: {
548
+ readonly IndividualAudio: "IndividualAudio";
549
+ readonly MixedAudio: "MixedAudio";
550
+ };
551
+ /**
552
+ * @public
553
+ */
554
+ export type MediaStreamType = (typeof MediaStreamType)[keyof typeof MediaStreamType];
555
+ /**
556
+ * @public
557
+ * @enum
558
+ */
559
+ export declare const MediaStreamPipelineSinkType: {
560
+ readonly KinesisVideoStreamPool: "KinesisVideoStreamPool";
561
+ };
562
+ /**
563
+ * @public
564
+ */
565
+ export type MediaStreamPipelineSinkType = (typeof MediaStreamPipelineSinkType)[keyof typeof MediaStreamPipelineSinkType];
566
+ /**
567
+ * @public
568
+ * @enum
569
+ */
570
+ export declare const MediaPipelineTaskStatus: {
571
+ readonly Failed: "Failed";
572
+ readonly InProgress: "InProgress";
573
+ readonly Initializing: "Initializing";
574
+ readonly NotStarted: "NotStarted";
575
+ readonly Stopped: "Stopped";
576
+ readonly Stopping: "Stopping";
577
+ };
578
+ /**
579
+ * @public
580
+ */
581
+ export type MediaPipelineTaskStatus = (typeof MediaPipelineTaskStatus)[keyof typeof MediaPipelineTaskStatus];
582
+ /**
583
+ * @public
584
+ * @enum
585
+ */
586
+ export declare const VoiceAnalyticsLanguageCode: {
587
+ readonly EN_US: "en-US";
588
+ };
589
+ /**
590
+ * @public
591
+ */
592
+ export type VoiceAnalyticsLanguageCode = (typeof VoiceAnalyticsLanguageCode)[keyof typeof VoiceAnalyticsLanguageCode];
593
+ /**
594
+ * @public
595
+ * @enum
596
+ */
597
+ export declare const MediaPipelineStatusUpdate: {
598
+ readonly Pause: "Pause";
599
+ readonly Resume: "Resume";
600
+ };
601
+ /**
602
+ * @public
603
+ */
604
+ export type MediaPipelineStatusUpdate = (typeof MediaPipelineStatusUpdate)[keyof typeof MediaPipelineStatusUpdate];