@aws-cdk/aws-medialive-alpha 2.268.0-alpha.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 (70) hide show
  1. package/.jsii +60888 -0
  2. package/.jsii.tabl.json.gz +0 -0
  3. package/.warnings.jsii.js +524 -0
  4. package/LICENSE +201 -0
  5. package/NOTICE +2 -0
  6. package/README.md +1297 -0
  7. package/grants.json +27 -0
  8. package/lib/audio-codec-settings.d.ts +901 -0
  9. package/lib/audio-codec-settings.js +1098 -0
  10. package/lib/audio-selector.d.ts +170 -0
  11. package/lib/audio-selector.js +306 -0
  12. package/lib/avail-settings.d.ts +231 -0
  13. package/lib/avail-settings.js +226 -0
  14. package/lib/caption-selector.d.ts +234 -0
  15. package/lib/caption-selector.js +413 -0
  16. package/lib/caption-settings.d.ts +349 -0
  17. package/lib/caption-settings.js +482 -0
  18. package/lib/channel-features.d.ts +106 -0
  19. package/lib/channel-features.js +85 -0
  20. package/lib/channel-placement-group.d.ts +73 -0
  21. package/lib/channel-placement-group.js +132 -0
  22. package/lib/channel.d.ts +687 -0
  23. package/lib/channel.js +1096 -0
  24. package/lib/cluster.d.ts +129 -0
  25. package/lib/cluster.js +158 -0
  26. package/lib/color-correction.d.ts +39 -0
  27. package/lib/color-correction.js +29 -0
  28. package/lib/destinations.d.ts +242 -0
  29. package/lib/destinations.js +455 -0
  30. package/lib/encode-configuration.d.ts +615 -0
  31. package/lib/encode-configuration.js +629 -0
  32. package/lib/enums.d.ts +698 -0
  33. package/lib/enums.js +1045 -0
  34. package/lib/file-location.d.ts +65 -0
  35. package/lib/file-location.js +150 -0
  36. package/lib/framerate.d.ts +31 -0
  37. package/lib/framerate.js +71 -0
  38. package/lib/index.d.ts +26 -0
  39. package/lib/index.js +43 -0
  40. package/lib/input-attachment.d.ts +319 -0
  41. package/lib/input-attachment.js +228 -0
  42. package/lib/input-security-group.d.ts +51 -0
  43. package/lib/input-security-group.js +123 -0
  44. package/lib/input-specification.d.ts +111 -0
  45. package/lib/input-specification.js +181 -0
  46. package/lib/input.d.ts +505 -0
  47. package/lib/input.js +803 -0
  48. package/lib/m2ts-settings.d.ts +421 -0
  49. package/lib/m2ts-settings.js +469 -0
  50. package/lib/m3u8-settings.d.ts +272 -0
  51. package/lib/m3u8-settings.js +304 -0
  52. package/lib/medialive-grants.generated.d.ts +30 -0
  53. package/lib/medialive-grants.generated.js +92 -0
  54. package/lib/network.d.ts +83 -0
  55. package/lib/network.js +132 -0
  56. package/lib/output-group.d.ts +924 -0
  57. package/lib/output-group.js +941 -0
  58. package/lib/outputs.d.ts +304 -0
  59. package/lib/outputs.js +598 -0
  60. package/lib/sdi-source.d.ts +124 -0
  61. package/lib/sdi-source.js +180 -0
  62. package/lib/shared.d.ts +44 -0
  63. package/lib/shared.js +146 -0
  64. package/lib/video-codec-settings.d.ts +1500 -0
  65. package/lib/video-codec-settings.js +1722 -0
  66. package/lib/video-selection.d.ts +92 -0
  67. package/lib/video-selection.js +95 -0
  68. package/package.json +135 -0
  69. package/rosetta/_generated.ts-fixture +6 -0
  70. package/rosetta/default.ts-fixture +21 -0
