@aws-sdk/client-kinesis-video 3.1075.0 → 3.1076.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultKinesisVideoHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateSignalingChannel$, CreateStream$, DeleteEdgeConfiguration$, DeleteSignalingChannel$, DeleteStream$, DescribeEdgeConfiguration$, DescribeImageGenerationConfiguration$, DescribeMappedResourceConfiguration$, DescribeMediaStorageConfiguration$, DescribeNotificationConfiguration$, DescribeSignalingChannel$, DescribeStream$, DescribeStreamStorageConfiguration$, GetDataEndpoint$, GetSignalingChannelEndpoint$, ListEdgeAgentConfigurations$, ListSignalingChannels$, ListStreams$, ListTagsForResource$, ListTagsForStream$, StartEdgeConfigurationUpdate$, TagResource$, TagStream$, UntagResource$, UntagStream$, UpdateDataRetention$, UpdateImageGenerationConfiguration$, UpdateMediaStorageConfiguration$, UpdateNotificationConfiguration$, UpdateSignalingChannel$, UpdateStream$, UpdateStreamStorageConfiguration$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { KinesisVideoServiceException } = require("./models/KinesisVideoServiceException");
18
- exports.KinesisVideoServiceException = KinesisVideoServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultKinesisVideoHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "kinesisvideo",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultKinesisVideoHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1233 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://kinesisvideo-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://kinesisvideo-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://kinesisvideo.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://kinesisvideo.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class KinesisVideoServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, KinesisVideoServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedException extends KinesisVideoServiceException {
140
+ name = "AccessDeniedException";
141
+ $fault = "client";
142
+ Message;
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ this.Message = opts.Message;
151
+ }
152
+ }
153
+ class AccountChannelLimitExceededException extends KinesisVideoServiceException {
154
+ name = "AccountChannelLimitExceededException";
155
+ $fault = "client";
156
+ Message;
157
+ constructor(opts) {
158
+ super({
159
+ name: "AccountChannelLimitExceededException",
160
+ $fault: "client",
161
+ ...opts,
162
+ });
163
+ Object.setPrototypeOf(this, AccountChannelLimitExceededException.prototype);
164
+ this.Message = opts.Message;
165
+ }
166
+ }
167
+ class AccountStreamLimitExceededException extends KinesisVideoServiceException {
168
+ name = "AccountStreamLimitExceededException";
169
+ $fault = "client";
170
+ Message;
171
+ constructor(opts) {
172
+ super({
173
+ name: "AccountStreamLimitExceededException",
174
+ $fault: "client",
175
+ ...opts,
176
+ });
177
+ Object.setPrototypeOf(this, AccountStreamLimitExceededException.prototype);
178
+ this.Message = opts.Message;
179
+ }
180
+ }
181
+ class ClientLimitExceededException extends KinesisVideoServiceException {
182
+ name = "ClientLimitExceededException";
183
+ $fault = "client";
184
+ Message;
185
+ constructor(opts) {
186
+ super({
187
+ name: "ClientLimitExceededException",
188
+ $fault: "client",
189
+ ...opts,
190
+ });
191
+ Object.setPrototypeOf(this, ClientLimitExceededException.prototype);
192
+ this.Message = opts.Message;
193
+ }
194
+ }
195
+ class InvalidArgumentException extends KinesisVideoServiceException {
196
+ name = "InvalidArgumentException";
197
+ $fault = "client";
198
+ Message;
199
+ constructor(opts) {
200
+ super({
201
+ name: "InvalidArgumentException",
202
+ $fault: "client",
203
+ ...opts,
204
+ });
205
+ Object.setPrototypeOf(this, InvalidArgumentException.prototype);
206
+ this.Message = opts.Message;
207
+ }
208
+ }
209
+ class ResourceInUseException extends KinesisVideoServiceException {
210
+ name = "ResourceInUseException";
211
+ $fault = "client";
212
+ Message;
213
+ constructor(opts) {
214
+ super({
215
+ name: "ResourceInUseException",
216
+ $fault: "client",
217
+ ...opts,
218
+ });
219
+ Object.setPrototypeOf(this, ResourceInUseException.prototype);
220
+ this.Message = opts.Message;
221
+ }
222
+ }
223
+ class TagsPerResourceExceededLimitException extends KinesisVideoServiceException {
224
+ name = "TagsPerResourceExceededLimitException";
225
+ $fault = "client";
226
+ Message;
227
+ constructor(opts) {
228
+ super({
229
+ name: "TagsPerResourceExceededLimitException",
230
+ $fault: "client",
231
+ ...opts,
232
+ });
233
+ Object.setPrototypeOf(this, TagsPerResourceExceededLimitException.prototype);
234
+ this.Message = opts.Message;
235
+ }
236
+ }
237
+ class DeviceStreamLimitExceededException extends KinesisVideoServiceException {
238
+ name = "DeviceStreamLimitExceededException";
239
+ $fault = "client";
240
+ Message;
241
+ constructor(opts) {
242
+ super({
243
+ name: "DeviceStreamLimitExceededException",
244
+ $fault: "client",
245
+ ...opts,
246
+ });
247
+ Object.setPrototypeOf(this, DeviceStreamLimitExceededException.prototype);
248
+ this.Message = opts.Message;
249
+ }
250
+ }
251
+ class InvalidDeviceException extends KinesisVideoServiceException {
252
+ name = "InvalidDeviceException";
253
+ $fault = "client";
254
+ Message;
255
+ constructor(opts) {
256
+ super({
257
+ name: "InvalidDeviceException",
258
+ $fault: "client",
259
+ ...opts,
260
+ });
261
+ Object.setPrototypeOf(this, InvalidDeviceException.prototype);
262
+ this.Message = opts.Message;
263
+ }
264
+ }
265
+ class ResourceNotFoundException extends KinesisVideoServiceException {
266
+ name = "ResourceNotFoundException";
267
+ $fault = "client";
268
+ Message;
269
+ constructor(opts) {
270
+ super({
271
+ name: "ResourceNotFoundException",
272
+ $fault: "client",
273
+ ...opts,
274
+ });
275
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
276
+ this.Message = opts.Message;
277
+ }
278
+ }
279
+ class StreamEdgeConfigurationNotFoundException extends KinesisVideoServiceException {
280
+ name = "StreamEdgeConfigurationNotFoundException";
281
+ $fault = "client";
282
+ Message;
283
+ constructor(opts) {
284
+ super({
285
+ name: "StreamEdgeConfigurationNotFoundException",
286
+ $fault: "client",
287
+ ...opts,
288
+ });
289
+ Object.setPrototypeOf(this, StreamEdgeConfigurationNotFoundException.prototype);
290
+ this.Message = opts.Message;
291
+ }
292
+ }
293
+ class VersionMismatchException extends KinesisVideoServiceException {
294
+ name = "VersionMismatchException";
295
+ $fault = "client";
296
+ Message;
297
+ constructor(opts) {
298
+ super({
299
+ name: "VersionMismatchException",
300
+ $fault: "client",
301
+ ...opts,
302
+ });
303
+ Object.setPrototypeOf(this, VersionMismatchException.prototype);
304
+ this.Message = opts.Message;
305
+ }
306
+ }
307
+ class NotAuthorizedException extends KinesisVideoServiceException {
308
+ name = "NotAuthorizedException";
309
+ $fault = "client";
310
+ Message;
311
+ constructor(opts) {
312
+ super({
313
+ name: "NotAuthorizedException",
314
+ $fault: "client",
315
+ ...opts,
316
+ });
317
+ Object.setPrototypeOf(this, NotAuthorizedException.prototype);
318
+ this.Message = opts.Message;
319
+ }
320
+ }
321
+ class InvalidResourceFormatException extends KinesisVideoServiceException {
322
+ name = "InvalidResourceFormatException";
323
+ $fault = "client";
324
+ Message;
325
+ constructor(opts) {
326
+ super({
327
+ name: "InvalidResourceFormatException",
328
+ $fault: "client",
329
+ ...opts,
330
+ });
331
+ Object.setPrototypeOf(this, InvalidResourceFormatException.prototype);
332
+ this.Message = opts.Message;
333
+ }
334
+ }
335
+ class NoDataRetentionException extends KinesisVideoServiceException {
336
+ name = "NoDataRetentionException";
337
+ $fault = "client";
338
+ Message;
339
+ constructor(opts) {
340
+ super({
341
+ name: "NoDataRetentionException",
342
+ $fault: "client",
343
+ ...opts,
344
+ });
345
+ Object.setPrototypeOf(this, NoDataRetentionException.prototype);
346
+ this.Message = opts.Message;
347
+ }
348
+ }
349
+
350
+ const _ACLEE = "AccountChannelLimitExceededException";
351
+ const _ADE = "AccessDeniedException";
352
+ const _APIN = "APIName";
353
+ const _ARN = "ARN";
354
+ const _ASLEE = "AccountStreamLimitExceededException";
355
+ const _CARN = "ChannelARN";
356
+ const _CI = "ChannelInfo";
357
+ const _CIL = "ChannelInfoList";
358
+ const _CLEE = "ClientLimitExceededException";
359
+ const _CN = "ChannelName";
360
+ const _CNC = "ChannelNameCondition";
361
+ const _CO = "ComparisonOperator";
362
+ const _CS = "ChannelStatus";
363
+ const _CSC = "CreateSignalingChannel";
364
+ const _CSCI = "CreateSignalingChannelInput";
365
+ const _CSCO = "CreateSignalingChannelOutput";
366
+ const _CSI = "CreateStreamInput";
367
+ const _CSO = "CreateStreamOutput";
368
+ const _CSr = "CreateStream";
369
+ const _CT = "ChannelType";
370
+ const _CTr = "CreationTime";
371
+ const _CV = "ComparisonValue";
372
+ const _CVu = "CurrentVersion";
373
+ const _DAU = "DeleteAfterUpload";
374
+ const _DC = "DeletionConfig";
375
+ const _DCe = "DestinationConfig";
376
+ const _DE = "DataEndpoint";
377
+ const _DEC = "DeleteEdgeConfiguration";
378
+ const _DECI = "DeleteEdgeConfigurationInput";
379
+ const _DECIe = "DescribeEdgeConfigurationInput";
380
+ const _DECO = "DeleteEdgeConfigurationOutput";
381
+ const _DECOe = "DescribeEdgeConfigurationOutput";
382
+ const _DECe = "DescribeEdgeConfiguration";
383
+ const _DIGC = "DescribeImageGenerationConfiguration";
384
+ const _DIGCI = "DescribeImageGenerationConfigurationInput";
385
+ const _DIGCO = "DescribeImageGenerationConfigurationOutput";
386
+ const _DIS = "DurationInSeconds";
387
+ const _DMRC = "DescribeMappedResourceConfiguration";
388
+ const _DMRCI = "DescribeMappedResourceConfigurationInput";
389
+ const _DMRCO = "DescribeMappedResourceConfigurationOutput";
390
+ const _DMSC = "DescribeMediaStorageConfiguration";
391
+ const _DMSCI = "DescribeMediaStorageConfigurationInput";
392
+ const _DMSCO = "DescribeMediaStorageConfigurationOutput";
393
+ const _DN = "DeviceName";
394
+ const _DNC = "DescribeNotificationConfiguration";
395
+ const _DNCI = "DescribeNotificationConfigurationInput";
396
+ const _DNCO = "DescribeNotificationConfigurationOutput";
397
+ const _DR = "DestinationRegion";
398
+ const _DRCIH = "DataRetentionChangeInHours";
399
+ const _DRIH = "DataRetentionInHours";
400
+ const _DS = "DeleteStream";
401
+ const _DSC = "DeleteSignalingChannel";
402
+ const _DSCI = "DeleteSignalingChannelInput";
403
+ const _DSCIe = "DescribeSignalingChannelInput";
404
+ const _DSCO = "DeleteSignalingChannelOutput";
405
+ const _DSCOe = "DescribeSignalingChannelOutput";
406
+ const _DSCe = "DescribeSignalingChannel";
407
+ const _DSI = "DeleteStreamInput";
408
+ const _DSIe = "DescribeStreamInput";
409
+ const _DSLEE = "DeviceStreamLimitExceededException";
410
+ const _DSO = "DeleteStreamOutput";
411
+ const _DSOe = "DescribeStreamOutput";
412
+ const _DSSC = "DescribeStreamStorageConfiguration";
413
+ const _DSSCI = "DescribeStreamStorageConfigurationInput";
414
+ const _DSSCO = "DescribeStreamStorageConfigurationOutput";
415
+ const _DST = "DefaultStorageTier";
416
+ const _DSe = "DescribeStream";
417
+ const _EAS = "EdgeAgentStatus";
418
+ const _EC = "EdgeConfig";
419
+ const _ECd = "EdgeConfigs";
420
+ const _ERIH = "EdgeRetentionInHours";
421
+ const _F = "Format";
422
+ const _FC = "FormatConfig";
423
+ const _FSD = "FailedStatusDetails";
424
+ const _GDE = "GetDataEndpoint";
425
+ const _GDEI = "GetDataEndpointInput";
426
+ const _GDEO = "GetDataEndpointOutput";
427
+ const _GSCE = "GetSignalingChannelEndpoint";
428
+ const _GSCEI = "GetSignalingChannelEndpointInput";
429
+ const _GSCEO = "GetSignalingChannelEndpointOutput";
430
+ const _HDA = "HubDeviceArn";
431
+ const _HP = "HeightPixels";
432
+ const _IAE = "InvalidArgumentException";
433
+ const _IDE = "InvalidDeviceException";
434
+ const _IGC = "ImageGenerationConfiguration";
435
+ const _IGDC = "ImageGenerationDestinationConfig";
436
+ const _IRFE = "InvalidResourceFormatException";
437
+ const _IST = "ImageSelectorType";
438
+ const _JSD = "JobStatusDetails";
439
+ const _K = "Key";
440
+ const _KKI = "KmsKeyId";
441
+ const _LCT = "LastCollectedTime";
442
+ const _LEAC = "ListEdgeAgentConfigurations";
443
+ const _LEACEC = "ListEdgeAgentConfigurationsEdgeConfig";
444
+ const _LEACECL = "ListEdgeAgentConfigurationsEdgeConfigList";
445
+ const _LEACI = "ListEdgeAgentConfigurationsInput";
446
+ const _LEACO = "ListEdgeAgentConfigurationsOutput";
447
+ const _LRS = "LastRecorderStatus";
448
+ const _LS = "ListStreams";
449
+ const _LSC = "LocalSizeConfig";
450
+ const _LSCI = "ListSignalingChannelsInput";
451
+ const _LSCO = "ListSignalingChannelsOutput";
452
+ const _LSCi = "ListSignalingChannels";
453
+ const _LSI = "ListStreamsInput";
454
+ const _LSO = "ListStreamsOutput";
455
+ const _LTFR = "ListTagsForResource";
456
+ const _LTFRI = "ListTagsForResourceInput";
457
+ const _LTFRO = "ListTagsForResourceOutput";
458
+ const _LTFS = "ListTagsForStream";
459
+ const _LTFSI = "ListTagsForStreamInput";
460
+ const _LTFSO = "ListTagsForStreamOutput";
461
+ const _LUS = "LastUploaderStatus";
462
+ const _LUT = "LastUpdatedTime";
463
+ const _M = "Message";
464
+ const _MLMSIMB = "MaxLocalMediaSizeInMB";
465
+ const _MR = "MaxResults";
466
+ const _MRCL = "MappedResourceConfigurationList";
467
+ const _MRCLI = "MappedResourceConfigurationListItem";
468
+ const _MSC = "MediaStorageConfiguration";
469
+ const _MSCe = "MediaSourceConfig";
470
+ const _MT = "MediaType";
471
+ const _MTS = "MessageTtlSeconds";
472
+ const _MUSA = "MediaUriSecretArn";
473
+ const _MUT = "MediaUriType";
474
+ const _NAE = "NotAuthorizedException";
475
+ const _NC = "NotificationConfiguration";
476
+ const _NDC = "NotificationDestinationConfig";
477
+ const _NDRE = "NoDataRetentionException";
478
+ const _NT = "NextToken";
479
+ const _O = "Operation";
480
+ const _P = "Protocol";
481
+ const _Pr = "Protocols";
482
+ const _R = "Role";
483
+ const _RARN = "ResourceARN";
484
+ const _RC = "RecorderConfig";
485
+ const _RE = "ResourceEndpoint";
486
+ const _REL = "ResourceEndpointList";
487
+ const _RELI = "ResourceEndpointListItem";
488
+ const _RIUE = "ResourceInUseException";
489
+ const _RNFE = "ResourceNotFoundException";
490
+ const _RS = "RecorderStatus";
491
+ const _S = "Status";
492
+ const _SARN = "StreamARN";
493
+ const _SC = "ScheduleConfig";
494
+ const _SE = "ScheduleExpression";
495
+ const _SECNFE = "StreamEdgeConfigurationNotFoundException";
496
+ const _SECU = "StartEdgeConfigurationUpdate";
497
+ const _SECUI = "StartEdgeConfigurationUpdateInput";
498
+ const _SECUO = "StartEdgeConfigurationUpdateOutput";
499
+ const _SI = "StreamInfo";
500
+ const _SIL = "StreamInfoList";
501
+ const _SIa = "SamplingInterval";
502
+ const _SMC = "SingleMasterConfiguration";
503
+ const _SMCEC = "SingleMasterChannelEndpointConfiguration";
504
+ const _SN = "StreamName";
505
+ const _SNC = "StreamNameCondition";
506
+ const _SOFS = "StrategyOnFullSize";
507
+ const _SS = "SyncStatus";
508
+ const _SSC = "StreamStorageConfiguration";
509
+ const _T = "Tags";
510
+ const _TKL = "TagKeyList";
511
+ const _TL = "TagList";
512
+ const _TOCL = "TagOnCreateList";
513
+ const _TPRELE = "TagsPerResourceExceededLimitException";
514
+ const _TR = "TagResource";
515
+ const _TRI = "TagResourceInput";
516
+ const _TRO = "TagResourceOutput";
517
+ const _TS = "TagStream";
518
+ const _TSI = "TagStreamInput";
519
+ const _TSO = "TagStreamOutput";
520
+ const _Ta = "Tag";
521
+ const _Ty = "Type";
522
+ const _U = "Uri";
523
+ const _UC = "UploaderConfig";
524
+ const _UDR = "UpdateDataRetention";
525
+ const _UDRI = "UpdateDataRetentionInput";
526
+ const _UDRO = "UpdateDataRetentionOutput";
527
+ const _UIGC = "UpdateImageGenerationConfiguration";
528
+ const _UIGCI = "UpdateImageGenerationConfigurationInput";
529
+ const _UIGCO = "UpdateImageGenerationConfigurationOutput";
530
+ const _UMSC = "UpdateMediaStorageConfiguration";
531
+ const _UMSCI = "UpdateMediaStorageConfigurationInput";
532
+ const _UMSCO = "UpdateMediaStorageConfigurationOutput";
533
+ const _UNC = "UpdateNotificationConfiguration";
534
+ const _UNCI = "UpdateNotificationConfigurationInput";
535
+ const _UNCO = "UpdateNotificationConfigurationOutput";
536
+ const _UR = "UntagResource";
537
+ const _URI = "UntagResourceInput";
538
+ const _URO = "UntagResourceOutput";
539
+ const _US = "UploaderStatus";
540
+ const _USC = "UpdateSignalingChannel";
541
+ const _USCI = "UpdateSignalingChannelInput";
542
+ const _USCO = "UpdateSignalingChannelOutput";
543
+ const _USI = "UntagStreamInput";
544
+ const _USIp = "UpdateStreamInput";
545
+ const _USO = "UntagStreamOutput";
546
+ const _USOp = "UpdateStreamOutput";
547
+ const _USSC = "UpdateStreamStorageConfiguration";
548
+ const _USSCI = "UpdateStreamStorageConfigurationInput";
549
+ const _USSCO = "UpdateStreamStorageConfigurationOutput";
550
+ const _USn = "UntagStream";
551
+ const _USp = "UpdateStream";
552
+ const _V = "Version";
553
+ const _VME = "VersionMismatchException";
554
+ const _Va = "Value";
555
+ const _WP = "WidthPixels";
556
+ const _c = "client";
557
+ const _e = "error";
558
+ const _h = "http";
559
+ const _hE = "httpError";
560
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisvideo";
561
+ const n0 = "com.amazonaws.kinesisvideo";
562
+ const _s_registry = TypeRegistry.for(_s);
563
+ var KinesisVideoServiceException$ = [-3, _s, "KinesisVideoServiceException", 0, [], []];
564
+ _s_registry.registerError(KinesisVideoServiceException$, KinesisVideoServiceException);
565
+ const n0_registry = TypeRegistry.for(n0);
566
+ var AccessDeniedException$ = [-3, n0, _ADE,
567
+ { [_e]: _c, [_hE]: 401 },
568
+ [_M],
569
+ [0]
570
+ ];
571
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
572
+ var AccountChannelLimitExceededException$ = [-3, n0, _ACLEE,
573
+ { [_e]: _c, [_hE]: 400 },
574
+ [_M],
575
+ [0]
576
+ ];
577
+ n0_registry.registerError(AccountChannelLimitExceededException$, AccountChannelLimitExceededException);
578
+ var AccountStreamLimitExceededException$ = [-3, n0, _ASLEE,
579
+ { [_e]: _c, [_hE]: 400 },
580
+ [_M],
581
+ [0]
582
+ ];
583
+ n0_registry.registerError(AccountStreamLimitExceededException$, AccountStreamLimitExceededException);
584
+ var ClientLimitExceededException$ = [-3, n0, _CLEE,
585
+ { [_e]: _c, [_hE]: 400 },
586
+ [_M],
587
+ [0]
588
+ ];
589
+ n0_registry.registerError(ClientLimitExceededException$, ClientLimitExceededException);
590
+ var DeviceStreamLimitExceededException$ = [-3, n0, _DSLEE,
591
+ { [_e]: _c, [_hE]: 400 },
592
+ [_M],
593
+ [0]
594
+ ];
595
+ n0_registry.registerError(DeviceStreamLimitExceededException$, DeviceStreamLimitExceededException);
596
+ var InvalidArgumentException$ = [-3, n0, _IAE,
597
+ { [_e]: _c, [_hE]: 400 },
598
+ [_M],
599
+ [0]
600
+ ];
601
+ n0_registry.registerError(InvalidArgumentException$, InvalidArgumentException);
602
+ var InvalidDeviceException$ = [-3, n0, _IDE,
603
+ { [_e]: _c, [_hE]: 400 },
604
+ [_M],
605
+ [0]
606
+ ];
607
+ n0_registry.registerError(InvalidDeviceException$, InvalidDeviceException);
608
+ var InvalidResourceFormatException$ = [-3, n0, _IRFE,
609
+ { [_e]: _c, [_hE]: 400 },
610
+ [_M],
611
+ [0]
612
+ ];
613
+ n0_registry.registerError(InvalidResourceFormatException$, InvalidResourceFormatException);
614
+ var NoDataRetentionException$ = [-3, n0, _NDRE,
615
+ { [_e]: _c, [_hE]: 400 },
616
+ [_M],
617
+ [0]
618
+ ];
619
+ n0_registry.registerError(NoDataRetentionException$, NoDataRetentionException);
620
+ var NotAuthorizedException$ = [-3, n0, _NAE,
621
+ { [_e]: _c, [_hE]: 401 },
622
+ [_M],
623
+ [0]
624
+ ];
625
+ n0_registry.registerError(NotAuthorizedException$, NotAuthorizedException);
626
+ var ResourceInUseException$ = [-3, n0, _RIUE,
627
+ { [_e]: _c, [_hE]: 400 },
628
+ [_M],
629
+ [0]
630
+ ];
631
+ n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
632
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
633
+ { [_e]: _c, [_hE]: 404 },
634
+ [_M],
635
+ [0]
636
+ ];
637
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
638
+ var StreamEdgeConfigurationNotFoundException$ = [-3, n0, _SECNFE,
639
+ { [_e]: _c, [_hE]: 404 },
640
+ [_M],
641
+ [0]
642
+ ];
643
+ n0_registry.registerError(StreamEdgeConfigurationNotFoundException$, StreamEdgeConfigurationNotFoundException);
644
+ var TagsPerResourceExceededLimitException$ = [-3, n0, _TPRELE,
645
+ { [_e]: _c, [_hE]: 400 },
646
+ [_M],
647
+ [0]
648
+ ];
649
+ n0_registry.registerError(TagsPerResourceExceededLimitException$, TagsPerResourceExceededLimitException);
650
+ var VersionMismatchException$ = [-3, n0, _VME,
651
+ { [_e]: _c, [_hE]: 400 },
652
+ [_M],
653
+ [0]
654
+ ];
655
+ n0_registry.registerError(VersionMismatchException$, VersionMismatchException);
656
+ const errorTypeRegistries = [
657
+ _s_registry,
658
+ n0_registry,
659
+ ];
660
+ var MediaUriSecretArn = [0, n0, _MUSA, 8, 0];
661
+ var ChannelInfo$ = [3, n0, _CI,
662
+ 0,
663
+ [_CN, _CARN, _CT, _CS, _CTr, _SMC, _V],
664
+ [0, 0, 0, 0, 4, () => SingleMasterConfiguration$, 0]
665
+ ];
666
+ var ChannelNameCondition$ = [3, n0, _CNC,
667
+ 0,
668
+ [_CO, _CV],
669
+ [0, 0]
670
+ ];
671
+ var CreateSignalingChannelInput$ = [3, n0, _CSCI,
672
+ 0,
673
+ [_CN, _CT, _SMC, _T],
674
+ [0, 0, () => SingleMasterConfiguration$, () => TagOnCreateList], 1
675
+ ];
676
+ var CreateSignalingChannelOutput$ = [3, n0, _CSCO,
677
+ 0,
678
+ [_CARN],
679
+ [0]
680
+ ];
681
+ var CreateStreamInput$ = [3, n0, _CSI,
682
+ 0,
683
+ [_SN, _DN, _MT, _KKI, _DRIH, _T, _SSC],
684
+ [0, 0, 0, 0, 1, 128 | 0, () => StreamStorageConfiguration$], 1
685
+ ];
686
+ var CreateStreamOutput$ = [3, n0, _CSO,
687
+ 0,
688
+ [_SARN],
689
+ [0]
690
+ ];
691
+ var DeleteEdgeConfigurationInput$ = [3, n0, _DECI,
692
+ 0,
693
+ [_SN, _SARN],
694
+ [0, 0]
695
+ ];
696
+ var DeleteEdgeConfigurationOutput$ = [3, n0, _DECO,
697
+ 0,
698
+ [],
699
+ []
700
+ ];
701
+ var DeleteSignalingChannelInput$ = [3, n0, _DSCI,
702
+ 0,
703
+ [_CARN, _CVu],
704
+ [0, 0], 1
705
+ ];
706
+ var DeleteSignalingChannelOutput$ = [3, n0, _DSCO,
707
+ 0,
708
+ [],
709
+ []
710
+ ];
711
+ var DeleteStreamInput$ = [3, n0, _DSI,
712
+ 0,
713
+ [_SARN, _CVu],
714
+ [0, 0], 1
715
+ ];
716
+ var DeleteStreamOutput$ = [3, n0, _DSO,
717
+ 0,
718
+ [],
719
+ []
720
+ ];
721
+ var DeletionConfig$ = [3, n0, _DC,
722
+ 0,
723
+ [_ERIH, _LSC, _DAU],
724
+ [1, () => LocalSizeConfig$, 2]
725
+ ];
726
+ var DescribeEdgeConfigurationInput$ = [3, n0, _DECIe,
727
+ 0,
728
+ [_SN, _SARN],
729
+ [0, 0]
730
+ ];
731
+ var DescribeEdgeConfigurationOutput$ = [3, n0, _DECOe,
732
+ 0,
733
+ [_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC, _EAS],
734
+ [0, 0, 4, 4, 0, 0, [() => EdgeConfig$, 0], () => EdgeAgentStatus$]
735
+ ];
736
+ var DescribeImageGenerationConfigurationInput$ = [3, n0, _DIGCI,
737
+ 0,
738
+ [_SN, _SARN],
739
+ [0, 0]
740
+ ];
741
+ var DescribeImageGenerationConfigurationOutput$ = [3, n0, _DIGCO,
742
+ 0,
743
+ [_IGC],
744
+ [() => ImageGenerationConfiguration$]
745
+ ];
746
+ var DescribeMappedResourceConfigurationInput$ = [3, n0, _DMRCI,
747
+ 0,
748
+ [_SN, _SARN, _MR, _NT],
749
+ [0, 0, 1, 0]
750
+ ];
751
+ var DescribeMappedResourceConfigurationOutput$ = [3, n0, _DMRCO,
752
+ 0,
753
+ [_MRCL, _NT],
754
+ [() => MappedResourceConfigurationList, 0]
755
+ ];
756
+ var DescribeMediaStorageConfigurationInput$ = [3, n0, _DMSCI,
757
+ 0,
758
+ [_CN, _CARN],
759
+ [0, 0]
760
+ ];
761
+ var DescribeMediaStorageConfigurationOutput$ = [3, n0, _DMSCO,
762
+ 0,
763
+ [_MSC],
764
+ [() => MediaStorageConfiguration$]
765
+ ];
766
+ var DescribeNotificationConfigurationInput$ = [3, n0, _DNCI,
767
+ 0,
768
+ [_SN, _SARN],
769
+ [0, 0]
770
+ ];
771
+ var DescribeNotificationConfigurationOutput$ = [3, n0, _DNCO,
772
+ 0,
773
+ [_NC],
774
+ [() => NotificationConfiguration$]
775
+ ];
776
+ var DescribeSignalingChannelInput$ = [3, n0, _DSCIe,
777
+ 0,
778
+ [_CN, _CARN],
779
+ [0, 0]
780
+ ];
781
+ var DescribeSignalingChannelOutput$ = [3, n0, _DSCOe,
782
+ 0,
783
+ [_CI],
784
+ [() => ChannelInfo$]
785
+ ];
786
+ var DescribeStreamInput$ = [3, n0, _DSIe,
787
+ 0,
788
+ [_SN, _SARN],
789
+ [0, 0]
790
+ ];
791
+ var DescribeStreamOutput$ = [3, n0, _DSOe,
792
+ 0,
793
+ [_SI],
794
+ [() => StreamInfo$]
795
+ ];
796
+ var DescribeStreamStorageConfigurationInput$ = [3, n0, _DSSCI,
797
+ 0,
798
+ [_SN, _SARN],
799
+ [0, 0]
800
+ ];
801
+ var DescribeStreamStorageConfigurationOutput$ = [3, n0, _DSSCO,
802
+ 0,
803
+ [_SN, _SARN, _SSC],
804
+ [0, 0, () => StreamStorageConfiguration$]
805
+ ];
806
+ var EdgeAgentStatus$ = [3, n0, _EAS,
807
+ 0,
808
+ [_LRS, _LUS],
809
+ [() => LastRecorderStatus$, () => LastUploaderStatus$]
810
+ ];
811
+ var EdgeConfig$ = [3, n0, _EC,
812
+ 0,
813
+ [_HDA, _RC, _UC, _DC],
814
+ [0, [() => RecorderConfig$, 0], () => UploaderConfig$, () => DeletionConfig$], 2
815
+ ];
816
+ var GetDataEndpointInput$ = [3, n0, _GDEI,
817
+ 0,
818
+ [_APIN, _SN, _SARN],
819
+ [0, 0, 0], 1
820
+ ];
821
+ var GetDataEndpointOutput$ = [3, n0, _GDEO,
822
+ 0,
823
+ [_DE],
824
+ [0]
825
+ ];
826
+ var GetSignalingChannelEndpointInput$ = [3, n0, _GSCEI,
827
+ 0,
828
+ [_CARN, _SMCEC],
829
+ [0, () => SingleMasterChannelEndpointConfiguration$], 1
830
+ ];
831
+ var GetSignalingChannelEndpointOutput$ = [3, n0, _GSCEO,
832
+ 0,
833
+ [_REL],
834
+ [() => ResourceEndpointList]
835
+ ];
836
+ var ImageGenerationConfiguration$ = [3, n0, _IGC,
837
+ 0,
838
+ [_S, _IST, _DCe, _SIa, _F, _FC, _WP, _HP],
839
+ [0, 0, () => ImageGenerationDestinationConfig$, 1, 0, 128 | 0, 1, 1], 5
840
+ ];
841
+ var ImageGenerationDestinationConfig$ = [3, n0, _IGDC,
842
+ 0,
843
+ [_U, _DR],
844
+ [0, 0], 2
845
+ ];
846
+ var LastRecorderStatus$ = [3, n0, _LRS,
847
+ 0,
848
+ [_JSD, _LCT, _LUT, _RS],
849
+ [0, 4, 4, 0]
850
+ ];
851
+ var LastUploaderStatus$ = [3, n0, _LUS,
852
+ 0,
853
+ [_JSD, _LCT, _LUT, _US],
854
+ [0, 4, 4, 0]
855
+ ];
856
+ var ListEdgeAgentConfigurationsEdgeConfig$ = [3, n0, _LEACEC,
857
+ 0,
858
+ [_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC],
859
+ [0, 0, 4, 4, 0, 0, [() => EdgeConfig$, 0]]
860
+ ];
861
+ var ListEdgeAgentConfigurationsInput$ = [3, n0, _LEACI,
862
+ 0,
863
+ [_HDA, _MR, _NT],
864
+ [0, 1, 0], 1
865
+ ];
866
+ var ListEdgeAgentConfigurationsOutput$ = [3, n0, _LEACO,
867
+ 0,
868
+ [_ECd, _NT],
869
+ [[() => ListEdgeAgentConfigurationsEdgeConfigList, 0], 0]
870
+ ];
871
+ var ListSignalingChannelsInput$ = [3, n0, _LSCI,
872
+ 0,
873
+ [_MR, _NT, _CNC],
874
+ [1, 0, () => ChannelNameCondition$]
875
+ ];
876
+ var ListSignalingChannelsOutput$ = [3, n0, _LSCO,
877
+ 0,
878
+ [_CIL, _NT],
879
+ [() => ChannelInfoList, 0]
880
+ ];
881
+ var ListStreamsInput$ = [3, n0, _LSI,
882
+ 0,
883
+ [_MR, _NT, _SNC],
884
+ [1, 0, () => StreamNameCondition$]
885
+ ];
886
+ var ListStreamsOutput$ = [3, n0, _LSO,
887
+ 0,
888
+ [_SIL, _NT],
889
+ [() => StreamInfoList, 0]
890
+ ];
891
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI,
892
+ 0,
893
+ [_RARN, _NT],
894
+ [0, 0], 1
895
+ ];
896
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
897
+ 0,
898
+ [_NT, _T],
899
+ [0, 128 | 0]
900
+ ];
901
+ var ListTagsForStreamInput$ = [3, n0, _LTFSI,
902
+ 0,
903
+ [_NT, _SARN, _SN],
904
+ [0, 0, 0]
905
+ ];
906
+ var ListTagsForStreamOutput$ = [3, n0, _LTFSO,
907
+ 0,
908
+ [_NT, _T],
909
+ [0, 128 | 0]
910
+ ];
911
+ var LocalSizeConfig$ = [3, n0, _LSC,
912
+ 0,
913
+ [_MLMSIMB, _SOFS],
914
+ [1, 0]
915
+ ];
916
+ var MappedResourceConfigurationListItem$ = [3, n0, _MRCLI,
917
+ 0,
918
+ [_Ty, _ARN],
919
+ [0, 0]
920
+ ];
921
+ var MediaSourceConfig$ = [3, n0, _MSCe,
922
+ 0,
923
+ [_MUSA, _MUT],
924
+ [[() => MediaUriSecretArn, 0], 0], 2
925
+ ];
926
+ var MediaStorageConfiguration$ = [3, n0, _MSC,
927
+ 0,
928
+ [_S, _SARN],
929
+ [0, 0], 1
930
+ ];
931
+ var NotificationConfiguration$ = [3, n0, _NC,
932
+ 0,
933
+ [_S, _DCe],
934
+ [0, () => NotificationDestinationConfig$], 2
935
+ ];
936
+ var NotificationDestinationConfig$ = [3, n0, _NDC,
937
+ 0,
938
+ [_U],
939
+ [0], 1
940
+ ];
941
+ var RecorderConfig$ = [3, n0, _RC,
942
+ 0,
943
+ [_MSCe, _SC],
944
+ [[() => MediaSourceConfig$, 0], () => ScheduleConfig$], 1
945
+ ];
946
+ var ResourceEndpointListItem$ = [3, n0, _RELI,
947
+ 0,
948
+ [_P, _RE],
949
+ [0, 0]
950
+ ];
951
+ var ScheduleConfig$ = [3, n0, _SC,
952
+ 0,
953
+ [_SE, _DIS],
954
+ [0, 1], 2
955
+ ];
956
+ var SingleMasterChannelEndpointConfiguration$ = [3, n0, _SMCEC,
957
+ 0,
958
+ [_Pr, _R],
959
+ [64 | 0, 0]
960
+ ];
961
+ var SingleMasterConfiguration$ = [3, n0, _SMC,
962
+ 0,
963
+ [_MTS],
964
+ [1]
965
+ ];
966
+ var StartEdgeConfigurationUpdateInput$ = [3, n0, _SECUI,
967
+ 0,
968
+ [_EC, _SN, _SARN],
969
+ [[() => EdgeConfig$, 0], 0, 0], 1
970
+ ];
971
+ var StartEdgeConfigurationUpdateOutput$ = [3, n0, _SECUO,
972
+ 0,
973
+ [_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC],
974
+ [0, 0, 4, 4, 0, 0, [() => EdgeConfig$, 0]]
975
+ ];
976
+ var StreamInfo$ = [3, n0, _SI,
977
+ 0,
978
+ [_DN, _SN, _SARN, _MT, _KKI, _V, _S, _CTr, _DRIH],
979
+ [0, 0, 0, 0, 0, 0, 0, 4, 1]
980
+ ];
981
+ var StreamNameCondition$ = [3, n0, _SNC,
982
+ 0,
983
+ [_CO, _CV],
984
+ [0, 0]
985
+ ];
986
+ var StreamStorageConfiguration$ = [3, n0, _SSC,
987
+ 0,
988
+ [_DST],
989
+ [0], 1
990
+ ];
991
+ var Tag$ = [3, n0, _Ta,
992
+ 0,
993
+ [_K, _Va],
994
+ [0, 0], 2
995
+ ];
996
+ var TagResourceInput$ = [3, n0, _TRI,
997
+ 0,
998
+ [_RARN, _T],
999
+ [0, () => TagList], 2
1000
+ ];
1001
+ var TagResourceOutput$ = [3, n0, _TRO,
1002
+ 0,
1003
+ [],
1004
+ []
1005
+ ];
1006
+ var TagStreamInput$ = [3, n0, _TSI,
1007
+ 0,
1008
+ [_T, _SARN, _SN],
1009
+ [128 | 0, 0, 0], 1
1010
+ ];
1011
+ var TagStreamOutput$ = [3, n0, _TSO,
1012
+ 0,
1013
+ [],
1014
+ []
1015
+ ];
1016
+ var UntagResourceInput$ = [3, n0, _URI,
1017
+ 0,
1018
+ [_RARN, _TKL],
1019
+ [0, 64 | 0], 2
1020
+ ];
1021
+ var UntagResourceOutput$ = [3, n0, _URO,
1022
+ 0,
1023
+ [],
1024
+ []
1025
+ ];
1026
+ var UntagStreamInput$ = [3, n0, _USI,
1027
+ 0,
1028
+ [_TKL, _SARN, _SN],
1029
+ [64 | 0, 0, 0], 1
1030
+ ];
1031
+ var UntagStreamOutput$ = [3, n0, _USO,
1032
+ 0,
1033
+ [],
1034
+ []
1035
+ ];
1036
+ var UpdateDataRetentionInput$ = [3, n0, _UDRI,
1037
+ 0,
1038
+ [_CVu, _O, _DRCIH, _SN, _SARN],
1039
+ [0, 0, 1, 0, 0], 3
1040
+ ];
1041
+ var UpdateDataRetentionOutput$ = [3, n0, _UDRO,
1042
+ 0,
1043
+ [],
1044
+ []
1045
+ ];
1046
+ var UpdateImageGenerationConfigurationInput$ = [3, n0, _UIGCI,
1047
+ 0,
1048
+ [_SN, _SARN, _IGC],
1049
+ [0, 0, () => ImageGenerationConfiguration$]
1050
+ ];
1051
+ var UpdateImageGenerationConfigurationOutput$ = [3, n0, _UIGCO,
1052
+ 0,
1053
+ [],
1054
+ []
1055
+ ];
1056
+ var UpdateMediaStorageConfigurationInput$ = [3, n0, _UMSCI,
1057
+ 0,
1058
+ [_CARN, _MSC],
1059
+ [0, () => MediaStorageConfiguration$], 2
1060
+ ];
1061
+ var UpdateMediaStorageConfigurationOutput$ = [3, n0, _UMSCO,
1062
+ 0,
1063
+ [],
1064
+ []
1065
+ ];
1066
+ var UpdateNotificationConfigurationInput$ = [3, n0, _UNCI,
1067
+ 0,
1068
+ [_SN, _SARN, _NC],
1069
+ [0, 0, () => NotificationConfiguration$]
1070
+ ];
1071
+ var UpdateNotificationConfigurationOutput$ = [3, n0, _UNCO,
1072
+ 0,
1073
+ [],
1074
+ []
1075
+ ];
1076
+ var UpdateSignalingChannelInput$ = [3, n0, _USCI,
1077
+ 0,
1078
+ [_CARN, _CVu, _SMC],
1079
+ [0, 0, () => SingleMasterConfiguration$], 2
1080
+ ];
1081
+ var UpdateSignalingChannelOutput$ = [3, n0, _USCO,
1082
+ 0,
1083
+ [],
1084
+ []
1085
+ ];
1086
+ var UpdateStreamInput$ = [3, n0, _USIp,
1087
+ 0,
1088
+ [_CVu, _SN, _SARN, _DN, _MT],
1089
+ [0, 0, 0, 0, 0], 1
1090
+ ];
1091
+ var UpdateStreamOutput$ = [3, n0, _USOp,
1092
+ 0,
1093
+ [],
1094
+ []
1095
+ ];
1096
+ var UpdateStreamStorageConfigurationInput$ = [3, n0, _USSCI,
1097
+ 0,
1098
+ [_CVu, _SSC, _SN, _SARN],
1099
+ [0, () => StreamStorageConfiguration$, 0, 0], 2
1100
+ ];
1101
+ var UpdateStreamStorageConfigurationOutput$ = [3, n0, _USSCO,
1102
+ 0,
1103
+ [],
1104
+ []
1105
+ ];
1106
+ var UploaderConfig$ = [3, n0, _UC,
1107
+ 0,
1108
+ [_SC],
1109
+ [() => ScheduleConfig$], 1
1110
+ ];
1111
+ var ChannelInfoList = [1, n0, _CIL,
1112
+ 0, () => ChannelInfo$
1113
+ ];
1114
+ var ListEdgeAgentConfigurationsEdgeConfigList = [1, n0, _LEACECL,
1115
+ 0, [() => ListEdgeAgentConfigurationsEdgeConfig$,
1116
+ 0]
1117
+ ];
1118
+ var MappedResourceConfigurationList = [1, n0, _MRCL,
1119
+ 0, () => MappedResourceConfigurationListItem$
1120
+ ];
1121
+ var ResourceEndpointList = [1, n0, _REL,
1122
+ 0, () => ResourceEndpointListItem$
1123
+ ];
1124
+ var StreamInfoList = [1, n0, _SIL,
1125
+ 0, () => StreamInfo$
1126
+ ];
1127
+ var TagList = [1, n0, _TL,
1128
+ 0, () => Tag$
1129
+ ];
1130
+ var TagOnCreateList = [1, n0, _TOCL,
1131
+ 0, () => Tag$
1132
+ ];
1133
+ var CreateSignalingChannel$ = [9, n0, _CSC,
1134
+ { [_h]: ["POST", "/createSignalingChannel", 200] }, () => CreateSignalingChannelInput$, () => CreateSignalingChannelOutput$
1135
+ ];
1136
+ var CreateStream$ = [9, n0, _CSr,
1137
+ { [_h]: ["POST", "/createStream", 200] }, () => CreateStreamInput$, () => CreateStreamOutput$
1138
+ ];
1139
+ var DeleteEdgeConfiguration$ = [9, n0, _DEC,
1140
+ { [_h]: ["POST", "/deleteEdgeConfiguration", 200] }, () => DeleteEdgeConfigurationInput$, () => DeleteEdgeConfigurationOutput$
1141
+ ];
1142
+ var DeleteSignalingChannel$ = [9, n0, _DSC,
1143
+ { [_h]: ["POST", "/deleteSignalingChannel", 200] }, () => DeleteSignalingChannelInput$, () => DeleteSignalingChannelOutput$
1144
+ ];
1145
+ var DeleteStream$ = [9, n0, _DS,
1146
+ { [_h]: ["POST", "/deleteStream", 200] }, () => DeleteStreamInput$, () => DeleteStreamOutput$
1147
+ ];
1148
+ var DescribeEdgeConfiguration$ = [9, n0, _DECe,
1149
+ { [_h]: ["POST", "/describeEdgeConfiguration", 200] }, () => DescribeEdgeConfigurationInput$, () => DescribeEdgeConfigurationOutput$
1150
+ ];
1151
+ var DescribeImageGenerationConfiguration$ = [9, n0, _DIGC,
1152
+ { [_h]: ["POST", "/describeImageGenerationConfiguration", 200] }, () => DescribeImageGenerationConfigurationInput$, () => DescribeImageGenerationConfigurationOutput$
1153
+ ];
1154
+ var DescribeMappedResourceConfiguration$ = [9, n0, _DMRC,
1155
+ { [_h]: ["POST", "/describeMappedResourceConfiguration", 200] }, () => DescribeMappedResourceConfigurationInput$, () => DescribeMappedResourceConfigurationOutput$
1156
+ ];
1157
+ var DescribeMediaStorageConfiguration$ = [9, n0, _DMSC,
1158
+ { [_h]: ["POST", "/describeMediaStorageConfiguration", 200] }, () => DescribeMediaStorageConfigurationInput$, () => DescribeMediaStorageConfigurationOutput$
1159
+ ];
1160
+ var DescribeNotificationConfiguration$ = [9, n0, _DNC,
1161
+ { [_h]: ["POST", "/describeNotificationConfiguration", 200] }, () => DescribeNotificationConfigurationInput$, () => DescribeNotificationConfigurationOutput$
1162
+ ];
1163
+ var DescribeSignalingChannel$ = [9, n0, _DSCe,
1164
+ { [_h]: ["POST", "/describeSignalingChannel", 200] }, () => DescribeSignalingChannelInput$, () => DescribeSignalingChannelOutput$
1165
+ ];
1166
+ var DescribeStream$ = [9, n0, _DSe,
1167
+ { [_h]: ["POST", "/describeStream", 200] }, () => DescribeStreamInput$, () => DescribeStreamOutput$
1168
+ ];
1169
+ var DescribeStreamStorageConfiguration$ = [9, n0, _DSSC,
1170
+ { [_h]: ["POST", "/describeStreamStorageConfiguration", 200] }, () => DescribeStreamStorageConfigurationInput$, () => DescribeStreamStorageConfigurationOutput$
1171
+ ];
1172
+ var GetDataEndpoint$ = [9, n0, _GDE,
1173
+ { [_h]: ["POST", "/getDataEndpoint", 200] }, () => GetDataEndpointInput$, () => GetDataEndpointOutput$
1174
+ ];
1175
+ var GetSignalingChannelEndpoint$ = [9, n0, _GSCE,
1176
+ { [_h]: ["POST", "/getSignalingChannelEndpoint", 200] }, () => GetSignalingChannelEndpointInput$, () => GetSignalingChannelEndpointOutput$
1177
+ ];
1178
+ var ListEdgeAgentConfigurations$ = [9, n0, _LEAC,
1179
+ { [_h]: ["POST", "/listEdgeAgentConfigurations", 200] }, () => ListEdgeAgentConfigurationsInput$, () => ListEdgeAgentConfigurationsOutput$
1180
+ ];
1181
+ var ListSignalingChannels$ = [9, n0, _LSCi,
1182
+ { [_h]: ["POST", "/listSignalingChannels", 200] }, () => ListSignalingChannelsInput$, () => ListSignalingChannelsOutput$
1183
+ ];
1184
+ var ListStreams$ = [9, n0, _LS,
1185
+ { [_h]: ["POST", "/listStreams", 200] }, () => ListStreamsInput$, () => ListStreamsOutput$
1186
+ ];
1187
+ var ListTagsForResource$ = [9, n0, _LTFR,
1188
+ { [_h]: ["POST", "/ListTagsForResource", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
1189
+ ];
1190
+ var ListTagsForStream$ = [9, n0, _LTFS,
1191
+ { [_h]: ["POST", "/listTagsForStream", 200] }, () => ListTagsForStreamInput$, () => ListTagsForStreamOutput$
1192
+ ];
1193
+ var StartEdgeConfigurationUpdate$ = [9, n0, _SECU,
1194
+ { [_h]: ["POST", "/startEdgeConfigurationUpdate", 200] }, () => StartEdgeConfigurationUpdateInput$, () => StartEdgeConfigurationUpdateOutput$
1195
+ ];
1196
+ var TagResource$ = [9, n0, _TR,
1197
+ { [_h]: ["POST", "/TagResource", 200] }, () => TagResourceInput$, () => TagResourceOutput$
1198
+ ];
1199
+ var TagStream$ = [9, n0, _TS,
1200
+ { [_h]: ["POST", "/tagStream", 200] }, () => TagStreamInput$, () => TagStreamOutput$
1201
+ ];
1202
+ var UntagResource$ = [9, n0, _UR,
1203
+ { [_h]: ["POST", "/UntagResource", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
1204
+ ];
1205
+ var UntagStream$ = [9, n0, _USn,
1206
+ { [_h]: ["POST", "/untagStream", 200] }, () => UntagStreamInput$, () => UntagStreamOutput$
1207
+ ];
1208
+ var UpdateDataRetention$ = [9, n0, _UDR,
1209
+ { [_h]: ["POST", "/updateDataRetention", 200] }, () => UpdateDataRetentionInput$, () => UpdateDataRetentionOutput$
1210
+ ];
1211
+ var UpdateImageGenerationConfiguration$ = [9, n0, _UIGC,
1212
+ { [_h]: ["POST", "/updateImageGenerationConfiguration", 200] }, () => UpdateImageGenerationConfigurationInput$, () => UpdateImageGenerationConfigurationOutput$
1213
+ ];
1214
+ var UpdateMediaStorageConfiguration$ = [9, n0, _UMSC,
1215
+ { [_h]: ["POST", "/updateMediaStorageConfiguration", 200] }, () => UpdateMediaStorageConfigurationInput$, () => UpdateMediaStorageConfigurationOutput$
1216
+ ];
1217
+ var UpdateNotificationConfiguration$ = [9, n0, _UNC,
1218
+ { [_h]: ["POST", "/updateNotificationConfiguration", 200] }, () => UpdateNotificationConfigurationInput$, () => UpdateNotificationConfigurationOutput$
1219
+ ];
1220
+ var UpdateSignalingChannel$ = [9, n0, _USC,
1221
+ { [_h]: ["POST", "/updateSignalingChannel", 200] }, () => UpdateSignalingChannelInput$, () => UpdateSignalingChannelOutput$
1222
+ ];
1223
+ var UpdateStream$ = [9, n0, _USp,
1224
+ { [_h]: ["POST", "/updateStream", 200] }, () => UpdateStreamInput$, () => UpdateStreamOutput$
1225
+ ];
1226
+ var UpdateStreamStorageConfiguration$ = [9, n0, _USSC,
1227
+ { [_h]: ["POST", "/updateStreamStorageConfiguration", 200] }, () => UpdateStreamStorageConfigurationInput$, () => UpdateStreamStorageConfigurationOutput$
1228
+ ];
1229
+
1230
+ const getRuntimeConfig$1 = (config) => {
1231
+ return {
1232
+ apiVersion: "2017-09-30",
1233
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1234
+ base64Encoder: config?.base64Encoder ?? toBase64,
1235
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1236
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1237
+ extensions: config?.extensions ?? [],
1238
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultKinesisVideoHttpAuthSchemeProvider,
1239
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1240
+ {
1241
+ schemeId: "aws.auth#sigv4",
1242
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1243
+ signer: new AwsSdkSigV4Signer(),
1244
+ },
1245
+ ],
1246
+ logger: config?.logger ?? new NoOpLogger(),
1247
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1248
+ protocolSettings: config?.protocolSettings ?? {
1249
+ defaultNamespace: "com.amazonaws.kinesisvideo",
1250
+ errorTypeRegistries,
1251
+ xmlNamespace: "https://kinesisvideo.amazonaws.com/doc/2017-09-30/",
1252
+ version: "2017-09-30",
1253
+ serviceTarget: "KinesisVideo_20170930",
1254
+ },
1255
+ serviceId: config?.serviceId ?? "Kinesis Video",
1256
+ urlParser: config?.urlParser ?? parseUrl,
1257
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1258
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1259
+ };
1260
+ };
1261
+
1262
+ const getRuntimeConfig = (config) => {
1263
+ emitWarningIfUnsupportedVersion(process.version);
1264
+ const defaultsMode = resolveDefaultsModeConfig(config);
1265
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1266
+ const clientSharedValues = getRuntimeConfig$1(config);
1267
+ emitWarningIfUnsupportedVersion$1(process.version);
1268
+ const loaderConfig = {
1269
+ profile: config?.profile,
1270
+ logger: clientSharedValues.logger,
1271
+ };
1272
+ return {
1273
+ ...clientSharedValues,
1274
+ ...config,
1275
+ runtime: "node",
1276
+ defaultsMode,
1277
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1278
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1279
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1280
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1281
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1282
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1283
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1284
+ retryMode: config?.retryMode ??
1285
+ loadConfig({
1286
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1287
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1288
+ }, config),
1289
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1290
+ streamCollector: config?.streamCollector ?? streamCollector,
1291
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1292
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1293
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1294
+ };
1295
+ };
1296
+
34
1297
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1298
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1299
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -635,57 +1898,212 @@ const UpdateDataRetentionOperation = {
635
1898
  };
636
1899
 
637
1900
  exports.APIName = APIName;
1901
+ exports.AccessDeniedException = AccessDeniedException;
1902
+ exports.AccessDeniedException$ = AccessDeniedException$;
1903
+ exports.AccountChannelLimitExceededException = AccountChannelLimitExceededException;
1904
+ exports.AccountChannelLimitExceededException$ = AccountChannelLimitExceededException$;
1905
+ exports.AccountStreamLimitExceededException = AccountStreamLimitExceededException;
1906
+ exports.AccountStreamLimitExceededException$ = AccountStreamLimitExceededException$;
1907
+ exports.ChannelInfo$ = ChannelInfo$;
1908
+ exports.ChannelNameCondition$ = ChannelNameCondition$;
638
1909
  exports.ChannelProtocol = ChannelProtocol;
639
1910
  exports.ChannelRole = ChannelRole;
640
1911
  exports.ChannelType = ChannelType;
1912
+ exports.ClientLimitExceededException = ClientLimitExceededException;
1913
+ exports.ClientLimitExceededException$ = ClientLimitExceededException$;
641
1914
  exports.ComparisonOperator = ComparisonOperator;
642
1915
  exports.ConfigurationStatus = ConfigurationStatus;
1916
+ exports.CreateSignalingChannel$ = CreateSignalingChannel$;
643
1917
  exports.CreateSignalingChannelCommand = CreateSignalingChannelCommand;
1918
+ exports.CreateSignalingChannelInput$ = CreateSignalingChannelInput$;
1919
+ exports.CreateSignalingChannelOutput$ = CreateSignalingChannelOutput$;
1920
+ exports.CreateStream$ = CreateStream$;
644
1921
  exports.CreateStreamCommand = CreateStreamCommand;
1922
+ exports.CreateStreamInput$ = CreateStreamInput$;
1923
+ exports.CreateStreamOutput$ = CreateStreamOutput$;
645
1924
  exports.DefaultStorageTier = DefaultStorageTier;
1925
+ exports.DeleteEdgeConfiguration$ = DeleteEdgeConfiguration$;
646
1926
  exports.DeleteEdgeConfigurationCommand = DeleteEdgeConfigurationCommand;
1927
+ exports.DeleteEdgeConfigurationInput$ = DeleteEdgeConfigurationInput$;
1928
+ exports.DeleteEdgeConfigurationOutput$ = DeleteEdgeConfigurationOutput$;
1929
+ exports.DeleteSignalingChannel$ = DeleteSignalingChannel$;
647
1930
  exports.DeleteSignalingChannelCommand = DeleteSignalingChannelCommand;
1931
+ exports.DeleteSignalingChannelInput$ = DeleteSignalingChannelInput$;
1932
+ exports.DeleteSignalingChannelOutput$ = DeleteSignalingChannelOutput$;
1933
+ exports.DeleteStream$ = DeleteStream$;
648
1934
  exports.DeleteStreamCommand = DeleteStreamCommand;
1935
+ exports.DeleteStreamInput$ = DeleteStreamInput$;
1936
+ exports.DeleteStreamOutput$ = DeleteStreamOutput$;
1937
+ exports.DeletionConfig$ = DeletionConfig$;
1938
+ exports.DescribeEdgeConfiguration$ = DescribeEdgeConfiguration$;
649
1939
  exports.DescribeEdgeConfigurationCommand = DescribeEdgeConfigurationCommand;
1940
+ exports.DescribeEdgeConfigurationInput$ = DescribeEdgeConfigurationInput$;
1941
+ exports.DescribeEdgeConfigurationOutput$ = DescribeEdgeConfigurationOutput$;
1942
+ exports.DescribeImageGenerationConfiguration$ = DescribeImageGenerationConfiguration$;
650
1943
  exports.DescribeImageGenerationConfigurationCommand = DescribeImageGenerationConfigurationCommand;
1944
+ exports.DescribeImageGenerationConfigurationInput$ = DescribeImageGenerationConfigurationInput$;
1945
+ exports.DescribeImageGenerationConfigurationOutput$ = DescribeImageGenerationConfigurationOutput$;
1946
+ exports.DescribeMappedResourceConfiguration$ = DescribeMappedResourceConfiguration$;
651
1947
  exports.DescribeMappedResourceConfigurationCommand = DescribeMappedResourceConfigurationCommand;
1948
+ exports.DescribeMappedResourceConfigurationInput$ = DescribeMappedResourceConfigurationInput$;
1949
+ exports.DescribeMappedResourceConfigurationOutput$ = DescribeMappedResourceConfigurationOutput$;
1950
+ exports.DescribeMediaStorageConfiguration$ = DescribeMediaStorageConfiguration$;
652
1951
  exports.DescribeMediaStorageConfigurationCommand = DescribeMediaStorageConfigurationCommand;
1952
+ exports.DescribeMediaStorageConfigurationInput$ = DescribeMediaStorageConfigurationInput$;
1953
+ exports.DescribeMediaStorageConfigurationOutput$ = DescribeMediaStorageConfigurationOutput$;
1954
+ exports.DescribeNotificationConfiguration$ = DescribeNotificationConfiguration$;
653
1955
  exports.DescribeNotificationConfigurationCommand = DescribeNotificationConfigurationCommand;
1956
+ exports.DescribeNotificationConfigurationInput$ = DescribeNotificationConfigurationInput$;
1957
+ exports.DescribeNotificationConfigurationOutput$ = DescribeNotificationConfigurationOutput$;
1958
+ exports.DescribeSignalingChannel$ = DescribeSignalingChannel$;
654
1959
  exports.DescribeSignalingChannelCommand = DescribeSignalingChannelCommand;
1960
+ exports.DescribeSignalingChannelInput$ = DescribeSignalingChannelInput$;
1961
+ exports.DescribeSignalingChannelOutput$ = DescribeSignalingChannelOutput$;
1962
+ exports.DescribeStream$ = DescribeStream$;
655
1963
  exports.DescribeStreamCommand = DescribeStreamCommand;
1964
+ exports.DescribeStreamInput$ = DescribeStreamInput$;
1965
+ exports.DescribeStreamOutput$ = DescribeStreamOutput$;
1966
+ exports.DescribeStreamStorageConfiguration$ = DescribeStreamStorageConfiguration$;
656
1967
  exports.DescribeStreamStorageConfigurationCommand = DescribeStreamStorageConfigurationCommand;
1968
+ exports.DescribeStreamStorageConfigurationInput$ = DescribeStreamStorageConfigurationInput$;
1969
+ exports.DescribeStreamStorageConfigurationOutput$ = DescribeStreamStorageConfigurationOutput$;
1970
+ exports.DeviceStreamLimitExceededException = DeviceStreamLimitExceededException;
1971
+ exports.DeviceStreamLimitExceededException$ = DeviceStreamLimitExceededException$;
1972
+ exports.EdgeAgentStatus$ = EdgeAgentStatus$;
1973
+ exports.EdgeConfig$ = EdgeConfig$;
657
1974
  exports.Format = Format;
658
1975
  exports.FormatConfigKey = FormatConfigKey;
1976
+ exports.GetDataEndpoint$ = GetDataEndpoint$;
659
1977
  exports.GetDataEndpointCommand = GetDataEndpointCommand;
1978
+ exports.GetDataEndpointInput$ = GetDataEndpointInput$;
1979
+ exports.GetDataEndpointOutput$ = GetDataEndpointOutput$;
1980
+ exports.GetSignalingChannelEndpoint$ = GetSignalingChannelEndpoint$;
660
1981
  exports.GetSignalingChannelEndpointCommand = GetSignalingChannelEndpointCommand;
1982
+ exports.GetSignalingChannelEndpointInput$ = GetSignalingChannelEndpointInput$;
1983
+ exports.GetSignalingChannelEndpointOutput$ = GetSignalingChannelEndpointOutput$;
1984
+ exports.ImageGenerationConfiguration$ = ImageGenerationConfiguration$;
1985
+ exports.ImageGenerationDestinationConfig$ = ImageGenerationDestinationConfig$;
661
1986
  exports.ImageSelectorType = ImageSelectorType;
1987
+ exports.InvalidArgumentException = InvalidArgumentException;
1988
+ exports.InvalidArgumentException$ = InvalidArgumentException$;
1989
+ exports.InvalidDeviceException = InvalidDeviceException;
1990
+ exports.InvalidDeviceException$ = InvalidDeviceException$;
1991
+ exports.InvalidResourceFormatException = InvalidResourceFormatException;
1992
+ exports.InvalidResourceFormatException$ = InvalidResourceFormatException$;
662
1993
  exports.KinesisVideo = KinesisVideo;
663
1994
  exports.KinesisVideoClient = KinesisVideoClient;
1995
+ exports.KinesisVideoServiceException = KinesisVideoServiceException;
1996
+ exports.KinesisVideoServiceException$ = KinesisVideoServiceException$;
1997
+ exports.LastRecorderStatus$ = LastRecorderStatus$;
1998
+ exports.LastUploaderStatus$ = LastUploaderStatus$;
1999
+ exports.ListEdgeAgentConfigurations$ = ListEdgeAgentConfigurations$;
664
2000
  exports.ListEdgeAgentConfigurationsCommand = ListEdgeAgentConfigurationsCommand;
2001
+ exports.ListEdgeAgentConfigurationsEdgeConfig$ = ListEdgeAgentConfigurationsEdgeConfig$;
2002
+ exports.ListEdgeAgentConfigurationsInput$ = ListEdgeAgentConfigurationsInput$;
2003
+ exports.ListEdgeAgentConfigurationsOutput$ = ListEdgeAgentConfigurationsOutput$;
2004
+ exports.ListSignalingChannels$ = ListSignalingChannels$;
665
2005
  exports.ListSignalingChannelsCommand = ListSignalingChannelsCommand;
2006
+ exports.ListSignalingChannelsInput$ = ListSignalingChannelsInput$;
2007
+ exports.ListSignalingChannelsOutput$ = ListSignalingChannelsOutput$;
2008
+ exports.ListStreams$ = ListStreams$;
666
2009
  exports.ListStreamsCommand = ListStreamsCommand;
2010
+ exports.ListStreamsInput$ = ListStreamsInput$;
2011
+ exports.ListStreamsOutput$ = ListStreamsOutput$;
2012
+ exports.ListTagsForResource$ = ListTagsForResource$;
667
2013
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2014
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
2015
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
2016
+ exports.ListTagsForStream$ = ListTagsForStream$;
668
2017
  exports.ListTagsForStreamCommand = ListTagsForStreamCommand;
2018
+ exports.ListTagsForStreamInput$ = ListTagsForStreamInput$;
2019
+ exports.ListTagsForStreamOutput$ = ListTagsForStreamOutput$;
2020
+ exports.LocalSizeConfig$ = LocalSizeConfig$;
2021
+ exports.MappedResourceConfigurationListItem$ = MappedResourceConfigurationListItem$;
2022
+ exports.MediaSourceConfig$ = MediaSourceConfig$;
2023
+ exports.MediaStorageConfiguration$ = MediaStorageConfiguration$;
669
2024
  exports.MediaStorageConfigurationStatus = MediaStorageConfigurationStatus;
670
2025
  exports.MediaUriType = MediaUriType;
2026
+ exports.NoDataRetentionException = NoDataRetentionException;
2027
+ exports.NoDataRetentionException$ = NoDataRetentionException$;
2028
+ exports.NotAuthorizedException = NotAuthorizedException;
2029
+ exports.NotAuthorizedException$ = NotAuthorizedException$;
2030
+ exports.NotificationConfiguration$ = NotificationConfiguration$;
2031
+ exports.NotificationDestinationConfig$ = NotificationDestinationConfig$;
2032
+ exports.RecorderConfig$ = RecorderConfig$;
671
2033
  exports.RecorderStatus = RecorderStatus;
2034
+ exports.ResourceEndpointListItem$ = ResourceEndpointListItem$;
2035
+ exports.ResourceInUseException = ResourceInUseException;
2036
+ exports.ResourceInUseException$ = ResourceInUseException$;
2037
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2038
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2039
+ exports.ScheduleConfig$ = ScheduleConfig$;
2040
+ exports.SingleMasterChannelEndpointConfiguration$ = SingleMasterChannelEndpointConfiguration$;
2041
+ exports.SingleMasterConfiguration$ = SingleMasterConfiguration$;
2042
+ exports.StartEdgeConfigurationUpdate$ = StartEdgeConfigurationUpdate$;
672
2043
  exports.StartEdgeConfigurationUpdateCommand = StartEdgeConfigurationUpdateCommand;
2044
+ exports.StartEdgeConfigurationUpdateInput$ = StartEdgeConfigurationUpdateInput$;
2045
+ exports.StartEdgeConfigurationUpdateOutput$ = StartEdgeConfigurationUpdateOutput$;
673
2046
  exports.Status = Status;
674
2047
  exports.StrategyOnFullSize = StrategyOnFullSize;
2048
+ exports.StreamEdgeConfigurationNotFoundException = StreamEdgeConfigurationNotFoundException;
2049
+ exports.StreamEdgeConfigurationNotFoundException$ = StreamEdgeConfigurationNotFoundException$;
2050
+ exports.StreamInfo$ = StreamInfo$;
2051
+ exports.StreamNameCondition$ = StreamNameCondition$;
2052
+ exports.StreamStorageConfiguration$ = StreamStorageConfiguration$;
675
2053
  exports.SyncStatus = SyncStatus;
2054
+ exports.Tag$ = Tag$;
2055
+ exports.TagResource$ = TagResource$;
676
2056
  exports.TagResourceCommand = TagResourceCommand;
2057
+ exports.TagResourceInput$ = TagResourceInput$;
2058
+ exports.TagResourceOutput$ = TagResourceOutput$;
2059
+ exports.TagStream$ = TagStream$;
677
2060
  exports.TagStreamCommand = TagStreamCommand;
2061
+ exports.TagStreamInput$ = TagStreamInput$;
2062
+ exports.TagStreamOutput$ = TagStreamOutput$;
2063
+ exports.TagsPerResourceExceededLimitException = TagsPerResourceExceededLimitException;
2064
+ exports.TagsPerResourceExceededLimitException$ = TagsPerResourceExceededLimitException$;
2065
+ exports.UntagResource$ = UntagResource$;
678
2066
  exports.UntagResourceCommand = UntagResourceCommand;
2067
+ exports.UntagResourceInput$ = UntagResourceInput$;
2068
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
2069
+ exports.UntagStream$ = UntagStream$;
679
2070
  exports.UntagStreamCommand = UntagStreamCommand;
2071
+ exports.UntagStreamInput$ = UntagStreamInput$;
2072
+ exports.UntagStreamOutput$ = UntagStreamOutput$;
2073
+ exports.UpdateDataRetention$ = UpdateDataRetention$;
680
2074
  exports.UpdateDataRetentionCommand = UpdateDataRetentionCommand;
2075
+ exports.UpdateDataRetentionInput$ = UpdateDataRetentionInput$;
681
2076
  exports.UpdateDataRetentionOperation = UpdateDataRetentionOperation;
2077
+ exports.UpdateDataRetentionOutput$ = UpdateDataRetentionOutput$;
2078
+ exports.UpdateImageGenerationConfiguration$ = UpdateImageGenerationConfiguration$;
682
2079
  exports.UpdateImageGenerationConfigurationCommand = UpdateImageGenerationConfigurationCommand;
2080
+ exports.UpdateImageGenerationConfigurationInput$ = UpdateImageGenerationConfigurationInput$;
2081
+ exports.UpdateImageGenerationConfigurationOutput$ = UpdateImageGenerationConfigurationOutput$;
2082
+ exports.UpdateMediaStorageConfiguration$ = UpdateMediaStorageConfiguration$;
683
2083
  exports.UpdateMediaStorageConfigurationCommand = UpdateMediaStorageConfigurationCommand;
2084
+ exports.UpdateMediaStorageConfigurationInput$ = UpdateMediaStorageConfigurationInput$;
2085
+ exports.UpdateMediaStorageConfigurationOutput$ = UpdateMediaStorageConfigurationOutput$;
2086
+ exports.UpdateNotificationConfiguration$ = UpdateNotificationConfiguration$;
684
2087
  exports.UpdateNotificationConfigurationCommand = UpdateNotificationConfigurationCommand;
2088
+ exports.UpdateNotificationConfigurationInput$ = UpdateNotificationConfigurationInput$;
2089
+ exports.UpdateNotificationConfigurationOutput$ = UpdateNotificationConfigurationOutput$;
2090
+ exports.UpdateSignalingChannel$ = UpdateSignalingChannel$;
685
2091
  exports.UpdateSignalingChannelCommand = UpdateSignalingChannelCommand;
2092
+ exports.UpdateSignalingChannelInput$ = UpdateSignalingChannelInput$;
2093
+ exports.UpdateSignalingChannelOutput$ = UpdateSignalingChannelOutput$;
2094
+ exports.UpdateStream$ = UpdateStream$;
686
2095
  exports.UpdateStreamCommand = UpdateStreamCommand;
2096
+ exports.UpdateStreamInput$ = UpdateStreamInput$;
2097
+ exports.UpdateStreamOutput$ = UpdateStreamOutput$;
2098
+ exports.UpdateStreamStorageConfiguration$ = UpdateStreamStorageConfiguration$;
687
2099
  exports.UpdateStreamStorageConfigurationCommand = UpdateStreamStorageConfigurationCommand;
2100
+ exports.UpdateStreamStorageConfigurationInput$ = UpdateStreamStorageConfigurationInput$;
2101
+ exports.UpdateStreamStorageConfigurationOutput$ = UpdateStreamStorageConfigurationOutput$;
2102
+ exports.UploaderConfig$ = UploaderConfig$;
688
2103
  exports.UploaderStatus = UploaderStatus;
2104
+ exports.VersionMismatchException = VersionMismatchException;
2105
+ exports.VersionMismatchException$ = VersionMismatchException$;
2106
+ exports.errorTypeRegistries = errorTypeRegistries;
689
2107
  exports.paginateDescribeMappedResourceConfiguration = paginateDescribeMappedResourceConfiguration;
690
2108
  exports.paginateListEdgeAgentConfigurations = paginateListEdgeAgentConfigurations;
691
2109
  exports.paginateListSignalingChannels = paginateListSignalingChannels;