@aws-sdk/client-kinesis-video 3.952.0 → 3.954.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 (52) hide show
  1. package/dist-cjs/index.js +488 -342
  2. package/dist-cjs/runtimeConfig.shared.js +7 -1
  3. package/dist-es/commands/CreateSignalingChannelCommand.js +2 -2
  4. package/dist-es/commands/CreateStreamCommand.js +2 -2
  5. package/dist-es/commands/DeleteEdgeConfigurationCommand.js +2 -2
  6. package/dist-es/commands/DeleteSignalingChannelCommand.js +2 -2
  7. package/dist-es/commands/DeleteStreamCommand.js +2 -2
  8. package/dist-es/commands/DescribeEdgeConfigurationCommand.js +2 -2
  9. package/dist-es/commands/DescribeImageGenerationConfigurationCommand.js +2 -2
  10. package/dist-es/commands/DescribeMappedResourceConfigurationCommand.js +2 -2
  11. package/dist-es/commands/DescribeMediaStorageConfigurationCommand.js +2 -2
  12. package/dist-es/commands/DescribeNotificationConfigurationCommand.js +2 -2
  13. package/dist-es/commands/DescribeSignalingChannelCommand.js +2 -2
  14. package/dist-es/commands/DescribeStreamCommand.js +2 -2
  15. package/dist-es/commands/DescribeStreamStorageConfigurationCommand.js +2 -2
  16. package/dist-es/commands/GetDataEndpointCommand.js +2 -2
  17. package/dist-es/commands/GetSignalingChannelEndpointCommand.js +2 -2
  18. package/dist-es/commands/ListEdgeAgentConfigurationsCommand.js +2 -2
  19. package/dist-es/commands/ListSignalingChannelsCommand.js +2 -2
  20. package/dist-es/commands/ListStreamsCommand.js +2 -2
  21. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  22. package/dist-es/commands/ListTagsForStreamCommand.js +2 -2
  23. package/dist-es/commands/StartEdgeConfigurationUpdateCommand.js +2 -2
  24. package/dist-es/commands/TagResourceCommand.js +2 -2
  25. package/dist-es/commands/TagStreamCommand.js +2 -2
  26. package/dist-es/commands/UntagResourceCommand.js +2 -2
  27. package/dist-es/commands/UntagStreamCommand.js +2 -2
  28. package/dist-es/commands/UpdateDataRetentionCommand.js +2 -2
  29. package/dist-es/commands/UpdateImageGenerationConfigurationCommand.js +2 -2
  30. package/dist-es/commands/UpdateMediaStorageConfigurationCommand.js +2 -2
  31. package/dist-es/commands/UpdateNotificationConfigurationCommand.js +2 -2
  32. package/dist-es/commands/UpdateSignalingChannelCommand.js +2 -2
  33. package/dist-es/commands/UpdateStreamCommand.js +2 -2
  34. package/dist-es/commands/UpdateStreamStorageConfigurationCommand.js +2 -2
  35. package/dist-es/index.js +1 -0
  36. package/dist-es/runtimeConfig.shared.js +7 -1
  37. package/dist-es/schemas/schemas_0.js +272 -264
  38. package/dist-types/KinesisVideoClient.d.ts +1 -10
  39. package/dist-types/index.d.ts +1 -0
  40. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  41. package/dist-types/runtimeConfig.d.ts +6 -2
  42. package/dist-types/runtimeConfig.native.d.ts +6 -2
  43. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  44. package/dist-types/schemas/schemas_0.d.ts +139 -151
  45. package/dist-types/ts3.4/KinesisVideoClient.d.ts +0 -4
  46. package/dist-types/ts3.4/index.d.ts +1 -0
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  51. package/dist-types/ts3.4/schemas/schemas_0.d.ts +138 -152
  52. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class KinesisVideoClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let KinesisVideoServiceException$1 = class KinesisVideoServiceException extends smithyClient.ServiceException {
113
+ class KinesisVideoServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, KinesisVideoServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends KinesisVideoServiceException$1 {
120
+ class AccessDeniedException extends KinesisVideoServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends KinesisVideoSe
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let AccountChannelLimitExceededException$1 = class AccountChannelLimitExceededException extends KinesisVideoServiceException$1 {
133
+ }
134
+ class AccountChannelLimitExceededException extends KinesisVideoServiceException {
135
135
  name = "AccountChannelLimitExceededException";
136
136
  $fault = "client";
137
137
  Message;
@@ -144,8 +144,8 @@ let AccountChannelLimitExceededException$1 = class AccountChannelLimitExceededEx
144
144
  Object.setPrototypeOf(this, AccountChannelLimitExceededException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- };
148
- let AccountStreamLimitExceededException$1 = class AccountStreamLimitExceededException extends KinesisVideoServiceException$1 {
147
+ }
148
+ class AccountStreamLimitExceededException extends KinesisVideoServiceException {
149
149
  name = "AccountStreamLimitExceededException";
150
150
  $fault = "client";
151
151
  Message;
@@ -158,8 +158,8 @@ let AccountStreamLimitExceededException$1 = class AccountStreamLimitExceededExce
158
158
  Object.setPrototypeOf(this, AccountStreamLimitExceededException.prototype);
159
159
  this.Message = opts.Message;
160
160
  }
161
- };
162
- let ClientLimitExceededException$1 = class ClientLimitExceededException extends KinesisVideoServiceException$1 {
161
+ }
162
+ class ClientLimitExceededException extends KinesisVideoServiceException {
163
163
  name = "ClientLimitExceededException";
164
164
  $fault = "client";
165
165
  Message;
@@ -172,8 +172,8 @@ let ClientLimitExceededException$1 = class ClientLimitExceededException extends
172
172
  Object.setPrototypeOf(this, ClientLimitExceededException.prototype);
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let InvalidArgumentException$1 = class InvalidArgumentException extends KinesisVideoServiceException$1 {
175
+ }
176
+ class InvalidArgumentException extends KinesisVideoServiceException {
177
177
  name = "InvalidArgumentException";
178
178
  $fault = "client";
179
179
  Message;
@@ -186,8 +186,8 @@ let InvalidArgumentException$1 = class InvalidArgumentException extends KinesisV
186
186
  Object.setPrototypeOf(this, InvalidArgumentException.prototype);
187
187
  this.Message = opts.Message;
188
188
  }
189
- };
190
- let ResourceInUseException$1 = class ResourceInUseException extends KinesisVideoServiceException$1 {
189
+ }
190
+ class ResourceInUseException extends KinesisVideoServiceException {
191
191
  name = "ResourceInUseException";
192
192
  $fault = "client";
193
193
  Message;
@@ -200,8 +200,8 @@ let ResourceInUseException$1 = class ResourceInUseException extends KinesisVideo
200
200
  Object.setPrototypeOf(this, ResourceInUseException.prototype);
201
201
  this.Message = opts.Message;
202
202
  }
203
- };
204
- let TagsPerResourceExceededLimitException$1 = class TagsPerResourceExceededLimitException extends KinesisVideoServiceException$1 {
203
+ }
204
+ class TagsPerResourceExceededLimitException extends KinesisVideoServiceException {
205
205
  name = "TagsPerResourceExceededLimitException";
206
206
  $fault = "client";
207
207
  Message;
@@ -214,8 +214,8 @@ let TagsPerResourceExceededLimitException$1 = class TagsPerResourceExceededLimit
214
214
  Object.setPrototypeOf(this, TagsPerResourceExceededLimitException.prototype);
215
215
  this.Message = opts.Message;
216
216
  }
217
- };
218
- let DeviceStreamLimitExceededException$1 = class DeviceStreamLimitExceededException extends KinesisVideoServiceException$1 {
217
+ }
218
+ class DeviceStreamLimitExceededException extends KinesisVideoServiceException {
219
219
  name = "DeviceStreamLimitExceededException";
220
220
  $fault = "client";
221
221
  Message;
@@ -228,8 +228,8 @@ let DeviceStreamLimitExceededException$1 = class DeviceStreamLimitExceededExcept
228
228
  Object.setPrototypeOf(this, DeviceStreamLimitExceededException.prototype);
229
229
  this.Message = opts.Message;
230
230
  }
231
- };
232
- let InvalidDeviceException$1 = class InvalidDeviceException extends KinesisVideoServiceException$1 {
231
+ }
232
+ class InvalidDeviceException extends KinesisVideoServiceException {
233
233
  name = "InvalidDeviceException";
234
234
  $fault = "client";
235
235
  Message;
@@ -242,8 +242,8 @@ let InvalidDeviceException$1 = class InvalidDeviceException extends KinesisVideo
242
242
  Object.setPrototypeOf(this, InvalidDeviceException.prototype);
243
243
  this.Message = opts.Message;
244
244
  }
245
- };
246
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends KinesisVideoServiceException$1 {
245
+ }
246
+ class ResourceNotFoundException extends KinesisVideoServiceException {
247
247
  name = "ResourceNotFoundException";
248
248
  $fault = "client";
249
249
  Message;
@@ -256,8 +256,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Kinesi
256
256
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
257
257
  this.Message = opts.Message;
258
258
  }
259
- };
260
- let StreamEdgeConfigurationNotFoundException$1 = class StreamEdgeConfigurationNotFoundException extends KinesisVideoServiceException$1 {
259
+ }
260
+ class StreamEdgeConfigurationNotFoundException extends KinesisVideoServiceException {
261
261
  name = "StreamEdgeConfigurationNotFoundException";
262
262
  $fault = "client";
263
263
  Message;
@@ -270,8 +270,8 @@ let StreamEdgeConfigurationNotFoundException$1 = class StreamEdgeConfigurationNo
270
270
  Object.setPrototypeOf(this, StreamEdgeConfigurationNotFoundException.prototype);
271
271
  this.Message = opts.Message;
272
272
  }
273
- };
274
- let VersionMismatchException$1 = class VersionMismatchException extends KinesisVideoServiceException$1 {
273
+ }
274
+ class VersionMismatchException extends KinesisVideoServiceException {
275
275
  name = "VersionMismatchException";
276
276
  $fault = "client";
277
277
  Message;
@@ -284,8 +284,8 @@ let VersionMismatchException$1 = class VersionMismatchException extends KinesisV
284
284
  Object.setPrototypeOf(this, VersionMismatchException.prototype);
285
285
  this.Message = opts.Message;
286
286
  }
287
- };
288
- let NotAuthorizedException$1 = class NotAuthorizedException extends KinesisVideoServiceException$1 {
287
+ }
288
+ class NotAuthorizedException extends KinesisVideoServiceException {
289
289
  name = "NotAuthorizedException";
290
290
  $fault = "client";
291
291
  Message;
@@ -298,8 +298,8 @@ let NotAuthorizedException$1 = class NotAuthorizedException extends KinesisVideo
298
298
  Object.setPrototypeOf(this, NotAuthorizedException.prototype);
299
299
  this.Message = opts.Message;
300
300
  }
301
- };
302
- let InvalidResourceFormatException$1 = class InvalidResourceFormatException extends KinesisVideoServiceException$1 {
301
+ }
302
+ class InvalidResourceFormatException extends KinesisVideoServiceException {
303
303
  name = "InvalidResourceFormatException";
304
304
  $fault = "client";
305
305
  Message;
@@ -312,8 +312,8 @@ let InvalidResourceFormatException$1 = class InvalidResourceFormatException exte
312
312
  Object.setPrototypeOf(this, InvalidResourceFormatException.prototype);
313
313
  this.Message = opts.Message;
314
314
  }
315
- };
316
- let NoDataRetentionException$1 = class NoDataRetentionException extends KinesisVideoServiceException$1 {
315
+ }
316
+ class NoDataRetentionException extends KinesisVideoServiceException {
317
317
  name = "NoDataRetentionException";
318
318
  $fault = "client";
319
319
  Message;
@@ -326,7 +326,7 @@ let NoDataRetentionException$1 = class NoDataRetentionException extends KinesisV
326
326
  Object.setPrototypeOf(this, NoDataRetentionException.prototype);
327
327
  this.Message = opts.Message;
328
328
  }
329
- };
329
+ }
330
330
 
331
331
  const _ACLEE = "AccountChannelLimitExceededException";
332
332
  const _ADE = "AccessDeniedException";
@@ -541,9 +541,9 @@ const _hE = "httpError";
541
541
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisvideo";
542
542
  const n0 = "com.amazonaws.kinesisvideo";
