@aws-sdk/client-chime-sdk-media-pipelines 3.185.0 → 3.188.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/CHANGELOG.md +16 -0
- package/dist-es/ChimeSDKMediaPipelines.js +50 -57
- package/dist-es/ChimeSDKMediaPipelinesClient.js +22 -28
- package/dist-es/commands/CreateMediaCapturePipelineCommand.js +21 -28
- package/dist-es/commands/CreateMediaConcatenationPipelineCommand.js +21 -28
- package/dist-es/commands/CreateMediaLiveConnectorPipelineCommand.js +21 -28
- package/dist-es/commands/DeleteMediaCapturePipelineCommand.js +22 -29
- package/dist-es/commands/DeleteMediaPipelineCommand.js +22 -29
- package/dist-es/commands/GetMediaCapturePipelineCommand.js +21 -28
- package/dist-es/commands/GetMediaPipelineCommand.js +21 -28
- package/dist-es/commands/ListMediaCapturePipelinesCommand.js +21 -28
- package/dist-es/commands/ListMediaPipelinesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ChimeSDKMediaPipelinesServiceException.js +5 -10
- package/dist-es/models/models_0.js +349 -201
- package/dist-es/pagination/ListMediaCapturePipelinesPaginator.js +25 -68
- package/dist-es/pagination/ListMediaPipelinesPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +1294 -1621
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { ChimeSDKMediaPipelinesServiceException as __BaseException } from "./ChimeSDKMediaPipelinesServiceException";
|
|
4
3
|
export var AudioArtifactsConcatenationState;
|
|
@@ -66,21 +65,21 @@ export var ErrorCode;
|
|
|
66
65
|
ErrorCode["ServiceUnavailable"] = "ServiceUnavailable";
|
|
67
66
|
ErrorCode["Throttling"] = "Throttling";
|
|
68
67
|
})(ErrorCode || (ErrorCode = {}));
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
68
|
+
export class BadRequestException extends __BaseException {
|
|
69
|
+
constructor(opts) {
|
|
70
|
+
super({
|
|
71
|
+
name: "BadRequestException",
|
|
72
|
+
$fault: "client",
|
|
73
|
+
...opts,
|
|
74
|
+
});
|
|
75
|
+
this.name = "BadRequestException";
|
|
76
|
+
this.$fault = "client";
|
|
77
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
78
|
+
this.Code = opts.Code;
|
|
79
|
+
this.Message = opts.Message;
|
|
80
|
+
this.RequestId = opts.RequestId;
|
|
80
81
|
}
|
|
81
|
-
|
|
82
|
-
}(__BaseException));
|
|
83
|
-
export { BadRequestException };
|
|
82
|
+
}
|
|
84
83
|
export var MediaPipelineSinkType;
|
|
85
84
|
(function (MediaPipelineSinkType) {
|
|
86
85
|
MediaPipelineSinkType["S3Bucket"] = "S3Bucket";
|
|
@@ -97,96 +96,96 @@ export var MediaPipelineStatus;
|
|
|
97
96
|
MediaPipelineStatus["Stopped"] = "Stopped";
|
|
98
97
|
MediaPipelineStatus["Stopping"] = "Stopping";
|
|
99
98
|
})(MediaPipelineStatus || (MediaPipelineStatus = {}));
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
99
|
+
export class ForbiddenException extends __BaseException {
|
|
100
|
+
constructor(opts) {
|
|
101
|
+
super({
|
|
102
|
+
name: "ForbiddenException",
|
|
103
|
+
$fault: "client",
|
|
104
|
+
...opts,
|
|
105
|
+
});
|
|
106
|
+
this.name = "ForbiddenException";
|
|
107
|
+
this.$fault = "client";
|
|
108
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
109
|
+
this.Code = opts.Code;
|
|
110
|
+
this.Message = opts.Message;
|
|
111
|
+
this.RequestId = opts.RequestId;
|
|
111
112
|
}
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
113
|
+
}
|
|
114
|
+
export class ResourceLimitExceededException extends __BaseException {
|
|
115
|
+
constructor(opts) {
|
|
116
|
+
super({
|
|
117
|
+
name: "ResourceLimitExceededException",
|
|
118
|
+
$fault: "client",
|
|
119
|
+
...opts,
|
|
120
|
+
});
|
|
121
|
+
this.name = "ResourceLimitExceededException";
|
|
122
|
+
this.$fault = "client";
|
|
123
|
+
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
124
|
+
this.Code = opts.Code;
|
|
125
|
+
this.Message = opts.Message;
|
|
126
|
+
this.RequestId = opts.RequestId;
|
|
126
127
|
}
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
128
|
+
}
|
|
129
|
+
export class ServiceFailureException extends __BaseException {
|
|
130
|
+
constructor(opts) {
|
|
131
|
+
super({
|
|
132
|
+
name: "ServiceFailureException",
|
|
133
|
+
$fault: "server",
|
|
134
|
+
...opts,
|
|
135
|
+
});
|
|
136
|
+
this.name = "ServiceFailureException";
|
|
137
|
+
this.$fault = "server";
|
|
138
|
+
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
139
|
+
this.Code = opts.Code;
|
|
140
|
+
this.Message = opts.Message;
|
|
141
|
+
this.RequestId = opts.RequestId;
|
|
141
142
|
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
143
|
+
}
|
|
144
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
145
|
+
constructor(opts) {
|
|
146
|
+
super({
|
|
147
|
+
name: "ServiceUnavailableException",
|
|
148
|
+
$fault: "server",
|
|
149
|
+
...opts,
|
|
150
|
+
});
|
|
151
|
+
this.name = "ServiceUnavailableException";
|
|
152
|
+
this.$fault = "server";
|
|
153
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
154
|
+
this.Code = opts.Code;
|
|
155
|
+
this.Message = opts.Message;
|
|
156
|
+
this.RequestId = opts.RequestId;
|
|
156
157
|
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
158
|
+
}
|
|
159
|
+
export class ThrottledClientException extends __BaseException {
|
|
160
|
+
constructor(opts) {
|
|
161
|
+
super({
|
|
162
|
+
name: "ThrottledClientException",
|
|
163
|
+
$fault: "client",
|
|
164
|
+
...opts,
|
|
165
|
+
});
|
|
166
|
+
this.name = "ThrottledClientException";
|
|
167
|
+
this.$fault = "client";
|
|
168
|
+
Object.setPrototypeOf(this, ThrottledClientException.prototype);
|
|
169
|
+
this.Code = opts.Code;
|
|
170
|
+
this.Message = opts.Message;
|
|
171
|
+
this.RequestId = opts.RequestId;
|
|
171
172
|
}
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
173
|
+
}
|
|
174
|
+
export class UnauthorizedClientException extends __BaseException {
|
|
175
|
+
constructor(opts) {
|
|
176
|
+
super({
|
|
177
|
+
name: "UnauthorizedClientException",
|
|
178
|
+
$fault: "client",
|
|
179
|
+
...opts,
|
|
180
|
+
});
|
|
181
|
+
this.name = "UnauthorizedClientException";
|
|
182
|
+
this.$fault = "client";
|
|
183
|
+
Object.setPrototypeOf(this, UnauthorizedClientException.prototype);
|
|
184
|
+
this.Code = opts.Code;
|
|
185
|
+
this.Message = opts.Message;
|
|
186
|
+
this.RequestId = opts.RequestId;
|
|
186
187
|
}
|
|
187
|
-
|
|
188
|
-
}(__BaseException));
|
|
189
|
-
export { UnauthorizedClientException };
|
|
188
|
+
}
|
|
190
189
|
export var ConcatenationSinkType;
|
|
191
190
|
(function (ConcatenationSinkType) {
|
|
192
191
|
ConcatenationSinkType["S3Bucket"] = "S3Bucket";
|
|
@@ -208,106 +207,255 @@ export var LiveConnectorSourceType;
|
|
|
208
207
|
(function (LiveConnectorSourceType) {
|
|
209
208
|
LiveConnectorSourceType["ChimeSdkMeeting"] = "ChimeSdkMeeting";
|
|
210
209
|
})(LiveConnectorSourceType || (LiveConnectorSourceType = {}));
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
210
|
+
export class NotFoundException extends __BaseException {
|
|
211
|
+
constructor(opts) {
|
|
212
|
+
super({
|
|
213
|
+
name: "NotFoundException",
|
|
214
|
+
$fault: "client",
|
|
215
|
+
...opts,
|
|
216
|
+
});
|
|
217
|
+
this.name = "NotFoundException";
|
|
218
|
+
this.$fault = "client";
|
|
219
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
220
|
+
this.Code = opts.Code;
|
|
221
|
+
this.Message = opts.Message;
|
|
222
|
+
this.RequestId = opts.RequestId;
|
|
222
223
|
}
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
export
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
export
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
export
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
export
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
export
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
export
|
|
243
|
-
|
|
244
|
-
})
|
|
245
|
-
export
|
|
246
|
-
|
|
247
|
-
})
|
|
248
|
-
export
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
export
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
export
|
|
270
|
-
|
|
271
|
-
})
|
|
272
|
-
|
|
273
|
-
export
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
})
|
|
279
|
-
export
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
})
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
})
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
})
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
export
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
export
|
|
312
|
-
|
|
313
|
-
|
|
224
|
+
}
|
|
225
|
+
export const AudioConcatenationConfigurationFilterSensitiveLog = (obj) => ({
|
|
226
|
+
...obj,
|
|
227
|
+
});
|
|
228
|
+
export const CompositedVideoConcatenationConfigurationFilterSensitiveLog = (obj) => ({
|
|
229
|
+
...obj,
|
|
230
|
+
});
|
|
231
|
+
export const ContentConcatenationConfigurationFilterSensitiveLog = (obj) => ({
|
|
232
|
+
...obj,
|
|
233
|
+
});
|
|
234
|
+
export const DataChannelConcatenationConfigurationFilterSensitiveLog = (obj) => ({
|
|
235
|
+
...obj,
|
|
236
|
+
});
|
|
237
|
+
export const MeetingEventsConcatenationConfigurationFilterSensitiveLog = (obj) => ({
|
|
238
|
+
...obj,
|
|
239
|
+
});
|
|
240
|
+
export const TranscriptionMessagesConcatenationConfigurationFilterSensitiveLog = (obj) => ({
|
|
241
|
+
...obj,
|
|
242
|
+
});
|
|
243
|
+
export const VideoConcatenationConfigurationFilterSensitiveLog = (obj) => ({
|
|
244
|
+
...obj,
|
|
245
|
+
});
|
|
246
|
+
export const ArtifactsConcatenationConfigurationFilterSensitiveLog = (obj) => ({
|
|
247
|
+
...obj,
|
|
248
|
+
});
|
|
249
|
+
export const AudioArtifactsConfigurationFilterSensitiveLog = (obj) => ({
|
|
250
|
+
...obj,
|
|
251
|
+
});
|
|
252
|
+
export const PresenterOnlyConfigurationFilterSensitiveLog = (obj) => ({
|
|
253
|
+
...obj,
|
|
254
|
+
});
|
|
255
|
+
export const GridViewConfigurationFilterSensitiveLog = (obj) => ({
|
|
256
|
+
...obj,
|
|
257
|
+
});
|
|
258
|
+
export const CompositedVideoArtifactsConfigurationFilterSensitiveLog = (obj) => ({
|
|
259
|
+
...obj,
|
|
260
|
+
});
|
|
261
|
+
export const ContentArtifactsConfigurationFilterSensitiveLog = (obj) => ({
|
|
262
|
+
...obj,
|
|
263
|
+
});
|
|
264
|
+
export const VideoArtifactsConfigurationFilterSensitiveLog = (obj) => ({
|
|
265
|
+
...obj,
|
|
266
|
+
});
|
|
267
|
+
export const ArtifactsConfigurationFilterSensitiveLog = (obj) => ({
|
|
268
|
+
...obj,
|
|
269
|
+
});
|
|
270
|
+
export const SelectedVideoStreamsFilterSensitiveLog = (obj) => ({
|
|
271
|
+
...obj,
|
|
272
|
+
...(obj.ExternalUserIds && { ExternalUserIds: SENSITIVE_STRING }),
|
|
273
|
+
});
|
|
274
|
+
export const SourceConfigurationFilterSensitiveLog = (obj) => ({
|
|
275
|
+
...obj,
|
|
276
|
+
...(obj.SelectedVideoStreams && {
|
|
277
|
+
SelectedVideoStreams: SelectedVideoStreamsFilterSensitiveLog(obj.SelectedVideoStreams),
|
|
278
|
+
}),
|
|
279
|
+
});
|
|
280
|
+
export const ChimeSdkMeetingConfigurationFilterSensitiveLog = (obj) => ({
|
|
281
|
+
...obj,
|
|
282
|
+
...(obj.SourceConfiguration && {
|
|
283
|
+
SourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.SourceConfiguration),
|
|
284
|
+
}),
|
|
285
|
+
});
|
|
286
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
287
|
+
...obj,
|
|
288
|
+
});
|
|
289
|
+
export const CreateMediaCapturePipelineRequestFilterSensitiveLog = (obj) => ({
|
|
290
|
+
...obj,
|
|
291
|
+
...(obj.SourceArn && { SourceArn: SENSITIVE_STRING }),
|
|
292
|
+
...(obj.SinkArn && { SinkArn: SENSITIVE_STRING }),
|
|
293
|
+
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
294
|
+
...(obj.ChimeSdkMeetingConfiguration && {
|
|
295
|
+
ChimeSdkMeetingConfiguration: ChimeSdkMeetingConfigurationFilterSensitiveLog(obj.ChimeSdkMeetingConfiguration),
|
|
296
|
+
}),
|
|
297
|
+
});
|
|
298
|
+
export const MediaCapturePipelineFilterSensitiveLog = (obj) => ({
|
|
299
|
+
...obj,
|
|
300
|
+
...(obj.SourceArn && { SourceArn: SENSITIVE_STRING }),
|
|
301
|
+
...(obj.SinkArn && { SinkArn: SENSITIVE_STRING }),
|
|
302
|
+
...(obj.ChimeSdkMeetingConfiguration && {
|
|
303
|
+
ChimeSdkMeetingConfiguration: ChimeSdkMeetingConfigurationFilterSensitiveLog(obj.ChimeSdkMeetingConfiguration),
|
|
304
|
+
}),
|
|
305
|
+
});
|
|
306
|
+
export const CreateMediaCapturePipelineResponseFilterSensitiveLog = (obj) => ({
|
|
307
|
+
...obj,
|
|
308
|
+
...(obj.MediaCapturePipeline && {
|
|
309
|
+
MediaCapturePipeline: MediaCapturePipelineFilterSensitiveLog(obj.MediaCapturePipeline),
|
|
310
|
+
}),
|
|
311
|
+
});
|
|
312
|
+
export const S3BucketSinkConfigurationFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
...(obj.Destination && { Destination: SENSITIVE_STRING }),
|
|
315
|
+
});
|
|
316
|
+
export const ConcatenationSinkFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
...(obj.S3BucketSinkConfiguration && {
|
|
319
|
+
S3BucketSinkConfiguration: S3BucketSinkConfigurationFilterSensitiveLog(obj.S3BucketSinkConfiguration),
|
|
320
|
+
}),
|
|
321
|
+
});
|
|
322
|
+
export const ChimeSdkMeetingConcatenationConfigurationFilterSensitiveLog = (obj) => ({
|
|
323
|
+
...obj,
|
|
324
|
+
});
|
|
325
|
+
export const MediaCapturePipelineSourceConfigurationFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
...(obj.MediaPipelineArn && { MediaPipelineArn: SENSITIVE_STRING }),
|
|
328
|
+
});
|
|
329
|
+
export const ConcatenationSourceFilterSensitiveLog = (obj) => ({
|
|
330
|
+
...obj,
|
|
331
|
+
...(obj.MediaCapturePipelineSourceConfiguration && {
|
|
332
|
+
MediaCapturePipelineSourceConfiguration: MediaCapturePipelineSourceConfigurationFilterSensitiveLog(obj.MediaCapturePipelineSourceConfiguration),
|
|
333
|
+
}),
|
|
334
|
+
});
|
|
335
|
+
export const CreateMediaConcatenationPipelineRequestFilterSensitiveLog = (obj) => ({
|
|
336
|
+
...obj,
|
|
337
|
+
...(obj.Sources && { Sources: obj.Sources.map((item) => ConcatenationSourceFilterSensitiveLog(item)) }),
|
|
338
|
+
...(obj.Sinks && { Sinks: obj.Sinks.map((item) => ConcatenationSinkFilterSensitiveLog(item)) }),
|
|
339
|
+
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
340
|
+
});
|
|
341
|
+
export const MediaConcatenationPipelineFilterSensitiveLog = (obj) => ({
|
|
342
|
+
...obj,
|
|
343
|
+
...(obj.Sources && { Sources: obj.Sources.map((item) => ConcatenationSourceFilterSensitiveLog(item)) }),
|
|
344
|
+
...(obj.Sinks && { Sinks: obj.Sinks.map((item) => ConcatenationSinkFilterSensitiveLog(item)) }),
|
|
345
|
+
});
|
|
346
|
+
export const CreateMediaConcatenationPipelineResponseFilterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
...(obj.MediaConcatenationPipeline && {
|
|
349
|
+
MediaConcatenationPipeline: MediaConcatenationPipelineFilterSensitiveLog(obj.MediaConcatenationPipeline),
|
|
350
|
+
}),
|
|
351
|
+
});
|
|
352
|
+
export const LiveConnectorRTMPConfigurationFilterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
...(obj.Url && { Url: SENSITIVE_STRING }),
|
|
355
|
+
});
|
|
356
|
+
export const LiveConnectorSinkConfigurationFilterSensitiveLog = (obj) => ({
|
|
357
|
+
...obj,
|
|
358
|
+
...(obj.RTMPConfiguration && {
|
|
359
|
+
RTMPConfiguration: LiveConnectorRTMPConfigurationFilterSensitiveLog(obj.RTMPConfiguration),
|
|
360
|
+
}),
|
|
361
|
+
});
|
|
362
|
+
export const ChimeSdkMeetingLiveConnectorConfigurationFilterSensitiveLog = (obj) => ({
|
|
363
|
+
...obj,
|
|
364
|
+
...(obj.Arn && { Arn: SENSITIVE_STRING }),
|
|
365
|
+
...(obj.SourceConfiguration && {
|
|
366
|
+
SourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.SourceConfiguration),
|
|
367
|
+
}),
|
|
368
|
+
});
|
|
369
|
+
export const LiveConnectorSourceConfigurationFilterSensitiveLog = (obj) => ({
|
|
370
|
+
...obj,
|
|
371
|
+
...(obj.ChimeSdkMeetingLiveConnectorConfiguration && {
|
|
372
|
+
ChimeSdkMeetingLiveConnectorConfiguration: ChimeSdkMeetingLiveConnectorConfigurationFilterSensitiveLog(obj.ChimeSdkMeetingLiveConnectorConfiguration),
|
|
373
|
+
}),
|
|
374
|
+
});
|
|
375
|
+
export const CreateMediaLiveConnectorPipelineRequestFilterSensitiveLog = (obj) => ({
|
|
376
|
+
...obj,
|
|
377
|
+
...(obj.Sources && { Sources: obj.Sources.map((item) => LiveConnectorSourceConfigurationFilterSensitiveLog(item)) }),
|
|
378
|
+
...(obj.Sinks && { Sinks: obj.Sinks.map((item) => LiveConnectorSinkConfigurationFilterSensitiveLog(item)) }),
|
|
379
|
+
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
380
|
+
});
|
|
381
|
+
export const MediaLiveConnectorPipelineFilterSensitiveLog = (obj) => ({
|
|
382
|
+
...obj,
|
|
383
|
+
...(obj.Sources && { Sources: obj.Sources.map((item) => LiveConnectorSourceConfigurationFilterSensitiveLog(item)) }),
|
|
384
|
+
...(obj.Sinks && { Sinks: obj.Sinks.map((item) => LiveConnectorSinkConfigurationFilterSensitiveLog(item)) }),
|
|
385
|
+
});
|
|
386
|
+
export const CreateMediaLiveConnectorPipelineResponseFilterSensitiveLog = (obj) => ({
|
|
387
|
+
...obj,
|
|
388
|
+
...(obj.MediaLiveConnectorPipeline && {
|
|
389
|
+
MediaLiveConnectorPipeline: MediaLiveConnectorPipelineFilterSensitiveLog(obj.MediaLiveConnectorPipeline),
|
|
390
|
+
}),
|
|
391
|
+
});
|
|
392
|
+
export const DeleteMediaCapturePipelineRequestFilterSensitiveLog = (obj) => ({
|
|
393
|
+
...obj,
|
|
394
|
+
});
|
|
395
|
+
export const DeleteMediaPipelineRequestFilterSensitiveLog = (obj) => ({
|
|
396
|
+
...obj,
|
|
397
|
+
});
|
|
398
|
+
export const GetMediaCapturePipelineRequestFilterSensitiveLog = (obj) => ({
|
|
399
|
+
...obj,
|
|
400
|
+
});
|
|
401
|
+
export const GetMediaCapturePipelineResponseFilterSensitiveLog = (obj) => ({
|
|
402
|
+
...obj,
|
|
403
|
+
...(obj.MediaCapturePipeline && {
|
|
404
|
+
MediaCapturePipeline: MediaCapturePipelineFilterSensitiveLog(obj.MediaCapturePipeline),
|
|
405
|
+
}),
|
|
406
|
+
});
|
|
407
|
+
export const GetMediaPipelineRequestFilterSensitiveLog = (obj) => ({
|
|
408
|
+
...obj,
|
|
409
|
+
});
|
|
410
|
+
export const MediaPipelineFilterSensitiveLog = (obj) => ({
|
|
411
|
+
...obj,
|
|
412
|
+
...(obj.MediaCapturePipeline && {
|
|
413
|
+
MediaCapturePipeline: MediaCapturePipelineFilterSensitiveLog(obj.MediaCapturePipeline),
|
|
414
|
+
}),
|
|
415
|
+
...(obj.MediaLiveConnectorPipeline && {
|
|
416
|
+
MediaLiveConnectorPipeline: MediaLiveConnectorPipelineFilterSensitiveLog(obj.MediaLiveConnectorPipeline),
|
|
417
|
+
}),
|
|
418
|
+
...(obj.MediaConcatenationPipeline && {
|
|
419
|
+
MediaConcatenationPipeline: MediaConcatenationPipelineFilterSensitiveLog(obj.MediaConcatenationPipeline),
|
|
420
|
+
}),
|
|
421
|
+
});
|
|
422
|
+
export const GetMediaPipelineResponseFilterSensitiveLog = (obj) => ({
|
|
423
|
+
...obj,
|
|
424
|
+
...(obj.MediaPipeline && { MediaPipeline: MediaPipelineFilterSensitiveLog(obj.MediaPipeline) }),
|
|
425
|
+
});
|
|
426
|
+
export const ListMediaCapturePipelinesRequestFilterSensitiveLog = (obj) => ({
|
|
427
|
+
...obj,
|
|
428
|
+
});
|
|
429
|
+
export const MediaCapturePipelineSummaryFilterSensitiveLog = (obj) => ({
|
|
430
|
+
...obj,
|
|
431
|
+
});
|
|
432
|
+
export const ListMediaCapturePipelinesResponseFilterSensitiveLog = (obj) => ({
|
|
433
|
+
...obj,
|
|
434
|
+
});
|
|
435
|
+
export const ListMediaPipelinesRequestFilterSensitiveLog = (obj) => ({
|
|
436
|
+
...obj,
|
|
437
|
+
});
|
|
438
|
+
export const MediaPipelineSummaryFilterSensitiveLog = (obj) => ({
|
|
439
|
+
...obj,
|
|
440
|
+
});
|
|
441
|
+
export const ListMediaPipelinesResponseFilterSensitiveLog = (obj) => ({
|
|
442
|
+
...obj,
|
|
443
|
+
});
|
|
444
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
445
|
+
...obj,
|
|
446
|
+
});
|
|
447
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
448
|
+
...obj,
|
|
449
|
+
});
|
|
450
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
451
|
+
...obj,
|
|
452
|
+
});
|
|
453
|
+
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
454
|
+
...obj,
|
|
455
|
+
});
|
|
456
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
457
|
+
...obj,
|
|
458
|
+
});
|
|
459
|
+
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
460
|
+
...obj,
|
|
461
|
+
});
|