@aws-sdk/client-mediapackage-vod 3.58.0 → 3.67.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.67.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.66.0...v3.67.0) (2022-04-08)
7
+
8
+
9
+ ### Features
10
+
11
+ * **client-mediapackage-vod:** This release adds ScteMarkersSource as an available field for Dash Packaging Configurations. When set to MANIFEST, MediaPackage will source the SCTE-35 markers from the manifest. When set to SEGMENTS, MediaPackage will source the SCTE-35 markers from the segments. ([fc43d06](https://github.com/aws/aws-sdk-js-v3/commit/fc43d06a17b13401d4b4ccb3968e40aa1455b8d8))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-mediapackage-vod
package/README.md CHANGED
@@ -115,7 +115,7 @@ but they are supported by the send operation.
115
115
  ```js
116
116
  // callbacks.
117
117
  client.send(command, (err, data) => {
118
- // proccess err and data.
118
+ // process err and data.
119
119
  });
120
120
  ```
121
121
 
@@ -149,7 +149,7 @@ client
149
149
 
150
150
  // callbacks.
151
151
  client.configureLogs(params, (err, data) => {
152
- // proccess err and data.
152
+ // process err and data.
153
153
  });
154
154
  ```
155
155
 
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribePackagingConfigurationResponse = exports.DescribePackagingConfigurationRequest = exports.DescribeAssetResponse = exports.DescribeAssetRequest = exports.DeletePackagingGroupResponse = exports.DeletePackagingGroupRequest = exports.DeletePackagingConfigurationResponse = exports.DeletePackagingConfigurationRequest = exports.DeleteAssetResponse = exports.DeleteAssetRequest = exports.CreatePackagingGroupResponse = exports.CreatePackagingGroupRequest = exports.CreatePackagingConfigurationResponse = exports.CreatePackagingConfigurationRequest = exports.CreateAssetResponse = exports.CreateAssetRequest = exports.UnprocessableEntityException = exports.TooManyRequestsException = exports.ServiceUnavailableException = exports.NotFoundException = exports.InternalServerErrorException = exports.ForbiddenException = exports.ConfigureLogsResponse = exports.ConfigureLogsRequest = exports.PackagingGroup = exports.EgressAccessLogs = exports.Authorization = exports.PackagingConfiguration = exports.MssPackage = exports.MssEncryption = exports.HlsPackage = exports.HlsEncryption = exports.EncryptionMethod = exports.DashPackage = exports.SegmentTemplateFormat = exports.DashEncryption = exports.CmafPackage = exports.CmafEncryption = exports.SpekeKeyProvider = exports.MssManifest = exports.HlsManifest = exports.AdMarkers = exports.EgressEndpoint = exports.DashManifest = exports.StreamSelection = exports.StreamOrder = exports.Profile = exports.ManifestLayout = exports.AssetShallow = exports.__PeriodTriggersElement = void 0;
4
- exports.UpdatePackagingGroupResponse = exports.UpdatePackagingGroupRequest = exports.UntagResourceRequest = exports.TagResourceRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListPackagingGroupsResponse = exports.ListPackagingGroupsRequest = exports.ListPackagingConfigurationsResponse = exports.ListPackagingConfigurationsRequest = exports.ListAssetsResponse = exports.ListAssetsRequest = exports.DescribePackagingGroupResponse = exports.DescribePackagingGroupRequest = void 0;
3
+ exports.DescribePackagingConfigurationRequest = exports.DescribeAssetResponse = exports.DescribeAssetRequest = exports.DeletePackagingGroupResponse = exports.DeletePackagingGroupRequest = exports.DeletePackagingConfigurationResponse = exports.DeletePackagingConfigurationRequest = exports.DeleteAssetResponse = exports.DeleteAssetRequest = exports.CreatePackagingGroupResponse = exports.CreatePackagingGroupRequest = exports.CreatePackagingConfigurationResponse = exports.CreatePackagingConfigurationRequest = exports.CreateAssetResponse = exports.CreateAssetRequest = exports.UnprocessableEntityException = exports.TooManyRequestsException = exports.ServiceUnavailableException = exports.NotFoundException = exports.InternalServerErrorException = exports.ForbiddenException = exports.ConfigureLogsResponse = exports.ConfigureLogsRequest = exports.PackagingGroup = exports.EgressAccessLogs = exports.Authorization = exports.PackagingConfiguration = exports.MssPackage = exports.MssEncryption = exports.HlsPackage = exports.HlsEncryption = exports.EncryptionMethod = exports.DashPackage = exports.SegmentTemplateFormat = exports.DashEncryption = exports.CmafPackage = exports.CmafEncryption = exports.SpekeKeyProvider = exports.MssManifest = exports.HlsManifest = exports.AdMarkers = exports.EgressEndpoint = exports.DashManifest = exports.StreamSelection = exports.StreamOrder = exports.ScteMarkersSource = exports.Profile = exports.ManifestLayout = exports.AssetShallow = exports.__PeriodTriggersElement = void 0;
4
+ exports.UpdatePackagingGroupResponse = exports.UpdatePackagingGroupRequest = exports.UntagResourceRequest = exports.TagResourceRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListPackagingGroupsResponse = exports.ListPackagingGroupsRequest = exports.ListPackagingConfigurationsResponse = exports.ListPackagingConfigurationsRequest = exports.ListAssetsResponse = exports.ListAssetsRequest = exports.DescribePackagingGroupResponse = exports.DescribePackagingGroupRequest = exports.DescribePackagingConfigurationResponse = void 0;
5
5
  const MediaPackageVodServiceException_1 = require("./MediaPackageVodServiceException");
6
6
  var __PeriodTriggersElement;
7
7
  (function (__PeriodTriggersElement) {
@@ -23,6 +23,11 @@ var Profile;
23
23
  Profile["HBBTV_1_5"] = "HBBTV_1_5";
24
24
  Profile["NONE"] = "NONE";
25
25
  })(Profile = exports.Profile || (exports.Profile = {}));
26
+ var ScteMarkersSource;
27
+ (function (ScteMarkersSource) {
28
+ ScteMarkersSource["MANIFEST"] = "MANIFEST";
29
+ ScteMarkersSource["SEGMENTS"] = "SEGMENTS";
30
+ })(ScteMarkersSource = exports.ScteMarkersSource || (exports.ScteMarkersSource = {}));
26
31
  var StreamOrder;
27
32
  (function (StreamOrder) {
28
33
  StreamOrder["ORIGINAL"] = "ORIGINAL";
@@ -1678,6 +1678,8 @@ const serializeAws_restJson1DashManifest = (input, context) => {
1678
1678
  ...(input.MinBufferTimeSeconds !== undefined &&
1679
1679
  input.MinBufferTimeSeconds !== null && { minBufferTimeSeconds: input.MinBufferTimeSeconds }),
1680
1680
  ...(input.Profile !== undefined && input.Profile !== null && { profile: input.Profile }),
1681
+ ...(input.ScteMarkersSource !== undefined &&
1682
+ input.ScteMarkersSource !== null && { scteMarkersSource: input.ScteMarkersSource }),
1681
1683
  ...(input.StreamSelection !== undefined &&
1682
1684
  input.StreamSelection !== null && {
1683
1685
  streamSelection: serializeAws_restJson1StreamSelection(input.StreamSelection, context),
@@ -1978,6 +1980,7 @@ const deserializeAws_restJson1DashManifest = (output, context) => {
1978
1980
  ManifestName: (0, smithy_client_1.expectString)(output.manifestName),
1979
1981
  MinBufferTimeSeconds: (0, smithy_client_1.expectInt32)(output.minBufferTimeSeconds),
1980
1982
  Profile: (0, smithy_client_1.expectString)(output.profile),
1983
+ ScteMarkersSource: (0, smithy_client_1.expectString)(output.scteMarkersSource),
1981
1984
  StreamSelection: output.streamSelection !== undefined && output.streamSelection !== null
1982
1985
  ? deserializeAws_restJson1StreamSelection(output.streamSelection, context)
1983
1986
  : undefined,
@@ -18,6 +18,11 @@ export var Profile;
18
18
  Profile["HBBTV_1_5"] = "HBBTV_1_5";
19
19
  Profile["NONE"] = "NONE";
20
20
  })(Profile || (Profile = {}));
21
+ export var ScteMarkersSource;
22
+ (function (ScteMarkersSource) {
23
+ ScteMarkersSource["MANIFEST"] = "MANIFEST";
24
+ ScteMarkersSource["SEGMENTS"] = "SEGMENTS";
25
+ })(ScteMarkersSource || (ScteMarkersSource = {}));
21
26
  export var StreamOrder;
22
27
  (function (StreamOrder) {
23
28
  StreamOrder["ORIGINAL"] = "ORIGINAL";
@@ -2078,9 +2078,10 @@ var serializeAws_restJson1DashEncryption = function (input, context) {
2078
2078
  }));
2079
2079
  };
2080
2080
  var serializeAws_restJson1DashManifest = function (input, context) {
2081
- return __assign(__assign(__assign(__assign(__assign({}, (input.ManifestLayout !== undefined &&
2081
+ return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.ManifestLayout !== undefined &&
2082
2082
  input.ManifestLayout !== null && { manifestLayout: input.ManifestLayout })), (input.ManifestName !== undefined && input.ManifestName !== null && { manifestName: input.ManifestName })), (input.MinBufferTimeSeconds !== undefined &&
2083
- input.MinBufferTimeSeconds !== null && { minBufferTimeSeconds: input.MinBufferTimeSeconds })), (input.Profile !== undefined && input.Profile !== null && { profile: input.Profile })), (input.StreamSelection !== undefined &&
2083
+ input.MinBufferTimeSeconds !== null && { minBufferTimeSeconds: input.MinBufferTimeSeconds })), (input.Profile !== undefined && input.Profile !== null && { profile: input.Profile })), (input.ScteMarkersSource !== undefined &&
2084
+ input.ScteMarkersSource !== null && { scteMarkersSource: input.ScteMarkersSource })), (input.StreamSelection !== undefined &&
2084
2085
  input.StreamSelection !== null && {
2085
2086
  streamSelection: serializeAws_restJson1StreamSelection(input.StreamSelection, context),
2086
2087
  }));
@@ -2334,6 +2335,7 @@ var deserializeAws_restJson1DashManifest = function (output, context) {
2334
2335
  ManifestName: __expectString(output.manifestName),
2335
2336
  MinBufferTimeSeconds: __expectInt32(output.minBufferTimeSeconds),
2336
2337
  Profile: __expectString(output.profile),
2338
+ ScteMarkersSource: __expectString(output.scteMarkersSource),
2337
2339
  StreamSelection: output.streamSelection !== undefined && output.streamSelection !== null
2338
2340
  ? deserializeAws_restJson1StreamSelection(output.streamSelection, context)
2339
2341
  : undefined,
@@ -56,6 +56,10 @@ export declare enum Profile {
56
56
  HBBTV_1_5 = "HBBTV_1_5",
57
57
  NONE = "NONE"
58
58
  }
59
+ export declare enum ScteMarkersSource {
60
+ MANIFEST = "MANIFEST",
61
+ SEGMENTS = "SEGMENTS"
62
+ }
59
63
  export declare enum StreamOrder {
60
64
  ORIGINAL = "ORIGINAL",
61
65
  VIDEO_BITRATE_ASCENDING = "VIDEO_BITRATE_ASCENDING",
@@ -104,6 +108,10 @@ export interface DashManifest {
104
108
  * The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
105
109
  */
106
110
  Profile?: Profile | string;
111
+ /**
112
+ * The source of scte markers used. When set to SEGMENTS, the scte markers are sourced from the segments of the ingested content. When set to MANIFEST, the scte markers are sourced from the manifest of the ingested content.
113
+ */
114
+ ScteMarkersSource?: ScteMarkersSource | string;
107
115
  /**
108
116
  * A StreamSelection configuration.
109
117
  */
@@ -36,6 +36,10 @@ export declare enum Profile {
36
36
  HBBTV_1_5 = "HBBTV_1_5",
37
37
  NONE = "NONE"
38
38
  }
39
+ export declare enum ScteMarkersSource {
40
+ MANIFEST = "MANIFEST",
41
+ SEGMENTS = "SEGMENTS"
42
+ }
39
43
  export declare enum StreamOrder {
40
44
  ORIGINAL = "ORIGINAL",
41
45
  VIDEO_BITRATE_ASCENDING = "VIDEO_BITRATE_ASCENDING",
@@ -65,6 +69,8 @@ export interface DashManifest {
65
69
 
66
70
  Profile?: Profile | string;
67
71
 
72
+ ScteMarkersSource?: ScteMarkersSource | string;
73
+
68
74
  StreamSelection?: StreamSelection;
69
75
  }
70
76
  export declare namespace DashManifest {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediapackage-vod",
3
3
  "description": "AWS SDK for JavaScript Mediapackage Vod Client for Node.js, Browser and React Native",
4
- "version": "3.58.0",
4
+ "version": "3.67.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",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.67.0",
22
22
  "@aws-sdk/config-resolver": "3.58.0",
23
- "@aws-sdk/credential-provider-node": "3.58.0",
23
+ "@aws-sdk/credential-provider-node": "3.67.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.58.0",
25
25
  "@aws-sdk/hash-node": "3.55.0",
26
26
  "@aws-sdk/invalid-dependency": "3.55.0",