@aws-sdk/client-chime-sdk-media-pipelines 3.934.0 → 3.935.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.
@@ -1,59 +1,60 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { ChimeSDKMediaPipelinesServiceException as __BaseException } from "./ChimeSDKMediaPipelinesServiceException";
3
- export declare const ActiveSpeakerPosition: {
4
- readonly BottomLeft: "BottomLeft";
5
- readonly BottomRight: "BottomRight";
6
- readonly TopLeft: "TopLeft";
7
- readonly TopRight: "TopRight";
8
- };
9
- export type ActiveSpeakerPosition =
10
- (typeof ActiveSpeakerPosition)[keyof typeof ActiveSpeakerPosition];
1
+ import {
2
+ ActiveSpeakerPosition,
3
+ ArtifactsConcatenationState,
4
+ ArtifactsState,
5
+ AudioArtifactsConcatenationState,
6
+ AudioChannelsOption,
7
+ AudioMuxType,
8
+ BorderColor,
9
+ CallAnalyticsLanguageCode,
10
+ CanvasOrientation,
11
+ ConcatenationSinkType,
12
+ ConcatenationSourceType,
13
+ ContentMuxType,
14
+ ContentRedactionOutput,
15
+ ContentShareLayoutOption,
16
+ ContentType,
17
+ FragmentSelectorType,
18
+ HighlightColor,
19
+ HorizontalTilePosition,
20
+ KinesisVideoStreamPoolStatus,
21
+ LayoutOption,
22
+ LiveConnectorMuxType,
23
+ LiveConnectorSinkType,
24
+ LiveConnectorSourceType,
25
+ MediaEncoding,
26
+ MediaInsightsPipelineConfigurationElementType,
27
+ MediaPipelineElementStatus,
28
+ MediaPipelineSinkType,
29
+ MediaPipelineSourceType,
30
+ MediaPipelineStatus,
31
+ MediaPipelineStatusUpdate,
32
+ MediaPipelineTaskStatus,
33
+ MediaStreamPipelineSinkType,
34
+ MediaStreamType,
35
+ PartialResultsStability,
36
+ ParticipantRole,
37
+ PresenterPosition,
38
+ RealTimeAlertRuleType,
39
+ RecordingFileFormat,
40
+ ResolutionOption,
41
+ SentimentType,
42
+ TileOrder,
43
+ VerticalTilePosition,
44
+ VideoMuxType,
45
+ VocabularyFilterMethod,
46
+ VoiceAnalyticsConfigurationStatus,
47
+ VoiceAnalyticsLanguageCode,
48
+ } from "./enums";
11
49
  export interface ActiveSpeakerOnlyConfiguration {
12
50
  ActiveSpeakerPosition?: ActiveSpeakerPosition | undefined;
13
51
  }
14
- export declare const ContentType: {
15
- readonly PII: "PII";
16
- };
17
- export type ContentType = (typeof ContentType)[keyof typeof ContentType];
18
- export declare const CallAnalyticsLanguageCode: {
19
- readonly DE_DE: "de-DE";
20
- readonly EN_AU: "en-AU";
21
- readonly EN_GB: "en-GB";
22
- readonly EN_US: "en-US";
23
- readonly ES_US: "es-US";
24
- readonly FR_CA: "fr-CA";
25
- readonly FR_FR: "fr-FR";
26
- readonly IT_IT: "it-IT";
27
- readonly PT_BR: "pt-BR";
28
- };
29
- export type CallAnalyticsLanguageCode =
30
- (typeof CallAnalyticsLanguageCode)[keyof typeof CallAnalyticsLanguageCode];
31
- export declare const PartialResultsStability: {
32
- readonly HIGH: "high";
33
- readonly LOW: "low";
34
- readonly MEDIUM: "medium";
35
- };
36
- export type PartialResultsStability =
37
- (typeof PartialResultsStability)[keyof typeof PartialResultsStability];
38
- export declare const ContentRedactionOutput: {
39
- readonly REDACTED: "redacted";
40
- readonly REDACTED_AND_UNREDACTED: "redacted_and_unredacted";
41
- };
42
- export type ContentRedactionOutput =
43
- (typeof ContentRedactionOutput)[keyof typeof ContentRedactionOutput];
44
52
  export interface PostCallAnalyticsSettings {
45
53
  OutputLocation: string | undefined;
46
54
  DataAccessRoleArn: string | undefined;
47
55
  ContentRedactionOutput?: ContentRedactionOutput | undefined;
48
56
  OutputEncryptionKMSKeyId?: string | undefined;
49
57
  }
