@aws-sdk/client-medialive 3.891.0 → 3.893.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/dist-cjs/index.js CHANGED
@@ -229,6 +229,7 @@ __export(index_exports, {
229
229
  H265ColorMetadata: () => H265ColorMetadata,
230
230
  H265Deblocking: () => H265Deblocking,
231
231
  H265FlickerAq: () => H265FlickerAq,
232
+ H265GopBReference: () => H265GopBReference,
232
233
  H265GopSizeUnits: () => H265GopSizeUnits,
233
234
  H265Level: () => H265Level,
234
235
  H265LookAheadRateControl: () => H265LookAheadRateControl,
@@ -238,6 +239,7 @@ __export(index_exports, {
238
239
  H265RateControlMode: () => H265RateControlMode,
239
240
  H265ScanType: () => H265ScanType,
240
241
  H265SceneChangeDetect: () => H265SceneChangeDetect,
242
+ H265SubGopLength: () => H265SubGopLength,
241
243
  H265Tier: () => H265Tier,
242
244
  H265TilePadding: () => H265TilePadding,
243
245
  H265TimecodeInsertionBehavior: () => H265TimecodeInsertionBehavior,
@@ -1373,6 +1375,10 @@ var H265FlickerAq = {
1373
1375
  DISABLED: "DISABLED",
1374
1376
  ENABLED: "ENABLED"
1375
1377
  };
1378
+ var H265GopBReference = {
1379
+ DISABLED: "DISABLED",
1380
+ ENABLED: "ENABLED"
1381
+ };
1376
1382
  var H265GopSizeUnits = {
1377
1383
  FRAMES: "FRAMES",
1378
1384
  SECONDS: "SECONDS"
@@ -1423,6 +1429,10 @@ var H265SceneChangeDetect = {
1423
1429
  DISABLED: "DISABLED",
1424
1430
  ENABLED: "ENABLED"
1425
1431
  };
1432
+ var H265SubGopLength = {
1433
+ DYNAMIC: "DYNAMIC",
1434
+ FIXED: "FIXED"
1435
+ };
1426
1436
  var H265Tier = {
1427
1437
  HIGH: "HIGH",
1428
1438
  MAIN: "MAIN"
@@ -6255,6 +6265,7 @@ var se_Av1Settings = /* @__PURE__ */ __name((input, context) => {
6255
6265
  level: [, , `Level`],
6256
6266
  lookAheadRateControl: [, , `LookAheadRateControl`],
6257
6267
  maxBitrate: [, , `MaxBitrate`],
6268
+ minBitrate: [, , `MinBitrate`],
6258
6269
  minIInterval: [, , `MinIInterval`],
6259
6270
  parDenominator: [, , `ParDenominator`],
6260
6271
  parNumerator: [, , `ParNumerator`],
@@ -6726,6 +6737,7 @@ var se_H264Settings = /* @__PURE__ */ __name((input, context) => {
6726
6737
  level: [, , `Level`],
6727
6738
  lookAheadRateControl: [, , `LookAheadRateControl`],
6728
6739
  maxBitrate: [, , `MaxBitrate`],
6740
+ minBitrate: [, , `MinBitrate`],
6729
6741
  minIInterval: [, , `MinIInterval`],
6730
6742
  minQp: [, , `MinQp`],
6731
6743
  numRefFrames: [, , `NumRefFrames`],
@@ -6782,12 +6794,15 @@ var se_H265Settings = /* @__PURE__ */ __name((input, context) => {
6782
6794
  flickerAq: [, , `FlickerAq`],
6783
6795
  framerateDenominator: [, , `FramerateDenominator`],
6784
6796
  framerateNumerator: [, , `FramerateNumerator`],
6797
+ gopBReference: [, , `GopBReference`],
6785
6798
  gopClosedCadence: [, , `GopClosedCadence`],
6799
+ gopNumBFrames: [, , `GopNumBFrames`],
6786
6800
  gopSize: [, import_smithy_client.serializeFloat, `GopSize`],
6787
6801
  gopSizeUnits: [, , `GopSizeUnits`],
6788
6802
  level: [, , `Level`],
6789
6803
  lookAheadRateControl: [, , `LookAheadRateControl`],
6790
6804
  maxBitrate: [, , `MaxBitrate`],
6805
+ minBitrate: [, , `MinBitrate`],
6791
6806
  minIInterval: [, , `MinIInterval`],
6792
6807
  minQp: [, , `MinQp`],
6793
6808
  mvOverPictureBoundaries: [, , `MvOverPictureBoundaries`],
@@ -6800,6 +6815,7 @@ var se_H265Settings = /* @__PURE__ */ __name((input, context) => {
6800
6815
  scanType: [, , `ScanType`],
6801
6816
  sceneChangeDetect: [, , `SceneChangeDetect`],
6802
6817
  slices: [, , `Slices`],
6818
+ subgopLength: [, , `SubgopLength`],
6803
6819
  tier: [, , `Tier`],
6804
6820
  tileHeight: [, , `TileHeight`],
6805
6821
  tilePadding: [, , `TilePadding`],
@@ -8720,6 +8736,7 @@ var de_Av1Settings = /* @__PURE__ */ __name((output, context) => {
8720
8736
  Level: [, import_smithy_client.expectString, `level`],
8721
8737
  LookAheadRateControl: [, import_smithy_client.expectString, `lookAheadRateControl`],
8722
8738
  MaxBitrate: [, import_smithy_client.expectInt32, `maxBitrate`],
8739
+ MinBitrate: [, import_smithy_client.expectInt32, `minBitrate`],
8723
8740
  MinIInterval: [, import_smithy_client.expectInt32, `minIInterval`],
8724
8741
  ParDenominator: [, import_smithy_client.expectInt32, `parDenominator`],
8725
8742
  ParNumerator: [, import_smithy_client.expectInt32, `parNumerator`],
@@ -9385,6 +9402,7 @@ var de_H264Settings = /* @__PURE__ */ __name((output, context) => {
9385
9402
  Level: [, import_smithy_client.expectString, `level`],
9386
9403
  LookAheadRateControl: [, import_smithy_client.expectString, `lookAheadRateControl`],
9387
9404
  MaxBitrate: [, import_smithy_client.expectInt32, `maxBitrate`],
9405
+ MinBitrate: [, import_smithy_client.expectInt32, `minBitrate`],
9388
9406
  MinIInterval: [, import_smithy_client.expectInt32, `minIInterval`],
9389
9407
  MinQp: [, import_smithy_client.expectInt32, `minQp`],
9390
9408
  NumRefFrames: [, import_smithy_client.expectInt32, `numRefFrames`],
@@ -9441,12 +9459,15 @@ var de_H265Settings = /* @__PURE__ */ __name((output, context) => {
9441
9459
  FlickerAq: [, import_smithy_client.expectString, `flickerAq`],
9442
9460
  FramerateDenominator: [, import_smithy_client.expectInt32, `framerateDenominator`],
9443
9461
  FramerateNumerator: [, import_smithy_client.expectInt32, `framerateNumerator`],
9462
+ GopBReference: [, import_smithy_client.expectString, `gopBReference`],
9444
9463
  GopClosedCadence: [, import_smithy_client.expectInt32, `gopClosedCadence`],
9464
+ GopNumBFrames: [, import_smithy_client.expectInt32, `gopNumBFrames`],
9445
9465
  GopSize: [, import_smithy_client.limitedParseDouble, `gopSize`],
9446
9466
  GopSizeUnits: [, import_smithy_client.expectString, `gopSizeUnits`],
9447
9467
  Level: [, import_smithy_client.expectString, `level`],
9448
9468
  LookAheadRateControl: [, import_smithy_client.expectString, `lookAheadRateControl`],
9449
9469
  MaxBitrate: [, import_smithy_client.expectInt32, `maxBitrate`],
9470
+ MinBitrate: [, import_smithy_client.expectInt32, `minBitrate`],
9450
9471
  MinIInterval: [, import_smithy_client.expectInt32, `minIInterval`],
9451
9472
  MinQp: [, import_smithy_client.expectInt32, `minQp`],
9452
9473
  MvOverPictureBoundaries: [, import_smithy_client.expectString, `mvOverPictureBoundaries`],
@@ -9459,6 +9480,7 @@ var de_H265Settings = /* @__PURE__ */ __name((output, context) => {
9459
9480
  ScanType: [, import_smithy_client.expectString, `scanType`],
9460
9481
  SceneChangeDetect: [, import_smithy_client.expectString, `sceneChangeDetect`],
9461
9482
  Slices: [, import_smithy_client.expectInt32, `slices`],
9483
+ SubgopLength: [, import_smithy_client.expectString, `subgopLength`],
9462
9484
  Tier: [, import_smithy_client.expectString, `tier`],
9463
9485
  TileHeight: [, import_smithy_client.expectInt32, `tileHeight`],
9464
9486
  TilePadding: [, import_smithy_client.expectString, `tilePadding`],
@@ -15533,6 +15555,7 @@ var M2tsNielsenId3Behavior = {
15533
15555
  H265ColorMetadata,
15534
15556
  H265Deblocking,
15535
15557
  H265FlickerAq,
15558
+ H265GopBReference,
15536
15559
  H265GopSizeUnits,
15537
15560
  H265Level,
15538
15561
  H265LookAheadRateControl,
@@ -15542,6 +15565,7 @@ var M2tsNielsenId3Behavior = {
15542
15565
  H265RateControlMode,
15543
15566
  H265ScanType,
15544
15567
  H265SceneChangeDetect,
15568
+ H265SubGopLength,
15545
15569
  H265Tier,
15546
15570
  H265TilePadding,
15547
15571
  H265TimecodeInsertionBehavior,
@@ -653,6 +653,10 @@ export const H265FlickerAq = {
653
653
  DISABLED: "DISABLED",
654
654
  ENABLED: "ENABLED",
655
655
  };
656
+ export const H265GopBReference = {
657
+ DISABLED: "DISABLED",
658
+ ENABLED: "ENABLED",
659
+ };
656
660
  export const H265GopSizeUnits = {
657
661
  FRAMES: "FRAMES",
658
662
  SECONDS: "SECONDS",
@@ -703,6 +707,10 @@ export const H265SceneChangeDetect = {
703
707
  DISABLED: "DISABLED",
704
708
  ENABLED: "ENABLED",
705
709
  };
710
+ export const H265SubGopLength = {
711
+ DYNAMIC: "DYNAMIC",
712
+ FIXED: "FIXED",
713
+ };
706
714
  export const H265Tier = {
707
715
  HIGH: "HIGH",
708
716
  MAIN: "MAIN",
@@ -4519,6 +4519,7 @@ const se_Av1Settings = (input, context) => {
4519
4519
  level: [, , `Level`],
4520
4520
  lookAheadRateControl: [, , `LookAheadRateControl`],
4521
4521
  maxBitrate: [, , `MaxBitrate`],
4522
+ minBitrate: [, , `MinBitrate`],
4522
4523
  minIInterval: [, , `MinIInterval`],
4523
4524
  parDenominator: [, , `ParDenominator`],
4524
4525
  parNumerator: [, , `ParNumerator`],
@@ -4990,6 +4991,7 @@ const se_H264Settings = (input, context) => {
4990
4991
  level: [, , `Level`],
4991
4992
  lookAheadRateControl: [, , `LookAheadRateControl`],
4992
4993
  maxBitrate: [, , `MaxBitrate`],
4994
+ minBitrate: [, , `MinBitrate`],
4993
4995
  minIInterval: [, , `MinIInterval`],
4994
4996
  minQp: [, , `MinQp`],
4995
4997
  numRefFrames: [, , `NumRefFrames`],
@@ -5046,12 +5048,15 @@ const se_H265Settings = (input, context) => {
5046
5048
  flickerAq: [, , `FlickerAq`],
5047
5049
  framerateDenominator: [, , `FramerateDenominator`],
5048
5050
  framerateNumerator: [, , `FramerateNumerator`],
5051
+ gopBReference: [, , `GopBReference`],
5049
5052
  gopClosedCadence: [, , `GopClosedCadence`],
5053
+ gopNumBFrames: [, , `GopNumBFrames`],
5050
5054
  gopSize: [, __serializeFloat, `GopSize`],
5051
5055
  gopSizeUnits: [, , `GopSizeUnits`],
5052
5056
  level: [, , `Level`],
5053
5057
  lookAheadRateControl: [, , `LookAheadRateControl`],
5054
5058
  maxBitrate: [, , `MaxBitrate`],
5059
+ minBitrate: [, , `MinBitrate`],
5055
5060
  minIInterval: [, , `MinIInterval`],
5056
5061
  minQp: [, , `MinQp`],
5057
5062
  mvOverPictureBoundaries: [, , `MvOverPictureBoundaries`],
@@ -5064,6 +5069,7 @@ const se_H265Settings = (input, context) => {
5064
5069
  scanType: [, , `ScanType`],
5065
5070
  sceneChangeDetect: [, , `SceneChangeDetect`],
5066
5071
  slices: [, , `Slices`],
5072
+ subgopLength: [, , `SubgopLength`],
5067
5073
  tier: [, , `Tier`],
5068
5074
  tileHeight: [, , `TileHeight`],
5069
5075
  tilePadding: [, , `TilePadding`],
@@ -7124,6 +7130,7 @@ const de_Av1Settings = (output, context) => {
7124
7130
  Level: [, __expectString, `level`],
7125
7131
  LookAheadRateControl: [, __expectString, `lookAheadRateControl`],
7126
7132
  MaxBitrate: [, __expectInt32, `maxBitrate`],
7133
+ MinBitrate: [, __expectInt32, `minBitrate`],
7127
7134
  MinIInterval: [, __expectInt32, `minIInterval`],
7128
7135
  ParDenominator: [, __expectInt32, `parDenominator`],
7129
7136
  ParNumerator: [, __expectInt32, `parNumerator`],
@@ -7789,6 +7796,7 @@ const de_H264Settings = (output, context) => {
7789
7796
  Level: [, __expectString, `level`],
7790
7797
  LookAheadRateControl: [, __expectString, `lookAheadRateControl`],
7791
7798
  MaxBitrate: [, __expectInt32, `maxBitrate`],
7799
+ MinBitrate: [, __expectInt32, `minBitrate`],
7792
7800
  MinIInterval: [, __expectInt32, `minIInterval`],
7793
7801
  MinQp: [, __expectInt32, `minQp`],
7794
7802
  NumRefFrames: [, __expectInt32, `numRefFrames`],
@@ -7845,12 +7853,15 @@ const de_H265Settings = (output, context) => {
7845
7853
  FlickerAq: [, __expectString, `flickerAq`],
7846
7854
  FramerateDenominator: [, __expectInt32, `framerateDenominator`],
7847
7855
  FramerateNumerator: [, __expectInt32, `framerateNumerator`],
7856
+ GopBReference: [, __expectString, `gopBReference`],
7848
7857
  GopClosedCadence: [, __expectInt32, `gopClosedCadence`],
7858
+ GopNumBFrames: [, __expectInt32, `gopNumBFrames`],
7849
7859
  GopSize: [, __limitedParseDouble, `gopSize`],
7850
7860
  GopSizeUnits: [, __expectString, `gopSizeUnits`],
7851
7861
  Level: [, __expectString, `level`],
7852
7862
  LookAheadRateControl: [, __expectString, `lookAheadRateControl`],
7853
7863
  MaxBitrate: [, __expectInt32, `maxBitrate`],
7864
+ MinBitrate: [, __expectInt32, `minBitrate`],
7854
7865
  MinIInterval: [, __expectInt32, `minIInterval`],
7855
7866
  MinQp: [, __expectInt32, `minQp`],
7856
7867
  MvOverPictureBoundaries: [, __expectString, `mvOverPictureBoundaries`],
@@ -7863,6 +7874,7 @@ const de_H265Settings = (output, context) => {
7863
7874
  ScanType: [, __expectString, `scanType`],
7864
7875
  SceneChangeDetect: [, __expectString, `sceneChangeDetect`],
7865
7876
  Slices: [, __expectInt32, `slices`],
7877
+ SubgopLength: [, __expectString, `subgopLength`],
7866
7878
  Tier: [, __expectString, `tier`],
7867
7879
  TileHeight: [, __expectInt32, `tileHeight`],
7868
7880
  TilePadding: [, __expectString, `tilePadding`],
@@ -952,6 +952,7 @@ declare const CreateChannelCommand_base: {
952
952
  * Prefix: "STRING_VALUE",
953
953
  * },
954
954
  * MinQp: Number("int"),
955
+ * MinBitrate: Number("int"),
955
956
  * },
956
957
  * H265Settings: { // H265Settings
957
958
  * AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -1014,6 +1015,10 @@ declare const CreateChannelCommand_base: {
1014
1015
  * TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
1015
1016
  * MinQp: Number("int"),
1016
1017
  * Deblocking: "DISABLED" || "ENABLED",
1018
+ * GopBReference: "DISABLED" || "ENABLED",
1019
+ * GopNumBFrames: Number("int"),
1020
+ * MinBitrate: Number("int"),
1021
+ * SubgopLength: "DYNAMIC" || "FIXED",
1017
1022
  * },
1018
1023
  * Mpeg2Settings: { // Mpeg2Settings
1019
1024
  * AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -1075,6 +1080,7 @@ declare const CreateChannelCommand_base: {
1075
1080
  * },
1076
1081
  * Bitrate: Number("int"),
1077
1082
  * RateControlMode: "CBR" || "QVBR",
1083
+ * MinBitrate: Number("int"),
1078
1084
  * },
1079
1085
  * },
1080
1086
  * Height: Number("int"),
@@ -2192,6 +2198,7 @@ declare const CreateChannelCommand_base: {
2192
2198
  * // Prefix: "STRING_VALUE",
2193
2199
  * // },
2194
2200
  * // MinQp: Number("int"),
2201
+ * // MinBitrate: Number("int"),
2195
2202
  * // },
2196
2203
  * // H265Settings: { // H265Settings
2197
2204
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -2254,6 +2261,10 @@ declare const CreateChannelCommand_base: {
2254
2261
  * // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
2255
2262
  * // MinQp: Number("int"),
2256
2263
  * // Deblocking: "DISABLED" || "ENABLED",
2264
+ * // GopBReference: "DISABLED" || "ENABLED",
2265
+ * // GopNumBFrames: Number("int"),
2266
+ * // MinBitrate: Number("int"),
2267
+ * // SubgopLength: "DYNAMIC" || "FIXED",
2257
2268
  * // },
2258
2269
  * // Mpeg2Settings: { // Mpeg2Settings
2259
2270
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -2315,6 +2326,7 @@ declare const CreateChannelCommand_base: {
2315
2326
  * // },
2316
2327
  * // Bitrate: Number("int"),
2317
2328
  * // RateControlMode: "CBR" || "QVBR",
2329
+ * // MinBitrate: Number("int"),
2318
2330
  * // },
2319
2331
  * // },
2320
2332
  * // Height: Number("int"),
@@ -963,6 +963,7 @@ declare const DeleteChannelCommand_base: {
963
963
  * // Prefix: "STRING_VALUE",
964
964
  * // },
965
965
  * // MinQp: Number("int"),
966
+ * // MinBitrate: Number("int"),
966
967
  * // },
967
968
  * // H265Settings: { // H265Settings
968
969
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -1025,6 +1026,10 @@ declare const DeleteChannelCommand_base: {
1025
1026
  * // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
1026
1027
  * // MinQp: Number("int"),
1027
1028
  * // Deblocking: "DISABLED" || "ENABLED",
1029
+ * // GopBReference: "DISABLED" || "ENABLED",
1030
+ * // GopNumBFrames: Number("int"),
1031
+ * // MinBitrate: Number("int"),
1032
+ * // SubgopLength: "DYNAMIC" || "FIXED",
1028
1033
  * // },
1029
1034
  * // Mpeg2Settings: { // Mpeg2Settings
1030
1035
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -1086,6 +1091,7 @@ declare const DeleteChannelCommand_base: {
1086
1091
  * // },
1087
1092
  * // Bitrate: Number("int"),
1088
1093
  * // RateControlMode: "CBR" || "QVBR",
1094
+ * // MinBitrate: Number("int"),
1089
1095
  * // },
1090
1096
  * // },
1091
1097
  * // Height: Number("int"),
@@ -963,6 +963,7 @@ declare const DescribeChannelCommand_base: {
963
963
  * // Prefix: "STRING_VALUE",
964
964
  * // },
965
965
  * // MinQp: Number("int"),
966
+ * // MinBitrate: Number("int"),
966
967
  * // },
967
968
  * // H265Settings: { // H265Settings
968
969
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -1025,6 +1026,10 @@ declare const DescribeChannelCommand_base: {
1025
1026
  * // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
1026
1027
  * // MinQp: Number("int"),
1027
1028
  * // Deblocking: "DISABLED" || "ENABLED",
1029
+ * // GopBReference: "DISABLED" || "ENABLED",
1030
+ * // GopNumBFrames: Number("int"),
1031
+ * // MinBitrate: Number("int"),
1032
+ * // SubgopLength: "DYNAMIC" || "FIXED",
1028
1033
  * // },
1029
1034
  * // Mpeg2Settings: { // Mpeg2Settings
1030
1035
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -1086,6 +1091,7 @@ declare const DescribeChannelCommand_base: {
1086
1091
  * // },
1087
1092
  * // Bitrate: Number("int"),
1088
1093
  * // RateControlMode: "CBR" || "QVBR",
1094
+ * // MinBitrate: Number("int"),
1089
1095
  * // },
1090
1096
  * // },
1091
1097
  * // Height: Number("int"),
@@ -966,6 +966,7 @@ declare const RestartChannelPipelinesCommand_base: {
966
966
  * // Prefix: "STRING_VALUE",
967
967
  * // },
968
968
  * // MinQp: Number("int"),
969
+ * // MinBitrate: Number("int"),
969
970
  * // },
970
971
  * // H265Settings: { // H265Settings
971
972
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -1028,6 +1029,10 @@ declare const RestartChannelPipelinesCommand_base: {
1028
1029
  * // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
1029
1030
  * // MinQp: Number("int"),
1030
1031
  * // Deblocking: "DISABLED" || "ENABLED",
1032
+ * // GopBReference: "DISABLED" || "ENABLED",
1033
+ * // GopNumBFrames: Number("int"),
1034
+ * // MinBitrate: Number("int"),
1035
+ * // SubgopLength: "DYNAMIC" || "FIXED",
1031
1036
  * // },
1032
1037
  * // Mpeg2Settings: { // Mpeg2Settings
1033
1038
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -1089,6 +1094,7 @@ declare const RestartChannelPipelinesCommand_base: {
1089
1094
  * // },
1090
1095
  * // Bitrate: Number("int"),
1091
1096
  * // RateControlMode: "CBR" || "QVBR",
1097
+ * // MinBitrate: Number("int"),
1092
1098
  * // },
1093
1099
  * // },
1094
1100
  * // Height: Number("int"),
@@ -963,6 +963,7 @@ declare const StartChannelCommand_base: {
963
963
  * // Prefix: "STRING_VALUE",
964
964
  * // },
965
965
  * // MinQp: Number("int"),
966
+ * // MinBitrate: Number("int"),
966
967
  * // },
967
968
  * // H265Settings: { // H265Settings
968
969
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -1025,6 +1026,10 @@ declare const StartChannelCommand_base: {
1025
1026
  * // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
1026
1027
  * // MinQp: Number("int"),
1027
1028
  * // Deblocking: "DISABLED" || "ENABLED",
1029
+ * // GopBReference: "DISABLED" || "ENABLED",
1030
+ * // GopNumBFrames: Number("int"),
1031
+ * // MinBitrate: Number("int"),
1032
+ * // SubgopLength: "DYNAMIC" || "FIXED",
1028
1033
  * // },
1029
1034
  * // Mpeg2Settings: { // Mpeg2Settings
1030
1035
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -1086,6 +1091,7 @@ declare const StartChannelCommand_base: {
1086
1091
  * // },
1087
1092
  * // Bitrate: Number("int"),
1088
1093
  * // RateControlMode: "CBR" || "QVBR",
1094
+ * // MinBitrate: Number("int"),
1089
1095
  * // },
1090
1096
  * // },
1091
1097
  * // Height: Number("int"),
@@ -963,6 +963,7 @@ declare const StopChannelCommand_base: {
963
963
  * // Prefix: "STRING_VALUE",
964
964
  * // },
965
965
  * // MinQp: Number("int"),
966
+ * // MinBitrate: Number("int"),
966
967
  * // },
967
968
  * // H265Settings: { // H265Settings
968
969
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -1025,6 +1026,10 @@ declare const StopChannelCommand_base: {
1025
1026
  * // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
1026
1027
  * // MinQp: Number("int"),
1027
1028
  * // Deblocking: "DISABLED" || "ENABLED",
1029
+ * // GopBReference: "DISABLED" || "ENABLED",
1030
+ * // GopNumBFrames: Number("int"),
1031
+ * // MinBitrate: Number("int"),
1032
+ * // SubgopLength: "DYNAMIC" || "FIXED",
1028
1033
  * // },
1029
1034
  * // Mpeg2Settings: { // Mpeg2Settings
1030
1035
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -1086,6 +1091,7 @@ declare const StopChannelCommand_base: {
1086
1091
  * // },
1087
1092
  * // Bitrate: Number("int"),
1088
1093
  * // RateControlMode: "CBR" || "QVBR",
1094
+ * // MinBitrate: Number("int"),
1089
1095
  * // },
1090
1096
  * // },
1091
1097
  * // Height: Number("int"),
@@ -999,6 +999,7 @@ declare const UpdateChannelClassCommand_base: {
999
999
  * // Prefix: "STRING_VALUE",
1000
1000
  * // },
1001
1001
  * // MinQp: Number("int"),
1002
+ * // MinBitrate: Number("int"),
1002
1003
  * // },
1003
1004
  * // H265Settings: { // H265Settings
1004
1005
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -1061,6 +1062,10 @@ declare const UpdateChannelClassCommand_base: {
1061
1062
  * // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
1062
1063
  * // MinQp: Number("int"),
1063
1064
  * // Deblocking: "DISABLED" || "ENABLED",
1065
+ * // GopBReference: "DISABLED" || "ENABLED",
1066
+ * // GopNumBFrames: Number("int"),
1067
+ * // MinBitrate: Number("int"),
1068
+ * // SubgopLength: "DYNAMIC" || "FIXED",
1064
1069
  * // },
1065
1070
  * // Mpeg2Settings: { // Mpeg2Settings
1066
1071
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -1122,6 +1127,7 @@ declare const UpdateChannelClassCommand_base: {
1122
1127
  * // },
1123
1128
  * // Bitrate: Number("int"),
1124
1129
  * // RateControlMode: "CBR" || "QVBR",
1130
+ * // MinBitrate: Number("int"),
1125
1131
  * // },
1126
1132
  * // },
1127
1133
  * // Height: Number("int"),
@@ -952,6 +952,7 @@ declare const UpdateChannelCommand_base: {
952
952
  * Prefix: "STRING_VALUE",
953
953
  * },
954
954
  * MinQp: Number("int"),
955
+ * MinBitrate: Number("int"),
955
956
  * },
956
957
  * H265Settings: { // H265Settings
957
958
  * AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -1014,6 +1015,10 @@ declare const UpdateChannelCommand_base: {
1014
1015
  * TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
1015
1016
  * MinQp: Number("int"),
1016
1017
  * Deblocking: "DISABLED" || "ENABLED",
1018
+ * GopBReference: "DISABLED" || "ENABLED",
1019
+ * GopNumBFrames: Number("int"),
1020
+ * MinBitrate: Number("int"),
1021
+ * SubgopLength: "DYNAMIC" || "FIXED",
1017
1022
  * },
1018
1023
  * Mpeg2Settings: { // Mpeg2Settings
1019
1024
  * AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -1075,6 +1080,7 @@ declare const UpdateChannelCommand_base: {
1075
1080
  * },
1076
1081
  * Bitrate: Number("int"),
1077
1082
  * RateControlMode: "CBR" || "QVBR",
1083
+ * MinBitrate: Number("int"),
1078
1084
  * },
1079
1085
  * },
1080
1086
  * Height: Number("int"),
@@ -2183,6 +2189,7 @@ declare const UpdateChannelCommand_base: {
2183
2189
  * // Prefix: "STRING_VALUE",
2184
2190
  * // },
2185
2191
  * // MinQp: Number("int"),
2192
+ * // MinBitrate: Number("int"),
2186
2193
  * // },
2187
2194
  * // H265Settings: { // H265Settings
2188
2195
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
@@ -2245,6 +2252,10 @@ declare const UpdateChannelCommand_base: {
2245
2252
  * // TreeblockSize: "AUTO" || "TREE_SIZE_32X32",
2246
2253
  * // MinQp: Number("int"),
2247
2254
  * // Deblocking: "DISABLED" || "ENABLED",
2255
+ * // GopBReference: "DISABLED" || "ENABLED",
2256
+ * // GopNumBFrames: Number("int"),
2257
+ * // MinBitrate: Number("int"),
2258
+ * // SubgopLength: "DYNAMIC" || "FIXED",
2248
2259
  * // },
2249
2260
  * // Mpeg2Settings: { // Mpeg2Settings
2250
2261
  * // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
@@ -2306,6 +2317,7 @@ declare const UpdateChannelCommand_base: {
2306
2317
  * // },
2307
2318
  * // Bitrate: Number("int"),
2308
2319
  * // RateControlMode: "CBR" || "QVBR",
2320
+ * // MinBitrate: Number("int"),
2309
2321
  * // },
2310
2322
  * // },
2311
2323
  * // Height: Number("int"),
@@ -4405,6 +4405,13 @@ export interface Av1Settings {
4405
4405
  * @public
4406
4406
  */
4407
4407
  RateControlMode?: Av1RateControlMode | undefined;
4408
+ /**
4409
+ * Used for QVBR rate control mode only.
4410
+ * Optional.
4411
+ * Enter a minimum bitrate if you want to keep the output bitrate about a threshold, in order to prevent the downstream system from de-allocating network bandwidth for this output.
4412
+ * @public
4413
+ */
4414
+ MinBitrate?: number | undefined;
4408
4415
  }
4409
4416
  /**
4410
4417
  * @public
@@ -5122,6 +5129,13 @@ export interface H264Settings {
5122
5129
  * @public
5123
5130
  */
5124
5131
  MinQp?: number | undefined;
5132
+ /**
5133
+ * Used for QVBR rate control mode only.
5134
+ * Optional.
5135
+ * Enter a minimum bitrate if you want to keep the output bitrate about a threshold, in order to prevent the downstream system from de-allocating network bandwidth for this output.
5136
+ * @public
5137
+ */
5138
+ MinBitrate?: number | undefined;
5125
5139
  }
5126
5140
  /**
5127
5141
  * @public
@@ -5241,6 +5255,18 @@ export declare const H265FlickerAq: {
5241
5255
  * @public
5242
5256
  */
5243
5257
  export type H265FlickerAq = (typeof H265FlickerAq)[keyof typeof H265FlickerAq];
5258
+ /**
5259
+ * @public
5260
+ * @enum
5261
+ */
5262
+ export declare const H265GopBReference: {
5263
+ readonly DISABLED: "DISABLED";
5264
+ readonly ENABLED: "ENABLED";
5265
+ };
5266
+ /**
5267
+ * @public
5268
+ */
5269
+ export type H265GopBReference = (typeof H265GopBReference)[keyof typeof H265GopBReference];
5244
5270
  /**
5245
5271
  * @public
5246
5272
  * @enum
@@ -5363,6 +5389,18 @@ export declare const H265SceneChangeDetect: {
5363
5389
  * @public
5364
5390
  */
5365
5391
  export type H265SceneChangeDetect = (typeof H265SceneChangeDetect)[keyof typeof H265SceneChangeDetect];
5392
+ /**
5393
+ * @public
5394
+ * @enum
5395
+ */
5396
+ export declare const H265SubGopLength: {
5397
+ readonly DYNAMIC: "DYNAMIC";
5398
+ readonly FIXED: "FIXED";
5399
+ };
5400
+ /**
5401
+ * @public
5402
+ */
5403
+ export type H265SubGopLength = (typeof H265SubGopLength)[keyof typeof H265SubGopLength];
5366
5404
  /**
5367
5405
  * @public
5368
5406
  * @enum
@@ -5641,6 +5679,35 @@ export interface H265Settings {
5641
5679
  * @public
5642
5680
  */
5643
5681
  Deblocking?: H265Deblocking | undefined;
5682
+ /**
5683
+ * Allows the encoder to use a B-Frame as a reference frame as well.
5684
+ * ENABLED: B-frames will also serve as reference frames.
5685
+ * DISABLED: B-frames won't be reference frames.
5686
+ * Must be DISABLED if resolution is greater than 1080p or when using tiled hevc encoding.
5687
+ * @public
5688
+ */
5689
+ GopBReference?: H265GopBReference | undefined;
5690
+ /**
5691
+ * Sets the number of B-frames between reference frames.
5692
+ * Set to 2 if resolution is greater than 1080p or when using tiled hevc encoding.
5693
+ * @public
5694
+ */
5695
+ GopNumBFrames?: number | undefined;
5696
+ /**
5697
+ * Used for QVBR rate control mode only.
5698
+ * Optional.
5699
+ * Enter a minimum bitrate if you want to keep the output bitrate about a threshold, in order to prevent the downstream system from de-allocating network bandwidth for this output.
5700
+ * @public
5701
+ */
5702
+ MinBitrate?: number | undefined;
5703
+ /**
5704
+ * Sets the number of B-frames in each sub-GOP.
5705
+ * FIXED: Use the value in Num B-frames.
5706
+ * DYNAMIC: Optimizes the number of B-frames in each sub-GOP to improve visual quality.
5707
+ * Must be FIXED if resolution is greater than 1080p or when using tiled hevc encoding.
5708
+ * @public
5709
+ */
5710
+ SubgopLength?: H265SubGopLength | undefined;
5644
5711
  }
5645
5712
  /**
5646
5713
  * @public
@@ -6417,25 +6484,3 @@ export interface BatchDeleteResponse {
6417
6484
  */
6418
6485
  Successful?: BatchSuccessfulResultModel[] | undefined;
6419
6486
  }
6420
- /**
6421
- * A list of schedule actions to create (in a request) or that have been created (in a response).
6422
- * @public
6423
- */
6424
- export interface BatchScheduleActionCreateRequest {
6425
- /**
6426
- * A list of schedule actions to create.
6427
- * @public
6428
- */
6429
- ScheduleActions: ScheduleAction[] | undefined;
6430
- }
6431
- /**
6432
- * List of actions that have been created in the schedule.
6433
- * @public
6434
- */
6435
- export interface BatchScheduleActionCreateResult {
6436
- /**
6437
- * List of actions that have been created in the schedule.
6438
- * @public
6439
- */
6440
- ScheduleActions: ScheduleAction[] | undefined;
6441
- }
@@ -1,6 +1,28 @@
1
1
  import { StreamingBlobTypes } from "@smithy/types";
2
2
  import { AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelEngineVersionResponse, ChannelPipelineIdToRestart, ChannelPlacementGroupState, ChannelState, ChannelSummary, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateGroupSummary, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateSummary, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ClusterNetworkSettings, ClusterState, ClusterType, ColorCorrection, DescribeAnywhereSettings, DescribeChannelPlacementGroupSummary, DescribeClusterSummary, DescribeNetworkSummary, DescribeNodeSummary, DeviceSettingsSyncState, DeviceUpdateStatus, EventBridgeRuleTemplateEventType, EventBridgeRuleTemplateGroupSummary, EventBridgeRuleTemplateSummary, EventBridgeRuleTemplateTarget, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputNetworkLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, InterfaceMappingCreateRequest, InterfaceMappingUpdateRequest, IpPool, IpPoolCreateRequest, IpPoolUpdateRequest, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MediaResourceNeighbor, MulticastSettings, MulticastSourceCreateRequest, MulticastSourceUpdateRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, NetworkState, NodeConnectionState, NodeInterfaceMapping, NodeInterfaceMappingCreateRequest, NodeRole, NodeState, Offering, OfferingDurationUnits, OfferingType, OutputDestination, ReservationResourceSpecification, Route, SdiSourceMapping, Smpte2110ReceiverGroupSettings, SrtSettings, VpcOutputSettingsDescription } from "./models_0";
3
- import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, AvailConfiguration, BatchScheduleActionCreateRequest, BatchScheduleActionCreateResult, OutputGroup, PipelineDetail, RenewalSettings, Reservation, ReservationState, RouteCreateRequest, RouteUpdateRequest, ScheduleAction, SdiSourceMode, SdiSourceState, SdiSourceSummary, SdiSourceType, SignalMapMonitorDeploymentStatus, SignalMapStatus, SignalMapSummary, SrtCallerSourceRequest, ThumbnailDetail, TransferringInputDeviceSummary, VideoDescription } from "./models_1";
3
+ import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, AvailConfiguration, OutputGroup, PipelineDetail, RenewalSettings, Reservation, ReservationState, RouteCreateRequest, RouteUpdateRequest, ScheduleAction, SdiSourceMode, SdiSourceState, SdiSourceSummary, SdiSourceType, SignalMapMonitorDeploymentStatus, SignalMapStatus, SignalMapSummary, SrtCallerSourceRequest, ThumbnailDetail, TransferringInputDeviceSummary, VideoDescription } from "./models_1";
4
+ /**
5
+ * A list of schedule actions to create (in a request) or that have been created (in a response).
6
+ * @public
7
+ */
8
+ export interface BatchScheduleActionCreateRequest {
9
+ /**
10
+ * A list of schedule actions to create.
11
+ * @public
12
+ */
13
+ ScheduleActions: ScheduleAction[] | undefined;
14
+ }
15
+ /**
16
+ * List of actions that have been created in the schedule.
17
+ * @public
18
+ */
19
+ export interface BatchScheduleActionCreateResult {
20
+ /**
21
+ * List of actions that have been created in the schedule.
22
+ * @public
23
+ */
24
+ ScheduleActions: ScheduleAction[] | undefined;
25
+ }
4
26
  /**
5
27
  * A list of schedule actions to delete.
6
28
  * @public
@@ -1401,6 +1401,7 @@ export interface Av1Settings {
1401
1401
  TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
1402
1402
  Bitrate?: number | undefined;
1403
1403
  RateControlMode?: Av1RateControlMode | undefined;
1404
+ MinBitrate?: number | undefined;
1404
1405
  }
1405
1406
  export declare const FrameCaptureIntervalUnit: {
1406
1407
  readonly MILLISECONDS: "MILLISECONDS";
@@ -1668,6 +1669,7 @@ export interface H264Settings {
1668
1669
  TimecodeInsertion?: H264TimecodeInsertionBehavior | undefined;
1669
1670
  TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
1670
1671
  MinQp?: number | undefined;
1672
+ MinBitrate?: number | undefined;
1671
1673
  }
1672
1674
  export declare const H265AdaptiveQuantization: {
1673
1675
  readonly AUTO: "AUTO";
@@ -1717,6 +1719,12 @@ export declare const H265FlickerAq: {
1717
1719
  readonly ENABLED: "ENABLED";
1718
1720
  };
1719
1721
  export type H265FlickerAq = (typeof H265FlickerAq)[keyof typeof H265FlickerAq];
1722
+ export declare const H265GopBReference: {
1723
+ readonly DISABLED: "DISABLED";
1724
+ readonly ENABLED: "ENABLED";
1725
+ };
1726
+ export type H265GopBReference =
1727
+ (typeof H265GopBReference)[keyof typeof H265GopBReference];
1720
1728
  export declare const H265GopSizeUnits: {
1721
1729
  readonly FRAMES: "FRAMES";
1722
1730
  readonly SECONDS: "SECONDS";
@@ -1782,6 +1790,12 @@ export declare const H265SceneChangeDetect: {
1782
1790
  };
1783
1791
  export type H265SceneChangeDetect =
1784
1792
  (typeof H265SceneChangeDetect)[keyof typeof H265SceneChangeDetect];
1793
+ export declare const H265SubGopLength: {
1794
+ readonly DYNAMIC: "DYNAMIC";
1795
+ readonly FIXED: "FIXED";
1796
+ };
1797
+ export type H265SubGopLength =
1798
+ (typeof H265SubGopLength)[keyof typeof H265SubGopLength];
1785
1799
  export declare const H265Tier: {
1786
1800
  readonly HIGH: "HIGH";
1787
1801
  readonly MAIN: "MAIN";
@@ -1844,6 +1858,10 @@ export interface H265Settings {
1844
1858
  TreeblockSize?: H265TreeblockSize | undefined;
1845
1859
  MinQp?: number | undefined;
1846
1860
  Deblocking?: H265Deblocking | undefined;
1861
+ GopBReference?: H265GopBReference | undefined;
1862
+ GopNumBFrames?: number | undefined;
1863
+ MinBitrate?: number | undefined;
1864
+ SubgopLength?: H265SubGopLength | undefined;
1847
1865
  }
1848
1866
  export declare const Mpeg2AdaptiveQuantization: {
1849
1867
  readonly AUTO: "AUTO";
@@ -2109,9 +2127,3 @@ export interface BatchDeleteResponse {
2109
2127
  Failed?: BatchFailedResultModel[] | undefined;
2110
2128
  Successful?: BatchSuccessfulResultModel[] | undefined;
2111
2129
  }
2112
- export interface BatchScheduleActionCreateRequest {
2113
- ScheduleActions: ScheduleAction[] | undefined;
2114
- }
2115
- export interface BatchScheduleActionCreateResult {
2116
- ScheduleActions: ScheduleAction[] | undefined;
2117
- }
@@ -104,8 +104,6 @@ import {
104
104
  AnywhereSettings,
105
105
  AvailBlanking,
106
106
  AvailConfiguration,
107
- BatchScheduleActionCreateRequest,
108
- BatchScheduleActionCreateResult,
109
107
  OutputGroup,
110
108
  PipelineDetail,
111
109
  RenewalSettings,
@@ -126,6 +124,12 @@ import {
126
124
  TransferringInputDeviceSummary,
127
125
  VideoDescription,
128
126
  } from "./models_1";
127
+ export interface BatchScheduleActionCreateRequest {
128
+ ScheduleActions: ScheduleAction[] | undefined;
129
+ }
130
+ export interface BatchScheduleActionCreateResult {
131
+ ScheduleActions: ScheduleAction[] | undefined;
132
+ }
129
133
  export interface BatchScheduleActionDeleteRequest {
130
134
  ActionNames: string[] | undefined;
131
135
  }
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.891.0",
4
+ "version": "3.893.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-medialive",
@@ -20,42 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.890.0",
24
- "@aws-sdk/credential-provider-node": "3.891.0",
25
- "@aws-sdk/middleware-host-header": "3.891.0",
26
- "@aws-sdk/middleware-logger": "3.891.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
- "@aws-sdk/middleware-user-agent": "3.891.0",
29
- "@aws-sdk/region-config-resolver": "3.890.0",
30
- "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.891.0",
32
- "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.891.0",
23
+ "@aws-sdk/core": "3.893.0",
24
+ "@aws-sdk/credential-provider-node": "3.893.0",
25
+ "@aws-sdk/middleware-host-header": "3.893.0",
26
+ "@aws-sdk/middleware-logger": "3.893.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.893.0",
28
+ "@aws-sdk/middleware-user-agent": "3.893.0",
29
+ "@aws-sdk/region-config-resolver": "3.893.0",
30
+ "@aws-sdk/types": "3.893.0",
31
+ "@aws-sdk/util-endpoints": "3.893.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.893.0",
33
+ "@aws-sdk/util-user-agent-node": "3.893.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
- "@smithy/core": "^3.11.0",
35
+ "@smithy/core": "^3.11.1",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.2",
41
- "@smithy/middleware-retry": "^4.2.3",
40
+ "@smithy/middleware-endpoint": "^4.2.3",
41
+ "@smithy/middleware-retry": "^4.2.4",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
44
  "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.2",
47
+ "@smithy/smithy-client": "^4.6.3",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.2",
54
- "@smithy/util-defaults-mode-node": "^4.1.2",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.3",
54
+ "@smithy/util-defaults-mode-node": "^4.1.3",
55
55
  "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
57
  "@smithy/util-retry": "^4.1.2",
58
- "@smithy/util-stream": "^4.3.1",
58
+ "@smithy/util-stream": "^4.3.2",
59
59
  "@smithy/util-utf8": "^4.1.0",
60
60
  "@smithy/util-waiter": "^4.1.1",
61
61
  "@types/uuid": "^9.0.1",