@aws-sdk/client-chime-sdk-media-pipelines 3.933.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.
- package/dist-cjs/index.js +229 -228
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +228 -0
- package/dist-es/models/errors.js +163 -0
- package/dist-es/models/models_0.js +1 -391
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +604 -0
- package/dist-types/models/errors.d.ts +175 -0
- package/dist-types/models/models_0.d.ts +1 -778
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +313 -0
- package/dist-types/ts3.4/models/errors.d.ts +87 -0
- package/dist-types/ts3.4/models/models_0.d.ts +48 -399
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -117,126 +117,6 @@ let ChimeSDKMediaPipelinesServiceException$1 = class ChimeSDKMediaPipelinesServi
|
|
|
117
117
|
}
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
const ActiveSpeakerPosition = {
|
|
121
|
-
BottomLeft: "BottomLeft",
|
|
122
|
-
BottomRight: "BottomRight",
|
|
123
|
-
TopLeft: "TopLeft",
|
|
124
|
-
TopRight: "TopRight",
|
|
125
|
-
};
|
|
126
|
-
const ContentType = {
|
|
127
|
-
PII: "PII",
|
|
128
|
-
};
|
|
129
|
-
const CallAnalyticsLanguageCode = {
|
|
130
|
-
DE_DE: "de-DE",
|
|
131
|
-
EN_AU: "en-AU",
|
|
132
|
-
EN_GB: "en-GB",
|
|
133
|
-
EN_US: "en-US",
|
|
134
|
-
ES_US: "es-US",
|
|
135
|
-
FR_CA: "fr-CA",
|
|
136
|
-
FR_FR: "fr-FR",
|
|
137
|
-
IT_IT: "it-IT",
|
|
138
|
-
PT_BR: "pt-BR",
|
|
139
|
-
};
|
|
140
|
-
const PartialResultsStability = {
|
|
141
|
-
HIGH: "high",
|
|
142
|
-
LOW: "low",
|
|
143
|
-
MEDIUM: "medium",
|
|
144
|
-
};
|
|
145
|
-
const ContentRedactionOutput = {
|
|
146
|
-
REDACTED: "redacted",
|
|
147
|
-
REDACTED_AND_UNREDACTED: "redacted_and_unredacted",
|
|
148
|
-
};
|
|
149
|
-
const VocabularyFilterMethod = {
|
|
150
|
-
MASK: "mask",
|
|
151
|
-
REMOVE: "remove",
|
|
152
|
-
TAG: "tag",
|
|
153
|
-
};
|
|
154
|
-
const AudioArtifactsConcatenationState = {
|
|
155
|
-
Enabled: "Enabled",
|
|
156
|
-
};
|
|
157
|
-
const ArtifactsConcatenationState = {
|
|
158
|
-
Disabled: "Disabled",
|
|
159
|
-
Enabled: "Enabled",
|
|
160
|
-
};
|
|
161
|
-
const AudioMuxType = {
|
|
162
|
-
AudioOnly: "AudioOnly",
|
|
163
|
-
AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo",
|
|
164
|
-
AudioWithCompositedVideo: "AudioWithCompositedVideo",
|
|
165
|
-
};
|
|
166
|
-
const CanvasOrientation = {
|
|
167
|
-
Landscape: "Landscape",
|
|
168
|
-
Portrait: "Portrait",
|
|
169
|
-
};
|
|
170
|
-
const ContentShareLayoutOption = {
|
|
171
|
-
ActiveSpeakerOnly: "ActiveSpeakerOnly",
|
|
172
|
-
Horizontal: "Horizontal",
|
|
173
|
-
PresenterOnly: "PresenterOnly",
|
|
174
|
-
Vertical: "Vertical",
|
|
175
|
-
};
|
|
176
|
-
const TileOrder = {
|
|
177
|
-
JoinSequence: "JoinSequence",
|
|
178
|
-
SpeakerSequence: "SpeakerSequence",
|
|
179
|
-
};
|
|
180
|
-
const HorizontalTilePosition = {
|
|
181
|
-
Bottom: "Bottom",
|
|
182
|
-
Top: "Top",
|
|
183
|
-
};
|
|
184
|
-
const PresenterPosition = {
|
|
185
|
-
BottomLeft: "BottomLeft",
|
|
186
|
-
BottomRight: "BottomRight",
|
|
187
|
-
TopLeft: "TopLeft",
|
|
188
|
-
TopRight: "TopRight",
|
|
189
|
-
};
|
|
190
|
-
const VerticalTilePosition = {
|
|
191
|
-
Left: "Left",
|
|
192
|
-
Right: "Right",
|
|
193
|
-
};
|
|
194
|
-
const BorderColor = {
|
|
195
|
-
Black: "Black",
|
|
196
|
-
Blue: "Blue",
|
|
197
|
-
Green: "Green",
|
|
198
|
-
Red: "Red",
|
|
199
|
-
White: "White",
|
|
200
|
-
Yellow: "Yellow",
|
|
201
|
-
};
|
|
202
|
-
const HighlightColor = {
|
|
203
|
-
Black: "Black",
|
|
204
|
-
Blue: "Blue",
|
|
205
|
-
Green: "Green",
|
|
206
|
-
Red: "Red",
|
|
207
|
-
White: "White",
|
|
208
|
-
Yellow: "Yellow",
|
|
209
|
-
};
|
|
210
|
-
const LayoutOption = {
|
|
211
|
-
GridView: "GridView",
|
|
212
|
-
};
|
|
213
|
-
const ResolutionOption = {
|
|
214
|
-
FHD: "FHD",
|
|
215
|
-
HD: "HD",
|
|
216
|
-
};
|
|
217
|
-
const ContentMuxType = {
|
|
218
|
-
ContentOnly: "ContentOnly",
|
|
219
|
-
};
|
|
220
|
-
const ArtifactsState = {
|
|
221
|
-
Disabled: "Disabled",
|
|
222
|
-
Enabled: "Enabled",
|
|
223
|
-
};
|
|
224
|
-
const VideoMuxType = {
|
|
225
|
-
VideoOnly: "VideoOnly",
|
|
226
|
-
};
|
|
227
|
-
const AudioChannelsOption = {
|
|
228
|
-
Mono: "Mono",
|
|
229
|
-
Stereo: "Stereo",
|
|
230
|
-
};
|
|
231
|
-
const ErrorCode = {
|
|
232
|
-
BadRequest: "BadRequest",
|
|
233
|
-
Forbidden: "Forbidden",
|
|
234
|
-
NotFound: "NotFound",
|
|
235
|
-
ResourceLimitExceeded: "ResourceLimitExceeded",
|
|
236
|
-
ServiceFailure: "ServiceFailure",
|
|
237
|
-
ServiceUnavailable: "ServiceUnavailable",
|
|
238
|
-
Throttling: "Throttling",
|
|
239
|
-
};
|
|
240
120
|
let BadRequestException$1 = class BadRequestException extends ChimeSDKMediaPipelinesServiceException$1 {
|
|
241
121
|
name = "BadRequestException";
|
|
242
122
|
$fault = "client";
|
|
@@ -255,25 +135,6 @@ let BadRequestException$1 = class BadRequestException extends ChimeSDKMediaPipel
|
|
|
255
135
|
this.RequestId = opts.RequestId;
|
|
256
136
|
}
|
|
257
137
|
};
|
|
258
|
-
const ParticipantRole = {
|
|
259
|
-
AGENT: "AGENT",
|
|
260
|
-
CUSTOMER: "CUSTOMER",
|
|
261
|
-
};
|
|
262
|
-
const MediaPipelineSinkType = {
|
|
263
|
-
S3Bucket: "S3Bucket",
|
|
264
|
-
};
|
|
265
|
-
const MediaPipelineSourceType = {
|
|
266
|
-
ChimeSdkMeeting: "ChimeSdkMeeting",
|
|
267
|
-
};
|
|
268
|
-
const MediaPipelineStatus = {
|
|
269
|
-
Failed: "Failed",
|
|
270
|
-
InProgress: "InProgress",
|
|
271
|
-
Initializing: "Initializing",
|
|
272
|
-
NotStarted: "NotStarted",
|
|
273
|
-
Paused: "Paused",
|
|
274
|
-
Stopped: "Stopped",
|
|
275
|
-
Stopping: "Stopping",
|
|
276
|
-
};
|
|
277
138
|
let ForbiddenException$1 = class ForbiddenException extends ChimeSDKMediaPipelinesServiceException$1 {
|
|
278
139
|
name = "ForbiddenException";
|
|
279
140
|
$fault = "client";
|
|
@@ -382,44 +243,6 @@ let UnauthorizedClientException$1 = class UnauthorizedClientException extends Ch
|
|
|
382
243
|
this.RequestId = opts.RequestId;
|
|
383
244
|
}
|
|
384
245
|
};
|
|
385
|
-
const ConcatenationSinkType = {
|
|
386
|
-
S3Bucket: "S3Bucket",
|
|
387
|
-
};
|
|
388
|
-
const ConcatenationSourceType = {
|
|
389
|
-
MediaCapturePipeline: "MediaCapturePipeline",
|
|
390
|
-
};
|
|
391
|
-
const FragmentSelectorType = {
|
|
392
|
-
ProducerTimestamp: "ProducerTimestamp",
|
|
393
|
-
ServerTimestamp: "ServerTimestamp",
|
|
394
|
-
};
|
|
395
|
-
const MediaEncoding = {
|
|
396
|
-
PCM: "pcm",
|
|
397
|
-
};
|
|
398
|
-
const RecordingFileFormat = {
|
|
399
|
-
Opus: "Opus",
|
|
400
|
-
Wav: "Wav",
|
|
401
|
-
};
|
|
402
|
-
const MediaPipelineElementStatus = {
|
|
403
|
-
Failed: "Failed",
|
|
404
|
-
InProgress: "InProgress",
|
|
405
|
-
Initializing: "Initializing",
|
|
406
|
-
NotStarted: "NotStarted",
|
|
407
|
-
NotSupported: "NotSupported",
|
|
408
|
-
Paused: "Paused",
|
|
409
|
-
Stopped: "Stopped",
|
|
410
|
-
Stopping: "Stopping",
|
|
411
|
-
};
|
|
412
|
-
const MediaInsightsPipelineConfigurationElementType = {
|
|
413
|
-
AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR: "AmazonTranscribeCallAnalyticsProcessor",
|
|
414
|
-
AMAZON_TRANSCRIBE_PROCESSOR: "AmazonTranscribeProcessor",
|
|
415
|
-
KINESIS_DATA_STREAM_SINK: "KinesisDataStreamSink",
|
|
416
|
-
LAMBDA_FUNCTION_SINK: "LambdaFunctionSink",
|
|
417
|
-
S3_RECORDING_SINK: "S3RecordingSink",
|
|
418
|
-
SNS_TOPIC_SINK: "SnsTopicSink",
|
|
419
|
-
SQS_QUEUE_SINK: "SqsQueueSink",
|
|
420
|
-
VOICE_ANALYTICS_PROCESSOR: "VoiceAnalyticsProcessor",
|
|
421
|
-
VOICE_ENHANCEMENT_SINK: "VoiceEnhancementSink",
|
|
422
|
-
};
|
|
423
246
|
let NotFoundException$1 = class NotFoundException extends ChimeSDKMediaPipelinesServiceException$1 {
|
|
424
247
|
name = "NotFoundException";
|
|
425
248
|
$fault = "client";
|
|
@@ -438,28 +261,6 @@ let NotFoundException$1 = class NotFoundException extends ChimeSDKMediaPipelines
|
|
|
438
261
|
this.RequestId = opts.RequestId;
|
|
439
262
|
}
|
|
440
263
|
};
|
|
441
|
-
const VoiceAnalyticsConfigurationStatus = {
|
|
442
|
-
DISABLED: "Disabled",
|
|
443
|
-
ENABLED: "Enabled",
|
|
444
|
-
};
|
|
445
|
-
const SentimentType = {
|
|
446
|
-
NEGATIVE: "NEGATIVE",
|
|
447
|
-
};
|
|
448
|
-
const RealTimeAlertRuleType = {
|
|
449
|
-
IssueDetection: "IssueDetection",
|
|
450
|
-
KeywordMatch: "KeywordMatch",
|
|
451
|
-
Sentiment: "Sentiment",
|
|
452
|
-
};
|
|
453
|
-
const LiveConnectorSinkType = {
|
|
454
|
-
RTMP: "RTMP",
|
|
455
|
-
};
|
|
456
|
-
const LiveConnectorMuxType = {
|
|
457
|
-
AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo",
|
|
458
|
-
AudioWithCompositedVideo: "AudioWithCompositedVideo",
|
|
459
|
-
};
|
|
460
|
-
const LiveConnectorSourceType = {
|
|
461
|
-
ChimeSdkMeeting: "ChimeSdkMeeting",
|
|
462
|
-
};
|
|
463
264
|
let ConflictException$1 = class ConflictException extends ChimeSDKMediaPipelinesServiceException$1 {
|
|
464
265
|
name = "ConflictException";
|
|
465
266
|
$fault = "client";
|
|
@@ -478,35 +279,6 @@ let ConflictException$1 = class ConflictException extends ChimeSDKMediaPipelines
|
|
|
478
279
|
this.RequestId = opts.RequestId;
|
|
479
280
|
}
|
|
480
281
|
};
|
|
481
|
-
const KinesisVideoStreamPoolStatus = {
|
|
482
|
-
ACTIVE: "ACTIVE",
|
|
483
|
-
CREATING: "CREATING",
|
|
484
|
-
DELETING: "DELETING",
|
|
485
|
-
FAILED: "FAILED",
|
|
486
|
-
UPDATING: "UPDATING",
|
|
487
|
-
};
|
|
488
|
-
const MediaStreamType = {
|
|
489
|
-
IndividualAudio: "IndividualAudio",
|
|
490
|
-
MixedAudio: "MixedAudio",
|
|
491
|
-
};
|
|
492
|
-
const MediaStreamPipelineSinkType = {
|
|
493
|
-
KinesisVideoStreamPool: "KinesisVideoStreamPool",
|
|
494
|
-
};
|
|
495
|
-
const MediaPipelineTaskStatus = {
|
|
496
|
-
Failed: "Failed",
|
|
497
|
-
InProgress: "InProgress",
|
|
498
|
-
Initializing: "Initializing",
|
|
499
|
-
NotStarted: "NotStarted",
|
|
500
|
-
Stopped: "Stopped",
|
|
501
|
-
Stopping: "Stopping",
|
|
502
|
-
};
|
|
503
|
-
const VoiceAnalyticsLanguageCode = {
|
|
504
|
-
EN_US: "en-US",
|
|
505
|
-
};
|
|
506
|
-
const MediaPipelineStatusUpdate = {
|
|
507
|
-
Pause: "Pause",
|
|
508
|
-
Resume: "Resume",
|
|
509
|
-
};
|
|
510
282
|
|
|
511
283
|
const _A = "Arn";
|
|
512
284
|
const _AAC = "AudioArtifactsConfiguration";
|
|
@@ -2587,6 +2359,235 @@ const paginateListMediaPipelineKinesisVideoStreamPools = core.createPaginator(Ch
|
|
|
2587
2359
|
|
|
2588
2360
|
const paginateListMediaPipelines = core.createPaginator(ChimeSDKMediaPipelinesClient, ListMediaPipelinesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2589
2361
|
|
|
2362
|
+
const ActiveSpeakerPosition = {
|
|
2363
|
+
BottomLeft: "BottomLeft",
|
|
2364
|
+
BottomRight: "BottomRight",
|
|
2365
|
+
TopLeft: "TopLeft",
|
|
2366
|
+
TopRight: "TopRight",
|
|
2367
|
+
};
|
|
2368
|
+
const ContentType = {
|
|
2369
|
+
PII: "PII",
|
|
2370
|
+
};
|
|
2371
|
+
const CallAnalyticsLanguageCode = {
|
|
2372
|
+
DE_DE: "de-DE",
|
|
2373
|
+
EN_AU: "en-AU",
|
|
2374
|
+
EN_GB: "en-GB",
|
|
2375
|
+
EN_US: "en-US",
|
|
2376
|
+
ES_US: "es-US",
|
|
2377
|
+
FR_CA: "fr-CA",
|
|
2378
|
+
FR_FR: "fr-FR",
|
|
2379
|
+
IT_IT: "it-IT",
|
|
2380
|
+
PT_BR: "pt-BR",
|
|
2381
|
+
};
|
|
2382
|
+
const PartialResultsStability = {
|
|
2383
|
+
HIGH: "high",
|
|
2384
|
+
LOW: "low",
|
|
2385
|
+
MEDIUM: "medium",
|
|
2386
|
+
};
|
|
2387
|
+
const ContentRedactionOutput = {
|
|
2388
|
+
REDACTED: "redacted",
|
|
2389
|
+
REDACTED_AND_UNREDACTED: "redacted_and_unredacted",
|
|
2390
|
+
};
|
|
2391
|
+
const VocabularyFilterMethod = {
|
|
2392
|
+
MASK: "mask",
|
|
2393
|
+
REMOVE: "remove",
|
|
2394
|
+
TAG: "tag",
|
|
2395
|
+
};
|
|
2396
|
+
const AudioArtifactsConcatenationState = {
|
|
2397
|
+
Enabled: "Enabled",
|
|
2398
|
+
};
|
|
2399
|
+
const ArtifactsConcatenationState = {
|
|
2400
|
+
Disabled: "Disabled",
|
|
2401
|
+
Enabled: "Enabled",
|
|
2402
|
+
};
|
|
2403
|
+
const AudioMuxType = {
|
|
2404
|
+
AudioOnly: "AudioOnly",
|
|
2405
|
+
AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo",
|
|
2406
|
+
AudioWithCompositedVideo: "AudioWithCompositedVideo",
|
|
2407
|
+
};
|
|
2408
|
+
const CanvasOrientation = {
|
|
2409
|
+
Landscape: "Landscape",
|
|
2410
|
+
Portrait: "Portrait",
|
|
2411
|
+
};
|
|
2412
|
+
const ContentShareLayoutOption = {
|
|
2413
|
+
ActiveSpeakerOnly: "ActiveSpeakerOnly",
|
|
2414
|
+
Horizontal: "Horizontal",
|
|
2415
|
+
PresenterOnly: "PresenterOnly",
|
|
2416
|
+
Vertical: "Vertical",
|
|
2417
|
+
};
|
|
2418
|
+
const TileOrder = {
|
|
2419
|
+
JoinSequence: "JoinSequence",
|
|
2420
|
+
SpeakerSequence: "SpeakerSequence",
|
|
2421
|
+
};
|
|
2422
|
+
const HorizontalTilePosition = {
|
|
2423
|
+
Bottom: "Bottom",
|
|
2424
|
+
Top: "Top",
|
|
2425
|
+
};
|
|
2426
|
+
const PresenterPosition = {
|
|
2427
|
+
BottomLeft: "BottomLeft",
|
|
2428
|
+
BottomRight: "BottomRight",
|
|
2429
|
+
TopLeft: "TopLeft",
|
|
2430
|
+
TopRight: "TopRight",
|
|
2431
|
+
};
|
|
2432
|
+
const VerticalTilePosition = {
|
|
2433
|
+
Left: "Left",
|
|
2434
|
+
Right: "Right",
|
|
2435
|
+
};
|
|
2436
|
+
const BorderColor = {
|
|
2437
|
+
Black: "Black",
|
|
2438
|
+
Blue: "Blue",
|
|
2439
|
+
Green: "Green",
|
|
2440
|
+
Red: "Red",
|
|
2441
|
+
White: "White",
|
|
2442
|
+
Yellow: "Yellow",
|
|
2443
|
+
};
|
|
2444
|
+
const HighlightColor = {
|
|
2445
|
+
Black: "Black",
|
|
2446
|
+
Blue: "Blue",
|
|
2447
|
+
Green: "Green",
|
|
2448
|
+
Red: "Red",
|
|
2449
|
+
White: "White",
|
|
2450
|
+
Yellow: "Yellow",
|
|
2451
|
+
};
|
|
2452
|
+
const LayoutOption = {
|
|
2453
|
+
GridView: "GridView",
|
|
2454
|
+
};
|
|
2455
|
+
const ResolutionOption = {
|
|
2456
|
+
FHD: "FHD",
|
|
2457
|
+
HD: "HD",
|
|
2458
|
+
};
|
|
2459
|
+
const ContentMuxType = {
|
|
2460
|
+
ContentOnly: "ContentOnly",
|
|
2461
|
+
};
|
|
2462
|
+
const ArtifactsState = {
|
|
2463
|
+
Disabled: "Disabled",
|
|
2464
|
+
Enabled: "Enabled",
|
|
2465
|
+
};
|
|
2466
|
+
const VideoMuxType = {
|
|
2467
|
+
VideoOnly: "VideoOnly",
|
|
2468
|
+
};
|
|
2469
|
+
const AudioChannelsOption = {
|
|
2470
|
+
Mono: "Mono",
|
|
2471
|
+
Stereo: "Stereo",
|
|
2472
|
+
};
|
|
2473
|
+
const ErrorCode = {
|
|
2474
|
+
BadRequest: "BadRequest",
|
|
2475
|
+
Forbidden: "Forbidden",
|
|
2476
|
+
NotFound: "NotFound",
|
|
2477
|
+
ResourceLimitExceeded: "ResourceLimitExceeded",
|
|
2478
|
+
ServiceFailure: "ServiceFailure",
|
|
2479
|
+
ServiceUnavailable: "ServiceUnavailable",
|
|
2480
|
+
Throttling: "Throttling",
|
|
2481
|
+
};
|
|
2482
|
+
const ParticipantRole = {
|
|
2483
|
+
AGENT: "AGENT",
|
|
2484
|
+
CUSTOMER: "CUSTOMER",
|
|
2485
|
+
};
|
|
2486
|
+
const MediaPipelineSinkType = {
|
|
2487
|
+
S3Bucket: "S3Bucket",
|
|
2488
|
+
};
|
|
2489
|
+
const MediaPipelineSourceType = {
|
|
2490
|
+
ChimeSdkMeeting: "ChimeSdkMeeting",
|
|
2491
|
+
};
|
|
2492
|
+
const MediaPipelineStatus = {
|
|
2493
|
+
Failed: "Failed",
|
|
2494
|
+
InProgress: "InProgress",
|
|
2495
|
+
Initializing: "Initializing",
|
|
2496
|
+
NotStarted: "NotStarted",
|
|
2497
|
+
Paused: "Paused",
|
|
2498
|
+
Stopped: "Stopped",
|
|
2499
|
+
Stopping: "Stopping",
|
|
2500
|
+
};
|
|
2501
|
+
const ConcatenationSinkType = {
|
|
2502
|
+
S3Bucket: "S3Bucket",
|
|
2503
|
+
};
|
|
2504
|
+
const ConcatenationSourceType = {
|
|
2505
|
+
MediaCapturePipeline: "MediaCapturePipeline",
|
|
2506
|
+
};
|
|
2507
|
+
const FragmentSelectorType = {
|
|
2508
|
+
ProducerTimestamp: "ProducerTimestamp",
|
|
2509
|
+
ServerTimestamp: "ServerTimestamp",
|
|
2510
|
+
};
|
|
2511
|
+
const MediaEncoding = {
|
|
2512
|
+
PCM: "pcm",
|
|
2513
|
+
};
|
|
2514
|
+
const RecordingFileFormat = {
|
|
2515
|
+
Opus: "Opus",
|
|
2516
|
+
Wav: "Wav",
|
|
2517
|
+
};
|
|
2518
|
+
const MediaPipelineElementStatus = {
|
|
2519
|
+
Failed: "Failed",
|
|
2520
|
+
InProgress: "InProgress",
|
|
2521
|
+
Initializing: "Initializing",
|
|
2522
|
+
NotStarted: "NotStarted",
|
|
2523
|
+
NotSupported: "NotSupported",
|
|
2524
|
+
Paused: "Paused",
|
|
2525
|
+
Stopped: "Stopped",
|
|
2526
|
+
Stopping: "Stopping",
|
|
2527
|
+
};
|
|
2528
|
+
const MediaInsightsPipelineConfigurationElementType = {
|
|
2529
|
+
AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR: "AmazonTranscribeCallAnalyticsProcessor",
|
|
2530
|
+
AMAZON_TRANSCRIBE_PROCESSOR: "AmazonTranscribeProcessor",
|
|
2531
|
+
KINESIS_DATA_STREAM_SINK: "KinesisDataStreamSink",
|
|
2532
|
+
LAMBDA_FUNCTION_SINK: "LambdaFunctionSink",
|
|
2533
|
+
S3_RECORDING_SINK: "S3RecordingSink",
|
|
2534
|
+
SNS_TOPIC_SINK: "SnsTopicSink",
|
|
2535
|
+
SQS_QUEUE_SINK: "SqsQueueSink",
|
|
2536
|
+
VOICE_ANALYTICS_PROCESSOR: "VoiceAnalyticsProcessor",
|
|
2537
|
+
VOICE_ENHANCEMENT_SINK: "VoiceEnhancementSink",
|
|
2538
|
+
};
|
|
2539
|
+
const VoiceAnalyticsConfigurationStatus = {
|
|
2540
|
+
DISABLED: "Disabled",
|
|
2541
|
+
ENABLED: "Enabled",
|
|
2542
|
+
};
|
|
2543
|
+
const SentimentType = {
|
|
2544
|
+
NEGATIVE: "NEGATIVE",
|
|
2545
|
+
};
|
|
2546
|
+
const RealTimeAlertRuleType = {
|
|
2547
|
+
IssueDetection: "IssueDetection",
|
|
2548
|
+
KeywordMatch: "KeywordMatch",
|
|
2549
|
+
Sentiment: "Sentiment",
|
|
2550
|
+
};
|
|
2551
|
+
const LiveConnectorSinkType = {
|
|
2552
|
+
RTMP: "RTMP",
|
|
2553
|
+
};
|
|
2554
|
+
const LiveConnectorMuxType = {
|
|
2555
|
+
AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo",
|
|
2556
|
+
AudioWithCompositedVideo: "AudioWithCompositedVideo",
|
|
2557
|
+
};
|
|
2558
|
+
const LiveConnectorSourceType = {
|
|
2559
|
+
ChimeSdkMeeting: "ChimeSdkMeeting",
|
|
2560
|
+
};
|
|
2561
|
+
const KinesisVideoStreamPoolStatus = {
|
|
2562
|
+
ACTIVE: "ACTIVE",
|
|
2563
|
+
CREATING: "CREATING",
|
|
2564
|
+
DELETING: "DELETING",
|
|
2565
|
+
FAILED: "FAILED",
|
|
2566
|
+
UPDATING: "UPDATING",
|
|
2567
|
+
};
|
|
2568
|
+
const MediaStreamType = {
|
|
2569
|
+
IndividualAudio: "IndividualAudio",
|
|
2570
|
+
MixedAudio: "MixedAudio",
|
|
2571
|
+
};
|
|
2572
|
+
const MediaStreamPipelineSinkType = {
|
|
2573
|
+
KinesisVideoStreamPool: "KinesisVideoStreamPool",
|
|
2574
|
+
};
|
|
2575
|
+
const MediaPipelineTaskStatus = {
|
|
2576
|
+
Failed: "Failed",
|
|
2577
|
+
InProgress: "InProgress",
|
|
2578
|
+
Initializing: "Initializing",
|
|
2579
|
+
NotStarted: "NotStarted",
|
|
2580
|
+
Stopped: "Stopped",
|
|
2581
|
+
Stopping: "Stopping",
|
|
2582
|
+
};
|
|
2583
|
+
const VoiceAnalyticsLanguageCode = {
|
|
2584
|
+
EN_US: "en-US",
|
|
2585
|
+
};
|
|
2586
|
+
const MediaPipelineStatusUpdate = {
|
|
2587
|
+
Pause: "Pause",
|
|
2588
|
+
Resume: "Resume",
|
|
2589
|
+
};
|
|
2590
|
+
|
|
2590
2591
|
Object.defineProperty(exports, "$Command", {
|
|
2591
2592
|
enumerable: true,
|
|
2592
2593
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./ChimeSDKMediaPipelinesClient";
|
|
|
2
2
|
export * from "./ChimeSDKMediaPipelines";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { ChimeSDKMediaPipelinesServiceException } from "./models/ChimeSDKMediaPipelinesServiceException";
|