@aws-sdk/client-medialive 3.42.0 → 3.43.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.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients as of 11/28/2021 ([#3072](https://github.com/aws/aws-sdk-js-v3/issues/3072)) ([2ad1622](https://github.com/aws/aws-sdk-js-v3/commit/2ad1622ba8586b926fe508055211803bb29e3976))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-medialive
@@ -9781,6 +9781,7 @@ const serializeAws_restJson1InputSettings = (input, context) => {
9781
9781
  input.NetworkInputSettings !== null && {
9782
9782
  networkInputSettings: serializeAws_restJson1NetworkInputSettings(input.NetworkInputSettings, context),
9783
9783
  }),
9784
+ ...(input.Scte35Pid !== undefined && input.Scte35Pid !== null && { scte35Pid: input.Scte35Pid }),
9784
9785
  ...(input.Smpte2038DataPreference !== undefined &&
9785
9786
  input.Smpte2038DataPreference !== null && { smpte2038DataPreference: input.Smpte2038DataPreference }),
9786
9787
  ...(input.SourceEndBehavior !== undefined &&
@@ -12526,6 +12527,7 @@ const deserializeAws_restJson1InputSettings = (output, context) => {
12526
12527
  NetworkInputSettings: output.networkInputSettings !== undefined && output.networkInputSettings !== null
12527
12528
  ? deserializeAws_restJson1NetworkInputSettings(output.networkInputSettings, context)
12528
12529
  : undefined,
12530
+ Scte35Pid: smithy_client_1.expectInt32(output.scte35Pid),
12529
12531
  Smpte2038DataPreference: smithy_client_1.expectString(output.smpte2038DataPreference),
12530
12532
  SourceEndBehavior: smithy_client_1.expectString(output.sourceEndBehavior),
12531
12533
  VideoSelector: output.videoSelector !== undefined && output.videoSelector !== null
@@ -10173,7 +10173,7 @@ var serializeAws_restJson1InputPrepareScheduleActionSettings = function (input,
10173
10173
  input.UrlPath !== null && { urlPath: serializeAws_restJson1__listOf__string(input.UrlPath, context) }));
10174
10174
  };
10175
10175
  var serializeAws_restJson1InputSettings = function (input, context) {
10176
- return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioSelectors !== undefined &&
10176
+ return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AudioSelectors !== undefined &&
10177
10177
  input.AudioSelectors !== null && {
10178
10178
  audioSelectors: serializeAws_restJson1__listOfAudioSelector(input.AudioSelectors, context),
10179
10179
  })), (input.CaptionSelectors !== undefined &&
@@ -10183,7 +10183,7 @@ var serializeAws_restJson1InputSettings = function (input, context) {
10183
10183
  input.FilterStrength !== null && { filterStrength: input.FilterStrength })), (input.InputFilter !== undefined && input.InputFilter !== null && { inputFilter: input.InputFilter })), (input.NetworkInputSettings !== undefined &&
10184
10184
  input.NetworkInputSettings !== null && {
10185
10185
  networkInputSettings: serializeAws_restJson1NetworkInputSettings(input.NetworkInputSettings, context),
10186
- })), (input.Smpte2038DataPreference !== undefined &&
10186
+ })), (input.Scte35Pid !== undefined && input.Scte35Pid !== null && { scte35Pid: input.Scte35Pid })), (input.Smpte2038DataPreference !== undefined &&
10187
10187
  input.Smpte2038DataPreference !== null && { smpte2038DataPreference: input.Smpte2038DataPreference })), (input.SourceEndBehavior !== undefined &&
10188
10188
  input.SourceEndBehavior !== null && { sourceEndBehavior: input.SourceEndBehavior })), (input.VideoSelector !== undefined &&
10189
10189
  input.VideoSelector !== null && {
@@ -12524,6 +12524,7 @@ var deserializeAws_restJson1InputSettings = function (output, context) {
12524
12524
  NetworkInputSettings: output.networkInputSettings !== undefined && output.networkInputSettings !== null
12525
12525
  ? deserializeAws_restJson1NetworkInputSettings(output.networkInputSettings, context)
12526
12526
  : undefined,
12527
+ Scte35Pid: __expectInt32(output.scte35Pid),
12527
12528
  Smpte2038DataPreference: __expectString(output.smpte2038DataPreference),
12528
12529
  SourceEndBehavior: __expectString(output.sourceEndBehavior),
12529
12530
  VideoSelector: output.videoSelector !== undefined && output.videoSelector !== null
@@ -2141,6 +2141,10 @@ export interface InputSettings {
2141
2141
  * Input settings.
2142
2142
  */
2143
2143
  NetworkInputSettings?: NetworkInputSettings;
2144
+ /**
2145
+ * PID from which to read SCTE-35 messages. If left undefined, EML will select the first SCTE-35 PID found in the input.
2146
+ */
2147
+ Scte35Pid?: number;
2144
2148
  /**
2145
2149
  * Specifies whether to extract applicable ancillary data from a SMPTE-2038 source in this input. Applicable data types are captions, timecode, AFD, and SCTE-104 messages.
2146
2150
  * - PREFER: Extract from SMPTE-2038 if present in this input, otherwise extract from another source (if any).
@@ -1330,6 +1330,8 @@ export interface InputSettings {
1330
1330
 
1331
1331
  NetworkInputSettings?: NetworkInputSettings;
1332
1332
 
1333
+ Scte35Pid?: number;
1334
+
1333
1335
  Smpte2038DataPreference?: Smpte2038DataPreference | string;
1334
1336
 
1335
1337
  SourceEndBehavior?: InputSourceEndBehavior | string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-medialive",
3
3
  "description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
4
- "version": "3.42.0",
4
+ "version": "3.43.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.42.0",
24
+ "@aws-sdk/client-sts": "3.43.0",
25
25
  "@aws-sdk/config-resolver": "3.40.0",
26
26
  "@aws-sdk/credential-provider-node": "3.41.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.40.0",