medialive.d.ts
223 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {WaiterConfiguration} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class MediaLive extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: MediaLive.Types.ClientConfiguration)
config: Config & MediaLive.Types.ClientConfiguration;
/**
* Update a channel schedule
*/
batchUpdateSchedule(params: MediaLive.Types.BatchUpdateScheduleRequest, callback?: (err: AWSError, data: MediaLive.Types.BatchUpdateScheduleResponse) => void): Request<MediaLive.Types.BatchUpdateScheduleResponse, AWSError>;
/**
* Update a channel schedule
*/
batchUpdateSchedule(callback?: (err: AWSError, data: MediaLive.Types.BatchUpdateScheduleResponse) => void): Request<MediaLive.Types.BatchUpdateScheduleResponse, AWSError>;
/**
* Creates a new channel
*/
createChannel(params: MediaLive.Types.CreateChannelRequest, callback?: (err: AWSError, data: MediaLive.Types.CreateChannelResponse) => void): Request<MediaLive.Types.CreateChannelResponse, AWSError>;
/**
* Creates a new channel
*/
createChannel(callback?: (err: AWSError, data: MediaLive.Types.CreateChannelResponse) => void): Request<MediaLive.Types.CreateChannelResponse, AWSError>;
/**
* Create an input
*/
createInput(params: MediaLive.Types.CreateInputRequest, callback?: (err: AWSError, data: MediaLive.Types.CreateInputResponse) => void): Request<MediaLive.Types.CreateInputResponse, AWSError>;
/**
* Create an input
*/
createInput(callback?: (err: AWSError, data: MediaLive.Types.CreateInputResponse) => void): Request<MediaLive.Types.CreateInputResponse, AWSError>;
/**
* Creates a Input Security Group
*/
createInputSecurityGroup(params: MediaLive.Types.CreateInputSecurityGroupRequest, callback?: (err: AWSError, data: MediaLive.Types.CreateInputSecurityGroupResponse) => void): Request<MediaLive.Types.CreateInputSecurityGroupResponse, AWSError>;
/**
* Creates a Input Security Group
*/
createInputSecurityGroup(callback?: (err: AWSError, data: MediaLive.Types.CreateInputSecurityGroupResponse) => void): Request<MediaLive.Types.CreateInputSecurityGroupResponse, AWSError>;
/**
* Create a new multiplex.
*/
createMultiplex(params: MediaLive.Types.CreateMultiplexRequest, callback?: (err: AWSError, data: MediaLive.Types.CreateMultiplexResponse) => void): Request<MediaLive.Types.CreateMultiplexResponse, AWSError>;
/**
* Create a new multiplex.
*/
createMultiplex(callback?: (err: AWSError, data: MediaLive.Types.CreateMultiplexResponse) => void): Request<MediaLive.Types.CreateMultiplexResponse, AWSError>;
/**
* Create a new program in the multiplex.
*/
createMultiplexProgram(params: MediaLive.Types.CreateMultiplexProgramRequest, callback?: (err: AWSError, data: MediaLive.Types.CreateMultiplexProgramResponse) => void): Request<MediaLive.Types.CreateMultiplexProgramResponse, AWSError>;
/**
* Create a new program in the multiplex.
*/
createMultiplexProgram(callback?: (err: AWSError, data: MediaLive.Types.CreateMultiplexProgramResponse) => void): Request<MediaLive.Types.CreateMultiplexProgramResponse, AWSError>;
/**
* Create tags for a resource
*/
createTags(params: MediaLive.Types.CreateTagsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Create tags for a resource
*/
createTags(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Starts deletion of channel. The associated outputs are also deleted.
*/
deleteChannel(params: MediaLive.Types.DeleteChannelRequest, callback?: (err: AWSError, data: MediaLive.Types.DeleteChannelResponse) => void): Request<MediaLive.Types.DeleteChannelResponse, AWSError>;
/**
* Starts deletion of channel. The associated outputs are also deleted.
*/
deleteChannel(callback?: (err: AWSError, data: MediaLive.Types.DeleteChannelResponse) => void): Request<MediaLive.Types.DeleteChannelResponse, AWSError>;
/**
* Deletes the input end point
*/
deleteInput(params: MediaLive.Types.DeleteInputRequest, callback?: (err: AWSError, data: MediaLive.Types.DeleteInputResponse) => void): Request<MediaLive.Types.DeleteInputResponse, AWSError>;
/**
* Deletes the input end point
*/
deleteInput(callback?: (err: AWSError, data: MediaLive.Types.DeleteInputResponse) => void): Request<MediaLive.Types.DeleteInputResponse, AWSError>;
/**
* Deletes an Input Security Group
*/
deleteInputSecurityGroup(params: MediaLive.Types.DeleteInputSecurityGroupRequest, callback?: (err: AWSError, data: MediaLive.Types.DeleteInputSecurityGroupResponse) => void): Request<MediaLive.Types.DeleteInputSecurityGroupResponse, AWSError>;
/**
* Deletes an Input Security Group
*/
deleteInputSecurityGroup(callback?: (err: AWSError, data: MediaLive.Types.DeleteInputSecurityGroupResponse) => void): Request<MediaLive.Types.DeleteInputSecurityGroupResponse, AWSError>;
/**
* Delete a multiplex. The multiplex must be idle.
*/
deleteMultiplex(params: MediaLive.Types.DeleteMultiplexRequest, callback?: (err: AWSError, data: MediaLive.Types.DeleteMultiplexResponse) => void): Request<MediaLive.Types.DeleteMultiplexResponse, AWSError>;
/**
* Delete a multiplex. The multiplex must be idle.
*/
deleteMultiplex(callback?: (err: AWSError, data: MediaLive.Types.DeleteMultiplexResponse) => void): Request<MediaLive.Types.DeleteMultiplexResponse, AWSError>;
/**
* Delete a program from a multiplex.
*/
deleteMultiplexProgram(params: MediaLive.Types.DeleteMultiplexProgramRequest, callback?: (err: AWSError, data: MediaLive.Types.DeleteMultiplexProgramResponse) => void): Request<MediaLive.Types.DeleteMultiplexProgramResponse, AWSError>;
/**
* Delete a program from a multiplex.
*/
deleteMultiplexProgram(callback?: (err: AWSError, data: MediaLive.Types.DeleteMultiplexProgramResponse) => void): Request<MediaLive.Types.DeleteMultiplexProgramResponse, AWSError>;
/**
* Delete an expired reservation.
*/
deleteReservation(params: MediaLive.Types.DeleteReservationRequest, callback?: (err: AWSError, data: MediaLive.Types.DeleteReservationResponse) => void): Request<MediaLive.Types.DeleteReservationResponse, AWSError>;
/**
* Delete an expired reservation.
*/
deleteReservation(callback?: (err: AWSError, data: MediaLive.Types.DeleteReservationResponse) => void): Request<MediaLive.Types.DeleteReservationResponse, AWSError>;
/**
* Delete all schedule actions on a channel.
*/
deleteSchedule(params: MediaLive.Types.DeleteScheduleRequest, callback?: (err: AWSError, data: MediaLive.Types.DeleteScheduleResponse) => void): Request<MediaLive.Types.DeleteScheduleResponse, AWSError>;
/**
* Delete all schedule actions on a channel.
*/
deleteSchedule(callback?: (err: AWSError, data: MediaLive.Types.DeleteScheduleResponse) => void): Request<MediaLive.Types.DeleteScheduleResponse, AWSError>;
/**
* Removes tags for a resource
*/
deleteTags(params: MediaLive.Types.DeleteTagsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Removes tags for a resource
*/
deleteTags(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
/**
* Gets details about a channel
*/
describeChannel(params: MediaLive.Types.DescribeChannelRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Gets details about a channel
*/
describeChannel(callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Produces details about an input
*/
describeInput(params: MediaLive.Types.DescribeInputRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeInputResponse) => void): Request<MediaLive.Types.DescribeInputResponse, AWSError>;
/**
* Produces details about an input
*/
describeInput(callback?: (err: AWSError, data: MediaLive.Types.DescribeInputResponse) => void): Request<MediaLive.Types.DescribeInputResponse, AWSError>;
/**
* Produces a summary of an Input Security Group
*/
describeInputSecurityGroup(params: MediaLive.Types.DescribeInputSecurityGroupRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeInputSecurityGroupResponse) => void): Request<MediaLive.Types.DescribeInputSecurityGroupResponse, AWSError>;
/**
* Produces a summary of an Input Security Group
*/
describeInputSecurityGroup(callback?: (err: AWSError, data: MediaLive.Types.DescribeInputSecurityGroupResponse) => void): Request<MediaLive.Types.DescribeInputSecurityGroupResponse, AWSError>;
/**
* Gets details about a multiplex.
*/
describeMultiplex(params: MediaLive.Types.DescribeMultiplexRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
/**
* Gets details about a multiplex.
*/
describeMultiplex(callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
/**
* Get the details for a program in a multiplex.
*/
describeMultiplexProgram(params: MediaLive.Types.DescribeMultiplexProgramRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexProgramResponse) => void): Request<MediaLive.Types.DescribeMultiplexProgramResponse, AWSError>;
/**
* Get the details for a program in a multiplex.
*/
describeMultiplexProgram(callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexProgramResponse) => void): Request<MediaLive.Types.DescribeMultiplexProgramResponse, AWSError>;
/**
* Get details for an offering.
*/
describeOffering(params: MediaLive.Types.DescribeOfferingRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeOfferingResponse) => void): Request<MediaLive.Types.DescribeOfferingResponse, AWSError>;
/**
* Get details for an offering.
*/
describeOffering(callback?: (err: AWSError, data: MediaLive.Types.DescribeOfferingResponse) => void): Request<MediaLive.Types.DescribeOfferingResponse, AWSError>;
/**
* Get details for a reservation.
*/
describeReservation(params: MediaLive.Types.DescribeReservationRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeReservationResponse) => void): Request<MediaLive.Types.DescribeReservationResponse, AWSError>;
/**
* Get details for a reservation.
*/
describeReservation(callback?: (err: AWSError, data: MediaLive.Types.DescribeReservationResponse) => void): Request<MediaLive.Types.DescribeReservationResponse, AWSError>;
/**
* Get a channel schedule
*/
describeSchedule(params: MediaLive.Types.DescribeScheduleRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeScheduleResponse) => void): Request<MediaLive.Types.DescribeScheduleResponse, AWSError>;
/**
* Get a channel schedule
*/
describeSchedule(callback?: (err: AWSError, data: MediaLive.Types.DescribeScheduleResponse) => void): Request<MediaLive.Types.DescribeScheduleResponse, AWSError>;
/**
* Produces list of channels that have been created
*/
listChannels(params: MediaLive.Types.ListChannelsRequest, callback?: (err: AWSError, data: MediaLive.Types.ListChannelsResponse) => void): Request<MediaLive.Types.ListChannelsResponse, AWSError>;
/**
* Produces list of channels that have been created
*/
listChannels(callback?: (err: AWSError, data: MediaLive.Types.ListChannelsResponse) => void): Request<MediaLive.Types.ListChannelsResponse, AWSError>;
/**
* Produces a list of Input Security Groups for an account
*/
listInputSecurityGroups(params: MediaLive.Types.ListInputSecurityGroupsRequest, callback?: (err: AWSError, data: MediaLive.Types.ListInputSecurityGroupsResponse) => void): Request<MediaLive.Types.ListInputSecurityGroupsResponse, AWSError>;
/**
* Produces a list of Input Security Groups for an account
*/
listInputSecurityGroups(callback?: (err: AWSError, data: MediaLive.Types.ListInputSecurityGroupsResponse) => void): Request<MediaLive.Types.ListInputSecurityGroupsResponse, AWSError>;
/**
* Produces list of inputs that have been created
*/
listInputs(params: MediaLive.Types.ListInputsRequest, callback?: (err: AWSError, data: MediaLive.Types.ListInputsResponse) => void): Request<MediaLive.Types.ListInputsResponse, AWSError>;
/**
* Produces list of inputs that have been created
*/
listInputs(callback?: (err: AWSError, data: MediaLive.Types.ListInputsResponse) => void): Request<MediaLive.Types.ListInputsResponse, AWSError>;
/**
* List the programs that currently exist for a specific multiplex.
*/
listMultiplexPrograms(params: MediaLive.Types.ListMultiplexProgramsRequest, callback?: (err: AWSError, data: MediaLive.Types.ListMultiplexProgramsResponse) => void): Request<MediaLive.Types.ListMultiplexProgramsResponse, AWSError>;
/**
* List the programs that currently exist for a specific multiplex.
*/
listMultiplexPrograms(callback?: (err: AWSError, data: MediaLive.Types.ListMultiplexProgramsResponse) => void): Request<MediaLive.Types.ListMultiplexProgramsResponse, AWSError>;
/**
* Retrieve a list of the existing multiplexes.
*/
listMultiplexes(params: MediaLive.Types.ListMultiplexesRequest, callback?: (err: AWSError, data: MediaLive.Types.ListMultiplexesResponse) => void): Request<MediaLive.Types.ListMultiplexesResponse, AWSError>;
/**
* Retrieve a list of the existing multiplexes.
*/
listMultiplexes(callback?: (err: AWSError, data: MediaLive.Types.ListMultiplexesResponse) => void): Request<MediaLive.Types.ListMultiplexesResponse, AWSError>;
/**
* List offerings available for purchase.
*/
listOfferings(params: MediaLive.Types.ListOfferingsRequest, callback?: (err: AWSError, data: MediaLive.Types.ListOfferingsResponse) => void): Request<MediaLive.Types.ListOfferingsResponse, AWSError>;
/**
* List offerings available for purchase.
*/
listOfferings(callback?: (err: AWSError, data: MediaLive.Types.ListOfferingsResponse) => void): Request<MediaLive.Types.ListOfferingsResponse, AWSError>;
/**
* List purchased reservations.
*/
listReservations(params: MediaLive.Types.ListReservationsRequest, callback?: (err: AWSError, data: MediaLive.Types.ListReservationsResponse) => void): Request<MediaLive.Types.ListReservationsResponse, AWSError>;
/**
* List purchased reservations.
*/
listReservations(callback?: (err: AWSError, data: MediaLive.Types.ListReservationsResponse) => void): Request<MediaLive.Types.ListReservationsResponse, AWSError>;
/**
* Produces list of tags that have been created for a resource
*/
listTagsForResource(params: MediaLive.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: MediaLive.Types.ListTagsForResourceResponse) => void): Request<MediaLive.Types.ListTagsForResourceResponse, AWSError>;
/**
* Produces list of tags that have been created for a resource
*/
listTagsForResource(callback?: (err: AWSError, data: MediaLive.Types.ListTagsForResourceResponse) => void): Request<MediaLive.Types.ListTagsForResourceResponse, AWSError>;
/**
* Purchase an offering and create a reservation.
*/
purchaseOffering(params: MediaLive.Types.PurchaseOfferingRequest, callback?: (err: AWSError, data: MediaLive.Types.PurchaseOfferingResponse) => void): Request<MediaLive.Types.PurchaseOfferingResponse, AWSError>;
/**
* Purchase an offering and create a reservation.
*/
purchaseOffering(callback?: (err: AWSError, data: MediaLive.Types.PurchaseOfferingResponse) => void): Request<MediaLive.Types.PurchaseOfferingResponse, AWSError>;
/**
* Starts an existing channel
*/
startChannel(params: MediaLive.Types.StartChannelRequest, callback?: (err: AWSError, data: MediaLive.Types.StartChannelResponse) => void): Request<MediaLive.Types.StartChannelResponse, AWSError>;
/**
* Starts an existing channel
*/
startChannel(callback?: (err: AWSError, data: MediaLive.Types.StartChannelResponse) => void): Request<MediaLive.Types.StartChannelResponse, AWSError>;
/**
* Start (run) the multiplex. Starting the multiplex does not start the channels. You must explicitly start each channel.
*/
startMultiplex(params: MediaLive.Types.StartMultiplexRequest, callback?: (err: AWSError, data: MediaLive.Types.StartMultiplexResponse) => void): Request<MediaLive.Types.StartMultiplexResponse, AWSError>;
/**
* Start (run) the multiplex. Starting the multiplex does not start the channels. You must explicitly start each channel.
*/
startMultiplex(callback?: (err: AWSError, data: MediaLive.Types.StartMultiplexResponse) => void): Request<MediaLive.Types.StartMultiplexResponse, AWSError>;
/**
* Stops a running channel
*/
stopChannel(params: MediaLive.Types.StopChannelRequest, callback?: (err: AWSError, data: MediaLive.Types.StopChannelResponse) => void): Request<MediaLive.Types.StopChannelResponse, AWSError>;
/**
* Stops a running channel
*/
stopChannel(callback?: (err: AWSError, data: MediaLive.Types.StopChannelResponse) => void): Request<MediaLive.Types.StopChannelResponse, AWSError>;
/**
* Stops a running multiplex. If the multiplex isn't running, this action has no effect.
*/
stopMultiplex(params: MediaLive.Types.StopMultiplexRequest, callback?: (err: AWSError, data: MediaLive.Types.StopMultiplexResponse) => void): Request<MediaLive.Types.StopMultiplexResponse, AWSError>;
/**
* Stops a running multiplex. If the multiplex isn't running, this action has no effect.
*/
stopMultiplex(callback?: (err: AWSError, data: MediaLive.Types.StopMultiplexResponse) => void): Request<MediaLive.Types.StopMultiplexResponse, AWSError>;
/**
* Updates a channel.
*/
updateChannel(params: MediaLive.Types.UpdateChannelRequest, callback?: (err: AWSError, data: MediaLive.Types.UpdateChannelResponse) => void): Request<MediaLive.Types.UpdateChannelResponse, AWSError>;
/**
* Updates a channel.
*/
updateChannel(callback?: (err: AWSError, data: MediaLive.Types.UpdateChannelResponse) => void): Request<MediaLive.Types.UpdateChannelResponse, AWSError>;
/**
* Changes the class of the channel.
*/
updateChannelClass(params: MediaLive.Types.UpdateChannelClassRequest, callback?: (err: AWSError, data: MediaLive.Types.UpdateChannelClassResponse) => void): Request<MediaLive.Types.UpdateChannelClassResponse, AWSError>;
/**
* Changes the class of the channel.
*/
updateChannelClass(callback?: (err: AWSError, data: MediaLive.Types.UpdateChannelClassResponse) => void): Request<MediaLive.Types.UpdateChannelClassResponse, AWSError>;
/**
* Updates an input.
*/
updateInput(params: MediaLive.Types.UpdateInputRequest, callback?: (err: AWSError, data: MediaLive.Types.UpdateInputResponse) => void): Request<MediaLive.Types.UpdateInputResponse, AWSError>;
/**
* Updates an input.
*/
updateInput(callback?: (err: AWSError, data: MediaLive.Types.UpdateInputResponse) => void): Request<MediaLive.Types.UpdateInputResponse, AWSError>;
/**
* Update an Input Security Group's Whilelists.
*/
updateInputSecurityGroup(params: MediaLive.Types.UpdateInputSecurityGroupRequest, callback?: (err: AWSError, data: MediaLive.Types.UpdateInputSecurityGroupResponse) => void): Request<MediaLive.Types.UpdateInputSecurityGroupResponse, AWSError>;
/**
* Update an Input Security Group's Whilelists.
*/
updateInputSecurityGroup(callback?: (err: AWSError, data: MediaLive.Types.UpdateInputSecurityGroupResponse) => void): Request<MediaLive.Types.UpdateInputSecurityGroupResponse, AWSError>;
/**
* Updates a multiplex.
*/
updateMultiplex(params: MediaLive.Types.UpdateMultiplexRequest, callback?: (err: AWSError, data: MediaLive.Types.UpdateMultiplexResponse) => void): Request<MediaLive.Types.UpdateMultiplexResponse, AWSError>;
/**
* Updates a multiplex.
*/
updateMultiplex(callback?: (err: AWSError, data: MediaLive.Types.UpdateMultiplexResponse) => void): Request<MediaLive.Types.UpdateMultiplexResponse, AWSError>;
/**
* Update a program in a multiplex.
*/
updateMultiplexProgram(params: MediaLive.Types.UpdateMultiplexProgramRequest, callback?: (err: AWSError, data: MediaLive.Types.UpdateMultiplexProgramResponse) => void): Request<MediaLive.Types.UpdateMultiplexProgramResponse, AWSError>;
/**
* Update a program in a multiplex.
*/
updateMultiplexProgram(callback?: (err: AWSError, data: MediaLive.Types.UpdateMultiplexProgramResponse) => void): Request<MediaLive.Types.UpdateMultiplexProgramResponse, AWSError>;
/**
* Update reservation.
*/
updateReservation(params: MediaLive.Types.UpdateReservationRequest, callback?: (err: AWSError, data: MediaLive.Types.UpdateReservationResponse) => void): Request<MediaLive.Types.UpdateReservationResponse, AWSError>;
/**
* Update reservation.
*/
updateReservation(callback?: (err: AWSError, data: MediaLive.Types.UpdateReservationResponse) => void): Request<MediaLive.Types.UpdateReservationResponse, AWSError>;
/**
* Waits for the channelCreated state by periodically calling the underlying MediaLive.describeChanneloperation every 3 seconds (at most 5 times). Wait until a channel has been created
*/
waitFor(state: "channelCreated", params: MediaLive.Types.DescribeChannelRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Waits for the channelCreated state by periodically calling the underlying MediaLive.describeChanneloperation every 3 seconds (at most 5 times). Wait until a channel has been created
*/
waitFor(state: "channelCreated", callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Waits for the channelRunning state by periodically calling the underlying MediaLive.describeChanneloperation every 5 seconds (at most 120 times). Wait until a channel is running
*/
waitFor(state: "channelRunning", params: MediaLive.Types.DescribeChannelRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Waits for the channelRunning state by periodically calling the underlying MediaLive.describeChanneloperation every 5 seconds (at most 120 times). Wait until a channel is running
*/
waitFor(state: "channelRunning", callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Waits for the channelStopped state by periodically calling the underlying MediaLive.describeChanneloperation every 5 seconds (at most 28 times). Wait until a channel has is stopped
*/
waitFor(state: "channelStopped", params: MediaLive.Types.DescribeChannelRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Waits for the channelStopped state by periodically calling the underlying MediaLive.describeChanneloperation every 5 seconds (at most 28 times). Wait until a channel has is stopped
*/
waitFor(state: "channelStopped", callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Waits for the channelDeleted state by periodically calling the underlying MediaLive.describeChanneloperation every 5 seconds (at most 20 times). Wait until a channel has been deleted
*/
waitFor(state: "channelDeleted", params: MediaLive.Types.DescribeChannelRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Waits for the channelDeleted state by periodically calling the underlying MediaLive.describeChanneloperation every 5 seconds (at most 20 times). Wait until a channel has been deleted
*/
waitFor(state: "channelDeleted", callback?: (err: AWSError, data: MediaLive.Types.DescribeChannelResponse) => void): Request<MediaLive.Types.DescribeChannelResponse, AWSError>;
/**
* Waits for the multiplexCreated state by periodically calling the underlying MediaLive.describeMultiplexoperation every 3 seconds (at most 5 times). Wait until a multiplex has been created
*/
waitFor(state: "multiplexCreated", params: MediaLive.Types.DescribeMultiplexRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
/**
* Waits for the multiplexCreated state by periodically calling the underlying MediaLive.describeMultiplexoperation every 3 seconds (at most 5 times). Wait until a multiplex has been created
*/
waitFor(state: "multiplexCreated", callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
/**
* Waits for the multiplexRunning state by periodically calling the underlying MediaLive.describeMultiplexoperation every 5 seconds (at most 120 times). Wait until a multiplex is running
*/
waitFor(state: "multiplexRunning", params: MediaLive.Types.DescribeMultiplexRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
/**
* Waits for the multiplexRunning state by periodically calling the underlying MediaLive.describeMultiplexoperation every 5 seconds (at most 120 times). Wait until a multiplex is running
*/
waitFor(state: "multiplexRunning", callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
/**
* Waits for the multiplexStopped state by periodically calling the underlying MediaLive.describeMultiplexoperation every 5 seconds (at most 28 times). Wait until a multiplex has is stopped
*/
waitFor(state: "multiplexStopped", params: MediaLive.Types.DescribeMultiplexRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
/**
* Waits for the multiplexStopped state by periodically calling the underlying MediaLive.describeMultiplexoperation every 5 seconds (at most 28 times). Wait until a multiplex has is stopped
*/
waitFor(state: "multiplexStopped", callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
/**
* Waits for the multiplexDeleted state by periodically calling the underlying MediaLive.describeMultiplexoperation every 5 seconds (at most 20 times). Wait until a multiplex has been deleted
*/
waitFor(state: "multiplexDeleted", params: MediaLive.Types.DescribeMultiplexRequest & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
/**
* Waits for the multiplexDeleted state by periodically calling the underlying MediaLive.describeMultiplexoperation every 5 seconds (at most 20 times). Wait until a multiplex has been deleted
*/
waitFor(state: "multiplexDeleted", callback?: (err: AWSError, data: MediaLive.Types.DescribeMultiplexResponse) => void): Request<MediaLive.Types.DescribeMultiplexResponse, AWSError>;
}
declare namespace MediaLive {
export type AacCodingMode = "AD_RECEIVER_MIX"|"CODING_MODE_1_0"|"CODING_MODE_1_1"|"CODING_MODE_2_0"|"CODING_MODE_5_1"|string;
export type AacInputType = "BROADCASTER_MIXED_AD"|"NORMAL"|string;
export type AacProfile = "HEV1"|"HEV2"|"LC"|string;
export type AacRateControlMode = "CBR"|"VBR"|string;
export type AacRawFormat = "LATM_LOAS"|"NONE"|string;
export interface AacSettings {
/**
* Average bitrate in bits/second. Valid values depend on rate control mode and profile.
*/
Bitrate?: __double;
/**
* Mono, Stereo, or 5.1 channel layout. Valid values depend on rate control mode and profile. The adReceiverMix setting receives a stereo description plus control track and emits a mono AAC encode of the description track, with control data emitted in the PES header as per ETSI TS 101 154 Annex E.
*/
CodingMode?: AacCodingMode;
/**
* Set to "broadcasterMixedAd" when input contains pre-mixed main audio + AD (narration) as a stereo pair. The Audio Type field (audioType) will be set to 3, which signals to downstream systems that this stream contains "broadcaster mixed AD". Note that the input received by the encoder must contain pre-mixed audio; the encoder does not perform the mixing. The values in audioTypeControl and audioType (in AudioDescription) are ignored when set to broadcasterMixedAd.
Leave set to "normal" when input does not contain pre-mixed audio + AD.
*/
InputType?: AacInputType;
/**
* AAC Profile.
*/
Profile?: AacProfile;
/**
* Rate Control Mode.
*/
RateControlMode?: AacRateControlMode;
/**
* Sets LATM / LOAS AAC output for raw containers.
*/
RawFormat?: AacRawFormat;
/**
* Sample rate in Hz. Valid values depend on rate control mode and profile.
*/
SampleRate?: __double;
/**
* Use MPEG-2 AAC audio instead of MPEG-4 AAC audio for raw or MPEG-2 Transport Stream containers.
*/
Spec?: AacSpec;
/**
* VBR Quality Level - Only used if rateControlMode is VBR.
*/
VbrQuality?: AacVbrQuality;
}
export type AacSpec = "MPEG2"|"MPEG4"|string;
export type AacVbrQuality = "HIGH"|"LOW"|"MEDIUM_HIGH"|"MEDIUM_LOW"|string;
export type Ac3BitstreamMode = "COMMENTARY"|"COMPLETE_MAIN"|"DIALOGUE"|"EMERGENCY"|"HEARING_IMPAIRED"|"MUSIC_AND_EFFECTS"|"VISUALLY_IMPAIRED"|"VOICE_OVER"|string;
export type Ac3CodingMode = "CODING_MODE_1_0"|"CODING_MODE_1_1"|"CODING_MODE_2_0"|"CODING_MODE_3_2_LFE"|string;
export type Ac3DrcProfile = "FILM_STANDARD"|"NONE"|string;
export type Ac3LfeFilter = "DISABLED"|"ENABLED"|string;
export type Ac3MetadataControl = "FOLLOW_INPUT"|"USE_CONFIGURED"|string;
export interface Ac3Settings {
/**
* Average bitrate in bits/second. Valid bitrates depend on the coding mode.
*/
Bitrate?: __double;
/**
* Specifies the bitstream mode (bsmod) for the emitted AC-3 stream. See ATSC A/52-2012 for background on these values.
*/
BitstreamMode?: Ac3BitstreamMode;
/**
* Dolby Digital coding mode. Determines number of channels.
*/
CodingMode?: Ac3CodingMode;
/**
* Sets the dialnorm for the output. If excluded and input audio is Dolby Digital, dialnorm will be passed through.
*/
Dialnorm?: __integerMin1Max31;
/**
* If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
*/
DrcProfile?: Ac3DrcProfile;
/**
* When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding. Only valid in codingMode32Lfe mode.
*/
LfeFilter?: Ac3LfeFilter;
/**
* When set to "followInput", encoder metadata will be sourced from the DD, DD+, or DolbyE decoder that supplied this audio data. If audio was not supplied from one of these streams, then the static metadata settings will be used.
*/
MetadataControl?: Ac3MetadataControl;
}
export type AfdSignaling = "AUTO"|"FIXED"|"NONE"|string;
export interface ArchiveContainerSettings {
M2tsSettings?: M2tsSettings;
}
export interface ArchiveGroupSettings {
/**
* A directory and base filename where archive files should be written.
*/
Destination: OutputLocationRef;
/**
* Number of seconds to write to archive file before closing and starting a new one.
*/
RolloverInterval?: __integerMin1;
}
export interface ArchiveOutputSettings {
/**
* Settings specific to the container type of the file.
*/
ContainerSettings: ArchiveContainerSettings;
/**
* Output file extension. If excluded, this will be auto-selected from the container type.
*/
Extension?: __string;
/**
* String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
*/
NameModifier?: __string;
}
export interface AribDestinationSettings {
}
export interface AribSourceSettings {
}
export interface AudioChannelMapping {
/**
* Indices and gain values for each input channel that should be remixed into this output channel.
*/
InputChannelLevels: __listOfInputChannelLevel;
/**
* The index of the output channel being produced.
*/
OutputChannel: __integerMin0Max7;
}
export interface AudioCodecSettings {
AacSettings?: AacSettings;
Ac3Settings?: Ac3Settings;
Eac3Settings?: Eac3Settings;
Mp2Settings?: Mp2Settings;
PassThroughSettings?: PassThroughSettings;
}
export interface AudioDescription {
/**
* Advanced audio normalization settings.
*/
AudioNormalizationSettings?: AudioNormalizationSettings;
/**
* The name of the AudioSelector used as the source for this AudioDescription.
*/
AudioSelectorName: __string;
/**
* Applies only if audioTypeControl is useConfigured. The values for audioType are defined in ISO-IEC 13818-1.
*/
AudioType?: AudioType;
/**
* Determines how audio type is determined.
followInput: If the input contains an ISO 639 audioType, then that value is passed through to the output. If the input contains no ISO 639 audioType, the value in Audio Type is included in the output.
useConfigured: The value in Audio Type is included in the output.
Note that this field and audioType are both ignored if inputType is broadcasterMixedAd.
*/
AudioTypeControl?: AudioDescriptionAudioTypeControl;
/**
* Audio codec settings.
*/
CodecSettings?: AudioCodecSettings;
/**
* Indicates the language of the audio output track. Only used if languageControlMode is useConfigured, or there is no ISO 639 language code specified in the input.
*/
LanguageCode?: __stringMin3Max3;
/**
* Choosing followInput will cause the ISO 639 language code of the output to follow the ISO 639 language code of the input. The languageCode will be used when useConfigured is set, or when followInput is selected but there is no ISO 639 language code specified by the input.
*/
LanguageCodeControl?: AudioDescriptionLanguageCodeControl;
/**
* The name of this AudioDescription. Outputs will use this name to uniquely identify this AudioDescription. Description names should be unique within this Live Event.
*/
Name: __string;
/**
* Settings that control how input audio channels are remixed into the output audio channels.
*/
RemixSettings?: RemixSettings;
/**
* Used for MS Smooth and Apple HLS outputs. Indicates the name displayed by the player (eg. English, or Director Commentary).
*/
StreamName?: __string;
}
export type AudioDescriptionAudioTypeControl = "FOLLOW_INPUT"|"USE_CONFIGURED"|string;
export type AudioDescriptionLanguageCodeControl = "FOLLOW_INPUT"|"USE_CONFIGURED"|string;
export interface AudioLanguageSelection {
/**
* Selects a specific three-letter language code from within an audio source.
*/
LanguageCode: __string;
/**
* When set to "strict", the transport stream demux strictly identifies audio streams by their language descriptor. If a PMT update occurs such that an audio stream matching the initially selected language is no longer present then mute will be encoded until the language returns. If "loose", then on a PMT update the demux will choose another audio stream in the program with the same stream type if it can't find one with the same language.
*/
LanguageSelectionPolicy?: AudioLanguageSelectionPolicy;
}
export type AudioLanguageSelectionPolicy = "LOOSE"|"STRICT"|string;
export type AudioNormalizationAlgorithm = "ITU_1770_1"|"ITU_1770_2"|string;
export type AudioNormalizationAlgorithmControl = "CORRECT_AUDIO"|string;
export interface AudioNormalizationSettings {
/**
* Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 conforms to the EBU R-128 specification.
*/
Algorithm?: AudioNormalizationAlgorithm;
/**
* When set to correctAudio the output audio is corrected using the chosen algorithm. If set to measureOnly, the audio will be measured but not adjusted.
*/
AlgorithmControl?: AudioNormalizationAlgorithmControl;
/**
* Target LKFS(loudness) to adjust volume to. If no value is entered, a default value will be used according to the chosen algorithm. The CALM Act (1770-1) recommends a target of -24 LKFS. The EBU R-128 specification (1770-2) recommends a target of -23 LKFS.
*/
TargetLkfs?: __doubleMinNegative59Max0;
}
export interface AudioOnlyHlsSettings {
/**
* Specifies the group to which the audio Rendition belongs.
*/
AudioGroupId?: __string;
/**
* Optional. Specifies the .jpg or .png image to use as the cover art for an audio-only output. We recommend a low bit-size file because the image increases the output audio bandwidth.
The image is attached to the audio as an ID3 tag, frame type APIC, picture type 0x10, as per the "ID3 tag version 2.4.0 - Native Frames" standard.
*/
AudioOnlyImage?: InputLocation;
/**
* Four types of audio-only tracks are supported:
Audio-Only Variant Stream
The client can play back this audio-only stream instead of video in low-bandwidth scenarios. Represented as an EXT-X-STREAM-INF in the HLS manifest.
Alternate Audio, Auto Select, Default
Alternate rendition that the client should try to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest with DEFAULT=YES, AUTOSELECT=YES
Alternate Audio, Auto Select, Not Default
Alternate rendition that the client may try to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest with DEFAULT=NO, AUTOSELECT=YES
Alternate Audio, not Auto Select
Alternate rendition that the client will not try to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest with DEFAULT=NO, AUTOSELECT=NO
*/
AudioTrackType?: AudioOnlyHlsTrackType;
}
export type AudioOnlyHlsTrackType = "ALTERNATE_AUDIO_AUTO_SELECT"|"ALTERNATE_AUDIO_AUTO_SELECT_DEFAULT"|"ALTERNATE_AUDIO_NOT_AUTO_SELECT"|"AUDIO_ONLY_VARIANT_STREAM"|string;
export interface AudioPidSelection {
/**
* Selects a specific PID from within a source.
*/
Pid: __integerMin0Max8191;
}
export interface AudioSelector {
/**
* The name of this AudioSelector. AudioDescriptions will use this name to uniquely identify this Selector. Selector names should be unique per input.
*/
Name: __stringMin1;
/**
* The audio selector settings.
*/
SelectorSettings?: AudioSelectorSettings;
}
export interface AudioSelectorSettings {
AudioLanguageSelection?: AudioLanguageSelection;
AudioPidSelection?: AudioPidSelection;
}
export type AudioType = "CLEAN_EFFECTS"|"HEARING_IMPAIRED"|"UNDEFINED"|"VISUAL_IMPAIRED_COMMENTARY"|string;
export type AuthenticationScheme = "AKAMAI"|"COMMON"|string;
export interface AvailBlanking {
/**
* Blanking image to be used. Leave empty for solid black. Only bmp and png images are supported.
*/
AvailBlankingImage?: InputLocation;
/**
* When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.
*/
State?: AvailBlankingState;
}
export type AvailBlankingState = "DISABLED"|"ENABLED"|string;
export interface AvailConfiguration {
/**
* Ad avail settings.
*/
AvailSettings?: AvailSettings;
}
export interface AvailSettings {
Scte35SpliceInsert?: Scte35SpliceInsert;
Scte35TimeSignalApos?: Scte35TimeSignalApos;
}
export interface BatchScheduleActionCreateRequest {
/**
* A list of schedule actions to create.
*/
ScheduleActions: __listOfScheduleAction;
}
export interface BatchScheduleActionCreateResult {
/**
* List of actions that have been created in the schedule.
*/
ScheduleActions: __listOfScheduleAction;
}
export interface BatchScheduleActionDeleteRequest {
/**
* A list of schedule actions to delete.
*/
ActionNames: __listOf__string;
}
export interface BatchScheduleActionDeleteResult {
/**
* List of actions that have been deleted from the schedule.
*/
ScheduleActions: __listOfScheduleAction;
}
export interface BatchUpdateScheduleRequest {
/**
* Id of the channel whose schedule is being updated.
*/
ChannelId: __string;
/**
* Schedule actions to create in the schedule.
*/
Creates?: BatchScheduleActionCreateRequest;
/**
* Schedule actions to delete from the schedule.
*/
Deletes?: BatchScheduleActionDeleteRequest;
}
export interface BatchUpdateScheduleResponse {
/**
* Schedule actions created in the schedule.
*/
Creates?: BatchScheduleActionCreateResult;
/**
* Schedule actions deleted from the schedule.
*/
Deletes?: BatchScheduleActionDeleteResult;
}
export interface BlackoutSlate {
/**
* Blackout slate image to be used. Leave empty for solid black. Only bmp and png images are supported.
*/
BlackoutSlateImage?: InputLocation;
/**
* Setting to enabled causes the encoder to blackout the video, audio, and captions, and raise the "Network Blackout Image" slate when an SCTE104/35 Network End Segmentation Descriptor is encountered. The blackout will be lifted when the Network Start Segmentation Descriptor is encountered. The Network End and Network Start descriptors must contain a network ID that matches the value entered in "Network ID".
*/
NetworkEndBlackout?: BlackoutSlateNetworkEndBlackout;
/**
* Path to local file to use as Network End Blackout image. Image will be scaled to fill the entire output raster.
*/
NetworkEndBlackoutImage?: InputLocation;
/**
* Provides Network ID that matches EIDR ID format (e.g., "10.XXXX/XXXX-XXXX-XXXX-XXXX-XXXX-C").
*/
NetworkId?: __stringMin34Max34;
/**
* When set to enabled, causes video, audio and captions to be blanked when indicated by program metadata.
*/
State?: BlackoutSlateState;
}
export type BlackoutSlateNetworkEndBlackout = "DISABLED"|"ENABLED"|string;
export type BlackoutSlateState = "DISABLED"|"ENABLED"|string;
export type BurnInAlignment = "CENTERED"|"LEFT"|"SMART"|string;
export type BurnInBackgroundColor = "BLACK"|"NONE"|"WHITE"|string;
export interface BurnInDestinationSettings {
/**
* If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting "smart" justification will left-justify live subtitles and center-justify pre-recorded subtitles. All burn-in and DVB-Sub font settings must match.
*/
Alignment?: BurnInAlignment;
/**
* Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
*/
BackgroundColor?: BurnInBackgroundColor;
/**
* Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
*/
BackgroundOpacity?: __integerMin0Max255;
/**
* External font file used for caption burn-in. File extension must be 'ttf' or 'tte'. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match.
*/
Font?: InputLocation;
/**
* Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
*/
FontColor?: BurnInFontColor;
/**
* Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
*/
FontOpacity?: __integerMin0Max255;
/**
* Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
*/
FontResolution?: __integerMin96Max600;
/**
* When set to 'auto' fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
*/
FontSize?: __string;
/**
* Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
*/
OutlineColor?: BurnInOutlineColor;
/**
* Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
*/
OutlineSize?: __integerMin0Max10;
/**
* Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
*/
ShadowColor?: BurnInShadowColor;
/**
* Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter out is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
*/
ShadowOpacity?: __integerMin0Max255;
/**
* Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
*/
ShadowXOffset?: __integer;
/**
* Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
*/
ShadowYOffset?: __integer;
/**
* Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
*/
TeletextGridControl?: BurnInTeletextGridControl;
/**
* Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. All burn-in and DVB-Sub font settings must match.
*/
XPosition?: __integerMin0;
/**
* Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. All burn-in and DVB-Sub font settings must match.
*/
YPosition?: __integerMin0;
}
export type BurnInFontColor = "BLACK"|"BLUE"|"GREEN"|"RED"|"WHITE"|"YELLOW"|string;
export type BurnInOutlineColor = "BLACK"|"BLUE"|"GREEN"|"RED"|"WHITE"|"YELLOW"|string;
export type BurnInShadowColor = "BLACK"|"NONE"|"WHITE"|string;
export type BurnInTeletextGridControl = "FIXED"|"SCALED"|string;
export interface CaptionDescription {
/**
* Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.
*/
CaptionSelectorName: __string;
/**
* Additional settings for captions destination that depend on the destination type.
*/
DestinationSettings?: CaptionDestinationSettings;
/**
* ISO 639-2 three-digit code: http://www.loc.gov/standards/iso639-2/
*/
LanguageCode?: __string;
/**
* Human readable information to indicate captions available for players (eg. English, or Spanish).
*/
LanguageDescription?: __string;
/**
* Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.
*/
Name: __string;
}
export interface CaptionDestinationSettings {
AribDestinationSettings?: AribDestinationSettings;
BurnInDestinationSettings?: BurnInDestinationSettings;
DvbSubDestinationSettings?: DvbSubDestinationSettings;
EmbeddedDestinationSettings?: EmbeddedDestinationSettings;
EmbeddedPlusScte20DestinationSettings?: EmbeddedPlusScte20DestinationSettings;
RtmpCaptionInfoDestinationSettings?: RtmpCaptionInfoDestinationSettings;
Scte20PlusEmbeddedDestinationSettings?: Scte20PlusEmbeddedDestinationSettings;
Scte27DestinationSettings?: Scte27DestinationSettings;
SmpteTtDestinationSettings?: SmpteTtDestinationSettings;
TeletextDestinationSettings?: TeletextDestinationSettings;
TtmlDestinationSettings?: TtmlDestinationSettings;
WebvttDestinationSettings?: WebvttDestinationSettings;
}
export interface CaptionLanguageMapping {
/**
* The closed caption channel being described by this CaptionLanguageMapping. Each channel mapping must have a unique channel number (maximum of 4)
*/
CaptionChannel: __integerMin1Max4;
/**
* Three character ISO 639-2 language code (see http://www.loc.gov/standards/iso639-2)
*/
LanguageCode: __stringMin3Max3;
/**
* Textual description of language
*/
LanguageDescription: __stringMin1;
}
export interface CaptionSelector {
/**
* When specified this field indicates the three letter language code of the caption track to extract from the source.
*/
LanguageCode?: __string;
/**
* Name identifier for a caption selector. This name is used to associate this caption selector with one or more caption descriptions. Names must be unique within an event.
*/
Name: __stringMin1;
/**
* Caption selector settings.
*/
SelectorSettings?: CaptionSelectorSettings;
}
export interface CaptionSelectorSettings {
AribSourceSettings?: AribSourceSettings;
DvbSubSourceSettings?: DvbSubSourceSettings;
EmbeddedSourceSettings?: EmbeddedSourceSettings;
Scte20SourceSettings?: Scte20SourceSettings;
Scte27SourceSettings?: Scte27SourceSettings;
TeletextSourceSettings?: TeletextSourceSettings;
}
export interface Channel {
/**
* The unique arn of the channel.
*/
Arn?: __string;
/**
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
*/
ChannelClass?: ChannelClass;
/**
* A list of destinations of the channel. For UDP outputs, there is one
destination per output. For other types (HLS, for example), there is
one destination per packager.
*/
Destinations?: __listOfOutputDestination;
/**
* The endpoints where outgoing connections initiate from
*/
EgressEndpoints?: __listOfChannelEgressEndpoint;
EncoderSettings?: EncoderSettings;
/**
* The unique id of the channel.
*/
Id?: __string;
/**
* List of input attachments for channel.
*/
InputAttachments?: __listOfInputAttachment;
InputSpecification?: InputSpecification;
/**
* The log level being written to CloudWatch Logs.
*/
LogLevel?: LogLevel;
/**
* The name of the channel. (user-mutable)
*/
Name?: __string;
/**
* Runtime details for the pipelines of a running channel.
*/
PipelineDetails?: __listOfPipelineDetail;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
*/
RoleArn?: __string;
State?: ChannelState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export type ChannelClass = "STANDARD"|"SINGLE_PIPELINE"|string;
export interface ChannelEgressEndpoint {
/**
* Public IP of where a channel's output comes from
*/
SourceIp?: __string;
}
export type ChannelState = "CREATING"|"CREATE_FAILED"|"IDLE"|"STARTING"|"RUNNING"|"RECOVERING"|"STOPPING"|"DELETING"|"DELETED"|"UPDATING"|"UPDATE_FAILED"|string;
export interface ChannelSummary {
/**
* The unique arn of the channel.
*/
Arn?: __string;
/**
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
*/
ChannelClass?: ChannelClass;
/**
* A list of destinations of the channel. For UDP outputs, there is one
destination per output. For other types (HLS, for example), there is
one destination per packager.
*/
Destinations?: __listOfOutputDestination;
/**
* The endpoints where outgoing connections initiate from
*/
EgressEndpoints?: __listOfChannelEgressEndpoint;
/**
* The unique id of the channel.
*/
Id?: __string;
/**
* List of input attachments for channel.
*/
InputAttachments?: __listOfInputAttachment;
InputSpecification?: InputSpecification;
/**
* The log level being written to CloudWatch Logs.
*/
LogLevel?: LogLevel;
/**
* The name of the channel. (user-mutable)
*/
Name?: __string;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
*/
RoleArn?: __string;
State?: ChannelState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface ColorSpacePassthroughSettings {
}
export interface CreateChannelRequest {
/**
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
*/
ChannelClass?: ChannelClass;
Destinations?: __listOfOutputDestination;
EncoderSettings?: EncoderSettings;
/**
* List of input attachments for channel.
*/
InputAttachments?: __listOfInputAttachment;
/**
* Specification of input for this channel (max. bitrate, resolution, codec, etc.)
*/
InputSpecification?: InputSpecification;
/**
* The log level to write to CloudWatch Logs.
*/
LogLevel?: LogLevel;
/**
* Name of channel.
*/
Name?: __string;
/**
* Unique request ID to be specified. This is needed to prevent retries from
creating multiple resources.
*/
RequestId?: __string;
/**
* Deprecated field that's only usable by whitelisted customers.
*/
Reserved?: __string;
/**
* An optional Amazon Resource Name (ARN) of the role to assume when running the Channel.
*/
RoleArn?: __string;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface CreateChannelResponse {
Channel?: Channel;
}
export interface CreateInputRequest {
/**
* Destination settings for PUSH type inputs.
*/
Destinations?: __listOfInputDestinationRequest;
/**
* A list of security groups referenced by IDs to attach to the input.
*/
InputSecurityGroups?: __listOf__string;
/**
* A list of the MediaConnect Flows that you want to use in this input. You can specify as few as one
Flow and presently, as many as two. The only requirement is when you have more than one is that each Flow is in a
separate Availability Zone as this ensures your EML input is redundant to AZ issues.
*/
MediaConnectFlows?: __listOfMediaConnectFlowRequest;
/**
* Name of the input.
*/
Name?: __string;
/**
* Unique identifier of the request to ensure the request is handled
exactly once in case of retries.
*/
RequestId?: __string;
/**
* The Amazon Resource Name (ARN) of the role this input assumes during and after creation.
*/
RoleArn?: __string;
/**
* The source URLs for a PULL-type input. Every PULL type input needs
exactly two source URLs for redundancy.
Only specify sources for PULL type Inputs. Leave Destinations empty.
*/
Sources?: __listOfInputSourceRequest;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
Type?: InputType;
Vpc?: InputVpcRequest;
}
export interface CreateInputResponse {
Input?: Input;
}
export interface CreateInputSecurityGroupRequest {
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
/**
* List of IPv4 CIDR addresses to whitelist
*/
WhitelistRules?: __listOfInputWhitelistRuleCidr;
}
export interface CreateInputSecurityGroupResponse {
SecurityGroup?: InputSecurityGroup;
}
export interface CreateMultiplexProgramRequest {
/**
* ID of the multiplex where the program is to be created.
*/
MultiplexId: __string;
/**
* The settings for this multiplex program.
*/
MultiplexProgramSettings: MultiplexProgramSettings;
/**
* Name of multiplex program.
*/
ProgramName: __string;
/**
* Unique request ID. This prevents retries from creating multiple
resources.
*/
RequestId: __string;
}
export interface CreateMultiplexProgramResponse {
/**
* The newly created multiplex program.
*/
MultiplexProgram?: MultiplexProgram;
}
export interface CreateMultiplexRequest {
/**
* A list of availability zones for the multiplex. You must specify exactly two.
*/
AvailabilityZones: __listOf__string;
/**
* Configuration for a multiplex event.
*/
MultiplexSettings: MultiplexSettings;
/**
* Name of multiplex.
*/
Name: __string;
/**
* Unique request ID. This prevents retries from creating multiple
resources.
*/
RequestId: __string;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface CreateMultiplexResponse {
/**
* The newly created multiplex.
*/
Multiplex?: Multiplex;
}
export interface CreateTagsRequest {
ResourceArn: __string;
Tags?: Tags;
}
export interface DeleteChannelRequest {
/**
* Unique ID of the channel.
*/
ChannelId: __string;
}
export interface DeleteChannelResponse {
/**
* The unique arn of the channel.
*/
Arn?: __string;
/**
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
*/
ChannelClass?: ChannelClass;
/**
* A list of destinations of the channel. For UDP outputs, there is one
destination per output. For other types (HLS, for example), there is
one destination per packager.
*/
Destinations?: __listOfOutputDestination;
/**
* The endpoints where outgoing connections initiate from
*/
EgressEndpoints?: __listOfChannelEgressEndpoint;
EncoderSettings?: EncoderSettings;
/**
* The unique id of the channel.
*/
Id?: __string;
/**
* List of input attachments for channel.
*/
InputAttachments?: __listOfInputAttachment;
InputSpecification?: InputSpecification;
/**
* The log level being written to CloudWatch Logs.
*/
LogLevel?: LogLevel;
/**
* The name of the channel. (user-mutable)
*/
Name?: __string;
/**
* Runtime details for the pipelines of a running channel.
*/
PipelineDetails?: __listOfPipelineDetail;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
*/
RoleArn?: __string;
State?: ChannelState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface DeleteInputRequest {
/**
* Unique ID of the input
*/
InputId: __string;
}
export interface DeleteInputResponse {
}
export interface DeleteInputSecurityGroupRequest {
/**
* The Input Security Group to delete
*/
InputSecurityGroupId: __string;
}
export interface DeleteInputSecurityGroupResponse {
}
export interface DeleteMultiplexProgramRequest {
/**
* The ID of the multiplex that the program belongs to.
*/
MultiplexId: __string;
/**
* The multiplex program name.
*/
ProgramName: __string;
}
export interface DeleteMultiplexProgramResponse {
/**
* The MediaLive channel associated with the program.
*/
ChannelId?: __string;
/**
* The settings for this multiplex program.
*/
MultiplexProgramSettings?: MultiplexProgramSettings;
/**
* The packet identifier map for this multiplex program.
*/
PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
/**
* The name of the multiplex program.
*/
ProgramName?: __string;
}
export interface DeleteMultiplexRequest {
/**
* The ID of the multiplex.
*/
MultiplexId: __string;
}
export interface DeleteMultiplexResponse {
/**
* The unique arn of the multiplex.
*/
Arn?: __string;
/**
* A list of availability zones for the multiplex.
*/
AvailabilityZones?: __listOf__string;
/**
* A list of the multiplex output destinations.
*/
Destinations?: __listOfMultiplexOutputDestination;
/**
* The unique id of the multiplex.
*/
Id?: __string;
/**
* Configuration for a multiplex event.
*/
MultiplexSettings?: MultiplexSettings;
/**
* The name of the multiplex.
*/
Name?: __string;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The number of programs in the multiplex.
*/
ProgramCount?: __integer;
/**
* The current state of the multiplex.
*/
State?: MultiplexState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface DeleteReservationRequest {
/**
* Unique reservation ID, e.g. '1234567'
*/
ReservationId: __string;
}
export interface DeleteReservationResponse {
/**
* Unique reservation ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:reservation:1234567'
*/
Arn?: __string;
/**
* Number of reserved resources
*/
Count?: __integer;
/**
* Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
*/
CurrencyCode?: __string;
/**
* Lease duration, e.g. '12'
*/
Duration?: __integer;
/**
* Units for duration, e.g. 'MONTHS'
*/
DurationUnits?: OfferingDurationUnits;
/**
* Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
*/
End?: __string;
/**
* One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
*/
FixedPrice?: __double;
/**
* User specified reservation name
*/
Name?: __string;
/**
* Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
*/
OfferingDescription?: __string;
/**
* Unique offering ID, e.g. '87654321'
*/
OfferingId?: __string;
/**
* Offering type, e.g. 'NO_UPFRONT'
*/
OfferingType?: OfferingType;
/**
* AWS region, e.g. 'us-west-2'
*/
Region?: __string;
/**
* Unique reservation ID, e.g. '1234567'
*/
ReservationId?: __string;
/**
* Resource configuration details
*/
ResourceSpecification?: ReservationResourceSpecification;
/**
* Reservation UTC start date and time in ISO-8601 format, e.g. '2018-03-01T00:00:00'
*/
Start?: __string;
/**
* Current state of reservation, e.g. 'ACTIVE'
*/
State?: ReservationState;
/**
* A collection of key-value pairs
*/
Tags?: Tags;
/**
* Recurring usage charge for each reserved resource, e.g. '157.0'
*/
UsagePrice?: __double;
}
export interface DeleteScheduleRequest {
/**
* Id of the channel whose schedule is being deleted.
*/
ChannelId: __string;
}
export interface DeleteScheduleResponse {
}
export interface DeleteTagsRequest {
ResourceArn: __string;
/**
* An array of tag keys to delete
*/
TagKeys: __listOf__string;
}
export interface DescribeChannelRequest {
/**
* channel ID
*/
ChannelId: __string;
}
export interface DescribeChannelResponse {
/**
* The unique arn of the channel.
*/
Arn?: __string;
/**
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
*/
ChannelClass?: ChannelClass;
/**
* A list of destinations of the channel. For UDP outputs, there is one
destination per output. For other types (HLS, for example), there is
one destination per packager.
*/
Destinations?: __listOfOutputDestination;
/**
* The endpoints where outgoing connections initiate from
*/
EgressEndpoints?: __listOfChannelEgressEndpoint;
EncoderSettings?: EncoderSettings;
/**
* The unique id of the channel.
*/
Id?: __string;
/**
* List of input attachments for channel.
*/
InputAttachments?: __listOfInputAttachment;
InputSpecification?: InputSpecification;
/**
* The log level being written to CloudWatch Logs.
*/
LogLevel?: LogLevel;
/**
* The name of the channel. (user-mutable)
*/
Name?: __string;
/**
* Runtime details for the pipelines of a running channel.
*/
PipelineDetails?: __listOfPipelineDetail;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
*/
RoleArn?: __string;
State?: ChannelState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface DescribeInputRequest {
/**
* Unique ID of the input
*/
InputId: __string;
}
export interface DescribeInputResponse {
/**
* The Unique ARN of the input (generated, immutable).
*/
Arn?: __string;
/**
* A list of channel IDs that that input is attached to (currently an input can only be attached to one channel).
*/
AttachedChannels?: __listOf__string;
/**
* A list of the destinations of the input (PUSH-type).
*/
Destinations?: __listOfInputDestination;
/**
* The generated ID of the input (unique for user account, immutable).
*/
Id?: __string;
/**
* STANDARD - MediaLive expects two sources to be connected to this input. If the channel is also STANDARD, both sources will be ingested. If the channel is SINGLE_PIPELINE, only the first source will be ingested; the second source will always be ignored, even if the first source fails.
SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelClass is also SINGLE_PIPELINE, this value is valid. If the ChannelClass is STANDARD, this value is not valid because the channel requires two sources in the input.
*/
InputClass?: InputClass;
/**
* Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes
during input switch actions. Presently, this functionality only works with MP4_FILE inputs.
*/
InputSourceType?: InputSourceType;
/**
* A list of MediaConnect Flows for this input.
*/
MediaConnectFlows?: __listOfMediaConnectFlow;
/**
* The user-assigned name (This is a mutable value).
*/
Name?: __string;
/**
* The Amazon Resource Name (ARN) of the role this input assumes during and after creation.
*/
RoleArn?: __string;
/**
* A list of IDs for all the Input Security Groups attached to the input.
*/
SecurityGroups?: __listOf__string;
/**
* A list of the sources of the input (PULL-type).
*/
Sources?: __listOfInputSource;
State?: InputState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
Type?: InputType;
}
export interface DescribeInputSecurityGroupRequest {
/**
* The id of the Input Security Group to describe
*/
InputSecurityGroupId: __string;
}
export interface DescribeInputSecurityGroupResponse {
/**
* Unique ARN of Input Security Group
*/
Arn?: __string;
/**
* The Id of the Input Security Group
*/
Id?: __string;
/**
* The list of inputs currently using this Input Security Group.
*/
Inputs?: __listOf__string;
/**
* The current state of the Input Security Group.
*/
State?: InputSecurityGroupState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
/**
* Whitelist rules and their sync status
*/
WhitelistRules?: __listOfInputWhitelistRule;
}
export interface DescribeMultiplexProgramRequest {
/**
* The ID of the multiplex that the program belongs to.
*/
MultiplexId: __string;
/**
* The name of the program.
*/
ProgramName: __string;
}
export interface DescribeMultiplexProgramResponse {
/**
* The MediaLive channel associated with the program.
*/
ChannelId?: __string;
/**
* The settings for this multiplex program.
*/
MultiplexProgramSettings?: MultiplexProgramSettings;
/**
* The packet identifier map for this multiplex program.
*/
PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
/**
* The name of the multiplex program.
*/
ProgramName?: __string;
}
export interface DescribeMultiplexRequest {
/**
* The ID of the multiplex.
*/
MultiplexId: __string;
}
export interface DescribeMultiplexResponse {
/**
* The unique arn of the multiplex.
*/
Arn?: __string;
/**
* A list of availability zones for the multiplex.
*/
AvailabilityZones?: __listOf__string;
/**
* A list of the multiplex output destinations.
*/
Destinations?: __listOfMultiplexOutputDestination;
/**
* The unique id of the multiplex.
*/
Id?: __string;
/**
* Configuration for a multiplex event.
*/
MultiplexSettings?: MultiplexSettings;
/**
* The name of the multiplex.
*/
Name?: __string;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The number of programs in the multiplex.
*/
ProgramCount?: __integer;
/**
* The current state of the multiplex.
*/
State?: MultiplexState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface DescribeOfferingRequest {
/**
* Unique offering ID, e.g. '87654321'
*/
OfferingId: __string;
}
export interface DescribeOfferingResponse {
/**
* Unique offering ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:offering:87654321'
*/
Arn?: __string;
/**
* Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
*/
CurrencyCode?: __string;
/**
* Lease duration, e.g. '12'
*/
Duration?: __integer;
/**
* Units for duration, e.g. 'MONTHS'
*/
DurationUnits?: OfferingDurationUnits;
/**
* One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
*/
FixedPrice?: __double;
/**
* Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
*/
OfferingDescription?: __string;
/**
* Unique offering ID, e.g. '87654321'
*/
OfferingId?: __string;
/**
* Offering type, e.g. 'NO_UPFRONT'
*/
OfferingType?: OfferingType;
/**
* AWS region, e.g. 'us-west-2'
*/
Region?: __string;
/**
* Resource configuration details
*/
ResourceSpecification?: ReservationResourceSpecification;
/**
* Recurring usage charge for each reserved resource, e.g. '157.0'
*/
UsagePrice?: __double;
}
export interface DescribeReservationRequest {
/**
* Unique reservation ID, e.g. '1234567'
*/
ReservationId: __string;
}
export interface DescribeReservationResponse {
/**
* Unique reservation ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:reservation:1234567'
*/
Arn?: __string;
/**
* Number of reserved resources
*/
Count?: __integer;
/**
* Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
*/
CurrencyCode?: __string;
/**
* Lease duration, e.g. '12'
*/
Duration?: __integer;
/**
* Units for duration, e.g. 'MONTHS'
*/
DurationUnits?: OfferingDurationUnits;
/**
* Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
*/
End?: __string;
/**
* One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
*/
FixedPrice?: __double;
/**
* User specified reservation name
*/
Name?: __string;
/**
* Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
*/
OfferingDescription?: __string;
/**
* Unique offering ID, e.g. '87654321'
*/
OfferingId?: __string;
/**
* Offering type, e.g. 'NO_UPFRONT'
*/
OfferingType?: OfferingType;
/**
* AWS region, e.g. 'us-west-2'
*/
Region?: __string;
/**
* Unique reservation ID, e.g. '1234567'
*/
ReservationId?: __string;
/**
* Resource configuration details
*/
ResourceSpecification?: ReservationResourceSpecification;
/**
* Reservation UTC start date and time in ISO-8601 format, e.g. '2018-03-01T00:00:00'
*/
Start?: __string;
/**
* Current state of reservation, e.g. 'ACTIVE'
*/
State?: ReservationState;
/**
* A collection of key-value pairs
*/
Tags?: Tags;
/**
* Recurring usage charge for each reserved resource, e.g. '157.0'
*/
UsagePrice?: __double;
}
export interface DescribeScheduleRequest {
/**
* Id of the channel whose schedule is being updated.
*/
ChannelId: __string;
MaxResults?: MaxResults;
NextToken?: __string;
}
export interface DescribeScheduleResponse {
/**
* The next token; for use in pagination.
*/
NextToken?: __string;
/**
* The list of actions in the schedule.
*/
ScheduleActions?: __listOfScheduleAction;
}
export interface DvbNitSettings {
/**
* The numeric value placed in the Network Information Table (NIT).
*/
NetworkId: __integerMin0Max65536;
/**
* The network name text placed in the networkNameDescriptor inside the Network Information Table. Maximum length is 256 characters.
*/
NetworkName: __stringMin1Max256;
/**
* The number of milliseconds between instances of this table in the output transport stream.
*/
RepInterval?: __integerMin25Max10000;
}
export type DvbSdtOutputSdt = "SDT_FOLLOW"|"SDT_FOLLOW_IF_PRESENT"|"SDT_MANUAL"|"SDT_NONE"|string;
export interface DvbSdtSettings {
/**
* Selects method of inserting SDT information into output stream. The sdtFollow setting copies SDT information from input stream to output stream. The sdtFollowIfPresent setting copies SDT information from input stream to output stream if SDT information is present in the input, otherwise it will fall back on the user-defined values. The sdtManual setting means user will enter the SDT information. The sdtNone setting means output stream will not contain SDT information.
*/
OutputSdt?: DvbSdtOutputSdt;
/**
* The number of milliseconds between instances of this table in the output transport stream.
*/
RepInterval?: __integerMin25Max2000;
/**
* The service name placed in the serviceDescriptor in the Service Description Table. Maximum length is 256 characters.
*/
ServiceName?: __stringMin1Max256;
/**
* The service provider name placed in the serviceDescriptor in the Service Description Table. Maximum length is 256 characters.
*/
ServiceProviderName?: __stringMin1Max256;
}
export type DvbSubDestinationAlignment = "CENTERED"|"LEFT"|"SMART"|string;
export type DvbSubDestinationBackgroundColor = "BLACK"|"NONE"|"WHITE"|string;
export type DvbSubDestinationFontColor = "BLACK"|"BLUE"|"GREEN"|"RED"|"WHITE"|"YELLOW"|string;
export type DvbSubDestinationOutlineColor = "BLACK"|"BLUE"|"GREEN"|"RED"|"WHITE"|"YELLOW"|string;
export interface DvbSubDestinationSettings {
/**
* If no explicit xPosition or yPosition is provided, setting alignment to centered will place the captions at the bottom center of the output. Similarly, setting a left alignment will align captions to the bottom left of the output. If x and y positions are given in conjunction with the alignment parameter, the font will be justified (either left or centered) relative to those coordinates. Selecting "smart" justification will left-justify live subtitles and center-justify pre-recorded subtitles. This option is not valid for source captions that are STL or 608/embedded. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
*/
Alignment?: DvbSubDestinationAlignment;
/**
* Specifies the color of the rectangle behind the captions. All burn-in and DVB-Sub font settings must match.
*/
BackgroundColor?: DvbSubDestinationBackgroundColor;
/**
* Specifies the opacity of the background rectangle. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
*/
BackgroundOpacity?: __integerMin0Max255;
/**
* External font file used for caption burn-in. File extension must be 'ttf' or 'tte'. Although the user can select output fonts for many different types of input captions, embedded, STL and teletext sources use a strict grid system. Using external fonts with these caption sources could cause unexpected display of proportional fonts. All burn-in and DVB-Sub font settings must match.
*/
Font?: InputLocation;
/**
* Specifies the color of the burned-in captions. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
*/
FontColor?: DvbSubDestinationFontColor;
/**
* Specifies the opacity of the burned-in captions. 255 is opaque; 0 is transparent. All burn-in and DVB-Sub font settings must match.
*/
FontOpacity?: __integerMin0Max255;
/**
* Font resolution in DPI (dots per inch); default is 96 dpi. All burn-in and DVB-Sub font settings must match.
*/
FontResolution?: __integerMin96Max600;
/**
* When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.
*/
FontSize?: __string;
/**
* Specifies font outline color. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
*/
OutlineColor?: DvbSubDestinationOutlineColor;
/**
* Specifies font outline size in pixels. This option is not valid for source captions that are either 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
*/
OutlineSize?: __integerMin0Max10;
/**
* Specifies the color of the shadow cast by the captions. All burn-in and DVB-Sub font settings must match.
*/
ShadowColor?: DvbSubDestinationShadowColor;
/**
* Specifies the opacity of the shadow. 255 is opaque; 0 is transparent. Leaving this parameter blank is equivalent to setting it to 0 (transparent). All burn-in and DVB-Sub font settings must match.
*/
ShadowOpacity?: __integerMin0Max255;
/**
* Specifies the horizontal offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels to the left. All burn-in and DVB-Sub font settings must match.
*/
ShadowXOffset?: __integer;
/**
* Specifies the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow offset 2 pixels above the text. All burn-in and DVB-Sub font settings must match.
*/
ShadowYOffset?: __integer;
/**
* Controls whether a fixed grid size will be used to generate the output subtitles bitmap. Only applicable for Teletext inputs and DVB-Sub/Burn-in outputs.
*/
TeletextGridControl?: DvbSubDestinationTeletextGridControl;
/**
* Specifies the horizontal position of the caption relative to the left side of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the left of the output. If no explicit xPosition is provided, the horizontal caption position will be determined by the alignment parameter. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
*/
XPosition?: __integerMin0;
/**
* Specifies the vertical position of the caption relative to the top of the output in pixels. A value of 10 would result in the captions starting 10 pixels from the top of the output. If no explicit yPosition is provided, the caption will be positioned towards the bottom of the output. This option is not valid for source captions that are STL, 608/embedded or teletext. These source settings are already pre-defined by the caption stream. All burn-in and DVB-Sub font settings must match.
*/
YPosition?: __integerMin0;
}
export type DvbSubDestinationShadowColor = "BLACK"|"NONE"|"WHITE"|string;
export type DvbSubDestinationTeletextGridControl = "FIXED"|"SCALED"|string;
export interface DvbSubSourceSettings {
/**
* When using DVB-Sub with Burn-In or SMPTE-TT, use this PID for the source content. Unused for DVB-Sub passthrough. All DVB-Sub content is passed through, regardless of selectors.
*/
Pid?: __integerMin1;
}
export interface DvbTdtSettings {
/**
* The number of milliseconds between instances of this table in the output transport stream.
*/
RepInterval?: __integerMin1000Max30000;
}
export type Eac3AttenuationControl = "ATTENUATE_3_DB"|"NONE"|string;
export type Eac3BitstreamMode = "COMMENTARY"|"COMPLETE_MAIN"|"EMERGENCY"|"HEARING_IMPAIRED"|"VISUALLY_IMPAIRED"|string;
export type Eac3CodingMode = "CODING_MODE_1_0"|"CODING_MODE_2_0"|"CODING_MODE_3_2"|string;
export type Eac3DcFilter = "DISABLED"|"ENABLED"|string;
export type Eac3DrcLine = "FILM_LIGHT"|"FILM_STANDARD"|"MUSIC_LIGHT"|"MUSIC_STANDARD"|"NONE"|"SPEECH"|string;
export type Eac3DrcRf = "FILM_LIGHT"|"FILM_STANDARD"|"MUSIC_LIGHT"|"MUSIC_STANDARD"|"NONE"|"SPEECH"|string;
export type Eac3LfeControl = "LFE"|"NO_LFE"|string;
export type Eac3LfeFilter = "DISABLED"|"ENABLED"|string;
export type Eac3MetadataControl = "FOLLOW_INPUT"|"USE_CONFIGURED"|string;
export type Eac3PassthroughControl = "NO_PASSTHROUGH"|"WHEN_POSSIBLE"|string;
export type Eac3PhaseControl = "NO_SHIFT"|"SHIFT_90_DEGREES"|string;
export interface Eac3Settings {
/**
* When set to attenuate3Db, applies a 3 dB attenuation to the surround channels. Only used for 3/2 coding mode.
*/
AttenuationControl?: Eac3AttenuationControl;
/**
* Average bitrate in bits/second. Valid bitrates depend on the coding mode.
*/
Bitrate?: __double;
/**
* Specifies the bitstream mode (bsmod) for the emitted E-AC-3 stream. See ATSC A/52-2012 (Annex E) for background on these values.
*/
BitstreamMode?: Eac3BitstreamMode;
/**
* Dolby Digital Plus coding mode. Determines number of channels.
*/
CodingMode?: Eac3CodingMode;
/**
* When set to enabled, activates a DC highpass filter for all input channels.
*/
DcFilter?: Eac3DcFilter;
/**
* Sets the dialnorm for the output. If blank and input audio is Dolby Digital Plus, dialnorm will be passed through.
*/
Dialnorm?: __integerMin1Max31;
/**
* Sets the Dolby dynamic range compression profile.
*/
DrcLine?: Eac3DrcLine;
/**
* Sets the profile for heavy Dolby dynamic range compression, ensures that the instantaneous signal peaks do not exceed specified levels.
*/
DrcRf?: Eac3DrcRf;
/**
* When encoding 3/2 audio, setting to lfe enables the LFE channel
*/
LfeControl?: Eac3LfeControl;
/**
* When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding. Only valid with codingMode32 coding mode.
*/
LfeFilter?: Eac3LfeFilter;
/**
* Left only/Right only center mix level. Only used for 3/2 coding mode.
*/
LoRoCenterMixLevel?: __double;
/**
* Left only/Right only surround mix level. Only used for 3/2 coding mode.
*/
LoRoSurroundMixLevel?: __double;
/**
* Left total/Right total center mix level. Only used for 3/2 coding mode.
*/
LtRtCenterMixLevel?: __double;
/**
* Left total/Right total surround mix level. Only used for 3/2 coding mode.
*/
LtRtSurroundMixLevel?: __double;
/**
* When set to followInput, encoder metadata will be sourced from the DD, DD+, or DolbyE decoder that supplied this audio data. If audio was not supplied from one of these streams, then the static metadata settings will be used.
*/
MetadataControl?: Eac3MetadataControl;
/**
* When set to whenPossible, input DD+ audio will be passed through if it is present on the input. This detection is dynamic over the life of the transcode. Inputs that alternate between DD+ and non-DD+ content will have a consistent DD+ output as the system alternates between passthrough and encoding.
*/
PassthroughControl?: Eac3PassthroughControl;
/**
* When set to shift90Degrees, applies a 90-degree phase shift to the surround channels. Only used for 3/2 coding mode.
*/
PhaseControl?: Eac3PhaseControl;
/**
* Stereo downmix preference. Only used for 3/2 coding mode.
*/
StereoDownmix?: Eac3StereoDownmix;
/**
* When encoding 3/2 audio, sets whether an extra center back surround channel is matrix encoded into the left and right surround channels.
*/
SurroundExMode?: Eac3SurroundExMode;
/**
* When encoding 2/0 audio, sets whether Dolby Surround is matrix encoded into the two channels.
*/
SurroundMode?: Eac3SurroundMode;
}
export type Eac3StereoDownmix = "DPL2"|"LO_RO"|"LT_RT"|"NOT_INDICATED"|string;
export type Eac3SurroundExMode = "DISABLED"|"ENABLED"|"NOT_INDICATED"|string;
export type Eac3SurroundMode = "DISABLED"|"ENABLED"|"NOT_INDICATED"|string;
export type EmbeddedConvert608To708 = "DISABLED"|"UPCONVERT"|string;
export interface EmbeddedDestinationSettings {
}
export interface EmbeddedPlusScte20DestinationSettings {
}
export type EmbeddedScte20Detection = "AUTO"|"OFF"|string;
export interface EmbeddedSourceSettings {
/**
* If upconvert, 608 data is both passed through via the "608 compatibility bytes" fields of the 708 wrapper as well as translated into 708. 708 data present in the source content will be discarded.
*/
Convert608To708?: EmbeddedConvert608To708;
/**
* Set to "auto" to handle streams with intermittent and/or non-aligned SCTE-20 and Embedded captions.
*/
Scte20Detection?: EmbeddedScte20Detection;
/**
* Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.
*/
Source608ChannelNumber?: __integerMin1Max4;
/**
* This field is unused and deprecated.
*/
Source608TrackNumber?: __integerMin1Max5;
}
export interface EncoderSettings {
AudioDescriptions: __listOfAudioDescription;
/**
* Settings for ad avail blanking.
*/
AvailBlanking?: AvailBlanking;
/**
* Event-wide configuration settings for ad avail insertion.
*/
AvailConfiguration?: AvailConfiguration;
/**
* Settings for blackout slate.
*/
BlackoutSlate?: BlackoutSlate;
/**
* Settings for caption decriptions
*/
CaptionDescriptions?: __listOfCaptionDescription;
/**
* Configuration settings that apply to the event as a whole.
*/
GlobalConfiguration?: GlobalConfiguration;
/**
* Nielsen configuration settings.
*/
NielsenConfiguration?: NielsenConfiguration;
OutputGroups: __listOfOutputGroup;
/**
* Contains settings used to acquire and adjust timecode information from inputs.
*/
TimecodeConfig: TimecodeConfig;
VideoDescriptions: __listOfVideoDescription;
}
export type FecOutputIncludeFec = "COLUMN"|"COLUMN_AND_ROW"|string;
export interface FecOutputSettings {
/**
* Parameter D from SMPTE 2022-1. The height of the FEC protection matrix. The number of transport stream packets per column error correction packet. Must be between 4 and 20, inclusive.
*/
ColumnDepth?: __integerMin4Max20;
/**
* Enables column only or column and row based FEC
*/
IncludeFec?: FecOutputIncludeFec;
/**
* Parameter L from SMPTE 2022-1. The width of the FEC protection matrix. Must be between 1 and 20, inclusive. If only Column FEC is used, then larger values increase robustness. If Row FEC is used, then this is the number of transport stream packets per row error correction packet, and the value must be between 4 and 20, inclusive, if includeFec is columnAndRow. If includeFec is column, this value must be 1 to 20, inclusive.
*/
RowLength?: __integerMin1Max20;
}
export type FixedAfd = "AFD_0000"|"AFD_0010"|"AFD_0011"|"AFD_0100"|"AFD_1000"|"AFD_1001"|"AFD_1010"|"AFD_1011"|"AFD_1101"|"AFD_1110"|"AFD_1111"|string;
export interface FixedModeScheduleActionStartSettings {
/**
* Start time for the action to start in the channel. (Not the time for the action to be added to the schedule: actions are always added to the schedule immediately.) UTC format: yyyy-mm-ddThh:mm:ss.nnnZ. All the letters are digits (for example, mm might be 01) except for the two constants "T" for time and "Z" for "UTC format".
*/
Time: __string;
}
export interface FollowModeScheduleActionStartSettings {
/**
* Identifies whether this action starts relative to the start or relative to the end of the reference action.
*/
FollowPoint: FollowPoint;
/**
* The action name of another action that this one refers to.
*/
ReferenceActionName: __string;
}
export type FollowPoint = "END"|"START"|string;
export interface FrameCaptureGroupSettings {
/**
* The destination for the frame capture files. Either the URI for an Amazon S3 bucket and object, plus a file name prefix (for example, s3ssl://sportsDelivery/highlights/20180820/curling_) or the URI for a MediaStore container, plus a file name prefix (for example, mediastoressl://sportsDelivery/20180820/curling_). The final file names consist of the prefix from the destination field (for example, "curling_") + name modifier + the counter (5 digits, starting from 00001) + extension (which is always .jpg). For example, curlingLow.00001.jpg
*/
Destination: OutputLocationRef;
}
export interface FrameCaptureOutputSettings {
/**
* Required if the output group contains more than one output. This modifier forms part of the output file name.
*/
NameModifier?: __string;
}
export interface FrameCaptureSettings {
/**
* The frequency at which to capture frames for inclusion in the output. May be specified in either seconds or milliseconds, as specified by captureIntervalUnits.
*/
CaptureInterval: __integerMin1Max3600000;
}
export interface GlobalConfiguration {
/**
* Value to set the initial audio gain for the Live Event.
*/
InitialAudioGain?: __integerMinNegative60Max60;
/**
* Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When "none" is configured the encoder will transcode either black, a solid color, or a user specified slate images per the "Input Loss Behavior" configuration until the next input switch occurs (which is controlled through the Channel Schedule API).
*/
InputEndAction?: GlobalConfigurationInputEndAction;
/**
* Settings for system actions when input is lost.
*/
InputLossBehavior?: InputLossBehavior;
/**
* Indicates how MediaLive pipelines are synchronized.
PIPELINELOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other.
EPOCHLOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.
*/
OutputLockingMode?: GlobalConfigurationOutputLockingMode;
/**
* Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.
*/
OutputTimingSource?: GlobalConfigurationOutputTimingSource;
/**
* Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.
*/
SupportLowFramerateInputs?: GlobalConfigurationLowFramerateInputs;
}
export type GlobalConfigurationInputEndAction = "NONE"|"SWITCH_AND_LOOP_INPUTS"|string;
export type GlobalConfigurationLowFramerateInputs = "DISABLED"|"ENABLED"|string;
export type GlobalConfigurationOutputLockingMode = "EPOCH_LOCKING"|"PIPELINE_LOCKING"|string;
export type GlobalConfigurationOutputTimingSource = "INPUT_CLOCK"|"SYSTEM_CLOCK"|string;
export type H264AdaptiveQuantization = "HIGH"|"HIGHER"|"LOW"|"MAX"|"MEDIUM"|"OFF"|string;
export type H264ColorMetadata = "IGNORE"|"INSERT"|string;
export interface H264ColorSpaceSettings {
ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
Rec601Settings?: Rec601Settings;
Rec709Settings?: Rec709Settings;
}
export type H264EntropyEncoding = "CABAC"|"CAVLC"|string;
export type H264FlickerAq = "DISABLED"|"ENABLED"|string;
export type H264FramerateControl = "INITIALIZE_FROM_SOURCE"|"SPECIFIED"|string;
export type H264GopBReference = "DISABLED"|"ENABLED"|string;
export type H264GopSizeUnits = "FRAMES"|"SECONDS"|string;
export type H264Level = "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"|string;
export type H264LookAheadRateControl = "HIGH"|"LOW"|"MEDIUM"|string;
export type H264ParControl = "INITIALIZE_FROM_SOURCE"|"SPECIFIED"|string;
export type H264Profile = "BASELINE"|"HIGH"|"HIGH_10BIT"|"HIGH_422"|"HIGH_422_10BIT"|"MAIN"|string;
export type H264RateControlMode = "CBR"|"MULTIPLEX"|"QVBR"|"VBR"|string;
export type H264ScanType = "INTERLACED"|"PROGRESSIVE"|string;
export type H264SceneChangeDetect = "DISABLED"|"ENABLED"|string;
export interface H264Settings {
/**
* Adaptive quantization. Allows intra-frame quantizers to vary to improve visual quality.
*/
AdaptiveQuantization?: H264AdaptiveQuantization;
/**
* Indicates that AFD values will be written into the output stream. If afdSignaling is "auto", the system will try to preserve the input AFD value (in cases where multiple AFD values are valid). If set to "fixed", the AFD value will be the value configured in the fixedAfd parameter.
*/
AfdSignaling?: AfdSignaling;
/**
* Average bitrate in bits/second. Required when the rate control mode is VBR or CBR. Not used for QVBR. In an MS Smooth output group, each output must have a unique value when its bitrate is rounded down to the nearest multiple of 1000.
*/
Bitrate?: __integerMin1000;
/**
* Percentage of the buffer that should initially be filled (HRD buffer model).
*/
BufFillPct?: __integerMin0Max100;
/**
* Size of buffer (HRD buffer model) in bits.
*/
BufSize?: __integerMin0;
/**
* Includes colorspace metadata in the output.
*/
ColorMetadata?: H264ColorMetadata;
/**
* Color Space settings
*/
ColorSpaceSettings?: H264ColorSpaceSettings;
/**
* Entropy encoding mode. Use cabac (must be in Main or High profile) or cavlc.
*/
EntropyEncoding?: H264EntropyEncoding;
/**
* Four bit AFD value to write on all frames of video in the output stream. Only valid when afdSignaling is set to 'Fixed'.
*/
FixedAfd?: FixedAfd;
/**
* If set to enabled, adjust quantization within each frame to reduce flicker or 'pop' on I-frames.
*/
FlickerAq?: H264FlickerAq;
/**
* This field indicates how the output video frame rate is specified. If "specified" is selected then the output video frame rate is determined by framerateNumerator and framerateDenominator, else if "initializeFromSource" is selected then the output video frame rate will be set equal to the input video frame rate of the first input.
*/
FramerateControl?: H264FramerateControl;
/**
* Framerate denominator.
*/
FramerateDenominator?: __integerMin1;
/**
* Framerate numerator - framerate is a fraction, e.g. 24000 / 1001 = 23.976 fps.
*/
FramerateNumerator?: __integerMin1;
/**
* Documentation update needed
*/
GopBReference?: H264GopBReference;
/**
* Frequency of closed GOPs. In streaming applications, it is recommended that this be set to 1 so a decoder joining mid-stream will receive an IDR frame as quickly as possible. Setting this value to 0 will break output segmenting.
*/
GopClosedCadence?: __integerMin0;
/**
* Number of B-frames between reference frames.
*/
GopNumBFrames?: __integerMin0Max7;
/**
* GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits.
If gopSizeUnits is frames, gopSize must be an integer and must be greater than or equal to 1.
If gopSizeUnits is seconds, gopSize must be greater than 0, but need not be an integer.
*/
GopSize?: __double;
/**
* Indicates if the gopSize is specified in frames or seconds. If seconds the system will convert the gopSize into a frame count at run time.
*/
GopSizeUnits?: H264GopSizeUnits;
/**
* H.264 Level.
*/
Level?: H264Level;
/**
* Amount of lookahead. A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
*/
LookAheadRateControl?: H264LookAheadRateControl;
/**
* For QVBR: See the tooltip for Quality level
For VBR: Set the maximum bitrate in order to accommodate expected spikes in the complexity of the video.
*/
MaxBitrate?: __integerMin1000;
/**
* Only meaningful if sceneChangeDetect is set to enabled. Defaults to 5 if multiplex rate control is used. Enforces separation between repeated (cadence) I-frames and I-frames inserted by Scene Change Detection. If a scene change I-frame is within I-interval frames of a cadence I-frame, the GOP is shrunk and/or stretched to the scene change I-frame. GOP stretch requires enabling lookahead as well as setting I-interval. The normal cadence resumes for the next GOP. Note: Maximum GOP stretch = GOP size + Min-I-interval - 1
*/
MinIInterval?: __integerMin0Max30;
/**
* Number of reference frames to use. The encoder may use more than requested if using B-frames and/or interlaced encoding.
*/
NumRefFrames?: __integerMin1Max6;
/**
* This field indicates how the output pixel aspect ratio is specified. If "specified" is selected then the output video pixel aspect ratio is determined by parNumerator and parDenominator, else if "initializeFromSource" is selected then the output pixsel aspect ratio will be set equal to the input video pixel aspect ratio of the first input.
*/
ParControl?: H264ParControl;
/**
* Pixel Aspect Ratio denominator.
*/
ParDenominator?: __integerMin1;
/**
* Pixel Aspect Ratio numerator.
*/
ParNumerator?: __integer;
/**
* H.264 Profile.
*/
Profile?: H264Profile;
/**
* Controls the target quality for the video encode. Applies only when the rate control mode is QVBR. Set values for the QVBR quality level field and Max bitrate field that suit your most important viewing devices. Recommended values are:
- Primary screen: Quality level: 8 to 10. Max bitrate: 4M
- PC or tablet: Quality level: 7. Max bitrate: 1.5M to 3M
- Smartphone: Quality level: 6. Max bitrate: 1M to 1.5M
*/
QvbrQualityLevel?: __integerMin1Max10;
/**
* Rate control mode.
QVBR: Quality will match the specified quality level except when it is constrained by the
maximum bitrate. Recommended if you or your viewers pay for bandwidth.
VBR: Quality and bitrate vary, depending on the video complexity. Recommended instead of QVBR
if you want to maintain a specific average bitrate over the duration of the channel.
CBR: Quality varies, depending on the video complexity. Recommended only if you distribute
your assets to devices that cannot handle variable bitrates.
*/
RateControlMode?: H264RateControlMode;
/**
* Sets the scan type of the output to progressive or top-field-first interlaced.
*/
ScanType?: H264ScanType;
/**
* Scene change detection.
- On: inserts I-frames when scene change is detected.
- Off: does not force an I-frame when scene change is detected.
*/
SceneChangeDetect?: H264SceneChangeDetect;
/**
* Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures.
This field is optional; when no value is specified the encoder will choose the number of slices based on encode resolution.
*/
Slices?: __integerMin1Max32;
/**
* Softness. Selects quantizer matrix, larger values reduce high-frequency content in the encoded image.
*/
Softness?: __integerMin0Max128;
/**
* If set to enabled, adjust quantization within each frame based on spatial variation of content complexity.
*/
SpatialAq?: H264SpatialAq;
/**
* If set to fixed, use gopNumBFrames B-frames per sub-GOP. If set to dynamic, optimize the number of B-frames used for each sub-GOP to improve visual quality.
*/
SubgopLength?: H264SubGopLength;
/**
* Produces a bitstream compliant with SMPTE RP-2027.
*/
Syntax?: H264Syntax;
/**
* If set to enabled, adjust quantization within each frame based on temporal variation of content complexity.
*/
TemporalAq?: H264TemporalAq;
/**
* Determines how timecodes should be inserted into the video elementary stream.
- 'disabled': Do not include timecodes
- 'picTimingSei': Pass through picture timing SEI messages from the source specified in Timecode Config
*/
TimecodeInsertion?: H264TimecodeInsertionBehavior;
}
export type H264SpatialAq = "DISABLED"|"ENABLED"|string;
export type H264SubGopLength = "DYNAMIC"|"FIXED"|string;
export type H264Syntax = "DEFAULT"|"RP2027"|string;
export type H264TemporalAq = "DISABLED"|"ENABLED"|string;
export type H264TimecodeInsertionBehavior = "DISABLED"|"PIC_TIMING_SEI"|string;
export type H265AdaptiveQuantization = "HIGH"|"HIGHER"|"LOW"|"MAX"|"MEDIUM"|"OFF"|string;
export type H265AlternativeTransferFunction = "INSERT"|"OMIT"|string;
export type H265ColorMetadata = "IGNORE"|"INSERT"|string;
export interface H265ColorSpaceSettings {
ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
Hdr10Settings?: Hdr10Settings;
Rec601Settings?: Rec601Settings;
Rec709Settings?: Rec709Settings;
}
export type H265FlickerAq = "DISABLED"|"ENABLED"|string;
export type H265GopSizeUnits = "FRAMES"|"SECONDS"|string;
export type H265Level = "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"|string;
export type H265LookAheadRateControl = "HIGH"|"LOW"|"MEDIUM"|string;
export type H265Profile = "MAIN"|"MAIN_10BIT"|string;
export type H265RateControlMode = "CBR"|"MULTIPLEX"|"QVBR"|string;
export type H265ScanType = "PROGRESSIVE"|string;
export type H265SceneChangeDetect = "DISABLED"|"ENABLED"|string;
export interface H265Settings {
/**
* Adaptive quantization. Allows intra-frame quantizers to vary to improve visual quality.
*/
AdaptiveQuantization?: H265AdaptiveQuantization;
/**
* Indicates that AFD values will be written into the output stream. If afdSignaling is "auto", the system will try to preserve the input AFD value (in cases where multiple AFD values are valid). If set to "fixed", the AFD value will be the value configured in the fixedAfd parameter.
*/
AfdSignaling?: AfdSignaling;
/**
* Whether or not EML should insert an Alternative Transfer Function SEI message to support backwards compatibility with non-HDR decoders and displays.
*/
AlternativeTransferFunction?: H265AlternativeTransferFunction;
/**
* Average bitrate in bits/second. Required when the rate control mode is VBR or CBR. Not used for QVBR. In an MS Smooth output group, each output must have a unique value when its bitrate is rounded down to the nearest multiple of 1000.
*/
Bitrate?: __integerMin100000Max40000000;
/**
* Size of buffer (HRD buffer model) in bits.
*/
BufSize?: __integerMin100000Max80000000;
/**
* Includes colorspace metadata in the output.
*/
ColorMetadata?: H265ColorMetadata;
/**
* Color Space settings
*/
ColorSpaceSettings?: H265ColorSpaceSettings;
/**
* Four bit AFD value to write on all frames of video in the output stream. Only valid when afdSignaling is set to 'Fixed'.
*/
FixedAfd?: FixedAfd;
/**
* If set to enabled, adjust quantization within each frame to reduce flicker or 'pop' on I-frames.
*/
FlickerAq?: H265FlickerAq;
/**
* Framerate denominator.
*/
FramerateDenominator: __integerMin1Max3003;
/**
* Framerate numerator - framerate is a fraction, e.g. 24000 / 1001 = 23.976 fps.
*/
FramerateNumerator: __integerMin1;
/**
* Frequency of closed GOPs. In streaming applications, it is recommended that this be set to 1 so a decoder joining mid-stream will receive an IDR frame as quickly as possible. Setting this value to 0 will break output segmenting.
*/
GopClosedCadence?: __integerMin0;
/**
* GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits.
If gopSizeUnits is frames, gopSize must be an integer and must be greater than or equal to 1.
If gopSizeUnits is seconds, gopSize must be greater than 0, but need not be an integer.
*/
GopSize?: __double;
/**
* Indicates if the gopSize is specified in frames or seconds. If seconds the system will convert the gopSize into a frame count at run time.
*/
GopSizeUnits?: H265GopSizeUnits;
/**
* H.265 Level.
*/
Level?: H265Level;
/**
* Amount of lookahead. A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
*/
LookAheadRateControl?: H265LookAheadRateControl;
/**
* For QVBR: See the tooltip for Quality level
*/
MaxBitrate?: __integerMin100000Max40000000;
/**
* Only meaningful if sceneChangeDetect is set to enabled. Defaults to 5 if multiplex rate control is used. Enforces separation between repeated (cadence) I-frames and I-frames inserted by Scene Change Detection. If a scene change I-frame is within I-interval frames of a cadence I-frame, the GOP is shrunk and/or stretched to the scene change I-frame. GOP stretch requires enabling lookahead as well as setting I-interval. The normal cadence resumes for the next GOP. Note: Maximum GOP stretch = GOP size + Min-I-interval - 1
*/
MinIInterval?: __integerMin0Max30;
/**
* Pixel Aspect Ratio denominator.
*/
ParDenominator?: __integerMin1;
/**
* Pixel Aspect Ratio numerator.
*/
ParNumerator?: __integerMin1;
/**
* H.265 Profile.
*/
Profile?: H265Profile;
/**
* Controls the target quality for the video encode. Applies only when the rate control mode is QVBR. Set values for the QVBR quality level field and Max bitrate field that suit your most important viewing devices. Recommended values are:
- Primary screen: Quality level: 8 to 10. Max bitrate: 4M
- PC or tablet: Quality level: 7. Max bitrate: 1.5M to 3M
- Smartphone: Quality level: 6. Max bitrate: 1M to 1.5M
*/
QvbrQualityLevel?: __integerMin1Max10;
/**
* Rate control mode.
QVBR: Quality will match the specified quality level except when it is constrained by the
maximum bitrate. Recommended if you or your viewers pay for bandwidth.
CBR: Quality varies, depending on the video complexity. Recommended only if you distribute
your assets to devices that cannot handle variable bitrates.
*/
RateControlMode?: H265RateControlMode;
/**
* Sets the scan type of the output to progressive or top-field-first interlaced.
*/
ScanType?: H265ScanType;
/**
* Scene change detection.
*/
SceneChangeDetect?: H265SceneChangeDetect;
/**
* Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures.
This field is optional; when no value is specified the encoder will choose the number of slices based on encode resolution.
*/
Slices?: __integerMin1Max16;
/**
* H.265 Tier.
*/
Tier?: H265Tier;
/**
* Determines how timecodes should be inserted into the video elementary stream.
- 'disabled': Do not include timecodes
- 'picTimingSei': Pass through picture timing SEI messages from the source specified in Timecode Config
*/
TimecodeInsertion?: H265TimecodeInsertionBehavior;
}
export type H265Tier = "HIGH"|"MAIN"|string;
export type H265TimecodeInsertionBehavior = "DISABLED"|"PIC_TIMING_SEI"|string;
export interface Hdr10Settings {
/**
* Maximum Content Light Level
An integer metadata value defining the maximum light level, in nits,
of any single pixel within an encoded HDR video stream or file.
*/
MaxCll?: __integerMin0Max32768;
/**
* Maximum Frame Average Light Level
An integer metadata value defining the maximum average light level, in nits,
for any single frame within an encoded HDR video stream or file.
*/
MaxFall?: __integerMin0Max32768;
}
export type HlsAdMarkers = "ADOBE"|"ELEMENTAL"|"ELEMENTAL_SCTE35"|string;
export type HlsAkamaiHttpTransferMode = "CHUNKED"|"NON_CHUNKED"|string;
export interface HlsAkamaiSettings {
/**
* Number of seconds to wait before retrying connection to the CDN if the connection is lost.
*/
ConnectionRetryInterval?: __integerMin0;
/**
* Size in seconds of file cache for streaming outputs.
*/
FilecacheDuration?: __integerMin0Max600;
/**
* Specify whether or not to use chunked transfer encoding to Akamai. User should contact Akamai to enable this feature.
*/
HttpTransferMode?: HlsAkamaiHttpTransferMode;
/**
* Number of retry attempts that will be made before the Live Event is put into an error state.
*/
NumRetries?: __integerMin0;
/**
* If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
*/
RestartDelay?: __integerMin0Max15;
/**
* Salt for authenticated Akamai.
*/
Salt?: __string;
/**
* Token parameter for authenticated akamai. If not specified, _gda_ is used.
*/
Token?: __string;
}
export interface HlsBasicPutSettings {
/**
* Number of seconds to wait before retrying connection to the CDN if the connection is lost.
*/
ConnectionRetryInterval?: __integerMin0;
/**
* Size in seconds of file cache for streaming outputs.
*/
FilecacheDuration?: __integerMin0Max600;
/**
* Number of retry attempts that will be made before the Live Event is put into an error state.
*/
NumRetries?: __integerMin0;
/**
* If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
*/
RestartDelay?: __integerMin0Max15;
}
export type HlsCaptionLanguageSetting = "INSERT"|"NONE"|"OMIT"|string;
export interface HlsCdnSettings {
HlsAkamaiSettings?: HlsAkamaiSettings;
HlsBasicPutSettings?: HlsBasicPutSettings;
HlsMediaStoreSettings?: HlsMediaStoreSettings;
HlsWebdavSettings?: HlsWebdavSettings;
}
export type HlsClientCache = "DISABLED"|"ENABLED"|string;
export type HlsCodecSpecification = "RFC_4281"|"RFC_6381"|string;
export type HlsDirectoryStructure = "SINGLE_DIRECTORY"|"SUBDIRECTORY_PER_STREAM"|string;
export type HlsEncryptionType = "AES128"|"SAMPLE_AES"|string;
export interface HlsGroupSettings {
/**
* Choose one or more ad marker types to pass SCTE35 signals through to this group of Apple HLS outputs.
*/
AdMarkers?: __listOfHlsAdMarkers;
/**
* A partial URI prefix that will be prepended to each output in the media .m3u8 file. Can be used if base manifest is delivered from a different URL than the main .m3u8 file.
*/
BaseUrlContent?: __string;
/**
* A partial URI prefix that will be prepended to each output in the media .m3u8 file. Can be used if base manifest is delivered from a different URL than the main .m3u8 file.
*/
BaseUrlManifest?: __string;
/**
* Mapping of up to 4 caption channels to caption languages. Is only meaningful if captionLanguageSetting is set to "insert".
*/
CaptionLanguageMappings?: __listOfCaptionLanguageMapping;
/**
* Applies only to 608 Embedded output captions.
insert: Include CLOSED-CAPTIONS lines in the manifest. Specify at least one language in the CC1 Language Code field. One CLOSED-CAPTION line is added for each Language Code you specify. Make sure to specify the languages in the order in which they appear in the original source (if the source is embedded format) or the order of the caption selectors (if the source is other than embedded). Otherwise, languages in the manifest will not match up properly with the output captions.
none: Include CLOSED-CAPTIONS=NONE line in the manifest.
omit: Omit any CLOSED-CAPTIONS line from the manifest.
*/
CaptionLanguageSetting?: HlsCaptionLanguageSetting;
/**
* When set to "disabled", sets the #EXT-X-ALLOW-CACHE:no tag in the manifest, which prevents clients from saving media segments for later replay.
*/
ClientCache?: HlsClientCache;
/**
* Specification to use (RFC-6381 or the default RFC-4281) during m3u8 playlist generation.
*/
CodecSpecification?: HlsCodecSpecification;
/**
* For use with encryptionType. This is a 128-bit, 16-byte hex value represented by a 32-character text string. If ivSource is set to "explicit" then this parameter is required and is used as the IV for encryption.
*/
ConstantIv?: __stringMin32Max32;
/**
* A directory or HTTP destination for the HLS segments, manifest files, and encryption keys (if enabled).
*/
Destination: OutputLocationRef;
/**
* Place segments in subdirectories.
*/
DirectoryStructure?: HlsDirectoryStructure;
/**
* Encrypts the segments with the given encryption scheme. Exclude this parameter if no encryption is desired.
*/
EncryptionType?: HlsEncryptionType;
/**
* Parameters that control interactions with the CDN.
*/
HlsCdnSettings?: HlsCdnSettings;
/**
* DISABLED: Do not create an I-frame-only manifest, but do create the master and media manifests (according to the Output Selection field).
STANDARD: Create an I-frame-only manifest for each output that contains video, as well as the other manifests (according to the Output Selection field). The I-frame manifest contains a #EXT-X-I-FRAMES-ONLY tag to indicate it is I-frame only, and one or more #EXT-X-BYTERANGE entries identifying the I-frame position. For example, #EXT-X-BYTERANGE:160364@1461888"
*/
IFrameOnlyPlaylists?: IFrameOnlyPlaylistType;
/**
* Applies only if Mode field is LIVE. Specifies the maximum number of segments in the media manifest file. After this maximum, older segments are removed from the media manifest. This number must be less than or equal to the Keep Segments field.
*/
IndexNSegments?: __integerMin3;
/**
* Parameter that control output group behavior on input loss.
*/
InputLossAction?: InputLossActionForHlsOut;
/**
* For use with encryptionType. The IV (Initialization Vector) is a 128-bit number used in conjunction with the key for encrypting blocks. If set to "include", IV is listed in the manifest, otherwise the IV is not in the manifest.
*/
IvInManifest?: HlsIvInManifest;
/**
* For use with encryptionType. The IV (Initialization Vector) is a 128-bit number used in conjunction with the key for encrypting blocks. If this setting is "followsSegmentNumber", it will cause the IV to change every segment (to match the segment number). If this is set to "explicit", you must enter a constantIv value.
*/
IvSource?: HlsIvSource;
/**
* Applies only if Mode field is LIVE. Specifies the number of media segments (.ts files) to retain in the destination directory.
*/
KeepSegments?: __integerMin1;
/**
* The value specifies how the key is represented in the resource identified by the URI. If parameter is absent, an implicit value of "identity" is used. A reverse DNS string can also be given.
*/
KeyFormat?: __string;
/**
* Either a single positive integer version value or a slash delimited list of version values (1/2/3).
*/
KeyFormatVersions?: __string;
/**
* The key provider settings.
*/
KeyProviderSettings?: KeyProviderSettings;
/**
* When set to gzip, compresses HLS playlist.
*/
ManifestCompression?: HlsManifestCompression;
/**
* Indicates whether the output manifest should use floating point or integer values for segment duration.
*/
ManifestDurationFormat?: HlsManifestDurationFormat;
/**
* When set, minimumSegmentLength is enforced by looking ahead and back within the specified range for a nearby avail and extending the segment size if needed.
*/
MinSegmentLength?: __integerMin0;
/**
* If "vod", all segments are indexed and kept permanently in the destination and manifest. If "live", only the number segments specified in keepSegments and indexNSegments are kept; newer segments replace older segments, which may prevent players from rewinding all the way to the beginning of the event.
VOD mode uses HLS EXT-X-PLAYLIST-TYPE of EVENT while the channel is running, converting it to a "VOD" type manifest on completion of the stream.
*/
Mode?: HlsMode;
/**
* MANIFESTSANDSEGMENTS: Generates manifests (master manifest, if applicable, and media manifests) for this output group.
SEGMENTSONLY: Does not generate any manifests for this output group.
*/
OutputSelection?: HlsOutputSelection;
/**
* Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files. The value is calculated as follows: either the program date and time are initialized using the input timecode source, or the time is initialized using the input timecode source and the date is initialized using the timestampOffset.
*/
ProgramDateTime?: HlsProgramDateTime;
/**
* Period of insertion of EXT-X-PROGRAM-DATE-TIME entry, in seconds.
*/
ProgramDateTimePeriod?: __integerMin0Max3600;
/**
* ENABLED: The master manifest (.m3u8 file) for each pipeline includes information about both pipelines: first its own media files, then the media files of the other pipeline. This feature allows playout device that support stale manifest detection to switch from one manifest to the other, when the current manifest seems to be stale. There are still two destinations and two master manifests, but both master manifests reference the media files from both pipelines.
DISABLED: The master manifest (.m3u8 file) for each pipeline includes information about its own pipeline only.
For an HLS output group with MediaPackage as the destination, the DISABLED behavior is always followed. MediaPackage regenerates the manifests it serves to players so a redundant manifest from MediaLive is irrelevant.
*/
RedundantManifest?: HlsRedundantManifest;
/**
* Length of MPEG-2 Transport Stream segments to create (in seconds). Note that segments will end on the next keyframe after this number of seconds, so actual segment length may be longer.
*/
SegmentLength?: __integerMin1;
/**
* useInputSegmentation has been deprecated. The configured segment size is always used.
*/
SegmentationMode?: HlsSegmentationMode;
/**
* Number of segments to write to a subdirectory before starting a new one. directoryStructure must be subdirectoryPerStream for this setting to have an effect.
*/
SegmentsPerSubdirectory?: __integerMin1;
/**
* Include or exclude RESOLUTION attribute for video in EXT-X-STREAM-INF tag of variant manifest.
*/
StreamInfResolution?: HlsStreamInfResolution;
/**
* Indicates ID3 frame that has the timecode.
*/
TimedMetadataId3Frame?: HlsTimedMetadataId3Frame;
/**
* Timed Metadata interval in seconds.
*/
TimedMetadataId3Period?: __integerMin0;
/**
* Provides an extra millisecond delta offset to fine tune the timestamps.
*/
TimestampDeltaMilliseconds?: __integerMin0;
/**
* SEGMENTEDFILES: Emit the program as segments - multiple .ts media files.
SINGLEFILE: Applies only if Mode field is VOD. Emit the program as a single .ts media file. The media manifest includes #EXT-X-BYTERANGE tags to index segments for playback. A typical use for this value is when sending the output to AWS Elemental MediaConvert, which can accept only a single media file. Playback while the channel is running is not guaranteed due to HTTP server caching.
*/
TsFileMode?: HlsTsFileMode;
}
export interface HlsInputSettings {
/**
* When specified the HLS stream with the m3u8 BANDWIDTH that most closely matches this value will be chosen, otherwise the highest bandwidth stream in the m3u8 will be chosen. The bitrate is specified in bits per second, as in an HLS manifest.
*/
Bandwidth?: __integerMin0;
/**
* When specified, reading of the HLS input will begin this many buffer segments from the end (most recently written segment). When not specified, the HLS input will begin with the first segment specified in the m3u8.
*/
BufferSegments?: __integerMin0;
/**
* The number of consecutive times that attempts to read a manifest or segment must fail before the input is considered unavailable.
*/
Retries?: __integerMin0;
/**
* The number of seconds between retries when an attempt to read a manifest or segment fails.
*/
RetryInterval?: __integerMin0;
}
export type HlsIvInManifest = "EXCLUDE"|"INCLUDE"|string;
export type HlsIvSource = "EXPLICIT"|"FOLLOWS_SEGMENT_NUMBER"|string;
export type HlsManifestCompression = "GZIP"|"NONE"|string;
export type HlsManifestDurationFormat = "FLOATING_POINT"|"INTEGER"|string;
export interface HlsMediaStoreSettings {
/**
* Number of seconds to wait before retrying connection to the CDN if the connection is lost.
*/
ConnectionRetryInterval?: __integerMin0;
/**
* Size in seconds of file cache for streaming outputs.
*/
FilecacheDuration?: __integerMin0Max600;
/**
* When set to temporal, output files are stored in non-persistent memory for faster reading and writing.
*/
MediaStoreStorageClass?: HlsMediaStoreStorageClass;
/**
* Number of retry attempts that will be made before the Live Event is put into an error state.
*/
NumRetries?: __integerMin0;
/**
* If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
*/
RestartDelay?: __integerMin0Max15;
}
export type HlsMediaStoreStorageClass = "TEMPORAL"|string;
export type HlsMode = "LIVE"|"VOD"|string;
export type HlsOutputSelection = "MANIFESTS_AND_SEGMENTS"|"SEGMENTS_ONLY"|string;
export interface HlsOutputSettings {
/**
* Settings regarding the underlying stream. These settings are different for audio-only outputs.
*/
HlsSettings: HlsSettings;
/**
* String concatenated to the end of the destination filename. Accepts \"Format Identifiers\":#formatIdentifierParameters.
*/
NameModifier?: __stringMin1;
/**
* String concatenated to end of segment filenames.
*/
SegmentModifier?: __string;
}
export type HlsProgramDateTime = "EXCLUDE"|"INCLUDE"|string;
export type HlsRedundantManifest = "DISABLED"|"ENABLED"|string;
export type HlsSegmentationMode = "USE_INPUT_SEGMENTATION"|"USE_SEGMENT_DURATION"|string;
export interface HlsSettings {
AudioOnlyHlsSettings?: AudioOnlyHlsSettings;
StandardHlsSettings?: StandardHlsSettings;
}
export type HlsStreamInfResolution = "EXCLUDE"|"INCLUDE"|string;
export type HlsTimedMetadataId3Frame = "NONE"|"PRIV"|"TDRL"|string;
export interface HlsTimedMetadataScheduleActionSettings {
/**
* Base64 string formatted according to the ID3 specification: http://id3.org/id3v2.4.0-structure
*/
Id3: __string;
}
export type HlsTsFileMode = "SEGMENTED_FILES"|"SINGLE_FILE"|string;
export type HlsWebdavHttpTransferMode = "CHUNKED"|"NON_CHUNKED"|string;
export interface HlsWebdavSettings {
/**
* Number of seconds to wait before retrying connection to the CDN if the connection is lost.
*/
ConnectionRetryInterval?: __integerMin0;
/**
* Size in seconds of file cache for streaming outputs.
*/
FilecacheDuration?: __integerMin0Max600;
/**
* Specify whether or not to use chunked transfer encoding to WebDAV.
*/
HttpTransferMode?: HlsWebdavHttpTransferMode;
/**
* Number of retry attempts that will be made before the Live Event is put into an error state.
*/
NumRetries?: __integerMin0;
/**
* If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
*/
RestartDelay?: __integerMin0Max15;
}
export type IFrameOnlyPlaylistType = "DISABLED"|"STANDARD"|string;
export interface ImmediateModeScheduleActionStartSettings {
}
export interface Input {
/**
* The Unique ARN of the input (generated, immutable).
*/
Arn?: __string;
/**
* A list of channel IDs that that input is attached to (currently an input can only be attached to one channel).
*/
AttachedChannels?: __listOf__string;
/**
* A list of the destinations of the input (PUSH-type).
*/
Destinations?: __listOfInputDestination;
/**
* The generated ID of the input (unique for user account, immutable).
*/
Id?: __string;
/**
* STANDARD - MediaLive expects two sources to be connected to this input. If the channel is also STANDARD, both sources will be ingested. If the channel is SINGLE_PIPELINE, only the first source will be ingested; the second source will always be ignored, even if the first source fails.
SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelClass is also SINGLE_PIPELINE, this value is valid. If the ChannelClass is STANDARD, this value is not valid because the channel requires two sources in the input.
*/
InputClass?: InputClass;
/**
* Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes
during input switch actions. Presently, this functionality only works with MP4_FILE inputs.
*/
InputSourceType?: InputSourceType;
/**
* A list of MediaConnect Flows for this input.
*/
MediaConnectFlows?: __listOfMediaConnectFlow;
/**
* The user-assigned name (This is a mutable value).
*/
Name?: __string;
/**
* The Amazon Resource Name (ARN) of the role this input assumes during and after creation.
*/
RoleArn?: __string;
/**
* A list of IDs for all the Input Security Groups attached to the input.
*/
SecurityGroups?: __listOf__string;
/**
* A list of the sources of the input (PULL-type).
*/
Sources?: __listOfInputSource;
State?: InputState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
Type?: InputType;
}
export interface InputAttachment {
/**
* User-specified name for the attachment. This is required if the user wants to use this input in an input switch action.
*/
InputAttachmentName?: __string;
/**
* The ID of the input
*/
InputId?: __string;
/**
* Settings of an input (caption selector, etc.)
*/
InputSettings?: InputSettings;
}
export interface InputChannelLevel {
/**
* Remixing value. Units are in dB and acceptable values are within the range from -60 (mute) and 6 dB.
*/
Gain: __integerMinNegative60Max6;
/**
* The index of the input channel used as a source.
*/
InputChannel: __integerMin0Max15;
}
export type InputClass = "STANDARD"|"SINGLE_PIPELINE"|string;
export interface InputClippingSettings {
/**
* The source of the timecodes in the source being clipped.
*/
InputTimecodeSource: InputTimecodeSource;
/**
* Settings to identify the start of the clip.
*/
StartTimecode?: StartTimecode;
/**
* Settings to identify the end of the clip.
*/
StopTimecode?: StopTimecode;
}
export type InputCodec = "MPEG2"|"AVC"|"HEVC"|string;
export type InputDeblockFilter = "DISABLED"|"ENABLED"|string;
export type InputDenoiseFilter = "DISABLED"|"ENABLED"|string;
export interface InputDestination {
/**
* The system-generated static IP address of endpoint.
It remains fixed for the lifetime of the input.
*/
Ip?: __string;
/**
* The port number for the input.
*/
Port?: __string;
/**
* This represents the endpoint that the customer stream will be
pushed to.
*/
Url?: __string;
Vpc?: InputDestinationVpc;
}
export interface InputDestinationRequest {
/**
* A unique name for the location the RTMP stream is being pushed
to.
*/
StreamName?: __string;
}
export interface InputDestinationVpc {
/**
* The availability zone of the Input destination.
*/
AvailabilityZone?: __string;
/**
* The network interface ID of the Input destination in the VPC.
*/
NetworkInterfaceId?: __string;
}
export type InputFilter = "AUTO"|"DISABLED"|"FORCED"|string;
export interface InputLocation {
/**
* key used to extract the password from EC2 Parameter store
*/
PasswordParam?: __string;
/**
* Uniform Resource Identifier - This should be a path to a file accessible to the Live system (eg. a http:// URI) depending on the output type. For example, a RTMP destination should have a uri simliar to: "rtmp://fmsserver/live".
*/
Uri: __string;
/**
* Documentation update needed
*/
Username?: __string;
}
export type InputLossActionForHlsOut = "EMIT_OUTPUT"|"PAUSE_OUTPUT"|string;
export type InputLossActionForMsSmoothOut = "EMIT_OUTPUT"|"PAUSE_OUTPUT"|string;
export type InputLossActionForRtmpOut = "EMIT_OUTPUT"|"PAUSE_OUTPUT"|string;
export type InputLossActionForUdpOut = "DROP_PROGRAM"|"DROP_TS"|"EMIT_PROGRAM"|string;
export interface InputLossBehavior {
/**
* Documentation update needed
*/
BlackFrameMsec?: __integerMin0Max1000000;
/**
* When input loss image type is "color" this field specifies the color to use. Value: 6 hex characters representing the values of RGB.
*/
InputLossImageColor?: __stringMin6Max6;
/**
* When input loss image type is "slate" these fields specify the parameters for accessing the slate.
*/
InputLossImageSlate?: InputLocation;
/**
* Indicates whether to substitute a solid color or a slate into the output after input loss exceeds blackFrameMsec.
*/
InputLossImageType?: InputLossImageType;
/**
* Documentation update needed
*/
RepeatFrameMsec?: __integerMin0Max1000000;
}
export type InputLossImageType = "COLOR"|"SLATE"|string;
export type InputMaximumBitrate = "MAX_10_MBPS"|"MAX_20_MBPS"|"MAX_50_MBPS"|string;
export type InputResolution = "SD"|"HD"|"UHD"|string;
export interface InputSecurityGroup {
/**
* Unique ARN of Input Security Group
*/
Arn?: __string;
/**
* The Id of the Input Security Group
*/
Id?: __string;
/**
* The list of inputs currently using this Input Security Group.
*/
Inputs?: __listOf__string;
/**
* The current state of the Input Security Group.
*/
State?: InputSecurityGroupState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
/**
* Whitelist rules and their sync status
*/
WhitelistRules?: __listOfInputWhitelistRule;
}
export type InputSecurityGroupState = "IDLE"|"IN_USE"|"UPDATING"|"DELETED"|string;
export interface InputSettings {
/**
* Used to select the audio stream to decode for inputs that have multiple available.
*/
AudioSelectors?: __listOfAudioSelector;
/**
* Used to select the caption input to use for inputs that have multiple available.
*/
CaptionSelectors?: __listOfCaptionSelector;
/**
* Enable or disable the deblock filter when filtering.
*/
DeblockFilter?: InputDeblockFilter;
/**
* Enable or disable the denoise filter when filtering.
*/
DenoiseFilter?: InputDenoiseFilter;
/**
* Adjusts the magnitude of filtering from 1 (minimal) to 5 (strongest).
*/
FilterStrength?: __integerMin1Max5;
/**
* Turns on the filter for this input. MPEG-2 inputs have the deblocking filter enabled by default.
1) auto - filtering will be applied depending on input type/quality
2) disabled - no filtering will be applied to the input
3) forced - filtering will be applied regardless of input type
*/
InputFilter?: InputFilter;
/**
* Input settings.
*/
NetworkInputSettings?: NetworkInputSettings;
/**
* Loop input if it is a file. This allows a file input to be streamed indefinitely.
*/
SourceEndBehavior?: InputSourceEndBehavior;
/**
* Informs which video elementary stream to decode for input types that have multiple available.
*/
VideoSelector?: VideoSelector;
}
export interface InputSource {
/**
* The key used to extract the password from EC2 Parameter store.
*/
PasswordParam?: __string;
/**
* This represents the customer's source URL where stream is
pulled from.
*/
Url?: __string;
/**
* The username for the input source.
*/
Username?: __string;
}
export type InputSourceEndBehavior = "CONTINUE"|"LOOP"|string;
export interface InputSourceRequest {
/**
* The key used to extract the password from EC2 Parameter store.
*/
PasswordParam?: __string;
/**
* This represents the customer's source URL where stream is
pulled from.
*/
Url?: __string;
/**
* The username for the input source.
*/
Username?: __string;
}
export type InputSourceType = "STATIC"|"DYNAMIC"|string;
export interface InputSpecification {
/**
* Input codec
*/
Codec?: InputCodec;
/**
* Maximum input bitrate, categorized coarsely
*/
MaximumBitrate?: InputMaximumBitrate;
/**
* Input resolution, categorized coarsely
*/
Resolution?: InputResolution;
}
export type InputState = "CREATING"|"DETACHED"|"ATTACHED"|"DELETING"|"DELETED"|string;
export interface InputSwitchScheduleActionSettings {
/**
* The name of the input attachment (not the name of the input!) to switch to. The name is specified in the channel configuration.
*/
InputAttachmentNameReference: __string;
/**
* Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.
*/
InputClippingSettings?: InputClippingSettings;
/**
* The value for the variable portion of the URL for the dynamic input, for this instance of the input. Each time you use the same dynamic input in an input switch action, you can provide a different value, in order to connect the input to a different content source.
*/
UrlPath?: __listOf__string;
}
export type InputTimecodeSource = "ZEROBASED"|"EMBEDDED"|string;
export type InputType = "UDP_PUSH"|"RTP_PUSH"|"RTMP_PUSH"|"RTMP_PULL"|"URL_PULL"|"MP4_FILE"|"MEDIACONNECT"|string;
export interface InputVpcRequest {
/**
* A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces.
Requires subnetIds. If none are specified then the VPC default security group will be used.
*/
SecurityGroupIds?: __listOf__string;
/**
* A list of 2 VPC subnet IDs from the same VPC.
Subnet IDs must be mapped to two unique availability zones (AZ).
*/
SubnetIds: __listOf__string;
}
export interface InputWhitelistRule {
/**
* The IPv4 CIDR that's whitelisted.
*/
Cidr?: __string;
}
export interface InputWhitelistRuleCidr {
/**
* The IPv4 CIDR to whitelist.
*/
Cidr?: __string;
}
export interface KeyProviderSettings {
StaticKeySettings?: StaticKeySettings;
}
export type LastFrameClippingBehavior = "EXCLUDE_LAST_FRAME"|"INCLUDE_LAST_FRAME"|string;
export interface ListChannelsRequest {
MaxResults?: MaxResults;
NextToken?: __string;
}
export interface ListChannelsResponse {
Channels?: __listOfChannelSummary;
NextToken?: __string;
}
export interface ListInputSecurityGroupsRequest {
MaxResults?: MaxResults;
NextToken?: __string;
}
export interface ListInputSecurityGroupsResponse {
/**
* List of input security groups
*/
InputSecurityGroups?: __listOfInputSecurityGroup;
NextToken?: __string;
}
export interface ListInputsRequest {
MaxResults?: MaxResults;
NextToken?: __string;
}
export interface ListInputsResponse {
Inputs?: __listOfInput;
NextToken?: __string;
}
export interface ListMultiplexProgramsRequest {
/**
* The maximum number of items to return.
*/
MaxResults?: MaxResults;
/**
* The ID of the multiplex that the programs belong to.
*/
MultiplexId: __string;
/**
* The token to retrieve the next page of results.
*/
NextToken?: __string;
}
export interface ListMultiplexProgramsResponse {
/**
* List of multiplex programs.
*/
MultiplexPrograms?: __listOfMultiplexProgramSummary;
/**
* Token for the next ListMultiplexProgram request.
*/
NextToken?: __string;
}
export interface ListMultiplexesRequest {
/**
* The maximum number of items to return.
*/
MaxResults?: MaxResults;
/**
* The token to retrieve the next page of results.
*/
NextToken?: __string;
}
export interface ListMultiplexesResponse {
/**
* List of multiplexes.
*/
Multiplexes?: __listOfMultiplexSummary;
/**
* Token for the next ListMultiplexes request.
*/
NextToken?: __string;
}
export interface ListOfferingsRequest {
/**
* Filter by channel class, 'STANDARD' or 'SINGLE_PIPELINE'
*/
ChannelClass?: __string;
/**
* Filter to offerings that match the configuration of an existing channel, e.g. '2345678' (a channel ID)
*/
ChannelConfiguration?: __string;
/**
* Filter by codec, 'AVC', 'HEVC', 'MPEG2', or 'AUDIO'
*/
Codec?: __string;
/**
* Filter by offering duration, e.g. '12'
*/
Duration?: __string;
MaxResults?: MaxResults;
/**
* Filter by bitrate, 'MAX_10_MBPS', 'MAX_20_MBPS', or 'MAX_50_MBPS'
*/
MaximumBitrate?: __string;
/**
* Filter by framerate, 'MAX_30_FPS' or 'MAX_60_FPS'
*/
MaximumFramerate?: __string;
NextToken?: __string;
/**
* Filter by resolution, 'SD', 'HD', 'FHD', or 'UHD'
*/
Resolution?: __string;
/**
* Filter by resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'
*/
ResourceType?: __string;
/**
* Filter by special feature, 'ADVANCED_AUDIO' or 'AUDIO_NORMALIZATION'
*/
SpecialFeature?: __string;
/**
* Filter by video quality, 'STANDARD', 'ENHANCED', or 'PREMIUM'
*/
VideoQuality?: __string;
}
export interface ListOfferingsResponse {
/**
* Token to retrieve the next page of results
*/
NextToken?: __string;
/**
* List of offerings
*/
Offerings?: __listOfOffering;
}
export interface ListReservationsRequest {
/**
* Filter by channel class, 'STANDARD' or 'SINGLE_PIPELINE'
*/
ChannelClass?: __string;
/**
* Filter by codec, 'AVC', 'HEVC', 'MPEG2', or 'AUDIO'
*/
Codec?: __string;
MaxResults?: MaxResults;
/**
* Filter by bitrate, 'MAX_10_MBPS', 'MAX_20_MBPS', or 'MAX_50_MBPS'
*/
MaximumBitrate?: __string;
/**
* Filter by framerate, 'MAX_30_FPS' or 'MAX_60_FPS'
*/
MaximumFramerate?: __string;
NextToken?: __string;
/**
* Filter by resolution, 'SD', 'HD', 'FHD', or 'UHD'
*/
Resolution?: __string;
/**
* Filter by resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'
*/
ResourceType?: __string;
/**
* Filter by special feature, 'ADVANCED_AUDIO' or 'AUDIO_NORMALIZATION'
*/
SpecialFeature?: __string;
/**
* Filter by video quality, 'STANDARD', 'ENHANCED', or 'PREMIUM'
*/
VideoQuality?: __string;
}
export interface ListReservationsResponse {
/**
* Token to retrieve the next page of results
*/
NextToken?: __string;
/**
* List of reservations
*/
Reservations?: __listOfReservation;
}
export interface ListTagsForResourceRequest {
ResourceArn: __string;
}
export interface ListTagsForResourceResponse {
Tags?: Tags;
}
export type LogLevel = "ERROR"|"WARNING"|"INFO"|"DEBUG"|"DISABLED"|string;
export type M2tsAbsentInputAudioBehavior = "DROP"|"ENCODE_SILENCE"|string;
export type M2tsArib = "DISABLED"|"ENABLED"|string;
export type M2tsAribCaptionsPidControl = "AUTO"|"USE_CONFIGURED"|string;
export type M2tsAudioBufferModel = "ATSC"|"DVB"|string;
export type M2tsAudioInterval = "VIDEO_AND_FIXED_INTERVALS"|"VIDEO_INTERVAL"|string;
export type M2tsAudioStreamType = "ATSC"|"DVB"|string;
export type M2tsBufferModel = "MULTIPLEX"|"NONE"|string;
export type M2tsCcDescriptor = "DISABLED"|"ENABLED"|string;
export type M2tsEbifControl = "NONE"|"PASSTHROUGH"|string;
export type M2tsEbpPlacement = "VIDEO_AND_AUDIO_PIDS"|"VIDEO_PID"|string;
export type M2tsEsRateInPes = "EXCLUDE"|"INCLUDE"|string;
export type M2tsKlv = "NONE"|"PASSTHROUGH"|string;
export type M2tsNielsenId3Behavior = "NO_PASSTHROUGH"|"PASSTHROUGH"|string;
export type M2tsPcrControl = "CONFIGURED_PCR_PERIOD"|"PCR_EVERY_PES_PACKET"|string;
export type M2tsRateMode = "CBR"|"VBR"|string;
export type M2tsScte35Control = "NONE"|"PASSTHROUGH"|string;
export type M2tsSegmentationMarkers = "EBP"|"EBP_LEGACY"|"NONE"|"PSI_SEGSTART"|"RAI_ADAPT"|"RAI_SEGSTART"|string;
export type M2tsSegmentationStyle = "MAINTAIN_CADENCE"|"RESET_CADENCE"|string;
export interface M2tsSettings {
/**
* When set to drop, output audio streams will be removed from the program if the selected input audio stream is removed from the input. This allows the output audio configuration to dynamically change based on input configuration. If this is set to encodeSilence, all output audio streams will output encoded silence when not connected to an active input stream.
*/
AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior;
/**
* When set to enabled, uses ARIB-compliant field muxing and removes video descriptor.
*/
Arib?: M2tsArib;
/**
* Packet Identifier (PID) for ARIB Captions in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
AribCaptionsPid?: __string;
/**
* If set to auto, pid number used for ARIB Captions will be auto-selected from unused pids. If set to useConfigured, ARIB Captions will be on the configured pid number.
*/
AribCaptionsPidControl?: M2tsAribCaptionsPidControl;
/**
* When set to dvb, uses DVB buffer model for Dolby Digital audio. When set to atsc, the ATSC model is used.
*/
AudioBufferModel?: M2tsAudioBufferModel;
/**
* The number of audio frames to insert for each PES packet.
*/
AudioFramesPerPes?: __integerMin0;
/**
* Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
*/
AudioPids?: __string;
/**
* When set to atsc, uses stream type = 0x81 for AC3 and stream type = 0x87 for EAC3. When set to dvb, uses stream type = 0x06.
*/
AudioStreamType?: M2tsAudioStreamType;
/**
* The output bitrate of the transport stream in bits per second. Setting to 0 lets the muxer automatically determine the appropriate bitrate.
*/
Bitrate?: __integerMin0;
/**
* If set to multiplex, use multiplex buffer model for accurate interleaving. Setting to bufferModel to none can lead to lower latency, but low-memory devices may not be able to play back the stream without interruptions.
*/
BufferModel?: M2tsBufferModel;
/**
* When set to enabled, generates captionServiceDescriptor in PMT.
*/
CcDescriptor?: M2tsCcDescriptor;
/**
* Inserts DVB Network Information Table (NIT) at the specified table repetition interval.
*/
DvbNitSettings?: DvbNitSettings;
/**
* Inserts DVB Service Description Table (SDT) at the specified table repetition interval.
*/
DvbSdtSettings?: DvbSdtSettings;
/**
* Packet Identifier (PID) for input source DVB Subtitle data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
*/
DvbSubPids?: __string;
/**
* Inserts DVB Time and Date Table (TDT) at the specified table repetition interval.
*/
DvbTdtSettings?: DvbTdtSettings;
/**
* Packet Identifier (PID) for input source DVB Teletext data to this output. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
DvbTeletextPid?: __string;
/**
* If set to passthrough, passes any EBIF data from the input source to this output.
*/
Ebif?: M2tsEbifControl;
/**
* When videoAndFixedIntervals is selected, audio EBP markers will be added to partitions 3 and 4. The interval between these additional markers will be fixed, and will be slightly shorter than the video EBP marker interval. Only available when EBP Cablelabs segmentation markers are selected. Partitions 1 and 2 will always follow the video interval.
*/
EbpAudioInterval?: M2tsAudioInterval;
/**
* When set, enforces that Encoder Boundary Points do not come within the specified time interval of each other by looking ahead at input video. If another EBP is going to come in within the specified time interval, the current EBP is not emitted, and the segment is "stretched" to the next marker. The lookahead value does not add latency to the system. The Live Event must be configured elsewhere to create sufficient latency to make the lookahead accurate.
*/
EbpLookaheadMs?: __integerMin0Max10000;
/**
* Controls placement of EBP on Audio PIDs. If set to videoAndAudioPids, EBP markers will be placed on the video PID and all audio PIDs. If set to videoPid, EBP markers will be placed on only the video PID.
*/
EbpPlacement?: M2tsEbpPlacement;
/**
* This field is unused and deprecated.
*/
EcmPid?: __string;
/**
* Include or exclude the ES Rate field in the PES header.
*/
EsRateInPes?: M2tsEsRateInPes;
/**
* Packet Identifier (PID) for input source ETV Platform data to this output. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
EtvPlatformPid?: __string;
/**
* Packet Identifier (PID) for input source ETV Signal data to this output. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
EtvSignalPid?: __string;
/**
* The length in seconds of each fragment. Only used with EBP markers.
*/
FragmentTime?: __doubleMin0;
/**
* If set to passthrough, passes any KLV data from the input source to this output.
*/
Klv?: M2tsKlv;
/**
* Packet Identifier (PID) for input source KLV data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
*/
KlvDataPids?: __string;
/**
* If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
*/
NielsenId3Behavior?: M2tsNielsenId3Behavior;
/**
* Value in bits per second of extra null packets to insert into the transport stream. This can be used if a downstream encryption system requires periodic null packets.
*/
NullPacketBitrate?: __doubleMin0;
/**
* The number of milliseconds between instances of this table in the output transport stream. Valid values are 0, 10..1000.
*/
PatInterval?: __integerMin0Max1000;
/**
* When set to pcrEveryPesPacket, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
*/
PcrControl?: M2tsPcrControl;
/**
* Maximum time in milliseconds between Program Clock Reference (PCRs) inserted into the transport stream.
*/
PcrPeriod?: __integerMin0Max500;
/**
* Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport stream. When no value is given, the encoder will assign the same value as the Video PID. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
PcrPid?: __string;
/**
* The number of milliseconds between instances of this table in the output transport stream. Valid values are 0, 10..1000.
*/
PmtInterval?: __integerMin0Max1000;
/**
* Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
PmtPid?: __string;
/**
* The value of the program number field in the Program Map Table.
*/
ProgramNum?: __integerMin0Max65535;
/**
* When vbr, does not insert null packets into transport stream to fill specified bitrate. The bitrate setting acts as the maximum bitrate when vbr is set.
*/
RateMode?: M2tsRateMode;
/**
* Packet Identifier (PID) for input source SCTE-27 data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
*/
Scte27Pids?: __string;
/**
* Optionally pass SCTE-35 signals from the input source to this output.
*/
Scte35Control?: M2tsScte35Control;
/**
* Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
Scte35Pid?: __string;
/**
* Inserts segmentation markers at each segmentationTime period. raiSegstart sets the Random Access Indicator bit in the adaptation field. raiAdapt sets the RAI bit and adds the current timecode in the private data bytes. psiSegstart inserts PAT and PMT tables at the start of segments. ebp adds Encoder Boundary Point information to the adaptation field as per OpenCable specification OC-SP-EBP-I01-130118. ebpLegacy adds Encoder Boundary Point information to the adaptation field using a legacy proprietary format.
*/
SegmentationMarkers?: M2tsSegmentationMarkers;
/**
* The segmentation style parameter controls how segmentation markers are inserted into the transport stream. With avails, it is possible that segments may be truncated, which can influence where future segmentation markers are inserted.
When a segmentation style of "resetCadence" is selected and a segment is truncated due to an avail, we will reset the segmentation cadence. This means the subsequent segment will have a duration of $segmentationTime seconds.
When a segmentation style of "maintainCadence" is selected and a segment is truncated due to an avail, we will not reset the segmentation cadence. This means the subsequent segment will likely be truncated as well. However, all segments after that will have a duration of $segmentationTime seconds. Note that EBP lookahead is a slight exception to this rule.
*/
SegmentationStyle?: M2tsSegmentationStyle;
/**
* The length in seconds of each segment. Required unless markers is set to None_.
*/
SegmentationTime?: __doubleMin1;
/**
* When set to passthrough, timed metadata will be passed through from input to output.
*/
TimedMetadataBehavior?: M2tsTimedMetadataBehavior;
/**
* Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
TimedMetadataPid?: __string;
/**
* The value of the transport stream ID field in the Program Map Table.
*/
TransportStreamId?: __integerMin0Max65535;
/**
* Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
VideoPid?: __string;
}
export type M2tsTimedMetadataBehavior = "NO_PASSTHROUGH"|"PASSTHROUGH"|string;
export type M3u8NielsenId3Behavior = "NO_PASSTHROUGH"|"PASSTHROUGH"|string;
export type M3u8PcrControl = "CONFIGURED_PCR_PERIOD"|"PCR_EVERY_PES_PACKET"|string;
export type M3u8Scte35Behavior = "NO_PASSTHROUGH"|"PASSTHROUGH"|string;
export interface M3u8Settings {
/**
* The number of audio frames to insert for each PES packet.
*/
AudioFramesPerPes?: __integerMin0;
/**
* Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values.
*/
AudioPids?: __string;
/**
* This parameter is unused and deprecated.
*/
EcmPid?: __string;
/**
* If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
*/
NielsenId3Behavior?: M3u8NielsenId3Behavior;
/**
* The number of milliseconds between instances of this table in the output transport stream. A value of \"0\" writes out the PMT once per segment file.
*/
PatInterval?: __integerMin0Max1000;
/**
* When set to pcrEveryPesPacket, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
*/
PcrControl?: M3u8PcrControl;
/**
* Maximum time in milliseconds between Program Clock References (PCRs) inserted into the transport stream.
*/
PcrPeriod?: __integerMin0Max500;
/**
* Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport stream. When no value is given, the encoder will assign the same value as the Video PID. Can be entered as a decimal or hexadecimal value.
*/
PcrPid?: __string;
/**
* The number of milliseconds between instances of this table in the output transport stream. A value of \"0\" writes out the PMT once per segment file.
*/
PmtInterval?: __integerMin0Max1000;
/**
* Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream. Can be entered as a decimal or hexadecimal value.
*/
PmtPid?: __string;
/**
* The value of the program number field in the Program Map Table.
*/
ProgramNum?: __integerMin0Max65535;
/**
* If set to passthrough, passes any SCTE-35 signals from the input source to this output.
*/
Scte35Behavior?: M3u8Scte35Behavior;
/**
* Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value.
*/
Scte35Pid?: __string;
/**
* When set to passthrough, timed metadata is passed through from input to output.
*/
TimedMetadataBehavior?: M3u8TimedMetadataBehavior;
/**
* Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
*/
TimedMetadataPid?: __string;
/**
* The value of the transport stream ID field in the Program Map Table.
*/
TransportStreamId?: __integerMin0Max65535;
/**
* Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value.
*/
VideoPid?: __string;
}
export type M3u8TimedMetadataBehavior = "NO_PASSTHROUGH"|"PASSTHROUGH"|string;
export type MaxResults = number;
export interface MediaConnectFlow {
/**
* The unique ARN of the MediaConnect Flow being used as a source.
*/
FlowArn?: __string;
}
export interface MediaConnectFlowRequest {
/**
* The ARN of the MediaConnect Flow that you want to use as a source.
*/
FlowArn?: __string;
}
export interface MediaPackageGroupSettings {
/**
* MediaPackage channel destination.
*/
Destination: OutputLocationRef;
}
export interface MediaPackageOutputDestinationSettings {
/**
* ID of the channel in MediaPackage that is the destination for this output group. You do not need to specify the individual inputs in MediaPackage; MediaLive will handle the connection of the two MediaLive pipelines to the two MediaPackage inputs. The MediaPackage channel and MediaLive channel must be in the same region.
*/
ChannelId?: __stringMin1;
}
export interface MediaPackageOutputSettings {
}
export type Mp2CodingMode = "CODING_MODE_1_0"|"CODING_MODE_2_0"|string;
export interface Mp2Settings {
/**
* Average bitrate in bits/second.
*/
Bitrate?: __double;
/**
* The MPEG2 Audio coding mode. Valid values are codingMode10 (for mono) or codingMode20 (for stereo).
*/
CodingMode?: Mp2CodingMode;
/**
* Sample rate in Hz.
*/
SampleRate?: __double;
}
export interface MsSmoothGroupSettings {
/**
* The value of the "Acquisition Point Identity" element used in each message placed in the sparse track. Only enabled if sparseTrackType is not "none".
*/
AcquisitionPointId?: __string;
/**
* If set to passthrough for an audio-only MS Smooth output, the fragment absolute time will be set to the current timecode. This option does not write timecodes to the audio elementary stream.
*/
AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl;
/**
* If set to verifyAuthenticity, verify the https certificate chain to a trusted Certificate Authority (CA). This will cause https outputs to self-signed certificates to fail.
*/
CertificateMode?: SmoothGroupCertificateMode;
/**
* Number of seconds to wait before retrying connection to the IIS server if the connection is lost. Content will be cached during this time and the cache will be be delivered to the IIS server once the connection is re-established.
*/
ConnectionRetryInterval?: __integerMin0;
/**
* Smooth Streaming publish point on an IIS server. Elemental Live acts as a "Push" encoder to IIS.
*/
Destination: OutputLocationRef;
/**
* MS Smooth event ID to be sent to the IIS server.
Should only be specified if eventIdMode is set to useConfigured.
*/
EventId?: __string;
/**
* Specifies whether or not to send an event ID to the IIS server. If no event ID is sent and the same Live Event is used without changing the publishing point, clients might see cached video from the previous run.
Options:
- "useConfigured" - use the value provided in eventId
- "useTimestamp" - generate and send an event ID based on the current timestamp
- "noEventId" - do not send an event ID to the IIS server.
*/
EventIdMode?: SmoothGroupEventIdMode;
/**
* When set to sendEos, send EOS signal to IIS server when stopping the event
*/
EventStopBehavior?: SmoothGroupEventStopBehavior;
/**
* Size in seconds of file cache for streaming outputs.
*/
FilecacheDuration?: __integerMin0;
/**
* Length of mp4 fragments to generate (in seconds). Fragment length must be compatible with GOP size and framerate.
*/
FragmentLength?: __integerMin1;
/**
* Parameter that control output group behavior on input loss.
*/
InputLossAction?: InputLossActionForMsSmoothOut;
/**
* Number of retry attempts.
*/
NumRetries?: __integerMin0;
/**
* Number of seconds before initiating a restart due to output failure, due to exhausting the numRetries on one segment, or exceeding filecacheDuration.
*/
RestartDelay?: __integerMin0;
/**
* useInputSegmentation has been deprecated. The configured segment size is always used.
*/
SegmentationMode?: SmoothGroupSegmentationMode;
/**
* Number of milliseconds to delay the output from the second pipeline.
*/
SendDelayMs?: __integerMin0Max10000;
/**
* If set to scte35, use incoming SCTE-35 messages to generate a sparse track in this group of MS-Smooth outputs.
*/
SparseTrackType?: SmoothGroupSparseTrackType;
/**
* When set to send, send stream manifest so publishing point doesn't start until all streams start.
*/
StreamManifestBehavior?: SmoothGroupStreamManifestBehavior;
/**
* Timestamp offset for the event. Only used if timestampOffsetMode is set to useConfiguredOffset.
*/
TimestampOffset?: __string;
/**
* Type of timestamp date offset to use.
- useEventStartDate: Use the date the event was started as the offset
- useConfiguredOffset: Use an explicitly configured date as the offset
*/
TimestampOffsetMode?: SmoothGroupTimestampOffsetMode;
}
export type MsSmoothH265PackagingType = "HEV1"|"HVC1"|string;
export interface MsSmoothOutputSettings {
/**
* Only applicable when this output is referencing an H.265 video description.
Specifies whether MP4 segments should be packaged as HEV1 or HVC1.
*/
H265PackagingType?: MsSmoothH265PackagingType;
/**
* String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
*/
NameModifier?: __string;
}
export interface Multiplex {
/**
* The unique arn of the multiplex.
*/
Arn?: __string;
/**
* A list of availability zones for the multiplex.
*/
AvailabilityZones?: __listOf__string;
/**
* A list of the multiplex output destinations.
*/
Destinations?: __listOfMultiplexOutputDestination;
/**
* The unique id of the multiplex.
*/
Id?: __string;
/**
* Configuration for a multiplex event.
*/
MultiplexSettings?: MultiplexSettings;
/**
* The name of the multiplex.
*/
Name?: __string;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The number of programs in the multiplex.
*/
ProgramCount?: __integer;
/**
* The current state of the multiplex.
*/
State?: MultiplexState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface MultiplexGroupSettings {
}
export interface MultiplexMediaConnectOutputDestinationSettings {
/**
* The MediaConnect entitlement ARN available as a Flow source.
*/
EntitlementArn?: __stringMin1;
}
export interface MultiplexOutputDestination {
/**
* Multiplex MediaConnect output destination settings.
*/
MediaConnectSettings?: MultiplexMediaConnectOutputDestinationSettings;
}
export interface MultiplexOutputSettings {
/**
* Destination is a Multiplex.
*/
Destination: OutputLocationRef;
}
export interface MultiplexProgram {
/**
* The MediaLive channel associated with the program.
*/
ChannelId?: __string;
/**
* The settings for this multiplex program.
*/
MultiplexProgramSettings?: MultiplexProgramSettings;
/**
* The packet identifier map for this multiplex program.
*/
PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
/**
* The name of the multiplex program.
*/
ProgramName?: __string;
}
export interface MultiplexProgramChannelDestinationSettings {
/**
* The ID of the Multiplex that the encoder is providing output to. You do not need to specify the individual inputs to the Multiplex; MediaLive will handle the connection of the two MediaLive pipelines to the two Multiplex instances.
The Multiplex must be in the same region as the Channel.
*/
MultiplexId?: __stringMin1;
/**
* The program name of the Multiplex program that the encoder is providing output to.
*/
ProgramName?: __stringMin1;
}
export interface MultiplexProgramPacketIdentifiersMap {
AudioPids?: __listOf__integer;
DvbSubPids?: __listOf__integer;
DvbTeletextPid?: __integer;
EtvPlatformPid?: __integer;
EtvSignalPid?: __integer;
KlvDataPids?: __listOf__integer;
PcrPid?: __integer;
PmtPid?: __integer;
PrivateMetadataPid?: __integer;
Scte27Pids?: __listOf__integer;
Scte35Pid?: __integer;
TimedMetadataPid?: __integer;
VideoPid?: __integer;
}
export interface MultiplexProgramServiceDescriptor {
/**
* Name of the provider.
*/
ProviderName: __stringMax256;
/**
* Name of the service.
*/
ServiceName: __stringMax256;
}
export interface MultiplexProgramSettings {
/**
* Unique program number.
*/
ProgramNumber: __integerMin0Max65535;
/**
* Transport stream service descriptor configuration for the Multiplex program.
*/
ServiceDescriptor?: MultiplexProgramServiceDescriptor;
/**
* Program video settings configuration.
*/
VideoSettings?: MultiplexVideoSettings;
}
export interface MultiplexProgramSummary {
/**
* The MediaLive Channel associated with the program.
*/
ChannelId?: __string;
/**
* The name of the multiplex program.
*/
ProgramName?: __string;
}
export interface MultiplexSettings {
/**
* Maximum video buffer delay in milliseconds.
*/
MaximumVideoBufferDelayMilliseconds?: __integerMin1000Max3000;
/**
* Transport stream bit rate.
*/
TransportStreamBitrate: __integerMin1000000Max100000000;
/**
* Transport stream ID.
*/
TransportStreamId: __integerMin0Max65535;
/**
* Transport stream reserved bit rate.
*/
TransportStreamReservedBitrate?: __integerMin0Max100000000;
}
export interface MultiplexSettingsSummary {
/**
* Transport stream bit rate.
*/
TransportStreamBitrate?: __integerMin1000000Max100000000;
}
export type MultiplexState = "CREATING"|"CREATE_FAILED"|"IDLE"|"STARTING"|"RUNNING"|"RECOVERING"|"STOPPING"|"DELETING"|"DELETED"|string;
export interface MultiplexStatmuxVideoSettings {
/**
* Maximum statmux bitrate.
*/
MaximumBitrate?: __integerMin100000Max100000000;
/**
* Minimum statmux bitrate.
*/
MinimumBitrate?: __integerMin100000Max100000000;
}
export interface MultiplexSummary {
/**
* The unique arn of the multiplex.
*/
Arn?: __string;
/**
* A list of availability zones for the multiplex.
*/
AvailabilityZones?: __listOf__string;
/**
* The unique id of the multiplex.
*/
Id?: __string;
/**
* Configuration for a multiplex event.
*/
MultiplexSettings?: MultiplexSettingsSummary;
/**
* The name of the multiplex.
*/
Name?: __string;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The number of programs in the multiplex.
*/
ProgramCount?: __integer;
/**
* The current state of the multiplex.
*/
State?: MultiplexState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface MultiplexVideoSettings {
/**
* The constant bitrate configuration for the video encode.
When this field is defined, StatmuxSettings must be undefined.
*/
ConstantBitrate?: __integerMin100000Max100000000;
/**
* Statmux rate control settings.
When this field is defined, ConstantBitrate must be undefined.
*/
StatmuxSettings?: MultiplexStatmuxVideoSettings;
}
export type NetworkInputServerValidation = "CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME"|"CHECK_CRYPTOGRAPHY_ONLY"|string;
export interface NetworkInputSettings {
/**
* Specifies HLS input settings when the uri is for a HLS manifest.
*/
HlsInputSettings?: HlsInputSettings;
/**
* Check HTTPS server certificates. When set to checkCryptographyOnly, cryptography in the certificate will be checked, but not the server's name. Certain subdomains (notably S3 buckets that use dots in the bucket name) do not strictly match the corresponding certificate's wildcard pattern and would otherwise cause the event to error. This setting is ignored for protocols that do not use https.
*/
ServerValidation?: NetworkInputServerValidation;
}
export interface NielsenConfiguration {
/**
* Enter the Distributor ID assigned to your organization by Nielsen.
*/
DistributorId?: __string;
/**
* Enables Nielsen PCM to ID3 tagging
*/
NielsenPcmToId3Tagging?: NielsenPcmToId3TaggingState;
}
export type NielsenPcmToId3TaggingState = "DISABLED"|"ENABLED"|string;
export interface Offering {
/**
* Unique offering ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:offering:87654321'
*/
Arn?: __string;
/**
* Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
*/
CurrencyCode?: __string;
/**
* Lease duration, e.g. '12'
*/
Duration?: __integer;
/**
* Units for duration, e.g. 'MONTHS'
*/
DurationUnits?: OfferingDurationUnits;
/**
* One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
*/
FixedPrice?: __double;
/**
* Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
*/
OfferingDescription?: __string;
/**
* Unique offering ID, e.g. '87654321'
*/
OfferingId?: __string;
/**
* Offering type, e.g. 'NO_UPFRONT'
*/
OfferingType?: OfferingType;
/**
* AWS region, e.g. 'us-west-2'
*/
Region?: __string;
/**
* Resource configuration details
*/
ResourceSpecification?: ReservationResourceSpecification;
/**
* Recurring usage charge for each reserved resource, e.g. '157.0'
*/
UsagePrice?: __double;
}
export type OfferingDurationUnits = "MONTHS"|string;
export type OfferingType = "NO_UPFRONT"|string;
export interface Output {
/**
* The names of the AudioDescriptions used as audio sources for this output.
*/
AudioDescriptionNames?: __listOf__string;
/**
* The names of the CaptionDescriptions used as caption sources for this output.
*/
CaptionDescriptionNames?: __listOf__string;
/**
* The name used to identify an output.
*/
OutputName?: __stringMin1Max255;
/**
* Output type-specific settings.
*/
OutputSettings: OutputSettings;
/**
* The name of the VideoDescription used as the source for this output.
*/
VideoDescriptionName?: __string;
}
export interface OutputDestination {
/**
* User-specified id. This is used in an output group or an output.
*/
Id?: __string;
/**
* Destination settings for a MediaPackage output; one destination for both encoders.
*/
MediaPackageSettings?: __listOfMediaPackageOutputDestinationSettings;
/**
* Destination settings for a Multiplex output; one destination for both encoders.
*/
MultiplexSettings?: MultiplexProgramChannelDestinationSettings;
/**
* Destination settings for a standard output; one destination for each redundant encoder.
*/
Settings?: __listOfOutputDestinationSettings;
}
export interface OutputDestinationSettings {
/**
* key used to extract the password from EC2 Parameter store
*/
PasswordParam?: __string;
/**
* Stream name for RTMP destinations (URLs of type rtmp://)
*/
StreamName?: __string;
/**
* A URL specifying a destination
*/
Url?: __string;
/**
* username for destination
*/
Username?: __string;
}
export interface OutputGroup {
/**
* Custom output group name optionally defined by the user. Only letters, numbers, and the underscore character allowed; only 32 characters allowed.
*/
Name?: __stringMax32;
/**
* Settings associated with the output group.
*/
OutputGroupSettings: OutputGroupSettings;
Outputs: __listOfOutput;
}
export interface OutputGroupSettings {
ArchiveGroupSettings?: ArchiveGroupSettings;
FrameCaptureGroupSettings?: FrameCaptureGroupSettings;
HlsGroupSettings?: HlsGroupSettings;
MediaPackageGroupSettings?: MediaPackageGroupSettings;
MsSmoothGroupSettings?: MsSmoothGroupSettings;
MultiplexGroupSettings?: MultiplexGroupSettings;
RtmpGroupSettings?: RtmpGroupSettings;
UdpGroupSettings?: UdpGroupSettings;
}
export interface OutputLocationRef {
DestinationRefId?: __string;
}
export interface OutputSettings {
ArchiveOutputSettings?: ArchiveOutputSettings;
FrameCaptureOutputSettings?: FrameCaptureOutputSettings;
HlsOutputSettings?: HlsOutputSettings;
MediaPackageOutputSettings?: MediaPackageOutputSettings;
MsSmoothOutputSettings?: MsSmoothOutputSettings;
MultiplexOutputSettings?: MultiplexOutputSettings;
RtmpOutputSettings?: RtmpOutputSettings;
UdpOutputSettings?: UdpOutputSettings;
}
export interface PassThroughSettings {
}
export interface PauseStateScheduleActionSettings {
Pipelines?: __listOfPipelinePauseStateSettings;
}
export interface PipelineDetail {
/**
* The name of the active input attachment currently being ingested by this pipeline.
*/
ActiveInputAttachmentName?: __string;
/**
* The name of the input switch schedule action that occurred most recently and that resulted in the switch to the current input attachment for this pipeline.
*/
ActiveInputSwitchActionName?: __string;
/**
* Pipeline ID
*/
PipelineId?: __string;
}
export type PipelineId = "PIPELINE_0"|"PIPELINE_1"|string;
export interface PipelinePauseStateSettings {
/**
* Pipeline ID to pause ("PIPELINE_0" or "PIPELINE_1").
*/
PipelineId: PipelineId;
}
export interface PurchaseOfferingRequest {
/**
* Number of resources
*/
Count: __integerMin1;
/**
* Name for the new reservation
*/
Name?: __string;
/**
* Offering to purchase, e.g. '87654321'
*/
OfferingId: __string;
/**
* Unique request ID to be specified. This is needed to prevent retries from creating multiple resources.
*/
RequestId?: __string;
/**
* Requested reservation start time (UTC) in ISO-8601 format. The specified time must be between the first day of the current month and one year from now. If no value is given, the default is now.
*/
Start?: __string;
/**
* A collection of key-value pairs
*/
Tags?: Tags;
}
export interface PurchaseOfferingResponse {
Reservation?: Reservation;
}
export interface Rec601Settings {
}
export interface Rec709Settings {
}
export interface RemixSettings {
/**
* Mapping of input channels to output channels, with appropriate gain adjustments.
*/
ChannelMappings: __listOfAudioChannelMapping;
/**
* Number of input channels to be used.
*/
ChannelsIn?: __integerMin1Max16;
/**
* Number of output channels to be produced.
Valid values: 1, 2, 4, 6, 8
*/
ChannelsOut?: __integerMin1Max8;
}
export interface Reservation {
/**
* Unique reservation ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:reservation:1234567'
*/
Arn?: __string;
/**
* Number of reserved resources
*/
Count?: __integer;
/**
* Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
*/
CurrencyCode?: __string;
/**
* Lease duration, e.g. '12'
*/
Duration?: __integer;
/**
* Units for duration, e.g. 'MONTHS'
*/
DurationUnits?: OfferingDurationUnits;
/**
* Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
*/
End?: __string;
/**
* One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
*/
FixedPrice?: __double;
/**
* User specified reservation name
*/
Name?: __string;
/**
* Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
*/
OfferingDescription?: __string;
/**
* Unique offering ID, e.g. '87654321'
*/
OfferingId?: __string;
/**
* Offering type, e.g. 'NO_UPFRONT'
*/
OfferingType?: OfferingType;
/**
* AWS region, e.g. 'us-west-2'
*/
Region?: __string;
/**
* Unique reservation ID, e.g. '1234567'
*/
ReservationId?: __string;
/**
* Resource configuration details
*/
ResourceSpecification?: ReservationResourceSpecification;
/**
* Reservation UTC start date and time in ISO-8601 format, e.g. '2018-03-01T00:00:00'
*/
Start?: __string;
/**
* Current state of reservation, e.g. 'ACTIVE'
*/
State?: ReservationState;
/**
* A collection of key-value pairs
*/
Tags?: Tags;
/**
* Recurring usage charge for each reserved resource, e.g. '157.0'
*/
UsagePrice?: __double;
}
export type ReservationCodec = "MPEG2"|"AVC"|"HEVC"|"AUDIO"|string;
export type ReservationMaximumBitrate = "MAX_10_MBPS"|"MAX_20_MBPS"|"MAX_50_MBPS"|string;
export type ReservationMaximumFramerate = "MAX_30_FPS"|"MAX_60_FPS"|string;
export type ReservationResolution = "SD"|"HD"|"FHD"|"UHD"|string;
export interface ReservationResourceSpecification {
/**
* Channel class, e.g. 'STANDARD'
*/
ChannelClass?: ChannelClass;
/**
* Codec, e.g. 'AVC'
*/
Codec?: ReservationCodec;
/**
* Maximum bitrate, e.g. 'MAX_20_MBPS'
*/
MaximumBitrate?: ReservationMaximumBitrate;
/**
* Maximum framerate, e.g. 'MAX_30_FPS' (Outputs only)
*/
MaximumFramerate?: ReservationMaximumFramerate;
/**
* Resolution, e.g. 'HD'
*/
Resolution?: ReservationResolution;
/**
* Resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'
*/
ResourceType?: ReservationResourceType;
/**
* Special feature, e.g. 'AUDIO_NORMALIZATION' (Channels only)
*/
SpecialFeature?: ReservationSpecialFeature;
/**
* Video quality, e.g. 'STANDARD' (Outputs only)
*/
VideoQuality?: ReservationVideoQuality;
}
export type ReservationResourceType = "INPUT"|"OUTPUT"|"MULTIPLEX"|"CHANNEL"|string;
export type ReservationSpecialFeature = "ADVANCED_AUDIO"|"AUDIO_NORMALIZATION"|string;
export type ReservationState = "ACTIVE"|"EXPIRED"|"CANCELED"|"DELETED"|string;
export type ReservationVideoQuality = "STANDARD"|"ENHANCED"|"PREMIUM"|string;
export type RtmpCacheFullBehavior = "DISCONNECT_IMMEDIATELY"|"WAIT_FOR_SERVER"|string;
export type RtmpCaptionData = "ALL"|"FIELD1_608"|"FIELD1_AND_FIELD2_608"|string;
export interface RtmpCaptionInfoDestinationSettings {
}
export interface RtmpGroupSettings {
/**
* Authentication scheme to use when connecting with CDN
*/
AuthenticationScheme?: AuthenticationScheme;
/**
* Controls behavior when content cache fills up. If remote origin server stalls the RTMP connection and does not accept content fast enough the 'Media Cache' will fill up. When the cache reaches the duration specified by cacheLength the cache will stop accepting new content. If set to disconnectImmediately, the RTMP output will force a disconnect. Clear the media cache, and reconnect after restartDelay seconds. If set to waitForServer, the RTMP output will wait up to 5 minutes to allow the origin server to begin accepting data again.
*/
CacheFullBehavior?: RtmpCacheFullBehavior;
/**
* Cache length, in seconds, is used to calculate buffer size.
*/
CacheLength?: __integerMin30;
/**
* Controls the types of data that passes to onCaptionInfo outputs. If set to 'all' then 608 and 708 carried DTVCC data will be passed. If set to 'field1AndField2608' then DTVCC data will be stripped out, but 608 data from both fields will be passed. If set to 'field1608' then only the data carried in 608 from field 1 video will be passed.
*/
CaptionData?: RtmpCaptionData;
/**
* Controls the behavior of this RTMP group if input becomes unavailable.
- emitOutput: Emit a slate until input returns.
- pauseOutput: Stop transmitting data until input returns. This does not close the underlying RTMP connection.
*/
InputLossAction?: InputLossActionForRtmpOut;
/**
* If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
*/
RestartDelay?: __integerMin0;
}
export type RtmpOutputCertificateMode = "SELF_SIGNED"|"VERIFY_AUTHENTICITY"|string;
export interface RtmpOutputSettings {
/**
* If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will cause rtmps outputs with self-signed certificates to fail.
*/
CertificateMode?: RtmpOutputCertificateMode;
/**
* Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.
*/
ConnectionRetryInterval?: __integerMin1;
/**
* The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and password must be supplied. URI fields accept format identifiers.
*/
Destination: OutputLocationRef;
/**
* Number of retry attempts.
*/
NumRetries?: __integerMin0;
}
export interface ScheduleAction {
/**
* The name of the action, must be unique within the schedule. This name provides the main reference to an action once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule is automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so at that point a name can be reused.
*/
ActionName: __string;
/**
* Settings for this schedule action.
*/
ScheduleActionSettings: ScheduleActionSettings;
/**
* The time for the action to start in the channel.
*/
ScheduleActionStartSettings: ScheduleActionStartSettings;
}
export interface ScheduleActionSettings {
/**
* Action to insert HLS metadata
*/
HlsTimedMetadataSettings?: HlsTimedMetadataScheduleActionSettings;
/**
* Action to switch the input
*/
InputSwitchSettings?: InputSwitchScheduleActionSettings;
/**
* Action to pause or unpause one or both channel pipelines
*/
PauseStateSettings?: PauseStateScheduleActionSettings;
/**
* Action to insert SCTE-35 return_to_network message
*/
Scte35ReturnToNetworkSettings?: Scte35ReturnToNetworkScheduleActionSettings;
/**
* Action to insert SCTE-35 splice_insert message
*/
Scte35SpliceInsertSettings?: Scte35SpliceInsertScheduleActionSettings;
/**
* Action to insert SCTE-35 time_signal message
*/
Scte35TimeSignalSettings?: Scte35TimeSignalScheduleActionSettings;
/**
* Action to activate a static image overlay
*/
StaticImageActivateSettings?: StaticImageActivateScheduleActionSettings;
/**
* Action to deactivate a static image overlay
*/
StaticImageDeactivateSettings?: StaticImageDeactivateScheduleActionSettings;
}
export interface ScheduleActionStartSettings {
/**
* Option for specifying the start time for an action.
*/
FixedModeScheduleActionStartSettings?: FixedModeScheduleActionStartSettings;
/**
* Option for specifying an action as relative to another action.
*/
FollowModeScheduleActionStartSettings?: FollowModeScheduleActionStartSettings;
/**
* Option for specifying an action that should be applied immediately.
*/
ImmediateModeScheduleActionStartSettings?: ImmediateModeScheduleActionStartSettings;
}
export type Scte20Convert608To708 = "DISABLED"|"UPCONVERT"|string;
export interface Scte20PlusEmbeddedDestinationSettings {
}
export interface Scte20SourceSettings {
/**
* If upconvert, 608 data is both passed through via the "608 compatibility bytes" fields of the 708 wrapper as well as translated into 708. 708 data present in the source content will be discarded.
*/
Convert608To708?: Scte20Convert608To708;
/**
* Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.
*/
Source608ChannelNumber?: __integerMin1Max4;
}
export interface Scte27DestinationSettings {
}
export interface Scte27SourceSettings {
/**
* The pid field is used in conjunction with the caption selector languageCode field as follows:
- Specify PID and Language: Extracts captions from that PID; the language is "informational".
- Specify PID and omit Language: Extracts the specified PID.
- Omit PID and specify Language: Extracts the specified language, whichever PID that happens to be.
- Omit PID and omit Language: Valid only if source is DVB-Sub that is being passed through; all languages will be passed through.
*/
Pid?: __integerMin1;
}
export type Scte35AposNoRegionalBlackoutBehavior = "FOLLOW"|"IGNORE"|string;
export type Scte35AposWebDeliveryAllowedBehavior = "FOLLOW"|"IGNORE"|string;
export type Scte35ArchiveAllowedFlag = "ARCHIVE_NOT_ALLOWED"|"ARCHIVE_ALLOWED"|string;
export interface Scte35DeliveryRestrictions {
/**
* Corresponds to SCTE-35 archive_allowed_flag.
*/
ArchiveAllowedFlag: Scte35ArchiveAllowedFlag;
/**
* Corresponds to SCTE-35 device_restrictions parameter.
*/
DeviceRestrictions: Scte35DeviceRestrictions;
/**
* Corresponds to SCTE-35 no_regional_blackout_flag parameter.
*/
NoRegionalBlackoutFlag: Scte35NoRegionalBlackoutFlag;
/**
* Corresponds to SCTE-35 web_delivery_allowed_flag parameter.
*/
WebDeliveryAllowedFlag: Scte35WebDeliveryAllowedFlag;
}
export interface Scte35Descriptor {
/**
* SCTE-35 Descriptor Settings.
*/
Scte35DescriptorSettings: Scte35DescriptorSettings;
}
export interface Scte35DescriptorSettings {
/**
* SCTE-35 Segmentation Descriptor.
*/
SegmentationDescriptorScte35DescriptorSettings: Scte35SegmentationDescriptor;
}
export type Scte35DeviceRestrictions = "NONE"|"RESTRICT_GROUP0"|"RESTRICT_GROUP1"|"RESTRICT_GROUP2"|string;
export type Scte35NoRegionalBlackoutFlag = "REGIONAL_BLACKOUT"|"NO_REGIONAL_BLACKOUT"|string;
export interface Scte35ReturnToNetworkScheduleActionSettings {
/**
* The splice_event_id for the SCTE-35 splice_insert, as defined in SCTE-35.
*/
SpliceEventId: __longMin0Max4294967295;
}
export type Scte35SegmentationCancelIndicator = "SEGMENTATION_EVENT_NOT_CANCELED"|"SEGMENTATION_EVENT_CANCELED"|string;
export interface Scte35SegmentationDescriptor {
/**
* Holds the four SCTE-35 delivery restriction parameters.
*/
DeliveryRestrictions?: Scte35DeliveryRestrictions;
/**
* Corresponds to SCTE-35 segment_num. A value that is valid for the specified segmentation_type_id.
*/
SegmentNum?: __integerMin0Max255;
/**
* Corresponds to SCTE-35 segmentation_event_cancel_indicator.
*/
SegmentationCancelIndicator: Scte35SegmentationCancelIndicator;
/**
* Corresponds to SCTE-35 segmentation_duration. Optional. The duration for the time_signal, in 90 KHz ticks. To convert seconds to ticks, multiple the seconds by 90,000. Enter time in 90 KHz clock ticks. If you do not enter a duration, the time_signal will continue until you insert a cancellation message.
*/
SegmentationDuration?: __longMin0Max1099511627775;
/**
* Corresponds to SCTE-35 segmentation_event_id.
*/
SegmentationEventId: __longMin0Max4294967295;
/**
* Corresponds to SCTE-35 segmentation_type_id. One of the segmentation_type_id values listed in the SCTE-35 specification. On the console, enter the ID in decimal (for example, "52"). In the CLI, API, or an SDK, enter the ID in hex (for example, "0x34") or decimal (for example, "52").
*/
SegmentationTypeId?: __integerMin0Max255;
/**
* Corresponds to SCTE-35 segmentation_upid. Enter a string containing the hexadecimal representation of the characters that make up the SCTE-35 segmentation_upid value. Must contain an even number of hex characters. Do not include spaces between each hex pair. For example, the ASCII "ADS Information" becomes hex "41445320496e666f726d6174696f6e.
*/
SegmentationUpid?: __string;
/**
* Corresponds to SCTE-35 segmentation_upid_type. On the console, enter one of the types listed in the SCTE-35 specification, converted to a decimal. For example, "0x0C" hex from the specification is "12" in decimal. In the CLI, API, or an SDK, enter one of the types listed in the SCTE-35 specification, in either hex (for example, "0x0C" ) or in decimal (for example, "12").
*/
SegmentationUpidType?: __integerMin0Max255;
/**
* Corresponds to SCTE-35 segments_expected. A value that is valid for the specified segmentation_type_id.
*/
SegmentsExpected?: __integerMin0Max255;
/**
* Corresponds to SCTE-35 sub_segment_num. A value that is valid for the specified segmentation_type_id.
*/
SubSegmentNum?: __integerMin0Max255;
/**
* Corresponds to SCTE-35 sub_segments_expected. A value that is valid for the specified segmentation_type_id.
*/
SubSegmentsExpected?: __integerMin0Max255;
}
export interface Scte35SpliceInsert {
/**
* When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time. This only applies to embedded SCTE 104/35 messages and does not apply to OOB messages.
*/
AdAvailOffset?: __integerMinNegative1000Max1000;
/**
* When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to 0 will no longer trigger blackouts or Ad Avail slates
*/
NoRegionalBlackoutFlag?: Scte35SpliceInsertNoRegionalBlackoutBehavior;
/**
* When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to 0 will no longer trigger blackouts or Ad Avail slates
*/
WebDeliveryAllowedFlag?: Scte35SpliceInsertWebDeliveryAllowedBehavior;
}
export type Scte35SpliceInsertNoRegionalBlackoutBehavior = "FOLLOW"|"IGNORE"|string;
export interface Scte35SpliceInsertScheduleActionSettings {
/**
* Optional, the duration for the splice_insert, in 90 KHz ticks. To convert seconds to ticks, multiple the seconds by 90,000. If you enter a duration, there is an expectation that the downstream system can read the duration and cue in at that time. If you do not enter a duration, the splice_insert will continue indefinitely and there is an expectation that you will enter a return_to_network to end the splice_insert at the appropriate time.
*/
Duration?: __longMin0Max8589934591;
/**
* The splice_event_id for the SCTE-35 splice_insert, as defined in SCTE-35.
*/
SpliceEventId: __longMin0Max4294967295;
}
export type Scte35SpliceInsertWebDeliveryAllowedBehavior = "FOLLOW"|"IGNORE"|string;
export interface Scte35TimeSignalApos {
/**
* When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time. This only applies to embedded SCTE 104/35 messages and does not apply to OOB messages.
*/
AdAvailOffset?: __integerMinNegative1000Max1000;
/**
* When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to 0 will no longer trigger blackouts or Ad Avail slates
*/
NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior;
/**
* When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to 0 will no longer trigger blackouts or Ad Avail slates
*/
WebDeliveryAllowedFlag?: Scte35AposWebDeliveryAllowedBehavior;
}
export interface Scte35TimeSignalScheduleActionSettings {
/**
* The list of SCTE-35 descriptors accompanying the SCTE-35 time_signal.
*/
Scte35Descriptors: __listOfScte35Descriptor;
}
export type Scte35WebDeliveryAllowedFlag = "WEB_DELIVERY_NOT_ALLOWED"|"WEB_DELIVERY_ALLOWED"|string;
export type SmoothGroupAudioOnlyTimecodeControl = "PASSTHROUGH"|"USE_CONFIGURED_CLOCK"|string;
export type SmoothGroupCertificateMode = "SELF_SIGNED"|"VERIFY_AUTHENTICITY"|string;
export type SmoothGroupEventIdMode = "NO_EVENT_ID"|"USE_CONFIGURED"|"USE_TIMESTAMP"|string;
export type SmoothGroupEventStopBehavior = "NONE"|"SEND_EOS"|string;
export type SmoothGroupSegmentationMode = "USE_INPUT_SEGMENTATION"|"USE_SEGMENT_DURATION"|string;
export type SmoothGroupSparseTrackType = "NONE"|"SCTE_35"|string;
export type SmoothGroupStreamManifestBehavior = "DO_NOT_SEND"|"SEND"|string;
export type SmoothGroupTimestampOffsetMode = "USE_CONFIGURED_OFFSET"|"USE_EVENT_START_DATE"|string;
export interface SmpteTtDestinationSettings {
}
export interface StandardHlsSettings {
/**
* List all the audio groups that are used with the video output stream. Input all the audio GROUP-IDs that are associated to the video, separate by ','.
*/
AudioRenditionSets?: __string;
M3u8Settings: M3u8Settings;
}
export interface StartChannelRequest {
/**
* A request to start a channel
*/
ChannelId: __string;
}
export interface StartChannelResponse {
/**
* The unique arn of the channel.
*/
Arn?: __string;
/**
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
*/
ChannelClass?: ChannelClass;
/**
* A list of destinations of the channel. For UDP outputs, there is one
destination per output. For other types (HLS, for example), there is
one destination per packager.
*/
Destinations?: __listOfOutputDestination;
/**
* The endpoints where outgoing connections initiate from
*/
EgressEndpoints?: __listOfChannelEgressEndpoint;
EncoderSettings?: EncoderSettings;
/**
* The unique id of the channel.
*/
Id?: __string;
/**
* List of input attachments for channel.
*/
InputAttachments?: __listOfInputAttachment;
InputSpecification?: InputSpecification;
/**
* The log level being written to CloudWatch Logs.
*/
LogLevel?: LogLevel;
/**
* The name of the channel. (user-mutable)
*/
Name?: __string;
/**
* Runtime details for the pipelines of a running channel.
*/
PipelineDetails?: __listOfPipelineDetail;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
*/
RoleArn?: __string;
State?: ChannelState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface StartMultiplexRequest {
/**
* The ID of the multiplex.
*/
MultiplexId: __string;
}
export interface StartMultiplexResponse {
/**
* The unique arn of the multiplex.
*/
Arn?: __string;
/**
* A list of availability zones for the multiplex.
*/
AvailabilityZones?: __listOf__string;
/**
* A list of the multiplex output destinations.
*/
Destinations?: __listOfMultiplexOutputDestination;
/**
* The unique id of the multiplex.
*/
Id?: __string;
/**
* Configuration for a multiplex event.
*/
MultiplexSettings?: MultiplexSettings;
/**
* The name of the multiplex.
*/
Name?: __string;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The number of programs in the multiplex.
*/
ProgramCount?: __integer;
/**
* The current state of the multiplex.
*/
State?: MultiplexState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface StartTimecode {
/**
* The timecode for the frame where you want to start the clip. Optional; if not specified, the clip starts at first frame in the file. Enter the timecode as HH:MM:SS:FF or HH:MM:SS;FF.
*/
Timecode?: __string;
}
export interface StaticImageActivateScheduleActionSettings {
/**
* The duration in milliseconds for the image to remain on the video. If omitted or set to 0 the duration is unlimited and the image will remain until it is explicitly deactivated.
*/
Duration?: __integerMin0;
/**
* The time in milliseconds for the image to fade in. The fade-in starts at the start time of the overlay. Default is 0 (no fade-in).
*/
FadeIn?: __integerMin0;
/**
* Applies only if a duration is specified. The time in milliseconds for the image to fade out. The fade-out starts when the duration time is hit, so it effectively extends the duration. Default is 0 (no fade-out).
*/
FadeOut?: __integerMin0;
/**
* The height of the image when inserted into the video, in pixels. The overlay will be scaled up or down to the specified height. Leave blank to use the native height of the overlay.
*/
Height?: __integerMin1;
/**
* The location and filename of the image file to overlay on the video. The file must be a 32-bit BMP, PNG, or TGA file, and must not be larger (in pixels) than the input video.
*/
Image: InputLocation;
/**
* Placement of the left edge of the overlay relative to the left edge of the video frame, in pixels. 0 (the default) is the left edge of the frame. If the placement causes the overlay to extend beyond the right edge of the underlying video, then the overlay is cropped on the right.
*/
ImageX?: __integerMin0;
/**
* Placement of the top edge of the overlay relative to the top edge of the video frame, in pixels. 0 (the default) is the top edge of the frame. If the placement causes the overlay to extend beyond the bottom edge of the underlying video, then the overlay is cropped on the bottom.
*/
ImageY?: __integerMin0;
/**
* The number of the layer, 0 to 7. There are 8 layers that can be overlaid on the video, each layer with a different image. The layers are in Z order, which means that overlays with higher values of layer are inserted on top of overlays with lower values of layer. Default is 0.
*/
Layer?: __integerMin0Max7;
/**
* Opacity of image where 0 is transparent and 100 is fully opaque. Default is 100.
*/
Opacity?: __integerMin0Max100;
/**
* The width of the image when inserted into the video, in pixels. The overlay will be scaled up or down to the specified width. Leave blank to use the native width of the overlay.
*/
Width?: __integerMin1;
}
export interface StaticImageDeactivateScheduleActionSettings {
/**
* The time in milliseconds for the image to fade out. Default is 0 (no fade-out).
*/
FadeOut?: __integerMin0;
/**
* The image overlay layer to deactivate, 0 to 7. Default is 0.
*/
Layer?: __integerMin0Max7;
}
export interface StaticKeySettings {
/**
* The URL of the license server used for protecting content.
*/
KeyProviderServer?: InputLocation;
/**
* Static key value as a 32 character hexadecimal string.
*/
StaticKeyValue: __stringMin32Max32;
}
export interface StopChannelRequest {
/**
* A request to stop a running channel
*/
ChannelId: __string;
}
export interface StopChannelResponse {
/**
* The unique arn of the channel.
*/
Arn?: __string;
/**
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
*/
ChannelClass?: ChannelClass;
/**
* A list of destinations of the channel. For UDP outputs, there is one
destination per output. For other types (HLS, for example), there is
one destination per packager.
*/
Destinations?: __listOfOutputDestination;
/**
* The endpoints where outgoing connections initiate from
*/
EgressEndpoints?: __listOfChannelEgressEndpoint;
EncoderSettings?: EncoderSettings;
/**
* The unique id of the channel.
*/
Id?: __string;
/**
* List of input attachments for channel.
*/
InputAttachments?: __listOfInputAttachment;
InputSpecification?: InputSpecification;
/**
* The log level being written to CloudWatch Logs.
*/
LogLevel?: LogLevel;
/**
* The name of the channel. (user-mutable)
*/
Name?: __string;
/**
* Runtime details for the pipelines of a running channel.
*/
PipelineDetails?: __listOfPipelineDetail;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
*/
RoleArn?: __string;
State?: ChannelState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface StopMultiplexRequest {
/**
* The ID of the multiplex.
*/
MultiplexId: __string;
}
export interface StopMultiplexResponse {
/**
* The unique arn of the multiplex.
*/
Arn?: __string;
/**
* A list of availability zones for the multiplex.
*/
AvailabilityZones?: __listOf__string;
/**
* A list of the multiplex output destinations.
*/
Destinations?: __listOfMultiplexOutputDestination;
/**
* The unique id of the multiplex.
*/
Id?: __string;
/**
* Configuration for a multiplex event.
*/
MultiplexSettings?: MultiplexSettings;
/**
* The name of the multiplex.
*/
Name?: __string;
/**
* The number of currently healthy pipelines.
*/
PipelinesRunningCount?: __integer;
/**
* The number of programs in the multiplex.
*/
ProgramCount?: __integer;
/**
* The current state of the multiplex.
*/
State?: MultiplexState;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
}
export interface StopTimecode {
/**
* If you specify a StopTimecode in an input (in order to clip the file), you can specify if you want the clip to exclude (the default) or include the frame specified by the timecode.
*/
LastFrameClippingBehavior?: LastFrameClippingBehavior;
/**
* The timecode for the frame where you want to stop the clip. Optional; if not specified, the clip continues to the end of the file. Enter the timecode as HH:MM:SS:FF or HH:MM:SS;FF.
*/
Timecode?: __string;
}
export type Tags = {[key: string]: __string};
export interface TeletextDestinationSettings {
}
export interface TeletextSourceSettings {
/**
* Specifies the teletext page number within the data stream from which to extract captions. Range of 0x100 (256) to 0x8FF (2303). Unused for passthrough. Should be specified as a hexadecimal string with no "0x" prefix.
*/
PageNumber?: __string;
}
export interface TimecodeConfig {
/**
* Identifies the source for the timecode that will be associated with the events outputs.
-Embedded (embedded): Initialize the output timecode with timecode from the the source. If no embedded timecode is detected in the source, the system falls back to using "Start at 0" (zerobased).
-System Clock (systemclock): Use the UTC time.
-Start at 0 (zerobased): The time of the first frame of the event will be 00:00:00:00.
*/
Source: TimecodeConfigSource;
/**
* Threshold in frames beyond which output timecode is resynchronized to the input timecode. Discrepancies below this threshold are permitted to avoid unnecessary discontinuities in the output timecode. No timecode sync when this is not specified.
*/
SyncThreshold?: __integerMin1Max1000000;
}
export type TimecodeConfigSource = "EMBEDDED"|"SYSTEMCLOCK"|"ZEROBASED"|string;
export interface TtmlDestinationSettings {
/**
* When set to passthrough, passes through style and position information from a TTML-like input source (TTML, SMPTE-TT, CFF-TT) to the CFF-TT output or TTML output.
*/
StyleControl?: TtmlDestinationStyleControl;
}
export type TtmlDestinationStyleControl = "PASSTHROUGH"|"USE_CONFIGURED"|string;
export interface UdpContainerSettings {
M2tsSettings?: M2tsSettings;
}
export interface UdpGroupSettings {
/**
* Specifies behavior of last resort when input video is lost, and no more backup inputs are available. When dropTs is selected the entire transport stream will stop being emitted. When dropProgram is selected the program can be dropped from the transport stream (and replaced with null packets to meet the TS bitrate requirement). Or, when emitProgram is chosen the transport stream will continue to be produced normally with repeat frames, black frames, or slate frames substituted for the absent input video.
*/
InputLossAction?: InputLossActionForUdpOut;
/**
* Indicates ID3 frame that has the timecode.
*/
TimedMetadataId3Frame?: UdpTimedMetadataId3Frame;
/**
* Timed Metadata interval in seconds.
*/
TimedMetadataId3Period?: __integerMin0;
}
export interface UdpOutputSettings {
/**
* UDP output buffering in milliseconds. Larger values increase latency through the transcoder but simultaneously assist the transcoder in maintaining a constant, low-jitter UDP/RTP output while accommodating clock recovery, input switching, input disruptions, picture reordering, etc.
*/
BufferMsec?: __integerMin0Max10000;
ContainerSettings: UdpContainerSettings;
/**
* Destination address and port number for RTP or UDP packets. Can be unicast or multicast RTP or UDP (eg. rtp://239.10.10.10:5001 or udp://10.100.100.100:5002).
*/
Destination: OutputLocationRef;
/**
* Settings for enabling and adjusting Forward Error Correction on UDP outputs.
*/
FecOutputSettings?: FecOutputSettings;
}
export type UdpTimedMetadataId3Frame = "NONE"|"PRIV"|"TDRL"|string;
export interface UpdateChannelClassRequest {
/**
* The channel class that you wish to update this channel to use.
*/
ChannelClass: ChannelClass;
/**
* Channel Id of the channel whose class should be updated.
*/
ChannelId: __string;
/**
* A list of output destinations for this channel.
*/
Destinations?: __listOfOutputDestination;
}
export interface UpdateChannelClassResponse {
Channel?: Channel;
}
export interface UpdateChannelRequest {
/**
* channel ID
*/
ChannelId: __string;
/**
* A list of output destinations for this channel.
*/
Destinations?: __listOfOutputDestination;
/**
* The encoder settings for this channel.
*/
EncoderSettings?: EncoderSettings;
InputAttachments?: __listOfInputAttachment;
/**
* Specification of input for this channel (max. bitrate, resolution, codec, etc.)
*/
InputSpecification?: InputSpecification;
/**
* The log level to write to CloudWatch Logs.
*/
LogLevel?: LogLevel;
/**
* The name of the channel.
*/
Name?: __string;
/**
* An optional Amazon Resource Name (ARN) of the role to assume when running the Channel. If you do not specify this on an update call but the role was previously set that role will be removed.
*/
RoleArn?: __string;
}
export interface UpdateChannelResponse {
Channel?: Channel;
}
export interface UpdateInputRequest {
/**
* Destination settings for PUSH type inputs.
*/
Destinations?: __listOfInputDestinationRequest;
/**
* Unique ID of the input.
*/
InputId: __string;
/**
* A list of security groups referenced by IDs to attach to the input.
*/
InputSecurityGroups?: __listOf__string;
/**
* A list of the MediaConnect Flow ARNs that you want to use as the source of the input. You can specify as few as one
Flow and presently, as many as two. The only requirement is when you have more than one is that each Flow is in a
separate Availability Zone as this ensures your EML input is redundant to AZ issues.
*/
MediaConnectFlows?: __listOfMediaConnectFlowRequest;
/**
* Name of the input.
*/
Name?: __string;
/**
* The Amazon Resource Name (ARN) of the role this input assumes during and after creation.
*/
RoleArn?: __string;
/**
* The source URLs for a PULL-type input. Every PULL type input needs
exactly two source URLs for redundancy.
Only specify sources for PULL type Inputs. Leave Destinations empty.
*/
Sources?: __listOfInputSourceRequest;
}
export interface UpdateInputResponse {
Input?: Input;
}
export interface UpdateInputSecurityGroupRequest {
/**
* The id of the Input Security Group to update.
*/
InputSecurityGroupId: __string;
/**
* A collection of key-value pairs.
*/
Tags?: Tags;
/**
* List of IPv4 CIDR addresses to whitelist
*/
WhitelistRules?: __listOfInputWhitelistRuleCidr;
}
export interface UpdateInputSecurityGroupResponse {
SecurityGroup?: InputSecurityGroup;
}
export interface UpdateMultiplexProgramRequest {
/**
* The ID of the multiplex of the program to update.
*/
MultiplexId: __string;
/**
* The new settings for a multiplex program.
*/
MultiplexProgramSettings?: MultiplexProgramSettings;
/**
* The name of the program to update.
*/
ProgramName: __string;
}
export interface UpdateMultiplexProgramResponse {
/**
* The updated multiplex program.
*/
MultiplexProgram?: MultiplexProgram;
}
export interface UpdateMultiplexRequest {
/**
* ID of the multiplex to update.
*/
MultiplexId: __string;
/**
* The new settings for a multiplex.
*/
MultiplexSettings?: MultiplexSettings;
/**
* Name of the multiplex.
*/
Name?: __string;
}
export interface UpdateMultiplexResponse {
/**
* The updated multiplex.
*/
Multiplex?: Multiplex;
}
export interface UpdateReservationRequest {
/**
* Name of the reservation
*/
Name?: __string;
/**
* Unique reservation ID, e.g. '1234567'
*/
ReservationId: __string;
}
export interface UpdateReservationResponse {
Reservation?: Reservation;
}
export interface VideoCodecSettings {
FrameCaptureSettings?: FrameCaptureSettings;
H264Settings?: H264Settings;
H265Settings?: H265Settings;
}
export interface VideoDescription {
/**
* Video codec settings.
*/
CodecSettings?: VideoCodecSettings;
/**
* Output video height, in pixels. Must be an even number. For most codecs, you can leave this field and width blank in order to use the height and width (resolution) from the source. Note, however, that leaving blank is not recommended. For the Frame Capture codec, height and width are required.
*/
Height?: __integer;
/**
* The name of this VideoDescription. Outputs will use this name to uniquely identify this Description. Description names should be unique within this Live Event.
*/
Name: __string;
/**
* Indicates how to respond to the AFD values in the input stream. RESPOND causes input video to be clipped, depending on the AFD value, input display aspect ratio, and output display aspect ratio, and (except for FRAMECAPTURE codec) includes the values in the output. PASSTHROUGH (does not apply to FRAMECAPTURE codec) ignores the AFD values and includes the values in the output, so input video is not clipped. NONE ignores the AFD values and does not include the values through to the output, so input video is not clipped.
*/
RespondToAfd?: VideoDescriptionRespondToAfd;
/**
* STRETCHTOOUTPUT configures the output position to stretch the video to the specified output resolution (height and width). This option will override any position value. DEFAULT may insert black boxes (pillar boxes or letter boxes) around the video to provide the specified output resolution.
*/
ScalingBehavior?: VideoDescriptionScalingBehavior;
/**
* Changes the strength of the anti-alias filter used for scaling. 0 is the softest setting, 100 is the sharpest. A setting of 50 is recommended for most content.
*/
Sharpness?: __integerMin0Max100;
/**
* Output video width, in pixels. Must be an even number. For most codecs, you can leave this field and height blank in order to use the height and width (resolution) from the source. Note, however, that leaving blank is not recommended. For the Frame Capture codec, height and width are required.
*/
Width?: __integer;
}
export type VideoDescriptionRespondToAfd = "NONE"|"PASSTHROUGH"|"RESPOND"|string;
export type VideoDescriptionScalingBehavior = "DEFAULT"|"STRETCH_TO_OUTPUT"|string;
export interface VideoSelector {
/**
* Specifies the color space of an input. This setting works in tandem with colorSpaceUsage and a video description's colorSpaceSettingsChoice to determine if any conversion will be performed.
*/
ColorSpace?: VideoSelectorColorSpace;
/**
* Applies only if colorSpace is a value other than follow. This field controls how the value in the colorSpace field will be used. fallback means that when the input does include color space data, that data will be used, but when the input has no color space data, the value in colorSpace will be used. Choose fallback if your input is sometimes missing color space data, but when it does have color space data, that data is correct. force means to always use the value in colorSpace. Choose force if your input usually has no color space data or might have unreliable color space data.
*/
ColorSpaceUsage?: VideoSelectorColorSpaceUsage;
/**
* The video selector settings.
*/
SelectorSettings?: VideoSelectorSettings;
}
export type VideoSelectorColorSpace = "FOLLOW"|"REC_601"|"REC_709"|string;
export type VideoSelectorColorSpaceUsage = "FALLBACK"|"FORCE"|string;
export interface VideoSelectorPid {
/**
* Selects a specific PID from within a video source.
*/
Pid?: __integerMin0Max8191;
}
export interface VideoSelectorProgramId {
/**
* Selects a specific program from within a multi-program transport stream. If the program doesn't exist, the first program within the transport stream will be selected by default.
*/
ProgramId?: __integerMin0Max65536;
}
export interface VideoSelectorSettings {
VideoSelectorPid?: VideoSelectorPid;
VideoSelectorProgramId?: VideoSelectorProgramId;
}
export interface WebvttDestinationSettings {
}
export type __double = number;
export type __doubleMin0 = number;
export type __doubleMin1 = number;
export type __doubleMinNegative59Max0 = number;
export type __integer = number;
export type __integerMin0 = number;
export type __integerMin0Max10 = number;
export type __integerMin0Max100 = number;
export type __integerMin0Max1000 = number;
export type __integerMin0Max10000 = number;
export type __integerMin0Max1000000 = number;
export type __integerMin0Max100000000 = number;
export type __integerMin0Max128 = number;
export type __integerMin0Max15 = number;
export type __integerMin0Max255 = number;
export type __integerMin0Max30 = number;
export type __integerMin0Max32768 = number;
export type __integerMin0Max3600 = number;
export type __integerMin0Max500 = number;
export type __integerMin0Max600 = number;
export type __integerMin0Max65535 = number;
export type __integerMin0Max65536 = number;
export type __integerMin0Max7 = number;
export type __integerMin0Max8191 = number;
export type __integerMin1 = number;
export type __integerMin1000 = number;
export type __integerMin1000000Max100000000 = number;
export type __integerMin100000Max100000000 = number;
export type __integerMin100000Max40000000 = number;
export type __integerMin100000Max80000000 = number;
export type __integerMin1000Max3000 = number;
export type __integerMin1000Max30000 = number;
export type __integerMin1Max10 = number;
export type __integerMin1Max1000000 = number;
export type __integerMin1Max16 = number;
export type __integerMin1Max20 = number;
export type __integerMin1Max3003 = number;
export type __integerMin1Max31 = number;
export type __integerMin1Max32 = number;
export type __integerMin1Max3600000 = number;
export type __integerMin1Max4 = number;
export type __integerMin1Max5 = number;
export type __integerMin1Max6 = number;
export type __integerMin1Max8 = number;
export type __integerMin25Max10000 = number;
export type __integerMin25Max2000 = number;
export type __integerMin3 = number;
export type __integerMin30 = number;
export type __integerMin4Max20 = number;
export type __integerMin96Max600 = number;
export type __integerMinNegative1000Max1000 = number;
export type __integerMinNegative60Max6 = number;
export type __integerMinNegative60Max60 = number;
export type __listOfAudioChannelMapping = AudioChannelMapping[];
export type __listOfAudioDescription = AudioDescription[];
export type __listOfAudioSelector = AudioSelector[];
export type __listOfCaptionDescription = CaptionDescription[];
export type __listOfCaptionLanguageMapping = CaptionLanguageMapping[];
export type __listOfCaptionSelector = CaptionSelector[];
export type __listOfChannelEgressEndpoint = ChannelEgressEndpoint[];
export type __listOfChannelSummary = ChannelSummary[];
export type __listOfHlsAdMarkers = HlsAdMarkers[];
export type __listOfInput = Input[];
export type __listOfInputAttachment = InputAttachment[];
export type __listOfInputChannelLevel = InputChannelLevel[];
export type __listOfInputDestination = InputDestination[];
export type __listOfInputDestinationRequest = InputDestinationRequest[];
export type __listOfInputSecurityGroup = InputSecurityGroup[];
export type __listOfInputSource = InputSource[];
export type __listOfInputSourceRequest = InputSourceRequest[];
export type __listOfInputWhitelistRule = InputWhitelistRule[];
export type __listOfInputWhitelistRuleCidr = InputWhitelistRuleCidr[];
export type __listOfMediaConnectFlow = MediaConnectFlow[];
export type __listOfMediaConnectFlowRequest = MediaConnectFlowRequest[];
export type __listOfMediaPackageOutputDestinationSettings = MediaPackageOutputDestinationSettings[];
export type __listOfMultiplexOutputDestination = MultiplexOutputDestination[];
export type __listOfMultiplexProgramSummary = MultiplexProgramSummary[];
export type __listOfMultiplexSummary = MultiplexSummary[];
export type __listOfOffering = Offering[];
export type __listOfOutput = Output[];
export type __listOfOutputDestination = OutputDestination[];
export type __listOfOutputDestinationSettings = OutputDestinationSettings[];
export type __listOfOutputGroup = OutputGroup[];
export type __listOfPipelineDetail = PipelineDetail[];
export type __listOfPipelinePauseStateSettings = PipelinePauseStateSettings[];
export type __listOfReservation = Reservation[];
export type __listOfScheduleAction = ScheduleAction[];
export type __listOfScte35Descriptor = Scte35Descriptor[];
export type __listOfVideoDescription = VideoDescription[];
export type __listOf__integer = __integer[];
export type __listOf__string = __string[];
export type __longMin0Max1099511627775 = number;
export type __longMin0Max4294967295 = number;
export type __longMin0Max8589934591 = number;
export type __string = string;
export type __stringMax256 = string;
export type __stringMax32 = string;
export type __stringMin1 = string;
export type __stringMin1Max255 = string;
export type __stringMin1Max256 = string;
export type __stringMin32Max32 = string;
export type __stringMin34Max34 = string;
export type __stringMin3Max3 = string;
export type __stringMin6Max6 = string;
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2017-10-14"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the MediaLive client.
*/
export import Types = MediaLive;
}
export = MediaLive;