aws-sdk 2.774.0 → 2.778.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.
@@ -69,6 +69,12 @@ declare class MediaTailor extends Service {
69
69
  untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
70
70
  }
71
71
  declare namespace MediaTailor {
72
+ export interface AdMarkerPassthrough {
73
+ /**
74
+ * For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest.No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.
75
+ */
76
+ Enabled?: __boolean;
77
+ }
72
78
  export interface AvailSuppression {
73
79
  /**
74
80
  * Sets the mode for avail suppression, also known as ad suppression. By default, ad suppression is off and all ad breaks are filled by MediaTailor with ads or slate.
@@ -166,6 +172,10 @@ declare namespace MediaTailor {
166
172
  * The configuration for pre-roll ad insertion.
167
173
  */
168
174
  LivePreRollConfiguration?: LivePreRollConfiguration;
175
+ /**
176
+ * The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
177
+ */
178
+ ManifestProcessingRules?: ManifestProcessingRules;
169
179
  /**
170
180
  * The identifier for the playback configuration.
171
181
  */
@@ -247,6 +257,9 @@ declare namespace MediaTailor {
247
257
  Tags?: __mapOf__string;
248
258
  }
249
259
  export type OriginManifestType = "SINGLE_PERIOD"|"MULTI_PERIOD"|string;
260
+ export interface ManifestProcessingRules {
261
+ AdMarkerPassthrough?: AdMarkerPassthrough;
262
+ }
250
263
  export type Mode = "OFF"|"BEHIND_LIVE_EDGE"|string;
251
264
  export interface PlaybackConfiguration {
252
265
  /**
@@ -273,6 +286,10 @@ declare namespace MediaTailor {
273
286
  * The configuration for HLS content.
274
287
  */
275
288
  HlsConfiguration?: HlsConfiguration;
289
+ /**
290
+ * The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
291
+ */
292
+ ManifestProcessingRules?: ManifestProcessingRules;
276
293
  /**
277
294
  * The identifier for the playback configuration.
278
295
  */
@@ -345,6 +362,10 @@ declare namespace MediaTailor {
345
362
  * The configuration for pre-roll ad insertion.
346
363
  */
347
364
  LivePreRollConfiguration?: LivePreRollConfiguration;
365
+ /**
366
+ * The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
367
+ */
368
+ ManifestProcessingRules?: ManifestProcessingRules;
348
369
  /**
349
370
  * The identifier for the playback configuration.
350
371
  */
@@ -399,6 +420,10 @@ declare namespace MediaTailor {
399
420
  * The configuration for pre-roll ad insertion.
400
421
  */
401
422
  LivePreRollConfiguration?: LivePreRollConfiguration;
423
+ /**
424
+ * The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.
425
+ */
426
+ ManifestProcessingRules?: ManifestProcessingRules;
402
427
  /**
403
428
  * The identifier for the playback configuration.
404
429
  */
@@ -461,6 +486,7 @@ declare namespace MediaTailor {
461
486
  */
462
487
  TagKeys: __listOf__string;
463
488
  }
489
+ export type __boolean = boolean;
464
490
  export type __integer = number;
465
491
  export type __integerMin1 = number;
466
492
  export type __integerMin1Max100 = number;