@@ -0,0 +1,901 @@
1
+ import type { Bitrate } from 'aws-cdk-lib';
2
+ /**
3
+ * Audio sample rate for AAC, MP2, and WAV codecs.
4
+ *
5
+ * Use one of the standard presets or `AudioSampleRate.of(hz)` for a custom value.
6
+ */
7
+ export declare class AudioSampleRate {
8
+ private readonly hz;
9
+ /** 8,000 Hz */
10
+ static readonly HZ_8000: AudioSampleRate;
11
+ /** 12,000 Hz */
12
+ static readonly HZ_12000: AudioSampleRate;
13
+ /** 16,000 Hz */
14
+ static readonly HZ_16000: AudioSampleRate;
15
+ /** 22,050 Hz */
16
+ static readonly HZ_22050: AudioSampleRate;
17
+ /** 24,000 Hz */
18
+ static readonly HZ_24000: AudioSampleRate;
19
+ /** 32,000 Hz */
20
+ static readonly HZ_32000: AudioSampleRate;
21
+ /** 44,100 Hz */
22
+ static readonly HZ_44100: AudioSampleRate;
23
+ /** 48,000 Hz */
24
+ static readonly HZ_48000: AudioSampleRate;
25
+ /** 88,200 Hz */
26
+ static readonly HZ_88200: AudioSampleRate;
27
+ /** 96,000 Hz */
28
+ static readonly HZ_96000: AudioSampleRate;
29
+ /**
30
+ * A custom sample rate in Hz.
31
+ * @param hz the sample rate in Hz
32
+ */
33
+ static of(hz: number): AudioSampleRate;
34
+ private constructor();
35
+ }
36
+ /**
37
+ * Audio bit depth for WAV codec.
38
+ *
39
+ * Use one of the standard presets or `AudioBitDepth.of(bits)` for a custom value.
40
+ */
41
+ export declare class AudioBitDepth {
42
+ private readonly bits;
43
+ /** 16-bit */
44
+ static readonly DEPTH_16: AudioBitDepth;
45
+ /** 24-bit */
46
+ static readonly DEPTH_24: AudioBitDepth;
47
+ /**
48
+ * A custom bit depth.
49
+ * @param bits the bit depth
50
+ */
51
+ static of(bits: number): AudioBitDepth;
52
+ private constructor();
53
+ }
54
+ /**
55
+ * AAC profile.
56
+ */
57
+ export declare class AacProfile {
58
+ /** HEV1 */
59
+ static readonly HEV1: AacProfile;
60
+ /** HEV2 */
61
+ static readonly HEV2: AacProfile;
62
+ /** LC (Low Complexity) */
63
+ static readonly LC: AacProfile;
64
+ /** A value not yet modelled by AWS CDK. */
65
+ static of(value: string): AacProfile;
66
+ /** The underlying string value passed to CloudFormation. */
67
+ readonly value: string;
68
+ private constructor();
69
+ }
70
+ /**
71
+ * AAC coding mode.
72
+ */
73
+ export declare class AacCodingMode {
74
+ /** Ad receiver mix — receives stereo audio description + control track per ETSI TS 101 154 Annex E. */
75
+ static readonly AD_RECEIVER_MIX: AacCodingMode;
76
+ /** 1.0 (mono) */
77
+ static readonly CODING_MODE_1_0: AacCodingMode;
78
+ /** 1+1 (dual mono) */
79
+ static readonly CODING_MODE_1_1: AacCodingMode;
80
+ /** 2.0 (stereo) */
81
+ static readonly CODING_MODE_2_0: AacCodingMode;
82
+ /** 5.1 surround */
83
+ static readonly CODING_MODE_5_1: AacCodingMode;
84
+ /** A value not yet modelled by AWS CDK. */
85
+ static of(value: string): AacCodingMode;
86
+ /** The underlying string value passed to CloudFormation. */
87
+ readonly value: string;
88
+ private constructor();
89
+ }
90
+ /**
91
+ * AAC rate control mode.
92
+ */
93
+ export declare class AacRateControlMode {
94
+ /** Constant bitrate */
95
+ static readonly CBR: AacRateControlMode;
96
+ /** Variable bitrate */
97
+ static readonly VBR: AacRateControlMode;
98
+ /** A value not yet modelled by AWS CDK. */
99
+ static of(value: string): AacRateControlMode;
100
+ /** The underlying string value passed to CloudFormation. */
101
+ readonly value: string;
102
+ private constructor();
103
+ }
104
+ /**
105
+ * AAC raw format.
106
+ */
107
+ export declare class AacRawFormat {
108
+ /** LATM/LOAS */
109
+ static readonly LATM_LOAS: AacRawFormat;
110
+ /** None */
111
+ static readonly NONE: AacRawFormat;
112
+ /** A value not yet modelled by AWS CDK. */
113
+ static of(value: string): AacRawFormat;
114
+ /** The underlying string value passed to CloudFormation. */
115
+ readonly value: string;
116
+ private constructor();
117
+ }
118
+ /**
119
+ * AAC specification.
120
+ */
121
+ export declare class AacSpec {
122
+ /** MPEG-2 AAC */
123
+ static readonly MPEG2: AacSpec;
124
+ /** MPEG-4 AAC */
125
+ static readonly MPEG4: AacSpec;
126
+ /** A value not yet modelled by AWS CDK. */
127
+ static of(value: string): AacSpec;
128
+ /** The underlying string value passed to CloudFormation. */
129
+ readonly value: string;
130
+ private constructor();
131
+ }
132
+ /**
133
+ * AAC input type.
134
+ */
135
+ export declare class AacInputType {
136
+ /** Broadcaster mixed AD */
137
+ static readonly BROADCASTER_MIXED_AD: AacInputType;
138
+ /** Normal */
139
+ static readonly NORMAL: AacInputType;
140
+ /** A value not yet modelled by AWS CDK. */
141
+ static of(value: string): AacInputType;
142
+ /** The underlying string value passed to CloudFormation. */
143
+ readonly value: string;
144
+ private constructor();
145
+ }
146
+ /**
147
+ * AAC VBR quality level.
148
+ */
149
+ export declare class AacVbrQuality {
150
+ /** High */
151
+ static readonly HIGH: AacVbrQuality;
152
+ /** Low */
153
+ static readonly LOW: AacVbrQuality;
154
+ /** Medium high */
155
+ static readonly MEDIUM_HIGH: AacVbrQuality;
156
+ /** Medium low */
157
+ static readonly MEDIUM_LOW: AacVbrQuality;
158
+ /** A value not yet modelled by AWS CDK. */
159
+ static of(value: string): AacVbrQuality;
160
+ /** The underlying string value passed to CloudFormation. */
161
+ readonly value: string;
162
+ private constructor();
163
+ }
164
+ /**
165
+ * AC3 attenuation control.
166
+ */
167
+ export declare class Ac3AttenuationControl {
168
+ /** Apply 3 dB attenuation to surround channels */
169
+ static readonly ATTENUATE_3_DB: Ac3AttenuationControl;
170
+ /** No attenuation */
171
+ static readonly NONE: Ac3AttenuationControl;
172
+ /** A value not yet modelled by AWS CDK. */
173
+ static of(value: string): Ac3AttenuationControl;
174
+ /** The underlying string value passed to CloudFormation. */
175
+ readonly value: string;
176
+ private constructor();
177
+ }
178
+ /**
179
+ * AC3 bitstream mode.
180
+ */
181
+ export declare class Ac3BitstreamMode {
182
+ /** Commentary */
183
+ static readonly COMMENTARY: Ac3BitstreamMode;
184
+ /** Complete main */
185
+ static readonly COMPLETE_MAIN: Ac3BitstreamMode;
186
+ /** Dialogue */
187
+ static readonly DIALOGUE: Ac3BitstreamMode;
188
+ /** Emergency */
189
+ static readonly EMERGENCY: Ac3BitstreamMode;
190
+ /** Hearing impaired */
191
+ static readonly HEARING_IMPAIRED: Ac3BitstreamMode;
192
+ /** Music and effects */
193
+ static readonly MUSIC_AND_EFFECTS: Ac3BitstreamMode;
194
+ /** Visually impaired */
195
+ static readonly VISUALLY_IMPAIRED: Ac3BitstreamMode;
196
+ /** Voice over */
197
+ static readonly VOICE_OVER: Ac3BitstreamMode;
198
+ /** A value not yet modelled by AWS CDK. */
199
+ static of(value: string): Ac3BitstreamMode;
200
+ /** The underlying string value passed to CloudFormation. */
201
+ readonly value: string;
202
+ private constructor();
203
+ }
204
+ /**
205
+ * AC3 coding mode.
206
+ */
207
+ export declare class Ac3CodingMode {
208
+ /** 1.0 (mono) */
209
+ static readonly CODING_MODE_1_0: Ac3CodingMode;
210
+ /** 1+1 (dual mono) */
211
+ static readonly CODING_MODE_1_1: Ac3CodingMode;
212
+ /** 2.0 (stereo) */
213
+ static readonly CODING_MODE_2_0: Ac3CodingMode;
214
+ /** 3/2 (5.0 surround) */
215
+ static readonly CODING_MODE_3_2_LFE: Ac3CodingMode;
216
+ /** A value not yet modelled by AWS CDK. */
217
+ static of(value: string): Ac3CodingMode;
218
+ /** The underlying string value passed to CloudFormation. */
219
+ readonly value: string;
220
+ private constructor();
221
+ }
222
+ /**
223
+ * AC3 DRC profile.
224
+ */
225
+ export declare class Ac3DrcProfile {
226
+ /** Film standard */
227
+ static readonly FILM_STANDARD: Ac3DrcProfile;
228
+ /** None */
229
+ static readonly NONE: Ac3DrcProfile;
230
+ /** A value not yet modelled by AWS CDK. */
231
+ static of(value: string): Ac3DrcProfile;
232
+ /** The underlying string value passed to CloudFormation. */
233
+ readonly value: string;
234
+ private constructor();
235
+ }
236
+ /**
237
+ * AC3 LFE filter.
238
+ */
239
+ export declare class Ac3LfeFilter {
240
+ /** Disabled */
241
+ static readonly DISABLED: Ac3LfeFilter;
242
+ /** Enabled */
243
+ static readonly ENABLED: Ac3LfeFilter;
244
+ /** A value not yet modelled by AWS CDK. */
245
+ static of(value: string): Ac3LfeFilter;
246
+ /** The underlying string value passed to CloudFormation. */
247
+ readonly value: string;
248
+ private constructor();
249
+ }
250
+ /**
251
+ * AC3 metadata control.
252
+ */
253
+ export declare class Ac3MetadataControl {
254
+ /** Follow input */
255
+ static readonly FOLLOW_INPUT: Ac3MetadataControl;
256
+ /** Use configured */
257
+ static readonly USE_CONFIGURED: Ac3MetadataControl;
258
+ /** A value not yet modelled by AWS CDK. */
259
+ static of(value: string): Ac3MetadataControl;
260
+ /** The underlying string value passed to CloudFormation. */
261
+ readonly value: string;
262
+ private constructor();
263
+ }
264
+ /**
265
+ * EAC3 attenuation control.
266
+ */
267
+ export declare class Eac3AttenuationControl {
268
+ /** Apply 3 dB attenuation to surround channels */
269
+ static readonly ATTENUATE_3_DB: Eac3AttenuationControl;
270
+ /** No attenuation */
271
+ static readonly NONE: Eac3AttenuationControl;
272
+ /** A value not yet modelled by AWS CDK. */
273
+ static of(value: string): Eac3AttenuationControl;
274
+ /** The underlying string value passed to CloudFormation. */
275
+ readonly value: string;
276
+ private constructor();
277
+ }
278
+ /**
279
+ * EAC3 bitstream mode.
280
+ */
281
+ export declare class Eac3BitstreamMode {
282
+ /** Commentary */
283
+ static readonly COMMENTARY: Eac3BitstreamMode;
284
+ /** Complete main */
285
+ static readonly COMPLETE_MAIN: Eac3BitstreamMode;
286
+ /** Emergency */
287
+ static readonly EMERGENCY: Eac3BitstreamMode;
288
+ /** Hearing impaired */
289
+ static readonly HEARING_IMPAIRED: Eac3BitstreamMode;
290
+ /** Visually impaired */
291
+ static readonly VISUALLY_IMPAIRED: Eac3BitstreamMode;
292
+ /** A value not yet modelled by AWS CDK. */
293
+ static of(value: string): Eac3BitstreamMode;
294
+ /** The underlying string value passed to CloudFormation. */
295
+ readonly value: string;
296
+ private constructor();
297
+ }
298
+ /**
299
+ * EAC3 coding mode.
300
+ */
301
+ export declare class Eac3CodingMode {
302
+ /** 1.0 (mono) */
303
+ static readonly CODING_MODE_1_0: Eac3CodingMode;
304
+ /** 2.0 (stereo) */
305
+ static readonly CODING_MODE_2_0: Eac3CodingMode;
306
+ /** 3/2 (5.0 surround) */
307
+ static readonly CODING_MODE_3_2: Eac3CodingMode;
308
+ /** A value not yet modelled by AWS CDK. */
309
+ static of(value: string): Eac3CodingMode;
310
+ /** The underlying string value passed to CloudFormation. */
311
+ readonly value: string;
312
+ private constructor();
313
+ }
314
+ /**
315
+ * EAC3 DC filter.
316
+ */
317
+ export declare class Eac3DcFilter {
318
+ /** Disabled */
319
+ static readonly DISABLED: Eac3DcFilter;
320
+ /** Enabled */
321
+ static readonly ENABLED: Eac3DcFilter;
322
+ /** A value not yet modelled by AWS CDK. */
323
+ static of(value: string): Eac3DcFilter;
324
+ /** The underlying string value passed to CloudFormation. */
325
+ readonly value: string;
326
+ private constructor();
327
+ }
328
+ /**
329
+ * EAC3 DRC line mode profile.
330
+ */
331
+ export declare class Eac3DrcLine {
332
+ /** Film light */
333
+ static readonly FILM_LIGHT: Eac3DrcLine;
334
+ /** Film standard */
335
+ static readonly FILM_STANDARD: Eac3DrcLine;
336
+ /** Music light */
337
+ static readonly MUSIC_LIGHT: Eac3DrcLine;
338
+ /** Music standard */
339
+ static readonly MUSIC_STANDARD: Eac3DrcLine;
340
+ /** None */
341
+ static readonly NONE: Eac3DrcLine;
342
+ /** Speech */
343
+ static readonly SPEECH: Eac3DrcLine;
344
+ /** A value not yet modelled by AWS CDK. */
345
+ static of(value: string): Eac3DrcLine;
346
+ /** The underlying string value passed to CloudFormation. */
347
+ readonly value: string;
348
+ private constructor();
349
+ }
350
+ /**
351
+ * EAC3 DRC RF mode profile.
352
+ */
353
+ export declare class Eac3DrcRf {
354
+ /** Film light */
355
+ static readonly FILM_LIGHT: Eac3DrcRf;
356
+ /** Film standard */
357
+ static readonly FILM_STANDARD: Eac3DrcRf;
358
+ /** Music light */
359
+ static readonly MUSIC_LIGHT: Eac3DrcRf;
360
+ /** Music standard */
361
+ static readonly MUSIC_STANDARD: Eac3DrcRf;
362
+ /** None */
363
+ static readonly NONE: Eac3DrcRf;
364
+ /** Speech */
365
+ static readonly SPEECH: Eac3DrcRf;
366
+ /** A value not yet modelled by AWS CDK. */
367
+ static of(value: string): Eac3DrcRf;
368
+ /** The underlying string value passed to CloudFormation. */
369
+ readonly value: string;
370
+ private constructor();
371
+ }
372
+ /**
373
+ * EAC3 LFE control.
374
+ */
375
+ export declare class Eac3LfeControl {
376
+ /** LFE */
377
+ static readonly LFE: Eac3LfeControl;
378
+ /** No LFE */
379
+ static readonly NO_LFE: Eac3LfeControl;
380
+ /** A value not yet modelled by AWS CDK. */
381
+ static of(value: string): Eac3LfeControl;
382
+ /** The underlying string value passed to CloudFormation. */
383
+ readonly value: string;
384
+ private constructor();
385
+ }
386
+ /**
387
+ * EAC3 LFE filter.
388
+ */
389
+ export declare class Eac3LfeFilter {
390
+ /** Disabled */
391
+ static readonly DISABLED: Eac3LfeFilter;
392
+ /** Enabled */
393
+ static readonly ENABLED: Eac3LfeFilter;
394
+ /** A value not yet modelled by AWS CDK. */
395
+ static of(value: string): Eac3LfeFilter;
396
+ /** The underlying string value passed to CloudFormation. */
397
+ readonly value: string;
398
+ private constructor();
399
+ }
400
+ /**
401
+ * EAC3 metadata control.
402
+ */
403
+ export declare class Eac3MetadataControl {
404
+ /** Follow input */
405
+ static readonly FOLLOW_INPUT: Eac3MetadataControl;
406
+ /** Use configured */
407
+ static readonly USE_CONFIGURED: Eac3MetadataControl;
408
+ /** A value not yet modelled by AWS CDK. */
409
+ static of(value: string): Eac3MetadataControl;
410
+ /** The underlying string value passed to CloudFormation. */
411
+ readonly value: string;
412
+ private constructor();
413
+ }
414
+ /**
415
+ * EAC3 passthrough control.
416
+ */
417
+ export declare class Eac3PassthroughControl {
418
+ /** No passthrough */
419
+ static readonly NO_PASSTHROUGH: Eac3PassthroughControl;
420
+ /** When possible */
421
+ static readonly WHEN_POSSIBLE: Eac3PassthroughControl;
422
+ /** A value not yet modelled by AWS CDK. */
423
+ static of(value: string): Eac3PassthroughControl;
424
+ /** The underlying string value passed to CloudFormation. */
425
+ readonly value: string;
426
+ private constructor();
427
+ }
428
+ /**
429
+ * EAC3 phase control.
430
+ */
431
+ export declare class Eac3PhaseControl {
432
+ /** No shift */
433
+ static readonly NO_SHIFT: Eac3PhaseControl;
434
+ /** Shift 90 degrees */
435
+ static readonly SHIFT_90_DEGREES: Eac3PhaseControl;
436
+ /** A value not yet modelled by AWS CDK. */
437
+ static of(value: string): Eac3PhaseControl;
438
+ /** The underlying string value passed to CloudFormation. */
439
+ readonly value: string;
440
+ private constructor();
441
+ }
442
+ /**
443
+ * EAC3 stereo downmix preference.
444
+ */
445
+ export declare class Eac3StereoDownmix {
446
+ /** DPL2 */
447
+ static readonly DPL2: Eac3StereoDownmix;
448
+ /** Lo/Ro */
449
+ static readonly LO_RO: Eac3StereoDownmix;
450
+ /** Lt/Rt */
451
+ static readonly LT_RT: Eac3StereoDownmix;
452
+ /** Not indicated */
453
+ static readonly NOT_INDICATED: Eac3StereoDownmix;
454
+ /** A value not yet modelled by AWS CDK. */
455
+ static of(value: string): Eac3StereoDownmix;
456
+ /** The underlying string value passed to CloudFormation. */
457
+ readonly value: string;
458
+ private constructor();
459
+ }
460
+ /**
461
+ * EAC3 surround ex mode.
462
+ */
463
+ export declare class Eac3SurroundExMode {
464
+ /** Disabled */
465
+ static readonly DISABLED: Eac3SurroundExMode;
466
+ /** Enabled */
467
+ static readonly ENABLED: Eac3SurroundExMode;
468
+ /** Not indicated */
469
+ static readonly NOT_INDICATED: Eac3SurroundExMode;
470
+ /** A value not yet modelled by AWS CDK. */
471
+ static of(value: string): Eac3SurroundExMode;
472
+ /** The underlying string value passed to CloudFormation. */
473
+ readonly value: string;
474
+ private constructor();
475
+ }
476
+ /**
477
+ * EAC3 surround mode.
478
+ */
479
+ export declare class Eac3SurroundMode {
480
+ /** Disabled */
481
+ static readonly DISABLED: Eac3SurroundMode;
482
+ /** Enabled */
483
+ static readonly ENABLED: Eac3SurroundMode;
484
+ /** Not indicated */
485
+ static readonly NOT_INDICATED: Eac3SurroundMode;
486
+ /** A value not yet modelled by AWS CDK. */
487
+ static of(value: string): Eac3SurroundMode;
488
+ /** The underlying string value passed to CloudFormation. */
489
+ readonly value: string;
490
+ private constructor();
491
+ }
492
+ /**
493
+ * EAC3 Atmos coding mode.
494
+ */
495
+ export declare class Eac3AtmosCodingMode {
496
+ /** 5.1.4 surround */
497
+ static readonly CODING_MODE_5_1_4: Eac3AtmosCodingMode;
498
+ /** 7.1.4 surround */
499
+ static readonly CODING_MODE_7_1_4: Eac3AtmosCodingMode;
500
+ /** 9.1.6 surround */
501
+ static readonly CODING_MODE_9_1_6: Eac3AtmosCodingMode;
502
+ /** A value not yet modelled by AWS CDK. */
503
+ static of(value: string): Eac3AtmosCodingMode;
504
+ /** The underlying string value passed to CloudFormation. */
505
+ readonly value: string;
506
+ private constructor();
507
+ }
508
+ /**
509
+ * EAC3 Atmos DRC line mode profile.
510
+ */
511
+ export declare class Eac3AtmosDrcLine {
512
+ /** Film light */
513
+ static readonly FILM_LIGHT: Eac3AtmosDrcLine;
514
+ /** Film standard */
515
+ static readonly FILM_STANDARD: Eac3AtmosDrcLine;
516
+ /** Music light */
517
+ static readonly MUSIC_LIGHT: Eac3AtmosDrcLine;
518
+ /** Music standard */
519
+ static readonly MUSIC_STANDARD: Eac3AtmosDrcLine;
520
+ /** None */
521
+ static readonly NONE: Eac3AtmosDrcLine;
522
+ /** Speech */
523
+ static readonly SPEECH: Eac3AtmosDrcLine;
524
+ /** A value not yet modelled by AWS CDK. */
525
+ static of(value: string): Eac3AtmosDrcLine;
526
+ /** The underlying string value passed to CloudFormation. */
527
+ readonly value: string;
528
+ private constructor();
529
+ }
530
+ /**
531
+ * EAC3 Atmos DRC RF mode profile.
532
+ */
533
+ export declare class Eac3AtmosDrcRf {
534
+ /** Film light */
535
+ static readonly FILM_LIGHT: Eac3AtmosDrcRf;
536
+ /** Film standard */
537
+ static readonly FILM_STANDARD: Eac3AtmosDrcRf;
538
+ /** Music light */
539
+ static readonly MUSIC_LIGHT: Eac3AtmosDrcRf;
540
+ /** Music standard */
541
+ static readonly MUSIC_STANDARD: Eac3AtmosDrcRf;
542
+ /** None */
543
+ static readonly NONE: Eac3AtmosDrcRf;
544
+ /** Speech */
545
+ static readonly SPEECH: Eac3AtmosDrcRf;
546
+ /** A value not yet modelled by AWS CDK. */
547
+ static of(value: string): Eac3AtmosDrcRf;
548
+ /** The underlying string value passed to CloudFormation. */
549
+ readonly value: string;
550
+ private constructor();
551
+ }
552
+ /**
553
+ * MP2 coding mode.
554
+ */
555
+ export declare class Mp2CodingMode {
556
+ /** 1.0 (mono) */
557
+ static readonly CODING_MODE_1_0: Mp2CodingMode;
558
+ /** 2.0 (stereo) */
559
+ static readonly CODING_MODE_2_0: Mp2CodingMode;
560
+ /** A value not yet modelled by AWS CDK. */
561
+ static of(value: string): Mp2CodingMode;
562
+ /** The underlying string value passed to CloudFormation. */
563
+ readonly value: string;
564
+ private constructor();
565
+ }
566
+ /**
567
+ * WAV coding mode.
568
+ */
569
+ export declare class WavCodingMode {
570
+ /** 1.0 (mono) */
571
+ static readonly CODING_MODE_1_0: WavCodingMode;
572
+ /** 2.0 (stereo) */
573
+ static readonly CODING_MODE_2_0: WavCodingMode;
574
+ /** 4.0 */
575
+ static readonly CODING_MODE_4_0: WavCodingMode;
576
+ /** 8.0 */
577
+ static readonly CODING_MODE_8_0: WavCodingMode;
578
+ /** A value not yet modelled by AWS CDK. */
579
+ static of(value: string): WavCodingMode;
580
+ /** The underlying string value passed to CloudFormation. */
581
+ readonly value: string;
582
+ private constructor();
583
+ }
584
+ /**
585
+ * Properties for AAC codec settings.
586
+ */
587
+ export interface AacSettingsProps {
588
+ /**
589
+ * The average bitrate.
590
+ * @default Bitrate.kbps(192)
591
+ */
592
+ readonly bitrate?: Bitrate;
593
+ /**
594
+ * The AAC profile.
595
+ * @default AacProfile.LC
596
+ */
597
+ readonly profile?: AacProfile;
598
+ /**
599
+ * The coding mode (mono, stereo, 5.1).
600
+ * @default AacCodingMode.CODING_MODE_2_0
601
+ */
602
+ readonly codingMode?: AacCodingMode;
603
+ /**
604
+ * The rate control mode.
605
+ * @default AacRateControlMode.CBR
606
+ */
607
+ readonly rateControlMode?: AacRateControlMode;
608
+ /**
609
+ * The sample rate.
610
+ * @default AudioSampleRate.HZ_48000
611
+ */
612
+ readonly sampleRate?: AudioSampleRate;
613
+ /**
614
+ * Set to broadcasterMixedAd when the input contains pre-mixed main audio + AD (narration) as a stereo pair.
615
+ * @default AacInputType.NORMAL
616
+ */
617
+ readonly inputType?: AacInputType;
618
+ /**
619
+ * Sets the LATM/LOAS AAC output for raw containers.
620
+ * @default AacRawFormat.NONE
621
+ */
622
+ readonly rawFormat?: AacRawFormat;
623
+ /**
624
+ * The AAC specification (MPEG-4 or MPEG-2) used to encode the audio.
625
+ *
626
+ * Set to `AacSpec.MPEG2` to emit MPEG-2 AAC instead of MPEG-4 AAC for raw or MPEG-2 Transport
627
+ * Stream containers.
628
+ * @default AacSpec.MPEG4
629
+ */
630
+ readonly spec?: AacSpec;
631
+ /**
632
+ * The VBR quality level. Used only if rateControlMode is VBR.
633
+ * @default - service default
634
+ */
635
+ readonly vbrQuality?: AacVbrQuality;
636
+ }
637
+ /**
638
+ * Properties for AC3 codec settings.
639
+ */
640
+ export interface Ac3SettingsProps {
641
+ /**
642
+ * The average bitrate.
643
+ * @default - service default
644
+ */
645
+ readonly bitrate?: Bitrate;
646
+ /**
647
+ * The Dolby Digital coding mode.
648
+ * @default Ac3CodingMode.CODING_MODE_2_0
649
+ */
650
+ readonly codingMode?: Ac3CodingMode;
651
+ /**
652
+ * The dialogue normalization level (1–31).
653
+ * @default - service default
654
+ */
655
+ readonly dialNorm?: number;
656
+ /**
657
+ * Applies a 3 dB attenuation to the surround channels. Used only for the 3/2 coding mode.
658
+ * @default - service default
659
+ */
660
+ readonly attenuationControl?: Ac3AttenuationControl;
661
+ /**
662
+ * Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
663
+ * @default Ac3BitstreamMode.COMPLETE_MAIN
664
+ */
665
+ readonly bitstreamMode?: Ac3BitstreamMode;
666
+ /**
667
+ * If set to filmStandard, adds dynamic range compression signaling to the output bitstream.
668
+ * @default - service default
669
+ */
670
+ readonly drcProfile?: Ac3DrcProfile;
671
+ /**
672
+ * When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
673
+ * Valid only in codingMode32Lfe mode.
674
+ * @default Ac3LfeFilter.DISABLED
675
+ */
676
+ readonly lfeFilter?: Ac3LfeFilter;
677
+ /**
678
+ * When set to followInput, encoder metadata is sourced from the DD, DD+, or DolbyE decoder that supplies this audio data.
679
+ * @default - service default
680
+ */
681
+ readonly metadataControl?: Ac3MetadataControl;
682
+ }
683
+ /**
684
+ * Properties for EAC3 codec settings.
685
+ */
686
+ export interface Eac3SettingsProps {
687
+ /**
688
+ * The average bitrate.
689
+ * @default - service default
690
+ */
691
+ readonly bitrate?: Bitrate;
692
+ /**
693
+ * The Dolby Digital Plus coding mode.
694
+ * @default Eac3CodingMode.CODING_MODE_3_2
695
+ */
696
+ readonly codingMode?: Eac3CodingMode;
697
+ /**
698
+ * The dialogue normalization level (1–31).
699
+ * @default - service default
700
+ */
701
+ readonly dialNorm?: number;
702
+ /**
703
+ * When set to attenuate3Db, applies a 3 dB attenuation to the surround channels. Used only for the 3/2 coding mode.
704
+ * @default Eac3AttenuationControl.NONE
705
+ */
706
+ readonly attenuationControl?: Eac3AttenuationControl;
707
+ /**
708
+ * Specifies the bitstream mode (bsmod) for the emitted E-AC-3 stream.
709
+ * @default Eac3BitstreamMode.COMPLETE_MAIN
710
+ */
711
+ readonly bitstreamMode?: Eac3BitstreamMode;
712
+ /**
713
+ * When set to enabled, activates a DC highpass filter for all input channels.
714
+ * @default - service default
715
+ */
716
+ readonly dcFilter?: Eac3DcFilter;
717
+ /**
718
+ * Sets the Dolby dynamic range compression profile.
719
+ * @default - service default
720
+ */
721
+ readonly drcLine?: Eac3DrcLine;
722
+ /**
723
+ * Sets the profile for heavy Dolby dynamic range compression, ensuring that the instantaneous signal peaks do not exceed specified levels.
724
+ * @default - service default
725
+ */
726
+ readonly drcRf?: Eac3DrcRf;
727
+ /**
728
+ * When encoding 3/2 audio, setting to lfe enables the LFE channel.
729
+ * @default - service default
730
+ */
731
+ readonly lfeControl?: Eac3LfeControl;
732
+ /**
733
+ * When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
734
+ * Valid only with a codingMode32 coding mode.
735
+ * @default - service default
736
+ */
737
+ readonly lfeFilter?: Eac3LfeFilter;
738
+ /**
739
+ * The Left only/Right only center mix level. Used only for the 3/2 coding mode.
740
+ * @default - service default
741
+ */
742
+ readonly loRoCenterMixLevel?: number;
743
+ /**
744
+ * The Left only/Right only surround mix level. Used only for a 3/2 coding mode.
745
+ * @default - service default
746
+ */
747
+ readonly loRoSurroundMixLevel?: number;
748
+ /**
749
+ * The Left total/Right total center mix level. Used only for a 3/2 coding mode.
750
+ * @default - service default
751
+ */
752
+ readonly ltRtCenterMixLevel?: number;
753
+ /**
754
+ * The Left total/Right total surround mix level. Used only for the 3/2 coding mode.
755
+ * @default - service default
756
+ */
757
+ readonly ltRtSurroundMixLevel?: number;
758
+ /**
759
+ * When set to followInput, encoder metadata is sourced from the DD, DD+, or DolbyE decoder that supplies this audio data.
760
+ * @default - service default
761
+ */
762
+ readonly metadataControl?: Eac3MetadataControl;
763
+ /**
764
+ * When set to whenPossible, input DD+ audio will be passed through if it is present on the input.
765
+ * @default - service default
766
+ */
767
+ readonly passthroughControl?: Eac3PassthroughControl;
768
+ /**
769
+ * When set to shift90Degrees, applies a 90-degree phase shift to the surround channels. Used only for a 3/2 coding mode.
770
+ * @default - service default
771
+ */
772
+ readonly phaseControl?: Eac3PhaseControl;
773
+ /**
774
+ * A stereo downmix preference. Used only for the 3/2 coding mode.
775
+ * @default - service default
776
+ */
777
+ readonly stereoDownmix?: Eac3StereoDownmix;
778
+ /**
779
+ * When encoding 3/2 audio, sets whether an extra center back surround channel is matrix encoded into the left and right surround channels.
780
+ * @default - service default
781
+ */
782
+ readonly surroundExMode?: Eac3SurroundExMode;
783
+ /**
784
+ * When encoding 2/0 audio, sets whether Dolby Surround is matrix-encoded into the two channels.
785
+ * @default - service default
786
+ */
787
+ readonly surroundMode?: Eac3SurroundMode;
788
+ }
789
+ /**
790
+ * Properties for EAC3 Atmos codec settings.
791
+ */
792
+ export interface Eac3AtmosSettingsProps {
793
+ /**
794
+ * The average bitrate.
795
+ * @default - service default
796
+ */
797
+ readonly bitrate?: Bitrate;
798
+ /**
799
+ * The coding mode (e.g. CODING_MODE_5_1_4, CODING_MODE_7_1_4, CODING_MODE_9_1_6).
800
+ * @default Eac3AtmosCodingMode.CODING_MODE_5_1_4
801
+ */
802
+ readonly codingMode?: Eac3AtmosCodingMode;
803
+ /**
804
+ * The dialogue normalization level (1–31).
805
+ * @default - service default
806
+ */
807
+ readonly dialNorm?: number;
808
+ /**
809
+ * Sets the Dolby dynamic range compression line mode profile.
810
+ * @default - service default
811
+ */
812
+ readonly drcLine?: Eac3AtmosDrcLine;
813
+ /**
814
+ * Sets the Dolby dynamic range compression RF mode profile.
815
+ * @default - service default
816
+ */
817
+ readonly drcRf?: Eac3AtmosDrcRf;
818
+ /**
819
+ * Height channel trim level.
820
+ * @default - service default
821
+ */
822
+ readonly heightTrim?: number;
823
+ /**
824
+ * Surround channel trim level.
825
+ * @default - service default
826
+ */
827
+ readonly surroundTrim?: number;
828
+ }
829
+ /**
830
+ * Properties for MP2 codec settings.
831
+ */
832
+ export interface Mp2SettingsProps {
833
+ /**
834
+ * The average bitrate.
835
+ * @default - service default
836
+ */
837
+ readonly bitrate?: Bitrate;
838
+ /**
839
+ * The MPEG2 Audio coding mode.
840
+ * @default Mp2CodingMode.CODING_MODE_2_0
841
+ */
842
+ readonly codingMode?: Mp2CodingMode;
843
+ /**
844
+ * The sample rate.
845
+ * @default AudioSampleRate.HZ_48000
846
+ */
847
+ readonly sampleRate?: AudioSampleRate;
848
+ }
849
+ /**
850
+ * Properties for WAV codec settings.
851
+ */
852
+ export interface WavSettingsProps {
853
+ /**
854
+ * The bit depth of the WAV output.
855
+ * @default AudioBitDepth.DEPTH_16
856
+ */
857
+ readonly bitDepth?: AudioBitDepth;
858
+ /**
859
+ * The audio coding mode for the WAV audio.
860
+ * @default WavCodingMode.CODING_MODE_2_0
861
+ */
862
+ readonly codingMode?: WavCodingMode;
863
+ /**
864
+ * The sample rate.
865
+ * @default AudioSampleRate.HZ_48000
866
+ */
867
+ readonly sampleRate?: AudioSampleRate;
868
+ }
869
+ /**
870
+ * Audio codec settings. Use the static factory methods to create.
871
+ */
872
+ export declare abstract class AudioCodecSettings {
873
+ /**
874
+ * Create AAC codec settings.
875
+ */
876
+ static aac(props?: AacSettingsProps): AudioCodecSettings;
877
+ /**
878
+ * Create AC3 codec settings.
879
+ */
880
+ static ac3(props?: Ac3SettingsProps): AudioCodecSettings;
881
+ /**
882
+ * Create EAC3 (Dolby Digital Plus) codec settings.
883
+ */
884
+ static eac3(props?: Eac3SettingsProps): AudioCodecSettings;
885
+ /**
886
+ * Create EAC3 Atmos (Dolby Digital Plus with Atmos) codec settings.
887
+ */
888
+ static eac3Atmos(props?: Eac3AtmosSettingsProps): AudioCodecSettings;
889
+ /**
890
+ * Create MP2 codec settings.
891
+ */
892
+ static mp2(props?: Mp2SettingsProps): AudioCodecSettings;
893
+ /**
894
+ * Create WAV codec settings.
895
+ */
896
+ static wav(props?: WavSettingsProps): AudioCodecSettings;
897
+ /**
898
+ * Create passthrough audio settings (no transcoding).
899
+ */
900
+ static passthrough(): AudioCodecSettings;
901
+ }