@aws-sdk/client-mediatailor 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, defaultMediaTailorHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { ConfigureLogsForChannel$, ConfigureLogsForPlaybackConfiguration$, CreateChannel$, CreateLiveSource$, CreatePrefetchSchedule$, CreateProgram$, CreateSourceLocation$, CreateVodSource$, DeleteChannel$, DeleteChannelPolicy$, DeleteFunction$, DeleteLiveSource$, DeletePlaybackConfiguration$, DeletePrefetchSchedule$, DeleteProgram$, DeleteSourceLocation$, DeleteVodSource$, DescribeChannel$, DescribeLiveSource$, DescribeProgram$, DescribeSourceLocation$, DescribeVodSource$, GetChannelPolicy$, GetChannelSchedule$, GetFunction$, GetPlaybackConfiguration$, GetPrefetchSchedule$, ListAlerts$, ListChannels$, ListFunctions$, ListLiveSources$, ListPlaybackConfigurations$, ListPrefetchSchedules$, ListSourceLocations$, ListTagsForResource$, ListVodSources$, PutChannelPolicy$, PutFunction$, PutPlaybackConfiguration$, StartChannel$, StopChannel$, TagResource$, UntagResource$, UpdateChannel$, UpdateLiveSource$, UpdateProgram$, UpdateSourceLocation$, UpdateVodSource$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { MediaTailorServiceException } = require("./models/MediaTailorServiceException");
18
- exports.MediaTailorServiceException = MediaTailorServiceException;
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 defaultMediaTailorHttpAuthSchemeParametersProvider = 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: "mediatailor",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultMediaTailorHttpAuthSchemeProvider = (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,1558 @@ 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, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ ["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws"]],
85
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://mediatailor.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ ["https://api.mediatailor-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
94
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
95
+ ["https://api.mediatailor-fips.{Region}.{PartitionResult#dnsSuffix}", i],
96
+ [a, "FIPS is enabled but this partition does not support FIPS"],
97
+ ["https://api.mediatailor.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
98
+ [a, "DualStack is enabled but this partition does not support DualStack"],
99
+ ["https://api.mediatailor.{Region}.{PartitionResult#dnsSuffix}", i],
100
+ [a, "Invalid Configuration: Missing Region"]
101
+ ]
102
+ };
103
+ const root = 2;
104
+ const r = 100_000_000;
105
+ const nodes = new Int32Array([
106
+ -1, 1, -1,
107
+ 0, 13, 3,
108
+ 1, 4, r + 12,
109
+ 2, 5, r + 12,
110
+ 3, 9, 6,
111
+ 5, 7, r + 11,
112
+ 6, r + 4, 8,
113
+ 7, r + 9, r + 10,
114
+ 4, 11, 10,
115
+ 5, r + 6, r + 8,
116
+ 5, 12, r + 7,
117
+ 7, r + 5, r + 6,
118
+ 3, r + 1, 14,
119
+ 5, r + 2, r + 3,
120
+ ]);
121
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
122
+
123
+ const cache = new EndpointCache({
124
+ size: 50,
125
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
126
+ });
127
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
128
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
129
+ endpointParams: endpointParams,
130
+ logger: context.logger,
131
+ }));
132
+ };
133
+ customEndpointFunctions.aws = awsEndpointFunctions;
134
+
135
+ class MediaTailorServiceException extends ServiceException {
136
+ constructor(options) {
137
+ super(options);
138
+ Object.setPrototypeOf(this, MediaTailorServiceException.prototype);
139
+ }
140
+ }
141
+
142
+ class BadRequestException extends MediaTailorServiceException {
143
+ name = "BadRequestException";
144
+ $fault = "client";
145
+ Message;
146
+ constructor(opts) {
147
+ super({
148
+ name: "BadRequestException",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ Object.setPrototypeOf(this, BadRequestException.prototype);
153
+ this.Message = opts.Message;
154
+ }
155
+ }
156
+
157
+ const _A = "Alert";
158
+ const _AB = "AdBreak";
159
+ const _ABM = "AdBreakMetadata";
160
+ const _ABML = "AdBreakMetadataList";
161
+ const _ABO = "AdBreakOpportunity";
162
+ const _ABOd = "AdBreakOpportunities";
163
+ const _ABd = "AdBreaks";
164
+ const _AC = "AccessConfiguration";
165
+ const _ACC = "AdConditioningConfiguration";
166
+ const _ACl = "AlertCode";
167
+ const _ADS = "ApproximateDurationSeconds";
168
+ const _ADSC = "AdDecisionServerConfiguration";
169
+ const _ADSU = "AdDecisionServerUrl";
170
+ const _AE = "AvailsExpected";
171
+ const _AIL = "AdsInteractionLog";
172
+ const _AM = "AlertMessage";
173
+ const _AMC = "AvailMatchingCriteria";
174
+ const _AMP = "AdMarkerPassthrough";
175
+ const _AMT = "AdMarkupType";
176
+ const _AMl = "AlternateMedia";
177
+ const _AMu = "AudienceMedia";
178
+ const _AN = "AvailNum";
179
+ const _AS = "AvailSuppression";
180
+ const _AST = "ApproximateStartTime";
181
+ const _ASUP = "AdSegmentUrlPrefix";
182
+ const _AT = "AccessType";
183
+ const _Ar = "Arn";
184
+ const _Au = "Audience";
185
+ const _Aud = "Audiences";
186
+ const _B = "Bumper";
187
+ const _BRE = "BadRequestException";
188
+ const _BU = "BaseUrl";
189
+ const _Bo = "Body";
190
+ const _C = "Category";
191
+ const _CA = "ConfigurationAliases";
192
+ const _CAR = "ConfigurationAliasesResponse";
193
+ const _CARo = "ConfigurationAliasesRequest";
194
+ const _CC = "CdnConfiguration";
195
+ const _CCR = "CreateChannelRequest";
196
+ const _CCRr = "CreateChannelResponse";
197
+ const _CCr = "CreateChannel";
198
+ const _CLFC = "ConfigureLogsForChannel";
199
+ const _CLFCR = "ConfigureLogsForChannelRequest";
200
+ const _CLFCRo = "ConfigureLogsForChannelResponse";
201
+ const _CLFPC = "ConfigureLogsForPlaybackConfiguration";
202
+ const _CLFPCR = "ConfigureLogsForPlaybackConfigurationRequest";
203
+ const _CLFPCRo = "ConfigureLogsForPlaybackConfigurationResponse";
204
+ const _CLS = "CreateLiveSource";
205
+ const _CLSR = "CreateLiveSourceRequest";
206
+ const _CLSRr = "CreateLiveSourceResponse";
207
+ const _CN = "ChannelName";
208
+ const _COC = "CustomOutputConfiguration";
209
+ const _CP = "CreateProgram";
210
+ const _CPR = "CreateProgramRequest";
211
+ const _CPRr = "CreateProgramResponse";
212
+ const _CPS = "CreatePrefetchSchedule";
213
+ const _CPSR = "CreatePrefetchScheduleRequest";
214
+ const _CPSRr = "CreatePrefetchScheduleResponse";
215
+ const _CR = "ClipRange";
216
+ const _CRo = "CompressRequest";
217
+ const _CS = "ChannelState";
218
+ const _CSL = "CreateSourceLocation";
219
+ const _CSLR = "CreateSourceLocationRequest";
220
+ const _CSLRr = "CreateSourceLocationResponse";
221
+ const _CSUP = "ContentSegmentUrlPrefix";
222
+ const _CT = "CreationTime";
223
+ const _CVS = "CreateVodSource";
224
+ const _CVSR = "CreateVodSourceRequest";
225
+ const _CVSRr = "CreateVodSourceResponse";
226
+ const _Ch = "Channel";
227
+ const _Co = "Consumption";
228
+ const _D = "Description";
229
+ const _DAAES = "DelayAfterAvailEndSeconds";
230
+ const _DC = "DashConfiguration";
231
+ const _DCFP = "DashConfigurationForPut";
232
+ const _DCP = "DeleteChannelPolicy";
233
+ const _DCPR = "DeleteChannelPolicyRequest";
234
+ const _DCPRe = "DeleteChannelPolicyResponse";
235
+ const _DCR = "DeleteChannelRequest";
236
+ const _DCRe = "DeleteChannelResponse";
237
+ const _DCRes = "DescribeChannelRequest";
238
+ const _DCResc = "DescribeChannelResponse";
239
+ const _DCe = "DeleteChannel";
240
+ const _DCes = "DescribeChannel";
241
+ const _DF = "DeleteFunction";
242
+ const _DFR = "DeleteFunctionRequest";
243
+ const _DFRe = "DeleteFunctionResponse";
244
+ const _DLS = "DeleteLiveSource";
245
+ const _DLSR = "DeleteLiveSourceRequest";
246
+ const _DLSRe = "DeleteLiveSourceResponse";
247
+ const _DLSRes = "DescribeLiveSourceRequest";
248
+ const _DLSResc = "DescribeLiveSourceResponse";
249
+ const _DLSe = "DescribeLiveSource";
250
+ const _DM = "DurationMillis";
251
+ const _DMu = "DurationMinutes";
252
+ const _DP = "DeleteProgram";
253
+ const _DPC = "DeletePlaybackConfiguration";
254
+ const _DPCR = "DeletePlaybackConfigurationRequest";
255
+ const _DPCRe = "DeletePlaybackConfigurationResponse";
256
+ const _DPR = "DeleteProgramRequest";
257
+ const _DPRe = "DeleteProgramResponse";
258
+ const _DPRes = "DescribeProgramRequest";
259
+ const _DPResc = "DescribeProgramResponse";
260
+ const _DPS = "DashPlaylistSettings";
261
+ const _DPSR = "DeletePrefetchScheduleRequest";
262
+ const _DPSRe = "DeletePrefetchScheduleResponse";
263
+ const _DPSe = "DeletePrefetchSchedule";
264
+ const _DPe = "DescribeProgram";
265
+ const _DSDC = "DefaultSegmentDeliveryConfiguration";
266
+ const _DSL = "DeleteSourceLocation";
267
+ const _DSLR = "DeleteSourceLocationRequest";
268
+ const _DSLRe = "DeleteSourceLocationResponse";
269
+ const _DSLRes = "DescribeSourceLocationRequest";
270
+ const _DSLResc = "DescribeSourceLocationResponse";
271
+ const _DSLe = "DescribeSourceLocation";
272
+ const _DV = "DynamicVariable";
273
+ const _DVS = "DeleteVodSource";
274
+ const _DVSR = "DeleteVodSourceRequest";
275
+ const _DVSRe = "DeleteVodSourceResponse";
276
+ const _DVSRes = "DescribeVodSourceRequest";
277
+ const _DVSResc = "DescribeVodSourceResponse";
278
+ const _DVSe = "DescribeVodSource";
279
+ const _DVy = "DynamicVariables";
280
+ const _E = "Enabled";
281
+ const _EET = "ExcludeEventTypes";
282
+ const _ELS = "EnabledLoggingStrategies";
283
+ const _EOM = "EndOffsetMillis";
284
+ const _ET = "EndTime";
285
+ const _EU = "EndUrl";
286
+ const _F = "Function";
287
+ const _FI = "FunctionId";
288
+ const _FL = "FunctionList";
289
+ const _FM = "FunctionMapping";
290
+ const _FP = "FillPolicy";
291
+ const _FR = "FunctionRef";
292
+ const _FS = "FillerSlate";
293
+ const _FT = "FunctionType";
294
+ const _GCP = "GetChannelPolicy";
295
+ const _GCPR = "GetChannelPolicyRequest";
296
+ const _GCPRe = "GetChannelPolicyResponse";
297
+ const _GCS = "GetChannelSchedule";
298
+ const _GCSR = "GetChannelScheduleRequest";
299
+ const _GCSRe = "GetChannelScheduleResponse";
300
+ const _GF = "GetFunction";
301
+ const _GFR = "GetFunctionRequest";
302
+ const _GFRe = "GetFunctionResponse";
303
+ const _GPC = "GetPlaybackConfiguration";
304
+ const _GPCR = "GetPlaybackConfigurationRequest";
305
+ const _GPCRe = "GetPlaybackConfigurationResponse";
306
+ const _GPS = "GetPrefetchSchedule";
307
+ const _GPSR = "GetPrefetchScheduleRequest";
308
+ const _GPSRe = "GetPrefetchScheduleResponse";
309
+ const _H = "Headers";
310
+ const _HC = "HttpConfiguration";
311
+ const _HCl = "HlsConfiguration";
312
+ const _HN = "HeaderName";
313
+ const _HPC = "HttpPackageConfigurations";
314
+ const _HPCt = "HttpPackageConfiguration";
315
+ const _HPS = "HlsPlaylistSettings";
316
+ const _HR = "HttpRequest";
317
+ const _HRC = "HttpRequestConfiguration";
318
+ const _I = "Items";
319
+ const _IM = "InsertionMode";
320
+ const _K = "Key";
321
+ const _KVP = "KeyValuePair";
322
+ const _LA = "ListAlerts";
323
+ const _LAR = "ListAlertsRequest";
324
+ const _LARi = "ListAlertsResponse";
325
+ const _LC = "LogConfiguration";
326
+ const _LCFC = "LogConfigurationForChannel";
327
+ const _LCR = "ListChannelsRequest";
328
+ const _LCRi = "ListChannelsResponse";
329
+ const _LCi = "ListChannels";
330
+ const _LF = "ListFunctions";
331
+ const _LFR = "ListFunctionsRequest";
332
+ const _LFRi = "ListFunctionsResponse";
333
+ const _LLS = "ListLiveSources";
334
+ const _LLSR = "ListLiveSourcesRequest";
335
+ const _LLSRi = "ListLiveSourcesResponse";
336
+ const _LMT = "LastModifiedTime";
337
+ const _LPC = "ListPlaybackConfigurations";
338
+ const _LPCR = "ListPlaybackConfigurationsRequest";
339
+ const _LPCRi = "ListPlaybackConfigurationsResponse";
340
+ const _LPRC = "LivePreRollConfiguration";
341
+ const _LPS = "ListPrefetchSchedules";
342
+ const _LPSR = "ListPrefetchSchedulesRequest";
343
+ const _LPSRi = "ListPrefetchSchedulesResponse";
344
+ const _LS = "LiveSource";
345
+ const _LSL = "ListSourceLocations";
346
+ const _LSLR = "ListSourceLocationsRequest";
347
+ const _LSLRi = "ListSourceLocationsResponse";
348
+ const _LSN = "LiveSourceName";
349
+ const _LT = "LogTypes";
350
+ const _LTFR = "ListTagsForResource";
351
+ const _LTFRR = "ListTagsForResourceRequest";
352
+ const _LTFRRi = "ListTagsForResourceResponse";
353
+ const _LVS = "ListVodSources";
354
+ const _LVSR = "ListVodSourcesRequest";
355
+ const _LVSRi = "ListVodSourcesResponse";
356
+ const _M = "Message";
357
+ const _MBTS = "MinBufferTimeSeconds";
358
+ const _MDS = "MaxDurationSeconds";
359
+ const _MEP = "ManifestEndpointPrefix";
360
+ const _ML = "MpdLocation";
361
+ const _MN = "ManifestName";
362
+ const _MPR = "ManifestProcessingRules";
363
+ const _MR = "MaxResults";
364
+ const _MSIL = "ManifestServiceInteractionLog";
365
+ const _MT = "MessageType";
366
+ const _MTDS = "MaxTimeDelaySeconds";
367
+ const _MTe = "MethodType";
368
+ const _MUPS = "MinUpdatePeriodSeconds";
369
+ const _MWS = "ManifestWindowSeconds";
370
+ const _Me = "Method";
371
+ const _Mo = "Mode";
372
+ const _N = "Name";
373
+ const _NT = "NextToken";
374
+ const _O = "Operator";
375
+ const _OM = "OffsetMillis";
376
+ const _OMT = "OriginManifestType";
377
+ const _Ou = "Outputs";
378
+ const _Out = "Output";
379
+ const _P = "Policy";
380
+ const _PC = "PlaybackConfiguration";
381
+ const _PCA = "PlaybackConfigurationArn";
382
+ const _PCN = "PlaybackConfigurationName";
383
+ const _PCP = "PutChannelPolicy";
384
+ const _PCPR = "PutChannelPolicyRequest";
385
+ const _PCPRu = "PutChannelPolicyResponse";
386
+ const _PCU = "PeakConcurrentUsers";
387
+ const _PCr = "PrefetchConsumption";
388
+ const _PE = "PercentEnabled";
389
+ const _PEP = "PlaybackEndpointPrefix";
390
+ const _PF = "PutFunction";
391
+ const _PFR = "PutFunctionRequest";
392
+ const _PFRu = "PutFunctionResponse";
393
+ const _PM = "PlaybackMode";
394
+ const _PN = "ProgramName";
395
+ const _POIET = "PublishOptInEventTypes";
396
+ const _PPC = "PutPlaybackConfiguration";
397
+ const _PPCR = "PutPlaybackConfigurationRequest";
398
+ const _PPCRu = "PutPlaybackConfigurationResponse";
399
+ const _PR = "PrefetchRetrieval";
400
+ const _PS = "PrefetchSchedule";
401
+ const _PT = "PeakTps";
402
+ const _PTS = "PersonalizationThresholdSeconds";
403
+ const _PU = "PlaybackUrl";
404
+ const _Pa = "Path";
405
+ const _R = "Retrieval";
406
+ const _RA = "ResourceArn";
407
+ const _RAES = "RetrievedAdExpirationSeconds";
408
+ const _RC = "RunCondition";
409
+ const _RCe = "RecurringConsumption";
410
+ const _RO = "RequestOutputs";
411
+ const _ROI = "RequestOutputItem";
412
+ const _ROIe = "ResponseOutputItem";
413
+ const _ROe = "ResponseOutputs";
414
+ const _RP = "RelativePosition";
415
+ const _RPC = "RecurringPrefetchConfiguration";
416
+ const _RPe = "RelativeProgram";
417
+ const _RR = "RecurringRetrieval";
418
+ const _RRA = "RelatedResourceArns";
419
+ const _RTM = "RequestTimeoutMilliseconds";
420
+ const _RWDS = "RetrievalWindowDurationSeconds";
421
+ const _Ru = "Runtime";
422
+ const _S = "Slate";
423
+ const _SA = "SecretArn";
424
+ const _SAB = "ScheduleAdBreak";
425
+ const _SABc = "ScheduleAdBreaks";
426
+ const _SAU = "SlateAdUrl";
427
+ const _SC = "ScheduleConfiguration";
428
+ const _SCR = "StartChannelRequest";
429
+ const _SCRt = "StartChannelResponse";
430
+ const _SCRto = "StopChannelRequest";
431
+ const _SCRtop = "StopChannelResponse";
432
+ const _SCt = "StartChannel";
433
+ const _SCto = "StopChannel";
434
+ const _SD = "SegmentationDescriptor";
435
+ const _SDC = "SegmentDeliveryConfigurations";
436
+ const _SDCe = "SegmentDeliveryConfiguration";
437
+ const _SDL = "SegmentationDescriptorList";
438
+ const _SDe = "SegmentationDescriptors";
439
+ const _SE = "ScheduleEntry";
440
+ const _SEC = "SequentialExecutorConfiguration";
441
+ const _SEI = "SegmentationEventId";
442
+ const _SEIp = "SpliceEventId";
443
+ const _SET = "ScheduleEntryType";
444
+ const _SEe = "SegmentsExpected";
445
+ const _SG = "SourceGroup";
446
+ const _SI = "StreamId";
447
+ const _SIEP = "SessionInitializationEndpointPrefix";
448
+ const _SIM = "SpliceInsertMessage";
449
+ const _SL = "SourceLocation";
450
+ const _SLN = "SourceLocationName";
451
+ const _SMATC = "SecretsManagerAccessTokenConfiguration";
452
+ const _SMFC = "StreamingMediaFileConditioning";
453
+ const _SN = "SegmentNum";
454
+ const _SOM = "StartOffsetMillis";
455
+ const _SPDS = "SuggestedPresentationDelaySeconds";
456
+ const _SS = "SlateSource";
457
+ const _SSE = "SubSegmentsExpected";
458
+ const _SSK = "SecretStringKey";
459
+ const _SSN = "SubSegmentNum";
460
+ const _SST = "ScheduledStartTime";
461
+ const _SSTM = "ScheduledStartTimeMillis";
462
+ const _ST = "ScheduleType";
463
+ const _STI = "SegmentationTypeId";
464
+ const _STt = "StartTime";
465
+ const _SU = "StartUrl";
466
+ const _SUT = "SegmentationUpidType";
467
+ const _SUe = "SegmentationUpid";
468
+ const _T = "Tier";
469
+ const _TK = "TagKeys";
470
+ const _TM = "TimeoutMilliseconds";
471
+ const _TPN = "TranscodeProfileName";
472
+ const _TR = "TagResource";
473
+ const _TRR = "TagResourceRequest";
474
+ const _TSC = "TimeShiftConfiguration";
475
+ const _TSM = "TimeSignalMessage";
476
+ const _TSRW = "TrafficShapingRetrievalWindow";
477
+ const _TST = "TrafficShapingType";
478
+ const _TSTC = "TrafficShapingTpsConfiguration";
479
+ const _Ta = "Tags";
480
+ const _Tr = "Transition";
481
+ const _Ty = "Type";
482
+ const _U = "Url";
483
+ const _UC = "UpdateChannel";
484
+ const _UCR = "UpdateChannelRequest";
485
+ const _UCRp = "UpdateChannelResponse";
486
+ const _ULS = "UpdateLiveSource";
487
+ const _ULSR = "UpdateLiveSourceRequest";
488
+ const _ULSRp = "UpdateLiveSourceResponse";
489
+ const _UP = "UpdateProgram";
490
+ const _UPI = "UniqueProgramId";
491
+ const _UPR = "UpdateProgramRequest";
492
+ const _UPRp = "UpdateProgramResponse";
493
+ const _UPSC = "UpdateProgramScheduleConfiguration";
494
+ const _UPT = "UpdateProgramTransition";
495
+ const _UR = "UntagResource";
496
+ const _URR = "UntagResourceRequest";
497
+ const _USL = "UpdateSourceLocation";
498
+ const _USLR = "UpdateSourceLocationRequest";
499
+ const _USLRp = "UpdateSourceLocationResponse";
500
+ const _UVS = "UpdateVodSource";
501
+ const _UVSR = "UpdateVodSourceRequest";
502
+ const _UVSRp = "UpdateVodSourceResponse";
503
+ const _V = "Value";
504
+ const _VCSU = "VideoContentSourceUrl";
505
+ const _VS = "VodSource";
506
+ const _VSN = "VodSourceName";
507
+ const _a = "audience";
508
+ const _c = "client";
509
+ const _dM = "durationMinutes";
510
+ const _e = "error";
511
+ const _h = "http";
512
+ const _hE = "httpError";
513
+ const _hQ = "httpQuery";
514
+ const _jN = "jsonName";
515
+ const _lOA = "__listOfAlert";
516
+ const _lOAB = "__listOfAdBreak";
517
+ const _lOAM = "__listOfAlternateMedia";
518
+ const _lOAMC = "__listOfAvailMatchingCriteria";
519
+ const _lOAMi = "__listOfAudienceMedia";
520
+ const _lOC = "__listOfChannel";
521
+ const _lOFR = "__listOfFunctionsRef";
522
+ const _lOFRi = "__listOfFunctionsResponse";
523
+ const _lOLS = "__listOfLiveSource";
524
+ const _lOPC = "__listOfPlaybackConfiguration";
525
+ const _lOPS = "__listOfPrefetchSchedule";
526
+ const _lOSAB = "__listOfScheduleAdBreak";
527
+ const _lOSDC = "__listOfSegmentDeliveryConfiguration";
528
+ const _lOSE = "__listOfScheduleEntry";
529
+ const _lOSL = "__listOfSourceLocation";
530
+ const _lOVS = "__listOfVodSource";
531
+ const _mR = "maxResults";
532
+ const _nT = "nextToken";
533
+ const _rA = "resourceArn";
534
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.mediatailor";
535
+ const _t = "tags";
536
+ const _tK = "tagKeys";
537
+ const n0 = "com.amazonaws.mediatailor";
538
+ const _s_registry = TypeRegistry.for(_s);
539
+ var MediaTailorServiceException$ = [-3, _s, "MediaTailorServiceException", 0, [], []];
540
+ _s_registry.registerError(MediaTailorServiceException$, MediaTailorServiceException);
541
+ const n0_registry = TypeRegistry.for(n0);
542
+ var BadRequestException$ = [-3, n0, _BRE,
543
+ { [_e]: _c, [_hE]: 400 },
544
+ [_M],
545
+ [0]
546
+ ];
547
+ n0_registry.registerError(BadRequestException$, BadRequestException);
548
+ const errorTypeRegistries = [
549
+ _s_registry,
550
+ n0_registry,
551
+ ];
552
+ var AccessConfiguration$ = [3, n0, _AC,
553
+ 0,
554
+ [_AT, _SMATC],
555
+ [0, () => SecretsManagerAccessTokenConfiguration$]
556
+ ];
557
+ var AdBreak$ = [3, n0, _AB,
558
+ 0,
559
+ [_OM, _MT, _S, _SIM, _TSM, _ABM],
560
+ [1, 0, () => SlateSource$, () => SpliceInsertMessage$, () => TimeSignalMessage$, () => AdBreakMetadataList], 1
561
+ ];
562
+ var AdBreakOpportunity$ = [3, n0, _ABO,
563
+ 0,
564
+ [_OM],
565
+ [1], 1
566
+ ];
567
+ var AdConditioningConfiguration$ = [3, n0, _ACC,
568
+ 0,
569
+ [_SMFC],
570
+ [0], 1
571
+ ];
572
+ var AdDecisionServerConfiguration$ = [3, n0, _ADSC,
573
+ 0,
574
+ [_HR],
575
+ [() => HttpRequest$]
576
+ ];
577
+ var AdMarkerPassthrough$ = [3, n0, _AMP,
578
+ 0,
579
+ [_E],
580
+ [2]
581
+ ];
582
+ var AdsInteractionLog$ = [3, n0, _AIL,
583
+ 0,
584
+ [_POIET, _EET],
585
+ [64 | 0, 64 | 0]
586
+ ];
587
+ var Alert$ = [3, n0, _A,
588
+ 0,
589
+ [_ACl, _AM, _LMT, _RRA, _RA, _C],
590
+ [0, 0, 7, 64 | 0, 0, 0], 5
591
+ ];
592
+ var AlternateMedia$ = [3, n0, _AMl,
593
+ 0,
594
+ [_SLN, _LSN, _VSN, _CR, _SSTM, _ABd, _DM],
595
+ [0, 0, 0, () => ClipRange$, 1, () => __listOfAdBreak, 1]
596
+ ];
597
+ var AudienceMedia$ = [3, n0, _AMu,
598
+ 0,
599
+ [_Au, _AMl],
600
+ [0, () => __listOfAlternateMedia]
601
+ ];
602
+ var AvailMatchingCriteria$ = [3, n0, _AMC,
603
+ 0,
604
+ [_DV, _O],
605
+ [0, 0], 2
606
+ ];
607
+ var AvailSuppression$ = [3, n0, _AS,
608
+ 0,
609
+ [_Mo, _V, _FP],
610
+ [0, 0, 0]
611
+ ];
612
+ var Bumper$ = [3, n0, _B,
613
+ 0,
614
+ [_EU, _SU],
615
+ [0, 0]
616
+ ];
617
+ var CdnConfiguration$ = [3, n0, _CC,
618
+ 0,
619
+ [_ASUP, _CSUP],
620
+ [0, 0]
621
+ ];
622
+ var Channel$ = [3, n0, _Ch,
623
+ 0,
624
+ [_Ar, _CN, _CS, _Ou, _PM, _T, _LC, _CT, _FS, _LMT, _Ta, _Aud],
625
+ [0, 0, 0, () => ResponseOutputs, 0, 0, () => LogConfigurationForChannel$, 7, () => SlateSource$, 7, [128 | 0, { [_jN]: _t }], 64 | 0], 7
626
+ ];
627
+ var ClipRange$ = [3, n0, _CR,
628
+ 0,
629
+ [_EOM, _SOM],
630
+ [1, 1]
631
+ ];
632
+ var ConfigureLogsForChannelRequest$ = [3, n0, _CLFCR,
633
+ 0,
634
+ [_CN, _LT],
635
+ [0, 64 | 0], 2
636
+ ];
637
+ var ConfigureLogsForChannelResponse$ = [3, n0, _CLFCRo,
638
+ 0,
639
+ [_CN, _LT],
640
+ [0, 64 | 0]
641
+ ];
642
+ var ConfigureLogsForPlaybackConfigurationRequest$ = [3, n0, _CLFPCR,
643
+ 0,
644
+ [_PE, _PCN, _ELS, _AIL, _MSIL],
645
+ [1, 0, 64 | 0, () => AdsInteractionLog$, () => ManifestServiceInteractionLog$], 2
646
+ ];
647
+ var ConfigureLogsForPlaybackConfigurationResponse$ = [3, n0, _CLFPCRo,
648
+ 0,
649
+ [_PE, _PCN, _ELS, _AIL, _MSIL],
650
+ [1, 0, 64 | 0, () => AdsInteractionLog$, () => ManifestServiceInteractionLog$], 1
651
+ ];
652
+ var CreateChannelRequest$ = [3, n0, _CCR,
653
+ 0,
654
+ [_CN, _Ou, _PM, _FS, _Ta, _T, _TSC, _Aud],
655
+ [[0, 1], () => RequestOutputs, 0, () => SlateSource$, [128 | 0, { [_jN]: _t }], 0, () => TimeShiftConfiguration$, 64 | 0], 3
656
+ ];
657
+ var CreateChannelResponse$ = [3, n0, _CCRr,
658
+ 0,
659
+ [_Ar, _CN, _CS, _CT, _FS, _LMT, _Ou, _PM, _Ta, _T, _TSC, _Aud],
660
+ [0, 0, 0, 7, () => SlateSource$, 7, () => ResponseOutputs, 0, [128 | 0, { [_jN]: _t }], 0, () => TimeShiftConfiguration$, 64 | 0]
661
+ ];
662
+ var CreateLiveSourceRequest$ = [3, n0, _CLSR,
663
+ 0,
664
+ [_HPC, _LSN, _SLN, _Ta],
665
+ [() => HttpPackageConfigurations, [0, 1], [0, 1], [128 | 0, { [_jN]: _t }]], 3
666
+ ];
667
+ var CreateLiveSourceResponse$ = [3, n0, _CLSRr,
668
+ 0,
669
+ [_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _Ta],
670
+ [0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]]
671
+ ];
672
+ var CreatePrefetchScheduleRequest$ = [3, n0, _CPSR,
673
+ 0,
674
+ [_N, _PCN, _Co, _R, _RPC, _ST, _SI, _Ta],
675
+ [[0, 1], [0, 1], () => PrefetchConsumption$, () => PrefetchRetrieval$, () => RecurringPrefetchConfiguration$, 0, 0, [128 | 0, { [_jN]: _t }]], 2
676
+ ];
677
+ var CreatePrefetchScheduleResponse$ = [3, n0, _CPSRr,
678
+ 0,
679
+ [_Ar, _Co, _N, _PCN, _R, _RPC, _ST, _SI, _Ta],
680
+ [0, () => PrefetchConsumption$, 0, 0, () => PrefetchRetrieval$, () => RecurringPrefetchConfiguration$, 0, 0, [128 | 0, { [_jN]: _t }]]
681
+ ];
682
+ var CreateProgramRequest$ = [3, n0, _CPR,
683
+ 0,
684
+ [_CN, _PN, _SC, _SLN, _ABd, _LSN, _VSN, _AMu, _Ta],
685
+ [[0, 1], [0, 1], () => ScheduleConfiguration$, 0, () => __listOfAdBreak, 0, 0, () => __listOfAudienceMedia, [128 | 0, { [_jN]: _t }]], 4
686
+ ];
687
+ var CreateProgramResponse$ = [3, n0, _CPRr,
688
+ 0,
689
+ [_ABd, _Ar, _CN, _CT, _LSN, _PN, _SST, _SLN, _VSN, _CR, _DM, _AMu, _Ta],
690
+ [() => __listOfAdBreak, 0, 0, 7, 0, 0, 7, 0, 0, () => ClipRange$, 1, () => __listOfAudienceMedia, [128 | 0, { [_jN]: _t }]]
691
+ ];
692
+ var CreateSourceLocationRequest$ = [3, n0, _CSLR,
693
+ 0,
694
+ [_HC, _SLN, _AC, _DSDC, _SDC, _Ta],
695
+ [() => HttpConfiguration$, [0, 1], () => AccessConfiguration$, () => DefaultSegmentDeliveryConfiguration$, () => __listOfSegmentDeliveryConfiguration, [128 | 0, { [_jN]: _t }]], 2
696
+ ];
697
+ var CreateSourceLocationResponse$ = [3, n0, _CSLRr,
698
+ 0,
699
+ [_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _Ta],
700
+ [() => AccessConfiguration$, 0, 7, () => DefaultSegmentDeliveryConfiguration$, () => HttpConfiguration$, 7, () => __listOfSegmentDeliveryConfiguration, 0, [128 | 0, { [_jN]: _t }]]
701
+ ];
702
+ var CreateVodSourceRequest$ = [3, n0, _CVSR,
703
+ 0,
704
+ [_HPC, _SLN, _VSN, _Ta],
705
+ [() => HttpPackageConfigurations, [0, 1], [0, 1], [128 | 0, { [_jN]: _t }]], 3
706
+ ];
707
+ var CreateVodSourceResponse$ = [3, n0, _CVSRr,
708
+ 0,
709
+ [_Ar, _CT, _HPC, _LMT, _SLN, _Ta, _VSN],
710
+ [0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0]
711
+ ];
712
+ var CustomOutputConfiguration$ = [3, n0, _COC,
713
+ 0,
714
+ [_Ru, _Out],
715
+ [0, 128 | 0], 1
716
+ ];
717
+ var DashConfiguration$ = [3, n0, _DC,
718
+ 0,
719
+ [_MEP, _ML, _OMT],
720
+ [0, 0, 0]
721
+ ];
722
+ var DashConfigurationForPut$ = [3, n0, _DCFP,
723
+ 0,
724
+ [_ML, _OMT],
725
+ [0, 0]
726
+ ];
727
+ var DashPlaylistSettings$ = [3, n0, _DPS,
728
+ 0,
729
+ [_MWS, _MBTS, _MUPS, _SPDS],
730
+ [1, 1, 1, 1]
731
+ ];
732
+ var DefaultSegmentDeliveryConfiguration$ = [3, n0, _DSDC,
733
+ 0,
734
+ [_BU],
735
+ [0]
736
+ ];
737
+ var DeleteChannelPolicyRequest$ = [3, n0, _DCPR,
738
+ 0,
739
+ [_CN],
740
+ [[0, 1]], 1
741
+ ];
742
+ var DeleteChannelPolicyResponse$ = [3, n0, _DCPRe,
743
+ 0,
744
+ [],
745
+ []
746
+ ];
747
+ var DeleteChannelRequest$ = [3, n0, _DCR,
748
+ 0,
749
+ [_CN],
750
+ [[0, 1]], 1
751
+ ];
752
+ var DeleteChannelResponse$ = [3, n0, _DCRe,
753
+ 0,
754
+ [],
755
+ []
756
+ ];
757
+ var DeleteFunctionRequest$ = [3, n0, _DFR,
758
+ 0,
759
+ [_FI],
760
+ [[0, 1]], 1
761
+ ];
762
+ var DeleteFunctionResponse$ = [3, n0, _DFRe,
763
+ 0,
764
+ [],
765
+ []
766
+ ];
767
+ var DeleteLiveSourceRequest$ = [3, n0, _DLSR,
768
+ 0,
769
+ [_LSN, _SLN],
770
+ [[0, 1], [0, 1]], 2
771
+ ];
772
+ var DeleteLiveSourceResponse$ = [3, n0, _DLSRe,
773
+ 0,
774
+ [],
775
+ []
776
+ ];
777
+ var DeletePlaybackConfigurationRequest$ = [3, n0, _DPCR,
778
+ 0,
779
+ [_N],
780
+ [[0, 1]], 1
781
+ ];
782
+ var DeletePlaybackConfigurationResponse$ = [3, n0, _DPCRe,
783
+ 0,
784
+ [],
785
+ []
786
+ ];
787
+ var DeletePrefetchScheduleRequest$ = [3, n0, _DPSR,
788
+ 0,
789
+ [_N, _PCN],
790
+ [[0, 1], [0, 1]], 2
791
+ ];
792
+ var DeletePrefetchScheduleResponse$ = [3, n0, _DPSRe,
793
+ 0,
794
+ [],
795
+ []
796
+ ];
797
+ var DeleteProgramRequest$ = [3, n0, _DPR,
798
+ 0,
799
+ [_CN, _PN],
800
+ [[0, 1], [0, 1]], 2
801
+ ];
802
+ var DeleteProgramResponse$ = [3, n0, _DPRe,
803
+ 0,
804
+ [],
805
+ []
806
+ ];
807
+ var DeleteSourceLocationRequest$ = [3, n0, _DSLR,
808
+ 0,
809
+ [_SLN],
810
+ [[0, 1]], 1
811
+ ];
812
+ var DeleteSourceLocationResponse$ = [3, n0, _DSLRe,
813
+ 0,
814
+ [],
815
+ []
816
+ ];
817
+ var DeleteVodSourceRequest$ = [3, n0, _DVSR,
818
+ 0,
819
+ [_SLN, _VSN],
820
+ [[0, 1], [0, 1]], 2
821
+ ];
822
+ var DeleteVodSourceResponse$ = [3, n0, _DVSRe,
823
+ 0,
824
+ [],
825
+ []
826
+ ];
827
+ var DescribeChannelRequest$ = [3, n0, _DCRes,
828
+ 0,
829
+ [_CN],
830
+ [[0, 1]], 1
831
+ ];
832
+ var DescribeChannelResponse$ = [3, n0, _DCResc,
833
+ 0,
834
+ [_LC, _Ar, _CN, _CS, _CT, _FS, _LMT, _Ou, _PM, _Ta, _T, _TSC, _Aud],
835
+ [() => LogConfigurationForChannel$, 0, 0, 0, 7, () => SlateSource$, 7, () => ResponseOutputs, 0, [128 | 0, { [_jN]: _t }], 0, () => TimeShiftConfiguration$, 64 | 0], 1
836
+ ];
837
+ var DescribeLiveSourceRequest$ = [3, n0, _DLSRes,
838
+ 0,
839
+ [_LSN, _SLN],
840
+ [[0, 1], [0, 1]], 2
841
+ ];
842
+ var DescribeLiveSourceResponse$ = [3, n0, _DLSResc,
843
+ 0,
844
+ [_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _Ta],
845
+ [0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]]
846
+ ];
847
+ var DescribeProgramRequest$ = [3, n0, _DPRes,
848
+ 0,
849
+ [_CN, _PN],
850
+ [[0, 1], [0, 1]], 2
851
+ ];
852
+ var DescribeProgramResponse$ = [3, n0, _DPResc,
853
+ 0,
854
+ [_ABd, _Ar, _CN, _CT, _LSN, _PN, _SST, _SLN, _VSN, _CR, _DM, _AMu, _Ta],
855
+ [() => __listOfAdBreak, 0, 0, 7, 0, 0, 7, 0, 0, () => ClipRange$, 1, () => __listOfAudienceMedia, [128 | 0, { [_jN]: _t }]]
856
+ ];
857
+ var DescribeSourceLocationRequest$ = [3, n0, _DSLRes,
858
+ 0,
859
+ [_SLN],
860
+ [[0, 1]], 1
861
+ ];
862
+ var DescribeSourceLocationResponse$ = [3, n0, _DSLResc,
863
+ 0,
864
+ [_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _Ta],
865
+ [() => AccessConfiguration$, 0, 7, () => DefaultSegmentDeliveryConfiguration$, () => HttpConfiguration$, 7, () => __listOfSegmentDeliveryConfiguration, 0, [128 | 0, { [_jN]: _t }]]
866
+ ];
867
+ var DescribeVodSourceRequest$ = [3, n0, _DVSRes,
868
+ 0,
869
+ [_SLN, _VSN],
870
+ [[0, 1], [0, 1]], 2
871
+ ];
872
+ var DescribeVodSourceResponse$ = [3, n0, _DVSResc,
873
+ 0,
874
+ [_ABOd, _Ar, _CT, _HPC, _LMT, _SLN, _Ta, _VSN],
875
+ [() => AdBreakOpportunities, 0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0]
876
+ ];
877
+ var Function$ = [3, n0, _F,
878
+ 0,
879
+ [_FI, _FT, _D, _HRC, _COC, _SEC, _Ta, _Ar],
880
+ [0, 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }], 0], 2
881
+ ];
882
+ var FunctionRef$ = [3, n0, _FR,
883
+ 0,
884
+ [_RC, _FI],
885
+ [0, 0]
886
+ ];
887
+ var GetChannelPolicyRequest$ = [3, n0, _GCPR,
888
+ 0,
889
+ [_CN],
890
+ [[0, 1]], 1
891
+ ];
892
+ var GetChannelPolicyResponse$ = [3, n0, _GCPRe,
893
+ 0,
894
+ [_P],
895
+ [0]
896
+ ];
897
+ var GetChannelScheduleRequest$ = [3, n0, _GCSR,
898
+ 0,
899
+ [_CN, _DMu, _MR, _NT, _Au],
900
+ [[0, 1], [0, { [_hQ]: _dM }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _a }]], 1
901
+ ];
902
+ var GetChannelScheduleResponse$ = [3, n0, _GCSRe,
903
+ 0,
904
+ [_I, _NT],
905
+ [() => __listOfScheduleEntry, 0]
906
+ ];
907
+ var GetFunctionRequest$ = [3, n0, _GFR,
908
+ 0,
909
+ [_FI],
910
+ [[0, 1]], 1
911
+ ];
912
+ var GetFunctionResponse$ = [3, n0, _GFRe,
913
+ 0,
914
+ [_FI, _FT, _D, _HRC, _COC, _SEC, _Ta, _Ar],
915
+ [0, 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }], 0], 2
916
+ ];
917
+ var GetPlaybackConfigurationRequest$ = [3, n0, _GPCR,
918
+ 0,
919
+ [_N],
920
+ [[0, 1]], 1
921
+ ];
922
+ var GetPlaybackConfigurationResponse$ = [3, n0, _GPCRe,
923
+ 0,
924
+ [_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
925
+ [0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CAR, 0, 0, 128 | 0], () => DashConfiguration$, () => HlsConfiguration$, 0, () => LivePreRollConfiguration$, () => LogConfiguration$, () => ManifestProcessingRules$, 0, 1, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration$, 128 | 0]
926
+ ];
927
+ var GetPrefetchScheduleRequest$ = [3, n0, _GPSR,
928
+ 0,
929
+ [_N, _PCN],
930
+ [[0, 1], [0, 1]], 2
931
+ ];
932
+ var GetPrefetchScheduleResponse$ = [3, n0, _GPSRe,
933
+ 0,
934
+ [_Ar, _Co, _N, _PCN, _R, _ST, _RPC, _SI, _Ta],
935
+ [0, () => PrefetchConsumption$, 0, 0, () => PrefetchRetrieval$, 0, () => RecurringPrefetchConfiguration$, 0, [128 | 0, { [_jN]: _t }]]
936
+ ];
937
+ var HlsConfiguration$ = [3, n0, _HCl,
938
+ 0,
939
+ [_MEP],
940
+ [0]
941
+ ];
942
+ var HlsPlaylistSettings$ = [3, n0, _HPS,
943
+ 0,
944
+ [_MWS, _AMT],
945
+ [1, 64 | 0]
946
+ ];
947
+ var HttpConfiguration$ = [3, n0, _HC,
948
+ 0,
949
+ [_BU],
950
+ [0], 1
951
+ ];
952
+ var HttpPackageConfiguration$ = [3, n0, _HPCt,
953
+ 0,
954
+ [_Pa, _SG, _Ty],
955
+ [0, 0, 0], 3
956
+ ];
957
+ var HttpRequest$ = [3, n0, _HR,
958
+ 0,
959
+ [_Me, _Bo, _H, _CRo],
960
+ [0, 0, 128 | 0, 0]
961
+ ];
962
+ var HttpRequestConfiguration$ = [3, n0, _HRC,
963
+ 0,
964
+ [_Ru, _MTe, _RTM, _U, _Out, _Bo, _H],
965
+ [0, 0, 1, 0, 128 | 0, 0, 128 | 0], 4
966
+ ];
967
+ var KeyValuePair$ = [3, n0, _KVP,
968
+ 0,
969
+ [_K, _V],
970
+ [0, 0], 2
971
+ ];
972
+ var ListAlertsRequest$ = [3, n0, _LAR,
973
+ 0,
974
+ [_RA, _MR, _NT],
975
+ [[0, { [_hQ]: _rA }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
976
+ ];
977
+ var ListAlertsResponse$ = [3, n0, _LARi,
978
+ 0,
979
+ [_I, _NT],
980
+ [() => __listOfAlert, 0]
981
+ ];
982
+ var ListChannelsRequest$ = [3, n0, _LCR,
983
+ 0,
984
+ [_MR, _NT],
985
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
986
+ ];
987
+ var ListChannelsResponse$ = [3, n0, _LCRi,
988
+ 0,
989
+ [_I, _NT],
990
+ [[() => __listOfChannel, 0], 0]
991
+ ];
992
+ var ListFunctionsRequest$ = [3, n0, _LFR,
993
+ 0,
994
+ [_MR, _NT],
995
+ [[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
996
+ ];
997
+ var ListFunctionsResponse$ = [3, n0, _LFRi,
998
+ 0,
999
+ [_I, _NT],
1000
+ [[() => __listOfFunctionsResponse, 0], 0]
1001
+ ];
1002
+ var ListLiveSourcesRequest$ = [3, n0, _LLSR,
1003
+ 0,
1004
+ [_SLN, _MR, _NT],
1005
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1006
+ ];
1007
+ var ListLiveSourcesResponse$ = [3, n0, _LLSRi,
1008
+ 0,
1009
+ [_I, _NT],
1010
+ [[() => __listOfLiveSource, 0], 0]
1011
+ ];
1012
+ var ListPlaybackConfigurationsRequest$ = [3, n0, _LPCR,
1013
+ 0,
1014
+ [_MR, _NT],
1015
+ [[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
1016
+ ];
1017
+ var ListPlaybackConfigurationsResponse$ = [3, n0, _LPCRi,
1018
+ 0,
1019
+ [_I, _NT],
1020
+ [[() => __listOfPlaybackConfiguration, 0], 0]
1021
+ ];
1022
+ var ListPrefetchSchedulesRequest$ = [3, n0, _LPSR,
1023
+ 0,
1024
+ [_PCN, _MR, _NT, _ST, _SI],
1025
+ [[0, 1], 1, 0, 0, 0], 1
1026
+ ];
1027
+ var ListPrefetchSchedulesResponse$ = [3, n0, _LPSRi,
1028
+ 0,
1029
+ [_I, _NT],
1030
+ [[() => __listOfPrefetchSchedule, 0], 0]
1031
+ ];
1032
+ var ListSourceLocationsRequest$ = [3, n0, _LSLR,
1033
+ 0,
1034
+ [_MR, _NT],
1035
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1036
+ ];
1037
+ var ListSourceLocationsResponse$ = [3, n0, _LSLRi,
1038
+ 0,
1039
+ [_I, _NT],
1040
+ [[() => __listOfSourceLocation, 0], 0]
1041
+ ];
1042
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1043
+ 0,
1044
+ [_RA],
1045
+ [[0, 1]], 1
1046
+ ];
1047
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1048
+ 0,
1049
+ [_Ta],
1050
+ [[128 | 0, { [_jN]: _t }]]
1051
+ ];
1052
+ var ListVodSourcesRequest$ = [3, n0, _LVSR,
1053
+ 0,
1054
+ [_SLN, _MR, _NT],
1055
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1056
+ ];
1057
+ var ListVodSourcesResponse$ = [3, n0, _LVSRi,
1058
+ 0,
1059
+ [_I, _NT],
1060
+ [[() => __listOfVodSource, 0], 0]
1061
+ ];
1062
+ var LivePreRollConfiguration$ = [3, n0, _LPRC,
1063
+ 0,
1064
+ [_ADSU, _MDS],
1065
+ [0, 1]
1066
+ ];
1067
+ var LiveSource$ = [3, n0, _LS,
1068
+ 0,
1069
+ [_Ar, _HPC, _LSN, _SLN, _CT, _LMT, _Ta],
1070
+ [0, () => HttpPackageConfigurations, 0, 0, 7, 7, [128 | 0, { [_jN]: _t }]], 4
1071
+ ];
1072
+ var LogConfiguration$ = [3, n0, _LC,
1073
+ 0,
1074
+ [_PE, _ELS, _AIL, _MSIL],
1075
+ [1, 64 | 0, () => AdsInteractionLog$, () => ManifestServiceInteractionLog$], 2
1076
+ ];
1077
+ var LogConfigurationForChannel$ = [3, n0, _LCFC,
1078
+ 0,
1079
+ [_LT],
1080
+ [64 | 0]
1081
+ ];
1082
+ var ManifestProcessingRules$ = [3, n0, _MPR,
1083
+ 0,
1084
+ [_AMP],
1085
+ [() => AdMarkerPassthrough$]
1086
+ ];
1087
+ var ManifestServiceInteractionLog$ = [3, n0, _MSIL,
1088
+ 0,
1089
+ [_POIET, _EET],
1090
+ [64 | 0, 64 | 0]
1091
+ ];
1092
+ var PlaybackConfiguration$ = [3, n0, _PC,
1093
+ 0,
1094
+ [_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
1095
+ [0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CAR, 0, 0, 128 | 0], () => DashConfiguration$, () => HlsConfiguration$, 0, () => LivePreRollConfiguration$, () => LogConfiguration$, () => ManifestProcessingRules$, 0, 1, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration$, 128 | 0]
1096
+ ];
1097
+ var PrefetchConsumption$ = [3, n0, _PCr,
1098
+ 0,
1099
+ [_ET, _AMC, _STt],
1100
+ [7, () => __listOfAvailMatchingCriteria, 7], 1
1101
+ ];
1102
+ var PrefetchRetrieval$ = [3, n0, _PR,
1103
+ 0,
1104
+ [_ET, _DVy, _STt, _TST, _TSRW, _TSTC],
1105
+ [7, 128 | 0, 7, 0, () => TrafficShapingRetrievalWindow$, () => TrafficShapingTpsConfiguration$], 1
1106
+ ];
1107
+ var PrefetchSchedule$ = [3, n0, _PS,
1108
+ 0,
1109
+ [_Ar, _N, _PCN, _Co, _R, _ST, _RPC, _SI, _Ta],
1110
+ [0, 0, 0, () => PrefetchConsumption$, () => PrefetchRetrieval$, 0, () => RecurringPrefetchConfiguration$, 0, [128 | 0, { [_jN]: _t }]], 3
1111
+ ];
1112
+ var PutChannelPolicyRequest$ = [3, n0, _PCPR,
1113
+ 0,
1114
+ [_CN, _P],
1115
+ [[0, 1], 0], 2
1116
+ ];
1117
+ var PutChannelPolicyResponse$ = [3, n0, _PCPRu,
1118
+ 0,
1119
+ [],
1120
+ []
1121
+ ];
1122
+ var PutFunctionRequest$ = [3, n0, _PFR,
1123
+ 0,
1124
+ [_FI, _FT, _D, _HRC, _COC, _SEC, _Ta],
1125
+ [[0, 1], 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }]], 2
1126
+ ];
1127
+ var PutFunctionResponse$ = [3, n0, _PFRu,
1128
+ 0,
1129
+ [_FI, _FT, _D, _HRC, _COC, _SEC, _Ta, _Ar],
1130
+ [0, 0, 0, () => HttpRequestConfiguration$, () => CustomOutputConfiguration$, () => SequentialExecutorConfiguration$, [128 | 0, { [_jN]: _t }], 0], 2
1131
+ ];
1132
+ var PutPlaybackConfigurationRequest$ = [3, n0, _PPCR,
1133
+ 0,
1134
+ [_N, _ADSU, _AS, _B, _CC, _CA, _DC, _IM, _LPRC, _MPR, _PTS, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
1135
+ [0, 0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CARo, 0, 0, 128 | 0], () => DashConfigurationForPut$, 0, () => LivePreRollConfiguration$, () => ManifestProcessingRules$, 1, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration$, 128 | 0], 1
1136
+ ];
1137
+ var PutPlaybackConfigurationResponse$ = [3, n0, _PPCRu,
1138
+ 0,
1139
+ [_ADSU, _AS, _B, _CC, _CA, _DC, _HCl, _IM, _LPRC, _LC, _MPR, _N, _PTS, _PCA, _PEP, _SIEP, _SAU, _Ta, _TPN, _VCSU, _ACC, _ADSC, _FM],
1140
+ [0, () => AvailSuppression$, () => Bumper$, () => CdnConfiguration$, [2, n0, _CAR, 0, 0, 128 | 0], () => DashConfiguration$, () => HlsConfiguration$, 0, () => LivePreRollConfiguration$, () => LogConfiguration$, () => ManifestProcessingRules$, 0, 1, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }], 0, 0, () => AdConditioningConfiguration$, () => AdDecisionServerConfiguration$, 128 | 0]
1141
+ ];
1142
+ var RecurringConsumption$ = [3, n0, _RCe,
1143
+ 0,
1144
+ [_RAES, _AMC],
1145
+ [1, () => __listOfAvailMatchingCriteria]
1146
+ ];
1147
+ var RecurringPrefetchConfiguration$ = [3, n0, _RPC,
1148
+ 0,
1149
+ [_ET, _RCe, _RR, _STt],
1150
+ [7, () => RecurringConsumption$, () => RecurringRetrieval$, 7], 3
1151
+ ];
1152
+ var RecurringRetrieval$ = [3, n0, _RR,
1153
+ 0,
1154
+ [_DVy, _DAAES, _TST, _TSRW, _TSTC],
1155
+ [128 | 0, 1, 0, () => TrafficShapingRetrievalWindow$, () => TrafficShapingTpsConfiguration$]
1156
+ ];
1157
+ var RequestOutputItem$ = [3, n0, _ROI,
1158
+ 0,
1159
+ [_MN, _SG, _DPS, _HPS],
1160
+ [0, 0, () => DashPlaylistSettings$, () => HlsPlaylistSettings$], 2
1161
+ ];
1162
+ var ResponseOutputItem$ = [3, n0, _ROIe,
1163
+ 0,
1164
+ [_MN, _PU, _SG, _DPS, _HPS],
1165
+ [0, 0, 0, () => DashPlaylistSettings$, () => HlsPlaylistSettings$], 3
1166
+ ];
1167
+ var ScheduleAdBreak$ = [3, n0, _SAB,
1168
+ 0,
1169
+ [_ADS, _AST, _SLN, _VSN],
1170
+ [1, 7, 0, 0]
1171
+ ];
1172
+ var ScheduleConfiguration$ = [3, n0, _SC,
1173
+ 0,
1174
+ [_Tr, _CR],
1175
+ [() => Transition$, () => ClipRange$], 1
1176
+ ];
1177
+ var ScheduleEntry$ = [3, n0, _SE,
1178
+ 0,
1179
+ [_Ar, _CN, _PN, _SLN, _ADS, _AST, _LSN, _SABc, _SET, _VSN, _Aud],
1180
+ [0, 0, 0, 0, 1, 7, 0, () => __listOfScheduleAdBreak, 0, 0, 64 | 0], 4
1181
+ ];
1182
+ var SecretsManagerAccessTokenConfiguration$ = [3, n0, _SMATC,
1183
+ 0,
1184
+ [_HN, _SA, _SSK],
1185
+ [0, 0, 0]
1186
+ ];
1187
+ var SegmentationDescriptor$ = [3, n0, _SD,
1188
+ 0,
1189
+ [_SEI, _SUT, _SUe, _STI, _SN, _SEe, _SSN, _SSE],
1190
+ [1, 1, 0, 1, 1, 1, 1, 1]
1191
+ ];
1192
+ var SegmentDeliveryConfiguration$ = [3, n0, _SDCe,
1193
+ 0,
1194
+ [_BU, _N],
1195
+ [0, 0]
1196
+ ];
1197
+ var SequentialExecutorConfiguration$ = [3, n0, _SEC,
1198
+ 0,
1199
+ [_Ru, _FL, _TM, _Out],
1200
+ [0, () => __listOfFunctionsRef, 1, 128 | 0], 3
1201
+ ];
1202
+ var SlateSource$ = [3, n0, _SS,
1203
+ 0,
1204
+ [_SLN, _VSN],
1205
+ [0, 0]
1206
+ ];
1207
+ var SourceLocation$ = [3, n0, _SL,
1208
+ 0,
1209
+ [_Ar, _HC, _SLN, _AC, _CT, _DSDC, _LMT, _SDC, _Ta],
1210
+ [0, () => HttpConfiguration$, 0, () => AccessConfiguration$, 7, () => DefaultSegmentDeliveryConfiguration$, 7, () => __listOfSegmentDeliveryConfiguration, [128 | 0, { [_jN]: _t }]], 3
1211
+ ];
1212
+ var SpliceInsertMessage$ = [3, n0, _SIM,
1213
+ 0,
1214
+ [_AN, _AE, _SEIp, _UPI],
1215
+ [1, 1, 1, 1]
1216
+ ];
1217
+ var StartChannelRequest$ = [3, n0, _SCR,
1218
+ 0,
1219
+ [_CN],
1220
+ [[0, 1]], 1
1221
+ ];
1222
+ var StartChannelResponse$ = [3, n0, _SCRt,
1223
+ 0,
1224
+ [],
1225
+ []
1226
+ ];
1227
+ var StopChannelRequest$ = [3, n0, _SCRto,
1228
+ 0,
1229
+ [_CN],
1230
+ [[0, 1]], 1
1231
+ ];
1232
+ var StopChannelResponse$ = [3, n0, _SCRtop,
1233
+ 0,
1234
+ [],
1235
+ []
1236
+ ];
1237
+ var TagResourceRequest$ = [3, n0, _TRR,
1238
+ 0,
1239
+ [_RA, _Ta],
1240
+ [[0, 1], [128 | 0, { [_jN]: _t }]], 2
1241
+ ];
1242
+ var TimeShiftConfiguration$ = [3, n0, _TSC,
1243
+ 0,
1244
+ [_MTDS],
1245
+ [1], 1
1246
+ ];
1247
+ var TimeSignalMessage$ = [3, n0, _TSM,
1248
+ 0,
1249
+ [_SDe],
1250
+ [() => SegmentationDescriptorList]
1251
+ ];
1252
+ var TrafficShapingRetrievalWindow$ = [3, n0, _TSRW,
1253
+ 0,
1254
+ [_RWDS],
1255
+ [1]
1256
+ ];
1257
+ var TrafficShapingTpsConfiguration$ = [3, n0, _TSTC,
1258
+ 0,
1259
+ [_PT, _PCU],
1260
+ [1, 1]
1261
+ ];
1262
+ var Transition$ = [3, n0, _Tr,
1263
+ 0,
1264
+ [_RP, _Ty, _DM, _RPe, _SSTM],
1265
+ [0, 0, 1, 0, 1], 2
1266
+ ];
1267
+ var UntagResourceRequest$ = [3, n0, _URR,
1268
+ 0,
1269
+ [_RA, _TK],
1270
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1271
+ ];
1272
+ var UpdateChannelRequest$ = [3, n0, _UCR,
1273
+ 0,
1274
+ [_CN, _Ou, _FS, _TSC, _Aud],
1275
+ [[0, 1], () => RequestOutputs, () => SlateSource$, () => TimeShiftConfiguration$, 64 | 0], 2
1276
+ ];
1277
+ var UpdateChannelResponse$ = [3, n0, _UCRp,
1278
+ 0,
1279
+ [_Ar, _CN, _CS, _CT, _FS, _LMT, _Ou, _PM, _Ta, _T, _TSC, _Aud],
1280
+ [0, 0, 0, 7, () => SlateSource$, 7, () => ResponseOutputs, 0, [128 | 0, { [_jN]: _t }], 0, () => TimeShiftConfiguration$, 64 | 0]
1281
+ ];
1282
+ var UpdateLiveSourceRequest$ = [3, n0, _ULSR,
1283
+ 0,
1284
+ [_HPC, _LSN, _SLN],
1285
+ [() => HttpPackageConfigurations, [0, 1], [0, 1]], 3
1286
+ ];
1287
+ var UpdateLiveSourceResponse$ = [3, n0, _ULSRp,
1288
+ 0,
1289
+ [_Ar, _CT, _HPC, _LMT, _LSN, _SLN, _Ta],
1290
+ [0, 7, () => HttpPackageConfigurations, 7, 0, 0, [128 | 0, { [_jN]: _t }]]
1291
+ ];
1292
+ var UpdateProgramRequest$ = [3, n0, _UPR,
1293
+ 0,
1294
+ [_CN, _PN, _SC, _ABd, _AMu],
1295
+ [[0, 1], [0, 1], () => UpdateProgramScheduleConfiguration$, () => __listOfAdBreak, () => __listOfAudienceMedia], 3
1296
+ ];
1297
+ var UpdateProgramResponse$ = [3, n0, _UPRp,
1298
+ 0,
1299
+ [_ABd, _Ar, _CN, _CT, _PN, _SLN, _VSN, _LSN, _CR, _DM, _SST, _AMu, _Ta],
1300
+ [() => __listOfAdBreak, 0, 0, 7, 0, 0, 0, 0, () => ClipRange$, 1, 7, () => __listOfAudienceMedia, [128 | 0, { [_jN]: _t }]]
1301
+ ];
1302
+ var UpdateProgramScheduleConfiguration$ = [3, n0, _UPSC,
1303
+ 0,
1304
+ [_Tr, _CR],
1305
+ [() => UpdateProgramTransition$, () => ClipRange$]
1306
+ ];
1307
+ var UpdateProgramTransition$ = [3, n0, _UPT,
1308
+ 0,
1309
+ [_SSTM, _DM],
1310
+ [1, 1]
1311
+ ];
1312
+ var UpdateSourceLocationRequest$ = [3, n0, _USLR,
1313
+ 0,
1314
+ [_HC, _SLN, _AC, _DSDC, _SDC],
1315
+ [() => HttpConfiguration$, [0, 1], () => AccessConfiguration$, () => DefaultSegmentDeliveryConfiguration$, () => __listOfSegmentDeliveryConfiguration], 2
1316
+ ];
1317
+ var UpdateSourceLocationResponse$ = [3, n0, _USLRp,
1318
+ 0,
1319
+ [_AC, _Ar, _CT, _DSDC, _HC, _LMT, _SDC, _SLN, _Ta],
1320
+ [() => AccessConfiguration$, 0, 7, () => DefaultSegmentDeliveryConfiguration$, () => HttpConfiguration$, 7, () => __listOfSegmentDeliveryConfiguration, 0, [128 | 0, { [_jN]: _t }]]
1321
+ ];
1322
+ var UpdateVodSourceRequest$ = [3, n0, _UVSR,
1323
+ 0,
1324
+ [_HPC, _SLN, _VSN],
1325
+ [() => HttpPackageConfigurations, [0, 1], [0, 1]], 3
1326
+ ];
1327
+ var UpdateVodSourceResponse$ = [3, n0, _UVSRp,
1328
+ 0,
1329
+ [_Ar, _CT, _HPC, _LMT, _SLN, _Ta, _VSN],
1330
+ [0, 7, () => HttpPackageConfigurations, 7, 0, [128 | 0, { [_jN]: _t }], 0]
1331
+ ];
1332
+ var VodSource$ = [3, n0, _VS,
1333
+ 0,
1334
+ [_Ar, _HPC, _SLN, _VSN, _CT, _LMT, _Ta],
1335
+ [0, () => HttpPackageConfigurations, 0, 0, 7, 7, [128 | 0, { [_jN]: _t }]], 4
1336
+ ];
1337
+ var __Unit = "unit";
1338
+ var __listOfAdBreak = [1, n0, _lOAB,
1339
+ 0, () => AdBreak$
1340
+ ];
1341
+ var __listOfAlert = [1, n0, _lOA,
1342
+ 0, () => Alert$
1343
+ ];
1344
+ var __listOfAlternateMedia = [1, n0, _lOAM,
1345
+ 0, () => AlternateMedia$
1346
+ ];
1347
+ var __listOfAudienceMedia = [1, n0, _lOAMi,
1348
+ 0, () => AudienceMedia$
1349
+ ];
1350
+ var __listOfAvailMatchingCriteria = [1, n0, _lOAMC,
1351
+ 0, () => AvailMatchingCriteria$
1352
+ ];
1353
+ var __listOfChannel = [1, n0, _lOC,
1354
+ 0, [() => Channel$,
1355
+ 0]
1356
+ ];
1357
+ var __listOfFunctionsRef = [1, n0, _lOFR,
1358
+ 0, () => FunctionRef$
1359
+ ];
1360
+ var __listOfFunctionsResponse = [1, n0, _lOFRi,
1361
+ 0, [() => Function$,
1362
+ 0]
1363
+ ];
1364
+ var __listOfLiveSource = [1, n0, _lOLS,
1365
+ 0, [() => LiveSource$,
1366
+ 0]
1367
+ ];
1368
+ var __listOfPlaybackConfiguration = [1, n0, _lOPC,
1369
+ 0, [() => PlaybackConfiguration$,
1370
+ 0]
1371
+ ];
1372
+ var __listOfPrefetchSchedule = [1, n0, _lOPS,
1373
+ 0, [() => PrefetchSchedule$,
1374
+ 0]
1375
+ ];
1376
+ var __listOfScheduleAdBreak = [1, n0, _lOSAB,
1377
+ 0, () => ScheduleAdBreak$
1378
+ ];
1379
+ var __listOfScheduleEntry = [1, n0, _lOSE,
1380
+ 0, () => ScheduleEntry$
1381
+ ];
1382
+ var __listOfSegmentDeliveryConfiguration = [1, n0, _lOSDC,
1383
+ 0, () => SegmentDeliveryConfiguration$
1384
+ ];
1385
+ var __listOfSourceLocation = [1, n0, _lOSL,
1386
+ 0, [() => SourceLocation$,
1387
+ 0]
1388
+ ];
1389
+ var __listOfVodSource = [1, n0, _lOVS,
1390
+ 0, [() => VodSource$,
1391
+ 0]
1392
+ ];
1393
+ var AdBreakMetadataList = [1, n0, _ABML,
1394
+ 0, () => KeyValuePair$
1395
+ ];
1396
+ var AdBreakOpportunities = [1, n0, _ABOd,
1397
+ 0, () => AdBreakOpportunity$
1398
+ ];
1399
+ var HttpPackageConfigurations = [1, n0, _HPC,
1400
+ 0, () => HttpPackageConfiguration$
1401
+ ];
1402
+ var RequestOutputs = [1, n0, _RO,
1403
+ 0, () => RequestOutputItem$
1404
+ ];
1405
+ var ResponseOutputs = [1, n0, _ROe,
1406
+ 0, () => ResponseOutputItem$
1407
+ ];
1408
+ var SegmentationDescriptorList = [1, n0, _SDL,
1409
+ 0, () => SegmentationDescriptor$
1410
+ ];
1411
+ var ConfigureLogsForChannel$ = [9, n0, _CLFC,
1412
+ { [_h]: ["PUT", "/configureLogs/channel", 200] }, () => ConfigureLogsForChannelRequest$, () => ConfigureLogsForChannelResponse$
1413
+ ];
1414
+ var ConfigureLogsForPlaybackConfiguration$ = [9, n0, _CLFPC,
1415
+ { [_h]: ["PUT", "/configureLogs/playbackConfiguration", 200] }, () => ConfigureLogsForPlaybackConfigurationRequest$, () => ConfigureLogsForPlaybackConfigurationResponse$
1416
+ ];
1417
+ var CreateChannel$ = [9, n0, _CCr,
1418
+ { [_h]: ["POST", "/channel/{ChannelName}", 200] }, () => CreateChannelRequest$, () => CreateChannelResponse$
1419
+ ];
1420
+ var CreateLiveSource$ = [9, n0, _CLS,
1421
+ { [_h]: ["POST", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] }, () => CreateLiveSourceRequest$, () => CreateLiveSourceResponse$
1422
+ ];
1423
+ var CreatePrefetchSchedule$ = [9, n0, _CPS,
1424
+ { [_h]: ["POST", "/prefetchSchedule/{PlaybackConfigurationName}/{Name}", 200] }, () => CreatePrefetchScheduleRequest$, () => CreatePrefetchScheduleResponse$
1425
+ ];
1426
+ var CreateProgram$ = [9, n0, _CP,
1427
+ { [_h]: ["POST", "/channel/{ChannelName}/program/{ProgramName}", 200] }, () => CreateProgramRequest$, () => CreateProgramResponse$
1428
+ ];
1429
+ var CreateSourceLocation$ = [9, n0, _CSL,
1430
+ { [_h]: ["POST", "/sourceLocation/{SourceLocationName}", 200] }, () => CreateSourceLocationRequest$, () => CreateSourceLocationResponse$
1431
+ ];
1432
+ var CreateVodSource$ = [9, n0, _CVS,
1433
+ { [_h]: ["POST", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] }, () => CreateVodSourceRequest$, () => CreateVodSourceResponse$
1434
+ ];
1435
+ var DeleteChannel$ = [9, n0, _DCe,
1436
+ { [_h]: ["DELETE", "/channel/{ChannelName}", 200] }, () => DeleteChannelRequest$, () => DeleteChannelResponse$
1437
+ ];
1438
+ var DeleteChannelPolicy$ = [9, n0, _DCP,
1439
+ { [_h]: ["DELETE", "/channel/{ChannelName}/policy", 200] }, () => DeleteChannelPolicyRequest$, () => DeleteChannelPolicyResponse$
1440
+ ];
1441
+ var DeleteFunction$ = [9, n0, _DF,
1442
+ { [_h]: ["DELETE", "/function/{FunctionId}", 204] }, () => DeleteFunctionRequest$, () => DeleteFunctionResponse$
1443
+ ];
1444
+ var DeleteLiveSource$ = [9, n0, _DLS,
1445
+ { [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] }, () => DeleteLiveSourceRequest$, () => DeleteLiveSourceResponse$
1446
+ ];
1447
+ var DeletePlaybackConfiguration$ = [9, n0, _DPC,
1448
+ { [_h]: ["DELETE", "/playbackConfiguration/{Name}", 204] }, () => DeletePlaybackConfigurationRequest$, () => DeletePlaybackConfigurationResponse$
1449
+ ];
1450
+ var DeletePrefetchSchedule$ = [9, n0, _DPSe,
1451
+ { [_h]: ["DELETE", "/prefetchSchedule/{PlaybackConfigurationName}/{Name}", 204] }, () => DeletePrefetchScheduleRequest$, () => DeletePrefetchScheduleResponse$
1452
+ ];
1453
+ var DeleteProgram$ = [9, n0, _DP,
1454
+ { [_h]: ["DELETE", "/channel/{ChannelName}/program/{ProgramName}", 200] }, () => DeleteProgramRequest$, () => DeleteProgramResponse$
1455
+ ];
1456
+ var DeleteSourceLocation$ = [9, n0, _DSL,
1457
+ { [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}", 200] }, () => DeleteSourceLocationRequest$, () => DeleteSourceLocationResponse$
1458
+ ];
1459
+ var DeleteVodSource$ = [9, n0, _DVS,
1460
+ { [_h]: ["DELETE", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] }, () => DeleteVodSourceRequest$, () => DeleteVodSourceResponse$
1461
+ ];
1462
+ var DescribeChannel$ = [9, n0, _DCes,
1463
+ { [_h]: ["GET", "/channel/{ChannelName}", 200] }, () => DescribeChannelRequest$, () => DescribeChannelResponse$
1464
+ ];
1465
+ var DescribeLiveSource$ = [9, n0, _DLSe,
1466
+ { [_h]: ["GET", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] }, () => DescribeLiveSourceRequest$, () => DescribeLiveSourceResponse$
1467
+ ];
1468
+ var DescribeProgram$ = [9, n0, _DPe,
1469
+ { [_h]: ["GET", "/channel/{ChannelName}/program/{ProgramName}", 200] }, () => DescribeProgramRequest$, () => DescribeProgramResponse$
1470
+ ];
1471
+ var DescribeSourceLocation$ = [9, n0, _DSLe,
1472
+ { [_h]: ["GET", "/sourceLocation/{SourceLocationName}", 200] }, () => DescribeSourceLocationRequest$, () => DescribeSourceLocationResponse$
1473
+ ];
1474
+ var DescribeVodSource$ = [9, n0, _DVSe,
1475
+ { [_h]: ["GET", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] }, () => DescribeVodSourceRequest$, () => DescribeVodSourceResponse$
1476
+ ];
1477
+ var GetChannelPolicy$ = [9, n0, _GCP,
1478
+ { [_h]: ["GET", "/channel/{ChannelName}/policy", 200] }, () => GetChannelPolicyRequest$, () => GetChannelPolicyResponse$
1479
+ ];
1480
+ var GetChannelSchedule$ = [9, n0, _GCS,
1481
+ { [_h]: ["GET", "/channel/{ChannelName}/schedule", 200] }, () => GetChannelScheduleRequest$, () => GetChannelScheduleResponse$
1482
+ ];
1483
+ var GetFunction$ = [9, n0, _GF,
1484
+ { [_h]: ["GET", "/function/{FunctionId}", 200] }, () => GetFunctionRequest$, () => GetFunctionResponse$
1485
+ ];
1486
+ var GetPlaybackConfiguration$ = [9, n0, _GPC,
1487
+ { [_h]: ["GET", "/playbackConfiguration/{Name}", 200] }, () => GetPlaybackConfigurationRequest$, () => GetPlaybackConfigurationResponse$
1488
+ ];
1489
+ var GetPrefetchSchedule$ = [9, n0, _GPS,
1490
+ { [_h]: ["GET", "/prefetchSchedule/{PlaybackConfigurationName}/{Name}", 200] }, () => GetPrefetchScheduleRequest$, () => GetPrefetchScheduleResponse$
1491
+ ];
1492
+ var ListAlerts$ = [9, n0, _LA,
1493
+ { [_h]: ["GET", "/alerts", 200] }, () => ListAlertsRequest$, () => ListAlertsResponse$
1494
+ ];
1495
+ var ListChannels$ = [9, n0, _LCi,
1496
+ { [_h]: ["GET", "/channels", 200] }, () => ListChannelsRequest$, () => ListChannelsResponse$
1497
+ ];
1498
+ var ListFunctions$ = [9, n0, _LF,
1499
+ { [_h]: ["GET", "/functions", 200] }, () => ListFunctionsRequest$, () => ListFunctionsResponse$
1500
+ ];
1501
+ var ListLiveSources$ = [9, n0, _LLS,
1502
+ { [_h]: ["GET", "/sourceLocation/{SourceLocationName}/liveSources", 200] }, () => ListLiveSourcesRequest$, () => ListLiveSourcesResponse$
1503
+ ];
1504
+ var ListPlaybackConfigurations$ = [9, n0, _LPC,
1505
+ { [_h]: ["GET", "/playbackConfigurations", 200] }, () => ListPlaybackConfigurationsRequest$, () => ListPlaybackConfigurationsResponse$
1506
+ ];
1507
+ var ListPrefetchSchedules$ = [9, n0, _LPS,
1508
+ { [_h]: ["POST", "/prefetchSchedule/{PlaybackConfigurationName}", 200] }, () => ListPrefetchSchedulesRequest$, () => ListPrefetchSchedulesResponse$
1509
+ ];
1510
+ var ListSourceLocations$ = [9, n0, _LSL,
1511
+ { [_h]: ["GET", "/sourceLocations", 200] }, () => ListSourceLocationsRequest$, () => ListSourceLocationsResponse$
1512
+ ];
1513
+ var ListTagsForResource$ = [9, n0, _LTFR,
1514
+ { [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1515
+ ];
1516
+ var ListVodSources$ = [9, n0, _LVS,
1517
+ { [_h]: ["GET", "/sourceLocation/{SourceLocationName}/vodSources", 200] }, () => ListVodSourcesRequest$, () => ListVodSourcesResponse$
1518
+ ];
1519
+ var PutChannelPolicy$ = [9, n0, _PCP,
1520
+ { [_h]: ["PUT", "/channel/{ChannelName}/policy", 200] }, () => PutChannelPolicyRequest$, () => PutChannelPolicyResponse$
1521
+ ];
1522
+ var PutFunction$ = [9, n0, _PF,
1523
+ { [_h]: ["PUT", "/function/{FunctionId}", 200] }, () => PutFunctionRequest$, () => PutFunctionResponse$
1524
+ ];
1525
+ var PutPlaybackConfiguration$ = [9, n0, _PPC,
1526
+ { [_h]: ["PUT", "/playbackConfiguration", 200] }, () => PutPlaybackConfigurationRequest$, () => PutPlaybackConfigurationResponse$
1527
+ ];
1528
+ var StartChannel$ = [9, n0, _SCt,
1529
+ { [_h]: ["PUT", "/channel/{ChannelName}/start", 200] }, () => StartChannelRequest$, () => StartChannelResponse$
1530
+ ];
1531
+ var StopChannel$ = [9, n0, _SCto,
1532
+ { [_h]: ["PUT", "/channel/{ChannelName}/stop", 200] }, () => StopChannelRequest$, () => StopChannelResponse$
1533
+ ];
1534
+ var TagResource$ = [9, n0, _TR,
1535
+ { [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
1536
+ ];
1537
+ var UntagResource$ = [9, n0, _UR,
1538
+ { [_h]: ["DELETE", "/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
1539
+ ];
1540
+ var UpdateChannel$ = [9, n0, _UC,
1541
+ { [_h]: ["PUT", "/channel/{ChannelName}", 200] }, () => UpdateChannelRequest$, () => UpdateChannelResponse$
1542
+ ];
1543
+ var UpdateLiveSource$ = [9, n0, _ULS,
1544
+ { [_h]: ["PUT", "/sourceLocation/{SourceLocationName}/liveSource/{LiveSourceName}", 200] }, () => UpdateLiveSourceRequest$, () => UpdateLiveSourceResponse$
1545
+ ];
1546
+ var UpdateProgram$ = [9, n0, _UP,
1547
+ { [_h]: ["PUT", "/channel/{ChannelName}/program/{ProgramName}", 200] }, () => UpdateProgramRequest$, () => UpdateProgramResponse$
1548
+ ];
1549
+ var UpdateSourceLocation$ = [9, n0, _USL,
1550
+ { [_h]: ["PUT", "/sourceLocation/{SourceLocationName}", 200] }, () => UpdateSourceLocationRequest$, () => UpdateSourceLocationResponse$
1551
+ ];
1552
+ var UpdateVodSource$ = [9, n0, _UVS,
1553
+ { [_h]: ["PUT", "/sourceLocation/{SourceLocationName}/vodSource/{VodSourceName}", 200] }, () => UpdateVodSourceRequest$, () => UpdateVodSourceResponse$
1554
+ ];
1555
+
1556
+ const getRuntimeConfig$1 = (config) => {
1557
+ return {
1558
+ apiVersion: "2018-04-23",
1559
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1560
+ base64Encoder: config?.base64Encoder ?? toBase64,
1561
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1562
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1563
+ extensions: config?.extensions ?? [],
1564
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultMediaTailorHttpAuthSchemeProvider,
1565
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1566
+ {
1567
+ schemeId: "aws.auth#sigv4",
1568
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1569
+ signer: new AwsSdkSigV4Signer(),
1570
+ },
1571
+ ],
1572
+ logger: config?.logger ?? new NoOpLogger(),
1573
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1574
+ protocolSettings: config?.protocolSettings ?? {
1575
+ defaultNamespace: "com.amazonaws.mediatailor",
1576
+ errorTypeRegistries,
1577
+ version: "2018-04-23",
1578
+ serviceTarget: "MediaTailor",
1579
+ },
1580
+ serviceId: config?.serviceId ?? "MediaTailor",
1581
+ urlParser: config?.urlParser ?? parseUrl,
1582
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1583
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1584
+ };
1585
+ };
1586
+
1587
+ const getRuntimeConfig = (config) => {
1588
+ emitWarningIfUnsupportedVersion(process.version);
1589
+ const defaultsMode = resolveDefaultsModeConfig(config);
1590
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1591
+ const clientSharedValues = getRuntimeConfig$1(config);
1592
+ emitWarningIfUnsupportedVersion$1(process.version);
1593
+ const loaderConfig = {
1594
+ profile: config?.profile,
1595
+ logger: clientSharedValues.logger,
1596
+ };
1597
+ return {
1598
+ ...clientSharedValues,
1599
+ ...config,
1600
+ runtime: "node",
1601
+ defaultsMode,
1602
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1603
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1604
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1605
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1606
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1607
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1608
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1609
+ retryMode: config?.retryMode ??
1610
+ loadConfig({
1611
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1612
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1613
+ }, config),
1614
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1615
+ streamCollector: config?.streamCollector ?? streamCollector,
1616
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1617
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1618
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1619
+ };
1620
+ };
1621
+
34
1622
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1623
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1624
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -973,87 +2561,297 @@ const ListPrefetchScheduleType = {
973
2561
  SINGLE: "SINGLE",
974
2562
  };
975
2563
 
2564
+ exports.AccessConfiguration$ = AccessConfiguration$;
976
2565
  exports.AccessType = AccessType;
2566
+ exports.AdBreak$ = AdBreak$;
2567
+ exports.AdBreakOpportunity$ = AdBreakOpportunity$;
2568
+ exports.AdConditioningConfiguration$ = AdConditioningConfiguration$;
2569
+ exports.AdDecisionServerConfiguration$ = AdDecisionServerConfiguration$;
2570
+ exports.AdMarkerPassthrough$ = AdMarkerPassthrough$;
977
2571
  exports.AdMarkupType = AdMarkupType;
978
2572
  exports.AdsInteractionExcludeEventType = AdsInteractionExcludeEventType;
2573
+ exports.AdsInteractionLog$ = AdsInteractionLog$;
979
2574
  exports.AdsInteractionPublishOptInEventType = AdsInteractionPublishOptInEventType;
2575
+ exports.Alert$ = Alert$;
980
2576
  exports.AlertCategory = AlertCategory;
2577
+ exports.AlternateMedia$ = AlternateMedia$;
2578
+ exports.AudienceMedia$ = AudienceMedia$;
2579
+ exports.AvailMatchingCriteria$ = AvailMatchingCriteria$;
2580
+ exports.AvailSuppression$ = AvailSuppression$;
2581
+ exports.BadRequestException = BadRequestException;
2582
+ exports.BadRequestException$ = BadRequestException$;
2583
+ exports.Bumper$ = Bumper$;
2584
+ exports.CdnConfiguration$ = CdnConfiguration$;
2585
+ exports.Channel$ = Channel$;
981
2586
  exports.ChannelState = ChannelState;
2587
+ exports.ClipRange$ = ClipRange$;
982
2588
  exports.CompressionMethod = CompressionMethod;
2589
+ exports.ConfigureLogsForChannel$ = ConfigureLogsForChannel$;
983
2590
  exports.ConfigureLogsForChannelCommand = ConfigureLogsForChannelCommand;
2591
+ exports.ConfigureLogsForChannelRequest$ = ConfigureLogsForChannelRequest$;
2592
+ exports.ConfigureLogsForChannelResponse$ = ConfigureLogsForChannelResponse$;
2593
+ exports.ConfigureLogsForPlaybackConfiguration$ = ConfigureLogsForPlaybackConfiguration$;
984
2594
  exports.ConfigureLogsForPlaybackConfigurationCommand = ConfigureLogsForPlaybackConfigurationCommand;
2595
+ exports.ConfigureLogsForPlaybackConfigurationRequest$ = ConfigureLogsForPlaybackConfigurationRequest$;
2596
+ exports.ConfigureLogsForPlaybackConfigurationResponse$ = ConfigureLogsForPlaybackConfigurationResponse$;
2597
+ exports.CreateChannel$ = CreateChannel$;
985
2598
  exports.CreateChannelCommand = CreateChannelCommand;
2599
+ exports.CreateChannelRequest$ = CreateChannelRequest$;
2600
+ exports.CreateChannelResponse$ = CreateChannelResponse$;
2601
+ exports.CreateLiveSource$ = CreateLiveSource$;
986
2602
  exports.CreateLiveSourceCommand = CreateLiveSourceCommand;
2603
+ exports.CreateLiveSourceRequest$ = CreateLiveSourceRequest$;
2604
+ exports.CreateLiveSourceResponse$ = CreateLiveSourceResponse$;
2605
+ exports.CreatePrefetchSchedule$ = CreatePrefetchSchedule$;
987
2606
  exports.CreatePrefetchScheduleCommand = CreatePrefetchScheduleCommand;
2607
+ exports.CreatePrefetchScheduleRequest$ = CreatePrefetchScheduleRequest$;
2608
+ exports.CreatePrefetchScheduleResponse$ = CreatePrefetchScheduleResponse$;
2609
+ exports.CreateProgram$ = CreateProgram$;
988
2610
  exports.CreateProgramCommand = CreateProgramCommand;
2611
+ exports.CreateProgramRequest$ = CreateProgramRequest$;
2612
+ exports.CreateProgramResponse$ = CreateProgramResponse$;
2613
+ exports.CreateSourceLocation$ = CreateSourceLocation$;
989
2614
  exports.CreateSourceLocationCommand = CreateSourceLocationCommand;
2615
+ exports.CreateSourceLocationRequest$ = CreateSourceLocationRequest$;
2616
+ exports.CreateSourceLocationResponse$ = CreateSourceLocationResponse$;
2617
+ exports.CreateVodSource$ = CreateVodSource$;
990
2618
  exports.CreateVodSourceCommand = CreateVodSourceCommand;
2619
+ exports.CreateVodSourceRequest$ = CreateVodSourceRequest$;
2620
+ exports.CreateVodSourceResponse$ = CreateVodSourceResponse$;
2621
+ exports.CustomOutputConfiguration$ = CustomOutputConfiguration$;
2622
+ exports.DashConfiguration$ = DashConfiguration$;
2623
+ exports.DashConfigurationForPut$ = DashConfigurationForPut$;
2624
+ exports.DashPlaylistSettings$ = DashPlaylistSettings$;
2625
+ exports.DefaultSegmentDeliveryConfiguration$ = DefaultSegmentDeliveryConfiguration$;
2626
+ exports.DeleteChannel$ = DeleteChannel$;
991
2627
  exports.DeleteChannelCommand = DeleteChannelCommand;
2628
+ exports.DeleteChannelPolicy$ = DeleteChannelPolicy$;
992
2629
  exports.DeleteChannelPolicyCommand = DeleteChannelPolicyCommand;
2630
+ exports.DeleteChannelPolicyRequest$ = DeleteChannelPolicyRequest$;
2631
+ exports.DeleteChannelPolicyResponse$ = DeleteChannelPolicyResponse$;
2632
+ exports.DeleteChannelRequest$ = DeleteChannelRequest$;
2633
+ exports.DeleteChannelResponse$ = DeleteChannelResponse$;
2634
+ exports.DeleteFunction$ = DeleteFunction$;
993
2635
  exports.DeleteFunctionCommand = DeleteFunctionCommand;
2636
+ exports.DeleteFunctionRequest$ = DeleteFunctionRequest$;
2637
+ exports.DeleteFunctionResponse$ = DeleteFunctionResponse$;
2638
+ exports.DeleteLiveSource$ = DeleteLiveSource$;
994
2639
  exports.DeleteLiveSourceCommand = DeleteLiveSourceCommand;
2640
+ exports.DeleteLiveSourceRequest$ = DeleteLiveSourceRequest$;
2641
+ exports.DeleteLiveSourceResponse$ = DeleteLiveSourceResponse$;
2642
+ exports.DeletePlaybackConfiguration$ = DeletePlaybackConfiguration$;
995
2643
  exports.DeletePlaybackConfigurationCommand = DeletePlaybackConfigurationCommand;
2644
+ exports.DeletePlaybackConfigurationRequest$ = DeletePlaybackConfigurationRequest$;
2645
+ exports.DeletePlaybackConfigurationResponse$ = DeletePlaybackConfigurationResponse$;
2646
+ exports.DeletePrefetchSchedule$ = DeletePrefetchSchedule$;
996
2647
  exports.DeletePrefetchScheduleCommand = DeletePrefetchScheduleCommand;
2648
+ exports.DeletePrefetchScheduleRequest$ = DeletePrefetchScheduleRequest$;
2649
+ exports.DeletePrefetchScheduleResponse$ = DeletePrefetchScheduleResponse$;
2650
+ exports.DeleteProgram$ = DeleteProgram$;
997
2651
  exports.DeleteProgramCommand = DeleteProgramCommand;
2652
+ exports.DeleteProgramRequest$ = DeleteProgramRequest$;
2653
+ exports.DeleteProgramResponse$ = DeleteProgramResponse$;
2654
+ exports.DeleteSourceLocation$ = DeleteSourceLocation$;
998
2655
  exports.DeleteSourceLocationCommand = DeleteSourceLocationCommand;
2656
+ exports.DeleteSourceLocationRequest$ = DeleteSourceLocationRequest$;
2657
+ exports.DeleteSourceLocationResponse$ = DeleteSourceLocationResponse$;
2658
+ exports.DeleteVodSource$ = DeleteVodSource$;
999
2659
  exports.DeleteVodSourceCommand = DeleteVodSourceCommand;
2660
+ exports.DeleteVodSourceRequest$ = DeleteVodSourceRequest$;
2661
+ exports.DeleteVodSourceResponse$ = DeleteVodSourceResponse$;
2662
+ exports.DescribeChannel$ = DescribeChannel$;
1000
2663
  exports.DescribeChannelCommand = DescribeChannelCommand;
2664
+ exports.DescribeChannelRequest$ = DescribeChannelRequest$;
2665
+ exports.DescribeChannelResponse$ = DescribeChannelResponse$;
2666
+ exports.DescribeLiveSource$ = DescribeLiveSource$;
1001
2667
  exports.DescribeLiveSourceCommand = DescribeLiveSourceCommand;
2668
+ exports.DescribeLiveSourceRequest$ = DescribeLiveSourceRequest$;
2669
+ exports.DescribeLiveSourceResponse$ = DescribeLiveSourceResponse$;
2670
+ exports.DescribeProgram$ = DescribeProgram$;
1002
2671
  exports.DescribeProgramCommand = DescribeProgramCommand;
2672
+ exports.DescribeProgramRequest$ = DescribeProgramRequest$;
2673
+ exports.DescribeProgramResponse$ = DescribeProgramResponse$;
2674
+ exports.DescribeSourceLocation$ = DescribeSourceLocation$;
1003
2675
  exports.DescribeSourceLocationCommand = DescribeSourceLocationCommand;
2676
+ exports.DescribeSourceLocationRequest$ = DescribeSourceLocationRequest$;
2677
+ exports.DescribeSourceLocationResponse$ = DescribeSourceLocationResponse$;
2678
+ exports.DescribeVodSource$ = DescribeVodSource$;
1004
2679
  exports.DescribeVodSourceCommand = DescribeVodSourceCommand;
2680
+ exports.DescribeVodSourceRequest$ = DescribeVodSourceRequest$;
2681
+ exports.DescribeVodSourceResponse$ = DescribeVodSourceResponse$;
1005
2682
  exports.EventName = EventName;
1006
2683
  exports.FillPolicy = FillPolicy;
2684
+ exports.Function$ = Function$;
2685
+ exports.FunctionRef$ = FunctionRef$;
1007
2686
  exports.FunctionType = FunctionType;
2687
+ exports.GetChannelPolicy$ = GetChannelPolicy$;
1008
2688
  exports.GetChannelPolicyCommand = GetChannelPolicyCommand;
2689
+ exports.GetChannelPolicyRequest$ = GetChannelPolicyRequest$;
2690
+ exports.GetChannelPolicyResponse$ = GetChannelPolicyResponse$;
2691
+ exports.GetChannelSchedule$ = GetChannelSchedule$;
1009
2692
  exports.GetChannelScheduleCommand = GetChannelScheduleCommand;
2693
+ exports.GetChannelScheduleRequest$ = GetChannelScheduleRequest$;
2694
+ exports.GetChannelScheduleResponse$ = GetChannelScheduleResponse$;
2695
+ exports.GetFunction$ = GetFunction$;
1010
2696
  exports.GetFunctionCommand = GetFunctionCommand;
2697
+ exports.GetFunctionRequest$ = GetFunctionRequest$;
2698
+ exports.GetFunctionResponse$ = GetFunctionResponse$;
2699
+ exports.GetPlaybackConfiguration$ = GetPlaybackConfiguration$;
1011
2700
  exports.GetPlaybackConfigurationCommand = GetPlaybackConfigurationCommand;
2701
+ exports.GetPlaybackConfigurationRequest$ = GetPlaybackConfigurationRequest$;
2702
+ exports.GetPlaybackConfigurationResponse$ = GetPlaybackConfigurationResponse$;
2703
+ exports.GetPrefetchSchedule$ = GetPrefetchSchedule$;
1012
2704
  exports.GetPrefetchScheduleCommand = GetPrefetchScheduleCommand;
2705
+ exports.GetPrefetchScheduleRequest$ = GetPrefetchScheduleRequest$;
2706
+ exports.GetPrefetchScheduleResponse$ = GetPrefetchScheduleResponse$;
2707
+ exports.HlsConfiguration$ = HlsConfiguration$;
2708
+ exports.HlsPlaylistSettings$ = HlsPlaylistSettings$;
2709
+ exports.HttpConfiguration$ = HttpConfiguration$;
2710
+ exports.HttpPackageConfiguration$ = HttpPackageConfiguration$;
2711
+ exports.HttpRequest$ = HttpRequest$;
2712
+ exports.HttpRequestConfiguration$ = HttpRequestConfiguration$;
1013
2713
  exports.InsertionMode = InsertionMode;
2714
+ exports.KeyValuePair$ = KeyValuePair$;
2715
+ exports.ListAlerts$ = ListAlerts$;
1014
2716
  exports.ListAlertsCommand = ListAlertsCommand;
2717
+ exports.ListAlertsRequest$ = ListAlertsRequest$;
2718
+ exports.ListAlertsResponse$ = ListAlertsResponse$;
2719
+ exports.ListChannels$ = ListChannels$;
1015
2720
  exports.ListChannelsCommand = ListChannelsCommand;
2721
+ exports.ListChannelsRequest$ = ListChannelsRequest$;
2722
+ exports.ListChannelsResponse$ = ListChannelsResponse$;
2723
+ exports.ListFunctions$ = ListFunctions$;
1016
2724
  exports.ListFunctionsCommand = ListFunctionsCommand;
2725
+ exports.ListFunctionsRequest$ = ListFunctionsRequest$;
2726
+ exports.ListFunctionsResponse$ = ListFunctionsResponse$;
2727
+ exports.ListLiveSources$ = ListLiveSources$;
1017
2728
  exports.ListLiveSourcesCommand = ListLiveSourcesCommand;
2729
+ exports.ListLiveSourcesRequest$ = ListLiveSourcesRequest$;
2730
+ exports.ListLiveSourcesResponse$ = ListLiveSourcesResponse$;
2731
+ exports.ListPlaybackConfigurations$ = ListPlaybackConfigurations$;
1018
2732
  exports.ListPlaybackConfigurationsCommand = ListPlaybackConfigurationsCommand;
2733
+ exports.ListPlaybackConfigurationsRequest$ = ListPlaybackConfigurationsRequest$;
2734
+ exports.ListPlaybackConfigurationsResponse$ = ListPlaybackConfigurationsResponse$;
1019
2735
  exports.ListPrefetchScheduleType = ListPrefetchScheduleType;
2736
+ exports.ListPrefetchSchedules$ = ListPrefetchSchedules$;
1020
2737
  exports.ListPrefetchSchedulesCommand = ListPrefetchSchedulesCommand;
2738
+ exports.ListPrefetchSchedulesRequest$ = ListPrefetchSchedulesRequest$;
2739
+ exports.ListPrefetchSchedulesResponse$ = ListPrefetchSchedulesResponse$;
2740
+ exports.ListSourceLocations$ = ListSourceLocations$;
1021
2741
  exports.ListSourceLocationsCommand = ListSourceLocationsCommand;
2742
+ exports.ListSourceLocationsRequest$ = ListSourceLocationsRequest$;
2743
+ exports.ListSourceLocationsResponse$ = ListSourceLocationsResponse$;
2744
+ exports.ListTagsForResource$ = ListTagsForResource$;
1022
2745
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2746
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2747
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2748
+ exports.ListVodSources$ = ListVodSources$;
1023
2749
  exports.ListVodSourcesCommand = ListVodSourcesCommand;
2750
+ exports.ListVodSourcesRequest$ = ListVodSourcesRequest$;
2751
+ exports.ListVodSourcesResponse$ = ListVodSourcesResponse$;
2752
+ exports.LivePreRollConfiguration$ = LivePreRollConfiguration$;
2753
+ exports.LiveSource$ = LiveSource$;
2754
+ exports.LogConfiguration$ = LogConfiguration$;
2755
+ exports.LogConfigurationForChannel$ = LogConfigurationForChannel$;
1024
2756
  exports.LogType = LogType;
1025
2757
  exports.LoggingStrategy = LoggingStrategy;
2758
+ exports.ManifestProcessingRules$ = ManifestProcessingRules$;
1026
2759
  exports.ManifestServiceExcludeEventType = ManifestServiceExcludeEventType;
2760
+ exports.ManifestServiceInteractionLog$ = ManifestServiceInteractionLog$;
1027
2761
  exports.ManifestServicePublishOptInEventType = ManifestServicePublishOptInEventType;
1028
2762
  exports.MediaTailor = MediaTailor;
1029
2763
  exports.MediaTailorClient = MediaTailorClient;
2764
+ exports.MediaTailorServiceException = MediaTailorServiceException;
2765
+ exports.MediaTailorServiceException$ = MediaTailorServiceException$;
1030
2766
  exports.MessageType = MessageType;
1031
2767
  exports.Method = Method;
1032
2768
  exports.MethodType = MethodType;
1033
2769
  exports.Mode = Mode;
1034
2770
  exports.Operator = Operator;
1035
2771
  exports.OriginManifestType = OriginManifestType;
2772
+ exports.PlaybackConfiguration$ = PlaybackConfiguration$;
1036
2773
  exports.PlaybackMode = PlaybackMode;
2774
+ exports.PrefetchConsumption$ = PrefetchConsumption$;
2775
+ exports.PrefetchRetrieval$ = PrefetchRetrieval$;
2776
+ exports.PrefetchSchedule$ = PrefetchSchedule$;
1037
2777
  exports.PrefetchScheduleType = PrefetchScheduleType;
2778
+ exports.PutChannelPolicy$ = PutChannelPolicy$;
1038
2779
  exports.PutChannelPolicyCommand = PutChannelPolicyCommand;
2780
+ exports.PutChannelPolicyRequest$ = PutChannelPolicyRequest$;
2781
+ exports.PutChannelPolicyResponse$ = PutChannelPolicyResponse$;
2782
+ exports.PutFunction$ = PutFunction$;
1039
2783
  exports.PutFunctionCommand = PutFunctionCommand;
2784
+ exports.PutFunctionRequest$ = PutFunctionRequest$;
2785
+ exports.PutFunctionResponse$ = PutFunctionResponse$;
2786
+ exports.PutPlaybackConfiguration$ = PutPlaybackConfiguration$;
1040
2787
  exports.PutPlaybackConfigurationCommand = PutPlaybackConfigurationCommand;
2788
+ exports.PutPlaybackConfigurationRequest$ = PutPlaybackConfigurationRequest$;
2789
+ exports.PutPlaybackConfigurationResponse$ = PutPlaybackConfigurationResponse$;
2790
+ exports.RecurringConsumption$ = RecurringConsumption$;
2791
+ exports.RecurringPrefetchConfiguration$ = RecurringPrefetchConfiguration$;
2792
+ exports.RecurringRetrieval$ = RecurringRetrieval$;
1041
2793
  exports.RelativePosition = RelativePosition;
2794
+ exports.RequestOutputItem$ = RequestOutputItem$;
2795
+ exports.ResponseOutputItem$ = ResponseOutputItem$;
1042
2796
  exports.RuntimeType = RuntimeType;
2797
+ exports.ScheduleAdBreak$ = ScheduleAdBreak$;
2798
+ exports.ScheduleConfiguration$ = ScheduleConfiguration$;
2799
+ exports.ScheduleEntry$ = ScheduleEntry$;
1043
2800
  exports.ScheduleEntryType = ScheduleEntryType;
2801
+ exports.SecretsManagerAccessTokenConfiguration$ = SecretsManagerAccessTokenConfiguration$;
2802
+ exports.SegmentDeliveryConfiguration$ = SegmentDeliveryConfiguration$;
2803
+ exports.SegmentationDescriptor$ = SegmentationDescriptor$;
2804
+ exports.SequentialExecutorConfiguration$ = SequentialExecutorConfiguration$;
2805
+ exports.SlateSource$ = SlateSource$;
2806
+ exports.SourceLocation$ = SourceLocation$;
2807
+ exports.SpliceInsertMessage$ = SpliceInsertMessage$;
2808
+ exports.StartChannel$ = StartChannel$;
1044
2809
  exports.StartChannelCommand = StartChannelCommand;
2810
+ exports.StartChannelRequest$ = StartChannelRequest$;
2811
+ exports.StartChannelResponse$ = StartChannelResponse$;
2812
+ exports.StopChannel$ = StopChannel$;
1045
2813
  exports.StopChannelCommand = StopChannelCommand;
2814
+ exports.StopChannelRequest$ = StopChannelRequest$;
2815
+ exports.StopChannelResponse$ = StopChannelResponse$;
1046
2816
  exports.StreamingMediaFileConditioning = StreamingMediaFileConditioning;
2817
+ exports.TagResource$ = TagResource$;
1047
2818
  exports.TagResourceCommand = TagResourceCommand;
2819
+ exports.TagResourceRequest$ = TagResourceRequest$;
1048
2820
  exports.Tier = Tier;
2821
+ exports.TimeShiftConfiguration$ = TimeShiftConfiguration$;
2822
+ exports.TimeSignalMessage$ = TimeSignalMessage$;
2823
+ exports.TrafficShapingRetrievalWindow$ = TrafficShapingRetrievalWindow$;
2824
+ exports.TrafficShapingTpsConfiguration$ = TrafficShapingTpsConfiguration$;
1049
2825
  exports.TrafficShapingType = TrafficShapingType;
2826
+ exports.Transition$ = Transition$;
1050
2827
  exports.Type = Type;
2828
+ exports.UntagResource$ = UntagResource$;
1051
2829
  exports.UntagResourceCommand = UntagResourceCommand;
2830
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2831
+ exports.UpdateChannel$ = UpdateChannel$;
1052
2832
  exports.UpdateChannelCommand = UpdateChannelCommand;
2833
+ exports.UpdateChannelRequest$ = UpdateChannelRequest$;
2834
+ exports.UpdateChannelResponse$ = UpdateChannelResponse$;
2835
+ exports.UpdateLiveSource$ = UpdateLiveSource$;
1053
2836
  exports.UpdateLiveSourceCommand = UpdateLiveSourceCommand;
2837
+ exports.UpdateLiveSourceRequest$ = UpdateLiveSourceRequest$;
2838
+ exports.UpdateLiveSourceResponse$ = UpdateLiveSourceResponse$;
2839
+ exports.UpdateProgram$ = UpdateProgram$;
1054
2840
  exports.UpdateProgramCommand = UpdateProgramCommand;
2841
+ exports.UpdateProgramRequest$ = UpdateProgramRequest$;
2842
+ exports.UpdateProgramResponse$ = UpdateProgramResponse$;
2843
+ exports.UpdateProgramScheduleConfiguration$ = UpdateProgramScheduleConfiguration$;
2844
+ exports.UpdateProgramTransition$ = UpdateProgramTransition$;
2845
+ exports.UpdateSourceLocation$ = UpdateSourceLocation$;
1055
2846
  exports.UpdateSourceLocationCommand = UpdateSourceLocationCommand;
2847
+ exports.UpdateSourceLocationRequest$ = UpdateSourceLocationRequest$;
2848
+ exports.UpdateSourceLocationResponse$ = UpdateSourceLocationResponse$;
2849
+ exports.UpdateVodSource$ = UpdateVodSource$;
1056
2850
  exports.UpdateVodSourceCommand = UpdateVodSourceCommand;
2851
+ exports.UpdateVodSourceRequest$ = UpdateVodSourceRequest$;
2852
+ exports.UpdateVodSourceResponse$ = UpdateVodSourceResponse$;
2853
+ exports.VodSource$ = VodSource$;
2854
+ exports.errorTypeRegistries = errorTypeRegistries;
1057
2855
  exports.paginateGetChannelSchedule = paginateGetChannelSchedule;
1058
2856
  exports.paginateListAlerts = paginateListAlerts;
1059
2857
  exports.paginateListChannels = paginateListChannels;