@aws-sdk/client-medialive 3.300.0 → 3.303.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/models/models_0.js +779 -935
- package/dist-cjs/models/models_1.js +532 -641
- package/dist-es/models/models_0.js +779 -935
- package/dist-es/models/models_1.js +532 -641
- package/dist-types/commands/AcceptInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/commands/BatchDeleteCommand.d.ts +2 -2
- package/dist-types/commands/BatchStartCommand.d.ts +2 -2
- package/dist-types/commands/BatchStopCommand.d.ts +2 -2
- package/dist-types/commands/BatchUpdateScheduleCommand.d.ts +33 -33
- package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/commands/ClaimDeviceCommand.d.ts +1 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +164 -182
- package/dist-types/commands/CreateInputCommand.d.ts +12 -12
- package/dist-types/commands/CreateInputSecurityGroupCommand.d.ts +4 -4
- package/dist-types/commands/CreateMultiplexCommand.d.ts +4 -4
- package/dist-types/commands/CreateMultiplexProgramCommand.d.ts +5 -5
- package/dist-types/commands/CreatePartnerInputCommand.d.ts +2 -2
- package/dist-types/commands/CreateTagsCommand.d.ts +2 -2
- package/dist-types/commands/DeleteChannelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInputCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInputSecurityGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMultiplexCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMultiplexProgramCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReservationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeChannelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputDeviceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputDeviceThumbnailCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputSecurityGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMultiplexCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +1 -1
- package/dist-types/commands/ListInputDeviceTransfersCommand.d.ts +1 -1
- package/dist-types/commands/ListInputDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListInputSecurityGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListInputsCommand.d.ts +1 -1
- package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +1 -1
- package/dist-types/commands/ListMultiplexesCommand.d.ts +1 -1
- package/dist-types/commands/ListOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/ListReservationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +3 -3
- package/dist-types/commands/RebootInputDeviceCommand.d.ts +1 -1
- package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/commands/StartChannelCommand.d.ts +1 -1
- package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +1 -1
- package/dist-types/commands/StartMultiplexCommand.d.ts +1 -1
- package/dist-types/commands/StopChannelCommand.d.ts +1 -1
- package/dist-types/commands/StopMultiplexCommand.d.ts +1 -1
- package/dist-types/commands/TransferInputDeviceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +8 -8
- package/dist-types/commands/UpdateChannelCommand.d.ts +162 -180
- package/dist-types/commands/UpdateInputCommand.d.ts +10 -10
- package/dist-types/commands/UpdateInputDeviceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateInputSecurityGroupCommand.d.ts +4 -4
- package/dist-types/commands/UpdateMultiplexCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMultiplexProgramCommand.d.ts +5 -5
- package/dist-types/commands/UpdateReservationCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +1559 -779
- package/dist-types/models/models_1.d.ts +1077 -532
- package/dist-types/ts3.4/models/models_0.d.ts +1060 -779
- package/dist-types/ts3.4/models/models_1.d.ts +729 -532
- package/package.json +37 -37
|
@@ -26,25 +26,25 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
26
26
|
* import { MediaLiveClient, UpdateChannelCommand } from "@aws-sdk/client-medialive"; // ES Modules import
|
|
27
27
|
* // const { MediaLiveClient, UpdateChannelCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
|
|
28
28
|
* const client = new MediaLiveClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* CdiInputSpecification: {
|
|
29
|
+
* const input = { // UpdateChannelRequest
|
|
30
|
+
* CdiInputSpecification: { // CdiInputSpecification
|
|
31
31
|
* Resolution: "SD" || "HD" || "FHD" || "UHD",
|
|
32
32
|
* },
|
|
33
33
|
* ChannelId: "STRING_VALUE", // required
|
|
34
|
-
* Destinations: [
|
|
35
|
-
* {
|
|
34
|
+
* Destinations: [ // __listOfOutputDestination
|
|
35
|
+
* { // OutputDestination
|
|
36
36
|
* Id: "STRING_VALUE",
|
|
37
|
-
* MediaPackageSettings: [
|
|
38
|
-
* {
|
|
37
|
+
* MediaPackageSettings: [ // __listOfMediaPackageOutputDestinationSettings
|
|
38
|
+
* { // MediaPackageOutputDestinationSettings
|
|
39
39
|
* ChannelId: "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
41
|
* ],
|
|
42
|
-
* MultiplexSettings: {
|
|
42
|
+
* MultiplexSettings: { // MultiplexProgramChannelDestinationSettings
|
|
43
43
|
* MultiplexId: "STRING_VALUE",
|
|
44
44
|
* ProgramName: "STRING_VALUE",
|
|
45
45
|
* },
|
|
46
|
-
* Settings: [
|
|
47
|
-
* {
|
|
46
|
+
* Settings: [ // __listOfOutputDestinationSettings
|
|
47
|
+
* { // OutputDestinationSettings
|
|
48
48
|
* PasswordParam: "STRING_VALUE",
|
|
49
49
|
* StreamName: "STRING_VALUE",
|
|
50
50
|
* Url: "STRING_VALUE",
|
|
@@ -53,10 +53,10 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
53
53
|
* ],
|
|
54
54
|
* },
|
|
55
55
|
* ],
|
|
56
|
-
* EncoderSettings: {
|
|
57
|
-
* AudioDescriptions: [ // required
|
|
58
|
-
* {
|
|
59
|
-
* AudioNormalizationSettings: {
|
|
56
|
+
* EncoderSettings: { // EncoderSettings
|
|
57
|
+
* AudioDescriptions: [ // __listOfAudioDescription // required
|
|
58
|
+
* { // AudioDescription
|
|
59
|
+
* AudioNormalizationSettings: { // AudioNormalizationSettings
|
|
60
60
|
* Algorithm: "ITU_1770_1" || "ITU_1770_2",
|
|
61
61
|
* AlgorithmControl: "CORRECT_AUDIO",
|
|
62
62
|
* TargetLkfs: Number("double"),
|
|
@@ -64,23 +64,23 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
64
64
|
* AudioSelectorName: "STRING_VALUE", // required
|
|
65
65
|
* AudioType: "CLEAN_EFFECTS" || "HEARING_IMPAIRED" || "UNDEFINED" || "VISUAL_IMPAIRED_COMMENTARY",
|
|
66
66
|
* AudioTypeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
67
|
-
* AudioWatermarkingSettings: {
|
|
68
|
-
* NielsenWatermarksSettings: {
|
|
69
|
-
* NielsenCbetSettings: {
|
|
67
|
+
* AudioWatermarkingSettings: { // AudioWatermarkSettings
|
|
68
|
+
* NielsenWatermarksSettings: { // NielsenWatermarksSettings
|
|
69
|
+
* NielsenCbetSettings: { // NielsenCBET
|
|
70
70
|
* CbetCheckDigitString: "STRING_VALUE", // required
|
|
71
71
|
* CbetStepaside: "DISABLED" || "ENABLED", // required
|
|
72
72
|
* Csid: "STRING_VALUE", // required
|
|
73
73
|
* },
|
|
74
74
|
* NielsenDistributionType: "FINAL_DISTRIBUTOR" || "PROGRAM_CONTENT",
|
|
75
|
-
* NielsenNaesIiNwSettings: {
|
|
75
|
+
* NielsenNaesIiNwSettings: { // NielsenNaesIiNw
|
|
76
76
|
* CheckDigitString: "STRING_VALUE", // required
|
|
77
77
|
* Sid: Number("double"), // required
|
|
78
78
|
* Timezone: "AMERICA_PUERTO_RICO" || "US_ALASKA" || "US_ARIZONA" || "US_CENTRAL" || "US_EASTERN" || "US_HAWAII" || "US_MOUNTAIN" || "US_PACIFIC" || "US_SAMOA" || "UTC",
|
|
79
79
|
* },
|
|
80
80
|
* },
|
|
81
81
|
* },
|
|
82
|
-
* CodecSettings: {
|
|
83
|
-
* AacSettings: {
|
|
82
|
+
* CodecSettings: { // AudioCodecSettings
|
|
83
|
+
* AacSettings: { // AacSettings
|
|
84
84
|
* Bitrate: Number("double"),
|
|
85
85
|
* CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
|
|
86
86
|
* InputType: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
@@ -91,7 +91,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
91
91
|
* Spec: "MPEG2" || "MPEG4",
|
|
92
92
|
* VbrQuality: "HIGH" || "LOW" || "MEDIUM_HIGH" || "MEDIUM_LOW",
|
|
93
93
|
* },
|
|
94
|
-
* Ac3Settings: {
|
|
94
|
+
* Ac3Settings: { // Ac3Settings
|
|
95
95
|
* Bitrate: Number("double"),
|
|
96
96
|
* BitstreamMode: "COMMENTARY" || "COMPLETE_MAIN" || "DIALOGUE" || "EMERGENCY" || "HEARING_IMPAIRED" || "MUSIC_AND_EFFECTS" || "VISUALLY_IMPAIRED" || "VOICE_OVER",
|
|
97
97
|
* CodingMode: "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_3_2_LFE",
|
|
@@ -100,7 +100,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
100
100
|
* LfeFilter: "DISABLED" || "ENABLED",
|
|
101
101
|
* MetadataControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
102
102
|
* },
|
|
103
|
-
* Eac3AtmosSettings: {
|
|
103
|
+
* Eac3AtmosSettings: { // Eac3AtmosSettings
|
|
104
104
|
* Bitrate: Number("double"),
|
|
105
105
|
* CodingMode: "CODING_MODE_5_1_4" || "CODING_MODE_7_1_4" || "CODING_MODE_9_1_6",
|
|
106
106
|
* Dialnorm: Number("int"),
|
|
@@ -109,7 +109,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
109
109
|
* HeightTrim: Number("double"),
|
|
110
110
|
* SurroundTrim: Number("double"),
|
|
111
111
|
* },
|
|
112
|
-
* Eac3Settings: {
|
|
112
|
+
* Eac3Settings: { // Eac3Settings
|
|
113
113
|
* AttenuationControl: "ATTENUATE_3_DB" || "NONE",
|
|
114
114
|
* Bitrate: Number("double"),
|
|
115
115
|
* BitstreamMode: "COMMENTARY" || "COMPLETE_MAIN" || "EMERGENCY" || "HEARING_IMPAIRED" || "VISUALLY_IMPAIRED",
|
|
@@ -131,13 +131,13 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
131
131
|
* SurroundExMode: "DISABLED" || "ENABLED" || "NOT_INDICATED",
|
|
132
132
|
* SurroundMode: "DISABLED" || "ENABLED" || "NOT_INDICATED",
|
|
133
133
|
* },
|
|
134
|
-
* Mp2Settings: {
|
|
134
|
+
* Mp2Settings: { // Mp2Settings
|
|
135
135
|
* Bitrate: Number("double"),
|
|
136
136
|
* CodingMode: "CODING_MODE_1_0" || "CODING_MODE_2_0",
|
|
137
137
|
* SampleRate: Number("double"),
|
|
138
138
|
* },
|
|
139
139
|
* PassThroughSettings: {},
|
|
140
|
-
* WavSettings: {
|
|
140
|
+
* WavSettings: { // WavSettings
|
|
141
141
|
* BitDepth: Number("double"),
|
|
142
142
|
* CodingMode: "CODING_MODE_1_0" || "CODING_MODE_2_0" || "CODING_MODE_4_0" || "CODING_MODE_8_0",
|
|
143
143
|
* SampleRate: Number("double"),
|
|
@@ -146,11 +146,11 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
146
146
|
* LanguageCode: "STRING_VALUE",
|
|
147
147
|
* LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
148
148
|
* Name: "STRING_VALUE", // required
|
|
149
|
-
* RemixSettings: {
|
|
150
|
-
* ChannelMappings: [ // required
|
|
151
|
-
* {
|
|
152
|
-
* InputChannelLevels: [ // required
|
|
153
|
-
* {
|
|
149
|
+
* RemixSettings: { // RemixSettings
|
|
150
|
+
* ChannelMappings: [ // __listOfAudioChannelMapping // required
|
|
151
|
+
* { // AudioChannelMapping
|
|
152
|
+
* InputChannelLevels: [ // __listOfInputChannelLevel // required
|
|
153
|
+
* { // InputChannelLevel
|
|
154
154
|
* Gain: Number("int"), // required
|
|
155
155
|
* InputChannel: Number("int"), // required
|
|
156
156
|
* },
|
|
@@ -164,17 +164,17 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
164
164
|
* StreamName: "STRING_VALUE",
|
|
165
165
|
* },
|
|
166
166
|
* ],
|
|
167
|
-
* AvailBlanking: {
|
|
168
|
-
* AvailBlankingImage: {
|
|
167
|
+
* AvailBlanking: { // AvailBlanking
|
|
168
|
+
* AvailBlankingImage: { // InputLocation
|
|
169
169
|
* PasswordParam: "STRING_VALUE",
|
|
170
170
|
* Uri: "STRING_VALUE", // required
|
|
171
171
|
* Username: "STRING_VALUE",
|
|
172
172
|
* },
|
|
173
173
|
* State: "DISABLED" || "ENABLED",
|
|
174
174
|
* },
|
|
175
|
-
* AvailConfiguration: {
|
|
176
|
-
* AvailSettings: {
|
|
177
|
-
* Esam: {
|
|
175
|
+
* AvailConfiguration: { // AvailConfiguration
|
|
176
|
+
* AvailSettings: { // AvailSettings
|
|
177
|
+
* Esam: { // Esam
|
|
178
178
|
* AcquisitionPointId: "STRING_VALUE", // required
|
|
179
179
|
* AdAvailOffset: Number("int"),
|
|
180
180
|
* PasswordParam: "STRING_VALUE",
|
|
@@ -182,19 +182,19 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
182
182
|
* Username: "STRING_VALUE",
|
|
183
183
|
* ZoneIdentity: "STRING_VALUE",
|
|
184
184
|
* },
|
|
185
|
-
* Scte35SpliceInsert: {
|
|
185
|
+
* Scte35SpliceInsert: { // Scte35SpliceInsert
|
|
186
186
|
* AdAvailOffset: Number("int"),
|
|
187
187
|
* NoRegionalBlackoutFlag: "FOLLOW" || "IGNORE",
|
|
188
188
|
* WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
189
189
|
* },
|
|
190
|
-
* Scte35TimeSignalApos: {
|
|
190
|
+
* Scte35TimeSignalApos: { // Scte35TimeSignalApos
|
|
191
191
|
* AdAvailOffset: Number("int"),
|
|
192
192
|
* NoRegionalBlackoutFlag: "FOLLOW" || "IGNORE",
|
|
193
193
|
* WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
|
|
194
194
|
* },
|
|
195
195
|
* },
|
|
196
196
|
* },
|
|
197
|
-
* BlackoutSlate: {
|
|
197
|
+
* BlackoutSlate: { // BlackoutSlate
|
|
198
198
|
* BlackoutSlateImage: {
|
|
199
199
|
* PasswordParam: "STRING_VALUE",
|
|
200
200
|
* Uri: "STRING_VALUE", // required
|
|
@@ -209,13 +209,13 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
209
209
|
* NetworkId: "STRING_VALUE",
|
|
210
210
|
* State: "DISABLED" || "ENABLED",
|
|
211
211
|
* },
|
|
212
|
-
* CaptionDescriptions: [
|
|
213
|
-
* {
|
|
212
|
+
* CaptionDescriptions: [ // __listOfCaptionDescription
|
|
213
|
+
* { // CaptionDescription
|
|
214
214
|
* Accessibility: "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES" || "IMPLEMENTS_ACCESSIBILITY_FEATURES",
|
|
215
215
|
* CaptionSelectorName: "STRING_VALUE", // required
|
|
216
|
-
* DestinationSettings: {
|
|
216
|
+
* DestinationSettings: { // CaptionDestinationSettings
|
|
217
217
|
* AribDestinationSettings: {},
|
|
218
|
-
* BurnInDestinationSettings: {
|
|
218
|
+
* BurnInDestinationSettings: { // BurnInDestinationSettings
|
|
219
219
|
* Alignment: "CENTERED" || "LEFT" || "SMART",
|
|
220
220
|
* BackgroundColor: "BLACK" || "NONE" || "WHITE",
|
|
221
221
|
* BackgroundOpacity: Number("int"),
|
|
@@ -238,7 +238,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
238
238
|
* XPosition: Number("int"),
|
|
239
239
|
* YPosition: Number("int"),
|
|
240
240
|
* },
|
|
241
|
-
* DvbSubDestinationSettings: {
|
|
241
|
+
* DvbSubDestinationSettings: { // DvbSubDestinationSettings
|
|
242
242
|
* Alignment: "CENTERED" || "LEFT" || "SMART",
|
|
243
243
|
* BackgroundColor: "BLACK" || "NONE" || "WHITE",
|
|
244
244
|
* BackgroundOpacity: Number("int"),
|
|
@@ -261,7 +261,7 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
261
261
|
* XPosition: Number("int"),
|
|
262
262
|
* YPosition: Number("int"),
|
|
263
263
|
* },
|
|
264
|
-
* EbuTtDDestinationSettings: {
|
|
264
|
+
* EbuTtDDestinationSettings: { // EbuTtDDestinationSettings
|
|
265
265
|
* CopyrightHolder: "STRING_VALUE",
|
|
266
266
|
* FillLineGap: "DISABLED" || "ENABLED",
|
|
267
267
|
* FontFamily: "STRING_VALUE",
|
|
@@ -274,10 +274,10 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
274
274
|
* Scte27DestinationSettings: {},
|
|
275
275
|
* SmpteTtDestinationSettings: {},
|
|
276
276
|
* TeletextDestinationSettings: {},
|
|
277
|
-
* TtmlDestinationSettings: {
|
|
277
|
+
* TtmlDestinationSettings: { // TtmlDestinationSettings
|
|
278
278
|
* StyleControl: "PASSTHROUGH" || "USE_CONFIGURED",
|
|
279
279
|
* },
|
|
280
|
-
* WebvttDestinationSettings: {
|
|
280
|
+
* WebvttDestinationSettings: { // WebvttDestinationSettings
|
|
281
281
|
* StyleControl: "NO_STYLE_DATA" || "PASSTHROUGH",
|
|
282
282
|
* },
|
|
283
283
|
* },
|
|
@@ -286,20 +286,16 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
286
286
|
* Name: "STRING_VALUE", // required
|
|
287
287
|
* },
|
|
288
288
|
* ],
|
|
289
|
-
* FeatureActivations: {
|
|
289
|
+
* FeatureActivations: { // FeatureActivations
|
|
290
290
|
* InputPrepareScheduleActions: "DISABLED" || "ENABLED",
|
|
291
291
|
* },
|
|
292
|
-
* GlobalConfiguration: {
|
|
292
|
+
* GlobalConfiguration: { // GlobalConfiguration
|
|
293
293
|
* InitialAudioGain: Number("int"),
|
|
294
294
|
* InputEndAction: "NONE" || "SWITCH_AND_LOOP_INPUTS",
|
|
295
|
-
* InputLossBehavior: {
|
|
295
|
+
* InputLossBehavior: { // InputLossBehavior
|
|
296
296
|
* BlackFrameMsec: Number("int"),
|
|
297
297
|
* InputLossImageColor: "STRING_VALUE",
|
|
298
|
-
* InputLossImageSlate:
|
|
299
|
-
* PasswordParam: "<InputLocation>",
|
|
300
|
-
* Uri: "<InputLocation>",
|
|
301
|
-
* Username: "<InputLocation>",
|
|
302
|
-
* },
|
|
298
|
+
* InputLossImageSlate: "<InputLocation>",
|
|
303
299
|
* InputLossImageType: "COLOR" || "SLATE",
|
|
304
300
|
* RepeatFrameMsec: Number("int"),
|
|
305
301
|
* },
|
|
@@ -307,51 +303,51 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
307
303
|
* OutputTimingSource: "INPUT_CLOCK" || "SYSTEM_CLOCK",
|
|
308
304
|
* SupportLowFramerateInputs: "DISABLED" || "ENABLED",
|
|
309
305
|
* },
|
|
310
|
-
* MotionGraphicsConfiguration: {
|
|
306
|
+
* MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
|
|
311
307
|
* MotionGraphicsInsertion: "DISABLED" || "ENABLED",
|
|
312
|
-
* MotionGraphicsSettings: {
|
|
308
|
+
* MotionGraphicsSettings: { // MotionGraphicsSettings
|
|
313
309
|
* HtmlMotionGraphicsSettings: {},
|
|
314
310
|
* },
|
|
315
311
|
* },
|
|
316
|
-
* NielsenConfiguration: {
|
|
312
|
+
* NielsenConfiguration: { // NielsenConfiguration
|
|
317
313
|
* DistributorId: "STRING_VALUE",
|
|
318
314
|
* NielsenPcmToId3Tagging: "DISABLED" || "ENABLED",
|
|
319
315
|
* },
|
|
320
|
-
* OutputGroups: [ // required
|
|
321
|
-
* {
|
|
316
|
+
* OutputGroups: [ // __listOfOutputGroup // required
|
|
317
|
+
* { // OutputGroup
|
|
322
318
|
* Name: "STRING_VALUE",
|
|
323
|
-
* OutputGroupSettings: {
|
|
324
|
-
* ArchiveGroupSettings: {
|
|
325
|
-
* ArchiveCdnSettings: {
|
|
326
|
-
* ArchiveS3Settings: {
|
|
319
|
+
* OutputGroupSettings: { // OutputGroupSettings
|
|
320
|
+
* ArchiveGroupSettings: { // ArchiveGroupSettings
|
|
321
|
+
* ArchiveCdnSettings: { // ArchiveCdnSettings
|
|
322
|
+
* ArchiveS3Settings: { // ArchiveS3Settings
|
|
327
323
|
* CannedAcl: "AUTHENTICATED_READ" || "BUCKET_OWNER_FULL_CONTROL" || "BUCKET_OWNER_READ" || "PUBLIC_READ",
|
|
328
324
|
* },
|
|
329
325
|
* },
|
|
330
|
-
* Destination: {
|
|
326
|
+
* Destination: { // OutputLocationRef
|
|
331
327
|
* DestinationRefId: "STRING_VALUE",
|
|
332
328
|
* },
|
|
333
329
|
* RolloverInterval: Number("int"),
|
|
334
330
|
* },
|
|
335
|
-
* FrameCaptureGroupSettings: {
|
|
331
|
+
* FrameCaptureGroupSettings: { // FrameCaptureGroupSettings
|
|
336
332
|
* Destination: {
|
|
337
333
|
* DestinationRefId: "STRING_VALUE",
|
|
338
334
|
* },
|
|
339
|
-
* FrameCaptureCdnSettings: {
|
|
340
|
-
* FrameCaptureS3Settings: {
|
|
335
|
+
* FrameCaptureCdnSettings: { // FrameCaptureCdnSettings
|
|
336
|
+
* FrameCaptureS3Settings: { // FrameCaptureS3Settings
|
|
341
337
|
* CannedAcl: "AUTHENTICATED_READ" || "BUCKET_OWNER_FULL_CONTROL" || "BUCKET_OWNER_READ" || "PUBLIC_READ",
|
|
342
338
|
* },
|
|
343
339
|
* },
|
|
344
340
|
* },
|
|
345
|
-
* HlsGroupSettings: {
|
|
346
|
-
* AdMarkers: [
|
|
341
|
+
* HlsGroupSettings: { // HlsGroupSettings
|
|
342
|
+
* AdMarkers: [ // __listOfHlsAdMarkers
|
|
347
343
|
* "ADOBE" || "ELEMENTAL" || "ELEMENTAL_SCTE35",
|
|
348
344
|
* ],
|
|
349
345
|
* BaseUrlContent: "STRING_VALUE",
|
|
350
346
|
* BaseUrlContent1: "STRING_VALUE",
|
|
351
347
|
* BaseUrlManifest: "STRING_VALUE",
|
|
352
348
|
* BaseUrlManifest1: "STRING_VALUE",
|
|
353
|
-
* CaptionLanguageMappings: [
|
|
354
|
-
* {
|
|
349
|
+
* CaptionLanguageMappings: [ // __listOfCaptionLanguageMapping
|
|
350
|
+
* { // CaptionLanguageMapping
|
|
355
351
|
* CaptionChannel: Number("int"), // required
|
|
356
352
|
* LanguageCode: "STRING_VALUE", // required
|
|
357
353
|
* LanguageDescription: "STRING_VALUE", // required
|
|
@@ -367,8 +363,8 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
367
363
|
* DirectoryStructure: "SINGLE_DIRECTORY" || "SUBDIRECTORY_PER_STREAM",
|
|
368
364
|
* DiscontinuityTags: "INSERT" || "NEVER_INSERT",
|
|
369
365
|
* EncryptionType: "AES128" || "SAMPLE_AES",
|
|
370
|
-
* HlsCdnSettings: {
|
|
371
|
-
* HlsAkamaiSettings: {
|
|
366
|
+
* HlsCdnSettings: { // HlsCdnSettings
|
|
367
|
+
* HlsAkamaiSettings: { // HlsAkamaiSettings
|
|
372
368
|
* ConnectionRetryInterval: Number("int"),
|
|
373
369
|
* FilecacheDuration: Number("int"),
|
|
374
370
|
* HttpTransferMode: "CHUNKED" || "NON_CHUNKED",
|
|
@@ -377,23 +373,23 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
377
373
|
* Salt: "STRING_VALUE",
|
|
378
374
|
* Token: "STRING_VALUE",
|
|
379
375
|
* },
|
|
380
|
-
* HlsBasicPutSettings: {
|
|
376
|
+
* HlsBasicPutSettings: { // HlsBasicPutSettings
|
|
381
377
|
* ConnectionRetryInterval: Number("int"),
|
|
382
378
|
* FilecacheDuration: Number("int"),
|
|
383
379
|
* NumRetries: Number("int"),
|
|
384
380
|
* RestartDelay: Number("int"),
|
|
385
381
|
* },
|
|
386
|
-
* HlsMediaStoreSettings: {
|
|
382
|
+
* HlsMediaStoreSettings: { // HlsMediaStoreSettings
|
|
387
383
|
* ConnectionRetryInterval: Number("int"),
|
|
388
384
|
* FilecacheDuration: Number("int"),
|
|
389
385
|
* MediaStoreStorageClass: "TEMPORAL",
|
|
390
386
|
* NumRetries: Number("int"),
|
|
391
387
|
* RestartDelay: Number("int"),
|
|
392
388
|
* },
|
|
393
|
-
* HlsS3Settings: {
|
|
389
|
+
* HlsS3Settings: { // HlsS3Settings
|
|
394
390
|
* CannedAcl: "AUTHENTICATED_READ" || "BUCKET_OWNER_FULL_CONTROL" || "BUCKET_OWNER_READ" || "PUBLIC_READ",
|
|
395
391
|
* },
|
|
396
|
-
* HlsWebdavSettings: {
|
|
392
|
+
* HlsWebdavSettings: { // HlsWebdavSettings
|
|
397
393
|
* ConnectionRetryInterval: Number("int"),
|
|
398
394
|
* FilecacheDuration: Number("int"),
|
|
399
395
|
* HttpTransferMode: "CHUNKED" || "NON_CHUNKED",
|
|
@@ -411,13 +407,9 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
411
407
|
* KeepSegments: Number("int"),
|
|
412
408
|
* KeyFormat: "STRING_VALUE",
|
|
413
409
|
* KeyFormatVersions: "STRING_VALUE",
|
|
414
|
-
* KeyProviderSettings: {
|
|
415
|
-
* StaticKeySettings: {
|
|
416
|
-
* KeyProviderServer:
|
|
417
|
-
* PasswordParam: "<InputLocation>",
|
|
418
|
-
* Uri: "<InputLocation>",
|
|
419
|
-
* Username: "<InputLocation>",
|
|
420
|
-
* },
|
|
410
|
+
* KeyProviderSettings: { // KeyProviderSettings
|
|
411
|
+
* StaticKeySettings: { // StaticKeySettings
|
|
412
|
+
* KeyProviderServer: "<InputLocation>",
|
|
421
413
|
* StaticKeyValue: "STRING_VALUE", // required
|
|
422
414
|
* },
|
|
423
415
|
* },
|
|
@@ -439,12 +431,12 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
439
431
|
* TimestampDeltaMilliseconds: Number("int"),
|
|
440
432
|
* TsFileMode: "SEGMENTED_FILES" || "SINGLE_FILE",
|
|
441
433
|
* },
|
|
442
|
-
* MediaPackageGroupSettings: {
|
|
434
|
+
* MediaPackageGroupSettings: { // MediaPackageGroupSettings
|
|
443
435
|
* Destination: {
|
|
444
436
|
* DestinationRefId: "STRING_VALUE",
|
|
445
437
|
* },
|
|
446
438
|
* },
|
|
447
|
-
* MsSmoothGroupSettings: {
|
|
439
|
+
* MsSmoothGroupSettings: { // MsSmoothGroupSettings
|
|
448
440
|
* AcquisitionPointId: "STRING_VALUE",
|
|
449
441
|
* AudioOnlyTimecodeControl: "PASSTHROUGH" || "USE_CONFIGURED_CLOCK",
|
|
450
442
|
* CertificateMode: "SELF_SIGNED" || "VERIFY_AUTHENTICITY",
|
|
@@ -468,8 +460,8 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
468
460
|
* TimestampOffsetMode: "USE_CONFIGURED_OFFSET" || "USE_EVENT_START_DATE",
|
|
469
461
|
* },
|
|
470
462
|
* MultiplexGroupSettings: {},
|
|
471
|
-
* RtmpGroupSettings: {
|
|
472
|
-
* AdMarkers: [
|
|
463
|
+
* RtmpGroupSettings: { // RtmpGroupSettings
|
|
464
|
+
* AdMarkers: [ // __listOfRtmpAdMarkers
|
|
473
465
|
* "ON_CUE_POINT_SCTE35",
|
|
474
466
|
* ],
|
|
475
467
|
* AuthenticationScheme: "AKAMAI" || "COMMON",
|
|
@@ -479,25 +471,25 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
479
471
|
* InputLossAction: "EMIT_OUTPUT" || "PAUSE_OUTPUT",
|
|
480
472
|
* RestartDelay: Number("int"),
|
|
481
473
|
* },
|
|
482
|
-
* UdpGroupSettings: {
|
|
474
|
+
* UdpGroupSettings: { // UdpGroupSettings
|
|
483
475
|
* InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
|
|
484
476
|
* TimedMetadataId3Frame: "NONE" || "PRIV" || "TDRL",
|
|
485
477
|
* TimedMetadataId3Period: Number("int"),
|
|
486
478
|
* },
|
|
487
479
|
* },
|
|
488
|
-
* Outputs: [ // required
|
|
489
|
-
* {
|
|
490
|
-
* AudioDescriptionNames: [
|
|
480
|
+
* Outputs: [ // __listOfOutput // required
|
|
481
|
+
* { // Output
|
|
482
|
+
* AudioDescriptionNames: [ // __listOf__string
|
|
491
483
|
* "STRING_VALUE",
|
|
492
484
|
* ],
|
|
493
485
|
* CaptionDescriptionNames: [
|
|
494
486
|
* "STRING_VALUE",
|
|
495
487
|
* ],
|
|
496
488
|
* OutputName: "STRING_VALUE",
|
|
497
|
-
* OutputSettings: {
|
|
498
|
-
* ArchiveOutputSettings: {
|
|
499
|
-
* ContainerSettings: {
|
|
500
|
-
* M2tsSettings: {
|
|
489
|
+
* OutputSettings: { // OutputSettings
|
|
490
|
+
* ArchiveOutputSettings: { // ArchiveOutputSettings
|
|
491
|
+
* ContainerSettings: { // ArchiveContainerSettings
|
|
492
|
+
* M2tsSettings: { // M2tsSettings
|
|
501
493
|
* AbsentInputAudioBehavior: "DROP" || "ENCODE_SILENCE",
|
|
502
494
|
* Arib: "DISABLED" || "ENABLED",
|
|
503
495
|
* AribCaptionsPid: "STRING_VALUE",
|
|
@@ -509,19 +501,19 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
509
501
|
* Bitrate: Number("int"),
|
|
510
502
|
* BufferModel: "MULTIPLEX" || "NONE",
|
|
511
503
|
* CcDescriptor: "DISABLED" || "ENABLED",
|
|
512
|
-
* DvbNitSettings: {
|
|
504
|
+
* DvbNitSettings: { // DvbNitSettings
|
|
513
505
|
* NetworkId: Number("int"), // required
|
|
514
506
|
* NetworkName: "STRING_VALUE", // required
|
|
515
507
|
* RepInterval: Number("int"),
|
|
516
508
|
* },
|
|
517
|
-
* DvbSdtSettings: {
|
|
509
|
+
* DvbSdtSettings: { // DvbSdtSettings
|
|
518
510
|
* OutputSdt: "SDT_FOLLOW" || "SDT_FOLLOW_IF_PRESENT" || "SDT_MANUAL" || "SDT_NONE",
|
|
519
511
|
* RepInterval: Number("int"),
|
|
520
512
|
* ServiceName: "STRING_VALUE",
|
|
521
513
|
* ServiceProviderName: "STRING_VALUE",
|
|
522
514
|
* },
|
|
523
515
|
* DvbSubPids: "STRING_VALUE",
|
|
524
|
-
* DvbTdtSettings: {
|
|
516
|
+
* DvbTdtSettings: { // DvbTdtSettings
|
|
525
517
|
* RepInterval: Number("int"),
|
|
526
518
|
* },
|
|
527
519
|
* DvbTeletextPid: "STRING_VALUE",
|
|
@@ -563,31 +555,27 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
563
555
|
* Extension: "STRING_VALUE",
|
|
564
556
|
* NameModifier: "STRING_VALUE",
|
|
565
557
|
* },
|
|
566
|
-
* FrameCaptureOutputSettings: {
|
|
558
|
+
* FrameCaptureOutputSettings: { // FrameCaptureOutputSettings
|
|
567
559
|
* NameModifier: "STRING_VALUE",
|
|
568
560
|
* },
|
|
569
|
-
* HlsOutputSettings: {
|
|
561
|
+
* HlsOutputSettings: { // HlsOutputSettings
|
|
570
562
|
* H265PackagingType: "HEV1" || "HVC1",
|
|
571
|
-
* HlsSettings: {
|
|
572
|
-
* AudioOnlyHlsSettings: {
|
|
563
|
+
* HlsSettings: { // HlsSettings
|
|
564
|
+
* AudioOnlyHlsSettings: { // AudioOnlyHlsSettings
|
|
573
565
|
* AudioGroupId: "STRING_VALUE",
|
|
574
|
-
* AudioOnlyImage:
|
|
575
|
-
* PasswordParam: "<InputLocation>",
|
|
576
|
-
* Uri: "<InputLocation>",
|
|
577
|
-
* Username: "<InputLocation>",
|
|
578
|
-
* },
|
|
566
|
+
* AudioOnlyImage: "<InputLocation>",
|
|
579
567
|
* AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
|
|
580
568
|
* SegmentType: "AAC" || "FMP4",
|
|
581
569
|
* },
|
|
582
|
-
* Fmp4HlsSettings: {
|
|
570
|
+
* Fmp4HlsSettings: { // Fmp4HlsSettings
|
|
583
571
|
* AudioRenditionSets: "STRING_VALUE",
|
|
584
572
|
* NielsenId3Behavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
|
|
585
573
|
* TimedMetadataBehavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
|
|
586
574
|
* },
|
|
587
575
|
* FrameCaptureHlsSettings: {},
|
|
588
|
-
* StandardHlsSettings: {
|
|
576
|
+
* StandardHlsSettings: { // StandardHlsSettings
|
|
589
577
|
* AudioRenditionSets: "STRING_VALUE",
|
|
590
|
-
* M3u8Settings: {
|
|
578
|
+
* M3u8Settings: { // M3u8Settings
|
|
591
579
|
* AudioFramesPerPes: Number("int"),
|
|
592
580
|
* AudioPids: "STRING_VALUE",
|
|
593
581
|
* EcmPid: "STRING_VALUE",
|
|
@@ -612,26 +600,22 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
612
600
|
* SegmentModifier: "STRING_VALUE",
|
|
613
601
|
* },
|
|
614
602
|
* MediaPackageOutputSettings: {},
|
|
615
|
-
* MsSmoothOutputSettings: {
|
|
603
|
+
* MsSmoothOutputSettings: { // MsSmoothOutputSettings
|
|
616
604
|
* H265PackagingType: "HEV1" || "HVC1",
|
|
617
605
|
* NameModifier: "STRING_VALUE",
|
|
618
606
|
* },
|
|
619
|
-
* MultiplexOutputSettings: {
|
|
620
|
-
* Destination:
|
|
621
|
-
* DestinationRefId: "STRING_VALUE",
|
|
622
|
-
* },
|
|
607
|
+
* MultiplexOutputSettings: { // MultiplexOutputSettings
|
|
608
|
+
* Destination: "<OutputLocationRef>", // required
|
|
623
609
|
* },
|
|
624
|
-
* RtmpOutputSettings: {
|
|
610
|
+
* RtmpOutputSettings: { // RtmpOutputSettings
|
|
625
611
|
* CertificateMode: "SELF_SIGNED" || "VERIFY_AUTHENTICITY",
|
|
626
612
|
* ConnectionRetryInterval: Number("int"),
|
|
627
|
-
* Destination:
|
|
628
|
-
* DestinationRefId: "STRING_VALUE",
|
|
629
|
-
* },
|
|
613
|
+
* Destination: "<OutputLocationRef>", // required
|
|
630
614
|
* NumRetries: Number("int"),
|
|
631
615
|
* },
|
|
632
|
-
* UdpOutputSettings: {
|
|
616
|
+
* UdpOutputSettings: { // UdpOutputSettings
|
|
633
617
|
* BufferMsec: Number("int"),
|
|
634
|
-
* ContainerSettings: {
|
|
618
|
+
* ContainerSettings: { // UdpContainerSettings
|
|
635
619
|
* M2tsSettings: {
|
|
636
620
|
* AbsentInputAudioBehavior: "DROP" || "ENCODE_SILENCE",
|
|
637
621
|
* Arib: "DISABLED" || "ENABLED",
|
|
@@ -694,10 +678,8 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
694
678
|
* Scte35PrerollPullupMilliseconds: Number("double"),
|
|
695
679
|
* },
|
|
696
680
|
* },
|
|
697
|
-
* Destination:
|
|
698
|
-
*
|
|
699
|
-
* },
|
|
700
|
-
* FecOutputSettings: {
|
|
681
|
+
* Destination: "<OutputLocationRef>", // required
|
|
682
|
+
* FecOutputSettings: { // FecOutputSettings
|
|
701
683
|
* ColumnDepth: Number("int"),
|
|
702
684
|
* IncludeFec: "COLUMN" || "COLUMN_AND_ROW",
|
|
703
685
|
* RowLength: Number("int"),
|
|
@@ -709,37 +691,37 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
709
691
|
* ],
|
|
710
692
|
* },
|
|
711
693
|
* ],
|
|
712
|
-
* TimecodeConfig: {
|
|
694
|
+
* TimecodeConfig: { // TimecodeConfig
|
|
713
695
|
* Source: "EMBEDDED" || "SYSTEMCLOCK" || "ZEROBASED", // required
|
|
714
696
|
* SyncThreshold: Number("int"),
|
|
715
697
|
* },
|
|
716
|
-
* VideoDescriptions: [ // required
|
|
717
|
-
* {
|
|
718
|
-
* CodecSettings: {
|
|
719
|
-
* FrameCaptureSettings: {
|
|
698
|
+
* VideoDescriptions: [ // __listOfVideoDescription // required
|
|
699
|
+
* { // VideoDescription
|
|
700
|
+
* CodecSettings: { // VideoCodecSettings
|
|
701
|
+
* FrameCaptureSettings: { // FrameCaptureSettings
|
|
720
702
|
* CaptureInterval: Number("int"),
|
|
721
703
|
* CaptureIntervalUnits: "MILLISECONDS" || "SECONDS",
|
|
722
|
-
* TimecodeBurninSettings: {
|
|
704
|
+
* TimecodeBurninSettings: { // TimecodeBurninSettings
|
|
723
705
|
* FontSize: "EXTRA_SMALL_10" || "LARGE_48" || "MEDIUM_32" || "SMALL_16", // required
|
|
724
706
|
* Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
|
|
725
707
|
* Prefix: "STRING_VALUE",
|
|
726
708
|
* },
|
|
727
709
|
* },
|
|
728
|
-
* H264Settings: {
|
|
710
|
+
* H264Settings: { // H264Settings
|
|
729
711
|
* AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
|
|
730
712
|
* AfdSignaling: "AUTO" || "FIXED" || "NONE",
|
|
731
713
|
* Bitrate: Number("int"),
|
|
732
714
|
* BufFillPct: Number("int"),
|
|
733
715
|
* BufSize: Number("int"),
|
|
734
716
|
* ColorMetadata: "IGNORE" || "INSERT",
|
|
735
|
-
* ColorSpaceSettings: {
|
|
717
|
+
* ColorSpaceSettings: { // H264ColorSpaceSettings
|
|
736
718
|
* ColorSpacePassthroughSettings: {},
|
|
737
719
|
* Rec601Settings: {},
|
|
738
720
|
* Rec709Settings: {},
|
|
739
721
|
* },
|
|
740
722
|
* EntropyEncoding: "CABAC" || "CAVLC",
|
|
741
|
-
* FilterSettings: {
|
|
742
|
-
* TemporalFilterSettings: {
|
|
723
|
+
* FilterSettings: { // H264FilterSettings
|
|
724
|
+
* TemporalFilterSettings: { // TemporalFilterSettings
|
|
743
725
|
* PostFilterSharpening: "AUTO" || "DISABLED" || "ENABLED",
|
|
744
726
|
* Strength: "AUTO" || "STRENGTH_1" || "STRENGTH_2" || "STRENGTH_3" || "STRENGTH_4" || "STRENGTH_5" || "STRENGTH_6" || "STRENGTH_7" || "STRENGTH_8" || "STRENGTH_9" || "STRENGTH_10" || "STRENGTH_11" || "STRENGTH_12" || "STRENGTH_13" || "STRENGTH_14" || "STRENGTH_15" || "STRENGTH_16",
|
|
745
727
|
* },
|
|
@@ -782,24 +764,24 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
782
764
|
* Prefix: "STRING_VALUE",
|
|
783
765
|
* },
|
|
784
766
|
* },
|
|
785
|
-
* H265Settings: {
|
|
767
|
+
* H265Settings: { // H265Settings
|
|
786
768
|
* AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
|
|
787
769
|
* AfdSignaling: "AUTO" || "FIXED" || "NONE",
|
|
788
770
|
* AlternativeTransferFunction: "INSERT" || "OMIT",
|
|
789
771
|
* Bitrate: Number("int"),
|
|
790
772
|
* BufSize: Number("int"),
|
|
791
773
|
* ColorMetadata: "IGNORE" || "INSERT",
|
|
792
|
-
* ColorSpaceSettings: {
|
|
774
|
+
* ColorSpaceSettings: { // H265ColorSpaceSettings
|
|
793
775
|
* ColorSpacePassthroughSettings: {},
|
|
794
776
|
* DolbyVision81Settings: {},
|
|
795
|
-
* Hdr10Settings: {
|
|
777
|
+
* Hdr10Settings: { // Hdr10Settings
|
|
796
778
|
* MaxCll: Number("int"),
|
|
797
779
|
* MaxFall: Number("int"),
|
|
798
780
|
* },
|
|
799
781
|
* Rec601Settings: {},
|
|
800
782
|
* Rec709Settings: {},
|
|
801
783
|
* },
|
|
802
|
-
* FilterSettings: {
|
|
784
|
+
* FilterSettings: { // H265FilterSettings
|
|
803
785
|
* TemporalFilterSettings: {
|
|
804
786
|
* PostFilterSharpening: "AUTO" || "DISABLED" || "ENABLED",
|
|
805
787
|
* Strength: "AUTO" || "STRENGTH_1" || "STRENGTH_2" || "STRENGTH_3" || "STRENGTH_4" || "STRENGTH_5" || "STRENGTH_6" || "STRENGTH_7" || "STRENGTH_8" || "STRENGTH_9" || "STRENGTH_10" || "STRENGTH_11" || "STRENGTH_12" || "STRENGTH_13" || "STRENGTH_14" || "STRENGTH_15" || "STRENGTH_16",
|
|
@@ -832,13 +814,13 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
832
814
|
* Prefix: "STRING_VALUE",
|
|
833
815
|
* },
|
|
834
816
|
* },
|
|
835
|
-
* Mpeg2Settings: {
|
|
817
|
+
* Mpeg2Settings: { // Mpeg2Settings
|
|
836
818
|
* AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
|
|
837
819
|
* AfdSignaling: "AUTO" || "FIXED" || "NONE",
|
|
838
820
|
* ColorMetadata: "IGNORE" || "INSERT",
|
|
839
821
|
* ColorSpace: "AUTO" || "PASSTHROUGH",
|
|
840
822
|
* DisplayAspectRatio: "DISPLAYRATIO16X9" || "DISPLAYRATIO4X3",
|
|
841
|
-
* FilterSettings: {
|
|
823
|
+
* FilterSettings: { // Mpeg2FilterSettings
|
|
842
824
|
* TemporalFilterSettings: {
|
|
843
825
|
* PostFilterSharpening: "AUTO" || "DISABLED" || "ENABLED",
|
|
844
826
|
* Strength: "AUTO" || "STRENGTH_1" || "STRENGTH_2" || "STRENGTH_3" || "STRENGTH_4" || "STRENGTH_5" || "STRENGTH_6" || "STRENGTH_7" || "STRENGTH_8" || "STRENGTH_9" || "STRENGTH_10" || "STRENGTH_11" || "STRENGTH_12" || "STRENGTH_13" || "STRENGTH_14" || "STRENGTH_15" || "STRENGTH_16",
|
|
@@ -870,21 +852,21 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
870
852
|
* },
|
|
871
853
|
* ],
|
|
872
854
|
* },
|
|
873
|
-
* InputAttachments: [
|
|
874
|
-
* {
|
|
875
|
-
* AutomaticInputFailoverSettings: {
|
|
855
|
+
* InputAttachments: [ // __listOfInputAttachment
|
|
856
|
+
* { // InputAttachment
|
|
857
|
+
* AutomaticInputFailoverSettings: { // AutomaticInputFailoverSettings
|
|
876
858
|
* ErrorClearTimeMsec: Number("int"),
|
|
877
|
-
* FailoverConditions: [
|
|
878
|
-
* {
|
|
879
|
-
* FailoverConditionSettings: {
|
|
880
|
-
* AudioSilenceSettings: {
|
|
859
|
+
* FailoverConditions: [ // __listOfFailoverCondition
|
|
860
|
+
* { // FailoverCondition
|
|
861
|
+
* FailoverConditionSettings: { // FailoverConditionSettings
|
|
862
|
+
* AudioSilenceSettings: { // AudioSilenceFailoverSettings
|
|
881
863
|
* AudioSelectorName: "STRING_VALUE", // required
|
|
882
864
|
* AudioSilenceThresholdMsec: Number("int"),
|
|
883
865
|
* },
|
|
884
|
-
* InputLossSettings: {
|
|
866
|
+
* InputLossSettings: { // InputLossFailoverSettings
|
|
885
867
|
* InputLossThresholdMsec: Number("int"),
|
|
886
868
|
* },
|
|
887
|
-
* VideoBlackSettings: {
|
|
869
|
+
* VideoBlackSettings: { // VideoBlackFailoverSettings
|
|
888
870
|
* BlackDetectThreshold: Number("double"),
|
|
889
871
|
* VideoBlackThresholdMsec: Number("int"),
|
|
890
872
|
* },
|
|
@@ -896,64 +878,64 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
896
878
|
* },
|
|
897
879
|
* InputAttachmentName: "STRING_VALUE",
|
|
898
880
|
* InputId: "STRING_VALUE",
|
|
899
|
-
* InputSettings: {
|
|
900
|
-
* AudioSelectors: [
|
|
901
|
-
* {
|
|
881
|
+
* InputSettings: { // InputSettings
|
|
882
|
+
* AudioSelectors: [ // __listOfAudioSelector
|
|
883
|
+
* { // AudioSelector
|
|
902
884
|
* Name: "STRING_VALUE", // required
|
|
903
|
-
* SelectorSettings: {
|
|
904
|
-
* AudioHlsRenditionSelection: {
|
|
885
|
+
* SelectorSettings: { // AudioSelectorSettings
|
|
886
|
+
* AudioHlsRenditionSelection: { // AudioHlsRenditionSelection
|
|
905
887
|
* GroupId: "STRING_VALUE", // required
|
|
906
888
|
* Name: "STRING_VALUE", // required
|
|
907
889
|
* },
|
|
908
|
-
* AudioLanguageSelection: {
|
|
890
|
+
* AudioLanguageSelection: { // AudioLanguageSelection
|
|
909
891
|
* LanguageCode: "STRING_VALUE", // required
|
|
910
892
|
* LanguageSelectionPolicy: "LOOSE" || "STRICT",
|
|
911
893
|
* },
|
|
912
|
-
* AudioPidSelection: {
|
|
894
|
+
* AudioPidSelection: { // AudioPidSelection
|
|
913
895
|
* Pid: Number("int"), // required
|
|
914
896
|
* },
|
|
915
|
-
* AudioTrackSelection: {
|
|
916
|
-
* Tracks: [ // required
|
|
917
|
-
* {
|
|
897
|
+
* AudioTrackSelection: { // AudioTrackSelection
|
|
898
|
+
* Tracks: [ // __listOfAudioTrack // required
|
|
899
|
+
* { // AudioTrack
|
|
918
900
|
* Track: Number("int"), // required
|
|
919
901
|
* },
|
|
920
902
|
* ],
|
|
921
|
-
* DolbyEDecode: {
|
|
903
|
+
* DolbyEDecode: { // AudioDolbyEDecode
|
|
922
904
|
* ProgramSelection: "ALL_CHANNELS" || "PROGRAM_1" || "PROGRAM_2" || "PROGRAM_3" || "PROGRAM_4" || "PROGRAM_5" || "PROGRAM_6" || "PROGRAM_7" || "PROGRAM_8", // required
|
|
923
905
|
* },
|
|
924
906
|
* },
|
|
925
907
|
* },
|
|
926
908
|
* },
|
|
927
909
|
* ],
|
|
928
|
-
* CaptionSelectors: [
|
|
929
|
-
* {
|
|
910
|
+
* CaptionSelectors: [ // __listOfCaptionSelector
|
|
911
|
+
* { // CaptionSelector
|
|
930
912
|
* LanguageCode: "STRING_VALUE",
|
|
931
913
|
* Name: "STRING_VALUE", // required
|
|
932
|
-
* SelectorSettings: {
|
|
933
|
-
* AncillarySourceSettings: {
|
|
914
|
+
* SelectorSettings: { // CaptionSelectorSettings
|
|
915
|
+
* AncillarySourceSettings: { // AncillarySourceSettings
|
|
934
916
|
* SourceAncillaryChannelNumber: Number("int"),
|
|
935
917
|
* },
|
|
936
918
|
* AribSourceSettings: {},
|
|
937
|
-
* DvbSubSourceSettings: {
|
|
919
|
+
* DvbSubSourceSettings: { // DvbSubSourceSettings
|
|
938
920
|
* OcrLanguage: "DEU" || "ENG" || "FRA" || "NLD" || "POR" || "SPA",
|
|
939
921
|
* Pid: Number("int"),
|
|
940
922
|
* },
|
|
941
|
-
* EmbeddedSourceSettings: {
|
|
923
|
+
* EmbeddedSourceSettings: { // EmbeddedSourceSettings
|
|
942
924
|
* Convert608To708: "DISABLED" || "UPCONVERT",
|
|
943
925
|
* Scte20Detection: "AUTO" || "OFF",
|
|
944
926
|
* Source608ChannelNumber: Number("int"),
|
|
945
927
|
* Source608TrackNumber: Number("int"),
|
|
946
928
|
* },
|
|
947
|
-
* Scte20SourceSettings: {
|
|
929
|
+
* Scte20SourceSettings: { // Scte20SourceSettings
|
|
948
930
|
* Convert608To708: "DISABLED" || "UPCONVERT",
|
|
949
931
|
* Source608ChannelNumber: Number("int"),
|
|
950
932
|
* },
|
|
951
|
-
* Scte27SourceSettings: {
|
|
933
|
+
* Scte27SourceSettings: { // Scte27SourceSettings
|
|
952
934
|
* OcrLanguage: "DEU" || "ENG" || "FRA" || "NLD" || "POR" || "SPA",
|
|
953
935
|
* Pid: Number("int"),
|
|
954
936
|
* },
|
|
955
|
-
* TeletextSourceSettings: {
|
|
956
|
-
* OutputRectangle: {
|
|
937
|
+
* TeletextSourceSettings: { // TeletextSourceSettings
|
|
938
|
+
* OutputRectangle: { // CaptionRectangle
|
|
957
939
|
* Height: Number("double"), // required
|
|
958
940
|
* LeftOffset: Number("double"), // required
|
|
959
941
|
* TopOffset: Number("double"), // required
|
|
@@ -968,8 +950,8 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
968
950
|
* DenoiseFilter: "DISABLED" || "ENABLED",
|
|
969
951
|
* FilterStrength: Number("int"),
|
|
970
952
|
* InputFilter: "AUTO" || "DISABLED" || "FORCED",
|
|
971
|
-
* NetworkInputSettings: {
|
|
972
|
-
* HlsInputSettings: {
|
|
953
|
+
* NetworkInputSettings: { // NetworkInputSettings
|
|
954
|
+
* HlsInputSettings: { // HlsInputSettings
|
|
973
955
|
* Bandwidth: Number("int"),
|
|
974
956
|
* BufferSegments: Number("int"),
|
|
975
957
|
* Retries: Number("int"),
|
|
@@ -981,20 +963,20 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
981
963
|
* Scte35Pid: Number("int"),
|
|
982
964
|
* Smpte2038DataPreference: "IGNORE" || "PREFER",
|
|
983
965
|
* SourceEndBehavior: "CONTINUE" || "LOOP",
|
|
984
|
-
* VideoSelector: {
|
|
966
|
+
* VideoSelector: { // VideoSelector
|
|
985
967
|
* ColorSpace: "FOLLOW" || "HDR10" || "HLG_2020" || "REC_601" || "REC_709",
|
|
986
|
-
* ColorSpaceSettings: {
|
|
968
|
+
* ColorSpaceSettings: { // VideoSelectorColorSpaceSettings
|
|
987
969
|
* Hdr10Settings: {
|
|
988
970
|
* MaxCll: Number("int"),
|
|
989
971
|
* MaxFall: Number("int"),
|
|
990
972
|
* },
|
|
991
973
|
* },
|
|
992
974
|
* ColorSpaceUsage: "FALLBACK" || "FORCE",
|
|
993
|
-
* SelectorSettings: {
|
|
994
|
-
* VideoSelectorPid: {
|
|
975
|
+
* SelectorSettings: { // VideoSelectorSettings
|
|
976
|
+
* VideoSelectorPid: { // VideoSelectorPid
|
|
995
977
|
* Pid: Number("int"),
|
|
996
978
|
* },
|
|
997
|
-
* VideoSelectorProgramId: {
|
|
979
|
+
* VideoSelectorProgramId: { // VideoSelectorProgramId
|
|
998
980
|
* ProgramId: Number("int"),
|
|
999
981
|
* },
|
|
1000
982
|
* },
|
|
@@ -1002,13 +984,13 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
1002
984
|
* },
|
|
1003
985
|
* },
|
|
1004
986
|
* ],
|
|
1005
|
-
* InputSpecification: {
|
|
987
|
+
* InputSpecification: { // InputSpecification
|
|
1006
988
|
* Codec: "MPEG2" || "AVC" || "HEVC",
|
|
1007
989
|
* MaximumBitrate: "MAX_10_MBPS" || "MAX_20_MBPS" || "MAX_50_MBPS",
|
|
1008
990
|
* Resolution: "SD" || "HD" || "UHD",
|
|
1009
991
|
* },
|
|
1010
992
|
* LogLevel: "ERROR" || "WARNING" || "INFO" || "DEBUG" || "DISABLED",
|
|
1011
|
-
* Maintenance: {
|
|
993
|
+
* Maintenance: { // MaintenanceUpdateSettings
|
|
1012
994
|
* MaintenanceDay: "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY" || "SUNDAY",
|
|
1013
995
|
* MaintenanceScheduledDate: "STRING_VALUE",
|
|
1014
996
|
* MaintenanceStartTime: "STRING_VALUE",
|