543
543
  var MediaUriSecretArn = [0, n0, _MUSA, 8, 0];
544
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
545
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
546
- var AccountChannelLimitExceededException = [
544
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
545
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
546
+ var AccountChannelLimitExceededException$ = [
547
547
  -3,
548
548
  n0,
549
549
  _ACLEE,
@@ -551,8 +551,8 @@ var AccountChannelLimitExceededException = [
551
551
  [_M],
552
552
  [0],
553
553
  ];
554
- schema.TypeRegistry.for(n0).registerError(AccountChannelLimitExceededException, AccountChannelLimitExceededException$1);
555
- var AccountStreamLimitExceededException = [
554
+ schema.TypeRegistry.for(n0).registerError(AccountChannelLimitExceededException$, AccountChannelLimitExceededException);
555
+ var AccountStreamLimitExceededException$ = [
556
556
  -3,
557
557
  n0,
558
558
  _ASLEE,
@@ -560,62 +560,69 @@ var AccountStreamLimitExceededException = [
560
560
  [_M],
561
561
  [0],
562
562
  ];
563
- schema.TypeRegistry.for(n0).registerError(AccountStreamLimitExceededException, AccountStreamLimitExceededException$1);
564
- var ChannelInfo = [
563
+ schema.TypeRegistry.for(n0).registerError(AccountStreamLimitExceededException$, AccountStreamLimitExceededException);
564
+ var ChannelInfo$ = [
565
565
  3,
566
566
  n0,
567
567
  _CI,
568
568
  0,
569
569
  [_CN, _CARN, _CT, _CS, _CTr, _SMC, _V],
570
- [0, 0, 0, 0, 4, () => SingleMasterConfiguration, 0],
570
+ [0, 0, 0, 0, 4, () => SingleMasterConfiguration$, 0],
571
571
  ];
572
- var ChannelNameCondition = [3, n0, _CNC, 0, [_CO, _CV], [0, 0]];
573
- var ClientLimitExceededException = [-3, n0, _CLEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
574
- schema.TypeRegistry.for(n0).registerError(ClientLimitExceededException, ClientLimitExceededException$1);
575
- var CreateSignalingChannelInput = [
572
+ var ChannelNameCondition$ = [3, n0, _CNC, 0, [_CO, _CV], [0, 0]];
573
+ var ClientLimitExceededException$ = [-3, n0, _CLEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
574
+ schema.TypeRegistry.for(n0).registerError(ClientLimitExceededException$, ClientLimitExceededException);
575
+ var CreateSignalingChannelInput$ = [
576
576
  3,
577
577
  n0,
578
578
  _CSCI,
579
579
  0,
580
580
  [_CN, _CT, _SMC, _T],
581
- [0, 0, () => SingleMasterConfiguration, () => TagOnCreateList],
581
+ [0, 0, () => SingleMasterConfiguration$, () => TagOnCreateList],
582
582
  ];
583
- var CreateSignalingChannelOutput = [3, n0, _CSCO, 0, [_CARN], [0]];
584
- var CreateStreamInput = [
583
+ var CreateSignalingChannelOutput$ = [3, n0, _CSCO, 0, [_CARN], [0]];
584
+ var CreateStreamInput$ = [
585
585
  3,
586
586
  n0,
587
587
  _CSI,
588
588
  0,
589
589
  [_DN, _SN, _MT, _KKI, _DRIH, _T, _SSC],
590
- [0, 0, 0, 0, 1, 128 | 0, () => StreamStorageConfiguration],
591
- ];
592
- var CreateStreamOutput = [3, n0, _CSO, 0, [_SARN], [0]];
593
- var DeleteEdgeConfigurationInput = [3, n0, _DECI, 0, [_SN, _SARN], [0, 0]];
594
- var DeleteEdgeConfigurationOutput = [3, n0, _DECO, 0, [], []];
595
- var DeleteSignalingChannelInput = [3, n0, _DSCI, 0, [_CARN, _CVu], [0, 0]];
596
- var DeleteSignalingChannelOutput = [3, n0, _DSCO, 0, [], []];
597
- var DeleteStreamInput = [3, n0, _DSI, 0, [_SARN, _CVu], [0, 0]];
598
- var DeleteStreamOutput = [3, n0, _DSO, 0, [], []];
599
- var DeletionConfig = [3, n0, _DC, 0, [_ERIH, _LSC, _DAU], [1, () => LocalSizeConfig, 2]];
600
- var DescribeEdgeConfigurationInput = [3, n0, _DECIe, 0, [_SN, _SARN], [0, 0]];
601
- var DescribeEdgeConfigurationOutput = [
590
+ [0, 0, 0, 0, 1, 128 | 0, () => StreamStorageConfiguration$],
591
+ ];
592
+ var CreateStreamOutput$ = [3, n0, _CSO, 0, [_SARN], [0]];
593
+ var DeleteEdgeConfigurationInput$ = [3, n0, _DECI, 0, [_SN, _SARN], [0, 0]];
594
+ var DeleteEdgeConfigurationOutput$ = [3, n0, _DECO, 0, [], []];
595
+ var DeleteSignalingChannelInput$ = [3, n0, _DSCI, 0, [_CARN, _CVu], [0, 0]];
596
+ var DeleteSignalingChannelOutput$ = [3, n0, _DSCO, 0, [], []];
597
+ var DeleteStreamInput$ = [3, n0, _DSI, 0, [_SARN, _CVu], [0, 0]];
598
+ var DeleteStreamOutput$ = [3, n0, _DSO, 0, [], []];
599
+ var DeletionConfig$ = [
600
+ 3,
601
+ n0,
602
+ _DC,
603
+ 0,
604
+ [_ERIH, _LSC, _DAU],
605
+ [1, () => LocalSizeConfig$, 2],
606
+ ];
607
+ var DescribeEdgeConfigurationInput$ = [3, n0, _DECIe, 0, [_SN, _SARN], [0, 0]];
608
+ var DescribeEdgeConfigurationOutput$ = [
602
609
  3,
603
610
  n0,
604
611
  _DECOe,
605
612
  0,
606
613
  [_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC, _EAS],
607
- [0, 0, 4, 4, 0, 0, [() => EdgeConfig, 0], () => EdgeAgentStatus],
614
+ [0, 0, 4, 4, 0, 0, [() => EdgeConfig$, 0], () => EdgeAgentStatus$],
608
615
  ];
609
- var DescribeImageGenerationConfigurationInput = [3, n0, _DIGCI, 0, [_SN, _SARN], [0, 0]];
610
- var DescribeImageGenerationConfigurationOutput = [
616
+ var DescribeImageGenerationConfigurationInput$ = [3, n0, _DIGCI, 0, [_SN, _SARN], [0, 0]];
617
+ var DescribeImageGenerationConfigurationOutput$ = [
611
618
  3,
612
619
  n0,
613
620
  _DIGCO,
614
621
  0,
615
622
  [_IGC],
616
- [() => ImageGenerationConfiguration],
623
+ [() => ImageGenerationConfiguration$],
617
624
  ];
618
- var DescribeMappedResourceConfigurationInput = [
625
+ var DescribeMappedResourceConfigurationInput$ = [
619
626
  3,
620
627
  n0,
621
628
  _DMRCI,
@@ -623,7 +630,7 @@ var DescribeMappedResourceConfigurationInput = [
623
630
  [_SN, _SARN, _MR, _NT],
624
631
  [0, 0, 1, 0],
625
632
  ];
626
- var DescribeMappedResourceConfigurationOutput = [
633
+ var DescribeMappedResourceConfigurationOutput$ = [
627
634
  3,
628
635
  n0,
629
636
  _DMRCO,
@@ -631,38 +638,38 @@ var DescribeMappedResourceConfigurationOutput = [
631
638
  [_MRCL, _NT],
632
639
  [() => MappedResourceConfigurationList, 0],
633
640
  ];
634
- var DescribeMediaStorageConfigurationInput = [3, n0, _DMSCI, 0, [_CN, _CARN], [0, 0]];
635
- var DescribeMediaStorageConfigurationOutput = [
641
+ var DescribeMediaStorageConfigurationInput$ = [3, n0, _DMSCI, 0, [_CN, _CARN], [0, 0]];
642
+ var DescribeMediaStorageConfigurationOutput$ = [
636
643
  3,
637
644
  n0,
638
645
  _DMSCO,
639
646
  0,
640
647
  [_MSC],
641
- [() => MediaStorageConfiguration],
648
+ [() => MediaStorageConfiguration$],
642
649
  ];
643
- var DescribeNotificationConfigurationInput = [3, n0, _DNCI, 0, [_SN, _SARN], [0, 0]];
644
- var DescribeNotificationConfigurationOutput = [
650
+ var DescribeNotificationConfigurationInput$ = [3, n0, _DNCI, 0, [_SN, _SARN], [0, 0]];
651
+ var DescribeNotificationConfigurationOutput$ = [
645
652
  3,
646
653
  n0,
647
654
  _DNCO,
648
655
  0,
649
656
  [_NC],
650
- [() => NotificationConfiguration],
651
- ];
652
- var DescribeSignalingChannelInput = [3, n0, _DSCIe, 0, [_CN, _CARN], [0, 0]];
653
- var DescribeSignalingChannelOutput = [3, n0, _DSCOe, 0, [_CI], [() => ChannelInfo]];
654
- var DescribeStreamInput = [3, n0, _DSIe, 0, [_SN, _SARN], [0, 0]];
655
- var DescribeStreamOutput = [3, n0, _DSOe, 0, [_SI], [() => StreamInfo]];
656
- var DescribeStreamStorageConfigurationInput = [3, n0, _DSSCI, 0, [_SN, _SARN], [0, 0]];
657
- var DescribeStreamStorageConfigurationOutput = [
657
+ [() => NotificationConfiguration$],
658
+ ];
659
+ var DescribeSignalingChannelInput$ = [3, n0, _DSCIe, 0, [_CN, _CARN], [0, 0]];
660
+ var DescribeSignalingChannelOutput$ = [3, n0, _DSCOe, 0, [_CI], [() => ChannelInfo$]];
661
+ var DescribeStreamInput$ = [3, n0, _DSIe, 0, [_SN, _SARN], [0, 0]];
662
+ var DescribeStreamOutput$ = [3, n0, _DSOe, 0, [_SI], [() => StreamInfo$]];
663
+ var DescribeStreamStorageConfigurationInput$ = [3, n0, _DSSCI, 0, [_SN, _SARN], [0, 0]];
664
+ var DescribeStreamStorageConfigurationOutput$ = [
658
665
  3,
659
666
  n0,
660
667
  _DSSCO,
661
668
  0,
662
669
  [_SN, _SARN, _SSC],
663
- [0, 0, () => StreamStorageConfiguration],
670
+ [0, 0, () => StreamStorageConfiguration$],
664
671
  ];
665
- var DeviceStreamLimitExceededException = [
672
+ var DeviceStreamLimitExceededException$ = [
666
673
  -3,
667
674
  n0,
668
675
  _DSLEE,
@@ -670,34 +677,34 @@ var DeviceStreamLimitExceededException = [
670
677
  [_M],
671
678
  [0],
672
679
  ];
673
- schema.TypeRegistry.for(n0).registerError(DeviceStreamLimitExceededException, DeviceStreamLimitExceededException$1);
674
- var EdgeAgentStatus = [
680
+ schema.TypeRegistry.for(n0).registerError(DeviceStreamLimitExceededException$, DeviceStreamLimitExceededException);
681
+ var EdgeAgentStatus$ = [
675
682
  3,
676
683
  n0,
677
684
  _EAS,
678
685
  0,
679
686
  [_LRS, _LUS],
680
- [() => LastRecorderStatus, () => LastUploaderStatus],
687
+ [() => LastRecorderStatus$, () => LastUploaderStatus$],
681
688
  ];
682
- var EdgeConfig = [
689
+ var EdgeConfig$ = [
683
690
  3,
684
691
  n0,
685
692
  _EC,
686
693
  0,
687
694
  [_HDA, _RC, _UC, _DC],
688
- [0, [() => RecorderConfig, 0], () => UploaderConfig, () => DeletionConfig],
695
+ [0, [() => RecorderConfig$, 0], () => UploaderConfig$, () => DeletionConfig$],
689
696
  ];
690
- var GetDataEndpointInput = [3, n0, _GDEI, 0, [_SN, _SARN, _APIN], [0, 0, 0]];
691
- var GetDataEndpointOutput = [3, n0, _GDEO, 0, [_DE], [0]];
692
- var GetSignalingChannelEndpointInput = [
697
+ var GetDataEndpointInput$ = [3, n0, _GDEI, 0, [_SN, _SARN, _APIN], [0, 0, 0]];
698
+ var GetDataEndpointOutput$ = [3, n0, _GDEO, 0, [_DE], [0]];
699
+ var GetSignalingChannelEndpointInput$ = [
693
700
  3,
694
701
  n0,
695
702
  _GSCEI,
696
703
  0,
697
704
  [_CARN, _SMCEC],
698
- [0, () => SingleMasterChannelEndpointConfiguration],
705
+ [0, () => SingleMasterChannelEndpointConfiguration$],
699
706
  ];
700
- var GetSignalingChannelEndpointOutput = [
707
+ var GetSignalingChannelEndpointOutput$ = [
701
708
  3,
702
709
  n0,
703
710
  _GSCEO,
@@ -705,33 +712,33 @@ var GetSignalingChannelEndpointOutput = [
705
712
  [_REL],
706
713
  [() => ResourceEndpointList],
707
714
  ];
708
- var ImageGenerationConfiguration = [
715
+ var ImageGenerationConfiguration$ = [
709
716
  3,
710
717
  n0,
711
718
  _IGC,
712
719
  0,
713
720
  [_S, _IST, _DCe, _SIa, _F, _FC, _WP, _HP],
714
- [0, 0, () => ImageGenerationDestinationConfig, 1, 0, 128 | 0, 1, 1],
715
- ];
716
- var ImageGenerationDestinationConfig = [3, n0, _IGDC, 0, [_U, _DR], [0, 0]];
717
- var InvalidArgumentException = [-3, n0, _IAE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
718
- schema.TypeRegistry.for(n0).registerError(InvalidArgumentException, InvalidArgumentException$1);
719
- var InvalidDeviceException = [-3, n0, _IDE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
720
- schema.TypeRegistry.for(n0).registerError(InvalidDeviceException, InvalidDeviceException$1);
721
- var InvalidResourceFormatException = [-3, n0, _IRFE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
722
- schema.TypeRegistry.for(n0).registerError(InvalidResourceFormatException, InvalidResourceFormatException$1);
723
- var LastRecorderStatus = [3, n0, _LRS, 0, [_JSD, _LCT, _LUT, _RS], [0, 4, 4, 0]];
724
- var LastUploaderStatus = [3, n0, _LUS, 0, [_JSD, _LCT, _LUT, _US], [0, 4, 4, 0]];
725
- var ListEdgeAgentConfigurationsEdgeConfig = [
721
+ [0, 0, () => ImageGenerationDestinationConfig$, 1, 0, 128 | 0, 1, 1],
722
+ ];
723
+ var ImageGenerationDestinationConfig$ = [3, n0, _IGDC, 0, [_U, _DR], [0, 0]];
724
+ var InvalidArgumentException$ = [-3, n0, _IAE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
725
+ schema.TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
726
+ var InvalidDeviceException$ = [-3, n0, _IDE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
727
+ schema.TypeRegistry.for(n0).registerError(InvalidDeviceException$, InvalidDeviceException);
728
+ var InvalidResourceFormatException$ = [-3, n0, _IRFE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
729
+ schema.TypeRegistry.for(n0).registerError(InvalidResourceFormatException$, InvalidResourceFormatException);
730
+ var LastRecorderStatus$ = [3, n0, _LRS, 0, [_JSD, _LCT, _LUT, _RS], [0, 4, 4, 0]];
731
+ var LastUploaderStatus$ = [3, n0, _LUS, 0, [_JSD, _LCT, _LUT, _US], [0, 4, 4, 0]];
732
+ var ListEdgeAgentConfigurationsEdgeConfig$ = [
726
733
  3,
727
734
  n0,
728
735
  _LEACEC,
729
736
  0,
730
737
  [_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC],
731
- [0, 0, 4, 4, 0, 0, [() => EdgeConfig, 0]],
738
+ [0, 0, 4, 4, 0, 0, [() => EdgeConfig$, 0]],
732
739
  ];
733
- var ListEdgeAgentConfigurationsInput = [3, n0, _LEACI, 0, [_HDA, _MR, _NT], [0, 1, 0]];
734
- var ListEdgeAgentConfigurationsOutput = [
740
+ var ListEdgeAgentConfigurationsInput$ = [3, n0, _LEACI, 0, [_HDA, _MR, _NT], [0, 1, 0]];
741
+ var ListEdgeAgentConfigurationsOutput$ = [
735
742
  3,
736
743
  n0,
737
744
  _LEACO,
@@ -739,15 +746,15 @@ var ListEdgeAgentConfigurationsOutput = [
739
746
  [_ECd, _NT],
740
747
  [[() => ListEdgeAgentConfigurationsEdgeConfigList, 0], 0],
741
748
  ];
742
- var ListSignalingChannelsInput = [
749
+ var ListSignalingChannelsInput$ = [
743
750
  3,
744
751
  n0,
745
752
  _LSCI,
746
753
  0,
747
754
  [_MR, _NT, _CNC],
748
- [1, 0, () => ChannelNameCondition],
755
+ [1, 0, () => ChannelNameCondition$],
749
756
  ];
750
- var ListSignalingChannelsOutput = [
757
+ var ListSignalingChannelsOutput$ = [
751
758
  3,
752
759
  n0,
753
760
  _LSCO,
@@ -755,22 +762,22 @@ var ListSignalingChannelsOutput = [
755
762
  [_CIL, _NT],
756
763
  [() => ChannelInfoList, 0],
757
764
  ];
758
- var ListStreamsInput = [
765
+ var ListStreamsInput$ = [
759
766
  3,
760
767
  n0,
761
768
  _LSI,
762
769
  0,
763
770
  [_MR, _NT, _SNC],
764
- [1, 0, () => StreamNameCondition],
765
- ];
766
- var ListStreamsOutput = [3, n0, _LSO, 0, [_SIL, _NT], [() => StreamInfoList, 0]];
767
- var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_NT, _RARN], [0, 0]];
768
- var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_NT, _T], [0, 128 | 0]];
769
- var ListTagsForStreamInput = [3, n0, _LTFSI, 0, [_NT, _SARN, _SN], [0, 0, 0]];
770
- var ListTagsForStreamOutput = [3, n0, _LTFSO, 0, [_NT, _T], [0, 128 | 0]];
771
- var LocalSizeConfig = [3, n0, _LSC, 0, [_MLMSIMB, _SOFS], [1, 0]];
772
- var MappedResourceConfigurationListItem = [3, n0, _MRCLI, 0, [_Ty, _ARN], [0, 0]];
773
- var MediaSourceConfig = [
771
+ [1, 0, () => StreamNameCondition$],
772
+ ];
773
+ var ListStreamsOutput$ = [3, n0, _LSO, 0, [_SIL, _NT], [() => StreamInfoList, 0]];
774
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_NT, _RARN], [0, 0]];
775
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_NT, _T], [0, 128 | 0]];
776
+ var ListTagsForStreamInput$ = [3, n0, _LTFSI, 0, [_NT, _SARN, _SN], [0, 0, 0]];
777
+ var ListTagsForStreamOutput$ = [3, n0, _LTFSO, 0, [_NT, _T], [0, 128 | 0]];
778
+ var LocalSizeConfig$ = [3, n0, _LSC, 0, [_MLMSIMB, _SOFS], [1, 0]];
779
+ var MappedResourceConfigurationListItem$ = [3, n0, _MRCLI, 0, [_Ty, _ARN], [0, 0]];
780
+ var MediaSourceConfig$ = [
774
781
  3,
775
782
  n0,
776
783
  _MSCe,
@@ -778,53 +785,60 @@ var MediaSourceConfig = [
778
785
  [_MUSA, _MUT],
779
786
  [[() => MediaUriSecretArn, 0], 0],
780
787
  ];
781
- var MediaStorageConfiguration = [3, n0, _MSC, 0, [_SARN, _S], [0, 0]];
782
- var NoDataRetentionException = [-3, n0, _NDRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
783
- schema.TypeRegistry.for(n0).registerError(NoDataRetentionException, NoDataRetentionException$1);
784
- var NotAuthorizedException = [-3, n0, _NAE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
785
- schema.TypeRegistry.for(n0).registerError(NotAuthorizedException, NotAuthorizedException$1);
786
- var NotificationConfiguration = [
788
+ var MediaStorageConfiguration$ = [3, n0, _MSC, 0, [_SARN, _S], [0, 0]];
789
+ var NoDataRetentionException$ = [-3, n0, _NDRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
790
+ schema.TypeRegistry.for(n0).registerError(NoDataRetentionException$, NoDataRetentionException);
791
+ var NotAuthorizedException$ = [-3, n0, _NAE, { [_e]: _c, [_hE]: 401 }, [_M], [0]];
792
+ schema.TypeRegistry.for(n0).registerError(NotAuthorizedException$, NotAuthorizedException);
793
+ var NotificationConfiguration$ = [
787
794
  3,
788
795
  n0,
789
796
  _NC,
790
797
  0,
791
798
  [_S, _DCe],
792
- [0, () => NotificationDestinationConfig],
799
+ [0, () => NotificationDestinationConfig$],
793
800
  ];
794
- var NotificationDestinationConfig = [3, n0, _NDC, 0, [_U], [0]];
795
- var RecorderConfig = [
801
+ var NotificationDestinationConfig$ = [3, n0, _NDC, 0, [_U], [0]];
802
+ var RecorderConfig$ = [
796
803
  3,
797
804
  n0,
798
805
  _RC,
799
806
  0,
800
807
  [_MSCe, _SC],
801
- [[() => MediaSourceConfig, 0], () => ScheduleConfig],
802
- ];
803
- var ResourceEndpointListItem = [3, n0, _RELI, 0, [_P, _RE], [0, 0]];
804
- var ResourceInUseException = [-3, n0, _RIUE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
805
- schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
806
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
807
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
808
- var ScheduleConfig = [3, n0, _SC, 0, [_SE, _DIS], [0, 1]];
809
- var SingleMasterChannelEndpointConfiguration = [3, n0, _SMCEC, 0, [_Pr, _R], [64 | 0, 0]];
810
- var SingleMasterConfiguration = [3, n0, _SMC, 0, [_MTS], [1]];
811
- var StartEdgeConfigurationUpdateInput = [
808
+ [[() => MediaSourceConfig$, 0], () => ScheduleConfig$],
809
+ ];
810
+ var ResourceEndpointListItem$ = [3, n0, _RELI, 0, [_P, _RE], [0, 0]];
811
+ var ResourceInUseException$ = [-3, n0, _RIUE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
812
+ schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
813
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
814
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
815
+ var ScheduleConfig$ = [3, n0, _SC, 0, [_SE, _DIS], [0, 1]];
816
+ var SingleMasterChannelEndpointConfiguration$ = [
817
+ 3,
818
+ n0,
819
+ _SMCEC,
820
+ 0,
821
+ [_Pr, _R],
822
+ [64 | 0, 0],
823
+ ];
824
+ var SingleMasterConfiguration$ = [3, n0, _SMC, 0, [_MTS], [1]];
825
+ var StartEdgeConfigurationUpdateInput$ = [
812
826
  3,
813
827
  n0,
814
828
  _SECUI,
815
829
  0,
816
830
  [_SN, _SARN, _EC],
817
- [0, 0, [() => EdgeConfig, 0]],
831
+ [0, 0, [() => EdgeConfig$, 0]],
818
832
  ];
819
- var StartEdgeConfigurationUpdateOutput = [
833
+ var StartEdgeConfigurationUpdateOutput$ = [
820
834
  3,
821
835
  n0,
822
836
  _SECUO,
823
837
  0,
824
838
  [_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC],
825
- [0, 0, 4, 4, 0, 0, [() => EdgeConfig, 0]],
839
+ [0, 0, 4, 4, 0, 0, [() => EdgeConfig$, 0]],
826
840
  ];
827
- var StreamEdgeConfigurationNotFoundException = [
841
+ var StreamEdgeConfigurationNotFoundException$ = [
828
842
  -3,
829
843
  n0,
830
844
  _SECNFE,
@@ -832,8 +846,8 @@ var StreamEdgeConfigurationNotFoundException = [
832
846
  [_M],
833
847
  [0],
834
848
  ];
835
- schema.TypeRegistry.for(n0).registerError(StreamEdgeConfigurationNotFoundException, StreamEdgeConfigurationNotFoundException$1);
836
- var StreamInfo = [
849
+ schema.TypeRegistry.for(n0).registerError(StreamEdgeConfigurationNotFoundException$, StreamEdgeConfigurationNotFoundException);
850
+ var StreamInfo$ = [
837
851
  3,
838
852
  n0,
839
853
  _SI,
@@ -841,12 +855,12 @@ var StreamInfo = [
841
855
  [_DN, _SN, _SARN, _MT, _KKI, _V, _S, _CTr, _DRIH],
842
856
  [0, 0, 0, 0, 0, 0, 0, 4, 1],
843
857
  ];
844
- var StreamNameCondition = [3, n0, _SNC, 0, [_CO, _CV], [0, 0]];
845
- var StreamStorageConfiguration = [3, n0, _SSC, 0, [_DST], [0]];
846
- var Tag = [3, n0, _Ta, 0, [_K, _Va], [0, 0]];
847
- var TagResourceInput = [3, n0, _TRI, 0, [_RARN, _T], [0, () => TagList]];
848
- var TagResourceOutput = [3, n0, _TRO, 0, [], []];
849
- var TagsPerResourceExceededLimitException = [
858
+ var StreamNameCondition$ = [3, n0, _SNC, 0, [_CO, _CV], [0, 0]];
859
+ var StreamStorageConfiguration$ = [3, n0, _SSC, 0, [_DST], [0]];
860
+ var Tag$ = [3, n0, _Ta, 0, [_K, _Va], [0, 0]];
861
+ var TagResourceInput$ = [3, n0, _TRI, 0, [_RARN, _T], [0, () => TagList]];
862
+ var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
863
+ var TagsPerResourceExceededLimitException$ = [
850
864
  -3,
851
865
  n0,
852
866
  _TPRELE,
@@ -854,14 +868,14 @@ var TagsPerResourceExceededLimitException = [
854
868
  [_M],
855
869
  [0],
856
870
  ];
857
- schema.TypeRegistry.for(n0).registerError(TagsPerResourceExceededLimitException, TagsPerResourceExceededLimitException$1);
858
- var TagStreamInput = [3, n0, _TSI, 0, [_SARN, _SN, _T], [0, 0, 128 | 0]];
859
- var TagStreamOutput = [3, n0, _TSO, 0, [], []];
860
- var UntagResourceInput = [3, n0, _URI, 0, [_RARN, _TKL], [0, 64 | 0]];
861
- var UntagResourceOutput = [3, n0, _URO, 0, [], []];
862
- var UntagStreamInput = [3, n0, _USI, 0, [_SARN, _SN, _TKL], [0, 0, 64 | 0]];
863
- var UntagStreamOutput = [3, n0, _USO, 0, [], []];
864
- var UpdateDataRetentionInput = [
871
+ schema.TypeRegistry.for(n0).registerError(TagsPerResourceExceededLimitException$, TagsPerResourceExceededLimitException);
872
+ var TagStreamInput$ = [3, n0, _TSI, 0, [_SARN, _SN, _T], [0, 0, 128 | 0]];
873
+ var TagStreamOutput$ = [3, n0, _TSO, 0, [], []];
874
+ var UntagResourceInput$ = [3, n0, _URI, 0, [_RARN, _TKL], [0, 64 | 0]];
875
+ var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
876
+ var UntagStreamInput$ = [3, n0, _USI, 0, [_SARN, _SN, _TKL], [0, 0, 64 | 0]];
877
+ var UntagStreamOutput$ = [3, n0, _USO, 0, [], []];
878
+ var UpdateDataRetentionInput$ = [
865
879
  3,
866
880
  n0,
867
881
  _UDRI,
@@ -869,333 +883,327 @@ var UpdateDataRetentionInput = [
869
883
  [_SN, _SARN, _CVu, _O, _DRCIH],
870
884
  [0, 0, 0, 0, 1],
871
885
  ];
872
- var UpdateDataRetentionOutput = [3, n0, _UDRO, 0, [], []];
873
- var UpdateImageGenerationConfigurationInput = [
886
+ var UpdateDataRetentionOutput$ = [3, n0, _UDRO, 0, [], []];
887
+ var UpdateImageGenerationConfigurationInput$ = [
874
888
  3,
875
889
  n0,
876
890
  _UIGCI,
877
891
  0,
878
892
  [_SN, _SARN, _IGC],
879
- [0, 0, () => ImageGenerationConfiguration],
893
+ [0, 0, () => ImageGenerationConfiguration$],
880
894
  ];
881
- var UpdateImageGenerationConfigurationOutput = [3, n0, _UIGCO, 0, [], []];
882
- var UpdateMediaStorageConfigurationInput = [
895
+ var UpdateImageGenerationConfigurationOutput$ = [3, n0, _UIGCO, 0, [], []];
896
+ var UpdateMediaStorageConfigurationInput$ = [
883
897
  3,
884
898
  n0,
885
899
  _UMSCI,
886
900
  0,
887
901
  [_CARN, _MSC],
888
- [0, () => MediaStorageConfiguration],
902
+ [0, () => MediaStorageConfiguration$],
889
903
  ];
890
- var UpdateMediaStorageConfigurationOutput = [3, n0, _UMSCO, 0, [], []];
891
- var UpdateNotificationConfigurationInput = [
904
+ var UpdateMediaStorageConfigurationOutput$ = [3, n0, _UMSCO, 0, [], []];
905
+ var UpdateNotificationConfigurationInput$ = [
892
906
  3,
893
907
  n0,
894
908
  _UNCI,
895
909
  0,
896
910
  [_SN, _SARN, _NC],
897
- [0, 0, () => NotificationConfiguration],
911
+ [0, 0, () => NotificationConfiguration$],
898
912
  ];
899
- var UpdateNotificationConfigurationOutput = [3, n0, _UNCO, 0, [], []];
900
- var UpdateSignalingChannelInput = [
913
+ var UpdateNotificationConfigurationOutput$ = [3, n0, _UNCO, 0, [], []];
914
+ var UpdateSignalingChannelInput$ = [
901
915
  3,
902
916
  n0,
903
917
  _USCI,
904
918
  0,
905
919
  [_CARN, _CVu, _SMC],
906
- [0, 0, () => SingleMasterConfiguration],
920
+ [0, 0, () => SingleMasterConfiguration$],
907
921
  ];
908
- var UpdateSignalingChannelOutput = [3, n0, _USCO, 0, [], []];
909
- var UpdateStreamInput = [3, n0, _USIp, 0, [_SN, _SARN, _CVu, _DN, _MT], [0, 0, 0, 0, 0]];
910
- var UpdateStreamOutput = [3, n0, _USOp, 0, [], []];
911
- var UpdateStreamStorageConfigurationInput = [
922
+ var UpdateSignalingChannelOutput$ = [3, n0, _USCO, 0, [], []];
923
+ var UpdateStreamInput$ = [3, n0, _USIp, 0, [_SN, _SARN, _CVu, _DN, _MT], [0, 0, 0, 0, 0]];
924
+ var UpdateStreamOutput$ = [3, n0, _USOp, 0, [], []];
925
+ var UpdateStreamStorageConfigurationInput$ = [
912
926
  3,
913
927
  n0,
914
928
  _USSCI,
915
929
  0,
916
930
  [_SN, _SARN, _CVu, _SSC],
917
- [0, 0, 0, () => StreamStorageConfiguration],
918
- ];
919
- var UpdateStreamStorageConfigurationOutput = [3, n0, _USSCO, 0, [], []];
920
- var UploaderConfig = [3, n0, _UC, 0, [_SC], [() => ScheduleConfig]];
921
- var VersionMismatchException = [-3, n0, _VME, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
922
- schema.TypeRegistry.for(n0).registerError(VersionMismatchException, VersionMismatchException$1);
923
- var KinesisVideoServiceException = [-3, _s, "KinesisVideoServiceException", 0, [], []];
924
- schema.TypeRegistry.for(_s).registerError(KinesisVideoServiceException, KinesisVideoServiceException$1);
925
- var ChannelInfoList = [1, n0, _CIL, 0, () => ChannelInfo];
931
+ [0, 0, 0, () => StreamStorageConfiguration$],
932
+ ];
933
+ var UpdateStreamStorageConfigurationOutput$ = [3, n0, _USSCO, 0, [], []];
934
+ var UploaderConfig$ = [3, n0, _UC, 0, [_SC], [() => ScheduleConfig$]];
935
+ var VersionMismatchException$ = [-3, n0, _VME, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
936
+ schema.TypeRegistry.for(n0).registerError(VersionMismatchException$, VersionMismatchException);
937
+ var KinesisVideoServiceException$ = [-3, _s, "KinesisVideoServiceException", 0, [], []];
938
+ schema.TypeRegistry.for(_s).registerError(KinesisVideoServiceException$, KinesisVideoServiceException);
939
+ var ChannelInfoList = [1, n0, _CIL, 0, () => ChannelInfo$];
926
940
  var ListEdgeAgentConfigurationsEdgeConfigList = [
927
941
  1,
928
942
  n0,
929
943
  _LEACECL,
930
944
  0,
931
- [() => ListEdgeAgentConfigurationsEdgeConfig, 0],
932
- ];
933
- var MappedResourceConfigurationList = [
934
- 1,
935
- n0,
936
- _MRCL,
937
- 0,
938
- () => MappedResourceConfigurationListItem,
939
- ];
940
- var ResourceEndpointList = [1, n0, _REL, 0, () => ResourceEndpointListItem];
941
- var StreamInfoList = [1, n0, _SIL, 0, () => StreamInfo];
942
- var TagList = [1, n0, _TL, 0, () => Tag];
943
- var TagOnCreateList = [1, n0, _TOCL, 0, () => Tag];
944
- var CreateSignalingChannel = [
945
+ [() => ListEdgeAgentConfigurationsEdgeConfig$, 0],
946
+ ];
947
+ var MappedResourceConfigurationList = [1, n0, _MRCL, 0, () => MappedResourceConfigurationListItem$];
948
+ var ResourceEndpointList = [1, n0, _REL, 0, () => ResourceEndpointListItem$];
949
+ var StreamInfoList = [1, n0, _SIL, 0, () => StreamInfo$];
950
+ var TagList = [1, n0, _TL, 0, () => Tag$];
951
+ var TagOnCreateList = [1, n0, _TOCL, 0, () => Tag$];
952
+ var CreateSignalingChannel$ = [
945
953
  9,
946
954
  n0,
947
955
  _CSC,
948
956
  { [_h]: ["POST", "/createSignalingChannel", 200] },
949
- () => CreateSignalingChannelInput,
950
- () => CreateSignalingChannelOutput,
957
+ () => CreateSignalingChannelInput$,
958
+ () => CreateSignalingChannelOutput$,
951
959
  ];
952
- var CreateStream = [
960
+ var CreateStream$ = [
953
961
  9,
954
962
  n0,
955
963
  _CSr,
956
964
  { [_h]: ["POST", "/createStream", 200] },
957
- () => CreateStreamInput,
958
- () => CreateStreamOutput,
965
+ () => CreateStreamInput$,
966
+ () => CreateStreamOutput$,
959
967
  ];
960
- var DeleteEdgeConfiguration = [
968
+ var DeleteEdgeConfiguration$ = [
961
969
  9,
962
970
  n0,
963
971
  _DEC,
964
972
  { [_h]: ["POST", "/deleteEdgeConfiguration", 200] },
965
- () => DeleteEdgeConfigurationInput,
966
- () => DeleteEdgeConfigurationOutput,
973
+ () => DeleteEdgeConfigurationInput$,
974
+ () => DeleteEdgeConfigurationOutput$,
967
975
  ];
968
- var DeleteSignalingChannel = [
976
+ var DeleteSignalingChannel$ = [
969
977
  9,
970
978
  n0,
971
979
  _DSC,
972
980
  { [_h]: ["POST", "/deleteSignalingChannel", 200] },
973
- () => DeleteSignalingChannelInput,
974
- () => DeleteSignalingChannelOutput,
981
+ () => DeleteSignalingChannelInput$,
982
+ () => DeleteSignalingChannelOutput$,
975
983
  ];
976
- var DeleteStream = [
984
+ var DeleteStream$ = [
977
985
  9,
978
986
  n0,
979
987
  _DS,
980
988
  { [_h]: ["POST", "/deleteStream", 200] },
981
- () => DeleteStreamInput,
982
- () => DeleteStreamOutput,
989
+ () => DeleteStreamInput$,
990
+ () => DeleteStreamOutput$,
983
991
  ];
984
- var DescribeEdgeConfiguration = [
992
+ var DescribeEdgeConfiguration$ = [
985
993
  9,
986
994
  n0,
987
995
  _DECe,
988
996
  { [_h]: ["POST", "/describeEdgeConfiguration", 200] },
989
- () => DescribeEdgeConfigurationInput,
990
- () => DescribeEdgeConfigurationOutput,
997
+ () => DescribeEdgeConfigurationInput$,
998
+ () => DescribeEdgeConfigurationOutput$,
991
999
  ];
992
- var DescribeImageGenerationConfiguration = [
1000
+ var DescribeImageGenerationConfiguration$ = [
993
1001
  9,
994
1002
  n0,
995
1003
  _DIGC,
996
1004
  { [_h]: ["POST", "/describeImageGenerationConfiguration", 200] },
997
- () => DescribeImageGenerationConfigurationInput,
998
- () => DescribeImageGenerationConfigurationOutput,
1005
+ () => DescribeImageGenerationConfigurationInput$,
1006
+ () => DescribeImageGenerationConfigurationOutput$,
999
1007
  ];
1000
- var DescribeMappedResourceConfiguration = [
1008
+ var DescribeMappedResourceConfiguration$ = [
1001
1009
  9,
1002
1010
  n0,
1003
1011
  _DMRC,
1004
1012
  { [_h]: ["POST", "/describeMappedResourceConfiguration", 200] },
1005
- () => DescribeMappedResourceConfigurationInput,
1006
- () => DescribeMappedResourceConfigurationOutput,
1013
+ () => DescribeMappedResourceConfigurationInput$,
1014
+ () => DescribeMappedResourceConfigurationOutput$,
1007
1015
  ];
1008
- var DescribeMediaStorageConfiguration = [
1016
+ var DescribeMediaStorageConfiguration$ = [
1009
1017
  9,
1010
1018
  n0,
1011
1019
  _DMSC,
1012
1020
  { [_h]: ["POST", "/describeMediaStorageConfiguration", 200] },
1013
- () => DescribeMediaStorageConfigurationInput,
1014
- () => DescribeMediaStorageConfigurationOutput,
1021
+ () => DescribeMediaStorageConfigurationInput$,
1022
+ () => DescribeMediaStorageConfigurationOutput$,
1015
1023
  ];
1016
- var DescribeNotificationConfiguration = [
1024
+ var DescribeNotificationConfiguration$ = [
1017
1025
  9,
1018
1026
  n0,
1019
1027
  _DNC,
1020
1028
  { [_h]: ["POST", "/describeNotificationConfiguration", 200] },
1021
- () => DescribeNotificationConfigurationInput,
1022
- () => DescribeNotificationConfigurationOutput,
1029
+ () => DescribeNotificationConfigurationInput$,
1030
+ () => DescribeNotificationConfigurationOutput$,
1023
1031
  ];
1024
- var DescribeSignalingChannel = [
1032
+ var DescribeSignalingChannel$ = [
1025
1033
  9,
1026
1034
  n0,
1027
1035
  _DSCe,
1028
1036
  { [_h]: ["POST", "/describeSignalingChannel", 200] },
1029
- () => DescribeSignalingChannelInput,
1030
- () => DescribeSignalingChannelOutput,
1037
+ () => DescribeSignalingChannelInput$,
1038
+ () => DescribeSignalingChannelOutput$,
1031
1039
  ];
1032
- var DescribeStream = [
1040
+ var DescribeStream$ = [
1033
1041
  9,
1034
1042
  n0,
1035
1043
  _DSe,
1036
1044
  { [_h]: ["POST", "/describeStream", 200] },
1037
- () => DescribeStreamInput,
1038
- () => DescribeStreamOutput,
1045
+ () => DescribeStreamInput$,
1046
+ () => DescribeStreamOutput$,
1039
1047
  ];
1040
- var DescribeStreamStorageConfiguration = [
1048
+ var DescribeStreamStorageConfiguration$ = [
1041
1049
  9,
1042
1050
  n0,
1043
1051
  _DSSC,
1044
1052
  { [_h]: ["POST", "/describeStreamStorageConfiguration", 200] },
1045
- () => DescribeStreamStorageConfigurationInput,
1046
- () => DescribeStreamStorageConfigurationOutput,
1053
+ () => DescribeStreamStorageConfigurationInput$,
1054
+ () => DescribeStreamStorageConfigurationOutput$,
1047
1055
  ];
1048
- var GetDataEndpoint = [
1056
+ var GetDataEndpoint$ = [
1049
1057
  9,
1050
1058
  n0,
1051
1059
  _GDE,
1052
1060
  { [_h]: ["POST", "/getDataEndpoint", 200] },
1053
- () => GetDataEndpointInput,
1054
- () => GetDataEndpointOutput,
1061
+ () => GetDataEndpointInput$,
1062
+ () => GetDataEndpointOutput$,
1055
1063
  ];
1056
- var GetSignalingChannelEndpoint = [
1064
+ var GetSignalingChannelEndpoint$ = [
1057
1065
  9,
1058
1066
  n0,
1059
1067
  _GSCE,
1060
1068
  { [_h]: ["POST", "/getSignalingChannelEndpoint", 200] },
1061
- () => GetSignalingChannelEndpointInput,
1062
- () => GetSignalingChannelEndpointOutput,
1069
+ () => GetSignalingChannelEndpointInput$,
1070
+ () => GetSignalingChannelEndpointOutput$,
1063
1071
  ];
1064
- var ListEdgeAgentConfigurations = [
1072
+ var ListEdgeAgentConfigurations$ = [
1065
1073
  9,
1066
1074
  n0,
1067
1075
  _LEAC,
1068
1076
  { [_h]: ["POST", "/listEdgeAgentConfigurations", 200] },
1069
- () => ListEdgeAgentConfigurationsInput,
1070
- () => ListEdgeAgentConfigurationsOutput,
1077
+ () => ListEdgeAgentConfigurationsInput$,
1078
+ () => ListEdgeAgentConfigurationsOutput$,
1071
1079
  ];
1072
- var ListSignalingChannels = [
1080
+ var ListSignalingChannels$ = [
1073
1081
  9,
1074
1082
  n0,
1075
1083
  _LSCi,
1076
1084
  { [_h]: ["POST", "/listSignalingChannels", 200] },
1077
- () => ListSignalingChannelsInput,
1078
- () => ListSignalingChannelsOutput,
1085
+ () => ListSignalingChannelsInput$,
1086
+ () => ListSignalingChannelsOutput$,
1079
1087
  ];
1080
- var ListStreams = [
1088
+ var ListStreams$ = [
1081
1089
  9,
1082
1090
  n0,
1083
1091
  _LS,
1084
1092
  { [_h]: ["POST", "/listStreams", 200] },
1085
- () => ListStreamsInput,
1086
- () => ListStreamsOutput,
1093
+ () => ListStreamsInput$,
1094
+ () => ListStreamsOutput$,
1087
1095
  ];
1088
- var ListTagsForResource = [
1096
+ var ListTagsForResource$ = [
1089
1097
  9,
1090
1098
  n0,
1091
1099
  _LTFR,
1092
1100
  { [_h]: ["POST", "/ListTagsForResource", 200] },
1093
- () => ListTagsForResourceInput,
1094
- () => ListTagsForResourceOutput,
1101
+ () => ListTagsForResourceInput$,
1102
+ () => ListTagsForResourceOutput$,
1095
1103
  ];
1096
- var ListTagsForStream = [
1104
+ var ListTagsForStream$ = [
1097
1105
  9,
1098
1106
  n0,
1099
1107
  _LTFS,
1100
1108
  { [_h]: ["POST", "/listTagsForStream", 200] },
1101
- () => ListTagsForStreamInput,
1102
- () => ListTagsForStreamOutput,
1109
+ () => ListTagsForStreamInput$,
1110
+ () => ListTagsForStreamOutput$,
1103
1111
  ];
1104
- var StartEdgeConfigurationUpdate = [
1112
+ var StartEdgeConfigurationUpdate$ = [
1105
1113
  9,
1106
1114
  n0,
1107
1115
  _SECU,
1108
1116
  { [_h]: ["POST", "/startEdgeConfigurationUpdate", 200] },
1109
- () => StartEdgeConfigurationUpdateInput,
1110
- () => StartEdgeConfigurationUpdateOutput,
1117
+ () => StartEdgeConfigurationUpdateInput$,
1118
+ () => StartEdgeConfigurationUpdateOutput$,
1111
1119
  ];
1112
- var TagResource = [
1120
+ var TagResource$ = [
1113
1121
  9,
1114
1122
  n0,
1115
1123
  _TR,
1116
1124
  { [_h]: ["POST", "/TagResource", 200] },
1117
- () => TagResourceInput,
1118
- () => TagResourceOutput,
1125
+ () => TagResourceInput$,
1126
+ () => TagResourceOutput$,
1119
1127
  ];
1120
- var TagStream = [
1128
+ var TagStream$ = [
1121
1129
  9,
1122
1130
  n0,
1123
1131
  _TS,
1124
1132
  { [_h]: ["POST", "/tagStream", 200] },
1125
- () => TagStreamInput,
1126
- () => TagStreamOutput,
1133
+ () => TagStreamInput$,
1134
+ () => TagStreamOutput$,
1127
1135
  ];
1128
- var UntagResource = [
1136
+ var UntagResource$ = [
1129
1137
  9,
1130
1138
  n0,
1131
1139
  _UR,
1132
1140
  { [_h]: ["POST", "/UntagResource", 200] },
1133
- () => UntagResourceInput,
1134
- () => UntagResourceOutput,
1141
+ () => UntagResourceInput$,
1142
+ () => UntagResourceOutput$,
1135
1143
  ];
1136
- var UntagStream = [
1144
+ var UntagStream$ = [
1137
1145
  9,
1138
1146
  n0,
1139
1147
  _USn,
1140
1148
  { [_h]: ["POST", "/untagStream", 200] },
1141
- () => UntagStreamInput,
1142
- () => UntagStreamOutput,
1149
+ () => UntagStreamInput$,
1150
+ () => UntagStreamOutput$,
1143
1151
  ];
1144
- var UpdateDataRetention = [
1152
+ var UpdateDataRetention$ = [
1145
1153
  9,
1146
1154
  n0,
1147
1155
  _UDR,
1148
1156
  { [_h]: ["POST", "/updateDataRetention", 200] },
1149
- () => UpdateDataRetentionInput,
1150
- () => UpdateDataRetentionOutput,
1157
+ () => UpdateDataRetentionInput$,
1158
+ () => UpdateDataRetentionOutput$,
1151
1159
  ];
1152
- var UpdateImageGenerationConfiguration = [
1160
+ var UpdateImageGenerationConfiguration$ = [
1153
1161
  9,
1154
1162
  n0,
1155
1163
  _UIGC,
1156
1164
  { [_h]: ["POST", "/updateImageGenerationConfiguration", 200] },
1157
- () => UpdateImageGenerationConfigurationInput,
1158
- () => UpdateImageGenerationConfigurationOutput,
1165
+ () => UpdateImageGenerationConfigurationInput$,
1166
+ () => UpdateImageGenerationConfigurationOutput$,
1159
1167
  ];
1160
- var UpdateMediaStorageConfiguration = [
1168
+ var UpdateMediaStorageConfiguration$ = [
1161
1169
  9,
1162
1170
  n0,
1163
1171
  _UMSC,
1164
1172
  { [_h]: ["POST", "/updateMediaStorageConfiguration", 200] },
1165
- () => UpdateMediaStorageConfigurationInput,
1166
- () => UpdateMediaStorageConfigurationOutput,
1173
+ () => UpdateMediaStorageConfigurationInput$,
1174
+ () => UpdateMediaStorageConfigurationOutput$,
1167
1175
  ];
1168
- var UpdateNotificationConfiguration = [
1176
+ var UpdateNotificationConfiguration$ = [
1169
1177
  9,
1170
1178
  n0,
1171
1179
  _UNC,
1172
1180
  { [_h]: ["POST", "/updateNotificationConfiguration", 200] },
1173
- () => UpdateNotificationConfigurationInput,
1174
- () => UpdateNotificationConfigurationOutput,
1181
+ () => UpdateNotificationConfigurationInput$,
1182
+ () => UpdateNotificationConfigurationOutput$,
1175
1183
  ];
1176
- var UpdateSignalingChannel = [
1184
+ var UpdateSignalingChannel$ = [
1177
1185
  9,
1178
1186
  n0,
1179
1187
  _USC,
1180
1188
  { [_h]: ["POST", "/updateSignalingChannel", 200] },
1181
- () => UpdateSignalingChannelInput,
1182
- () => UpdateSignalingChannelOutput,
1189
+ () => UpdateSignalingChannelInput$,
1190
+ () => UpdateSignalingChannelOutput$,
1183
1191
  ];
1184
- var UpdateStream = [
1192
+ var UpdateStream$ = [
1185
1193
  9,
1186
1194
  n0,
1187
1195
  _USp,
1188
1196
  { [_h]: ["POST", "/updateStream", 200] },
1189
- () => UpdateStreamInput,
1190
- () => UpdateStreamOutput,
1197
+ () => UpdateStreamInput$,
1198
+ () => UpdateStreamOutput$,
1191
1199
  ];
1192
- var UpdateStreamStorageConfiguration = [
1200
+ var UpdateStreamStorageConfiguration$ = [
1193
1201
  9,
1194
1202
  n0,
1195
1203
  _USSC,
1196
1204
  { [_h]: ["POST", "/updateStreamStorageConfiguration", 200] },
1197
- () => UpdateStreamStorageConfigurationInput,
1198
- () => UpdateStreamStorageConfigurationOutput,
1205
+ () => UpdateStreamStorageConfigurationInput$,
1206
+ () => UpdateStreamStorageConfigurationOutput$,
1199
1207
  ];
1200
1208
 
1201
1209
  class CreateSignalingChannelCommand extends smithyClient.Command
@@ -1206,7 +1214,7 @@ class CreateSignalingChannelCommand extends smithyClient.Command
1206
1214
  })
1207
1215
  .s("KinesisVideo_20170930", "CreateSignalingChannel", {})
1208
1216
  .n("KinesisVideoClient", "CreateSignalingChannelCommand")
1209
- .sc(CreateSignalingChannel)
1217
+ .sc(CreateSignalingChannel$)
1210
1218
  .build() {
1211
1219
  }
1212
1220
 
@@ -1218,7 +1226,7 @@ class CreateStreamCommand extends smithyClient.Command
1218
1226
  })
1219
1227
  .s("KinesisVideo_20170930", "CreateStream", {})
1220
1228
  .n("KinesisVideoClient", "CreateStreamCommand")
1221
- .sc(CreateStream)
1229
+ .sc(CreateStream$)
1222
1230
  .build() {
1223
1231
  }
1224
1232
 
@@ -1230,7 +1238,7 @@ class DeleteEdgeConfigurationCommand extends smithyClient.Command
1230
1238
  })
1231
1239
  .s("KinesisVideo_20170930", "DeleteEdgeConfiguration", {})
1232
1240
  .n("KinesisVideoClient", "DeleteEdgeConfigurationCommand")
1233
- .sc(DeleteEdgeConfiguration)
1241
+ .sc(DeleteEdgeConfiguration$)
1234
1242
  .build() {
1235
1243
  }
1236
1244
 
@@ -1242,7 +1250,7 @@ class DeleteSignalingChannelCommand extends smithyClient.Command
1242
1250
  })
1243
1251
  .s("KinesisVideo_20170930", "DeleteSignalingChannel", {})
1244
1252
  .n("KinesisVideoClient", "DeleteSignalingChannelCommand")
1245
- .sc(DeleteSignalingChannel)
1253
+ .sc(DeleteSignalingChannel$)
1246
1254
  .build() {
1247
1255
  }
1248
1256
 
@@ -1254,7 +1262,7 @@ class DeleteStreamCommand extends smithyClient.Command
1254
1262
  })
1255
1263
  .s("KinesisVideo_20170930", "DeleteStream", {})
1256
1264
  .n("KinesisVideoClient", "DeleteStreamCommand")
1257
- .sc(DeleteStream)
1265
+ .sc(DeleteStream$)
1258
1266
  .build() {
1259
1267
  }
1260
1268
 
@@ -1266,7 +1274,7 @@ class DescribeEdgeConfigurationCommand extends smithyClient.Command
1266
1274
  })
1267
1275
  .s("KinesisVideo_20170930", "DescribeEdgeConfiguration", {})
1268
1276
  .n("KinesisVideoClient", "DescribeEdgeConfigurationCommand")
1269
- .sc(DescribeEdgeConfiguration)
1277
+ .sc(DescribeEdgeConfiguration$)
1270
1278
  .build() {
1271
1279
  }
1272
1280
 
@@ -1278,7 +1286,7 @@ class DescribeImageGenerationConfigurationCommand extends smithyClient.Command
1278
1286
  })
1279
1287
  .s("KinesisVideo_20170930", "DescribeImageGenerationConfiguration", {})
1280
1288
  .n("KinesisVideoClient", "DescribeImageGenerationConfigurationCommand")
1281
- .sc(DescribeImageGenerationConfiguration)
1289
+ .sc(DescribeImageGenerationConfiguration$)
1282
1290
  .build() {
1283
1291
  }
1284
1292
 
@@ -1290,7 +1298,7 @@ class DescribeMappedResourceConfigurationCommand extends smithyClient.Command
1290
1298
  })
1291
1299
  .s("KinesisVideo_20170930", "DescribeMappedResourceConfiguration", {})
1292
1300
  .n("KinesisVideoClient", "DescribeMappedResourceConfigurationCommand")
1293
- .sc(DescribeMappedResourceConfiguration)
1301
+ .sc(DescribeMappedResourceConfiguration$)
1294
1302
  .build() {
1295
1303
  }
1296
1304
 
@@ -1302,7 +1310,7 @@ class DescribeMediaStorageConfigurationCommand extends smithyClient.Command
1302
1310
  })
1303
1311
  .s("KinesisVideo_20170930", "DescribeMediaStorageConfiguration", {})
1304
1312
  .n("KinesisVideoClient", "DescribeMediaStorageConfigurationCommand")
1305
- .sc(DescribeMediaStorageConfiguration)
1313
+ .sc(DescribeMediaStorageConfiguration$)
1306
1314
  .build() {
1307
1315
  }
1308
1316
 
@@ -1314,7 +1322,7 @@ class DescribeNotificationConfigurationCommand extends smithyClient.Command
1314
1322
  })
1315
1323
  .s("KinesisVideo_20170930", "DescribeNotificationConfiguration", {})
1316
1324
  .n("KinesisVideoClient", "DescribeNotificationConfigurationCommand")
1317
- .sc(DescribeNotificationConfiguration)
1325
+ .sc(DescribeNotificationConfiguration$)
1318
1326
  .build() {
1319
1327
  }
1320
1328
 
@@ -1326,7 +1334,7 @@ class DescribeSignalingChannelCommand extends smithyClient.Command
1326
1334
  })
1327
1335
  .s("KinesisVideo_20170930", "DescribeSignalingChannel", {})
1328
1336
  .n("KinesisVideoClient", "DescribeSignalingChannelCommand")
1329
- .sc(DescribeSignalingChannel)
1337
+ .sc(DescribeSignalingChannel$)
1330
1338
  .build() {
1331
1339
  }
1332
1340
 
@@ -1338,7 +1346,7 @@ class DescribeStreamCommand extends smithyClient.Command
1338
1346
  })
1339
1347
  .s("KinesisVideo_20170930", "DescribeStream", {})
1340
1348
  .n("KinesisVideoClient", "DescribeStreamCommand")
1341
- .sc(DescribeStream)
1349
+ .sc(DescribeStream$)
1342
1350
  .build() {
1343
1351
  }
1344
1352
 
@@ -1350,7 +1358,7 @@ class DescribeStreamStorageConfigurationCommand extends smithyClient.Command
1350
1358
  })
1351
1359
  .s("KinesisVideo_20170930", "DescribeStreamStorageConfiguration", {})
1352
1360
  .n("KinesisVideoClient", "DescribeStreamStorageConfigurationCommand")
1353
- .sc(DescribeStreamStorageConfiguration)
1361
+ .sc(DescribeStreamStorageConfiguration$)
1354
1362
  .build() {
1355
1363
  }
1356
1364
 
@@ -1362,7 +1370,7 @@ class GetDataEndpointCommand extends smithyClient.Command
1362
1370
  })
1363
1371
  .s("KinesisVideo_20170930", "GetDataEndpoint", {})
1364
1372
  .n("KinesisVideoClient", "GetDataEndpointCommand")
1365
- .sc(GetDataEndpoint)
1373
+ .sc(GetDataEndpoint$)
1366
1374
  .build() {
1367
1375
  }
1368
1376
 
@@ -1374,7 +1382,7 @@ class GetSignalingChannelEndpointCommand extends smithyClient.Command
1374
1382
  })
1375
1383
  .s("KinesisVideo_20170930", "GetSignalingChannelEndpoint", {})
1376
1384
  .n("KinesisVideoClient", "GetSignalingChannelEndpointCommand")
1377
- .sc(GetSignalingChannelEndpoint)
1385
+ .sc(GetSignalingChannelEndpoint$)
1378
1386
  .build() {
1379
1387
  }
1380
1388
 
@@ -1386,7 +1394,7 @@ class ListEdgeAgentConfigurationsCommand extends smithyClient.Command
1386
1394
  })
1387
1395
  .s("KinesisVideo_20170930", "ListEdgeAgentConfigurations", {})
1388
1396
  .n("KinesisVideoClient", "ListEdgeAgentConfigurationsCommand")
1389
- .sc(ListEdgeAgentConfigurations)
1397
+ .sc(ListEdgeAgentConfigurations$)
1390
1398
  .build() {
1391
1399
  }
1392
1400
 
@@ -1398,7 +1406,7 @@ class ListSignalingChannelsCommand extends smithyClient.Command
1398
1406
  })
1399
1407
  .s("KinesisVideo_20170930", "ListSignalingChannels", {})
1400
1408
  .n("KinesisVideoClient", "ListSignalingChannelsCommand")
1401
- .sc(ListSignalingChannels)
1409
+ .sc(ListSignalingChannels$)
1402
1410
  .build() {
1403
1411
  }
1404
1412
 
@@ -1410,7 +1418,7 @@ class ListStreamsCommand extends smithyClient.Command
1410
1418
  })
1411
1419
  .s("KinesisVideo_20170930", "ListStreams", {})
1412
1420
  .n("KinesisVideoClient", "ListStreamsCommand")
1413
- .sc(ListStreams)
1421
+ .sc(ListStreams$)
1414
1422
  .build() {
1415
1423
  }
1416
1424
 
@@ -1422,7 +1430,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1422
1430
  })
1423
1431
  .s("KinesisVideo_20170930", "ListTagsForResource", {})
1424
1432
  .n("KinesisVideoClient", "ListTagsForResourceCommand")
1425
- .sc(ListTagsForResource)
1433
+ .sc(ListTagsForResource$)
1426
1434
  .build() {
1427
1435
  }
1428
1436
 
@@ -1434,7 +1442,7 @@ class ListTagsForStreamCommand extends smithyClient.Command
1434
1442
  })
1435
1443
  .s("KinesisVideo_20170930", "ListTagsForStream", {})
1436
1444
  .n("KinesisVideoClient", "ListTagsForStreamCommand")
1437
- .sc(ListTagsForStream)
1445
+ .sc(ListTagsForStream$)
1438
1446
  .build() {
1439
1447
  }
1440
1448
 
@@ -1446,7 +1454,7 @@ class StartEdgeConfigurationUpdateCommand extends smithyClient.Command
1446
1454
  })
1447
1455
  .s("KinesisVideo_20170930", "StartEdgeConfigurationUpdate", {})
1448
1456
  .n("KinesisVideoClient", "StartEdgeConfigurationUpdateCommand")
1449
- .sc(StartEdgeConfigurationUpdate)
1457
+ .sc(StartEdgeConfigurationUpdate$)
1450
1458
  .build() {
1451
1459
  }
1452
1460
 
@@ -1458,7 +1466,7 @@ class TagResourceCommand extends smithyClient.Command
1458
1466
  })
1459
1467
  .s("KinesisVideo_20170930", "TagResource", {})
1460
1468
  .n("KinesisVideoClient", "TagResourceCommand")
1461
- .sc(TagResource)
1469
+ .sc(TagResource$)
1462
1470
  .build() {
1463
1471
  }
1464
1472
 
@@ -1470,7 +1478,7 @@ class TagStreamCommand extends smithyClient.Command
1470
1478
  })
1471
1479
  .s("KinesisVideo_20170930", "TagStream", {})
1472
1480
  .n("KinesisVideoClient", "TagStreamCommand")
1473
- .sc(TagStream)
1481
+ .sc(TagStream$)
1474
1482
  .build() {
1475
1483
  }
1476
1484
 
@@ -1482,7 +1490,7 @@ class UntagResourceCommand extends smithyClient.Command
1482
1490
  })
1483
1491
  .s("KinesisVideo_20170930", "UntagResource", {})
1484
1492
  .n("KinesisVideoClient", "UntagResourceCommand")
1485
- .sc(UntagResource)
1493
+ .sc(UntagResource$)
1486
1494
  .build() {
1487
1495
  }
1488
1496
 
@@ -1494,7 +1502,7 @@ class UntagStreamCommand extends smithyClient.Command
1494
1502
  })
1495
1503
  .s("KinesisVideo_20170930", "UntagStream", {})
1496
1504
  .n("KinesisVideoClient", "UntagStreamCommand")
1497
- .sc(UntagStream)
1505
+ .sc(UntagStream$)
1498
1506
  .build() {
1499
1507
  }
1500
1508
 
@@ -1506,7 +1514,7 @@ class UpdateDataRetentionCommand extends smithyClient.Command
1506
1514
  })
1507
1515
  .s("KinesisVideo_20170930", "UpdateDataRetention", {})
1508
1516
  .n("KinesisVideoClient", "UpdateDataRetentionCommand")
1509
- .sc(UpdateDataRetention)
1517
+ .sc(UpdateDataRetention$)
1510
1518
  .build() {
1511
1519
  }
1512
1520
 
@@ -1518,7 +1526,7 @@ class UpdateImageGenerationConfigurationCommand extends smithyClient.Command
1518
1526
  })
1519
1527
  .s("KinesisVideo_20170930", "UpdateImageGenerationConfiguration", {})
1520
1528
  .n("KinesisVideoClient", "UpdateImageGenerationConfigurationCommand")
1521
- .sc(UpdateImageGenerationConfiguration)
1529
+ .sc(UpdateImageGenerationConfiguration$)
1522
1530
  .build() {
1523
1531
  }
1524
1532
 
@@ -1530,7 +1538,7 @@ class UpdateMediaStorageConfigurationCommand extends smithyClient.Command
1530
1538
  })
1531
1539
  .s("KinesisVideo_20170930", "UpdateMediaStorageConfiguration", {})
1532
1540
  .n("KinesisVideoClient", "UpdateMediaStorageConfigurationCommand")
1533
- .sc(UpdateMediaStorageConfiguration)
1541
+ .sc(UpdateMediaStorageConfiguration$)
1534
1542
  .build() {
1535
1543
  }
1536
1544
 
@@ -1542,7 +1550,7 @@ class UpdateNotificationConfigurationCommand extends smithyClient.Command
1542
1550
  })
1543
1551
  .s("KinesisVideo_20170930", "UpdateNotificationConfiguration", {})
1544
1552
  .n("KinesisVideoClient", "UpdateNotificationConfigurationCommand")
1545
- .sc(UpdateNotificationConfiguration)
1553
+ .sc(UpdateNotificationConfiguration$)
1546
1554
  .build() {
1547
1555
  }
1548
1556
 
@@ -1554,7 +1562,7 @@ class UpdateSignalingChannelCommand extends smithyClient.Command
1554
1562
  })
1555
1563
  .s("KinesisVideo_20170930", "UpdateSignalingChannel", {})
1556
1564
  .n("KinesisVideoClient", "UpdateSignalingChannelCommand")
1557
- .sc(UpdateSignalingChannel)
1565
+ .sc(UpdateSignalingChannel$)
1558
1566
  .build() {
1559
1567
  }
1560
1568
 
@@ -1566,7 +1574,7 @@ class UpdateStreamCommand extends smithyClient.Command
1566
1574
  })
1567
1575
  .s("KinesisVideo_20170930", "UpdateStream", {})
1568
1576
  .n("KinesisVideoClient", "UpdateStreamCommand")
1569
- .sc(UpdateStream)
1577
+ .sc(UpdateStream$)
1570
1578
  .build() {
1571
1579
  }
1572
1580
 
@@ -1578,7 +1586,7 @@ class UpdateStreamStorageConfigurationCommand extends smithyClient.Command
1578
1586
  })
1579
1587
  .s("KinesisVideo_20170930", "UpdateStreamStorageConfiguration", {})
1580
1588
  .n("KinesisVideoClient", "UpdateStreamStorageConfigurationCommand")
1581
- .sc(UpdateStreamStorageConfiguration)
1589
+ .sc(UpdateStreamStorageConfiguration$)
1582
1590
  .build() {
1583
1591
  }
1584
1592
 
@@ -1724,73 +1732,211 @@ Object.defineProperty(exports, "__Client", {
1724
1732
  get: function () { return smithyClient.Client; }
1725
1733
  });
1726
1734
  exports.APIName = APIName;
1727
- exports.AccessDeniedException = AccessDeniedException$1;
1728
- exports.AccountChannelLimitExceededException = AccountChannelLimitExceededException$1;
1729
- exports.AccountStreamLimitExceededException = AccountStreamLimitExceededException$1;
1735
+ exports.AccessDeniedException = AccessDeniedException;
1736
+ exports.AccessDeniedException$ = AccessDeniedException$;
1737
+ exports.AccountChannelLimitExceededException = AccountChannelLimitExceededException;
1738
+ exports.AccountChannelLimitExceededException$ = AccountChannelLimitExceededException$;
1739
+ exports.AccountStreamLimitExceededException = AccountStreamLimitExceededException;
1740
+ exports.AccountStreamLimitExceededException$ = AccountStreamLimitExceededException$;
1741
+ exports.ChannelInfo$ = ChannelInfo$;
1742
+ exports.ChannelNameCondition$ = ChannelNameCondition$;
1730
1743
  exports.ChannelProtocol = ChannelProtocol;
1731
1744
  exports.ChannelRole = ChannelRole;
1732
1745
  exports.ChannelType = ChannelType;
1733
- exports.ClientLimitExceededException = ClientLimitExceededException$1;
1746
+ exports.ClientLimitExceededException = ClientLimitExceededException;
1747
+ exports.ClientLimitExceededException$ = ClientLimitExceededException$;
1734
1748
  exports.ComparisonOperator = ComparisonOperator;
1735
1749
  exports.ConfigurationStatus = ConfigurationStatus;
1750
+ exports.CreateSignalingChannel$ = CreateSignalingChannel$;
1736
1751
  exports.CreateSignalingChannelCommand = CreateSignalingChannelCommand;
1752
+ exports.CreateSignalingChannelInput$ = CreateSignalingChannelInput$;
1753
+ exports.CreateSignalingChannelOutput$ = CreateSignalingChannelOutput$;
1754
+ exports.CreateStream$ = CreateStream$;
1737
1755
  exports.CreateStreamCommand = CreateStreamCommand;
1756
+ exports.CreateStreamInput$ = CreateStreamInput$;
1757
+ exports.CreateStreamOutput$ = CreateStreamOutput$;
1738
1758
  exports.DefaultStorageTier = DefaultStorageTier;
1759
+ exports.DeleteEdgeConfiguration$ = DeleteEdgeConfiguration$;
1739
1760
  exports.DeleteEdgeConfigurationCommand = DeleteEdgeConfigurationCommand;
1761
+ exports.DeleteEdgeConfigurationInput$ = DeleteEdgeConfigurationInput$;
1762
+ exports.DeleteEdgeConfigurationOutput$ = DeleteEdgeConfigurationOutput$;
1763
+ exports.DeleteSignalingChannel$ = DeleteSignalingChannel$;
1740
1764
  exports.DeleteSignalingChannelCommand = DeleteSignalingChannelCommand;
1765
+ exports.DeleteSignalingChannelInput$ = DeleteSignalingChannelInput$;
1766
+ exports.DeleteSignalingChannelOutput$ = DeleteSignalingChannelOutput$;
1767
+ exports.DeleteStream$ = DeleteStream$;
1741
1768
  exports.DeleteStreamCommand = DeleteStreamCommand;
1769
+ exports.DeleteStreamInput$ = DeleteStreamInput$;
1770
+ exports.DeleteStreamOutput$ = DeleteStreamOutput$;
1771
+ exports.DeletionConfig$ = DeletionConfig$;
1772
+ exports.DescribeEdgeConfiguration$ = DescribeEdgeConfiguration$;
1742
1773
  exports.DescribeEdgeConfigurationCommand = DescribeEdgeConfigurationCommand;
1774
+ exports.DescribeEdgeConfigurationInput$ = DescribeEdgeConfigurationInput$;
1775
+ exports.DescribeEdgeConfigurationOutput$ = DescribeEdgeConfigurationOutput$;
1776
+ exports.DescribeImageGenerationConfiguration$ = DescribeImageGenerationConfiguration$;
1743
1777
  exports.DescribeImageGenerationConfigurationCommand = DescribeImageGenerationConfigurationCommand;
1778
+ exports.DescribeImageGenerationConfigurationInput$ = DescribeImageGenerationConfigurationInput$;
1779
+ exports.DescribeImageGenerationConfigurationOutput$ = DescribeImageGenerationConfigurationOutput$;
1780
+ exports.DescribeMappedResourceConfiguration$ = DescribeMappedResourceConfiguration$;
1744
1781
  exports.DescribeMappedResourceConfigurationCommand = DescribeMappedResourceConfigurationCommand;
1782
+ exports.DescribeMappedResourceConfigurationInput$ = DescribeMappedResourceConfigurationInput$;
1783
+ exports.DescribeMappedResourceConfigurationOutput$ = DescribeMappedResourceConfigurationOutput$;
1784
+ exports.DescribeMediaStorageConfiguration$ = DescribeMediaStorageConfiguration$;
1745
1785
  exports.DescribeMediaStorageConfigurationCommand = DescribeMediaStorageConfigurationCommand;
1786
+ exports.DescribeMediaStorageConfigurationInput$ = DescribeMediaStorageConfigurationInput$;
1787
+ exports.DescribeMediaStorageConfigurationOutput$ = DescribeMediaStorageConfigurationOutput$;
1788
+ exports.DescribeNotificationConfiguration$ = DescribeNotificationConfiguration$;
1746
1789
  exports.DescribeNotificationConfigurationCommand = DescribeNotificationConfigurationCommand;
1790
+ exports.DescribeNotificationConfigurationInput$ = DescribeNotificationConfigurationInput$;
1791
+ exports.DescribeNotificationConfigurationOutput$ = DescribeNotificationConfigurationOutput$;
1792
+ exports.DescribeSignalingChannel$ = DescribeSignalingChannel$;
1747
1793
  exports.DescribeSignalingChannelCommand = DescribeSignalingChannelCommand;
1794
+ exports.DescribeSignalingChannelInput$ = DescribeSignalingChannelInput$;
1795
+ exports.DescribeSignalingChannelOutput$ = DescribeSignalingChannelOutput$;
1796
+ exports.DescribeStream$ = DescribeStream$;
1748
1797
  exports.DescribeStreamCommand = DescribeStreamCommand;
1798
+ exports.DescribeStreamInput$ = DescribeStreamInput$;
1799
+ exports.DescribeStreamOutput$ = DescribeStreamOutput$;
1800
+ exports.DescribeStreamStorageConfiguration$ = DescribeStreamStorageConfiguration$;
1749
1801
  exports.DescribeStreamStorageConfigurationCommand = DescribeStreamStorageConfigurationCommand;
1750
- exports.DeviceStreamLimitExceededException = DeviceStreamLimitExceededException$1;
1802
+ exports.DescribeStreamStorageConfigurationInput$ = DescribeStreamStorageConfigurationInput$;
1803
+ exports.DescribeStreamStorageConfigurationOutput$ = DescribeStreamStorageConfigurationOutput$;
1804
+ exports.DeviceStreamLimitExceededException = DeviceStreamLimitExceededException;
1805
+ exports.DeviceStreamLimitExceededException$ = DeviceStreamLimitExceededException$;
1806
+ exports.EdgeAgentStatus$ = EdgeAgentStatus$;
1807
+ exports.EdgeConfig$ = EdgeConfig$;
1751
1808
  exports.Format = Format;
1752
1809
  exports.FormatConfigKey = FormatConfigKey;
1810
+ exports.GetDataEndpoint$ = GetDataEndpoint$;
1753
1811
  exports.GetDataEndpointCommand = GetDataEndpointCommand;
1812
+ exports.GetDataEndpointInput$ = GetDataEndpointInput$;
1813
+ exports.GetDataEndpointOutput$ = GetDataEndpointOutput$;
1814
+ exports.GetSignalingChannelEndpoint$ = GetSignalingChannelEndpoint$;
1754
1815
  exports.GetSignalingChannelEndpointCommand = GetSignalingChannelEndpointCommand;
1816
+ exports.GetSignalingChannelEndpointInput$ = GetSignalingChannelEndpointInput$;
1817
+ exports.GetSignalingChannelEndpointOutput$ = GetSignalingChannelEndpointOutput$;
1818
+ exports.ImageGenerationConfiguration$ = ImageGenerationConfiguration$;
1819
+ exports.ImageGenerationDestinationConfig$ = ImageGenerationDestinationConfig$;
1755
1820
  exports.ImageSelectorType = ImageSelectorType;
1756
- exports.InvalidArgumentException = InvalidArgumentException$1;
1757
- exports.InvalidDeviceException = InvalidDeviceException$1;
1758
- exports.InvalidResourceFormatException = InvalidResourceFormatException$1;
1821
+ exports.InvalidArgumentException = InvalidArgumentException;
1822
+ exports.InvalidArgumentException$ = InvalidArgumentException$;
1823
+ exports.InvalidDeviceException = InvalidDeviceException;
1824
+ exports.InvalidDeviceException$ = InvalidDeviceException$;
1825
+ exports.InvalidResourceFormatException = InvalidResourceFormatException;
1826
+ exports.InvalidResourceFormatException$ = InvalidResourceFormatException$;
1759
1827
  exports.KinesisVideo = KinesisVideo;
1760
1828
  exports.KinesisVideoClient = KinesisVideoClient;
1761
- exports.KinesisVideoServiceException = KinesisVideoServiceException$1;
1829
+ exports.KinesisVideoServiceException = KinesisVideoServiceException;
1830
+ exports.KinesisVideoServiceException$ = KinesisVideoServiceException$;
1831
+ exports.LastRecorderStatus$ = LastRecorderStatus$;
1832
+ exports.LastUploaderStatus$ = LastUploaderStatus$;
1833
+ exports.ListEdgeAgentConfigurations$ = ListEdgeAgentConfigurations$;
1762
1834
  exports.ListEdgeAgentConfigurationsCommand = ListEdgeAgentConfigurationsCommand;
1835
+ exports.ListEdgeAgentConfigurationsEdgeConfig$ = ListEdgeAgentConfigurationsEdgeConfig$;
1836
+ exports.ListEdgeAgentConfigurationsInput$ = ListEdgeAgentConfigurationsInput$;
1837
+ exports.ListEdgeAgentConfigurationsOutput$ = ListEdgeAgentConfigurationsOutput$;
1838
+ exports.ListSignalingChannels$ = ListSignalingChannels$;
1763
1839
  exports.ListSignalingChannelsCommand = ListSignalingChannelsCommand;
1840
+ exports.ListSignalingChannelsInput$ = ListSignalingChannelsInput$;
1841
+ exports.ListSignalingChannelsOutput$ = ListSignalingChannelsOutput$;
1842
+ exports.ListStreams$ = ListStreams$;
1764
1843
  exports.ListStreamsCommand = ListStreamsCommand;
1844
+ exports.ListStreamsInput$ = ListStreamsInput$;
1845
+ exports.ListStreamsOutput$ = ListStreamsOutput$;
1846
+ exports.ListTagsForResource$ = ListTagsForResource$;
1765
1847
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1848
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
1849
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
1850
+ exports.ListTagsForStream$ = ListTagsForStream$;
1766
1851
  exports.ListTagsForStreamCommand = ListTagsForStreamCommand;
1852
+ exports.ListTagsForStreamInput$ = ListTagsForStreamInput$;
1853
+ exports.ListTagsForStreamOutput$ = ListTagsForStreamOutput$;
1854
+ exports.LocalSizeConfig$ = LocalSizeConfig$;
1855
+ exports.MappedResourceConfigurationListItem$ = MappedResourceConfigurationListItem$;
1856
+ exports.MediaSourceConfig$ = MediaSourceConfig$;
1857
+ exports.MediaStorageConfiguration$ = MediaStorageConfiguration$;
1767
1858
  exports.MediaStorageConfigurationStatus = MediaStorageConfigurationStatus;
1768
1859
  exports.MediaUriType = MediaUriType;
1769
- exports.NoDataRetentionException = NoDataRetentionException$1;
1770
- exports.NotAuthorizedException = NotAuthorizedException$1;
1860
+ exports.NoDataRetentionException = NoDataRetentionException;
1861
+ exports.NoDataRetentionException$ = NoDataRetentionException$;
1862
+ exports.NotAuthorizedException = NotAuthorizedException;
1863
+ exports.NotAuthorizedException$ = NotAuthorizedException$;
1864
+ exports.NotificationConfiguration$ = NotificationConfiguration$;
1865
+ exports.NotificationDestinationConfig$ = NotificationDestinationConfig$;
1866
+ exports.RecorderConfig$ = RecorderConfig$;
1771
1867
  exports.RecorderStatus = RecorderStatus;
1772
- exports.ResourceInUseException = ResourceInUseException$1;
1773
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1868
+ exports.ResourceEndpointListItem$ = ResourceEndpointListItem$;
1869
+ exports.ResourceInUseException = ResourceInUseException;
1870
+ exports.ResourceInUseException$ = ResourceInUseException$;
1871
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1872
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1873
+ exports.ScheduleConfig$ = ScheduleConfig$;
1874
+ exports.SingleMasterChannelEndpointConfiguration$ = SingleMasterChannelEndpointConfiguration$;
1875
+ exports.SingleMasterConfiguration$ = SingleMasterConfiguration$;
1876
+ exports.StartEdgeConfigurationUpdate$ = StartEdgeConfigurationUpdate$;
1774
1877
  exports.StartEdgeConfigurationUpdateCommand = StartEdgeConfigurationUpdateCommand;
1878
+ exports.StartEdgeConfigurationUpdateInput$ = StartEdgeConfigurationUpdateInput$;
1879
+ exports.StartEdgeConfigurationUpdateOutput$ = StartEdgeConfigurationUpdateOutput$;
1775
1880
  exports.Status = Status;
1776
1881
  exports.StrategyOnFullSize = StrategyOnFullSize;
1777
- exports.StreamEdgeConfigurationNotFoundException = StreamEdgeConfigurationNotFoundException$1;
1882
+ exports.StreamEdgeConfigurationNotFoundException = StreamEdgeConfigurationNotFoundException;
1883
+ exports.StreamEdgeConfigurationNotFoundException$ = StreamEdgeConfigurationNotFoundException$;
1884
+ exports.StreamInfo$ = StreamInfo$;
1885
+ exports.StreamNameCondition$ = StreamNameCondition$;
1886
+ exports.StreamStorageConfiguration$ = StreamStorageConfiguration$;
1778
1887
  exports.SyncStatus = SyncStatus;
1888
+ exports.Tag$ = Tag$;
1889
+ exports.TagResource$ = TagResource$;
1779
1890
  exports.TagResourceCommand = TagResourceCommand;
1891
+ exports.TagResourceInput$ = TagResourceInput$;
1892
+ exports.TagResourceOutput$ = TagResourceOutput$;
1893
+ exports.TagStream$ = TagStream$;
1780
1894
  exports.TagStreamCommand = TagStreamCommand;
1781
- exports.TagsPerResourceExceededLimitException = TagsPerResourceExceededLimitException$1;
1895
+ exports.TagStreamInput$ = TagStreamInput$;
1896
+ exports.TagStreamOutput$ = TagStreamOutput$;
1897
+ exports.TagsPerResourceExceededLimitException = TagsPerResourceExceededLimitException;
1898
+ exports.TagsPerResourceExceededLimitException$ = TagsPerResourceExceededLimitException$;
1899
+ exports.UntagResource$ = UntagResource$;
1782
1900
  exports.UntagResourceCommand = UntagResourceCommand;
1901
+ exports.UntagResourceInput$ = UntagResourceInput$;
1902
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
1903
+ exports.UntagStream$ = UntagStream$;
1783
1904
  exports.UntagStreamCommand = UntagStreamCommand;
1905
+ exports.UntagStreamInput$ = UntagStreamInput$;
1906
+ exports.UntagStreamOutput$ = UntagStreamOutput$;
1907
+ exports.UpdateDataRetention$ = UpdateDataRetention$;
1784
1908
  exports.UpdateDataRetentionCommand = UpdateDataRetentionCommand;
1909
+ exports.UpdateDataRetentionInput$ = UpdateDataRetentionInput$;
1785
1910
  exports.UpdateDataRetentionOperation = UpdateDataRetentionOperation;
1911
+ exports.UpdateDataRetentionOutput$ = UpdateDataRetentionOutput$;
1912
+ exports.UpdateImageGenerationConfiguration$ = UpdateImageGenerationConfiguration$;
1786
1913
  exports.UpdateImageGenerationConfigurationCommand = UpdateImageGenerationConfigurationCommand;
1914
+ exports.UpdateImageGenerationConfigurationInput$ = UpdateImageGenerationConfigurationInput$;
1915
+ exports.UpdateImageGenerationConfigurationOutput$ = UpdateImageGenerationConfigurationOutput$;
1916
+ exports.UpdateMediaStorageConfiguration$ = UpdateMediaStorageConfiguration$;
1787
1917
  exports.UpdateMediaStorageConfigurationCommand = UpdateMediaStorageConfigurationCommand;
1918
+ exports.UpdateMediaStorageConfigurationInput$ = UpdateMediaStorageConfigurationInput$;
1919
+ exports.UpdateMediaStorageConfigurationOutput$ = UpdateMediaStorageConfigurationOutput$;
1920
+ exports.UpdateNotificationConfiguration$ = UpdateNotificationConfiguration$;
1788
1921
  exports.UpdateNotificationConfigurationCommand = UpdateNotificationConfigurationCommand;
1922
+ exports.UpdateNotificationConfigurationInput$ = UpdateNotificationConfigurationInput$;
1923
+ exports.UpdateNotificationConfigurationOutput$ = UpdateNotificationConfigurationOutput$;
1924
+ exports.UpdateSignalingChannel$ = UpdateSignalingChannel$;
1789
1925
  exports.UpdateSignalingChannelCommand = UpdateSignalingChannelCommand;
1926
+ exports.UpdateSignalingChannelInput$ = UpdateSignalingChannelInput$;
1927
+ exports.UpdateSignalingChannelOutput$ = UpdateSignalingChannelOutput$;
1928
+ exports.UpdateStream$ = UpdateStream$;
1790
1929
  exports.UpdateStreamCommand = UpdateStreamCommand;
1930
+ exports.UpdateStreamInput$ = UpdateStreamInput$;
1931
+ exports.UpdateStreamOutput$ = UpdateStreamOutput$;
1932
+ exports.UpdateStreamStorageConfiguration$ = UpdateStreamStorageConfiguration$;
1791
1933
  exports.UpdateStreamStorageConfigurationCommand = UpdateStreamStorageConfigurationCommand;
1934
+ exports.UpdateStreamStorageConfigurationInput$ = UpdateStreamStorageConfigurationInput$;
1935
+ exports.UpdateStreamStorageConfigurationOutput$ = UpdateStreamStorageConfigurationOutput$;
1936
+ exports.UploaderConfig$ = UploaderConfig$;
1792
1937
  exports.UploaderStatus = UploaderStatus;
1793
- exports.VersionMismatchException = VersionMismatchException$1;
1938
+ exports.VersionMismatchException = VersionMismatchException;
1939
+ exports.VersionMismatchException$ = VersionMismatchException$;
1794
1940
  exports.paginateDescribeMappedResourceConfiguration = paginateDescribeMappedResourceConfiguration;
1795
1941
  exports.paginateListEdgeAgentConfigurations = paginateListEdgeAgentConfigurations;
1796
1942
  exports.paginateListSignalingChannels = paginateListSignalingChannels;