@aws-sdk/client-mediapackage-vod 3.204.0 → 3.207.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.
@@ -1450,6 +1450,7 @@ const serializeAws_restJson1DashPackage = (input, context) => {
1450
1450
  ...(input.IncludeEncoderConfigurationInSegments != null && {
1451
1451
  includeEncoderConfigurationInSegments: input.IncludeEncoderConfigurationInSegments,
1452
1452
  }),
1453
+ ...(input.IncludeIframeOnlyStream != null && { includeIframeOnlyStream: input.IncludeIframeOnlyStream }),
1453
1454
  ...(input.PeriodTriggers != null && {
1454
1455
  periodTriggers: serializeAws_restJson1__listOf__PeriodTriggersElement(input.PeriodTriggers, context),
1455
1456
  }),
@@ -1728,6 +1729,7 @@ const deserializeAws_restJson1DashPackage = (output, context) => {
1728
1729
  : undefined,
1729
1730
  Encryption: output.encryption != null ? deserializeAws_restJson1DashEncryption(output.encryption, context) : undefined,
1730
1731
  IncludeEncoderConfigurationInSegments: (0, smithy_client_1.expectBoolean)(output.includeEncoderConfigurationInSegments),
1732
+ IncludeIframeOnlyStream: (0, smithy_client_1.expectBoolean)(output.includeIframeOnlyStream),
1731
1733
  PeriodTriggers: output.periodTriggers != null
1732
1734
  ? deserializeAws_restJson1__listOf__PeriodTriggersElement(output.periodTriggers, context)
1733
1735
  : undefined,
@@ -1413,6 +1413,7 @@ const serializeAws_restJson1DashPackage = (input, context) => {
1413
1413
  ...(input.IncludeEncoderConfigurationInSegments != null && {
1414
1414
  includeEncoderConfigurationInSegments: input.IncludeEncoderConfigurationInSegments,
1415
1415
  }),
1416
+ ...(input.IncludeIframeOnlyStream != null && { includeIframeOnlyStream: input.IncludeIframeOnlyStream }),
1416
1417
  ...(input.PeriodTriggers != null && {
1417
1418
  periodTriggers: serializeAws_restJson1__listOf__PeriodTriggersElement(input.PeriodTriggers, context),
1418
1419
  }),
@@ -1691,6 +1692,7 @@ const deserializeAws_restJson1DashPackage = (output, context) => {
1691
1692
  : undefined,
1692
1693
  Encryption: output.encryption != null ? deserializeAws_restJson1DashEncryption(output.encryption, context) : undefined,
1693
1694
  IncludeEncoderConfigurationInSegments: __expectBoolean(output.includeEncoderConfigurationInSegments),
1695
+ IncludeIframeOnlyStream: __expectBoolean(output.includeIframeOnlyStream),
1694
1696
  PeriodTriggers: output.periodTriggers != null
1695
1697
  ? deserializeAws_restJson1__listOf__PeriodTriggersElement(output.periodTriggers, context)
1696
1698
  : undefined,
@@ -309,6 +309,10 @@ export interface DashPackage {
309
309
  * When includeEncoderConfigurationInSegments is set to true, MediaPackage places your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata in every video segment instead of in the init fragment. This lets you use different SPS/PPS/VPS settings for your assets during content playback.
310
310
  */
311
311
  IncludeEncoderConfigurationInSegments?: boolean;
312
+ /**
313
+ * When enabled, an I-Frame only stream will be included in the output.
314
+ */
315
+ IncludeIframeOnlyStream?: boolean;
312
316
  /**
313
317
  * A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH)
314
318
  * Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not
@@ -116,6 +116,7 @@ export interface DashPackage {
116
116
  DashManifests: DashManifest[] | undefined;
117
117
  Encryption?: DashEncryption;
118
118
  IncludeEncoderConfigurationInSegments?: boolean;
119
+ IncludeIframeOnlyStream?: boolean;
119
120
  PeriodTriggers?: (__PeriodTriggersElement | string)[];
120
121
  SegmentDurationSeconds?: number;
121
122
  SegmentTemplateFormat?: SegmentTemplateFormat | string;
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.204.0",
4
+ "version": "3.207.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",