50
- export declare const VocabularyFilterMethod: {
51
- readonly MASK: "mask";
52
- readonly REMOVE: "remove";
53
- readonly TAG: "tag";
54
- };
55
- export type VocabularyFilterMethod =
56
- (typeof VocabularyFilterMethod)[keyof typeof VocabularyFilterMethod];
57
58
  export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
58
59
  LanguageCode: CallAnalyticsLanguageCode | undefined;
59
60
  VocabularyName?: string | undefined;
@@ -89,20 +90,9 @@ export interface AmazonTranscribeProcessorConfiguration {
89
90
  VocabularyNames?: string | undefined;
90
91
  VocabularyFilterNames?: string | undefined;
91
92
  }
92
- export declare const AudioArtifactsConcatenationState: {
93
- readonly Enabled: "Enabled";
94
- };
95
- export type AudioArtifactsConcatenationState =
96
- (typeof AudioArtifactsConcatenationState)[keyof typeof AudioArtifactsConcatenationState];
97
93
  export interface AudioConcatenationConfiguration {
98
94
  State: AudioArtifactsConcatenationState | undefined;
99
95
  }
100
- export declare const ArtifactsConcatenationState: {
101
- readonly Disabled: "Disabled";
102
- readonly Enabled: "Enabled";
103
- };
104
- export type ArtifactsConcatenationState =
105
- (typeof ArtifactsConcatenationState)[keyof typeof ArtifactsConcatenationState];
106
96
  export interface CompositedVideoConcatenationConfiguration {
107
97
  State: ArtifactsConcatenationState | undefined;
108
98
  }
@@ -132,88 +122,24 @@ export interface ArtifactsConcatenationConfiguration {
132
122
  MeetingEvents: MeetingEventsConcatenationConfiguration | undefined;
133
123
  CompositedVideo: CompositedVideoConcatenationConfiguration | undefined;
134
124
  }
135
- export declare const AudioMuxType: {
136
- readonly AudioOnly: "AudioOnly";
137
- readonly AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo";
138
- readonly AudioWithCompositedVideo: "AudioWithCompositedVideo";
139
- };
140
- export type AudioMuxType = (typeof AudioMuxType)[keyof typeof AudioMuxType];
141
125
  export interface AudioArtifactsConfiguration {
142
126
  MuxType: AudioMuxType | undefined;
143
127
  }
144
- export declare const CanvasOrientation: {
145
- readonly Landscape: "Landscape";
146
- readonly Portrait: "Portrait";
147
- };
148
- export type CanvasOrientation =
149
- (typeof CanvasOrientation)[keyof typeof CanvasOrientation];
150
- export declare const ContentShareLayoutOption: {
151
- readonly ActiveSpeakerOnly: "ActiveSpeakerOnly";
152
- readonly Horizontal: "Horizontal";
153
- readonly PresenterOnly: "PresenterOnly";
154
- readonly Vertical: "Vertical";
155
- };
156
- export type ContentShareLayoutOption =
157
- (typeof ContentShareLayoutOption)[keyof typeof ContentShareLayoutOption];
158
- export declare const TileOrder: {
159
- readonly JoinSequence: "JoinSequence";
160
- readonly SpeakerSequence: "SpeakerSequence";
161
- };
162
- export type TileOrder = (typeof TileOrder)[keyof typeof TileOrder];
163
- export declare const HorizontalTilePosition: {
164
- readonly Bottom: "Bottom";
165
- readonly Top: "Top";
166
- };
167
- export type HorizontalTilePosition =
168
- (typeof HorizontalTilePosition)[keyof typeof HorizontalTilePosition];
169
128
  export interface HorizontalLayoutConfiguration {
170
129
  TileOrder?: TileOrder | undefined;
171
130
  TilePosition?: HorizontalTilePosition | undefined;
172
131
  TileCount?: number | undefined;
173
132
  TileAspectRatio?: string | undefined;
174
133
  }
