@aws-sdk/client-mediaconnect 3.183.0 → 3.186.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/MediaConnect.js +129 -122
  4. package/dist-es/MediaConnectClient.js +28 -22
  5. package/dist-es/commands/AddFlowMediaStreamsCommand.js +28 -21
  6. package/dist-es/commands/AddFlowOutputsCommand.js +28 -21
  7. package/dist-es/commands/AddFlowSourcesCommand.js +28 -21
  8. package/dist-es/commands/AddFlowVpcInterfacesCommand.js +28 -21
  9. package/dist-es/commands/CreateFlowCommand.js +28 -21
  10. package/dist-es/commands/DeleteFlowCommand.js +28 -21
  11. package/dist-es/commands/DescribeFlowCommand.js +28 -21
  12. package/dist-es/commands/DescribeOfferingCommand.js +28 -21
  13. package/dist-es/commands/DescribeReservationCommand.js +28 -21
  14. package/dist-es/commands/GrantFlowEntitlementsCommand.js +28 -21
  15. package/dist-es/commands/ListEntitlementsCommand.js +28 -21
  16. package/dist-es/commands/ListFlowsCommand.js +28 -21
  17. package/dist-es/commands/ListOfferingsCommand.js +28 -21
  18. package/dist-es/commands/ListReservationsCommand.js +28 -21
  19. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  20. package/dist-es/commands/PurchaseOfferingCommand.js +28 -21
  21. package/dist-es/commands/RemoveFlowMediaStreamCommand.js +28 -21
  22. package/dist-es/commands/RemoveFlowOutputCommand.js +28 -21
  23. package/dist-es/commands/RemoveFlowSourceCommand.js +28 -21
  24. package/dist-es/commands/RemoveFlowVpcInterfaceCommand.js +28 -21
  25. package/dist-es/commands/RevokeFlowEntitlementCommand.js +28 -21
  26. package/dist-es/commands/StartFlowCommand.js +28 -21
  27. package/dist-es/commands/StopFlowCommand.js +28 -21
  28. package/dist-es/commands/TagResourceCommand.js +29 -22
  29. package/dist-es/commands/UntagResourceCommand.js +29 -22
  30. package/dist-es/commands/UpdateFlowCommand.js +28 -21
  31. package/dist-es/commands/UpdateFlowEntitlementCommand.js +28 -21
  32. package/dist-es/commands/UpdateFlowMediaStreamCommand.js +28 -21
  33. package/dist-es/commands/UpdateFlowOutputCommand.js +28 -21
  34. package/dist-es/commands/UpdateFlowSourceCommand.js +28 -21
  35. package/dist-es/endpoints.js +8 -8
  36. package/dist-es/models/MediaConnectServiceException.js +10 -5
  37. package/dist-es/models/models_0.js +210 -411
  38. package/dist-es/pagination/ListEntitlementsPaginator.js +68 -25
  39. package/dist-es/pagination/ListFlowsPaginator.js +68 -25
  40. package/dist-es/pagination/ListOfferingsPaginator.js +68 -25
  41. package/dist-es/pagination/ListReservationsPaginator.js +68 -25
  42. package/dist-es/protocols/Aws_restJson1.js +3366 -2553
  43. package/dist-es/runtimeConfig.browser.js +12 -26
  44. package/dist-es/runtimeConfig.js +12 -30
  45. package/dist-es/runtimeConfig.native.js +5 -8
  46. package/dist-es/runtimeConfig.shared.js +11 -8
  47. package/dist-es/waiters/waitForFlowActive.js +80 -60
  48. package/dist-es/waiters/waitForFlowDeleted.js +65 -45
  49. package/dist-es/waiters/waitForFlowStandby.js +71 -51
  50. package/package.json +34 -34
@@ -1,3 +1,4 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { MediaConnectServiceException as __BaseException } from "./MediaConnectServiceException";
2
3
  export var Colorimetry;
3
4
  (function (Colorimetry) {
@@ -130,110 +131,110 @@ export var NetworkInterfaceType;
130
131
  NetworkInterfaceType["efa"] = "efa";
131
132
  NetworkInterfaceType["ena"] = "ena";
132
133
  })(NetworkInterfaceType || (NetworkInterfaceType = {}));
