@aws-sdk/client-chime-sdk-media-pipelines 3.301.0 → 3.303.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,39 +1,48 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ChimeSDKMediaPipelinesServiceException as __BaseException } from "./ChimeSDKMediaPipelinesServiceException";
3
- export declare enum ContentType {
4
- PII = "PII",
5
- }
6
- export declare enum CallAnalyticsLanguageCode {
7
- DE_DE = "de-DE",
8
- EN_AU = "en-AU",
9
- EN_GB = "en-GB",
10
- EN_US = "en-US",
11
- ES_US = "es-US",
12
- FR_CA = "fr-CA",
13
- FR_FR = "fr-FR",
14
- IT_IT = "it-IT",
15
- PT_BR = "pt-BR",
16
- }
17
- export declare enum PartialResultsStability {
18
- HIGH = "high",
19
- LOW = "low",
20
- MEDIUM = "medium",
21
- }
22
- export declare enum ContentRedactionOutput {
23
- REDACTED = "redacted",
24
- REDACTED_AND_UNREDACTED = "redacted_and_unredacted",
25
- }
3
+ export declare const ContentType: {
4
+ readonly PII: "PII";
5
+ };
6
+ export type ContentType = (typeof ContentType)[keyof typeof ContentType];
7
+ export declare const CallAnalyticsLanguageCode: {
8
+ readonly DE_DE: "de-DE";
9
+ readonly EN_AU: "en-AU";
10
+ readonly EN_GB: "en-GB";
11
+ readonly EN_US: "en-US";
12
+ readonly ES_US: "es-US";
13
+ readonly FR_CA: "fr-CA";
14
+ readonly FR_FR: "fr-FR";
15
+ readonly IT_IT: "it-IT";
16
+ readonly PT_BR: "pt-BR";
17
+ };
18
+ export type CallAnalyticsLanguageCode =
19
+ (typeof CallAnalyticsLanguageCode)[keyof typeof CallAnalyticsLanguageCode];
20
+ export declare const PartialResultsStability: {
21
+ readonly HIGH: "high";
22
+ readonly LOW: "low";
23
+ readonly MEDIUM: "medium";
24
+ };
25
+ export type PartialResultsStability =
26
+ (typeof PartialResultsStability)[keyof typeof PartialResultsStability];
27
+ export declare const ContentRedactionOutput: {
28
+ readonly REDACTED: "redacted";
29
+ readonly REDACTED_AND_UNREDACTED: "redacted_and_unredacted";
30
+ };
31
+ export type ContentRedactionOutput =
32
+ (typeof ContentRedactionOutput)[keyof typeof ContentRedactionOutput];
26
33
  export interface PostCallAnalyticsSettings {
27
34
  OutputLocation: string | undefined;
28
35
  DataAccessRoleArn: string | undefined;
29
36
  ContentRedactionOutput?: ContentRedactionOutput | string;
30
37
  OutputEncryptionKMSKeyId?: string;
31
38
  }
32
- export declare enum VocabularyFilterMethod {
33
- MASK = "mask",
34
- REMOVE = "remove",
35
- TAG = "tag",
36
- }
39
+ export declare const VocabularyFilterMethod: {
40
+ readonly MASK: "mask";
41
+ readonly REMOVE: "remove";
42
+ readonly TAG: "tag";
43
+ };
44
+ export type VocabularyFilterMethod =
45
+ (typeof VocabularyFilterMethod)[keyof typeof VocabularyFilterMethod];
37
46
  export interface AmazonTranscribeCallAnalyticsProcessorConfiguration {
38
47
  LanguageCode: CallAnalyticsLanguageCode | string | undefined;
39
48
  VocabularyName?: string;
@@ -63,16 +72,20 @@ export interface AmazonTranscribeProcessorConfiguration {
63
72
  LanguageModelName?: string;
64
73
  FilterPartialResults?: boolean;
65
74
  }
66
- export declare enum AudioArtifactsConcatenationState {
67
- Enabled = "Enabled",
68
- }
75
+ export declare const AudioArtifactsConcatenationState: {
76
+ readonly Enabled: "Enabled";
77
+ };
78
+ export type AudioArtifactsConcatenationState =
79
+ (typeof AudioArtifactsConcatenationState)[keyof typeof AudioArtifactsConcatenationState];
69
80
  export interface AudioConcatenationConfiguration {
70
81
  State: AudioArtifactsConcatenationState | string | undefined;
71
82
  }
72
- export declare enum ArtifactsConcatenationState {
73
- Disabled = "Disabled",
74
- Enabled = "Enabled",
75
- }
83
+ export declare const ArtifactsConcatenationState: {
84
+ readonly Disabled: "Disabled";
85
+ readonly Enabled: "Enabled";
86
+ };
87
+ export type ArtifactsConcatenationState =
88
+ (typeof ArtifactsConcatenationState)[keyof typeof ArtifactsConcatenationState];
76
89
  export interface CompositedVideoConcatenationConfiguration {
77
90
  State: ArtifactsConcatenationState | string | undefined;
78
91
  }
@@ -102,25 +115,30 @@ export interface ArtifactsConcatenationConfiguration {
102
115
  MeetingEvents: MeetingEventsConcatenationConfiguration | undefined;
103
116
  CompositedVideo: CompositedVideoConcatenationConfiguration | undefined;
104
117
  }
105
- export declare enum AudioMuxType {
106
- AudioOnly = "AudioOnly",
107
- AudioWithActiveSpeakerVideo = "AudioWithActiveSpeakerVideo",
108
- AudioWithCompositedVideo = "AudioWithCompositedVideo",
109
- }
118
+ export declare const AudioMuxType: {
119
+ readonly AudioOnly: "AudioOnly";
120
+ readonly AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo";
121
+ readonly AudioWithCompositedVideo: "AudioWithCompositedVideo";
122
+ };
123
+ export type AudioMuxType = (typeof AudioMuxType)[keyof typeof AudioMuxType];
110
124
  export interface AudioArtifactsConfiguration {
111
125
  MuxType: AudioMuxType | string | undefined;
112
126
  }
113
- export declare enum ContentShareLayoutOption {
114
- Horizontal = "Horizontal",
115
- PresenterOnly = "PresenterOnly",
116
- Vertical = "Vertical",
117
- }
118
- export declare enum PresenterPosition {
119
- BottomLeft = "BottomLeft",
120
- BottomRight = "BottomRight",
121
- TopLeft = "TopLeft",
122
- TopRight = "TopRight",
123
- }
127
+ export declare const ContentShareLayoutOption: {
128
+ readonly Horizontal: "Horizontal";
129
+ readonly PresenterOnly: "PresenterOnly";
130
+ readonly Vertical: "Vertical";
131
+ };
132
+ export type ContentShareLayoutOption =
133
+ (typeof ContentShareLayoutOption)[keyof typeof ContentShareLayoutOption];
134
+ export declare const PresenterPosition: {
135
+ readonly BottomLeft: "BottomLeft";
136
+ readonly BottomRight: "BottomRight";
137
+ readonly TopLeft: "TopLeft";
138
+ readonly TopRight: "TopRight";
139
+ };
140
+ export type PresenterPosition =
141
+ (typeof PresenterPosition)[keyof typeof PresenterPosition];
124
142
  export interface PresenterOnlyConfiguration {
125
143
  PresenterPosition?: PresenterPosition | string;
126
144
  }
@@ -128,32 +146,40 @@ export interface GridViewConfiguration {
128
146
  ContentShareLayout: ContentShareLayoutOption | string | undefined;
129
147
  PresenterOnlyConfiguration?: PresenterOnlyConfiguration;
130
148
  }
131
- export declare enum LayoutOption {
132
- GridView = "GridView",
133
- }
134
- export declare enum ResolutionOption {
135
- FHD = "FHD",
136
- HD = "HD",
137
- }
149
+ export declare const LayoutOption: {
150
+ readonly GridView: "GridView";
151
+ };
152
+ export type LayoutOption = (typeof LayoutOption)[keyof typeof LayoutOption];
153
+ export declare const ResolutionOption: {
154
+ readonly FHD: "FHD";
155
+ readonly HD: "HD";
156
+ };
157
+ export type ResolutionOption =
158
+ (typeof ResolutionOption)[keyof typeof ResolutionOption];
138
159
  export interface CompositedVideoArtifactsConfiguration {
139
160
  Layout?: LayoutOption | string;
140
161
  Resolution?: ResolutionOption | string;
141
162
  GridViewConfiguration: GridViewConfiguration | undefined;
142
163
  }
143
- export declare enum ContentMuxType {
144
- ContentOnly = "ContentOnly",
145
- }
146
- export declare enum ArtifactsState {
147
- Disabled = "Disabled",
148
- Enabled = "Enabled",
149
- }
164
+ export declare const ContentMuxType: {
165
+ readonly ContentOnly: "ContentOnly";
166
+ };
167
+ export type ContentMuxType =
168
+ (typeof ContentMuxType)[keyof typeof ContentMuxType];
169
+ export declare const ArtifactsState: {
170
+ readonly Disabled: "Disabled";
171
+ readonly Enabled: "Enabled";
172
+ };
173
+ export type ArtifactsState =
174
+ (typeof ArtifactsState)[keyof typeof ArtifactsState];
150
175
  export interface ContentArtifactsConfiguration {
151
176
  State: ArtifactsState | string | undefined;
152
177
  MuxType?: ContentMuxType | string;
153
178
  }
154
- export declare enum VideoMuxType {
155
- VideoOnly = "VideoOnly",
156
- }
179
+ export declare const VideoMuxType: {
180
+ readonly VideoOnly: "VideoOnly";
181
+ };
182
+ export type VideoMuxType = (typeof VideoMuxType)[keyof typeof VideoMuxType];
157
183
  export interface VideoArtifactsConfiguration {
158
184
  State: ArtifactsState | string | undefined;
159
185
  MuxType?: VideoMuxType | string;
@@ -164,19 +190,22 @@ export interface ArtifactsConfiguration {
164
190
  Content: ContentArtifactsConfiguration | undefined;
165
191
  CompositedVideo?: CompositedVideoArtifactsConfiguration;
166
192
  }
167
- export declare enum AudioChannelsOption {
168
- Mono = "Mono",
169
- Stereo = "Stereo",
170
- }
171
- export declare enum ErrorCode {
172
- BadRequest = "BadRequest",
173
- Forbidden = "Forbidden",
174
- NotFound = "NotFound",
175
- ResourceLimitExceeded = "ResourceLimitExceeded",
176
- ServiceFailure = "ServiceFailure",
177
- ServiceUnavailable = "ServiceUnavailable",
178
- Throttling = "Throttling",
179
- }
193
+ export declare const AudioChannelsOption: {
194
+ readonly Mono: "Mono";
195
+ readonly Stereo: "Stereo";
196
+ };
197
+ export type AudioChannelsOption =
198
+ (typeof AudioChannelsOption)[keyof typeof AudioChannelsOption];
199
+ export declare const ErrorCode: {
200
+ readonly BadRequest: "BadRequest";
201
+ readonly Forbidden: "Forbidden";
202
+ readonly NotFound: "NotFound";
203
+ readonly ResourceLimitExceeded: "ResourceLimitExceeded";
204
+ readonly ServiceFailure: "ServiceFailure";
205
+ readonly ServiceUnavailable: "ServiceUnavailable";
206
+ readonly Throttling: "Throttling";
207
+ };
208
+ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
180
209
  export declare class BadRequestException extends __BaseException {
181
210
  readonly name: "BadRequestException";
182
211
  readonly $fault: "client";
@@ -187,10 +216,12 @@ export declare class BadRequestException extends __BaseException {
187
216
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
188
217
  );
189
218
  }
190
- export declare enum ParticipantRole {
191
- AGENT = "AGENT",
192
- CUSTOMER = "CUSTOMER",
193
- }
219
+ export declare const ParticipantRole: {
220
+ readonly AGENT: "AGENT";
221
+ readonly CUSTOMER: "CUSTOMER";
222
+ };
223
+ export type ParticipantRole =
224
+ (typeof ParticipantRole)[keyof typeof ParticipantRole];
194
225
  export interface ChannelDefinition {
195
226
  ChannelId: number | undefined;
196
227
  ParticipantRole?: ParticipantRole | string;
@@ -206,12 +237,16 @@ export interface ChimeSdkMeetingConfiguration {
206
237
  SourceConfiguration?: SourceConfiguration;
207
238
  ArtifactsConfiguration?: ArtifactsConfiguration;
208
239
  }
209
- export declare enum MediaPipelineSinkType {
210
- S3Bucket = "S3Bucket",
211
- }
212
- export declare enum MediaPipelineSourceType {
213
- ChimeSdkMeeting = "ChimeSdkMeeting",
214
- }
240
+ export declare const MediaPipelineSinkType: {
241
+ readonly S3Bucket: "S3Bucket";
242
+ };
243
+ export type MediaPipelineSinkType =
244
+ (typeof MediaPipelineSinkType)[keyof typeof MediaPipelineSinkType];
245
+ export declare const MediaPipelineSourceType: {
246
+ readonly ChimeSdkMeeting: "ChimeSdkMeeting";
247
+ };
248
+ export type MediaPipelineSourceType =
249
+ (typeof MediaPipelineSourceType)[keyof typeof MediaPipelineSourceType];
215
250
  export interface Tag {
216
251
  Key: string | undefined;
217
252
  Value: string | undefined;
@@ -225,14 +260,16 @@ export interface CreateMediaCapturePipelineRequest {
225
260
  ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
226
261
  Tags?: Tag[];
227
262
  }
228
- export declare enum MediaPipelineStatus {
229
- Failed = "Failed",
230
- InProgress = "InProgress",
231
- Initializing = "Initializing",
232
- Paused = "Paused",
233
- Stopped = "Stopped",
234
- Stopping = "Stopping",
235
- }
263
+ export declare const MediaPipelineStatus: {
264
+ readonly Failed: "Failed";
265
+ readonly InProgress: "InProgress";
266
+ readonly Initializing: "Initializing";
267
+ readonly Paused: "Paused";
268
+ readonly Stopped: "Stopped";
269
+ readonly Stopping: "Stopping";
270
+ };
271
+ export type MediaPipelineStatus =
272
+ (typeof MediaPipelineStatus)[keyof typeof MediaPipelineStatus];
236
273
  export interface MediaCapturePipeline {
237
274
  MediaPipelineId?: string;
238
275
  MediaPipelineArn?: string;
@@ -309,9 +346,11 @@ export declare class UnauthorizedClientException extends __BaseException {
309
346
  export interface S3BucketSinkConfiguration {
310
347
  Destination: string | undefined;
311
348
  }
312
- export declare enum ConcatenationSinkType {
313
- S3Bucket = "S3Bucket",
314
- }
349
+ export declare const ConcatenationSinkType: {
350
+ readonly S3Bucket: "S3Bucket";
351
+ };
352
+ export type ConcatenationSinkType =
353
+ (typeof ConcatenationSinkType)[keyof typeof ConcatenationSinkType];
315
354
  export interface ConcatenationSink {
316
355
  Type: ConcatenationSinkType | string | undefined;
317
356
  S3BucketSinkConfiguration: S3BucketSinkConfiguration | undefined;
@@ -325,9 +364,11 @@ export interface MediaCapturePipelineSourceConfiguration {
325
364
  | ChimeSdkMeetingConcatenationConfiguration
326
365
  | undefined;
327
366
  }
328
- export declare enum ConcatenationSourceType {
329
- MediaCapturePipeline = "MediaCapturePipeline",
330
- }
367
+ export declare const ConcatenationSourceType: {
368
+ readonly MediaCapturePipeline: "MediaCapturePipeline";
369
+ };
370
+ export type ConcatenationSourceType =
371
+ (typeof ConcatenationSourceType)[keyof typeof ConcatenationSourceType];
331
372
  export interface ConcatenationSource {
332
373
  Type: ConcatenationSourceType | string | undefined;
333
374
  MediaCapturePipelineSourceConfiguration:
@@ -352,10 +393,12 @@ export interface MediaConcatenationPipeline {
352
393
  export interface CreateMediaConcatenationPipelineResponse {
353
394
  MediaConcatenationPipeline?: MediaConcatenationPipeline;
354
395
  }
355
- export declare enum FragmentSelectorType {
356
- ProducerTimestamp = "ProducerTimestamp",
357
- ServerTimestamp = "ServerTimestamp",
358
- }
396
+ export declare const FragmentSelectorType: {
397
+ readonly ProducerTimestamp: "ProducerTimestamp";
398
+ readonly ServerTimestamp: "ServerTimestamp";
399
+ };
400
+ export type FragmentSelectorType =
401
+ (typeof FragmentSelectorType)[keyof typeof FragmentSelectorType];
359
402
  export interface TimestampRange {
360
403
  StartTimestamp: Date | undefined;
361
404
  EndTimestamp: Date | undefined;
@@ -371,9 +414,10 @@ export interface KinesisVideoStreamRecordingSourceRuntimeConfiguration {
371
414
  Streams: RecordingStreamConfiguration[] | undefined;
372
415
  FragmentSelector: FragmentSelector | undefined;
373
416
  }
374
- export declare enum MediaEncoding {
375
- PCM = "pcm",
376
- }
417
+ export declare const MediaEncoding: {
418
+ readonly PCM: "pcm";
419
+ };
420
+ export type MediaEncoding = (typeof MediaEncoding)[keyof typeof MediaEncoding];
377
421
  export interface StreamChannelDefinition {
378
422
  NumberOfChannels: number | undefined;
379
423
  ChannelDefinitions?: ChannelDefinition[];
@@ -388,10 +432,12 @@ export interface KinesisVideoStreamSourceRuntimeConfiguration {
388
432
  MediaEncoding: MediaEncoding | string | undefined;
389
433
  MediaSampleRate: number | undefined;
390
434
  }
391
- export declare enum RecordingFileFormat {
392
- Opus = "Opus",
393
- Wav = "Wav",
394
- }
435
+ export declare const RecordingFileFormat: {
436
+ readonly Opus: "Opus";
437
+ readonly Wav: "Wav";
438
+ };
439
+ export type RecordingFileFormat =
440
+ (typeof RecordingFileFormat)[keyof typeof RecordingFileFormat];
395
441
  export interface S3RecordingSinkRuntimeConfiguration {
396
442
  Destination: string | undefined;
397
443
  RecordingFileFormat: RecordingFileFormat | string | undefined;
@@ -442,20 +488,24 @@ export interface SnsTopicSinkConfiguration {
442
488
  export interface SqsQueueSinkConfiguration {
443
489
  InsightsTarget?: string;
444
490
  }
445
- export declare enum MediaInsightsPipelineConfigurationElementType {
446
- AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR = "AmazonTranscribeCallAnalyticsProcessor",
447
- AMAZON_TRANSCRIBE_PROCESSOR = "AmazonTranscribeProcessor",
448
- KINESIS_DATA_STREAM_SINK = "KinesisDataStreamSink",
449
- LAMBDA_FUNCTION_SINK = "LambdaFunctionSink",
450
- S3_RECORDING_SINK = "S3RecordingSink",
451
- SNS_TOPIC_SINK = "SnsTopicSink",
452
- SQS_QUEUE_SINK = "SqsQueueSink",
453
- VOICE_ANALYTICS_PROCESSOR = "VoiceAnalyticsProcessor",
454
- }
455
- export declare enum VoiceAnalyticsConfigurationStatus {
456
- DISABLED = "Disabled",
457
- ENABLED = "Enabled",
458
- }
491
+ export declare const MediaInsightsPipelineConfigurationElementType: {
492
+ readonly AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR: "AmazonTranscribeCallAnalyticsProcessor";
493
+ readonly AMAZON_TRANSCRIBE_PROCESSOR: "AmazonTranscribeProcessor";
494
+ readonly KINESIS_DATA_STREAM_SINK: "KinesisDataStreamSink";
495
+ readonly LAMBDA_FUNCTION_SINK: "LambdaFunctionSink";
496
+ readonly S3_RECORDING_SINK: "S3RecordingSink";
497
+ readonly SNS_TOPIC_SINK: "SnsTopicSink";
498
+ readonly SQS_QUEUE_SINK: "SqsQueueSink";
499
+ readonly VOICE_ANALYTICS_PROCESSOR: "VoiceAnalyticsProcessor";
500
+ };
501
+ export type MediaInsightsPipelineConfigurationElementType =
502
+ (typeof MediaInsightsPipelineConfigurationElementType)[keyof typeof MediaInsightsPipelineConfigurationElementType];
503
+ export declare const VoiceAnalyticsConfigurationStatus: {
504
+ readonly DISABLED: "Disabled";
505
+ readonly ENABLED: "Enabled";
506
+ };
507
+ export type VoiceAnalyticsConfigurationStatus =
508
+ (typeof VoiceAnalyticsConfigurationStatus)[keyof typeof VoiceAnalyticsConfigurationStatus];
459
509
  export interface VoiceAnalyticsProcessorConfiguration {
460
510
  SpeakerSearchStatus?: VoiceAnalyticsConfigurationStatus | string;
461
511
  VoiceToneAnalysisStatus?: VoiceAnalyticsConfigurationStatus | string;
@@ -479,19 +529,22 @@ export interface KeywordMatchConfiguration {
479
529
  Keywords: string[] | undefined;
480
530
  Negate?: boolean;
481
531
  }
482
- export declare enum SentimentType {
483
- NEGATIVE = "NEGATIVE",
484
- }
532
+ export declare const SentimentType: {
533
+ readonly NEGATIVE: "NEGATIVE";
534
+ };
535
+ export type SentimentType = (typeof SentimentType)[keyof typeof SentimentType];
485
536
  export interface SentimentConfiguration {
486
537
  RuleName: string | undefined;
487
538
  SentimentType: SentimentType | string | undefined;
488
539
  TimePeriod: number | undefined;
489
540
  }
490
- export declare enum RealTimeAlertRuleType {
491
- IssueDetection = "IssueDetection",
492
- KeywordMatch = "KeywordMatch",
493
- Sentiment = "Sentiment",
494
- }
541
+ export declare const RealTimeAlertRuleType: {
542
+ readonly IssueDetection: "IssueDetection";
543
+ readonly KeywordMatch: "KeywordMatch";
544
+ readonly Sentiment: "Sentiment";
545
+ };
546
+ export type RealTimeAlertRuleType =
547
+ (typeof RealTimeAlertRuleType)[keyof typeof RealTimeAlertRuleType];
495
548
  export interface RealTimeAlertRule {
496
549
  Type: RealTimeAlertRuleType | string | undefined;
497
550
  KeywordMatchConfiguration?: KeywordMatchConfiguration;
@@ -528,26 +581,32 @@ export interface LiveConnectorRTMPConfiguration {
528
581
  AudioChannels?: AudioChannelsOption | string;
529
582
  AudioSampleRate?: string;
530
583
  }
531
- export declare enum LiveConnectorSinkType {
532
- RTMP = "RTMP",
533
- }
584
+ export declare const LiveConnectorSinkType: {
585
+ readonly RTMP: "RTMP";
586
+ };
587
+ export type LiveConnectorSinkType =
588
+ (typeof LiveConnectorSinkType)[keyof typeof LiveConnectorSinkType];
534
589
  export interface LiveConnectorSinkConfiguration {
535
590
  SinkType: LiveConnectorSinkType | string | undefined;
536
591
  RTMPConfiguration: LiveConnectorRTMPConfiguration | undefined;
537
592
  }
538
- export declare enum LiveConnectorMuxType {
539
- AudioWithActiveSpeakerVideo = "AudioWithActiveSpeakerVideo",
540
- AudioWithCompositedVideo = "AudioWithCompositedVideo",
541
- }
593
+ export declare const LiveConnectorMuxType: {
594
+ readonly AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo";
595
+ readonly AudioWithCompositedVideo: "AudioWithCompositedVideo";
596
+ };
597
+ export type LiveConnectorMuxType =
598
+ (typeof LiveConnectorMuxType)[keyof typeof LiveConnectorMuxType];
542
599
  export interface ChimeSdkMeetingLiveConnectorConfiguration {
543
600
  Arn: string | undefined;
544
601
  MuxType: LiveConnectorMuxType | string | undefined;
545
602
  CompositedVideo?: CompositedVideoArtifactsConfiguration;
546
603
  SourceConfiguration?: SourceConfiguration;
547
604
  }
548
- export declare enum LiveConnectorSourceType {
549
- ChimeSdkMeeting = "ChimeSdkMeeting",
550
- }
605
+ export declare const LiveConnectorSourceType: {
606
+ readonly ChimeSdkMeeting: "ChimeSdkMeeting";
607
+ };
608
+ export type LiveConnectorSourceType =
609
+ (typeof LiveConnectorSourceType)[keyof typeof LiveConnectorSourceType];
551
610
  export interface LiveConnectorSourceConfiguration {
552
611
  SourceType: LiveConnectorSourceType | string | undefined;
553
612
  ChimeSdkMeetingLiveConnectorConfiguration:
@@ -675,10 +734,12 @@ export interface UpdateMediaInsightsPipelineConfigurationRequest {
675
734
  export interface UpdateMediaInsightsPipelineConfigurationResponse {
676
735
  MediaInsightsPipelineConfiguration?: MediaInsightsPipelineConfiguration;
677
736
  }
678
- export declare enum MediaPipelineStatusUpdate {
679
- Pause = "Pause",
680
- Resume = "Resume",
681
- }
737
+ export declare const MediaPipelineStatusUpdate: {
738
+ readonly Pause: "Pause";
739
+ readonly Resume: "Resume";
740
+ };
741
+ export type MediaPipelineStatusUpdate =
742
+ (typeof MediaPipelineStatusUpdate)[keyof typeof MediaPipelineStatusUpdate];
682
743
  export interface UpdateMediaInsightsPipelineStatusRequest {
683
744
  Identifier: string | undefined;
684
745
  UpdateStatus: MediaPipelineStatusUpdate | string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-chime-sdk-media-pipelines",
3
3
  "description": "AWS SDK for JavaScript Chime Sdk Media Pipelines Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.303.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,43 +21,43 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"
58
58
  },
59
59
  "devDependencies": {
60
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
60
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
61
61
  "@tsconfig/node14": "1.0.3",
62
62
  "@types/node": "^14.14.31",
63
63
  "@types/uuid": "^8.3.0",