175
- export declare const PresenterPosition: {
176
- readonly BottomLeft: "BottomLeft";
177
- readonly BottomRight: "BottomRight";
178
- readonly TopLeft: "TopLeft";
179
- readonly TopRight: "TopRight";
180
- };
181
- export type PresenterPosition =
182
- (typeof PresenterPosition)[keyof typeof PresenterPosition];
183
134
  export interface PresenterOnlyConfiguration {
184
135
  PresenterPosition?: PresenterPosition | undefined;
185
136
  }
186
- export declare const VerticalTilePosition: {
187
- readonly Left: "Left";
188
- readonly Right: "Right";
189
- };
190
- export type VerticalTilePosition =
191
- (typeof VerticalTilePosition)[keyof typeof VerticalTilePosition];
192
137
  export interface VerticalLayoutConfiguration {
193
138
  TileOrder?: TileOrder | undefined;
194
139
  TilePosition?: VerticalTilePosition | undefined;
195
140
  TileCount?: number | undefined;
196
141
  TileAspectRatio?: string | undefined;
197
142
  }
198
- export declare const BorderColor: {
199
- readonly Black: "Black";
200
- readonly Blue: "Blue";
201
- readonly Green: "Green";
202
- readonly Red: "Red";
203
- readonly White: "White";
204
- readonly Yellow: "Yellow";
205
- };
206
- export type BorderColor = (typeof BorderColor)[keyof typeof BorderColor];
207
- export declare const HighlightColor: {
208
- readonly Black: "Black";
209
- readonly Blue: "Blue";
210
- readonly Green: "Green";
211
- readonly Red: "Red";
212
- readonly White: "White";
213
- readonly Yellow: "Yellow";
214
- };
215
- export type HighlightColor =
216
- (typeof HighlightColor)[keyof typeof HighlightColor];
217
143
  export interface VideoAttribute {
218
144
  CornerRadius?: number | undefined;
219
145
  BorderColor?: BorderColor | undefined;
@@ -229,40 +155,15 @@ export interface GridViewConfiguration {
229
155
  VideoAttribute?: VideoAttribute | undefined;
230
156
  CanvasOrientation?: CanvasOrientation | undefined;
231
157
  }
232
- export declare const LayoutOption: {
233
- readonly GridView: "GridView";
234
- };
235
- export type LayoutOption = (typeof LayoutOption)[keyof typeof LayoutOption];
236
- export declare const ResolutionOption: {
237
- readonly FHD: "FHD";
238
- readonly HD: "HD";
239
- };
240
- export type ResolutionOption =
241
- (typeof ResolutionOption)[keyof typeof ResolutionOption];
242
158
  export interface CompositedVideoArtifactsConfiguration {
243
159
  Layout?: LayoutOption | undefined;
244
160
  Resolution?: ResolutionOption | undefined;
245
161
  GridViewConfiguration: GridViewConfiguration | undefined;
246
162
  }
247
- export declare const ContentMuxType: {
248
- readonly ContentOnly: "ContentOnly";
249
- };
250
- export type ContentMuxType =
251
- (typeof ContentMuxType)[keyof typeof ContentMuxType];
252
- export declare const ArtifactsState: {
253
- readonly Disabled: "Disabled";
254
- readonly Enabled: "Enabled";
255
- };
256
- export type ArtifactsState =
257
- (typeof ArtifactsState)[keyof typeof ArtifactsState];
258
163
  export interface ContentArtifactsConfiguration {
259
164
  State: ArtifactsState | undefined;
260
165
  MuxType?: ContentMuxType | undefined;
261
166
  }
262
- export declare const VideoMuxType: {
263
- readonly VideoOnly: "VideoOnly";
264
- };
265
- export type VideoMuxType = (typeof VideoMuxType)[keyof typeof VideoMuxType];
266
167
  export interface VideoArtifactsConfiguration {
267
168
  State: ArtifactsState | undefined;
268
169
  MuxType?: VideoMuxType | undefined;
@@ -273,38 +174,6 @@ export interface ArtifactsConfiguration {
273
174
  Content: ContentArtifactsConfiguration | undefined;
274
175
  CompositedVideo?: CompositedVideoArtifactsConfiguration | undefined;
275
176
  }
276
- export declare const AudioChannelsOption: {
277
- readonly Mono: "Mono";
278
- readonly Stereo: "Stereo";
279
- };
280
- export type AudioChannelsOption =
281
- (typeof AudioChannelsOption)[keyof typeof AudioChannelsOption];
282
- export declare const ErrorCode: {
283
- readonly BadRequest: "BadRequest";
284
- readonly Forbidden: "Forbidden";
285
- readonly NotFound: "NotFound";
286
- readonly ResourceLimitExceeded: "ResourceLimitExceeded";
287
- readonly ServiceFailure: "ServiceFailure";
288
- readonly ServiceUnavailable: "ServiceUnavailable";
289
- readonly Throttling: "Throttling";
290
- };
291
- export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
292
- export declare class BadRequestException extends __BaseException {
293
- readonly name: "BadRequestException";
294
- readonly $fault: "client";
295
- Code?: ErrorCode | undefined;
296
- Message?: string | undefined;
297
- RequestId?: string | undefined;
298
- constructor(
299
- opts: __ExceptionOptionType<BadRequestException, __BaseException>
300
- );
301
- }
302
- export declare const ParticipantRole: {
303
- readonly AGENT: "AGENT";
304
- readonly CUSTOMER: "CUSTOMER";
305
- };
306
- export type ParticipantRole =
307
- (typeof ParticipantRole)[keyof typeof ParticipantRole];
308
177
  export interface ChannelDefinition {
309
178
  ChannelId: number | undefined;
310
179
  ParticipantRole?: ParticipantRole | undefined;
@@ -320,16 +189,6 @@ export interface ChimeSdkMeetingConfiguration {
320
189
  SourceConfiguration?: SourceConfiguration | undefined;
321
190
  ArtifactsConfiguration?: ArtifactsConfiguration | undefined;
322
191
  }
323
- export declare const MediaPipelineSinkType: {
324
- readonly S3Bucket: "S3Bucket";
325
- };
326
- export type MediaPipelineSinkType =
327
- (typeof MediaPipelineSinkType)[keyof typeof MediaPipelineSinkType];
328
- export declare const MediaPipelineSourceType: {
329
- readonly ChimeSdkMeeting: "ChimeSdkMeeting";
330
- };
331
- export type MediaPipelineSourceType =
332
- (typeof MediaPipelineSourceType)[keyof typeof MediaPipelineSourceType];
333
192
  export interface SseAwsKeyManagementParams {
334
193
  AwsKmsKeyId: string | undefined;
335
194
  AwsKmsEncryptionContext?: string | undefined;
@@ -349,17 +208,6 @@ export interface CreateMediaCapturePipelineRequest {
349
208
  SinkIamRoleArn?: string | undefined;
350
209
  Tags?: Tag[] | undefined;
351
210
  }
352
- export declare const MediaPipelineStatus: {
353
- readonly Failed: "Failed";
354
- readonly InProgress: "InProgress";
355
- readonly Initializing: "Initializing";
356
- readonly NotStarted: "NotStarted";
357
- readonly Paused: "Paused";
358
- readonly Stopped: "Stopped";
359
- readonly Stopping: "Stopping";
360
- };
361
- export type MediaPipelineStatus =
362
- (typeof MediaPipelineStatus)[keyof typeof MediaPipelineStatus];
363
211
  export interface MediaCapturePipeline {
364
212
  MediaPipelineId?: string | undefined;
365
213
  MediaPipelineArn?: string | undefined;
@@ -377,72 +225,9 @@ export interface MediaCapturePipeline {
377
225
  export interface CreateMediaCapturePipelineResponse {
378
226
  MediaCapturePipeline?: MediaCapturePipeline | undefined;
379
227
  }
380
- export declare class ForbiddenException extends __BaseException {
381
- readonly name: "ForbiddenException";
382
- readonly $fault: "client";
383
- Code?: ErrorCode | undefined;
384
- Message?: string | undefined;
385
- RequestId?: string | undefined;
386
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
387
- }
388
- export declare class ResourceLimitExceededException extends __BaseException {
389
- readonly name: "ResourceLimitExceededException";
390
- readonly $fault: "client";
391
- Code?: ErrorCode | undefined;
392
- Message?: string | undefined;
393
- RequestId?: string | undefined;
394
- constructor(
395
- opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
396
- );
397
- }
398
- export declare class ServiceFailureException extends __BaseException {
399
- readonly name: "ServiceFailureException";
400
- readonly $fault: "server";
401
- Code?: ErrorCode | undefined;
402
- Message?: string | undefined;
403
- RequestId?: string | undefined;
404
- constructor(
405
- opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
406
- );
407
- }
408
- export declare class ServiceUnavailableException extends __BaseException {
409
- readonly name: "ServiceUnavailableException";
410
- readonly $fault: "server";
411
- Code?: ErrorCode | undefined;
412
- Message?: string | undefined;
413
- RequestId?: string | undefined;
414
- constructor(
415
- opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
416
- );
417
- }
418
- export declare class ThrottledClientException extends __BaseException {
419
- readonly name: "ThrottledClientException";
420
- readonly $fault: "client";
421
- Code?: ErrorCode | undefined;
422
- Message?: string | undefined;
423
- RequestId?: string | undefined;
424
- constructor(
425
- opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
426
- );
427
- }
428
- export declare class UnauthorizedClientException extends __BaseException {
429
- readonly name: "UnauthorizedClientException";
430
- readonly $fault: "client";
431
- Code?: ErrorCode | undefined;
432
- Message?: string | undefined;
433
- RequestId?: string | undefined;
434
- constructor(
435
- opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
436
- );
437
- }
438
228
  export interface S3BucketSinkConfiguration {
439
229
  Destination: string | undefined;
440
230
  }
441
- export declare const ConcatenationSinkType: {
442
- readonly S3Bucket: "S3Bucket";
443
- };
444
- export type ConcatenationSinkType =
445
- (typeof ConcatenationSinkType)[keyof typeof ConcatenationSinkType];
446
231
  export interface ConcatenationSink {
447
232
  Type: ConcatenationSinkType | undefined;
448
233
  S3BucketSinkConfiguration: S3BucketSinkConfiguration | undefined;
@@ -456,11 +241,6 @@ export interface MediaCapturePipelineSourceConfiguration {
456
241
  | ChimeSdkMeetingConcatenationConfiguration
457
242
  | undefined;
458
243
  }
459
- export declare const ConcatenationSourceType: {
460
- readonly MediaCapturePipeline: "MediaCapturePipeline";
461
- };
462
- export type ConcatenationSourceType =
463
- (typeof ConcatenationSourceType)[keyof typeof ConcatenationSourceType];
464
244
  export interface ConcatenationSource {
465
245
  Type: ConcatenationSourceType | undefined;
466
246
  MediaCapturePipelineSourceConfiguration:
@@ -485,12 +265,6 @@ export interface MediaConcatenationPipeline {
485
265
  export interface CreateMediaConcatenationPipelineResponse {
486
266
  MediaConcatenationPipeline?: MediaConcatenationPipeline | undefined;
487
267
  }
488
- export declare const FragmentSelectorType: {
489
- readonly ProducerTimestamp: "ProducerTimestamp";
490
- readonly ServerTimestamp: "ServerTimestamp";
491
- };
492
- export type FragmentSelectorType =
493
- (typeof FragmentSelectorType)[keyof typeof FragmentSelectorType];
494
268
  export interface TimestampRange {
495
269
  StartTimestamp: Date | undefined;
496
270
  EndTimestamp: Date | undefined;
@@ -506,10 +280,6 @@ export interface KinesisVideoStreamRecordingSourceRuntimeConfiguration {
506
280
  Streams: RecordingStreamConfiguration[] | undefined;
507
281
  FragmentSelector: FragmentSelector | undefined;
508
282
  }
509
- export declare const MediaEncoding: {
510
- readonly PCM: "pcm";
511
- };
512
- export type MediaEncoding = (typeof MediaEncoding)[keyof typeof MediaEncoding];
513
283
  export interface StreamChannelDefinition {
514
284
  NumberOfChannels: number | undefined;
515
285
  ChannelDefinitions?: ChannelDefinition[] | undefined;
@@ -524,12 +294,6 @@ export interface KinesisVideoStreamSourceRuntimeConfiguration {
524
294
  MediaEncoding: MediaEncoding | undefined;
525
295
  MediaSampleRate: number | undefined;
526
296
  }
527
- export declare const RecordingFileFormat: {
528
- readonly Opus: "Opus";
529
- readonly Wav: "Wav";
530
- };
531
- export type RecordingFileFormat =
532
- (typeof RecordingFileFormat)[keyof typeof RecordingFileFormat];
533
297
  export interface S3RecordingSinkRuntimeConfiguration {
534
298
  Destination: string | undefined;
535
299
  RecordingFileFormat: RecordingFileFormat | undefined;
@@ -549,31 +313,6 @@ export interface CreateMediaInsightsPipelineRequest {
549
313
  Tags?: Tag[] | undefined;
550
314
  ClientRequestToken?: string | undefined;
551
315
  }
552
- export declare const MediaPipelineElementStatus: {
553
- readonly Failed: "Failed";
554
- readonly InProgress: "InProgress";
555
- readonly Initializing: "Initializing";
556
- readonly NotStarted: "NotStarted";
557
- readonly NotSupported: "NotSupported";
558
- readonly Paused: "Paused";
559
- readonly Stopped: "Stopped";
560
- readonly Stopping: "Stopping";
561
- };
562
- export type MediaPipelineElementStatus =
563
- (typeof MediaPipelineElementStatus)[keyof typeof MediaPipelineElementStatus];
564
- export declare const MediaInsightsPipelineConfigurationElementType: {
565
- readonly AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR: "AmazonTranscribeCallAnalyticsProcessor";
566
- readonly AMAZON_TRANSCRIBE_PROCESSOR: "AmazonTranscribeProcessor";
567
- readonly KINESIS_DATA_STREAM_SINK: "KinesisDataStreamSink";
568
- readonly LAMBDA_FUNCTION_SINK: "LambdaFunctionSink";
569
- readonly S3_RECORDING_SINK: "S3RecordingSink";
570
- readonly SNS_TOPIC_SINK: "SnsTopicSink";
571
- readonly SQS_QUEUE_SINK: "SqsQueueSink";
572
- readonly VOICE_ANALYTICS_PROCESSOR: "VoiceAnalyticsProcessor";
573
- readonly VOICE_ENHANCEMENT_SINK: "VoiceEnhancementSink";
574
- };
575
- export type MediaInsightsPipelineConfigurationElementType =
576
- (typeof MediaInsightsPipelineConfigurationElementType)[keyof typeof MediaInsightsPipelineConfigurationElementType];
577
316
  export interface MediaInsightsPipelineElementStatus {
578
317
  Type?: MediaInsightsPipelineConfigurationElementType | undefined;
579
318
  Status?: MediaPipelineElementStatus | undefined;
@@ -599,14 +338,6 @@ export interface MediaInsightsPipeline {
599
338
  export interface CreateMediaInsightsPipelineResponse {
600
339
  MediaInsightsPipeline: MediaInsightsPipeline | undefined;
601
340
  }
602
- export declare class NotFoundException extends __BaseException {
603
- readonly name: "NotFoundException";
604
- readonly $fault: "client";
605
- Code?: ErrorCode | undefined;
606
- Message?: string | undefined;
607
- RequestId?: string | undefined;
608
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
609
- }
610
341
  export interface KinesisDataStreamSinkConfiguration {
611
342
  InsightsTarget?: string | undefined;
612
343
  }
@@ -623,12 +354,6 @@ export interface SnsTopicSinkConfiguration {
623
354
  export interface SqsQueueSinkConfiguration {
624
355
  InsightsTarget?: string | undefined;
625
356
  }
626
- export declare const VoiceAnalyticsConfigurationStatus: {
627
- readonly DISABLED: "Disabled";
628
- readonly ENABLED: "Enabled";
629
- };
630
- export type VoiceAnalyticsConfigurationStatus =
631
- (typeof VoiceAnalyticsConfigurationStatus)[keyof typeof VoiceAnalyticsConfigurationStatus];
632
357
  export interface VoiceAnalyticsProcessorConfiguration {
633
358
  SpeakerSearchStatus?: VoiceAnalyticsConfigurationStatus | undefined;
634
359
  VoiceToneAnalysisStatus?: VoiceAnalyticsConfigurationStatus | undefined;
@@ -666,22 +391,11 @@ export interface KeywordMatchConfiguration {
666
391
  Keywords: string[] | undefined;
667
392
  Negate?: boolean | undefined;
668
393
  }
669
- export declare const SentimentType: {
670
- readonly NEGATIVE: "NEGATIVE";
671
- };
672
- export type SentimentType = (typeof SentimentType)[keyof typeof SentimentType];
673
394
  export interface SentimentConfiguration {
674
395
  RuleName: string | undefined;
675
396
  SentimentType: SentimentType | undefined;
676
397
  TimePeriod: number | undefined;
677
398
  }
678
- export declare const RealTimeAlertRuleType: {
679
- readonly IssueDetection: "IssueDetection";
680
- readonly KeywordMatch: "KeywordMatch";
681
- readonly Sentiment: "Sentiment";
682
- };
683
- export type RealTimeAlertRuleType =
684
- (typeof RealTimeAlertRuleType)[keyof typeof RealTimeAlertRuleType];
685
399
  export interface RealTimeAlertRule {
686
400
  Type: RealTimeAlertRuleType | undefined;
687
401
  KeywordMatchConfiguration?: KeywordMatchConfiguration | undefined;
@@ -720,32 +434,16 @@ export interface LiveConnectorRTMPConfiguration {
720
434
  AudioChannels?: AudioChannelsOption | undefined;
721
435
  AudioSampleRate?: string | undefined;
722
436
  }
723
- export declare const LiveConnectorSinkType: {
724
- readonly RTMP: "RTMP";
725
- };
726
- export type LiveConnectorSinkType =
727
- (typeof LiveConnectorSinkType)[keyof typeof LiveConnectorSinkType];
728
437
  export interface LiveConnectorSinkConfiguration {
729
438
  SinkType: LiveConnectorSinkType | undefined;
730
439
  RTMPConfiguration: LiveConnectorRTMPConfiguration | undefined;
731
440
  }
732
- export declare const LiveConnectorMuxType: {
733
- readonly AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo";
734
- readonly AudioWithCompositedVideo: "AudioWithCompositedVideo";
735
- };
736
- export type LiveConnectorMuxType =
737
- (typeof LiveConnectorMuxType)[keyof typeof LiveConnectorMuxType];
738
441
  export interface ChimeSdkMeetingLiveConnectorConfiguration {
739
442
  Arn: string | undefined;
740
443
  MuxType: LiveConnectorMuxType | undefined;
741
444
  CompositedVideo?: CompositedVideoArtifactsConfiguration | undefined;
742
445
  SourceConfiguration?: SourceConfiguration | undefined;
743
446
  }
744
- export declare const LiveConnectorSourceType: {
745
- readonly ChimeSdkMeeting: "ChimeSdkMeeting";
746
- };
747
- export type LiveConnectorSourceType =
748
- (typeof LiveConnectorSourceType)[keyof typeof LiveConnectorSourceType];
749
447
  export interface LiveConnectorSourceConfiguration {
750
448
  SourceType: LiveConnectorSourceType | undefined;
751
449
  ChimeSdkMeetingLiveConnectorConfiguration:
@@ -770,14 +468,6 @@ export interface MediaLiveConnectorPipeline {
770
468
  export interface CreateMediaLiveConnectorPipelineResponse {
771
469
  MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline | undefined;
772
470
  }
773
- export declare class ConflictException extends __BaseException {
774
- readonly name: "ConflictException";
775
- readonly $fault: "client";
776
- Code?: ErrorCode | undefined;
777
- Message?: string | undefined;
778
- RequestId?: string | undefined;
779
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
780
- }
781
471
  export interface KinesisVideoStreamConfiguration {
782
472
  Region: string | undefined;
783
473
  DataRetentionInHours?: number | undefined;
@@ -788,15 +478,6 @@ export interface CreateMediaPipelineKinesisVideoStreamPoolRequest {
788
478
  ClientRequestToken?: string | undefined;
789
479
  Tags?: Tag[] | undefined;
790
480
  }
791
- export declare const KinesisVideoStreamPoolStatus: {
792
- readonly ACTIVE: "ACTIVE";
793
- readonly CREATING: "CREATING";
794
- readonly DELETING: "DELETING";
795
- readonly FAILED: "FAILED";
796
- readonly UPDATING: "UPDATING";
797
- };
798
- export type KinesisVideoStreamPoolStatus =
799
- (typeof KinesisVideoStreamPoolStatus)[keyof typeof KinesisVideoStreamPoolStatus];
800
481
  export interface KinesisVideoStreamPoolConfiguration {
801
482
  PoolArn?: string | undefined;
802
483
  PoolName?: string | undefined;
@@ -812,17 +493,6 @@ export interface CreateMediaPipelineKinesisVideoStreamPoolResponse {
812
493
  | KinesisVideoStreamPoolConfiguration
813
494
  | undefined;
814
495
  }
815
- export declare const MediaStreamType: {
816
- readonly IndividualAudio: "IndividualAudio";
817
- readonly MixedAudio: "MixedAudio";
818
- };
819
- export type MediaStreamType =
820
- (typeof MediaStreamType)[keyof typeof MediaStreamType];
821
- export declare const MediaStreamPipelineSinkType: {
822
- readonly KinesisVideoStreamPool: "KinesisVideoStreamPool";
823
- };
824
- export type MediaStreamPipelineSinkType =
825
- (typeof MediaStreamPipelineSinkType)[keyof typeof MediaStreamPipelineSinkType];
826
496
  export interface MediaStreamSink {
827
497
  SinkArn: string | undefined;
828
498
  SinkType: MediaStreamPipelineSinkType | undefined;
@@ -902,16 +572,6 @@ export interface GetSpeakerSearchTaskRequest {
902
572
  Identifier: string | undefined;
903
573
  SpeakerSearchTaskId: string | undefined;
904
574
  }
905
- export declare const MediaPipelineTaskStatus: {
906
- readonly Failed: "Failed";
907
- readonly InProgress: "InProgress";
908
- readonly Initializing: "Initializing";
909
- readonly NotStarted: "NotStarted";
910
- readonly Stopped: "Stopped";
911
- readonly Stopping: "Stopping";
912
- };
913
- export type MediaPipelineTaskStatus =
914
- (typeof MediaPipelineTaskStatus)[keyof typeof MediaPipelineTaskStatus];
915
575
  export interface SpeakerSearchTask {
916
576
  SpeakerSearchTaskId?: string | undefined;
917
577
  SpeakerSearchTaskStatus?: MediaPipelineTaskStatus | undefined;
@@ -1008,11 +668,6 @@ export interface StartSpeakerSearchTaskRequest {
1008
668
  export interface StartSpeakerSearchTaskResponse {
1009
669
  SpeakerSearchTask?: SpeakerSearchTask | undefined;
1010
670
  }
1011
- export declare const VoiceAnalyticsLanguageCode: {
1012
- readonly EN_US: "en-US";
1013
- };
1014
- export type VoiceAnalyticsLanguageCode =
1015
- (typeof VoiceAnalyticsLanguageCode)[keyof typeof VoiceAnalyticsLanguageCode];
1016
671
  export interface StartVoiceToneAnalysisTaskRequest {
1017
672
  Identifier: string | undefined;
1018
673
  LanguageCode: VoiceAnalyticsLanguageCode | undefined;
@@ -1053,12 +708,6 @@ export interface UpdateMediaInsightsPipelineConfigurationResponse {
1053
708
  | MediaInsightsPipelineConfiguration
1054
709
  | undefined;
1055
710
  }
1056
- export declare const MediaPipelineStatusUpdate: {
1057
- readonly Pause: "Pause";
1058
- readonly Resume: "Resume";
1059
- };
1060
- export type MediaPipelineStatusUpdate =
1061
- (typeof MediaPipelineStatusUpdate)[keyof typeof MediaPipelineStatusUpdate];
1062
711
  export interface UpdateMediaInsightsPipelineStatusRequest {
1063
712
  Identifier: string | undefined;
1064
713
  UpdateStatus: MediaPipelineStatusUpdate | undefined;