@aws-sdk/client-mediapackage 3.451.0 → 3.453.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.
@@ -68,6 +68,7 @@ exports.StreamOrder = {
68
68
  };
69
69
  exports.ManifestLayout = {
70
70
  COMPACT: "COMPACT",
71
+ DRM_TOP_LEVEL_COMPACT: "DRM_TOP_LEVEL_COMPACT",
71
72
  FULL: "FULL",
72
73
  };
73
74
  exports.Profile = {
@@ -65,6 +65,7 @@ export const StreamOrder = {
65
65
  };
66
66
  export const ManifestLayout = {
67
67
  COMPACT: "COMPACT",
68
+ DRM_TOP_LEVEL_COMPACT: "DRM_TOP_LEVEL_COMPACT",
68
69
  FULL: "FULL",
69
70
  };
70
71
  export const Profile = {
@@ -100,7 +100,7 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
100
100
  * },
101
101
  * },
102
102
  * IncludeIframeOnlyStream: true || false,
103
- * ManifestLayout: "FULL" || "COMPACT",
103
+ * ManifestLayout: "FULL" || "COMPACT" || "DRM_TOP_LEVEL_COMPACT",
104
104
  * ManifestWindowSeconds: Number("int"),
105
105
  * MinBufferTimeSeconds: Number("int"),
106
106
  * MinUpdatePeriodSeconds: Number("int"),
@@ -269,7 +269,7 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
269
269
  * // },
270
270
  * // },
271
271
  * // IncludeIframeOnlyStream: true || false,
272
- * // ManifestLayout: "FULL" || "COMPACT",
272
+ * // ManifestLayout: "FULL" || "COMPACT" || "DRM_TOP_LEVEL_COMPACT",
273
273
  * // ManifestWindowSeconds: Number("int"),
274
274
  * // MinBufferTimeSeconds: Number("int"),
275
275
  * // MinUpdatePeriodSeconds: Number("int"),
@@ -108,7 +108,7 @@ export interface DescribeOriginEndpointCommandOutput extends DescribeOriginEndpo
108
108
  * // },
109
109
  * // },
110
110
  * // IncludeIframeOnlyStream: true || false,
111
- * // ManifestLayout: "FULL" || "COMPACT",
111
+ * // ManifestLayout: "FULL" || "COMPACT" || "DRM_TOP_LEVEL_COMPACT",
112
112
  * // ManifestWindowSeconds: Number("int"),
113
113
  * // MinBufferTimeSeconds: Number("int"),
114
114
  * // MinUpdatePeriodSeconds: Number("int"),
@@ -113,7 +113,7 @@ export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes
113
113
  * // },
114
114
  * // },
115
115
  * // IncludeIframeOnlyStream: true || false,
116
- * // ManifestLayout: "FULL" || "COMPACT",
116
+ * // ManifestLayout: "FULL" || "COMPACT" || "DRM_TOP_LEVEL_COMPACT",
117
117
  * // ManifestWindowSeconds: Number("int"),
118
118
  * // MinBufferTimeSeconds: Number("int"),
119
119
  * // MinUpdatePeriodSeconds: Number("int"),
@@ -99,7 +99,7 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
99
99
  * },
100
100
  * },
101
101
  * IncludeIframeOnlyStream: true || false,
102
- * ManifestLayout: "FULL" || "COMPACT",
102
+ * ManifestLayout: "FULL" || "COMPACT" || "DRM_TOP_LEVEL_COMPACT",
103
103
  * ManifestWindowSeconds: Number("int"),
104
104
  * MinBufferTimeSeconds: Number("int"),
105
105
  * MinUpdatePeriodSeconds: Number("int"),
@@ -265,7 +265,7 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
265
265
  * // },
266
266
  * // },
267
267
  * // IncludeIframeOnlyStream: true || false,
268
- * // ManifestLayout: "FULL" || "COMPACT",
268
+ * // ManifestLayout: "FULL" || "COMPACT" || "DRM_TOP_LEVEL_COMPACT",
269
269
  * // ManifestWindowSeconds: Number("int"),
270
270
  * // MinBufferTimeSeconds: Number("int"),
271
271
  * // MinUpdatePeriodSeconds: Number("int"),
@@ -667,6 +667,7 @@ export interface DashEncryption {
667
667
  */
668
668
  export declare const ManifestLayout: {
669
669
  readonly COMPACT: "COMPACT";
670
+ readonly DRM_TOP_LEVEL_COMPACT: "DRM_TOP_LEVEL_COMPACT";
670
671
  readonly FULL: "FULL";
671
672
  };
672
673
  /**
@@ -750,7 +751,7 @@ export interface DashPackage {
750
751
  IncludeIframeOnlyStream?: boolean;
751
752
  /**
752
753
  * @public
753
- * Determines the position of some tags in the Media Presentation Description (MPD). When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation. When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level.
754
+ * Determines the position of some tags in the Media Presentation Description (MPD). When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation. When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level. When set to DRM_TOP_LEVEL_COMPACT, content protection elements are placed the MPD level and referenced at the AdaptationSet level.
754
755
  */
755
756
  ManifestLayout?: ManifestLayout;
756
757
  /**
@@ -183,6 +183,7 @@ export interface DashEncryption {
183
183
  }
184
184
  export declare const ManifestLayout: {
185
185
  readonly COMPACT: "COMPACT";
186
+ readonly DRM_TOP_LEVEL_COMPACT: "DRM_TOP_LEVEL_COMPACT";
186
187
  readonly FULL: "FULL";
187
188
  };
188
189
  export type ManifestLayout =
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediapackage",
3
3
  "description": "AWS SDK for JavaScript Mediapackage Client for Node.js, Browser and React Native",
4
- "version": "3.451.0",
4
+ "version": "3.453.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",