@aws-sdk/client-medialive 3.515.0 → 3.521.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.
Files changed (37) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/commands/RestartChannelPipelinesCommand.js +1 -0
  3. package/dist-cjs/index.js +74 -0
  4. package/dist-cjs/runtimeConfig.browser.js +1 -1
  5. package/dist-cjs/runtimeConfig.js +1 -1
  6. package/dist-es/MediaLive.js +2 -0
  7. package/dist-es/commands/RestartChannelPipelinesCommand.js +24 -0
  8. package/dist-es/commands/index.js +1 -0
  9. package/dist-es/models/models_0.js +4 -0
  10. package/dist-es/protocols/Aws_restJson1.js +46 -0
  11. package/dist-es/runtimeConfig.browser.js +1 -1
  12. package/dist-es/runtimeConfig.js +1 -1
  13. package/dist-types/MediaLive.d.ts +7 -0
  14. package/dist-types/MediaLiveClient.d.ts +7 -6
  15. package/dist-types/commands/ListChannelsCommand.d.ts +1 -2
  16. package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +1113 -0
  17. package/dist-types/commands/index.d.ts +1 -0
  18. package/dist-types/models/models_0.d.ts +13 -32
  19. package/dist-types/models/models_1.d.ts +32 -17
  20. package/dist-types/models/models_2.d.ts +136 -1
  21. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  22. package/dist-types/runtimeConfig.browser.d.ts +1 -4
  23. package/dist-types/runtimeConfig.d.ts +1 -4
  24. package/dist-types/runtimeConfig.native.d.ts +1 -4
  25. package/dist-types/ts3.4/MediaLive.d.ts +17 -0
  26. package/dist-types/ts3.4/MediaLiveClient.d.ts +9 -3
  27. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +1 -2
  28. package/dist-types/ts3.4/commands/RestartChannelPipelinesCommand.d.ts +30 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +6 -7
  31. package/dist-types/ts3.4/models/models_1.d.ts +8 -5
  32. package/dist-types/ts3.4/models/models_2.d.ts +30 -0
  33. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -13
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -14
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -13
  37. package/package.json +36 -36
