@aws-sdk/client-medialive 3.806.0 → 3.808.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
@@ -51,6 +51,7 @@ __export(index_exports, {
51
51
  Av1GopSizeUnits: () => Av1GopSizeUnits,
52
52
  Av1Level: () => Av1Level,
53
53
  Av1LookAheadRateControl: () => Av1LookAheadRateControl,
54
+ Av1RateControlMode: () => Av1RateControlMode,
54
55
  Av1SceneChangeDetect: () => Av1SceneChangeDetect,
55
56
  AvailBlankingState: () => AvailBlankingState,
56
57
  BadGatewayException: () => BadGatewayException,
@@ -1136,6 +1137,10 @@ var Av1LookAheadRateControl = {
1136
1137
  LOW: "LOW",
1137
1138
  MEDIUM: "MEDIUM"
1138
1139
  };
1140
+ var Av1RateControlMode = {
1141
+ CBR: "CBR",
1142
+ QVBR: "QVBR"
1143
+ };
1139
1144
  var Av1SceneChangeDetect = {
1140
1145
  DISABLED: "DISABLED",
1141
1146
  ENABLED: "ENABLED"
@@ -6195,6 +6200,7 @@ var se_Av1ColorSpaceSettings = /* @__PURE__ */ __name((input, context) => {
6195
6200
  var se_Av1Settings = /* @__PURE__ */ __name((input, context) => {
6196
6201
  return (0, import_smithy_client.take)(input, {
6197
6202
  afdSignaling: [, , `AfdSignaling`],
6203
+ bitrate: [, , `Bitrate`],
6198
6204
  bufSize: [, , `BufSize`],
6199
6205
  colorSpaceSettings: [, (_) => se_Av1ColorSpaceSettings(_, context), `ColorSpaceSettings`],
6200
6206
  fixedAfd: [, , `FixedAfd`],
@@ -6209,6 +6215,7 @@ var se_Av1Settings = /* @__PURE__ */ __name((input, context) => {
6209
6215
  parDenominator: [, , `ParDenominator`],
6210
6216
  parNumerator: [, , `ParNumerator`],
6211
6217
  qvbrQualityLevel: [, , `QvbrQualityLevel`],
6218
+ rateControlMode: [, , `RateControlMode`],
6212
6219
  sceneChangeDetect: [, , `SceneChangeDetect`],
6213
6220
  timecodeBurninSettings: [, (_) => se_TimecodeBurninSettings(_, context), `TimecodeBurninSettings`]
6214
6221
  });
@@ -7461,6 +7468,7 @@ var se_Output = /* @__PURE__ */ __name((input, context) => {
7461
7468
  var se_OutputDestination = /* @__PURE__ */ __name((input, context) => {
7462
7469
  return (0, import_smithy_client.take)(input, {
7463
7470
  id: [, , `Id`],
7471
+ logicalInterfaceNames: [, import_smithy_client._json, `LogicalInterfaceNames`],
7464
7472
  mediaPackageSettings: [
7465
7473
  ,
7466
7474
  (_) => se___listOfMediaPackageOutputDestinationSettings(_, context),
@@ -8620,6 +8628,7 @@ var de_Av1ColorSpaceSettings = /* @__PURE__ */ __name((output, context) => {
8620
8628
  var de_Av1Settings = /* @__PURE__ */ __name((output, context) => {
8621
8629
  return (0, import_smithy_client.take)(output, {
8622
8630
  AfdSignaling: [, import_smithy_client.expectString, `afdSignaling`],
8631
+ Bitrate: [, import_smithy_client.expectInt32, `bitrate`],
8623
8632
  BufSize: [, import_smithy_client.expectInt32, `bufSize`],
8624
8633
  ColorSpaceSettings: [, (_) => de_Av1ColorSpaceSettings(_, context), `colorSpaceSettings`],
8625
8634
  FixedAfd: [, import_smithy_client.expectString, `fixedAfd`],
@@ -8634,6 +8643,7 @@ var de_Av1Settings = /* @__PURE__ */ __name((output, context) => {
8634
8643
  ParDenominator: [, import_smithy_client.expectInt32, `parDenominator`],
8635
8644
  ParNumerator: [, import_smithy_client.expectInt32, `parNumerator`],
8636
8645
  QvbrQualityLevel: [, import_smithy_client.expectInt32, `qvbrQualityLevel`],
8646
+ RateControlMode: [, import_smithy_client.expectString, `rateControlMode`],
8637
8647
  SceneChangeDetect: [, import_smithy_client.expectString, `sceneChangeDetect`],
8638
8648
  TimecodeBurninSettings: [, (_) => de_TimecodeBurninSettings(_, context), `timecodeBurninSettings`]
8639
8649
  });
@@ -10228,6 +10238,7 @@ var de_Output = /* @__PURE__ */ __name((output, context) => {
10228
10238
  var de_OutputDestination = /* @__PURE__ */ __name((output, context) => {
10229
10239
  return (0, import_smithy_client.take)(output, {
10230
10240
  Id: [, import_smithy_client.expectString, `id`],
10241
+ LogicalInterfaceNames: [, import_smithy_client._json, `logicalInterfaceNames`],
10231
10242
  MediaPackageSettings: [
10232
10243
  ,
10233
10244
  (_) => de___listOfMediaPackageOutputDestinationSettings(_, context),
@@ -15382,6 +15393,7 @@ var M2tsSegmentationMarkers = {
15382
15393
  Av1GopSizeUnits,
15383
15394
  Av1Level,
15384
15395
  Av1LookAheadRateControl,
15396
+ Av1RateControlMode,
15385
15397
  Av1SceneChangeDetect,
15386
15398
  TimecodeBurninFontSize,
15387
15399
  TimecodeBurninPosition,
@@ -421,6 +421,10 @@ export const Av1LookAheadRateControl = {
421
421
  LOW: "LOW",
422
422
  MEDIUM: "MEDIUM",
423
423
  };
424
+ export const Av1RateControlMode = {
425
+ CBR: "CBR",
426
+ QVBR: "QVBR",
427
+ };
424
428
  export const Av1SceneChangeDetect = {
425
429
  DISABLED: "DISABLED",
426
430
  ENABLED: "ENABLED",
@@ -4496,6 +4496,7 @@ const se_Av1ColorSpaceSettings = (input, context) => {
4496
4496
  const se_Av1Settings = (input, context) => {
4497
4497
  return take(input, {
4498
4498
  afdSignaling: [, , `AfdSignaling`],
4499
+ bitrate: [, , `Bitrate`],
4499
4500
  bufSize: [, , `BufSize`],
4500
4501
  colorSpaceSettings: [, (_) => se_Av1ColorSpaceSettings(_, context), `ColorSpaceSettings`],
4501
4502
  fixedAfd: [, , `FixedAfd`],
@@ -4510,6 +4511,7 @@ const se_Av1Settings = (input, context) => {
4510
4511
  parDenominator: [, , `ParDenominator`],
4511
4512
  parNumerator: [, , `ParNumerator`],
4512
4513
  qvbrQualityLevel: [, , `QvbrQualityLevel`],
4514
+ rateControlMode: [, , `RateControlMode`],
4513
4515
  sceneChangeDetect: [, , `SceneChangeDetect`],
4514
4516
  timecodeBurninSettings: [, (_) => se_TimecodeBurninSettings(_, context), `TimecodeBurninSettings`],
4515
4517
  });
@@ -5762,6 +5764,7 @@ const se_Output = (input, context) => {
5762
5764
  const se_OutputDestination = (input, context) => {
5763
5765
  return take(input, {
5764
5766
  id: [, , `Id`],
5767
+ logicalInterfaceNames: [, _json, `LogicalInterfaceNames`],
5765
5768
  mediaPackageSettings: [
5766
5769
  ,
5767
5770
  (_) => se___listOfMediaPackageOutputDestinationSettings(_, context),
@@ -7059,6 +7062,7 @@ const de_Av1ColorSpaceSettings = (output, context) => {
7059
7062
  const de_Av1Settings = (output, context) => {
7060
7063
  return take(output, {
7061
7064
  AfdSignaling: [, __expectString, `afdSignaling`],
7065
+ Bitrate: [, __expectInt32, `bitrate`],
7062
7066
  BufSize: [, __expectInt32, `bufSize`],
7063
7067
  ColorSpaceSettings: [, (_) => de_Av1ColorSpaceSettings(_, context), `colorSpaceSettings`],
7064
7068
  FixedAfd: [, __expectString, `fixedAfd`],
@@ -7073,6 +7077,7 @@ const de_Av1Settings = (output, context) => {
7073
7077
  ParDenominator: [, __expectInt32, `parDenominator`],
7074
7078
  ParNumerator: [, __expectInt32, `parNumerator`],
7075
7079
  QvbrQualityLevel: [, __expectInt32, `qvbrQualityLevel`],
7080
+ RateControlMode: [, __expectString, `rateControlMode`],
7076
7081
  SceneChangeDetect: [, __expectString, `sceneChangeDetect`],
7077
7082
  TimecodeBurninSettings: [, (_) => de_TimecodeBurninSettings(_, context), `timecodeBurninSettings`],
7078
7083
  });
@@ -8667,6 +8672,7 @@ const de_Output = (output, context) => {
8667
8672
  const de_OutputDestination = (output, context) => {
8668
8673
  return take(output, {
8669
8674
  Id: [, __expectString, `id`],
8675
+ LogicalInterfaceNames: [, _json, `logicalInterfaceNames`],
8670
8676
  MediaPackageSettings: [
8671
8677
  ,
8672
8678
  (_) => de___listOfMediaPackageOutputDestinationSettings(_, context),
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
- import { BatchUpdateScheduleRequest, BatchUpdateScheduleResponse } from "../models/models_1";
4
+ import { BatchUpdateScheduleRequest } from "../models/models_1";
5
+ import { BatchUpdateScheduleResponse } from "../models/models_2";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -68,6 +68,9 @@ declare const CreateChannelCommand_base: {
68
68
  * Url: "STRING_VALUE",
69
69
  * },
70
70
  * ],
71
+ * LogicalInterfaceNames: [ // __listOf__string
72
+ * "STRING_VALUE",
73
+ * ],
71
74
  * },
72
75
  * ],
73
76
  * EncoderSettings: { // EncoderSettings
@@ -543,7 +546,7 @@ declare const CreateChannelCommand_base: {
543
546
  * },
544
547
  * Outputs: [ // __listOfOutput // required
545
548
  * { // Output
546
- * AudioDescriptionNames: [ // __listOf__string
549
+ * AudioDescriptionNames: [
547
550
  * "STRING_VALUE",
548
551
  * ],
549
552
  * CaptionDescriptionNames: [
@@ -1045,6 +1048,8 @@ declare const CreateChannelCommand_base: {
1045
1048
  * Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
1046
1049
  * Prefix: "STRING_VALUE",
1047
1050
  * },
1051
+ * Bitrate: Number("int"),
1052
+ * RateControlMode: "CBR" || "QVBR",
1048
1053
  * },
1049
1054
  * },
1050
1055
  * Height: Number("int"),
@@ -1275,6 +1280,9 @@ declare const CreateChannelCommand_base: {
1275
1280
  * // Url: "STRING_VALUE",
1276
1281
  * // },
1277
1282
  * // ],
1283
+ * // LogicalInterfaceNames: [ // __listOf__string
1284
+ * // "STRING_VALUE",
1285
+ * // ],
1278
1286
  * // },
1279
1287
  * // ],
1280
1288
  * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
@@ -1755,7 +1763,7 @@ declare const CreateChannelCommand_base: {
1755
1763
  * // },
1756
1764
  * // Outputs: [ // __listOfOutput // required
1757
1765
  * // { // Output
1758
- * // AudioDescriptionNames: [ // __listOf__string
1766
+ * // AudioDescriptionNames: [
1759
1767
  * // "STRING_VALUE",
1760
1768
  * // ],
1761
1769
  * // CaptionDescriptionNames: [
@@ -2257,6 +2265,8 @@ declare const CreateChannelCommand_base: {
2257
2265
  * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
2258
2266
  * // Prefix: "STRING_VALUE",
2259
2267
  * // },
2268
+ * // Bitrate: Number("int"),
2269
+ * // RateControlMode: "CBR" || "QVBR",
2260
2270
  * // },
2261
2271
  * // },
2262
2272
  * // Height: Number("int"),
@@ -74,6 +74,9 @@ declare const DeleteChannelCommand_base: {
74
74
  * // Url: "STRING_VALUE",
75
75
  * // },
76
76
  * // ],
77
+ * // LogicalInterfaceNames: [ // __listOf__string
78
+ * // "STRING_VALUE",
79
+ * // ],
77
80
  * // },
78
81
  * // ],
79
82
  * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
@@ -554,7 +557,7 @@ declare const DeleteChannelCommand_base: {
554
557
  * // },
555
558
  * // Outputs: [ // __listOfOutput // required
556
559
  * // { // Output
557
- * // AudioDescriptionNames: [ // __listOf__string
560
+ * // AudioDescriptionNames: [
558
561
  * // "STRING_VALUE",
559
562
  * // ],
560
563
  * // CaptionDescriptionNames: [
@@ -1056,6 +1059,8 @@ declare const DeleteChannelCommand_base: {
1056
1059
  * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
1057
1060
  * // Prefix: "STRING_VALUE",
1058
1061
  * // },
1062
+ * // Bitrate: Number("int"),
1063
+ * // RateControlMode: "CBR" || "QVBR",
1059
1064
  * // },
1060
1065
  * // },
1061
1066
  * // Height: Number("int"),
@@ -74,6 +74,9 @@ declare const DescribeChannelCommand_base: {
74
74
  * // Url: "STRING_VALUE",
75
75
  * // },
76
76
  * // ],
77
+ * // LogicalInterfaceNames: [ // __listOf__string
78
+ * // "STRING_VALUE",
79
+ * // ],
77
80
  * // },
78
81
  * // ],
79
82
  * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
@@ -554,7 +557,7 @@ declare const DescribeChannelCommand_base: {
554
557
  * // },
555
558
  * // Outputs: [ // __listOfOutput // required
556
559
  * // { // Output
557
- * // AudioDescriptionNames: [ // __listOf__string
560
+ * // AudioDescriptionNames: [
558
561
  * // "STRING_VALUE",
559
562
  * // ],
560
563
  * // CaptionDescriptionNames: [
@@ -1056,6 +1059,8 @@ declare const DescribeChannelCommand_base: {
1056
1059
  * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
1057
1060
  * // Prefix: "STRING_VALUE",
1058
1061
  * // },
1062
+ * // Bitrate: Number("int"),
1063
+ * // RateControlMode: "CBR" || "QVBR",
1059
1064
  * // },
1060
1065
  * // },
1061
1066
  * // Height: Number("int"),
@@ -77,6 +77,9 @@ declare const ListChannelsCommand_base: {
77
77
  * // Url: "STRING_VALUE",
78
78
  * // },
79
79
  * // ],
80
+ * // LogicalInterfaceNames: [ // __listOf__string
81
+ * // "STRING_VALUE",
82
+ * // ],
80
83
  * // },
81
84
  * // ],
82
85
  * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
@@ -218,7 +221,7 @@ declare const ListChannelsCommand_base: {
218
221
  * // },
219
222
  * // },
220
223
  * // },
221
- * // LogicalInterfaceNames: [ // __listOf__string
224
+ * // LogicalInterfaceNames: [
222
225
  * // "STRING_VALUE",
223
226
  * // ],
224
227
  * // },
@@ -252,9 +255,7 @@ declare const ListChannelsCommand_base: {
252
255
  * // SecurityGroupIds: [
253
256
  * // "STRING_VALUE",
254
257
  * // ],
255
- * // SubnetIds: [
256
- * // "STRING_VALUE",
257
- * // ],
258
+ * // SubnetIds: "<__listOf__string>",
258
259
  * // },
259
260
  * // AnywhereSettings: { // DescribeAnywhereSettings
260
261
  * // ChannelPlacementGroupId: "STRING_VALUE",
@@ -77,6 +77,9 @@ declare const RestartChannelPipelinesCommand_base: {
77
77
  * // Url: "STRING_VALUE",
78
78
  * // },
79
79
  * // ],
80
+ * // LogicalInterfaceNames: [ // __listOf__string
81
+ * // "STRING_VALUE",
82
+ * // ],
80
83
  * // },
81
84
  * // ],
82
85
  * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
@@ -557,7 +560,7 @@ declare const RestartChannelPipelinesCommand_base: {
557
560
  * // },
558
561
  * // Outputs: [ // __listOfOutput // required
559
562
  * // { // Output
560
- * // AudioDescriptionNames: [ // __listOf__string
563
+ * // AudioDescriptionNames: [
561
564
  * // "STRING_VALUE",
562
565
  * // ],
563
566
  * // CaptionDescriptionNames: [
@@ -1059,6 +1062,8 @@ declare const RestartChannelPipelinesCommand_base: {
1059
1062
  * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
1060
1063
  * // Prefix: "STRING_VALUE",
1061
1064
  * // },
1065
+ * // Bitrate: Number("int"),
1066
+ * // RateControlMode: "CBR" || "QVBR",
1062
1067
  * // },
1063
1068
  * // },
1064
1069
  * // Height: Number("int"),
@@ -74,6 +74,9 @@ declare const StartChannelCommand_base: {
74
74
  * // Url: "STRING_VALUE",
75
75
  * // },
76
76
  * // ],
77
+ * // LogicalInterfaceNames: [ // __listOf__string
78
+ * // "STRING_VALUE",
79
+ * // ],
77
80
  * // },
78
81
  * // ],
79
82
  * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
@@ -554,7 +557,7 @@ declare const StartChannelCommand_base: {
554
557
  * // },
555
558
  * // Outputs: [ // __listOfOutput // required
556
559
  * // { // Output
557
- * // AudioDescriptionNames: [ // __listOf__string
560
+ * // AudioDescriptionNames: [
558
561
  * // "STRING_VALUE",
559
562
  * // ],
560
563
  * // CaptionDescriptionNames: [
@@ -1056,6 +1059,8 @@ declare const StartChannelCommand_base: {
1056
1059
  * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
1057
1060
  * // Prefix: "STRING_VALUE",
1058
1061
  * // },
1062
+ * // Bitrate: Number("int"),
1063
+ * // RateControlMode: "CBR" || "QVBR",
1059
1064
  * // },
1060
1065
  * // },
1061
1066
  * // Height: Number("int"),
@@ -74,6 +74,9 @@ declare const StopChannelCommand_base: {
74
74
  * // Url: "STRING_VALUE",
75
75
  * // },
76
76
  * // ],
77
+ * // LogicalInterfaceNames: [ // __listOf__string
78
+ * // "STRING_VALUE",
79
+ * // ],
77
80
  * // },
78
81
  * // ],
79
82
  * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
@@ -554,7 +557,7 @@ declare const StopChannelCommand_base: {
554
557
  * // },
555
558
  * // Outputs: [ // __listOfOutput // required
556
559
  * // { // Output
557
- * // AudioDescriptionNames: [ // __listOf__string
560
+ * // AudioDescriptionNames: [
558
561
  * // "STRING_VALUE",
559
562
  * // ],
560
563
  * // CaptionDescriptionNames: [
@@ -1056,6 +1059,8 @@ declare const StopChannelCommand_base: {
1056
1059
  * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
1057
1060
  * // Prefix: "STRING_VALUE",
1058
1061
  * // },
1062
+ * // Bitrate: Number("int"),
1063
+ * // RateControlMode: "CBR" || "QVBR",
1059
1064
  * // },
1060
1065
  * // },
1061
1066
  * // Height: Number("int"),
@@ -66,6 +66,9 @@ declare const UpdateChannelClassCommand_base: {
66
66
  * Url: "STRING_VALUE",
67
67
  * },
68
68
  * ],
69
+ * LogicalInterfaceNames: [ // __listOf__string
70
+ * "STRING_VALUE",
71
+ * ],
69
72
  * },
70
73
  * ],
71
74
  * };
@@ -107,6 +110,9 @@ declare const UpdateChannelClassCommand_base: {
107
110
  * // Url: "STRING_VALUE",
108
111
  * // },
109
112
  * // ],
113
+ * // LogicalInterfaceNames: [ // __listOf__string
114
+ * // "STRING_VALUE",
115
+ * // ],
110
116
  * // },
111
117
  * // ],
112
118
  * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
@@ -587,7 +593,7 @@ declare const UpdateChannelClassCommand_base: {
587
593
  * // },
588
594
  * // Outputs: [ // __listOfOutput // required
589
595
  * // { // Output
590
- * // AudioDescriptionNames: [ // __listOf__string
596
+ * // AudioDescriptionNames: [
591
597
  * // "STRING_VALUE",
592
598
  * // ],
593
599
  * // CaptionDescriptionNames: [
@@ -1089,6 +1095,8 @@ declare const UpdateChannelClassCommand_base: {
1089
1095
  * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
1090
1096
  * // Prefix: "STRING_VALUE",
1091
1097
  * // },
1098
+ * // Bitrate: Number("int"),
1099
+ * // RateControlMode: "CBR" || "QVBR",
1092
1100
  * // },
1093
1101
  * // },
1094
1102
  * // Height: Number("int"),
@@ -68,6 +68,9 @@ declare const UpdateChannelCommand_base: {
68
68
  * Url: "STRING_VALUE",
69
69
  * },
70
70
  * ],
71
+ * LogicalInterfaceNames: [ // __listOf__string
72
+ * "STRING_VALUE",
73
+ * ],
71
74
  * },
72
75
  * ],
73
76
  * EncoderSettings: { // EncoderSettings
@@ -543,7 +546,7 @@ declare const UpdateChannelCommand_base: {
543
546
  * },
544
547
  * Outputs: [ // __listOfOutput // required
545
548
  * { // Output
546
- * AudioDescriptionNames: [ // __listOf__string
549
+ * AudioDescriptionNames: [
547
550
  * "STRING_VALUE",
548
551
  * ],
549
552
  * CaptionDescriptionNames: [
@@ -1045,6 +1048,8 @@ declare const UpdateChannelCommand_base: {
1045
1048
  * Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
1046
1049
  * Prefix: "STRING_VALUE",
1047
1050
  * },
1051
+ * Bitrate: Number("int"),
1052
+ * RateControlMode: "CBR" || "QVBR",
1048
1053
  * },
1049
1054
  * },
1050
1055
  * Height: Number("int"),
@@ -1266,6 +1271,9 @@ declare const UpdateChannelCommand_base: {
1266
1271
  * // Url: "STRING_VALUE",
1267
1272
  * // },
1268
1273
  * // ],
1274
+ * // LogicalInterfaceNames: [ // __listOf__string
1275
+ * // "STRING_VALUE",
1276
+ * // ],
1269
1277
  * // },
1270
1278
  * // ],
1271
1279
  * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
@@ -1746,7 +1754,7 @@ declare const UpdateChannelCommand_base: {
1746
1754
  * // },
1747
1755
  * // Outputs: [ // __listOfOutput // required
1748
1756
  * // { // Output
1749
- * // AudioDescriptionNames: [ // __listOf__string
1757
+ * // AudioDescriptionNames: [
1750
1758
  * // "STRING_VALUE",
1751
1759
  * // ],
1752
1760
  * // CaptionDescriptionNames: [
@@ -2248,6 +2256,8 @@ declare const UpdateChannelCommand_base: {
2248
2256
  * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
2249
2257
  * // Prefix: "STRING_VALUE",
2250
2258
  * // },
2259
+ * // Bitrate: Number("int"),
2260
+ * // RateControlMode: "CBR" || "QVBR",
2251
2261
  * // },
2252
2262
  * // },
2253
2263
  * // Height: Number("int"),
@@ -2507,6 +2507,11 @@ export interface OutputDestination {
2507
2507
  * @public
2508
2508
  */
2509
2509
  SrtSettings?: SrtOutputDestinationSettings[] | undefined;
2510
+ /**
2511
+ * Optional assignment of an output to a logical interface on the Node. Only applies to on premises channels.
2512
+ * @public
2513
+ */
2514
+ LogicalInterfaceNames?: string[] | undefined;
2510
2515
  }
2511
2516
  /**
2512
2517
  * Placeholder documentation for AudioSilenceFailoverSettings
@@ -4084,6 +4084,18 @@ export declare const Av1LookAheadRateControl: {
4084
4084
  * @public
4085
4085
  */
4086
4086
  export type Av1LookAheadRateControl = (typeof Av1LookAheadRateControl)[keyof typeof Av1LookAheadRateControl];
4087
+ /**
4088
+ * @public
4089
+ * @enum
4090
+ */
4091
+ export declare const Av1RateControlMode: {
4092
+ readonly CBR: "CBR";
4093
+ readonly QVBR: "QVBR";
4094
+ };
4095
+ /**
4096
+ * @public
4097
+ */
4098
+ export type Av1RateControlMode = (typeof Av1RateControlMode)[keyof typeof Av1RateControlMode];
4087
4099
  /**
4088
4100
  * @public
4089
4101
  * @enum
@@ -4256,6 +4268,22 @@ export interface Av1Settings {
4256
4268
  * @public
4257
4269
  */
4258
4270
  TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
4271
+ /**
4272
+ * Average bitrate in bits/second. Required when the rate control mode is CBR. Not used for QVBR.
4273
+ * @public
4274
+ */
4275
+ Bitrate?: number | undefined;
4276
+ /**
4277
+ * Rate control mode.
4278
+ *
4279
+ * QVBR: Quality will match the specified quality level except when it is constrained by the
4280
+ * maximum bitrate. Recommended if you or your viewers pay for bandwidth.
4281
+ *
4282
+ * CBR: Quality varies, depending on the video complexity. Recommended only if you distribute
4283
+ * your assets to devices that cannot handle variable bitrates.
4284
+ * @public
4285
+ */
4286
+ RateControlMode?: Av1RateControlMode | undefined;
4259
4287
  }
4260
4288
  /**
4261
4289
  * @public
@@ -6397,19 +6425,3 @@ export interface BatchUpdateScheduleRequest {
6397
6425
  */
6398
6426
  Deletes?: BatchScheduleActionDeleteRequest | undefined;
6399
6427
  }
6400
- /**
6401
- * Placeholder documentation for BatchUpdateScheduleResponse
6402
- * @public
6403
- */
6404
- export interface BatchUpdateScheduleResponse {
6405
- /**
6406
- * Schedule actions created in the schedule.
6407
- * @public
6408
- */
6409
- Creates?: BatchScheduleActionCreateResult | undefined;
6410
- /**
6411
- * Schedule actions deleted from the schedule.
6412
- * @public
6413
- */
6414
- Deletes?: BatchScheduleActionDeleteResult | undefined;
6415
- }
@@ -1,6 +1,22 @@
1
1
  import { StreamingBlobTypes } from "@smithy/types";
2
2
  import { AudioDescription, 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, 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, BatchScheduleActionCreateResult, BatchScheduleActionDeleteResult, OutputGroup, PipelineDetail, RenewalSettings, Reservation, ReservationState, RouteCreateRequest, RouteUpdateRequest, ScheduleAction, SdiSourceMode, SdiSourceState, SdiSourceSummary, SdiSourceType, SignalMapMonitorDeploymentStatus, SignalMapStatus, SignalMapSummary, SrtCallerSourceRequest, ThumbnailDetail, TransferringInputDeviceSummary, VideoDescription } from "./models_1";
4
+ /**
5
+ * Placeholder documentation for BatchUpdateScheduleResponse
6
+ * @public
7
+ */
8
+ export interface BatchUpdateScheduleResponse {
9
+ /**
10
+ * Schedule actions created in the schedule.
11
+ * @public
12
+ */
13
+ Creates?: BatchScheduleActionCreateResult | undefined;
14
+ /**
15
+ * Schedule actions deleted from the schedule.
16
+ * @public
17
+ */
18
+ Deletes?: BatchScheduleActionDeleteResult | undefined;
19
+ }
4
20
  /**
5
21
  * @public
6
22
  * @enum
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../MediaLiveClient";
8
- import {
9
- BatchUpdateScheduleRequest,
10
- BatchUpdateScheduleResponse,
11
- } from "../models/models_1";
8
+ import { BatchUpdateScheduleRequest } from "../models/models_1";
9
+ import { BatchUpdateScheduleResponse } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface BatchUpdateScheduleCommandInput
@@ -864,6 +864,7 @@ export interface OutputDestination {
864
864
  MultiplexSettings?: MultiplexProgramChannelDestinationSettings | undefined;
865
865
  Settings?: OutputDestinationSettings[] | undefined;
866
866
  SrtSettings?: SrtOutputDestinationSettings[] | undefined;
867
+ LogicalInterfaceNames?: string[] | undefined;
867
868
  }
868
869
  export interface AudioSilenceFailoverSettings {
869
870
  AudioSelectorName: string | undefined;
@@ -1294,6 +1294,12 @@ export declare const Av1LookAheadRateControl: {
1294
1294
  };
1295
1295
  export type Av1LookAheadRateControl =
1296
1296
  (typeof Av1LookAheadRateControl)[keyof typeof Av1LookAheadRateControl];
1297
+ export declare const Av1RateControlMode: {
1298
+ readonly CBR: "CBR";
1299
+ readonly QVBR: "QVBR";
1300
+ };
1301
+ export type Av1RateControlMode =
1302
+ (typeof Av1RateControlMode)[keyof typeof Av1RateControlMode];
1297
1303
  export declare const Av1SceneChangeDetect: {
1298
1304
  readonly DISABLED: "DISABLED";
1299
1305
  readonly ENABLED: "ENABLED";
@@ -1344,6 +1350,8 @@ export interface Av1Settings {
1344
1350
  QvbrQualityLevel?: number | undefined;
1345
1351
  SceneChangeDetect?: Av1SceneChangeDetect | undefined;
1346
1352
  TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
1353
+ Bitrate?: number | undefined;
1354
+ RateControlMode?: Av1RateControlMode | undefined;
1347
1355
  }
1348
1356
  export declare const FrameCaptureIntervalUnit: {
1349
1357
  readonly MILLISECONDS: "MILLISECONDS";
@@ -2085,7 +2093,3 @@ export interface BatchUpdateScheduleRequest {
2085
2093
  Creates?: BatchScheduleActionCreateRequest | undefined;
2086
2094
  Deletes?: BatchScheduleActionDeleteRequest | undefined;
2087
2095
  }
2088
- export interface BatchUpdateScheduleResponse {
2089
- Creates?: BatchScheduleActionCreateResult | undefined;
2090
- Deletes?: BatchScheduleActionDeleteResult | undefined;
2091
- }
@@ -102,6 +102,8 @@ import {
102
102
  AnywhereSettings,
103
103
  AvailBlanking,
104
104
  AvailConfiguration,
105
+ BatchScheduleActionCreateResult,
106
+ BatchScheduleActionDeleteResult,
105
107
  OutputGroup,
106
108
  PipelineDetail,
107
109
  RenewalSettings,
@@ -122,6 +124,10 @@ import {
122
124
  TransferringInputDeviceSummary,
123
125
  VideoDescription,
124
126
  } from "./models_1";
127
+ export interface BatchUpdateScheduleResponse {
128
+ Creates?: BatchScheduleActionCreateResult | undefined;
129
+ Deletes?: BatchScheduleActionDeleteResult | undefined;
130
+ }
125
131
  export declare const BlackoutSlateNetworkEndBlackout: {
126
132
  readonly DISABLED: "DISABLED";
127
133
  readonly ENABLED: "ENABLED";
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.806.0",
4
+ "version": "3.808.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,39 +20,39 @@
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.806.0",
24
- "@aws-sdk/credential-provider-node": "3.806.0",
23
+ "@aws-sdk/core": "3.808.0",
24
+ "@aws-sdk/credential-provider-node": "3.808.0",
25
25
  "@aws-sdk/middleware-host-header": "3.804.0",
26
26
  "@aws-sdk/middleware-logger": "3.804.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.804.0",
28
- "@aws-sdk/middleware-user-agent": "3.806.0",
29
- "@aws-sdk/region-config-resolver": "3.806.0",
28
+ "@aws-sdk/middleware-user-agent": "3.808.0",
29
+ "@aws-sdk/region-config-resolver": "3.808.0",
30
30
  "@aws-sdk/types": "3.804.0",
31
- "@aws-sdk/util-endpoints": "3.806.0",
31
+ "@aws-sdk/util-endpoints": "3.808.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.804.0",
33
- "@aws-sdk/util-user-agent-node": "3.806.0",
34
- "@smithy/config-resolver": "^4.1.1",
33
+ "@aws-sdk/util-user-agent-node": "3.808.0",
34
+ "@smithy/config-resolver": "^4.1.2",
35
35
  "@smithy/core": "^3.3.1",
36
36
  "@smithy/fetch-http-handler": "^5.0.2",
37
37
  "@smithy/hash-node": "^4.0.2",
38
38
  "@smithy/invalid-dependency": "^4.0.2",
39
39
  "@smithy/middleware-content-length": "^4.0.2",
40
- "@smithy/middleware-endpoint": "^4.1.3",
41
- "@smithy/middleware-retry": "^4.1.4",
40
+ "@smithy/middleware-endpoint": "^4.1.4",
41
+ "@smithy/middleware-retry": "^4.1.5",
42
42
  "@smithy/middleware-serde": "^4.0.3",
43
43
  "@smithy/middleware-stack": "^4.0.2",
44
- "@smithy/node-config-provider": "^4.1.0",
44
+ "@smithy/node-config-provider": "^4.1.1",
45
45
  "@smithy/node-http-handler": "^4.0.4",
46
46
  "@smithy/protocol-http": "^5.1.0",
47
- "@smithy/smithy-client": "^4.2.3",
47
+ "@smithy/smithy-client": "^4.2.4",
48
48
  "@smithy/types": "^4.2.0",
49
49
  "@smithy/url-parser": "^4.0.2",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.11",
54
- "@smithy/util-defaults-mode-node": "^4.0.11",
55
- "@smithy/util-endpoints": "^3.0.3",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.12",
54
+ "@smithy/util-defaults-mode-node": "^4.0.12",
55
+ "@smithy/util-endpoints": "^3.0.4",
56
56
  "@smithy/util-middleware": "^4.0.2",
57
57
  "@smithy/util-retry": "^4.0.3",
58
58
  "@smithy/util-stream": "^4.2.0",