@aws-sdk/client-medialive 3.224.0 → 3.228.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.
@@ -56,15 +56,6 @@ exports.ruleSet = {
56
56
  },
57
57
  ],
58
58
  },
59
- {
60
- fn: "parseURL",
61
- argv: [
62
- {
63
- ref: "Endpoint",
64
- },
65
- ],
66
- assign: "url",
67
- },
68
59
  ],
69
60
  type: "tree",
70
61
  rules: [
@@ -581,6 +581,7 @@ var InputDeviceIpScheme;
581
581
  var InputDeviceType;
582
582
  (function (InputDeviceType) {
583
583
  InputDeviceType["HD"] = "HD";
584
+ InputDeviceType["UHD"] = "UHD";
584
585
  })(InputDeviceType = exports.InputDeviceType || (exports.InputDeviceType = {}));
585
586
  var InputSecurityGroupState;
586
587
  (function (InputSecurityGroupState) {
@@ -6377,6 +6377,7 @@ const serializeAws_restJson1InputDestinationRequest = (input, context) => {
6377
6377
  const serializeAws_restJson1InputDeviceConfigurableSettings = (input, context) => {
6378
6378
  return {
6379
6379
  ...(input.ConfiguredInput != null && { configuredInput: input.ConfiguredInput }),
6380
+ ...(input.LatencyMs != null && { latencyMs: input.LatencyMs }),
6380
6381
  ...(input.MaxBitrate != null && { maxBitrate: input.MaxBitrate }),
6381
6382
  };
6382
6383
  };
@@ -8925,6 +8926,7 @@ const deserializeAws_restJson1InputDeviceHdSettings = (output, context) => {
8925
8926
  DeviceState: (0, smithy_client_1.expectString)(output.deviceState),
8926
8927
  Framerate: (0, smithy_client_1.limitedParseDouble)(output.framerate),
8927
8928
  Height: (0, smithy_client_1.expectInt32)(output.height),
8929
+ LatencyMs: (0, smithy_client_1.expectInt32)(output.latencyMs),
8928
8930
  MaxBitrate: (0, smithy_client_1.expectInt32)(output.maxBitrate),
8929
8931
  ScanType: (0, smithy_client_1.expectString)(output.scanType),
8930
8932
  Width: (0, smithy_client_1.expectInt32)(output.width),
@@ -8973,6 +8975,7 @@ const deserializeAws_restJson1InputDeviceUhdSettings = (output, context) => {
8973
8975
  DeviceState: (0, smithy_client_1.expectString)(output.deviceState),
8974
8976
  Framerate: (0, smithy_client_1.limitedParseDouble)(output.framerate),
8975
8977
  Height: (0, smithy_client_1.expectInt32)(output.height),
8978
+ LatencyMs: (0, smithy_client_1.expectInt32)(output.latencyMs),
8976
8979
  MaxBitrate: (0, smithy_client_1.expectInt32)(output.maxBitrate),
8977
8980
  ScanType: (0, smithy_client_1.expectString)(output.scanType),
8978
8981
  Width: (0, smithy_client_1.expectInt32)(output.width),
@@ -53,15 +53,6 @@ export const ruleSet = {
53
53
  },
54
54
  ],
55
55
  },
56
- {
57
- fn: "parseURL",
58
- argv: [
59
- {
60
- ref: "Endpoint",
61
- },
62
- ],
63
- assign: "url",
64
- },
65
56
  ],
66
57
  type: "tree",
67
58
  rules: [
@@ -573,6 +573,7 @@ export var InputDeviceIpScheme;
573
573
  export var InputDeviceType;
574
574
  (function (InputDeviceType) {
575
575
  InputDeviceType["HD"] = "HD";
576
+ InputDeviceType["UHD"] = "UHD";
576
577
  })(InputDeviceType || (InputDeviceType = {}));
577
578
  export var InputSecurityGroupState;
578
579
  (function (InputSecurityGroupState) {
@@ -6254,6 +6254,7 @@ const serializeAws_restJson1InputDestinationRequest = (input, context) => {
6254
6254
  const serializeAws_restJson1InputDeviceConfigurableSettings = (input, context) => {
6255
6255
  return {
6256
6256
  ...(input.ConfiguredInput != null && { configuredInput: input.ConfiguredInput }),
6257
+ ...(input.LatencyMs != null && { latencyMs: input.LatencyMs }),
6257
6258
  ...(input.MaxBitrate != null && { maxBitrate: input.MaxBitrate }),
6258
6259
  };
6259
6260
  };
@@ -8802,6 +8803,7 @@ const deserializeAws_restJson1InputDeviceHdSettings = (output, context) => {
8802
8803
  DeviceState: __expectString(output.deviceState),
8803
8804
  Framerate: __limitedParseDouble(output.framerate),
8804
8805
  Height: __expectInt32(output.height),
8806
+ LatencyMs: __expectInt32(output.latencyMs),
8805
8807
  MaxBitrate: __expectInt32(output.maxBitrate),
8806
8808
  ScanType: __expectString(output.scanType),
8807
8809
  Width: __expectInt32(output.width),
@@ -8850,6 +8852,7 @@ const deserializeAws_restJson1InputDeviceUhdSettings = (output, context) => {
8850
8852
  DeviceState: __expectString(output.deviceState),
8851
8853
  Framerate: __limitedParseDouble(output.framerate),
8852
8854
  Height: __expectInt32(output.height),
8855
+ LatencyMs: __expectInt32(output.latencyMs),
8853
8856
  MaxBitrate: __expectInt32(output.maxBitrate),
8854
8857
  ScanType: __expectString(output.scanType),
8855
8858
  Width: __expectInt32(output.width),
@@ -2253,6 +2253,10 @@ export interface InputDeviceHdSettings {
2253
2253
  * The width of the video source, in pixels.
2254
2254
  */
2255
2255
  Width?: number;
2256
+ /**
2257
+ * The Link device's buffer size (latency) in milliseconds (ms). You can specify this value.
2258
+ */
2259
+ LatencyMs?: number;
2256
2260
  }
2257
2261
  export declare enum InputDeviceIpScheme {
2258
2262
  DHCP = "DHCP",
@@ -2284,7 +2288,8 @@ export interface InputDeviceNetworkSettings {
2284
2288
  SubnetMask?: string;
2285
2289
  }
2286
2290
  export declare enum InputDeviceType {
2287
- HD = "HD"
2291
+ HD = "HD",
2292
+ UHD = "UHD"
2288
2293
  }
2289
2294
  /**
2290
2295
  * Settings that describe the active source from the input device, and the video characteristics of that source.
@@ -2322,6 +2327,10 @@ export interface InputDeviceUhdSettings {
2322
2327
  * The width of the video source, in pixels.
2323
2328
  */
2324
2329
  Width?: number;
2330
+ /**
2331
+ * The Link device's buffer size (latency) in milliseconds (ms). You can specify this value.
2332
+ */
2333
+ LatencyMs?: number;
2325
2334
  }
2326
2335
  /**
2327
2336
  * Details of the input device.
@@ -4279,6 +4279,10 @@ export interface InputDeviceConfigurableSettings {
4279
4279
  * The maximum bitrate in bits per second. Set a value here to throttle the bitrate of the source video.
4280
4280
  */
4281
4281
  MaxBitrate?: number;
4282
+ /**
4283
+ * The Link device's buffer size (latency) in milliseconds (ms).
4284
+ */
4285
+ LatencyMs?: number;
4282
4286
  }
4283
4287
  /**
4284
4288
  * Placeholder documentation for ListChannelsRequest
@@ -960,6 +960,7 @@ export interface InputDeviceHdSettings {
960
960
  MaxBitrate?: number;
961
961
  ScanType?: InputDeviceScanType | string;
962
962
  Width?: number;
963
+ LatencyMs?: number;
963
964
  }
964
965
  export declare enum InputDeviceIpScheme {
965
966
  DHCP = "DHCP",
@@ -974,6 +975,7 @@ export interface InputDeviceNetworkSettings {
974
975
  }
975
976
  export declare enum InputDeviceType {
976
977
  HD = "HD",
978
+ UHD = "UHD",
977
979
  }
978
980
  export interface InputDeviceUhdSettings {
979
981
  ActiveInput?: InputDeviceActiveInput | string;
@@ -984,6 +986,7 @@ export interface InputDeviceUhdSettings {
984
986
  MaxBitrate?: number;
985
987
  ScanType?: InputDeviceScanType | string;
986
988
  Width?: number;
989
+ LatencyMs?: number;
987
990
  }
988
991
  export interface InputDeviceSummary {
989
992
  Arn?: string;
@@ -1625,6 +1625,7 @@ export interface DescribeScheduleResponse {
1625
1625
  export interface InputDeviceConfigurableSettings {
1626
1626
  ConfiguredInput?: InputDeviceConfiguredInput | string;
1627
1627
  MaxBitrate?: number;
1628
+ LatencyMs?: number;
1628
1629
  }
1629
1630
  export interface ListChannelsRequest {
1630
1631
  MaxResults?: number;
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.224.0",
4
+ "version": "3.228.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",
@@ -19,41 +19,41 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.224.0",
23
- "@aws-sdk/config-resolver": "3.224.0",
24
- "@aws-sdk/credential-provider-node": "3.224.0",
25
- "@aws-sdk/fetch-http-handler": "3.224.0",
26
- "@aws-sdk/hash-node": "3.224.0",
27
- "@aws-sdk/invalid-dependency": "3.224.0",
28
- "@aws-sdk/middleware-content-length": "3.224.0",
29
- "@aws-sdk/middleware-endpoint": "3.224.0",
30
- "@aws-sdk/middleware-host-header": "3.224.0",
31
- "@aws-sdk/middleware-logger": "3.224.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.224.0",
33
- "@aws-sdk/middleware-retry": "3.224.0",
34
- "@aws-sdk/middleware-serde": "3.224.0",
35
- "@aws-sdk/middleware-signing": "3.224.0",
36
- "@aws-sdk/middleware-stack": "3.224.0",
37
- "@aws-sdk/middleware-user-agent": "3.224.0",
38
- "@aws-sdk/node-config-provider": "3.224.0",
39
- "@aws-sdk/node-http-handler": "3.224.0",
40
- "@aws-sdk/protocol-http": "3.224.0",
41
- "@aws-sdk/smithy-client": "3.224.0",
42
- "@aws-sdk/types": "3.224.0",
43
- "@aws-sdk/url-parser": "3.224.0",
22
+ "@aws-sdk/client-sts": "3.226.0",
23
+ "@aws-sdk/config-resolver": "3.226.0",
24
+ "@aws-sdk/credential-provider-node": "3.226.0",
25
+ "@aws-sdk/fetch-http-handler": "3.226.0",
26
+ "@aws-sdk/hash-node": "3.226.0",
27
+ "@aws-sdk/invalid-dependency": "3.226.0",
28
+ "@aws-sdk/middleware-content-length": "3.226.0",
29
+ "@aws-sdk/middleware-endpoint": "3.226.0",
30
+ "@aws-sdk/middleware-host-header": "3.226.0",
31
+ "@aws-sdk/middleware-logger": "3.226.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.226.0",
33
+ "@aws-sdk/middleware-retry": "3.226.0",
34
+ "@aws-sdk/middleware-serde": "3.226.0",
35
+ "@aws-sdk/middleware-signing": "3.226.0",
36
+ "@aws-sdk/middleware-stack": "3.226.0",
37
+ "@aws-sdk/middleware-user-agent": "3.226.0",
38
+ "@aws-sdk/node-config-provider": "3.226.0",
39
+ "@aws-sdk/node-http-handler": "3.226.0",
40
+ "@aws-sdk/protocol-http": "3.226.0",
41
+ "@aws-sdk/smithy-client": "3.226.0",
42
+ "@aws-sdk/types": "3.226.0",
43
+ "@aws-sdk/url-parser": "3.226.0",
44
44
  "@aws-sdk/util-base64": "3.208.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.224.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.224.0",
49
- "@aws-sdk/util-endpoints": "3.224.0",
50
- "@aws-sdk/util-stream-browser": "3.224.0",
51
- "@aws-sdk/util-stream-node": "3.224.0",
52
- "@aws-sdk/util-user-agent-browser": "3.224.0",
53
- "@aws-sdk/util-user-agent-node": "3.224.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.226.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.226.0",
49
+ "@aws-sdk/util-endpoints": "3.226.0",
50
+ "@aws-sdk/util-stream-browser": "3.226.0",
51
+ "@aws-sdk/util-stream-node": "3.226.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.226.0",
53
+ "@aws-sdk/util-user-agent-node": "3.226.0",
54
54
  "@aws-sdk/util-utf8-browser": "3.188.0",
55
55
  "@aws-sdk/util-utf8-node": "3.208.0",
56
- "@aws-sdk/util-waiter": "3.224.0",
56
+ "@aws-sdk/util-waiter": "3.226.0",
57
57
  "tslib": "^2.3.1",
58
58
  "uuid": "^8.3.2"
59
59
  },