@@ -0,0 +1,1113 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient";
4
+ import { RestartChannelPipelinesRequest, RestartChannelPipelinesResponse } from "../models/models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link RestartChannelPipelinesCommand}.
13
+ */
14
+ export interface RestartChannelPipelinesCommandInput extends RestartChannelPipelinesRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link RestartChannelPipelinesCommand}.
20
+ */
21
+ export interface RestartChannelPipelinesCommandOutput extends RestartChannelPipelinesResponse, __MetadataBearer {
22
+ }
23
+ declare const RestartChannelPipelinesCommand_base: {
24
+ new (input: RestartChannelPipelinesCommandInput): import("@smithy/smithy-client").CommandImpl<RestartChannelPipelinesCommandInput, RestartChannelPipelinesCommandOutput, MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * Restart pipelines in one channel that is currently running.
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { MediaLiveClient, RestartChannelPipelinesCommand } from "@aws-sdk/client-medialive"; // ES Modules import
34
+ * // const { MediaLiveClient, RestartChannelPipelinesCommand } = require("@aws-sdk/client-medialive"); // CommonJS import
35
+ * const client = new MediaLiveClient(config);
36
+ * const input = { // RestartChannelPipelinesRequest
37
+ * ChannelId: "STRING_VALUE", // required
38
+ * PipelineIds: [ // __listOfChannelPipelineIdToRestart
39
+ * "PIPELINE_0" || "PIPELINE_1",
40
+ * ],
41
+ * };
42
+ * const command = new RestartChannelPipelinesCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // RestartChannelPipelinesResponse
45
+ * // Arn: "STRING_VALUE",
46
+ * // CdiInputSpecification: { // CdiInputSpecification
47
+ * // Resolution: "SD" || "HD" || "FHD" || "UHD",
48
+ * // },
49
+ * // ChannelClass: "STANDARD" || "SINGLE_PIPELINE",
50
+ * // Destinations: [ // __listOfOutputDestination
51
+ * // { // OutputDestination
52
+ * // Id: "STRING_VALUE",
53
+ * // MediaPackageSettings: [ // __listOfMediaPackageOutputDestinationSettings
54
+ * // { // MediaPackageOutputDestinationSettings
55
+ * // ChannelId: "STRING_VALUE",
56
+ * // },
57
+ * // ],
58
+ * // MultiplexSettings: { // MultiplexProgramChannelDestinationSettings
59
+ * // MultiplexId: "STRING_VALUE",
60
+ * // ProgramName: "STRING_VALUE",
61
+ * // },
62
+ * // Settings: [ // __listOfOutputDestinationSettings
63
+ * // { // OutputDestinationSettings
64
+ * // PasswordParam: "STRING_VALUE",
65
+ * // StreamName: "STRING_VALUE",
66
+ * // Url: "STRING_VALUE",
67
+ * // Username: "STRING_VALUE",
68
+ * // },
69
+ * // ],
70
+ * // },
71
+ * // ],
72
+ * // EgressEndpoints: [ // __listOfChannelEgressEndpoint
73
+ * // { // ChannelEgressEndpoint
74
+ * // SourceIp: "STRING_VALUE",
75
+ * // },
76
+ * // ],
77
+ * // EncoderSettings: { // EncoderSettings
78
+ * // AudioDescriptions: [ // __listOfAudioDescription // required
79
+ * // { // AudioDescription
80
+ * // AudioNormalizationSettings: { // AudioNormalizationSettings
81
+ * // Algorithm: "ITU_1770_1" || "ITU_1770_2",
82
+ * // AlgorithmControl: "CORRECT_AUDIO",
83
+ * // TargetLkfs: Number("double"),
84
+ * // },
85
+ * // AudioSelectorName: "STRING_VALUE", // required
86
+ * // AudioType: "CLEAN_EFFECTS" || "HEARING_IMPAIRED" || "UNDEFINED" || "VISUAL_IMPAIRED_COMMENTARY",
87
+ * // AudioTypeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
88
+ * // AudioWatermarkingSettings: { // AudioWatermarkSettings
89
+ * // NielsenWatermarksSettings: { // NielsenWatermarksSettings
90
+ * // NielsenCbetSettings: { // NielsenCBET
91
+ * // CbetCheckDigitString: "STRING_VALUE", // required
92
+ * // CbetStepaside: "DISABLED" || "ENABLED", // required
93
+ * // Csid: "STRING_VALUE", // required
94
+ * // },
95
+ * // NielsenDistributionType: "FINAL_DISTRIBUTOR" || "PROGRAM_CONTENT",
96
+ * // NielsenNaesIiNwSettings: { // NielsenNaesIiNw
97
+ * // CheckDigitString: "STRING_VALUE", // required
98
+ * // Sid: Number("double"), // required
99
+ * // Timezone: "AMERICA_PUERTO_RICO" || "US_ALASKA" || "US_ARIZONA" || "US_CENTRAL" || "US_EASTERN" || "US_HAWAII" || "US_MOUNTAIN" || "US_PACIFIC" || "US_SAMOA" || "UTC",
100
+ * // },
101
+ * // },
102
+ * // },
103
+ * // CodecSettings: { // AudioCodecSettings
104
+ * // AacSettings: { // AacSettings
105
+ * // Bitrate: Number("double"),
106
+ * // CodingMode: "AD_RECEIVER_MIX" || "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_5_1",
107
+ * // InputType: "BROADCASTER_MIXED_AD" || "NORMAL",
108
+ * // Profile: "HEV1" || "HEV2" || "LC",
109
+ * // RateControlMode: "CBR" || "VBR",
110
+ * // RawFormat: "LATM_LOAS" || "NONE",
111
+ * // SampleRate: Number("double"),
112
+ * // Spec: "MPEG2" || "MPEG4",
113
+ * // VbrQuality: "HIGH" || "LOW" || "MEDIUM_HIGH" || "MEDIUM_LOW",
114
+ * // },
115
+ * // Ac3Settings: { // Ac3Settings
116
+ * // Bitrate: Number("double"),
117
+ * // BitstreamMode: "COMMENTARY" || "COMPLETE_MAIN" || "DIALOGUE" || "EMERGENCY" || "HEARING_IMPAIRED" || "MUSIC_AND_EFFECTS" || "VISUALLY_IMPAIRED" || "VOICE_OVER",
118
+ * // CodingMode: "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_3_2_LFE",
119
+ * // Dialnorm: Number("int"),
120
+ * // DrcProfile: "FILM_STANDARD" || "NONE",
121
+ * // LfeFilter: "DISABLED" || "ENABLED",
122
+ * // MetadataControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
123
+ * // AttenuationControl: "ATTENUATE_3_DB" || "NONE",
124
+ * // },
125
+ * // Eac3AtmosSettings: { // Eac3AtmosSettings
126
+ * // Bitrate: Number("double"),
127
+ * // CodingMode: "CODING_MODE_5_1_4" || "CODING_MODE_7_1_4" || "CODING_MODE_9_1_6",
128
+ * // Dialnorm: Number("int"),
129
+ * // DrcLine: "FILM_LIGHT" || "FILM_STANDARD" || "MUSIC_LIGHT" || "MUSIC_STANDARD" || "NONE" || "SPEECH",
130
+ * // DrcRf: "FILM_LIGHT" || "FILM_STANDARD" || "MUSIC_LIGHT" || "MUSIC_STANDARD" || "NONE" || "SPEECH",
131
+ * // HeightTrim: Number("double"),
132
+ * // SurroundTrim: Number("double"),
133
+ * // },
134
+ * // Eac3Settings: { // Eac3Settings
135
+ * // AttenuationControl: "ATTENUATE_3_DB" || "NONE",
136
+ * // Bitrate: Number("double"),
137
+ * // BitstreamMode: "COMMENTARY" || "COMPLETE_MAIN" || "EMERGENCY" || "HEARING_IMPAIRED" || "VISUALLY_IMPAIRED",
138
+ * // CodingMode: "CODING_MODE_1_0" || "CODING_MODE_2_0" || "CODING_MODE_3_2",
139
+ * // DcFilter: "DISABLED" || "ENABLED",
140
+ * // Dialnorm: Number("int"),
141
+ * // DrcLine: "FILM_LIGHT" || "FILM_STANDARD" || "MUSIC_LIGHT" || "MUSIC_STANDARD" || "NONE" || "SPEECH",
142
+ * // DrcRf: "FILM_LIGHT" || "FILM_STANDARD" || "MUSIC_LIGHT" || "MUSIC_STANDARD" || "NONE" || "SPEECH",
143
+ * // LfeControl: "LFE" || "NO_LFE",
144
+ * // LfeFilter: "DISABLED" || "ENABLED",
145
+ * // LoRoCenterMixLevel: Number("double"),
146
+ * // LoRoSurroundMixLevel: Number("double"),
147
+ * // LtRtCenterMixLevel: Number("double"),
148
+ * // LtRtSurroundMixLevel: Number("double"),
149
+ * // MetadataControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
150
+ * // PassthroughControl: "NO_PASSTHROUGH" || "WHEN_POSSIBLE",
151
+ * // PhaseControl: "NO_SHIFT" || "SHIFT_90_DEGREES",
152
+ * // StereoDownmix: "DPL2" || "LO_RO" || "LT_RT" || "NOT_INDICATED",
153
+ * // SurroundExMode: "DISABLED" || "ENABLED" || "NOT_INDICATED",
154
+ * // SurroundMode: "DISABLED" || "ENABLED" || "NOT_INDICATED",
155
+ * // },
156
+ * // Mp2Settings: { // Mp2Settings
157
+ * // Bitrate: Number("double"),
158
+ * // CodingMode: "CODING_MODE_1_0" || "CODING_MODE_2_0",
159
+ * // SampleRate: Number("double"),
160
+ * // },
161
+ * // PassThroughSettings: {},
162
+ * // WavSettings: { // WavSettings
163
+ * // BitDepth: Number("double"),
164
+ * // CodingMode: "CODING_MODE_1_0" || "CODING_MODE_2_0" || "CODING_MODE_4_0" || "CODING_MODE_8_0",
165
+ * // SampleRate: Number("double"),
166
+ * // },
167
+ * // },
168
+ * // LanguageCode: "STRING_VALUE",
169
+ * // LanguageCodeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
170
+ * // Name: "STRING_VALUE", // required
171
+ * // RemixSettings: { // RemixSettings
172
+ * // ChannelMappings: [ // __listOfAudioChannelMapping // required
173
+ * // { // AudioChannelMapping
174
+ * // InputChannelLevels: [ // __listOfInputChannelLevel // required
175
+ * // { // InputChannelLevel
176
+ * // Gain: Number("int"), // required
177
+ * // InputChannel: Number("int"), // required
178
+ * // },
179
+ * // ],
180
+ * // OutputChannel: Number("int"), // required
181
+ * // },
182
+ * // ],
183
+ * // ChannelsIn: Number("int"),
184
+ * // ChannelsOut: Number("int"),
185
+ * // },
186
+ * // StreamName: "STRING_VALUE",
187
+ * // },
188
+ * // ],
189
+ * // AvailBlanking: { // AvailBlanking
190
+ * // AvailBlankingImage: { // InputLocation
191
+ * // PasswordParam: "STRING_VALUE",
192
+ * // Uri: "STRING_VALUE", // required
193
+ * // Username: "STRING_VALUE",
194
+ * // },
195
+ * // State: "DISABLED" || "ENABLED",
196
+ * // },
197
+ * // AvailConfiguration: { // AvailConfiguration
198
+ * // AvailSettings: { // AvailSettings
199
+ * // Esam: { // Esam
200
+ * // AcquisitionPointId: "STRING_VALUE", // required
201
+ * // AdAvailOffset: Number("int"),
202
+ * // PasswordParam: "STRING_VALUE",
203
+ * // PoisEndpoint: "STRING_VALUE", // required
204
+ * // Username: "STRING_VALUE",
205
+ * // ZoneIdentity: "STRING_VALUE",
206
+ * // },
207
+ * // Scte35SpliceInsert: { // Scte35SpliceInsert
208
+ * // AdAvailOffset: Number("int"),
209
+ * // NoRegionalBlackoutFlag: "FOLLOW" || "IGNORE",
210
+ * // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
211
+ * // },
212
+ * // Scte35TimeSignalApos: { // Scte35TimeSignalApos
213
+ * // AdAvailOffset: Number("int"),
214
+ * // NoRegionalBlackoutFlag: "FOLLOW" || "IGNORE",
215
+ * // WebDeliveryAllowedFlag: "FOLLOW" || "IGNORE",
216
+ * // },
217
+ * // },
218
+ * // },
219
+ * // BlackoutSlate: { // BlackoutSlate
220
+ * // BlackoutSlateImage: {
221
+ * // PasswordParam: "STRING_VALUE",
222
+ * // Uri: "STRING_VALUE", // required
223
+ * // Username: "STRING_VALUE",
224
+ * // },
225
+ * // NetworkEndBlackout: "DISABLED" || "ENABLED",
226
+ * // NetworkEndBlackoutImage: {
227
+ * // PasswordParam: "STRING_VALUE",
228
+ * // Uri: "STRING_VALUE", // required
229
+ * // Username: "STRING_VALUE",
230
+ * // },
231
+ * // NetworkId: "STRING_VALUE",
232
+ * // State: "DISABLED" || "ENABLED",
233
+ * // },
234
+ * // CaptionDescriptions: [ // __listOfCaptionDescription
235
+ * // { // CaptionDescription
236
+ * // Accessibility: "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES" || "IMPLEMENTS_ACCESSIBILITY_FEATURES",
237
+ * // CaptionSelectorName: "STRING_VALUE", // required
238
+ * // DestinationSettings: { // CaptionDestinationSettings
239
+ * // AribDestinationSettings: {},
240
+ * // BurnInDestinationSettings: { // BurnInDestinationSettings
241
+ * // Alignment: "CENTERED" || "LEFT" || "SMART",
242
+ * // BackgroundColor: "BLACK" || "NONE" || "WHITE",
243
+ * // BackgroundOpacity: Number("int"),
244
+ * // Font: {
245
+ * // PasswordParam: "STRING_VALUE",
246
+ * // Uri: "STRING_VALUE", // required
247
+ * // Username: "STRING_VALUE",
248
+ * // },
249
+ * // FontColor: "BLACK" || "BLUE" || "GREEN" || "RED" || "WHITE" || "YELLOW",
250
+ * // FontOpacity: Number("int"),
251
+ * // FontResolution: Number("int"),
252
+ * // FontSize: "STRING_VALUE",
253
+ * // OutlineColor: "BLACK" || "BLUE" || "GREEN" || "RED" || "WHITE" || "YELLOW",
254
+ * // OutlineSize: Number("int"),
255
+ * // ShadowColor: "BLACK" || "NONE" || "WHITE",
256
+ * // ShadowOpacity: Number("int"),
257
+ * // ShadowXOffset: Number("int"),
258
+ * // ShadowYOffset: Number("int"),
259
+ * // TeletextGridControl: "FIXED" || "SCALED",
260
+ * // XPosition: Number("int"),
261
+ * // YPosition: Number("int"),
262
+ * // },
263
+ * // DvbSubDestinationSettings: { // DvbSubDestinationSettings
264
+ * // Alignment: "CENTERED" || "LEFT" || "SMART",
265
+ * // BackgroundColor: "BLACK" || "NONE" || "WHITE",
266
+ * // BackgroundOpacity: Number("int"),
267
+ * // Font: {
268
+ * // PasswordParam: "STRING_VALUE",
269
+ * // Uri: "STRING_VALUE", // required
270
+ * // Username: "STRING_VALUE",
271
+ * // },
272
+ * // FontColor: "BLACK" || "BLUE" || "GREEN" || "RED" || "WHITE" || "YELLOW",
273
+ * // FontOpacity: Number("int"),
274
+ * // FontResolution: Number("int"),
275
+ * // FontSize: "STRING_VALUE",
276
+ * // OutlineColor: "BLACK" || "BLUE" || "GREEN" || "RED" || "WHITE" || "YELLOW",
277
+ * // OutlineSize: Number("int"),
278
+ * // ShadowColor: "BLACK" || "NONE" || "WHITE",
279
+ * // ShadowOpacity: Number("int"),
280
+ * // ShadowXOffset: Number("int"),
281
+ * // ShadowYOffset: Number("int"),
282
+ * // TeletextGridControl: "FIXED" || "SCALED",
283
+ * // XPosition: Number("int"),
284
+ * // YPosition: Number("int"),
285
+ * // },
286
+ * // EbuTtDDestinationSettings: { // EbuTtDDestinationSettings
287
+ * // CopyrightHolder: "STRING_VALUE",
288
+ * // FillLineGap: "DISABLED" || "ENABLED",
289
+ * // FontFamily: "STRING_VALUE",
290
+ * // StyleControl: "EXCLUDE" || "INCLUDE",
291
+ * // },
292
+ * // EmbeddedDestinationSettings: {},
293
+ * // EmbeddedPlusScte20DestinationSettings: {},
294
+ * // RtmpCaptionInfoDestinationSettings: {},
295
+ * // Scte20PlusEmbeddedDestinationSettings: {},
296
+ * // Scte27DestinationSettings: {},
297
+ * // SmpteTtDestinationSettings: {},
298
+ * // TeletextDestinationSettings: {},
299
+ * // TtmlDestinationSettings: { // TtmlDestinationSettings
300
+ * // StyleControl: "PASSTHROUGH" || "USE_CONFIGURED",
301
+ * // },
302
+ * // WebvttDestinationSettings: { // WebvttDestinationSettings
303
+ * // StyleControl: "NO_STYLE_DATA" || "PASSTHROUGH",
304
+ * // },
305
+ * // },
306
+ * // LanguageCode: "STRING_VALUE",
307
+ * // LanguageDescription: "STRING_VALUE",
308
+ * // Name: "STRING_VALUE", // required
309
+ * // },
310
+ * // ],
311
+ * // FeatureActivations: { // FeatureActivations
312
+ * // InputPrepareScheduleActions: "DISABLED" || "ENABLED",
313
+ * // OutputStaticImageOverlayScheduleActions: "DISABLED" || "ENABLED",
314
+ * // },
315
+ * // GlobalConfiguration: { // GlobalConfiguration
316
+ * // InitialAudioGain: Number("int"),
317
+ * // InputEndAction: "NONE" || "SWITCH_AND_LOOP_INPUTS",
318
+ * // InputLossBehavior: { // InputLossBehavior
319
+ * // BlackFrameMsec: Number("int"),
320
+ * // InputLossImageColor: "STRING_VALUE",
321
+ * // InputLossImageSlate: "<InputLocation>",
322
+ * // InputLossImageType: "COLOR" || "SLATE",
323
+ * // RepeatFrameMsec: Number("int"),
324
+ * // },
325
+ * // OutputLockingMode: "EPOCH_LOCKING" || "PIPELINE_LOCKING",
326
+ * // OutputTimingSource: "INPUT_CLOCK" || "SYSTEM_CLOCK",
327
+ * // SupportLowFramerateInputs: "DISABLED" || "ENABLED",
328
+ * // OutputLockingSettings: { // OutputLockingSettings
329
+ * // EpochLockingSettings: { // EpochLockingSettings
330
+ * // CustomEpoch: "STRING_VALUE",
331
+ * // JamSyncTime: "STRING_VALUE",
332
+ * // },
333
+ * // PipelineLockingSettings: {},
334
+ * // },
335
+ * // },
336
+ * // MotionGraphicsConfiguration: { // MotionGraphicsConfiguration
337
+ * // MotionGraphicsInsertion: "DISABLED" || "ENABLED",
338
+ * // MotionGraphicsSettings: { // MotionGraphicsSettings
339
+ * // HtmlMotionGraphicsSettings: {},
340
+ * // },
341
+ * // },
342
+ * // NielsenConfiguration: { // NielsenConfiguration
343
+ * // DistributorId: "STRING_VALUE",
344
+ * // NielsenPcmToId3Tagging: "DISABLED" || "ENABLED",
345
+ * // },
346
+ * // OutputGroups: [ // __listOfOutputGroup // required
347
+ * // { // OutputGroup
348
+ * // Name: "STRING_VALUE",
349
+ * // OutputGroupSettings: { // OutputGroupSettings
350
+ * // ArchiveGroupSettings: { // ArchiveGroupSettings
351
+ * // ArchiveCdnSettings: { // ArchiveCdnSettings
352
+ * // ArchiveS3Settings: { // ArchiveS3Settings
353
+ * // CannedAcl: "AUTHENTICATED_READ" || "BUCKET_OWNER_FULL_CONTROL" || "BUCKET_OWNER_READ" || "PUBLIC_READ",
354
+ * // },
355
+ * // },
356
+ * // Destination: { // OutputLocationRef
357
+ * // DestinationRefId: "STRING_VALUE",
358
+ * // },
359
+ * // RolloverInterval: Number("int"),
360
+ * // },
361
+ * // FrameCaptureGroupSettings: { // FrameCaptureGroupSettings
362
+ * // Destination: {
363
+ * // DestinationRefId: "STRING_VALUE",
364
+ * // },
365
+ * // FrameCaptureCdnSettings: { // FrameCaptureCdnSettings
366
+ * // FrameCaptureS3Settings: { // FrameCaptureS3Settings
367
+ * // CannedAcl: "AUTHENTICATED_READ" || "BUCKET_OWNER_FULL_CONTROL" || "BUCKET_OWNER_READ" || "PUBLIC_READ",
368
+ * // },
369
+ * // },
370
+ * // },
371
+ * // HlsGroupSettings: { // HlsGroupSettings
372
+ * // AdMarkers: [ // __listOfHlsAdMarkers
373
+ * // "ADOBE" || "ELEMENTAL" || "ELEMENTAL_SCTE35",
374
+ * // ],
375
+ * // BaseUrlContent: "STRING_VALUE",
376
+ * // BaseUrlContent1: "STRING_VALUE",
377
+ * // BaseUrlManifest: "STRING_VALUE",
378
+ * // BaseUrlManifest1: "STRING_VALUE",
379
+ * // CaptionLanguageMappings: [ // __listOfCaptionLanguageMapping
380
+ * // { // CaptionLanguageMapping
381
+ * // CaptionChannel: Number("int"), // required
382
+ * // LanguageCode: "STRING_VALUE", // required
383
+ * // LanguageDescription: "STRING_VALUE", // required
384
+ * // },
385
+ * // ],
386
+ * // CaptionLanguageSetting: "INSERT" || "NONE" || "OMIT",
387
+ * // ClientCache: "DISABLED" || "ENABLED",
388
+ * // CodecSpecification: "RFC_4281" || "RFC_6381",
389
+ * // ConstantIv: "STRING_VALUE",
390
+ * // Destination: {
391
+ * // DestinationRefId: "STRING_VALUE",
392
+ * // },
393
+ * // DirectoryStructure: "SINGLE_DIRECTORY" || "SUBDIRECTORY_PER_STREAM",
394
+ * // DiscontinuityTags: "INSERT" || "NEVER_INSERT",
395
+ * // EncryptionType: "AES128" || "SAMPLE_AES",
396
+ * // HlsCdnSettings: { // HlsCdnSettings
397
+ * // HlsAkamaiSettings: { // HlsAkamaiSettings
398
+ * // ConnectionRetryInterval: Number("int"),
399
+ * // FilecacheDuration: Number("int"),
400
+ * // HttpTransferMode: "CHUNKED" || "NON_CHUNKED",
401
+ * // NumRetries: Number("int"),
402
+ * // RestartDelay: Number("int"),
403
+ * // Salt: "STRING_VALUE",
404
+ * // Token: "STRING_VALUE",
405
+ * // },
406
+ * // HlsBasicPutSettings: { // HlsBasicPutSettings
407
+ * // ConnectionRetryInterval: Number("int"),
408
+ * // FilecacheDuration: Number("int"),
409
+ * // NumRetries: Number("int"),
410
+ * // RestartDelay: Number("int"),
411
+ * // },
412
+ * // HlsMediaStoreSettings: { // HlsMediaStoreSettings
413
+ * // ConnectionRetryInterval: Number("int"),
414
+ * // FilecacheDuration: Number("int"),
415
+ * // MediaStoreStorageClass: "TEMPORAL",
416
+ * // NumRetries: Number("int"),
417
+ * // RestartDelay: Number("int"),
418
+ * // },
419
+ * // HlsS3Settings: { // HlsS3Settings
420
+ * // CannedAcl: "AUTHENTICATED_READ" || "BUCKET_OWNER_FULL_CONTROL" || "BUCKET_OWNER_READ" || "PUBLIC_READ",
421
+ * // },
422
+ * // HlsWebdavSettings: { // HlsWebdavSettings
423
+ * // ConnectionRetryInterval: Number("int"),
424
+ * // FilecacheDuration: Number("int"),
425
+ * // HttpTransferMode: "CHUNKED" || "NON_CHUNKED",
426
+ * // NumRetries: Number("int"),
427
+ * // RestartDelay: Number("int"),
428
+ * // },
429
+ * // },
430
+ * // HlsId3SegmentTagging: "DISABLED" || "ENABLED",
431
+ * // IFrameOnlyPlaylists: "DISABLED" || "STANDARD",
432
+ * // IncompleteSegmentBehavior: "AUTO" || "SUPPRESS",
433
+ * // IndexNSegments: Number("int"),
434
+ * // InputLossAction: "EMIT_OUTPUT" || "PAUSE_OUTPUT",
435
+ * // IvInManifest: "EXCLUDE" || "INCLUDE",
436
+ * // IvSource: "EXPLICIT" || "FOLLOWS_SEGMENT_NUMBER",
437
+ * // KeepSegments: Number("int"),
438
+ * // KeyFormat: "STRING_VALUE",
439
+ * // KeyFormatVersions: "STRING_VALUE",
440
+ * // KeyProviderSettings: { // KeyProviderSettings
441
+ * // StaticKeySettings: { // StaticKeySettings
442
+ * // KeyProviderServer: "<InputLocation>",
443
+ * // StaticKeyValue: "STRING_VALUE", // required
444
+ * // },
445
+ * // },
446
+ * // ManifestCompression: "GZIP" || "NONE",
447
+ * // ManifestDurationFormat: "FLOATING_POINT" || "INTEGER",
448
+ * // MinSegmentLength: Number("int"),
449
+ * // Mode: "LIVE" || "VOD",
450
+ * // OutputSelection: "MANIFESTS_AND_SEGMENTS" || "SEGMENTS_ONLY" || "VARIANT_MANIFESTS_AND_SEGMENTS",
451
+ * // ProgramDateTime: "EXCLUDE" || "INCLUDE",
452
+ * // ProgramDateTimeClock: "INITIALIZE_FROM_OUTPUT_TIMECODE" || "SYSTEM_CLOCK",
453
+ * // ProgramDateTimePeriod: Number("int"),
454
+ * // RedundantManifest: "DISABLED" || "ENABLED",
455
+ * // SegmentLength: Number("int"),
456
+ * // SegmentationMode: "USE_INPUT_SEGMENTATION" || "USE_SEGMENT_DURATION",
457
+ * // SegmentsPerSubdirectory: Number("int"),
458
+ * // StreamInfResolution: "EXCLUDE" || "INCLUDE",
459
+ * // TimedMetadataId3Frame: "NONE" || "PRIV" || "TDRL",
460
+ * // TimedMetadataId3Period: Number("int"),
461
+ * // TimestampDeltaMilliseconds: Number("int"),
462
+ * // TsFileMode: "SEGMENTED_FILES" || "SINGLE_FILE",
463
+ * // },
464
+ * // MediaPackageGroupSettings: { // MediaPackageGroupSettings
465
+ * // Destination: {
466
+ * // DestinationRefId: "STRING_VALUE",
467
+ * // },
468
+ * // },
469
+ * // MsSmoothGroupSettings: { // MsSmoothGroupSettings
470
+ * // AcquisitionPointId: "STRING_VALUE",
471
+ * // AudioOnlyTimecodeControl: "PASSTHROUGH" || "USE_CONFIGURED_CLOCK",
472
+ * // CertificateMode: "SELF_SIGNED" || "VERIFY_AUTHENTICITY",
473
+ * // ConnectionRetryInterval: Number("int"),
474
+ * // Destination: {
475
+ * // DestinationRefId: "STRING_VALUE",
476
+ * // },
477
+ * // EventId: "STRING_VALUE",
478
+ * // EventIdMode: "NO_EVENT_ID" || "USE_CONFIGURED" || "USE_TIMESTAMP",
479
+ * // EventStopBehavior: "NONE" || "SEND_EOS",
480
+ * // FilecacheDuration: Number("int"),
481
+ * // FragmentLength: Number("int"),
482
+ * // InputLossAction: "EMIT_OUTPUT" || "PAUSE_OUTPUT",
483
+ * // NumRetries: Number("int"),
484
+ * // RestartDelay: Number("int"),
485
+ * // SegmentationMode: "USE_INPUT_SEGMENTATION" || "USE_SEGMENT_DURATION",
486
+ * // SendDelayMs: Number("int"),
487
+ * // SparseTrackType: "NONE" || "SCTE_35" || "SCTE_35_WITHOUT_SEGMENTATION",
488
+ * // StreamManifestBehavior: "DO_NOT_SEND" || "SEND",
489
+ * // TimestampOffset: "STRING_VALUE",
490
+ * // TimestampOffsetMode: "USE_CONFIGURED_OFFSET" || "USE_EVENT_START_DATE",
491
+ * // },
492
+ * // MultiplexGroupSettings: {},
493
+ * // RtmpGroupSettings: { // RtmpGroupSettings
494
+ * // AdMarkers: [ // __listOfRtmpAdMarkers
495
+ * // "ON_CUE_POINT_SCTE35",
496
+ * // ],
497
+ * // AuthenticationScheme: "AKAMAI" || "COMMON",
498
+ * // CacheFullBehavior: "DISCONNECT_IMMEDIATELY" || "WAIT_FOR_SERVER",
499
+ * // CacheLength: Number("int"),
500
+ * // CaptionData: "ALL" || "FIELD1_608" || "FIELD1_AND_FIELD2_608",
501
+ * // InputLossAction: "EMIT_OUTPUT" || "PAUSE_OUTPUT",
502
+ * // RestartDelay: Number("int"),
503
+ * // IncludeFillerNalUnits: "AUTO" || "DROP" || "INCLUDE",
504
+ * // },
505
+ * // UdpGroupSettings: { // UdpGroupSettings
506
+ * // InputLossAction: "DROP_PROGRAM" || "DROP_TS" || "EMIT_PROGRAM",
507
+ * // TimedMetadataId3Frame: "NONE" || "PRIV" || "TDRL",
508
+ * // TimedMetadataId3Period: Number("int"),
509
+ * // },
510
+ * // },
511
+ * // Outputs: [ // __listOfOutput // required
512
+ * // { // Output
513
+ * // AudioDescriptionNames: [ // __listOf__string
514
+ * // "STRING_VALUE",
515
+ * // ],
516
+ * // CaptionDescriptionNames: [
517
+ * // "STRING_VALUE",
518
+ * // ],
519
+ * // OutputName: "STRING_VALUE",
520
+ * // OutputSettings: { // OutputSettings
521
+ * // ArchiveOutputSettings: { // ArchiveOutputSettings
522
+ * // ContainerSettings: { // ArchiveContainerSettings
523
+ * // M2tsSettings: { // M2tsSettings
524
+ * // AbsentInputAudioBehavior: "DROP" || "ENCODE_SILENCE",
525
+ * // Arib: "DISABLED" || "ENABLED",
526
+ * // AribCaptionsPid: "STRING_VALUE",
527
+ * // AribCaptionsPidControl: "AUTO" || "USE_CONFIGURED",
528
+ * // AudioBufferModel: "ATSC" || "DVB",
529
+ * // AudioFramesPerPes: Number("int"),
530
+ * // AudioPids: "STRING_VALUE",
531
+ * // AudioStreamType: "ATSC" || "DVB",
532
+ * // Bitrate: Number("int"),
533
+ * // BufferModel: "MULTIPLEX" || "NONE",
534
+ * // CcDescriptor: "DISABLED" || "ENABLED",
535
+ * // DvbNitSettings: { // DvbNitSettings
536
+ * // NetworkId: Number("int"), // required
537
+ * // NetworkName: "STRING_VALUE", // required
538
+ * // RepInterval: Number("int"),
539
+ * // },
540
+ * // DvbSdtSettings: { // DvbSdtSettings
541
+ * // OutputSdt: "SDT_FOLLOW" || "SDT_FOLLOW_IF_PRESENT" || "SDT_MANUAL" || "SDT_NONE",
542
+ * // RepInterval: Number("int"),
543
+ * // ServiceName: "STRING_VALUE",
544
+ * // ServiceProviderName: "STRING_VALUE",
545
+ * // },
546
+ * // DvbSubPids: "STRING_VALUE",
547
+ * // DvbTdtSettings: { // DvbTdtSettings
548
+ * // RepInterval: Number("int"),
549
+ * // },
550
+ * // DvbTeletextPid: "STRING_VALUE",
551
+ * // Ebif: "NONE" || "PASSTHROUGH",
552
+ * // EbpAudioInterval: "VIDEO_AND_FIXED_INTERVALS" || "VIDEO_INTERVAL",
553
+ * // EbpLookaheadMs: Number("int"),
554
+ * // EbpPlacement: "VIDEO_AND_AUDIO_PIDS" || "VIDEO_PID",
555
+ * // EcmPid: "STRING_VALUE",
556
+ * // EsRateInPes: "EXCLUDE" || "INCLUDE",
557
+ * // EtvPlatformPid: "STRING_VALUE",
558
+ * // EtvSignalPid: "STRING_VALUE",
559
+ * // FragmentTime: Number("double"),
560
+ * // Klv: "NONE" || "PASSTHROUGH",
561
+ * // KlvDataPids: "STRING_VALUE",
562
+ * // NielsenId3Behavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
563
+ * // NullPacketBitrate: Number("double"),
564
+ * // PatInterval: Number("int"),
565
+ * // PcrControl: "CONFIGURED_PCR_PERIOD" || "PCR_EVERY_PES_PACKET",
566
+ * // PcrPeriod: Number("int"),
567
+ * // PcrPid: "STRING_VALUE",
568
+ * // PmtInterval: Number("int"),
569
+ * // PmtPid: "STRING_VALUE",
570
+ * // ProgramNum: Number("int"),
571
+ * // RateMode: "CBR" || "VBR",
572
+ * // Scte27Pids: "STRING_VALUE",
573
+ * // Scte35Control: "NONE" || "PASSTHROUGH",
574
+ * // Scte35Pid: "STRING_VALUE",
575
+ * // SegmentationMarkers: "EBP" || "EBP_LEGACY" || "NONE" || "PSI_SEGSTART" || "RAI_ADAPT" || "RAI_SEGSTART",
576
+ * // SegmentationStyle: "MAINTAIN_CADENCE" || "RESET_CADENCE",
577
+ * // SegmentationTime: Number("double"),
578
+ * // TimedMetadataBehavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
579
+ * // TimedMetadataPid: "STRING_VALUE",
580
+ * // TransportStreamId: Number("int"),
581
+ * // VideoPid: "STRING_VALUE",
582
+ * // Scte35PrerollPullupMilliseconds: Number("double"),
583
+ * // },
584
+ * // RawSettings: {},
585
+ * // },
586
+ * // Extension: "STRING_VALUE",
587
+ * // NameModifier: "STRING_VALUE",
588
+ * // },
589
+ * // FrameCaptureOutputSettings: { // FrameCaptureOutputSettings
590
+ * // NameModifier: "STRING_VALUE",
591
+ * // },
592
+ * // HlsOutputSettings: { // HlsOutputSettings
593
+ * // H265PackagingType: "HEV1" || "HVC1",
594
+ * // HlsSettings: { // HlsSettings
595
+ * // AudioOnlyHlsSettings: { // AudioOnlyHlsSettings
596
+ * // AudioGroupId: "STRING_VALUE",
597
+ * // AudioOnlyImage: "<InputLocation>",
598
+ * // AudioTrackType: "ALTERNATE_AUDIO_AUTO_SELECT" || "ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT" || "ALTERNATE_AUDIO_NOT_AUTO_SELECT" || "AUDIO_ONLY_VARIANT_STREAM",
599
+ * // SegmentType: "AAC" || "FMP4",
600
+ * // },
601
+ * // Fmp4HlsSettings: { // Fmp4HlsSettings
602
+ * // AudioRenditionSets: "STRING_VALUE",
603
+ * // NielsenId3Behavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
604
+ * // TimedMetadataBehavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
605
+ * // },
606
+ * // FrameCaptureHlsSettings: {},
607
+ * // StandardHlsSettings: { // StandardHlsSettings
608
+ * // AudioRenditionSets: "STRING_VALUE",
609
+ * // M3u8Settings: { // M3u8Settings
610
+ * // AudioFramesPerPes: Number("int"),
611
+ * // AudioPids: "STRING_VALUE",
612
+ * // EcmPid: "STRING_VALUE",
613
+ * // NielsenId3Behavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
614
+ * // PatInterval: Number("int"),
615
+ * // PcrControl: "CONFIGURED_PCR_PERIOD" || "PCR_EVERY_PES_PACKET",
616
+ * // PcrPeriod: Number("int"),
617
+ * // PcrPid: "STRING_VALUE",
618
+ * // PmtInterval: Number("int"),
619
+ * // PmtPid: "STRING_VALUE",
620
+ * // ProgramNum: Number("int"),
621
+ * // Scte35Behavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
622
+ * // Scte35Pid: "STRING_VALUE",
623
+ * // TimedMetadataBehavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
624
+ * // TimedMetadataPid: "STRING_VALUE",
625
+ * // TransportStreamId: Number("int"),
626
+ * // VideoPid: "STRING_VALUE",
627
+ * // KlvBehavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
628
+ * // KlvDataPids: "STRING_VALUE",
629
+ * // },
630
+ * // },
631
+ * // },
632
+ * // NameModifier: "STRING_VALUE",
633
+ * // SegmentModifier: "STRING_VALUE",
634
+ * // },
635
+ * // MediaPackageOutputSettings: {},
636
+ * // MsSmoothOutputSettings: { // MsSmoothOutputSettings
637
+ * // H265PackagingType: "HEV1" || "HVC1",
638
+ * // NameModifier: "STRING_VALUE",
639
+ * // },
640
+ * // MultiplexOutputSettings: { // MultiplexOutputSettings
641
+ * // Destination: "<OutputLocationRef>", // required
642
+ * // },
643
+ * // RtmpOutputSettings: { // RtmpOutputSettings
644
+ * // CertificateMode: "SELF_SIGNED" || "VERIFY_AUTHENTICITY",
645
+ * // ConnectionRetryInterval: Number("int"),
646
+ * // Destination: "<OutputLocationRef>", // required
647
+ * // NumRetries: Number("int"),
648
+ * // },
649
+ * // UdpOutputSettings: { // UdpOutputSettings
650
+ * // BufferMsec: Number("int"),
651
+ * // ContainerSettings: { // UdpContainerSettings
652
+ * // M2tsSettings: {
653
+ * // AbsentInputAudioBehavior: "DROP" || "ENCODE_SILENCE",
654
+ * // Arib: "DISABLED" || "ENABLED",
655
+ * // AribCaptionsPid: "STRING_VALUE",
656
+ * // AribCaptionsPidControl: "AUTO" || "USE_CONFIGURED",
657
+ * // AudioBufferModel: "ATSC" || "DVB",
658
+ * // AudioFramesPerPes: Number("int"),
659
+ * // AudioPids: "STRING_VALUE",
660
+ * // AudioStreamType: "ATSC" || "DVB",
661
+ * // Bitrate: Number("int"),
662
+ * // BufferModel: "MULTIPLEX" || "NONE",
663
+ * // CcDescriptor: "DISABLED" || "ENABLED",
664
+ * // DvbNitSettings: {
665
+ * // NetworkId: Number("int"), // required
666
+ * // NetworkName: "STRING_VALUE", // required
667
+ * // RepInterval: Number("int"),
668
+ * // },
669
+ * // DvbSdtSettings: {
670
+ * // OutputSdt: "SDT_FOLLOW" || "SDT_FOLLOW_IF_PRESENT" || "SDT_MANUAL" || "SDT_NONE",
671
+ * // RepInterval: Number("int"),
672
+ * // ServiceName: "STRING_VALUE",
673
+ * // ServiceProviderName: "STRING_VALUE",
674
+ * // },
675
+ * // DvbSubPids: "STRING_VALUE",
676
+ * // DvbTdtSettings: {
677
+ * // RepInterval: Number("int"),
678
+ * // },
679
+ * // DvbTeletextPid: "STRING_VALUE",
680
+ * // Ebif: "NONE" || "PASSTHROUGH",
681
+ * // EbpAudioInterval: "VIDEO_AND_FIXED_INTERVALS" || "VIDEO_INTERVAL",
682
+ * // EbpLookaheadMs: Number("int"),
683
+ * // EbpPlacement: "VIDEO_AND_AUDIO_PIDS" || "VIDEO_PID",
684
+ * // EcmPid: "STRING_VALUE",
685
+ * // EsRateInPes: "EXCLUDE" || "INCLUDE",
686
+ * // EtvPlatformPid: "STRING_VALUE",
687
+ * // EtvSignalPid: "STRING_VALUE",
688
+ * // FragmentTime: Number("double"),
689
+ * // Klv: "NONE" || "PASSTHROUGH",
690
+ * // KlvDataPids: "STRING_VALUE",
691
+ * // NielsenId3Behavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
692
+ * // NullPacketBitrate: Number("double"),
693
+ * // PatInterval: Number("int"),
694
+ * // PcrControl: "CONFIGURED_PCR_PERIOD" || "PCR_EVERY_PES_PACKET",
695
+ * // PcrPeriod: Number("int"),
696
+ * // PcrPid: "STRING_VALUE",
697
+ * // PmtInterval: Number("int"),
698
+ * // PmtPid: "STRING_VALUE",
699
+ * // ProgramNum: Number("int"),
700
+ * // RateMode: "CBR" || "VBR",
701
+ * // Scte27Pids: "STRING_VALUE",
702
+ * // Scte35Control: "NONE" || "PASSTHROUGH",
703
+ * // Scte35Pid: "STRING_VALUE",
704
+ * // SegmentationMarkers: "EBP" || "EBP_LEGACY" || "NONE" || "PSI_SEGSTART" || "RAI_ADAPT" || "RAI_SEGSTART",
705
+ * // SegmentationStyle: "MAINTAIN_CADENCE" || "RESET_CADENCE",
706
+ * // SegmentationTime: Number("double"),
707
+ * // TimedMetadataBehavior: "NO_PASSTHROUGH" || "PASSTHROUGH",
708
+ * // TimedMetadataPid: "STRING_VALUE",
709
+ * // TransportStreamId: Number("int"),
710
+ * // VideoPid: "STRING_VALUE",
711
+ * // Scte35PrerollPullupMilliseconds: Number("double"),
712
+ * // },
713
+ * // },
714
+ * // Destination: "<OutputLocationRef>", // required
715
+ * // FecOutputSettings: { // FecOutputSettings
716
+ * // ColumnDepth: Number("int"),
717
+ * // IncludeFec: "COLUMN" || "COLUMN_AND_ROW",
718
+ * // RowLength: Number("int"),
719
+ * // },
720
+ * // },
721
+ * // },
722
+ * // VideoDescriptionName: "STRING_VALUE",
723
+ * // },
724
+ * // ],
725
+ * // },
726
+ * // ],
727
+ * // TimecodeConfig: { // TimecodeConfig
728
+ * // Source: "EMBEDDED" || "SYSTEMCLOCK" || "ZEROBASED", // required
729
+ * // SyncThreshold: Number("int"),
730
+ * // },
731
+ * // VideoDescriptions: [ // __listOfVideoDescription // required
732
+ * // { // VideoDescription
733
+ * // CodecSettings: { // VideoCodecSettings
734
+ * // FrameCaptureSettings: { // FrameCaptureSettings
735
+ * // CaptureInterval: Number("int"),
736
+ * // CaptureIntervalUnits: "MILLISECONDS" || "SECONDS",
737
+ * // TimecodeBurninSettings: { // TimecodeBurninSettings
738
+ * // FontSize: "EXTRA_SMALL_10" || "LARGE_48" || "MEDIUM_32" || "SMALL_16", // required
739
+ * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
740
+ * // Prefix: "STRING_VALUE",
741
+ * // },
742
+ * // },
743
+ * // H264Settings: { // H264Settings
744
+ * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
745
+ * // AfdSignaling: "AUTO" || "FIXED" || "NONE",
746
+ * // Bitrate: Number("int"),
747
+ * // BufFillPct: Number("int"),
748
+ * // BufSize: Number("int"),
749
+ * // ColorMetadata: "IGNORE" || "INSERT",
750
+ * // ColorSpaceSettings: { // H264ColorSpaceSettings
751
+ * // ColorSpacePassthroughSettings: {},
752
+ * // Rec601Settings: {},
753
+ * // Rec709Settings: {},
754
+ * // },
755
+ * // EntropyEncoding: "CABAC" || "CAVLC",
756
+ * // FilterSettings: { // H264FilterSettings
757
+ * // TemporalFilterSettings: { // TemporalFilterSettings
758
+ * // PostFilterSharpening: "AUTO" || "DISABLED" || "ENABLED",
759
+ * // 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",
760
+ * // },
761
+ * // },
762
+ * // FixedAfd: "AFD_0000" || "AFD_0010" || "AFD_0011" || "AFD_0100" || "AFD_1000" || "AFD_1001" || "AFD_1010" || "AFD_1011" || "AFD_1101" || "AFD_1110" || "AFD_1111",
763
+ * // FlickerAq: "DISABLED" || "ENABLED",
764
+ * // ForceFieldPictures: "DISABLED" || "ENABLED",
765
+ * // FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
766
+ * // FramerateDenominator: Number("int"),
767
+ * // FramerateNumerator: Number("int"),
768
+ * // GopBReference: "DISABLED" || "ENABLED",
769
+ * // GopClosedCadence: Number("int"),
770
+ * // GopNumBFrames: Number("int"),
771
+ * // GopSize: Number("double"),
772
+ * // GopSizeUnits: "FRAMES" || "SECONDS",
773
+ * // Level: "H264_LEVEL_1" || "H264_LEVEL_1_1" || "H264_LEVEL_1_2" || "H264_LEVEL_1_3" || "H264_LEVEL_2" || "H264_LEVEL_2_1" || "H264_LEVEL_2_2" || "H264_LEVEL_3" || "H264_LEVEL_3_1" || "H264_LEVEL_3_2" || "H264_LEVEL_4" || "H264_LEVEL_4_1" || "H264_LEVEL_4_2" || "H264_LEVEL_5" || "H264_LEVEL_5_1" || "H264_LEVEL_5_2" || "H264_LEVEL_AUTO",
774
+ * // LookAheadRateControl: "HIGH" || "LOW" || "MEDIUM",
775
+ * // MaxBitrate: Number("int"),
776
+ * // MinIInterval: Number("int"),
777
+ * // NumRefFrames: Number("int"),
778
+ * // ParControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
779
+ * // ParDenominator: Number("int"),
780
+ * // ParNumerator: Number("int"),
781
+ * // Profile: "BASELINE" || "HIGH" || "HIGH_10BIT" || "HIGH_422" || "HIGH_422_10BIT" || "MAIN",
782
+ * // QualityLevel: "ENHANCED_QUALITY" || "STANDARD_QUALITY",
783
+ * // QvbrQualityLevel: Number("int"),
784
+ * // RateControlMode: "CBR" || "MULTIPLEX" || "QVBR" || "VBR",
785
+ * // ScanType: "INTERLACED" || "PROGRESSIVE",
786
+ * // SceneChangeDetect: "DISABLED" || "ENABLED",
787
+ * // Slices: Number("int"),
788
+ * // Softness: Number("int"),
789
+ * // SpatialAq: "DISABLED" || "ENABLED",
790
+ * // SubgopLength: "DYNAMIC" || "FIXED",
791
+ * // Syntax: "DEFAULT" || "RP2027",
792
+ * // TemporalAq: "DISABLED" || "ENABLED",
793
+ * // TimecodeInsertion: "DISABLED" || "PIC_TIMING_SEI",
794
+ * // TimecodeBurninSettings: {
795
+ * // FontSize: "EXTRA_SMALL_10" || "LARGE_48" || "MEDIUM_32" || "SMALL_16", // required
796
+ * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
797
+ * // Prefix: "STRING_VALUE",
798
+ * // },
799
+ * // },
800
+ * // H265Settings: { // H265Settings
801
+ * // AdaptiveQuantization: "AUTO" || "HIGH" || "HIGHER" || "LOW" || "MAX" || "MEDIUM" || "OFF",
802
+ * // AfdSignaling: "AUTO" || "FIXED" || "NONE",
803
+ * // AlternativeTransferFunction: "INSERT" || "OMIT",
804
+ * // Bitrate: Number("int"),
805
+ * // BufSize: Number("int"),
806
+ * // ColorMetadata: "IGNORE" || "INSERT",
807
+ * // ColorSpaceSettings: { // H265ColorSpaceSettings
808
+ * // ColorSpacePassthroughSettings: {},
809
+ * // DolbyVision81Settings: {},
810
+ * // Hdr10Settings: { // Hdr10Settings
811
+ * // MaxCll: Number("int"),
812
+ * // MaxFall: Number("int"),
813
+ * // },
814
+ * // Rec601Settings: {},
815
+ * // Rec709Settings: {},
816
+ * // },
817
+ * // FilterSettings: { // H265FilterSettings
818
+ * // TemporalFilterSettings: {
819
+ * // PostFilterSharpening: "AUTO" || "DISABLED" || "ENABLED",
820
+ * // 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",
821
+ * // },
822
+ * // },
823
+ * // FixedAfd: "AFD_0000" || "AFD_0010" || "AFD_0011" || "AFD_0100" || "AFD_1000" || "AFD_1001" || "AFD_1010" || "AFD_1011" || "AFD_1101" || "AFD_1110" || "AFD_1111",
824
+ * // FlickerAq: "DISABLED" || "ENABLED",
825
+ * // FramerateDenominator: Number("int"), // required
826
+ * // FramerateNumerator: Number("int"), // required
827
+ * // GopClosedCadence: Number("int"),
828
+ * // GopSize: Number("double"),
829
+ * // GopSizeUnits: "FRAMES" || "SECONDS",
830
+ * // Level: "H265_LEVEL_1" || "H265_LEVEL_2" || "H265_LEVEL_2_1" || "H265_LEVEL_3" || "H265_LEVEL_3_1" || "H265_LEVEL_4" || "H265_LEVEL_4_1" || "H265_LEVEL_5" || "H265_LEVEL_5_1" || "H265_LEVEL_5_2" || "H265_LEVEL_6" || "H265_LEVEL_6_1" || "H265_LEVEL_6_2" || "H265_LEVEL_AUTO",
831
+ * // LookAheadRateControl: "HIGH" || "LOW" || "MEDIUM",
832
+ * // MaxBitrate: Number("int"),
833
+ * // MinIInterval: Number("int"),
834
+ * // ParDenominator: Number("int"),
835
+ * // ParNumerator: Number("int"),
836
+ * // Profile: "MAIN" || "MAIN_10BIT",
837
+ * // QvbrQualityLevel: Number("int"),
838
+ * // RateControlMode: "CBR" || "MULTIPLEX" || "QVBR",
839
+ * // ScanType: "INTERLACED" || "PROGRESSIVE",
840
+ * // SceneChangeDetect: "DISABLED" || "ENABLED",
841
+ * // Slices: Number("int"),
842
+ * // Tier: "HIGH" || "MAIN",
843
+ * // TimecodeInsertion: "DISABLED" || "PIC_TIMING_SEI",
844
+ * // TimecodeBurninSettings: {
845
+ * // FontSize: "EXTRA_SMALL_10" || "LARGE_48" || "MEDIUM_32" || "SMALL_16", // required
846
+ * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
847
+ * // Prefix: "STRING_VALUE",
848
+ * // },
849
+ * // },
850
+ * // Mpeg2Settings: { // Mpeg2Settings
851
+ * // AdaptiveQuantization: "AUTO" || "HIGH" || "LOW" || "MEDIUM" || "OFF",
852
+ * // AfdSignaling: "AUTO" || "FIXED" || "NONE",
853
+ * // ColorMetadata: "IGNORE" || "INSERT",
854
+ * // ColorSpace: "AUTO" || "PASSTHROUGH",
855
+ * // DisplayAspectRatio: "DISPLAYRATIO16X9" || "DISPLAYRATIO4X3",
856
+ * // FilterSettings: { // Mpeg2FilterSettings
857
+ * // TemporalFilterSettings: {
858
+ * // PostFilterSharpening: "AUTO" || "DISABLED" || "ENABLED",
859
+ * // 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",
860
+ * // },
861
+ * // },
862
+ * // FixedAfd: "AFD_0000" || "AFD_0010" || "AFD_0011" || "AFD_0100" || "AFD_1000" || "AFD_1001" || "AFD_1010" || "AFD_1011" || "AFD_1101" || "AFD_1110" || "AFD_1111",
863
+ * // FramerateDenominator: Number("int"), // required
864
+ * // FramerateNumerator: Number("int"), // required
865
+ * // GopClosedCadence: Number("int"),
866
+ * // GopNumBFrames: Number("int"),
867
+ * // GopSize: Number("double"),
868
+ * // GopSizeUnits: "FRAMES" || "SECONDS",
869
+ * // ScanType: "INTERLACED" || "PROGRESSIVE",
870
+ * // SubgopLength: "DYNAMIC" || "FIXED",
871
+ * // TimecodeInsertion: "DISABLED" || "GOP_TIMECODE",
872
+ * // TimecodeBurninSettings: {
873
+ * // FontSize: "EXTRA_SMALL_10" || "LARGE_48" || "MEDIUM_32" || "SMALL_16", // required
874
+ * // Position: "BOTTOM_CENTER" || "BOTTOM_LEFT" || "BOTTOM_RIGHT" || "MIDDLE_CENTER" || "MIDDLE_LEFT" || "MIDDLE_RIGHT" || "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT", // required
875
+ * // Prefix: "STRING_VALUE",
876
+ * // },
877
+ * // },
878
+ * // },
879
+ * // Height: Number("int"),
880
+ * // Name: "STRING_VALUE", // required
881
+ * // RespondToAfd: "NONE" || "PASSTHROUGH" || "RESPOND",
882
+ * // ScalingBehavior: "DEFAULT" || "STRETCH_TO_OUTPUT",
883
+ * // Sharpness: Number("int"),
884
+ * // Width: Number("int"),
885
+ * // },
886
+ * // ],
887
+ * // ThumbnailConfiguration: { // ThumbnailConfiguration
888
+ * // State: "AUTO" || "DISABLED", // required
889
+ * // },
890
+ * // ColorCorrectionSettings: { // ColorCorrectionSettings
891
+ * // GlobalColorCorrections: [ // __listOfColorCorrection // required
892
+ * // { // ColorCorrection
893
+ * // InputColorSpace: "HDR10" || "HLG_2020" || "REC_601" || "REC_709", // required
894
+ * // OutputColorSpace: "HDR10" || "HLG_2020" || "REC_601" || "REC_709", // required
895
+ * // Uri: "STRING_VALUE", // required
896
+ * // },
897
+ * // ],
898
+ * // },
899
+ * // },
900
+ * // Id: "STRING_VALUE",
901
+ * // InputAttachments: [ // __listOfInputAttachment
902
+ * // { // InputAttachment
903
+ * // AutomaticInputFailoverSettings: { // AutomaticInputFailoverSettings
904
+ * // ErrorClearTimeMsec: Number("int"),
905
+ * // FailoverConditions: [ // __listOfFailoverCondition
906
+ * // { // FailoverCondition
907
+ * // FailoverConditionSettings: { // FailoverConditionSettings
908
+ * // AudioSilenceSettings: { // AudioSilenceFailoverSettings
909
+ * // AudioSelectorName: "STRING_VALUE", // required
910
+ * // AudioSilenceThresholdMsec: Number("int"),
911
+ * // },
912
+ * // InputLossSettings: { // InputLossFailoverSettings
913
+ * // InputLossThresholdMsec: Number("int"),
914
+ * // },
915
+ * // VideoBlackSettings: { // VideoBlackFailoverSettings
916
+ * // BlackDetectThreshold: Number("double"),
917
+ * // VideoBlackThresholdMsec: Number("int"),
918
+ * // },
919
+ * // },
920
+ * // },
921
+ * // ],
922
+ * // InputPreference: "EQUAL_INPUT_PREFERENCE" || "PRIMARY_INPUT_PREFERRED",
923
+ * // SecondaryInputId: "STRING_VALUE", // required
924
+ * // },
925
+ * // InputAttachmentName: "STRING_VALUE",
926
+ * // InputId: "STRING_VALUE",
927
+ * // InputSettings: { // InputSettings
928
+ * // AudioSelectors: [ // __listOfAudioSelector
929
+ * // { // AudioSelector
930
+ * // Name: "STRING_VALUE", // required
931
+ * // SelectorSettings: { // AudioSelectorSettings
932
+ * // AudioHlsRenditionSelection: { // AudioHlsRenditionSelection
933
+ * // GroupId: "STRING_VALUE", // required
934
+ * // Name: "STRING_VALUE", // required
935
+ * // },
936
+ * // AudioLanguageSelection: { // AudioLanguageSelection
937
+ * // LanguageCode: "STRING_VALUE", // required
938
+ * // LanguageSelectionPolicy: "LOOSE" || "STRICT",
939
+ * // },
940
+ * // AudioPidSelection: { // AudioPidSelection
941
+ * // Pid: Number("int"), // required
942
+ * // },
943
+ * // AudioTrackSelection: { // AudioTrackSelection
944
+ * // Tracks: [ // __listOfAudioTrack // required
945
+ * // { // AudioTrack
946
+ * // Track: Number("int"), // required
947
+ * // },
948
+ * // ],
949
+ * // DolbyEDecode: { // AudioDolbyEDecode
950
+ * // ProgramSelection: "ALL_CHANNELS" || "PROGRAM_1" || "PROGRAM_2" || "PROGRAM_3" || "PROGRAM_4" || "PROGRAM_5" || "PROGRAM_6" || "PROGRAM_7" || "PROGRAM_8", // required
951
+ * // },
952
+ * // },
953
+ * // },
954
+ * // },
955
+ * // ],
956
+ * // CaptionSelectors: [ // __listOfCaptionSelector
957
+ * // { // CaptionSelector
958
+ * // LanguageCode: "STRING_VALUE",
959
+ * // Name: "STRING_VALUE", // required
960
+ * // SelectorSettings: { // CaptionSelectorSettings
961
+ * // AncillarySourceSettings: { // AncillarySourceSettings
962
+ * // SourceAncillaryChannelNumber: Number("int"),
963
+ * // },
964
+ * // AribSourceSettings: {},
965
+ * // DvbSubSourceSettings: { // DvbSubSourceSettings
966
+ * // OcrLanguage: "DEU" || "ENG" || "FRA" || "NLD" || "POR" || "SPA",
967
+ * // Pid: Number("int"),
968
+ * // },
969
+ * // EmbeddedSourceSettings: { // EmbeddedSourceSettings
970
+ * // Convert608To708: "DISABLED" || "UPCONVERT",
971
+ * // Scte20Detection: "AUTO" || "OFF",
972
+ * // Source608ChannelNumber: Number("int"),
973
+ * // Source608TrackNumber: Number("int"),
974
+ * // },
975
+ * // Scte20SourceSettings: { // Scte20SourceSettings
976
+ * // Convert608To708: "DISABLED" || "UPCONVERT",
977
+ * // Source608ChannelNumber: Number("int"),
978
+ * // },
979
+ * // Scte27SourceSettings: { // Scte27SourceSettings
980
+ * // OcrLanguage: "DEU" || "ENG" || "FRA" || "NLD" || "POR" || "SPA",
981
+ * // Pid: Number("int"),
982
+ * // },
983
+ * // TeletextSourceSettings: { // TeletextSourceSettings
984
+ * // OutputRectangle: { // CaptionRectangle
985
+ * // Height: Number("double"), // required
986
+ * // LeftOffset: Number("double"), // required
987
+ * // TopOffset: Number("double"), // required
988
+ * // Width: Number("double"), // required
989
+ * // },
990
+ * // PageNumber: "STRING_VALUE",
991
+ * // },
992
+ * // },
993
+ * // },
994
+ * // ],
995
+ * // DeblockFilter: "DISABLED" || "ENABLED",
996
+ * // DenoiseFilter: "DISABLED" || "ENABLED",
997
+ * // FilterStrength: Number("int"),
998
+ * // InputFilter: "AUTO" || "DISABLED" || "FORCED",
999
+ * // NetworkInputSettings: { // NetworkInputSettings
1000
+ * // HlsInputSettings: { // HlsInputSettings
1001
+ * // Bandwidth: Number("int"),
1002
+ * // BufferSegments: Number("int"),
1003
+ * // Retries: Number("int"),
1004
+ * // RetryInterval: Number("int"),
1005
+ * // Scte35Source: "MANIFEST" || "SEGMENTS",
1006
+ * // },
1007
+ * // ServerValidation: "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME" || "CHECK_CRYPTOGRAPHY_ONLY",
1008
+ * // },
1009
+ * // Scte35Pid: Number("int"),
1010
+ * // Smpte2038DataPreference: "IGNORE" || "PREFER",
1011
+ * // SourceEndBehavior: "CONTINUE" || "LOOP",
1012
+ * // VideoSelector: { // VideoSelector
1013
+ * // ColorSpace: "FOLLOW" || "HDR10" || "HLG_2020" || "REC_601" || "REC_709",
1014
+ * // ColorSpaceSettings: { // VideoSelectorColorSpaceSettings
1015
+ * // Hdr10Settings: {
1016
+ * // MaxCll: Number("int"),
1017
+ * // MaxFall: Number("int"),
1018
+ * // },
1019
+ * // },
1020
+ * // ColorSpaceUsage: "FALLBACK" || "FORCE",
1021
+ * // SelectorSettings: { // VideoSelectorSettings
1022
+ * // VideoSelectorPid: { // VideoSelectorPid
1023
+ * // Pid: Number("int"),
1024
+ * // },
1025
+ * // VideoSelectorProgramId: { // VideoSelectorProgramId
1026
+ * // ProgramId: Number("int"),
1027
+ * // },
1028
+ * // },
1029
+ * // },
1030
+ * // },
1031
+ * // },
1032
+ * // ],
1033
+ * // InputSpecification: { // InputSpecification
1034
+ * // Codec: "MPEG2" || "AVC" || "HEVC",
1035
+ * // MaximumBitrate: "MAX_10_MBPS" || "MAX_20_MBPS" || "MAX_50_MBPS",
1036
+ * // Resolution: "SD" || "HD" || "UHD",
1037
+ * // },
1038
+ * // LogLevel: "ERROR" || "WARNING" || "INFO" || "DEBUG" || "DISABLED",
1039
+ * // Maintenance: { // MaintenanceStatus
1040
+ * // MaintenanceDay: "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY" || "SUNDAY",
1041
+ * // MaintenanceDeadline: "STRING_VALUE",
1042
+ * // MaintenanceScheduledDate: "STRING_VALUE",
1043
+ * // MaintenanceStartTime: "STRING_VALUE",
1044
+ * // },
1045
+ * // MaintenanceStatus: "STRING_VALUE",
1046
+ * // Name: "STRING_VALUE",
1047
+ * // PipelineDetails: [ // __listOfPipelineDetail
1048
+ * // { // PipelineDetail
1049
+ * // ActiveInputAttachmentName: "STRING_VALUE",
1050
+ * // ActiveInputSwitchActionName: "STRING_VALUE",
1051
+ * // ActiveMotionGraphicsActionName: "STRING_VALUE",
1052
+ * // ActiveMotionGraphicsUri: "STRING_VALUE",
1053
+ * // PipelineId: "STRING_VALUE",
1054
+ * // },
1055
+ * // ],
1056
+ * // PipelinesRunningCount: Number("int"),
1057
+ * // RoleArn: "STRING_VALUE",
1058
+ * // State: "CREATING" || "CREATE_FAILED" || "IDLE" || "STARTING" || "RUNNING" || "RECOVERING" || "STOPPING" || "DELETING" || "DELETED" || "UPDATING" || "UPDATE_FAILED",
1059
+ * // Tags: { // Tags
1060
+ * // "<keys>": "STRING_VALUE",
1061
+ * // },
1062
+ * // Vpc: { // VpcOutputSettingsDescription
1063
+ * // AvailabilityZones: [
1064
+ * // "STRING_VALUE",
1065
+ * // ],
1066
+ * // NetworkInterfaceIds: [
1067
+ * // "STRING_VALUE",
1068
+ * // ],
1069
+ * // SecurityGroupIds: [
1070
+ * // "STRING_VALUE",
1071
+ * // ],
1072
+ * // SubnetIds: "<__listOf__string>",
1073
+ * // },
1074
+ * // };
1075
+ *
1076
+ * ```
1077
+ *
1078
+ * @param RestartChannelPipelinesCommandInput - {@link RestartChannelPipelinesCommandInput}
1079
+ * @returns {@link RestartChannelPipelinesCommandOutput}
1080
+ * @see {@link RestartChannelPipelinesCommandInput} for command's `input` shape.
1081
+ * @see {@link RestartChannelPipelinesCommandOutput} for command's `response` shape.
1082
+ * @see {@link MediaLiveClientResolvedConfig | config} for MediaLiveClient's `config` shape.
1083
+ *
1084
+ * @throws {@link BadGatewayException} (server fault)
1085
+ * Placeholder documentation for BadGatewayException
1086
+ *
1087
+ * @throws {@link BadRequestException} (client fault)
1088
+ * Placeholder documentation for BadRequestException
1089
+ *
1090
+ * @throws {@link ConflictException} (client fault)
1091
+ * Placeholder documentation for ConflictException
1092
+ *
1093
+ * @throws {@link ForbiddenException} (client fault)
1094
+ * Placeholder documentation for ForbiddenException
1095
+ *
1096
+ * @throws {@link GatewayTimeoutException} (server fault)
1097
+ * Placeholder documentation for GatewayTimeoutException
1098
+ *
1099
+ * @throws {@link InternalServerErrorException} (server fault)
1100
+ * Placeholder documentation for InternalServerErrorException
1101
+ *
1102
+ * @throws {@link NotFoundException} (client fault)
1103
+ * Placeholder documentation for NotFoundException
1104
+ *
1105
+ * @throws {@link TooManyRequestsException} (client fault)
1106
+ * Placeholder documentation for TooManyRequestsException
1107
+ *
1108
+ * @throws {@link MediaLiveServiceException}
1109
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
1110
+ *
1111
+ */
1112
+ export declare class RestartChannelPipelinesCommand extends RestartChannelPipelinesCommand_base {
1113
+ }