@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,103 +1,86 @@
1
1
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
2
2
  import { ChimeSDKMediaPipelinesServiceException as __BaseException } from "./ChimeSDKMediaPipelinesServiceException";
3
- export var ContentType;
4
- (function (ContentType) {
5
- ContentType["PII"] = "PII";
6
- })(ContentType || (ContentType = {}));
7
- export var CallAnalyticsLanguageCode;
8
- (function (CallAnalyticsLanguageCode) {
9
- CallAnalyticsLanguageCode["DE_DE"] = "de-DE";
10
- CallAnalyticsLanguageCode["EN_AU"] = "en-AU";
11
- CallAnalyticsLanguageCode["EN_GB"] = "en-GB";
12
- CallAnalyticsLanguageCode["EN_US"] = "en-US";
13
- CallAnalyticsLanguageCode["ES_US"] = "es-US";
14
- CallAnalyticsLanguageCode["FR_CA"] = "fr-CA";
15
- CallAnalyticsLanguageCode["FR_FR"] = "fr-FR";
16
- CallAnalyticsLanguageCode["IT_IT"] = "it-IT";
17
- CallAnalyticsLanguageCode["PT_BR"] = "pt-BR";
18
- })(CallAnalyticsLanguageCode || (CallAnalyticsLanguageCode = {}));
19
- export var PartialResultsStability;
20
- (function (PartialResultsStability) {
21
- PartialResultsStability["HIGH"] = "high";
22
- PartialResultsStability["LOW"] = "low";
23
- PartialResultsStability["MEDIUM"] = "medium";
24
- })(PartialResultsStability || (PartialResultsStability = {}));
25
- export var ContentRedactionOutput;
26
- (function (ContentRedactionOutput) {
27
- ContentRedactionOutput["REDACTED"] = "redacted";
28
- ContentRedactionOutput["REDACTED_AND_UNREDACTED"] = "redacted_and_unredacted";
29
- })(ContentRedactionOutput || (ContentRedactionOutput = {}));
30
- export var VocabularyFilterMethod;
31
- (function (VocabularyFilterMethod) {
32
- VocabularyFilterMethod["MASK"] = "mask";
33
- VocabularyFilterMethod["REMOVE"] = "remove";
34
- VocabularyFilterMethod["TAG"] = "tag";
35
- })(VocabularyFilterMethod || (VocabularyFilterMethod = {}));
36
- export var AudioArtifactsConcatenationState;
37
- (function (AudioArtifactsConcatenationState) {
38
- AudioArtifactsConcatenationState["Enabled"] = "Enabled";
39
- })(AudioArtifactsConcatenationState || (AudioArtifactsConcatenationState = {}));
40
- export var ArtifactsConcatenationState;
41
- (function (ArtifactsConcatenationState) {
42
- ArtifactsConcatenationState["Disabled"] = "Disabled";
43
- ArtifactsConcatenationState["Enabled"] = "Enabled";
44
- })(ArtifactsConcatenationState || (ArtifactsConcatenationState = {}));
45
- export var AudioMuxType;
46
- (function (AudioMuxType) {
47
- AudioMuxType["AudioOnly"] = "AudioOnly";
48
- AudioMuxType["AudioWithActiveSpeakerVideo"] = "AudioWithActiveSpeakerVideo";
49
- AudioMuxType["AudioWithCompositedVideo"] = "AudioWithCompositedVideo";
50
- })(AudioMuxType || (AudioMuxType = {}));
51
- export var ContentShareLayoutOption;
52
- (function (ContentShareLayoutOption) {
53
- ContentShareLayoutOption["Horizontal"] = "Horizontal";
54
- ContentShareLayoutOption["PresenterOnly"] = "PresenterOnly";
55
- ContentShareLayoutOption["Vertical"] = "Vertical";
56
- })(ContentShareLayoutOption || (ContentShareLayoutOption = {}));
57
- export var PresenterPosition;
58
- (function (PresenterPosition) {
59
- PresenterPosition["BottomLeft"] = "BottomLeft";
60
- PresenterPosition["BottomRight"] = "BottomRight";
61
- PresenterPosition["TopLeft"] = "TopLeft";
62
- PresenterPosition["TopRight"] = "TopRight";
63
- })(PresenterPosition || (PresenterPosition = {}));
64
- export var LayoutOption;
65
- (function (LayoutOption) {
66
- LayoutOption["GridView"] = "GridView";
67
- })(LayoutOption || (LayoutOption = {}));
68
- export var ResolutionOption;
69
- (function (ResolutionOption) {
70
- ResolutionOption["FHD"] = "FHD";
71
- ResolutionOption["HD"] = "HD";
72
- })(ResolutionOption || (ResolutionOption = {}));
73
- export var ContentMuxType;
74
- (function (ContentMuxType) {
75
- ContentMuxType["ContentOnly"] = "ContentOnly";
76
- })(ContentMuxType || (ContentMuxType = {}));
77
- export var ArtifactsState;
78
- (function (ArtifactsState) {
79
- ArtifactsState["Disabled"] = "Disabled";
80
- ArtifactsState["Enabled"] = "Enabled";
81
- })(ArtifactsState || (ArtifactsState = {}));
82
- export var VideoMuxType;
83
- (function (VideoMuxType) {
84
- VideoMuxType["VideoOnly"] = "VideoOnly";
85
- })(VideoMuxType || (VideoMuxType = {}));
86
- export var AudioChannelsOption;
87
- (function (AudioChannelsOption) {
88
- AudioChannelsOption["Mono"] = "Mono";
89
- AudioChannelsOption["Stereo"] = "Stereo";
90
- })(AudioChannelsOption || (AudioChannelsOption = {}));
91
- export var ErrorCode;
92
- (function (ErrorCode) {
93
- ErrorCode["BadRequest"] = "BadRequest";
94
- ErrorCode["Forbidden"] = "Forbidden";
95
- ErrorCode["NotFound"] = "NotFound";
96
- ErrorCode["ResourceLimitExceeded"] = "ResourceLimitExceeded";
97
- ErrorCode["ServiceFailure"] = "ServiceFailure";
98
- ErrorCode["ServiceUnavailable"] = "ServiceUnavailable";
99
- ErrorCode["Throttling"] = "Throttling";
100
- })(ErrorCode || (ErrorCode = {}));
3
+ export const ContentType = {
4
+ PII: "PII",
5
+ };
6
+ export const 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 const PartialResultsStability = {
18
+ HIGH: "high",
19
+ LOW: "low",
20
+ MEDIUM: "medium",
21
+ };
22
+ export const ContentRedactionOutput = {
23
+ REDACTED: "redacted",
24
+ REDACTED_AND_UNREDACTED: "redacted_and_unredacted",
25
+ };
26
+ export const VocabularyFilterMethod = {
27
+ MASK: "mask",
28
+ REMOVE: "remove",
29
+ TAG: "tag",
30
+ };
31
+ export const AudioArtifactsConcatenationState = {
32
+ Enabled: "Enabled",
33
+ };
34
+ export const ArtifactsConcatenationState = {
35
+ Disabled: "Disabled",
36
+ Enabled: "Enabled",
37
+ };
38
+ export const AudioMuxType = {
39
+ AudioOnly: "AudioOnly",
40
+ AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo",
41
+ AudioWithCompositedVideo: "AudioWithCompositedVideo",
42
+ };
43
+ export const ContentShareLayoutOption = {
44
+ Horizontal: "Horizontal",
45
+ PresenterOnly: "PresenterOnly",
46
+ Vertical: "Vertical",
47
+ };
48
+ export const PresenterPosition = {
49
+ BottomLeft: "BottomLeft",
50
+ BottomRight: "BottomRight",
51
+ TopLeft: "TopLeft",
52
+ TopRight: "TopRight",
53
+ };
54
+ export const LayoutOption = {
55
+ GridView: "GridView",
56
+ };
57
+ export const ResolutionOption = {
58
+ FHD: "FHD",
59
+ HD: "HD",
60
+ };
61
+ export const ContentMuxType = {
62
+ ContentOnly: "ContentOnly",
63
+ };
64
+ export const ArtifactsState = {
65
+ Disabled: "Disabled",
66
+ Enabled: "Enabled",
67
+ };
68
+ export const VideoMuxType = {
69
+ VideoOnly: "VideoOnly",
70
+ };
71
+ export const AudioChannelsOption = {
72
+ Mono: "Mono",
73
+ Stereo: "Stereo",
74
+ };
75
+ export const ErrorCode = {
76
+ BadRequest: "BadRequest",
77
+ Forbidden: "Forbidden",
78
+ NotFound: "NotFound",
79
+ ResourceLimitExceeded: "ResourceLimitExceeded",
80
+ ServiceFailure: "ServiceFailure",
81
+ ServiceUnavailable: "ServiceUnavailable",
82
+ Throttling: "Throttling",
83
+ };
101
84
  export class BadRequestException extends __BaseException {
102
85
  constructor(opts) {
103
86
  super({
@@ -113,28 +96,24 @@ export class BadRequestException extends __BaseException {
113
96
  this.RequestId = opts.RequestId;
114
97
  }
115
98
  }
116
- export var ParticipantRole;
117
- (function (ParticipantRole) {
118
- ParticipantRole["AGENT"] = "AGENT";
119
- ParticipantRole["CUSTOMER"] = "CUSTOMER";
120
- })(ParticipantRole || (ParticipantRole = {}));
121
- export var MediaPipelineSinkType;
122
- (function (MediaPipelineSinkType) {
123
- MediaPipelineSinkType["S3Bucket"] = "S3Bucket";
124
- })(MediaPipelineSinkType || (MediaPipelineSinkType = {}));
125
- export var MediaPipelineSourceType;
126
- (function (MediaPipelineSourceType) {
127
- MediaPipelineSourceType["ChimeSdkMeeting"] = "ChimeSdkMeeting";
128
- })(MediaPipelineSourceType || (MediaPipelineSourceType = {}));
129
- export var MediaPipelineStatus;
130
- (function (MediaPipelineStatus) {
131
- MediaPipelineStatus["Failed"] = "Failed";
132
- MediaPipelineStatus["InProgress"] = "InProgress";
133
- MediaPipelineStatus["Initializing"] = "Initializing";
134
- MediaPipelineStatus["Paused"] = "Paused";
135
- MediaPipelineStatus["Stopped"] = "Stopped";
136
- MediaPipelineStatus["Stopping"] = "Stopping";
137
- })(MediaPipelineStatus || (MediaPipelineStatus = {}));
99
+ export const ParticipantRole = {
100
+ AGENT: "AGENT",
101
+ CUSTOMER: "CUSTOMER",
102
+ };
103
+ export const MediaPipelineSinkType = {
104
+ S3Bucket: "S3Bucket",
105
+ };
106
+ export const MediaPipelineSourceType = {
107
+ ChimeSdkMeeting: "ChimeSdkMeeting",
108
+ };
109
+ export const MediaPipelineStatus = {
110
+ Failed: "Failed",
111
+ InProgress: "InProgress",
112
+ Initializing: "Initializing",
113
+ Paused: "Paused",
114
+ Stopped: "Stopped",
115
+ Stopping: "Stopping",
116
+ };
138
117
  export class ForbiddenException extends __BaseException {
139
118
  constructor(opts) {
140
119
  super({
@@ -225,28 +204,23 @@ export class UnauthorizedClientException extends __BaseException {
225
204
  this.RequestId = opts.RequestId;
226
205
  }
227
206
  }
228
- export var ConcatenationSinkType;
229
- (function (ConcatenationSinkType) {
230
- ConcatenationSinkType["S3Bucket"] = "S3Bucket";
231
- })(ConcatenationSinkType || (ConcatenationSinkType = {}));
232
- export var ConcatenationSourceType;
233
- (function (ConcatenationSourceType) {
234
- ConcatenationSourceType["MediaCapturePipeline"] = "MediaCapturePipeline";
235
- })(ConcatenationSourceType || (ConcatenationSourceType = {}));
236
- export var FragmentSelectorType;
237
- (function (FragmentSelectorType) {
238
- FragmentSelectorType["ProducerTimestamp"] = "ProducerTimestamp";
239
- FragmentSelectorType["ServerTimestamp"] = "ServerTimestamp";
240
- })(FragmentSelectorType || (FragmentSelectorType = {}));
241
- export var MediaEncoding;
242
- (function (MediaEncoding) {
243
- MediaEncoding["PCM"] = "pcm";
244
- })(MediaEncoding || (MediaEncoding = {}));
245
- export var RecordingFileFormat;
246
- (function (RecordingFileFormat) {
247
- RecordingFileFormat["Opus"] = "Opus";
248
- RecordingFileFormat["Wav"] = "Wav";
249
- })(RecordingFileFormat || (RecordingFileFormat = {}));
207
+ export const ConcatenationSinkType = {
208
+ S3Bucket: "S3Bucket",
209
+ };
210
+ export const ConcatenationSourceType = {
211
+ MediaCapturePipeline: "MediaCapturePipeline",
212
+ };
213
+ export const FragmentSelectorType = {
214
+ ProducerTimestamp: "ProducerTimestamp",
215
+ ServerTimestamp: "ServerTimestamp",
216
+ };
217
+ export const MediaEncoding = {
218
+ PCM: "pcm",
219
+ };
220
+ export const RecordingFileFormat = {
221
+ Opus: "Opus",
222
+ Wav: "Wav",
223
+ };
250
224
  export class NotFoundException extends __BaseException {
251
225
  constructor(opts) {
252
226
  super({
@@ -262,45 +236,38 @@ export class NotFoundException extends __BaseException {
262
236
  this.RequestId = opts.RequestId;
263
237
  }
264
238
  }
265
- export var MediaInsightsPipelineConfigurationElementType;
266
- (function (MediaInsightsPipelineConfigurationElementType) {
267
- MediaInsightsPipelineConfigurationElementType["AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR"] = "AmazonTranscribeCallAnalyticsProcessor";
268
- MediaInsightsPipelineConfigurationElementType["AMAZON_TRANSCRIBE_PROCESSOR"] = "AmazonTranscribeProcessor";
269
- MediaInsightsPipelineConfigurationElementType["KINESIS_DATA_STREAM_SINK"] = "KinesisDataStreamSink";
270
- MediaInsightsPipelineConfigurationElementType["LAMBDA_FUNCTION_SINK"] = "LambdaFunctionSink";
271
- MediaInsightsPipelineConfigurationElementType["S3_RECORDING_SINK"] = "S3RecordingSink";
272
- MediaInsightsPipelineConfigurationElementType["SNS_TOPIC_SINK"] = "SnsTopicSink";
273
- MediaInsightsPipelineConfigurationElementType["SQS_QUEUE_SINK"] = "SqsQueueSink";
274
- MediaInsightsPipelineConfigurationElementType["VOICE_ANALYTICS_PROCESSOR"] = "VoiceAnalyticsProcessor";
275
- })(MediaInsightsPipelineConfigurationElementType || (MediaInsightsPipelineConfigurationElementType = {}));
276
- export var VoiceAnalyticsConfigurationStatus;
277
- (function (VoiceAnalyticsConfigurationStatus) {
278
- VoiceAnalyticsConfigurationStatus["DISABLED"] = "Disabled";
279
- VoiceAnalyticsConfigurationStatus["ENABLED"] = "Enabled";
280
- })(VoiceAnalyticsConfigurationStatus || (VoiceAnalyticsConfigurationStatus = {}));
281
- export var SentimentType;
282
- (function (SentimentType) {
283
- SentimentType["NEGATIVE"] = "NEGATIVE";
284
- })(SentimentType || (SentimentType = {}));
285
- export var RealTimeAlertRuleType;
286
- (function (RealTimeAlertRuleType) {
287
- RealTimeAlertRuleType["IssueDetection"] = "IssueDetection";
288
- RealTimeAlertRuleType["KeywordMatch"] = "KeywordMatch";
289
- RealTimeAlertRuleType["Sentiment"] = "Sentiment";
290
- })(RealTimeAlertRuleType || (RealTimeAlertRuleType = {}));
291
- export var LiveConnectorSinkType;
292
- (function (LiveConnectorSinkType) {
293
- LiveConnectorSinkType["RTMP"] = "RTMP";
294
- })(LiveConnectorSinkType || (LiveConnectorSinkType = {}));
295
- export var LiveConnectorMuxType;
296
- (function (LiveConnectorMuxType) {
297
- LiveConnectorMuxType["AudioWithActiveSpeakerVideo"] = "AudioWithActiveSpeakerVideo";
298
- LiveConnectorMuxType["AudioWithCompositedVideo"] = "AudioWithCompositedVideo";
299
- })(LiveConnectorMuxType || (LiveConnectorMuxType = {}));
300
- export var LiveConnectorSourceType;
301
- (function (LiveConnectorSourceType) {
302
- LiveConnectorSourceType["ChimeSdkMeeting"] = "ChimeSdkMeeting";
303
- })(LiveConnectorSourceType || (LiveConnectorSourceType = {}));
239
+ export const MediaInsightsPipelineConfigurationElementType = {
240
+ AMAZON_TRANSCRIBE_CALL_ANALYTICS_PROCESSOR: "AmazonTranscribeCallAnalyticsProcessor",
241
+ AMAZON_TRANSCRIBE_PROCESSOR: "AmazonTranscribeProcessor",
242
+ KINESIS_DATA_STREAM_SINK: "KinesisDataStreamSink",
243
+ LAMBDA_FUNCTION_SINK: "LambdaFunctionSink",
244
+ S3_RECORDING_SINK: "S3RecordingSink",
245
+ SNS_TOPIC_SINK: "SnsTopicSink",
246
+ SQS_QUEUE_SINK: "SqsQueueSink",
247
+ VOICE_ANALYTICS_PROCESSOR: "VoiceAnalyticsProcessor",
248
+ };
249
+ export const VoiceAnalyticsConfigurationStatus = {
250
+ DISABLED: "Disabled",
251
+ ENABLED: "Enabled",
252
+ };
253
+ export const SentimentType = {
254
+ NEGATIVE: "NEGATIVE",
255
+ };
256
+ export const RealTimeAlertRuleType = {
257
+ IssueDetection: "IssueDetection",
258
+ KeywordMatch: "KeywordMatch",
259
+ Sentiment: "Sentiment",
260
+ };
261
+ export const LiveConnectorSinkType = {
262
+ RTMP: "RTMP",
263
+ };
264
+ export const LiveConnectorMuxType = {
265
+ AudioWithActiveSpeakerVideo: "AudioWithActiveSpeakerVideo",
266
+ AudioWithCompositedVideo: "AudioWithCompositedVideo",
267
+ };
268
+ export const LiveConnectorSourceType = {
269
+ ChimeSdkMeeting: "ChimeSdkMeeting",
270
+ };
304
271
  export class ConflictException extends __BaseException {
305
272
  constructor(opts) {
306
273
  super({
@@ -316,11 +283,10 @@ export class ConflictException extends __BaseException {
316
283
  this.RequestId = opts.RequestId;
317
284
  }
318
285
  }
319
- export var MediaPipelineStatusUpdate;
320
- (function (MediaPipelineStatusUpdate) {
321
- MediaPipelineStatusUpdate["Pause"] = "Pause";
322
- MediaPipelineStatusUpdate["Resume"] = "Resume";
323
- })(MediaPipelineStatusUpdate || (MediaPipelineStatusUpdate = {}));
286
+ export const MediaPipelineStatusUpdate = {
287
+ Pause: "Pause",
288
+ Resume: "Resume",
289
+ };
324
290
  export const SelectedVideoStreamsFilterSensitiveLog = (obj) => ({
325
291
  ...obj,
326
292
  ...(obj.ExternalUserIds && { ExternalUserIds: SENSITIVE_STRING }),