133
- export class BadRequestException extends __BaseException {
134
- constructor(opts) {
135
- super({
136
- name: "BadRequestException",
137
- $fault: "client",
138
- ...opts,
139
- });
140
- this.name = "BadRequestException";
141
- this.$fault = "client";
142
- Object.setPrototypeOf(this, BadRequestException.prototype);
143
- this.Message = opts.Message;
134
+ var BadRequestException = (function (_super) {
135
+ __extends(BadRequestException, _super);
136
+ function BadRequestException(opts) {
137
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
138
+ _this.name = "BadRequestException";
139
+ _this.$fault = "client";
140
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
141
+ _this.Message = opts.Message;
142
+ return _this;
144
143
  }
145
- }
146
- export class ForbiddenException extends __BaseException {
147
- constructor(opts) {
148
- super({
149
- name: "ForbiddenException",
150
- $fault: "client",
151
- ...opts,
152
- });
153
- this.name = "ForbiddenException";
154
- this.$fault = "client";
155
- Object.setPrototypeOf(this, ForbiddenException.prototype);
156
- this.Message = opts.Message;
144
+ return BadRequestException;
145
+ }(__BaseException));
146
+ export { BadRequestException };
147
+ var ForbiddenException = (function (_super) {
148
+ __extends(ForbiddenException, _super);
149
+ function ForbiddenException(opts) {
150
+ var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
151
+ _this.name = "ForbiddenException";
152
+ _this.$fault = "client";
153
+ Object.setPrototypeOf(_this, ForbiddenException.prototype);
154
+ _this.Message = opts.Message;
155
+ return _this;
157
156
  }
158
- }
159
- export class InternalServerErrorException extends __BaseException {
160
- constructor(opts) {
161
- super({
162
- name: "InternalServerErrorException",
163
- $fault: "server",
164
- ...opts,
165
- });
166
- this.name = "InternalServerErrorException";
167
- this.$fault = "server";
168
- Object.setPrototypeOf(this, InternalServerErrorException.prototype);
169
- this.Message = opts.Message;
157
+ return ForbiddenException;
158
+ }(__BaseException));
159
+ export { ForbiddenException };
160
+ var InternalServerErrorException = (function (_super) {
161
+ __extends(InternalServerErrorException, _super);
162
+ function InternalServerErrorException(opts) {
163
+ var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
164
+ _this.name = "InternalServerErrorException";
165
+ _this.$fault = "server";
166
+ Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
167
+ _this.Message = opts.Message;
168
+ return _this;
170
169
  }
171
- }
172
- export class NotFoundException extends __BaseException {
173
- constructor(opts) {
174
- super({
175
- name: "NotFoundException",
176
- $fault: "client",
177
- ...opts,
178
- });
179
- this.name = "NotFoundException";
180
- this.$fault = "client";
181
- Object.setPrototypeOf(this, NotFoundException.prototype);
182
- this.Message = opts.Message;
170
+ return InternalServerErrorException;
171
+ }(__BaseException));
172
+ export { InternalServerErrorException };
173
+ var NotFoundException = (function (_super) {
174
+ __extends(NotFoundException, _super);
175
+ function NotFoundException(opts) {
176
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
177
+ _this.name = "NotFoundException";
178
+ _this.$fault = "client";
179
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
180
+ _this.Message = opts.Message;
181
+ return _this;
183
182
  }
184
- }
185
- export class ServiceUnavailableException extends __BaseException {
186
- constructor(opts) {
187
- super({
188
- name: "ServiceUnavailableException",
189
- $fault: "server",
190
- ...opts,
191
- });
192
- this.name = "ServiceUnavailableException";
193
- this.$fault = "server";
194
- Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
195
- this.Message = opts.Message;
183
+ return NotFoundException;
184
+ }(__BaseException));
185
+ export { NotFoundException };
186
+ var ServiceUnavailableException = (function (_super) {
187
+ __extends(ServiceUnavailableException, _super);
188
+ function ServiceUnavailableException(opts) {
189
+ var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
190
+ _this.name = "ServiceUnavailableException";
191
+ _this.$fault = "server";
192
+ Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
193
+ _this.Message = opts.Message;
194
+ return _this;
196
195
  }
197
- }
198
- export class TooManyRequestsException extends __BaseException {
199
- constructor(opts) {
200
- super({
201
- name: "TooManyRequestsException",
202
- $fault: "client",
203
- ...opts,
204
- });
205
- this.name = "TooManyRequestsException";
206
- this.$fault = "client";
207
- Object.setPrototypeOf(this, TooManyRequestsException.prototype);
208
- this.Message = opts.Message;
196
+ return ServiceUnavailableException;
197
+ }(__BaseException));
198
+ export { ServiceUnavailableException };
199
+ var TooManyRequestsException = (function (_super) {
200
+ __extends(TooManyRequestsException, _super);
201
+ function TooManyRequestsException(opts) {
202
+ var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
203
+ _this.name = "TooManyRequestsException";
204
+ _this.$fault = "client";
205
+ Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
206
+ _this.Message = opts.Message;
207
+ return _this;
209
208
  }
210
- }
211
- export class AddFlowOutputs420Exception extends __BaseException {
212
- constructor(opts) {
213
- super({
214
- name: "AddFlowOutputs420Exception",
215
- $fault: "client",
216
- ...opts,
217
- });
218
- this.name = "AddFlowOutputs420Exception";
219
- this.$fault = "client";
220
- Object.setPrototypeOf(this, AddFlowOutputs420Exception.prototype);
221
- this.Message = opts.Message;
209
+ return TooManyRequestsException;
210
+ }(__BaseException));
211
+ export { TooManyRequestsException };
212
+ var AddFlowOutputs420Exception = (function (_super) {
213
+ __extends(AddFlowOutputs420Exception, _super);
214
+ function AddFlowOutputs420Exception(opts) {
215
+ var _this = _super.call(this, __assign({ name: "AddFlowOutputs420Exception", $fault: "client" }, opts)) || this;
216
+ _this.name = "AddFlowOutputs420Exception";
217
+ _this.$fault = "client";
218
+ Object.setPrototypeOf(_this, AddFlowOutputs420Exception.prototype);
219
+ _this.Message = opts.Message;
220
+ return _this;
222
221
  }
223
- }
224
- export class CreateFlow420Exception extends __BaseException {
225
- constructor(opts) {
226
- super({
227
- name: "CreateFlow420Exception",
228
- $fault: "client",
229
- ...opts,
230
- });
231
- this.name = "CreateFlow420Exception";
232
- this.$fault = "client";
233
- Object.setPrototypeOf(this, CreateFlow420Exception.prototype);
234
- this.Message = opts.Message;
222
+ return AddFlowOutputs420Exception;
223
+ }(__BaseException));
224
+ export { AddFlowOutputs420Exception };
225
+ var CreateFlow420Exception = (function (_super) {
226
+ __extends(CreateFlow420Exception, _super);
227
+ function CreateFlow420Exception(opts) {
228
+ var _this = _super.call(this, __assign({ name: "CreateFlow420Exception", $fault: "client" }, opts)) || this;
229
+ _this.name = "CreateFlow420Exception";
230
+ _this.$fault = "client";
231
+ Object.setPrototypeOf(_this, CreateFlow420Exception.prototype);
232
+ _this.Message = opts.Message;
233
+ return _this;
235
234
  }
236
- }
235
+ return CreateFlow420Exception;
236
+ }(__BaseException));
237
+ export { CreateFlow420Exception };
237
238
  export var FailoverMode;
238
239
  (function (FailoverMode) {
239
240
  FailoverMode["FAILOVER"] = "FAILOVER";
@@ -244,319 +245,117 @@ export var State;
244
245
  State["DISABLED"] = "DISABLED";
245
246
  State["ENABLED"] = "ENABLED";
246
247
  })(State || (State = {}));
247
- export class GrantFlowEntitlements420Exception extends __BaseException {
248
- constructor(opts) {
249
- super({
250
- name: "GrantFlowEntitlements420Exception",
251
- $fault: "client",
252
- ...opts,
253
- });
254
- this.name = "GrantFlowEntitlements420Exception";
255
- this.$fault = "client";
256
- Object.setPrototypeOf(this, GrantFlowEntitlements420Exception.prototype);
257
- this.Message = opts.Message;
248
+ var GrantFlowEntitlements420Exception = (function (_super) {
249
+ __extends(GrantFlowEntitlements420Exception, _super);
250
+ function GrantFlowEntitlements420Exception(opts) {
251
+ var _this = _super.call(this, __assign({ name: "GrantFlowEntitlements420Exception", $fault: "client" }, opts)) || this;
252
+ _this.name = "GrantFlowEntitlements420Exception";
253
+ _this.$fault = "client";
254
+ Object.setPrototypeOf(_this, GrantFlowEntitlements420Exception.prototype);
255
+ _this.Message = opts.Message;
256
+ return _this;
258
257
  }
259
- }
260
- export const FmtpRequestFilterSensitiveLog = (obj) => ({
261
- ...obj,
262
- });
263
- export const MediaStreamAttributesRequestFilterSensitiveLog = (obj) => ({
264
- ...obj,
265
- });
266
- export const AddMediaStreamRequestFilterSensitiveLog = (obj) => ({
267
- ...obj,
268
- });
269
- export const EncryptionFilterSensitiveLog = (obj) => ({
270
- ...obj,
271
- });
272
- export const InterfaceRequestFilterSensitiveLog = (obj) => ({
273
- ...obj,
274
- });
275
- export const DestinationConfigurationRequestFilterSensitiveLog = (obj) => ({
276
- ...obj,
277
- });
278
- export const EncodingParametersRequestFilterSensitiveLog = (obj) => ({
279
- ...obj,
280
- });
281
- export const MediaStreamOutputConfigurationRequestFilterSensitiveLog = (obj) => ({
282
- ...obj,
283
- });
284
- export const VpcInterfaceAttachmentFilterSensitiveLog = (obj) => ({
285
- ...obj,
286
- });
287
- export const AddOutputRequestFilterSensitiveLog = (obj) => ({
288
- ...obj,
289
- });
290
- export const InterfaceFilterSensitiveLog = (obj) => ({
291
- ...obj,
292
- });
293
- export const DestinationConfigurationFilterSensitiveLog = (obj) => ({
294
- ...obj,
295
- });
296
- export const EntitlementFilterSensitiveLog = (obj) => ({
297
- ...obj,
298
- });
299
- export const GrantEntitlementRequestFilterSensitiveLog = (obj) => ({
300
- ...obj,
301
- });
302
- export const InputConfigurationFilterSensitiveLog = (obj) => ({
303
- ...obj,
304
- });
305
- export const InputConfigurationRequestFilterSensitiveLog = (obj) => ({
306
- ...obj,
307
- });
308
- export const ListedEntitlementFilterSensitiveLog = (obj) => ({
309
- ...obj,
310
- });
311
- export const MaintenanceFilterSensitiveLog = (obj) => ({
312
- ...obj,
313
- });
314
- export const ListedFlowFilterSensitiveLog = (obj) => ({
315
- ...obj,
316
- });
317
- export const FmtpFilterSensitiveLog = (obj) => ({
318
- ...obj,
319
- });
320
- export const MediaStreamAttributesFilterSensitiveLog = (obj) => ({
321
- ...obj,
322
- });
323
- export const MediaStreamFilterSensitiveLog = (obj) => ({
324
- ...obj,
325
- });
326
- export const EncodingParametersFilterSensitiveLog = (obj) => ({
327
- ...obj,
328
- });
329
- export const MediaStreamOutputConfigurationFilterSensitiveLog = (obj) => ({
330
- ...obj,
331
- });
332
- export const MediaStreamSourceConfigurationFilterSensitiveLog = (obj) => ({
333
- ...obj,
334
- });
335
- export const MediaStreamSourceConfigurationRequestFilterSensitiveLog = (obj) => ({
336
- ...obj,
337
- });
338
- export const ResourceSpecificationFilterSensitiveLog = (obj) => ({
339
- ...obj,
340
- });
341
- export const OfferingFilterSensitiveLog = (obj) => ({
342
- ...obj,
343
- });
344
- export const TransportFilterSensitiveLog = (obj) => ({
345
- ...obj,
346
- });
347
- export const OutputFilterSensitiveLog = (obj) => ({
348
- ...obj,
349
- });
350
- export const ReservationFilterSensitiveLog = (obj) => ({
351
- ...obj,
352
- });
353
- export const SetSourceRequestFilterSensitiveLog = (obj) => ({
354
- ...obj,
355
- });
356
- export const SourceFilterSensitiveLog = (obj) => ({
357
- ...obj,
358
- });
359
- export const VpcInterfaceFilterSensitiveLog = (obj) => ({
360
- ...obj,
361
- });
362
- export const VpcInterfaceRequestFilterSensitiveLog = (obj) => ({
363
- ...obj,
364
- });
365
- export const AddFlowMediaStreamsRequestFilterSensitiveLog = (obj) => ({
366
- ...obj,
367
- });
368
- export const AddFlowMediaStreamsResponseFilterSensitiveLog = (obj) => ({
369
- ...obj,
370
- });
371
- export const AddFlowOutputsRequestFilterSensitiveLog = (obj) => ({
372
- ...obj,
373
- });
374
- export const AddFlowOutputsResponseFilterSensitiveLog = (obj) => ({
375
- ...obj,
376
- });
377
- export const AddFlowSourcesRequestFilterSensitiveLog = (obj) => ({
378
- ...obj,
379
- });
380
- export const AddFlowSourcesResponseFilterSensitiveLog = (obj) => ({
381
- ...obj,
382
- });
383
- export const AddFlowVpcInterfacesRequestFilterSensitiveLog = (obj) => ({
384
- ...obj,
385
- });
386
- export const AddFlowVpcInterfacesResponseFilterSensitiveLog = (obj) => ({
387
- ...obj,
388
- });
389
- export const AddMaintenanceFilterSensitiveLog = (obj) => ({
390
- ...obj,
391
- });
392
- export const SourcePriorityFilterSensitiveLog = (obj) => ({
393
- ...obj,
394
- });
395
- export const FailoverConfigFilterSensitiveLog = (obj) => ({
396
- ...obj,
397
- });
398
- export const CreateFlowRequestFilterSensitiveLog = (obj) => ({
399
- ...obj,
400
- });
401
- export const FlowFilterSensitiveLog = (obj) => ({
402
- ...obj,
403
- });
404
- export const CreateFlowResponseFilterSensitiveLog = (obj) => ({
405
- ...obj,
406
- });
407
- export const DeleteFlowRequestFilterSensitiveLog = (obj) => ({
408
- ...obj,
409
- });
410
- export const DeleteFlowResponseFilterSensitiveLog = (obj) => ({
411
- ...obj,
412
- });
413
- export const DescribeFlowRequestFilterSensitiveLog = (obj) => ({
414
- ...obj,
415
- });
416
- export const MessagesFilterSensitiveLog = (obj) => ({
417
- ...obj,
418
- });
419
- export const DescribeFlowResponseFilterSensitiveLog = (obj) => ({
420
- ...obj,
421
- });
422
- export const DescribeOfferingRequestFilterSensitiveLog = (obj) => ({
423
- ...obj,
424
- });
425
- export const DescribeOfferingResponseFilterSensitiveLog = (obj) => ({
426
- ...obj,
427
- });
428
- export const DescribeReservationRequestFilterSensitiveLog = (obj) => ({
429
- ...obj,
430
- });
431
- export const DescribeReservationResponseFilterSensitiveLog = (obj) => ({
432
- ...obj,
433
- });
434
- export const GrantFlowEntitlementsRequestFilterSensitiveLog = (obj) => ({
435
- ...obj,
436
- });
437
- export const GrantFlowEntitlementsResponseFilterSensitiveLog = (obj) => ({
438
- ...obj,
439
- });
440
- export const ListEntitlementsRequestFilterSensitiveLog = (obj) => ({
441
- ...obj,
442
- });
443
- export const ListEntitlementsResponseFilterSensitiveLog = (obj) => ({
444
- ...obj,
445
- });
446
- export const ListFlowsRequestFilterSensitiveLog = (obj) => ({
447
- ...obj,
448
- });
449
- export const ListFlowsResponseFilterSensitiveLog = (obj) => ({
450
- ...obj,
451
- });
452
- export const ListOfferingsRequestFilterSensitiveLog = (obj) => ({
453
- ...obj,
454
- });
455
- export const ListOfferingsResponseFilterSensitiveLog = (obj) => ({
456
- ...obj,
457
- });
458
- export const ListReservationsRequestFilterSensitiveLog = (obj) => ({
459
- ...obj,
460
- });
461
- export const ListReservationsResponseFilterSensitiveLog = (obj) => ({
462
- ...obj,
463
- });
464
- export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
465
- ...obj,
466
- });
467
- export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
468
- ...obj,
469
- });
470
- export const PurchaseOfferingRequestFilterSensitiveLog = (obj) => ({
471
- ...obj,
472
- });
473
- export const PurchaseOfferingResponseFilterSensitiveLog = (obj) => ({
474
- ...obj,
475
- });
476
- export const RemoveFlowMediaStreamRequestFilterSensitiveLog = (obj) => ({
477
- ...obj,
478
- });
479
- export const RemoveFlowMediaStreamResponseFilterSensitiveLog = (obj) => ({
480
- ...obj,
481
- });
482
- export const RemoveFlowOutputRequestFilterSensitiveLog = (obj) => ({
483
- ...obj,
484
- });
485
- export const RemoveFlowOutputResponseFilterSensitiveLog = (obj) => ({
486
- ...obj,
487
- });
488
- export const RemoveFlowSourceRequestFilterSensitiveLog = (obj) => ({
489
- ...obj,
490
- });
491
- export const RemoveFlowSourceResponseFilterSensitiveLog = (obj) => ({
492
- ...obj,
493
- });
494
- export const RemoveFlowVpcInterfaceRequestFilterSensitiveLog = (obj) => ({
495
- ...obj,
496
- });
497
- export const RemoveFlowVpcInterfaceResponseFilterSensitiveLog = (obj) => ({
498
- ...obj,
499
- });
500
- export const RevokeFlowEntitlementRequestFilterSensitiveLog = (obj) => ({
501
- ...obj,
502
- });
503
- export const RevokeFlowEntitlementResponseFilterSensitiveLog = (obj) => ({
504
- ...obj,
505
- });
506
- export const StartFlowRequestFilterSensitiveLog = (obj) => ({
507
- ...obj,
508
- });
509
- export const StartFlowResponseFilterSensitiveLog = (obj) => ({
510
- ...obj,
511
- });
512
- export const StopFlowRequestFilterSensitiveLog = (obj) => ({
513
- ...obj,
514
- });
515
- export const StopFlowResponseFilterSensitiveLog = (obj) => ({
516
- ...obj,
517
- });
518
- export const TagResourceRequestFilterSensitiveLog = (obj) => ({
519
- ...obj,
520
- });
521
- export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
522
- ...obj,
523
- });
524
- export const UpdateMaintenanceFilterSensitiveLog = (obj) => ({
525
- ...obj,
526
- });
527
- export const UpdateFailoverConfigFilterSensitiveLog = (obj) => ({
528
- ...obj,
529
- });
530
- export const UpdateFlowRequestFilterSensitiveLog = (obj) => ({
531
- ...obj,
532
- });
533
- export const UpdateFlowResponseFilterSensitiveLog = (obj) => ({
534
- ...obj,
535
- });
536
- export const UpdateEncryptionFilterSensitiveLog = (obj) => ({
537
- ...obj,
538
- });
539
- export const UpdateFlowEntitlementRequestFilterSensitiveLog = (obj) => ({
540
- ...obj,
541
- });
542
- export const UpdateFlowEntitlementResponseFilterSensitiveLog = (obj) => ({
543
- ...obj,
544
- });
545
- export const UpdateFlowMediaStreamRequestFilterSensitiveLog = (obj) => ({
546
- ...obj,
547
- });
548
- export const UpdateFlowMediaStreamResponseFilterSensitiveLog = (obj) => ({
549
- ...obj,
550
- });
551
- export const UpdateFlowOutputRequestFilterSensitiveLog = (obj) => ({
552
- ...obj,
553
- });
554
- export const UpdateFlowOutputResponseFilterSensitiveLog = (obj) => ({
555
- ...obj,
556
- });
557
- export const UpdateFlowSourceRequestFilterSensitiveLog = (obj) => ({
558
- ...obj,
559
- });
560
- export const UpdateFlowSourceResponseFilterSensitiveLog = (obj) => ({
561
- ...obj,
562
- });
258
+ return GrantFlowEntitlements420Exception;
259
+ }(__BaseException));
260
+ export { GrantFlowEntitlements420Exception };
261
+ export var FmtpRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
+ export var MediaStreamAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
+ export var AddMediaStreamRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
+ export var EncryptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
+ export var InterfaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
+ export var DestinationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
+ export var EncodingParametersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
+ export var MediaStreamOutputConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
+ export var VpcInterfaceAttachmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
+ export var AddOutputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
+ export var InterfaceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
+ export var DestinationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
+ export var EntitlementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
+ export var GrantEntitlementRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
+ export var InputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
+ export var InputConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
+ export var ListedEntitlementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
+ export var MaintenanceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
+ export var ListedFlowFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
+ export var FmtpFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
+ export var MediaStreamAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
+ export var MediaStreamFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
+ export var EncodingParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
+ export var MediaStreamOutputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
+ export var MediaStreamSourceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
+ export var MediaStreamSourceConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
+ export var ResourceSpecificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
+ export var OfferingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
+ export var TransportFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
+ export var OutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
+ export var ReservationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
+ export var SetSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
+ export var SourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
+ export var VpcInterfaceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
+ export var VpcInterfaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
+ export var AddFlowMediaStreamsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
+ export var AddFlowMediaStreamsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
+ export var AddFlowOutputsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
+ export var AddFlowOutputsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
+ export var AddFlowSourcesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
+ export var AddFlowSourcesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
+ export var AddFlowVpcInterfacesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
+ export var AddFlowVpcInterfacesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
+ export var AddMaintenanceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
+ export var SourcePriorityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
+ export var FailoverConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
+ export var CreateFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
308
+ export var FlowFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
+ export var CreateFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
310
+ export var DeleteFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
+ export var DeleteFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
312
+ export var DescribeFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
+ export var MessagesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
+ export var DescribeFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
+ export var DescribeOfferingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
+ export var DescribeOfferingResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
+ export var DescribeReservationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
+ export var DescribeReservationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
+ export var GrantFlowEntitlementsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
320
+ export var GrantFlowEntitlementsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
+ export var ListEntitlementsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
322
+ export var ListEntitlementsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
323
+ export var ListFlowsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
324
+ export var ListFlowsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
+ export var ListOfferingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
326
+ export var ListOfferingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
327
+ export var ListReservationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
328
+ export var ListReservationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
329
+ export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
+ export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
+ export var PurchaseOfferingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
332
+ export var PurchaseOfferingResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
+ export var RemoveFlowMediaStreamRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
+ export var RemoveFlowMediaStreamResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
+ export var RemoveFlowOutputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
+ export var RemoveFlowOutputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
+ export var RemoveFlowSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
+ export var RemoveFlowSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
+ export var RemoveFlowVpcInterfaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
+ export var RemoveFlowVpcInterfaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
+ export var RevokeFlowEntitlementRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
+ export var RevokeFlowEntitlementResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
+ export var StartFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
+ export var StartFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
+ export var StopFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
+ export var StopFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
+ export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
+ export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
+ export var UpdateMaintenanceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
+ export var UpdateFailoverConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
+ export var UpdateFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
+ export var UpdateFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
+ export var UpdateEncryptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
+ export var UpdateFlowEntitlementRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
+ export var UpdateFlowEntitlementResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
+ export var UpdateFlowMediaStreamRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
+ export var UpdateFlowMediaStreamResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
+ export var UpdateFlowOutputRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
+ export var UpdateFlowOutputResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
+ export var UpdateFlowSourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
+ export var UpdateFlowSourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };