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
// ================================================================= // // * WARNING * // // This file is generated! // // Changes made to this file will be overwritten. If changes are // required to the generated code, the service_crategen project // must be updated to generate the changes. // // ================================================================= use std::error::Error; use std::fmt; #[allow(warnings)] use futures::future; use futures::Future; use rusoto_core::credential::ProvideAwsCredentials; use rusoto_core::region; use rusoto_core::request::{BufferedHttpResponse, DispatchSignedRequest}; use rusoto_core::{Client, RusotoError, RusotoFuture}; use rusoto_core::param::{Params, ServiceParams}; use rusoto_core::proto; use rusoto_core::signature::SignedRequest; use serde_json; /// <p>The file to be used as album art. There can be multiple artworks associated with an audio file, to a maximum of 20.</p> <p>To remove artwork or leave the artwork empty, you can either set <code>Artwork</code> to null, or set the <code>Merge Policy</code> to "Replace" and use an empty <code>Artwork</code> array.</p> <p>To pass through existing artwork unchanged, set the <code>Merge Policy</code> to "Prepend", "Append", or "Fallback", and use an empty <code>Artwork</code> array.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Artwork { /// <p>The format of album art, if any. Valid formats are <code>.jpg</code> and <code>.png</code>.</p> #[serde(rename = "AlbumArtFormat")] #[serde(skip_serializing_if = "Option::is_none")] pub album_art_format: Option<String>, /// <p>The encryption settings, if any, that you want Elastic Transcoder to apply to your artwork.</p> #[serde(rename = "Encryption")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption: Option<Encryption>, /// <p>The name of the file to be used as album art. To determine which Amazon S3 bucket contains the specified file, Elastic Transcoder checks the pipeline specified by <code>PipelineId</code>; the <code>InputBucket</code> object in that pipeline identifies the bucket.</p> <p>If the file name includes a prefix, for example, <code>cooking/pie.jpg</code>, include the prefix in the key. If the file isn't in the specified bucket, Elastic Transcoder returns an error.</p> #[serde(rename = "InputKey")] #[serde(skip_serializing_if = "Option::is_none")] pub input_key: Option<String>, /// <p>The maximum height of the output album art in pixels. If you specify <code>auto</code>, Elastic Transcoder uses 600 as the default value. If you specify a numeric value, enter an even integer between 32 and 3072, inclusive.</p> #[serde(rename = "MaxHeight")] #[serde(skip_serializing_if = "Option::is_none")] pub max_height: Option<String>, /// <p>The maximum width of the output album art in pixels. If you specify <code>auto</code>, Elastic Transcoder uses 600 as the default value. If you specify a numeric value, enter an even integer between 32 and 4096, inclusive.</p> #[serde(rename = "MaxWidth")] #[serde(skip_serializing_if = "Option::is_none")] pub max_width: Option<String>, /// <p>When you set <code>PaddingPolicy</code> to <code>Pad</code>, Elastic Transcoder may add white bars to the top and bottom and/or left and right sides of the output album art to make the total size of the output art match the values that you specified for <code>MaxWidth</code> and <code>MaxHeight</code>.</p> #[serde(rename = "PaddingPolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub padding_policy: Option<String>, /// <p><p>Specify one of the following values to control scaling of the output album art:</p> <ul> <li> <p> <code>Fit:</code> Elastic Transcoder scales the output art so it matches the value that you specified in either <code>MaxWidth</code> or <code>MaxHeight</code> without exceeding the other value.</p> </li> <li> <p> <code>Fill:</code> Elastic Transcoder scales the output art so it matches the value that you specified in either <code>MaxWidth</code> or <code>MaxHeight</code> and matches or exceeds the other value. Elastic Transcoder centers the output art and then crops it in the dimension (if any) that exceeds the maximum value. </p> </li> <li> <p> <code>Stretch:</code> Elastic Transcoder stretches the output art to match the values that you specified for <code>MaxWidth</code> and <code>MaxHeight</code>. If the relative proportions of the input art and the output art are different, the output art will be distorted.</p> </li> <li> <p> <code>Keep:</code> Elastic Transcoder does not scale the output art. If either dimension of the input art exceeds the values that you specified for <code>MaxWidth</code> and <code>MaxHeight</code>, Elastic Transcoder crops the output art.</p> </li> <li> <p> <code>ShrinkToFit:</code> Elastic Transcoder scales the output art down so that its dimensions match the values that you specified for at least one of <code>MaxWidth</code> and <code>MaxHeight</code> without exceeding either value. If you specify this option, Elastic Transcoder does not scale the art up.</p> </li> <li> <p> <code>ShrinkToFill</code> Elastic Transcoder scales the output art down so that its dimensions match the values that you specified for at least one of <code>MaxWidth</code> and <code>MaxHeight</code> without dropping below either value. If you specify this option, Elastic Transcoder does not scale the art up.</p> </li> </ul></p> #[serde(rename = "SizingPolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub sizing_policy: Option<String>, } /// <p>Options associated with your audio codec.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct AudioCodecOptions { /// <p>You can only choose an audio bit depth when you specify <code>flac</code> or <code>pcm</code> for the value of Audio:Codec.</p> <p>The bit depth of a sample is how many bits of information are included in the audio samples. The higher the bit depth, the better the audio, but the larger the file.</p> <p>Valid values are <code>16</code> and <code>24</code>.</p> <p>The most common bit depth is <code>24</code>.</p> #[serde(rename = "BitDepth")] #[serde(skip_serializing_if = "Option::is_none")] pub bit_depth: Option<String>, /// <p>You can only choose an audio bit order when you specify <code>pcm</code> for the value of Audio:Codec.</p> <p>The order the bits of a PCM sample are stored in.</p> <p>The supported value is <code>LittleEndian</code>.</p> #[serde(rename = "BitOrder")] #[serde(skip_serializing_if = "Option::is_none")] pub bit_order: Option<String>, /// <p><p>You can only choose an audio profile when you specify AAC for the value of Audio:Codec.</p> <p>Specify the AAC profile for the output file. Elastic Transcoder supports the following profiles:</p> <ul> <li> <p> <code>auto</code>: If you specify <code>auto</code>, Elastic Transcoder selects the profile based on the bit rate selected for the output file.</p> </li> <li> <p> <code>AAC-LC</code>: The most common AAC profile. Use for bit rates larger than 64 kbps.</p> </li> <li> <p> <code>HE-AAC</code>: Not supported on some older players and devices. Use for bit rates between 40 and 80 kbps.</p> </li> <li> <p> <code>HE-AACv2</code>: Not supported on some players and devices. Use for bit rates less than 48 kbps.</p> </li> </ul> <p>All outputs in a <code>Smooth</code> playlist must have the same value for <code>Profile</code>.</p> <note> <p>If you created any presets before AAC profiles were added, Elastic Transcoder automatically updated your presets to use AAC-LC. You can change the value as required.</p> </note></p> #[serde(rename = "Profile")] #[serde(skip_serializing_if = "Option::is_none")] pub profile: Option<String>, /// <p>You can only choose whether an audio sample is signed when you specify <code>pcm</code> for the value of Audio:Codec.</p> <p>Whether audio samples are represented with negative and positive numbers (signed) or only positive numbers (unsigned).</p> <p>The supported value is <code>Signed</code>.</p> #[serde(rename = "Signed")] #[serde(skip_serializing_if = "Option::is_none")] pub signed: Option<String>, } /// <p>Parameters required for transcoding audio.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct AudioParameters { /// <p><p>The method of organizing audio channels and tracks. Use <code>Audio:Channels</code> to specify the number of channels in your output, and <code>Audio:AudioPackingMode</code> to specify the number of tracks and their relation to the channels. If you do not specify an <code>Audio:AudioPackingMode</code>, Elastic Transcoder uses <code>SingleTrack</code>.</p> <p>The following values are valid:</p> <p> <code>SingleTrack</code>, <code>OneChannelPerTrack</code>, and <code>OneChannelPerTrackWithMosTo8Tracks</code> </p> <p>When you specify <code>SingleTrack</code>, Elastic Transcoder creates a single track for your output. The track can have up to eight channels. Use <code>SingleTrack</code> for all non-<code>mxf</code> containers.</p> <p>The outputs of <code>SingleTrack</code> for a specific channel value and inputs are as follows:</p> <ul> <li> <p> <code>0</code> <b> channels with any input:</b> Audio omitted from the output</p> </li> <li> <p> <code>1, 2, or auto </code> <b>channels with no audio input:</b> Audio omitted from the output</p> </li> <li> <p> <code>1 </code> <b>channel with any input with audio:</b> One track with one channel, downmixed if necessary</p> </li> <li> <p> <code>2 </code> <b>channels with one track with one channel:</b> One track with two identical channels</p> </li> <li> <p> <code>2 or auto </code> <b>channels with two tracks with one channel each:</b> One track with two channels</p> </li> <li> <p> <code>2 or auto </code> <b>channels with one track with two channels:</b> One track with two channels</p> </li> <li> <p> <code>2 </code> <b>channels with one track with multiple channels:</b> One track with two channels</p> </li> <li> <p> <code>auto </code> <b>channels with one track with one channel:</b> One track with one channel</p> </li> <li> <p> <code>auto </code> <b>channels with one track with multiple channels:</b> One track with multiple channels</p> </li> </ul> <p>When you specify <code>OneChannelPerTrack</code>, Elastic Transcoder creates a new track for every channel in your output. Your output can have up to eight single-channel tracks.</p> <p>The outputs of <code>OneChannelPerTrack</code> for a specific channel value and inputs are as follows:</p> <ul> <li> <p> <code>0 </code> <b>channels with any input:</b> Audio omitted from the output</p> </li> <li> <p> <code>1, 2, or auto </code> <b>channels with no audio input:</b> Audio omitted from the output</p> </li> <li> <p> <code>1 </code> <b>channel with any input with audio:</b> One track with one channel, downmixed if necessary</p> </li> <li> <p> <code>2 </code> <b>channels with one track with one channel:</b> Two tracks with one identical channel each</p> </li> <li> <p> <code>2 or auto </code> <b>channels with two tracks with one channel each:</b> Two tracks with one channel each</p> </li> <li> <p> <code>2 or auto </code> <b>channels with one track with two channels:</b> Two tracks with one channel each</p> </li> <li> <p> <code>2 </code> <b>channels with one track with multiple channels:</b> Two tracks with one channel each</p> </li> <li> <p> <code>auto </code> <b>channels with one track with one channel:</b> One track with one channel</p> </li> <li> <p> <code>auto </code> <b>channels with one track with multiple channels:</b> Up to eight tracks with one channel each</p> </li> </ul> <p>When you specify <code>OneChannelPerTrackWithMosTo8Tracks</code>, Elastic Transcoder creates eight single-channel tracks for your output. All tracks that do not contain audio data from an input channel are MOS, or Mit Out Sound, tracks.</p> <p>The outputs of <code>OneChannelPerTrackWithMosTo8Tracks</code> for a specific channel value and inputs are as follows:</p> <ul> <li> <p> <code>0 </code> <b>channels with any input:</b> Audio omitted from the output</p> </li> <li> <p> <code>1, 2, or auto </code> <b>channels with no audio input:</b> Audio omitted from the output</p> </li> <li> <p> <code>1 </code> <b>channel with any input with audio:</b> One track with one channel, downmixed if necessary, plus six MOS tracks</p> </li> <li> <p> <code>2 </code> <b>channels with one track with one channel:</b> Two tracks with one identical channel each, plus six MOS tracks</p> </li> <li> <p> <code>2 or auto </code> <b>channels with two tracks with one channel each:</b> Two tracks with one channel each, plus six MOS tracks</p> </li> <li> <p> <code>2 or auto </code> <b>channels with one track with two channels:</b> Two tracks with one channel each, plus six MOS tracks</p> </li> <li> <p> <code>2 </code> <b>channels with one track with multiple channels:</b> Two tracks with one channel each, plus six MOS tracks</p> </li> <li> <p> <code>auto </code> <b>channels with one track with one channel:</b> One track with one channel, plus seven MOS tracks</p> </li> <li> <p> <code>auto </code> <b>channels with one track with multiple channels:</b> Up to eight tracks with one channel each, plus MOS tracks until there are eight tracks in all</p> </li> </ul></p> #[serde(rename = "AudioPackingMode")] #[serde(skip_serializing_if = "Option::is_none")] pub audio_packing_mode: Option<String>, /// <p>The bit rate of the audio stream in the output file, in kilobits/second. Enter an integer between 64 and 320, inclusive.</p> #[serde(rename = "BitRate")] #[serde(skip_serializing_if = "Option::is_none")] pub bit_rate: Option<String>, /// <p>The number of audio channels in the output file. The following values are valid:</p> <p> <code>auto</code>, <code>0</code>, <code>1</code>, <code>2</code> </p> <p>One channel carries the information played by a single speaker. For example, a stereo track with two channels sends one channel to the left speaker, and the other channel to the right speaker. The output channels are organized into tracks. If you want Elastic Transcoder to automatically detect the number of audio channels in the input file and use that value for the output file, select <code>auto</code>.</p> <p>The output of a specific channel value and inputs are as follows:</p> <ul> <li> <p> <code>auto</code> <b> channel specified, with any input:</b> Pass through up to eight input channels.</p> </li> <li> <p> <code>0</code> <b> channels specified, with any input:</b> Audio omitted from the output.</p> </li> <li> <p> <code>1</code> <b> channel specified, with at least one input channel:</b> Mono sound.</p> </li> <li> <p> <code>2</code> <b> channels specified, with any input:</b> Two identical mono channels or stereo. For more information about tracks, see <code>Audio:AudioPackingMode.</code> </p> </li> </ul> <p> For more information about how Elastic Transcoder organizes channels and tracks, see <code>Audio:AudioPackingMode</code>.</p> #[serde(rename = "Channels")] #[serde(skip_serializing_if = "Option::is_none")] pub channels: Option<String>, /// <p>The audio codec for the output file. Valid values include <code>aac</code>, <code>flac</code>, <code>mp2</code>, <code>mp3</code>, <code>pcm</code>, and <code>vorbis</code>.</p> #[serde(rename = "Codec")] #[serde(skip_serializing_if = "Option::is_none")] pub codec: Option<String>, /// <p>If you specified <code>AAC</code> for <code>Audio:Codec</code>, this is the <code>AAC</code> compression profile to use. Valid values include:</p> <p> <code>auto</code>, <code>AAC-LC</code>, <code>HE-AAC</code>, <code>HE-AACv2</code> </p> <p>If you specify <code>auto</code>, Elastic Transcoder chooses a profile based on the bit rate of the output file.</p> #[serde(rename = "CodecOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub codec_options: Option<AudioCodecOptions>, /// <p>The sample rate of the audio stream in the output file, in Hertz. Valid values include:</p> <p> <code>auto</code>, <code>22050</code>, <code>32000</code>, <code>44100</code>, <code>48000</code>, <code>96000</code> </p> <p>If you specify <code>auto</code>, Elastic Transcoder automatically detects the sample rate.</p> #[serde(rename = "SampleRate")] #[serde(skip_serializing_if = "Option::is_none")] pub sample_rate: Option<String>, } /// <p>The <code>CancelJobRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CancelJobRequest { /// <p>The identifier of the job that you want to cancel.</p> <p>To get a list of the jobs (including their <code>jobId</code>) that have a status of <code>Submitted</code>, use the <a>ListJobsByStatus</a> API action.</p> #[serde(rename = "Id")] pub id: String, } /// <p>The response body contains a JSON object. If the job is successfully canceled, the value of <code>Success</code> is <code>true</code>.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CancelJobResponse {} /// <p>The file format of the output captions. If you leave this value blank, Elastic Transcoder returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct CaptionFormat { /// <p>The encryption settings, if any, that you want Elastic Transcoder to apply to your caption formats.</p> #[serde(rename = "Encryption")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption: Option<Encryption>, /// <p><p>The format you specify determines whether Elastic Transcoder generates an embedded or sidecar caption for this output.</p> <ul> <li> <p> <b>Valid Embedded Caption Formats:</b> </p> <ul> <li> <p> <b>for FLAC</b>: None</p> </li> <li> <p> <b>For MP3</b>: None</p> </li> <li> <p> <b>For MP4</b>: mov-text</p> </li> <li> <p> <b>For MPEG-TS</b>: None</p> </li> <li> <p> <b>For ogg</b>: None</p> </li> <li> <p> <b>For webm</b>: None</p> </li> </ul> </li> <li> <p> <b>Valid Sidecar Caption Formats:</b> Elastic Transcoder supports dfxp (first div element only), scc, srt, and webvtt. If you want ttml or smpte-tt compatible captions, specify dfxp as your output format.</p> <ul> <li> <p> <b>For FMP4</b>: dfxp</p> </li> <li> <p> <b>Non-FMP4 outputs</b>: All sidecar types</p> </li> </ul> <p> <code>fmp4</code> captions have an extension of <code>.ismt</code> </p> </li> </ul></p> #[serde(rename = "Format")] #[serde(skip_serializing_if = "Option::is_none")] pub format: Option<String>, /// <p>The prefix for caption filenames, in the form <i>description</i>-<code>{language}</code>, where:</p> <ul> <li> <p> <i>description</i> is a description of the video.</p> </li> <li> <p> <code>{language}</code> is a literal value that Elastic Transcoder replaces with the two- or three-letter code for the language of the caption in the output file names.</p> </li> </ul> <p>If you don't include <code>{language}</code> in the file name pattern, Elastic Transcoder automatically appends "<code>{language}</code>" to the value that you specify for the description. In addition, Elastic Transcoder automatically appends the count to the end of the segment files.</p> <p>For example, suppose you're transcoding into srt format. When you enter "Sydney-{language}-sunrise", and the language of the captions is English (en), the name of the first caption file is be Sydney-en-sunrise00000.srt.</p> #[serde(rename = "Pattern")] #[serde(skip_serializing_if = "Option::is_none")] pub pattern: Option<String>, } /// <p>A source file for the input sidecar captions used during the transcoding process.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct CaptionSource { /// <p>The encryption settings, if any, that Elastic Transcoder needs to decyrpt your caption sources, or that you want Elastic Transcoder to apply to your caption sources.</p> #[serde(rename = "Encryption")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption: Option<Encryption>, /// <p>The name of the sidecar caption file that you want Elastic Transcoder to include in the output file.</p> #[serde(rename = "Key")] #[serde(skip_serializing_if = "Option::is_none")] pub key: Option<String>, /// <p>The label of the caption shown in the player when choosing a language. We recommend that you put the caption language name here, in the language of the captions.</p> #[serde(rename = "Label")] #[serde(skip_serializing_if = "Option::is_none")] pub label: Option<String>, /// <p>A string that specifies the language of the caption. If you specified multiple inputs with captions, the caption language must match in order to be included in the output. Specify this as one of:</p> <ul> <li> <p>2-character ISO 639-1 code</p> </li> <li> <p>3-character ISO 639-2 code</p> </li> </ul> <p>For more information on ISO language codes and language names, see the List of ISO 639-1 codes.</p> #[serde(rename = "Language")] #[serde(skip_serializing_if = "Option::is_none")] pub language: Option<String>, /// <p>For clip generation or captions that do not start at the same time as the associated video file, the <code>TimeOffset</code> tells Elastic Transcoder how much of the video to encode before including captions.</p> <p>Specify the TimeOffset in the form [+-]SS.sss or [+-]HH:mm:SS.ss.</p> #[serde(rename = "TimeOffset")] #[serde(skip_serializing_if = "Option::is_none")] pub time_offset: Option<String>, } /// <p>The captions to be created, if any.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Captions { /// <p>The array of file formats for the output captions. If you leave this value blank, Elastic Transcoder returns an error.</p> #[serde(rename = "CaptionFormats")] #[serde(skip_serializing_if = "Option::is_none")] pub caption_formats: Option<Vec<CaptionFormat>>, } /// <p>Settings for one clip in a composition. All jobs in a playlist must have the same clip settings.</p> #[derive(Default, Debug, Clone, PartialEq)] pub struct Clip { /// <p>Settings that determine when a clip begins and how long it lasts.</p> pub time_span: Option<TimeSpan>, } /// <p>The <code>CreateJobOutput</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateJobOutput { /// <p>Information about the album art that you want Elastic Transcoder to add to the file during transcoding. You can specify up to twenty album artworks for each output. Settings for each artwork must be defined in the job for the current output.</p> #[serde(rename = "AlbumArt")] #[serde(skip_serializing_if = "Option::is_none")] pub album_art: Option<JobAlbumArt>, /// <p>You can configure Elastic Transcoder to transcode captions, or subtitles, from one format to another. All captions must be in UTF-8. Elastic Transcoder supports two types of captions:</p> <ul> <li> <p> <b>Embedded:</b> Embedded captions are included in the same file as the audio and video. Elastic Transcoder supports only one embedded caption per language, to a maximum of 300 embedded captions per file.</p> <p>Valid input values include: <code>CEA-608 (EIA-608</code>, first non-empty channel only), <code>CEA-708 (EIA-708</code>, first non-empty channel only), and <code>mov-text</code> </p> <p>Valid outputs include: <code>mov-text</code> </p> <p>Elastic Transcoder supports a maximum of one embedded format per output.</p> </li> <li> <p> <b>Sidecar:</b> Sidecar captions are kept in a separate metadata file from the audio and video data. Sidecar captions require a player that is capable of understanding the relationship between the video file and the sidecar file. Elastic Transcoder supports only one sidecar caption per language, to a maximum of 20 sidecar captions per file.</p> <p>Valid input values include: <code>dfxp</code> (first div element only), <code>ebu-tt</code>, <code>scc</code>, <code>smpt</code>, <code>srt</code>, <code>ttml</code> (first div element only), and <code>webvtt</code> </p> <p>Valid outputs include: <code>dfxp</code> (first div element only), <code>scc</code>, <code>srt</code>, and <code>webvtt</code>.</p> </li> </ul> <p>If you want ttml or smpte-tt compatible captions, specify dfxp as your output format.</p> <p>Elastic Transcoder does not support OCR (Optical Character Recognition), does not accept pictures as a valid input for captions, and is not available for audio-only transcoding. Elastic Transcoder does not preserve text formatting (for example, italics) during the transcoding process.</p> <p>To remove captions or leave the captions empty, set <code>Captions</code> to null. To pass through existing captions unchanged, set the <code>MergePolicy</code> to <code>MergeRetain</code>, and pass in a null <code>CaptionSources</code> array.</p> <p>For more information on embedded files, see the Subtitles Wikipedia page.</p> <p>For more information on sidecar files, see the Extensible Metadata Platform and Sidecar file Wikipedia pages.</p> #[serde(rename = "Captions")] #[serde(skip_serializing_if = "Option::is_none")] pub captions: Option<Captions>, /// <p>You can specify encryption settings for any output files that you want to use for a transcoding job. This includes the output file and any watermarks, thumbnails, album art, or captions that you want to use. You must specify encryption settings for each file individually.</p> #[serde(rename = "Encryption")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption: Option<Encryption>, /// <p> The name to assign to the transcoded file. Elastic Transcoder saves the file in the Amazon S3 bucket specified by the <code>OutputBucket</code> object in the pipeline that is specified by the pipeline ID. If a file with the specified name already exists in the output bucket, the job fails. </p> #[serde(rename = "Key")] #[serde(skip_serializing_if = "Option::is_none")] pub key: Option<String>, /// <p> The <code>Id</code> of the preset to use for this job. The preset determines the audio, video, and thumbnail settings that Elastic Transcoder uses for transcoding. </p> #[serde(rename = "PresetId")] #[serde(skip_serializing_if = "Option::is_none")] pub preset_id: Option<String>, /// <p> The number of degrees clockwise by which you want Elastic Transcoder to rotate the output relative to the input. Enter one of the following values: <code>auto</code>, <code>0</code>, <code>90</code>, <code>180</code>, <code>270</code>. The value <code>auto</code> generally works only if the file that you're transcoding contains rotation metadata. </p> #[serde(rename = "Rotate")] #[serde(skip_serializing_if = "Option::is_none")] pub rotate: Option<String>, /// <p><important> <p>(Outputs in Fragmented MP4 or MPEG-TS format only.</p> </important> <p>If you specify a preset in <code>PresetId</code> for which the value of <code>Container</code> is <code>fmp4</code> (Fragmented MP4) or <code>ts</code> (MPEG-TS), <code>SegmentDuration</code> is the target maximum duration of each segment in seconds. For <code>HLSv3</code> format playlists, each media segment is stored in a separate <code>.ts</code> file. For <code>HLSv4</code> and <code>Smooth</code> playlists, all media segments for an output are stored in a single file. Each segment is approximately the length of the <code>SegmentDuration</code>, though individual segments might be shorter or longer.</p> <p>The range of valid values is 1 to 60 seconds. If the duration of the video is not evenly divisible by <code>SegmentDuration</code>, the duration of the last segment is the remainder of total length/SegmentDuration.</p> <p>Elastic Transcoder creates an output-specific playlist for each output <code>HLS</code> output that you specify in OutputKeys. To add an output to the master playlist for this job, include it in the <code>OutputKeys</code> of the associated playlist.</p></p> #[serde(rename = "SegmentDuration")] #[serde(skip_serializing_if = "Option::is_none")] pub segment_duration: Option<String>, /// <p>The encryption settings, if any, that you want Elastic Transcoder to apply to your thumbnail.</p> #[serde(rename = "ThumbnailEncryption")] #[serde(skip_serializing_if = "Option::is_none")] pub thumbnail_encryption: Option<Encryption>, /// <p>Whether you want Elastic Transcoder to create thumbnails for your videos and, if so, how you want Elastic Transcoder to name the files.</p> <p>If you don't want Elastic Transcoder to create thumbnails, specify "".</p> <p>If you do want Elastic Transcoder to create thumbnails, specify the information that you want to include in the file name for each thumbnail. You can specify the following values in any sequence:</p> <ul> <li> <p> <b> <code>{count}</code> (Required)</b>: If you want to create thumbnails, you must include <code>{count}</code> in the <code>ThumbnailPattern</code> object. Wherever you specify <code>{count}</code>, Elastic Transcoder adds a five-digit sequence number (beginning with <b>00001</b>) to thumbnail file names. The number indicates where a given thumbnail appears in the sequence of thumbnails for a transcoded file. </p> <important> <p>If you specify a literal value and/or <code>{resolution}</code> but you omit <code>{count}</code>, Elastic Transcoder returns a validation error and does not create the job.</p> </important> </li> <li> <p> <b>Literal values (Optional)</b>: You can specify literal values anywhere in the <code>ThumbnailPattern</code> object. For example, you can include them as a file name prefix or as a delimiter between <code>{resolution}</code> and <code>{count}</code>. </p> </li> <li> <p> <b> <code>{resolution}</code> (Optional)</b>: If you want Elastic Transcoder to include the resolution in the file name, include <code>{resolution}</code> in the <code>ThumbnailPattern</code> object. </p> </li> </ul> <p>When creating thumbnails, Elastic Transcoder automatically saves the files in the format (.jpg or .png) that appears in the preset that you specified in the <code>PresetID</code> value of <code>CreateJobOutput</code>. Elastic Transcoder also appends the applicable file name extension.</p> #[serde(rename = "ThumbnailPattern")] #[serde(skip_serializing_if = "Option::is_none")] pub thumbnail_pattern: Option<String>, /// <p>Information about the watermarks that you want Elastic Transcoder to add to the video during transcoding. You can specify up to four watermarks for each output. Settings for each watermark must be defined in the preset for the current output.</p> #[serde(rename = "Watermarks")] #[serde(skip_serializing_if = "Option::is_none")] pub watermarks: Option<Vec<JobWatermark>>, } /// <p>Information about the master playlist.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateJobPlaylist { /// <p>The format of the output playlist. Valid formats include <code>HLSv3</code>, <code>HLSv4</code>, and <code>Smooth</code>.</p> #[serde(rename = "Format")] #[serde(skip_serializing_if = "Option::is_none")] pub format: Option<String>, /// <p>The HLS content protection settings, if any, that you want Elastic Transcoder to apply to the output files associated with this playlist.</p> #[serde(rename = "HlsContentProtection")] #[serde(skip_serializing_if = "Option::is_none")] pub hls_content_protection: Option<HlsContentProtection>, /// <p><p>The name that you want Elastic Transcoder to assign to the master playlist, for example, nyc-vacation.m3u8. If the name includes a <code>/</code> character, the section of the name before the last <code>/</code> must be identical for all <code>Name</code> objects. If you create more than one master playlist, the values of all <code>Name</code> objects must be unique.</p> <note> <p> Elastic Transcoder automatically appends the relevant file extension to the file name (<code>.m3u8</code> for <code>HLSv3</code> and <code>HLSv4</code> playlists, and <code>.ism</code> and <code>.ismc</code> for <code>Smooth</code> playlists). If you include a file extension in <code>Name</code>, the file name will have two extensions.</p> </note></p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>For each output in this job that you want to include in a master playlist, the value of the <code>Outputs:Key</code> object. </p> <ul> <li> <p>If your output is not <code>HLS</code> or does not have a segment duration set, the name of the output file is a concatenation of <code>OutputKeyPrefix</code> and <code>Outputs:Key</code>:</p> <p>OutputKeyPrefix<code>Outputs:Key</code> </p> </li> <li> <p>If your output is <code>HLSv3</code> and has a segment duration set, or is not included in a playlist, Elastic Transcoder creates an output playlist file with a file extension of <code>.m3u8</code>, and a series of <code>.ts</code> files that include a five-digit sequential counter beginning with 00000:</p> <p>OutputKeyPrefix<code>Outputs:Key</code>.m3u8</p> <p>OutputKeyPrefix<code>Outputs:Key</code>00000.ts</p> </li> <li> <p>If your output is <code>HLSv4</code>, has a segment duration set, and is included in an <code>HLSv4</code> playlist, Elastic Transcoder creates an output playlist file with a file extension of <code>_v4.m3u8</code>. If the output is video, Elastic Transcoder also creates an output file with an extension of <code>_iframe.m3u8</code>:</p> <p>OutputKeyPrefix<code>Outputs:Key</code>_v4.m3u8</p> <p>OutputKeyPrefix<code>Outputs:Key</code>_iframe.m3u8</p> <p>OutputKeyPrefix<code>Outputs:Key</code>.ts</p> </li> </ul> <p>Elastic Transcoder automatically appends the relevant file extension to the file name. If you include a file extension in Output Key, the file name will have two extensions.</p> <p>If you include more than one output in a playlist, any segment duration settings, clip settings, or caption settings must be the same for all outputs in the playlist. For <code>Smooth</code> playlists, the <code>Audio:Profile</code>, <code>Video:Profile</code>, and <code>Video:FrameRate</code> to <code>Video:KeyframesMaxDist</code> ratio must be the same for all outputs.</p> #[serde(rename = "OutputKeys")] #[serde(skip_serializing_if = "Option::is_none")] pub output_keys: Option<Vec<String>>, /// <p>The DRM settings, if any, that you want Elastic Transcoder to apply to the output files associated with this playlist.</p> #[serde(rename = "PlayReadyDrm")] #[serde(skip_serializing_if = "Option::is_none")] pub play_ready_drm: Option<PlayReadyDrm>, } /// <p>The <code>CreateJobRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateJobRequest { /// <p>A section of the request body that provides information about the file that is being transcoded.</p> #[serde(rename = "Input")] #[serde(skip_serializing_if = "Option::is_none")] pub input: Option<JobInput>, /// <p>A section of the request body that provides information about the files that are being transcoded.</p> #[serde(rename = "Inputs")] #[serde(skip_serializing_if = "Option::is_none")] pub inputs: Option<Vec<JobInput>>, /// <p> A section of the request body that provides information about the transcoded (target) file. We strongly recommend that you use the <code>Outputs</code> syntax instead of the <code>Output</code> syntax. </p> #[serde(rename = "Output")] #[serde(skip_serializing_if = "Option::is_none")] pub output: Option<CreateJobOutput>, /// <p>The value, if any, that you want Elastic Transcoder to prepend to the names of all files that this job creates, including output files, thumbnails, and playlists.</p> #[serde(rename = "OutputKeyPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub output_key_prefix: Option<String>, /// <p> A section of the request body that provides information about the transcoded (target) files. We recommend that you use the <code>Outputs</code> syntax instead of the <code>Output</code> syntax. </p> #[serde(rename = "Outputs")] #[serde(skip_serializing_if = "Option::is_none")] pub outputs: Option<Vec<CreateJobOutput>>, /// <p>The <code>Id</code> of the pipeline that you want Elastic Transcoder to use for transcoding. The pipeline determines several settings, including the Amazon S3 bucket from which Elastic Transcoder gets the files to transcode and the bucket into which Elastic Transcoder puts the transcoded files.</p> #[serde(rename = "PipelineId")] pub pipeline_id: String, /// <p>If you specify a preset in <code>PresetId</code> for which the value of <code>Container</code> is fmp4 (Fragmented MP4) or ts (MPEG-TS), Playlists contains information about the master playlists that you want Elastic Transcoder to create.</p> <p>The maximum number of master playlists in a job is 30.</p> #[serde(rename = "Playlists")] #[serde(skip_serializing_if = "Option::is_none")] pub playlists: Option<Vec<CreateJobPlaylist>>, /// <p>User-defined metadata that you want to associate with an Elastic Transcoder job. You specify metadata in <code>key/value</code> pairs, and you can add up to 10 <code>key/value</code> pairs per job. Elastic Transcoder does not guarantee that <code>key/value</code> pairs are returned in the same order in which you specify them.</p> #[serde(rename = "UserMetadata")] #[serde(skip_serializing_if = "Option::is_none")] pub user_metadata: Option<::std::collections::HashMap<String, String>>, } /// <p>The CreateJobResponse structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateJobResponse { /// <p>A section of the response body that provides information about the job that is created.</p> #[serde(rename = "Job")] #[serde(skip_serializing_if = "Option::is_none")] pub job: Option<Job>, } /// <p>The <code>CreatePipelineRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreatePipelineRequest { /// <p>The AWS Key Management Service (AWS KMS) key that you want to use with this pipeline.</p> <p>If you use either <code>s3</code> or <code>s3-aws-kms</code> as your <code>Encryption:Mode</code>, you don't need to provide a key with your job because a default key, known as an AWS-KMS key, is created for you automatically. You need to provide an AWS-KMS key only if you want to use a non-default AWS-KMS key, or if you are using an <code>Encryption:Mode</code> of <code>aes-cbc-pkcs7</code>, <code>aes-ctr</code>, or <code>aes-gcm</code>.</p> #[serde(rename = "AwsKmsKeyArn")] #[serde(skip_serializing_if = "Option::is_none")] pub aws_kms_key_arn: Option<String>, /// <p><p>The optional <code>ContentConfig</code> object specifies information about the Amazon S3 bucket in which you want Elastic Transcoder to save transcoded files and playlists: which bucket to use, which users you want to have access to the files, the type of access you want users to have, and the storage class that you want to assign to the files.</p> <p>If you specify values for <code>ContentConfig</code>, you must also specify values for <code>ThumbnailConfig</code>.</p> <p>If you specify values for <code>ContentConfig</code> and <code>ThumbnailConfig</code>, omit the <code>OutputBucket</code> object.</p> <ul> <li> <p> <b>Bucket</b>: The Amazon S3 bucket in which you want Elastic Transcoder to save transcoded files and playlists.</p> </li> <li> <p> <b>Permissions</b> (Optional): The Permissions object specifies which users you want to have access to transcoded files and the type of access you want them to have. You can grant permissions to a maximum of 30 users and/or predefined Amazon S3 groups.</p> </li> <li> <p> <b>Grantee Type</b>: Specify the type of value that appears in the <code>Grantee</code> object: </p> <ul> <li> <p> <b>Canonical</b>: The value in the <code>Grantee</code> object is either the canonical user ID for an AWS account or an origin access identity for an Amazon CloudFront distribution. For more information about canonical user IDs, see Access Control List (ACL) Overview in the Amazon Simple Storage Service Developer Guide. For more information about using CloudFront origin access identities to require that users use CloudFront URLs instead of Amazon S3 URLs, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content.</p> <important> <p>A canonical user ID is not the same as an AWS account number.</p> </important> </li> <li> <p> <b>Email</b>: The value in the <code>Grantee</code> object is the registered email address of an AWS account.</p> </li> <li> <p> <b>Group</b>: The value in the <code>Grantee</code> object is one of the following predefined Amazon S3 groups: <code>AllUsers</code>, <code>AuthenticatedUsers</code>, or <code>LogDelivery</code>.</p> </li> </ul> </li> <li> <p> <b>Grantee</b>: The AWS user or group that you want to have access to transcoded files and playlists. To identify the user or group, you can specify the canonical user ID for an AWS account, an origin access identity for a CloudFront distribution, the registered email address of an AWS account, or a predefined Amazon S3 group </p> </li> <li> <p> <b>Access</b>: The permission that you want to give to the AWS user that you specified in <code>Grantee</code>. Permissions are granted on the files that Elastic Transcoder adds to the bucket, including playlists and video files. Valid values include: </p> <ul> <li> <p> <code>READ</code>: The grantee can read the objects and metadata for objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>READ<em>ACP</code>: The grantee can read the object ACL for objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>WRITE</em>ACP</code>: The grantee can write the ACL for the objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>FULL<em>CONTROL</code>: The grantee has <code>READ</code>, <code>READ</em>ACP</code>, and <code>WRITE_ACP</code> permissions for the objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> </ul> </li> <li> <p> <b>StorageClass</b>: The Amazon S3 storage class, <code>Standard</code> or <code>ReducedRedundancy</code>, that you want Elastic Transcoder to assign to the video files and playlists that it stores in your Amazon S3 bucket.</p> </li> </ul></p> #[serde(rename = "ContentConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub content_config: Option<PipelineOutputConfig>, /// <p>The Amazon S3 bucket in which you saved the media files that you want to transcode.</p> #[serde(rename = "InputBucket")] pub input_bucket: String, /// <p>The name of the pipeline. We recommend that the name be unique within the AWS account, but uniqueness is not enforced.</p> <p>Constraints: Maximum 40 characters.</p> #[serde(rename = "Name")] pub name: String, /// <p><p>The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify to report job status.</p> <important> <p>To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.</p> </important> <ul> <li> <p> <b>Progressing</b>: The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process a job in this pipeline. This is the ARN that Amazon SNS returned when you created the topic. For more information, see Create a Topic in the Amazon Simple Notification Service Developer Guide.</p> </li> <li> <p> <b>Complete</b>: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing a job in this pipeline. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> <li> <p> <b>Warning</b>: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition while processing a job in this pipeline. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> <li> <p> <b>Error</b>: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition while processing a job in this pipeline. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> </ul></p> #[serde(rename = "Notifications")] #[serde(skip_serializing_if = "Option::is_none")] pub notifications: Option<Notifications>, /// <p>The Amazon S3 bucket in which you want Elastic Transcoder to save the transcoded files. (Use this, or use ContentConfig:Bucket plus ThumbnailConfig:Bucket.)</p> <p>Specify this value when all of the following are true:</p> <ul> <li> <p>You want to save transcoded files, thumbnails (if any), and playlists (if any) together in one bucket.</p> </li> <li> <p>You do not want to specify the users or groups who have access to the transcoded files, thumbnails, and playlists.</p> </li> <li> <p>You do not want to specify the permissions that Elastic Transcoder grants to the files. </p> <important> <p>When Elastic Transcoder saves files in <code>OutputBucket</code>, it grants full control over the files only to the AWS account that owns the role that is specified by <code>Role</code>.</p> </important> </li> <li> <p>You want to associate the transcoded files and thumbnails with the Amazon S3 Standard storage class.</p> </li> </ul> <p>If you want to save transcoded files and playlists in one bucket and thumbnails in another bucket, specify which users can access the transcoded files or the permissions the users have, or change the Amazon S3 storage class, omit <code>OutputBucket</code> and specify values for <code>ContentConfig</code> and <code>ThumbnailConfig</code> instead.</p> #[serde(rename = "OutputBucket")] #[serde(skip_serializing_if = "Option::is_none")] pub output_bucket: Option<String>, /// <p>The IAM Amazon Resource Name (ARN) for the role that you want Elastic Transcoder to use to create the pipeline.</p> #[serde(rename = "Role")] pub role: String, /// <p><p>The <code>ThumbnailConfig</code> object specifies several values, including the Amazon S3 bucket in which you want Elastic Transcoder to save thumbnail files, which users you want to have access to the files, the type of access you want users to have, and the storage class that you want to assign to the files.</p> <p>If you specify values for <code>ContentConfig</code>, you must also specify values for <code>ThumbnailConfig</code> even if you don't want to create thumbnails.</p> <p>If you specify values for <code>ContentConfig</code> and <code>ThumbnailConfig</code>, omit the <code>OutputBucket</code> object.</p> <ul> <li> <p> <b>Bucket</b>: The Amazon S3 bucket in which you want Elastic Transcoder to save thumbnail files.</p> </li> <li> <p> <b>Permissions</b> (Optional): The <code>Permissions</code> object specifies which users and/or predefined Amazon S3 groups you want to have access to thumbnail files, and the type of access you want them to have. You can grant permissions to a maximum of 30 users and/or predefined Amazon S3 groups.</p> </li> <li> <p> <b>GranteeType</b>: Specify the type of value that appears in the Grantee object: </p> <ul> <li> <p> <b>Canonical</b>: The value in the <code>Grantee</code> object is either the canonical user ID for an AWS account or an origin access identity for an Amazon CloudFront distribution.</p> <important> <p>A canonical user ID is not the same as an AWS account number.</p> </important> </li> <li> <p> <b>Email</b>: The value in the <code>Grantee</code> object is the registered email address of an AWS account. </p> </li> <li> <p> <b>Group</b>: The value in the <code>Grantee</code> object is one of the following predefined Amazon S3 groups: <code>AllUsers</code>, <code>AuthenticatedUsers</code>, or <code>LogDelivery</code>.</p> </li> </ul> </li> <li> <p> <b>Grantee</b>: The AWS user or group that you want to have access to thumbnail files. To identify the user or group, you can specify the canonical user ID for an AWS account, an origin access identity for a CloudFront distribution, the registered email address of an AWS account, or a predefined Amazon S3 group. </p> </li> <li> <p> <b>Access</b>: The permission that you want to give to the AWS user that you specified in <code>Grantee</code>. Permissions are granted on the thumbnail files that Elastic Transcoder adds to the bucket. Valid values include: </p> <ul> <li> <p> <code>READ</code>: The grantee can read the thumbnails and metadata for objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>READ<em>ACP</code>: The grantee can read the object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>WRITE</em>ACP</code>: The grantee can write the ACL for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>FULL<em>CONTROL</code>: The grantee has <code>READ</code>, <code>READ</em>ACP</code>, and <code>WRITE_ACP</code> permissions for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> </ul> </li> <li> <p> <b>StorageClass</b>: The Amazon S3 storage class, <code>Standard</code> or <code>ReducedRedundancy</code>, that you want Elastic Transcoder to assign to the thumbnails that it stores in your Amazon S3 bucket.</p> </li> </ul></p> #[serde(rename = "ThumbnailConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub thumbnail_config: Option<PipelineOutputConfig>, } /// <p>When you create a pipeline, Elastic Transcoder returns the values that you specified in the request.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreatePipelineResponse { /// <p>A section of the response body that provides information about the pipeline that is created.</p> #[serde(rename = "Pipeline")] #[serde(skip_serializing_if = "Option::is_none")] pub pipeline: Option<Pipeline>, /// <p>Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.</p> <p>Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.</p> #[serde(rename = "Warnings")] #[serde(skip_serializing_if = "Option::is_none")] pub warnings: Option<Vec<Warning>>, } /// <p>The <code>CreatePresetRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreatePresetRequest { /// <p>A section of the request body that specifies the audio parameters.</p> #[serde(rename = "Audio")] #[serde(skip_serializing_if = "Option::is_none")] pub audio: Option<AudioParameters>, /// <p>The container type for the output file. Valid values include <code>flac</code>, <code>flv</code>, <code>fmp4</code>, <code>gif</code>, <code>mp3</code>, <code>mp4</code>, <code>mpg</code>, <code>mxf</code>, <code>oga</code>, <code>ogg</code>, <code>ts</code>, and <code>webm</code>.</p> #[serde(rename = "Container")] pub container: String, /// <p>A description of the preset.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The name of the preset. We recommend that the name be unique within the AWS account, but uniqueness is not enforced.</p> #[serde(rename = "Name")] pub name: String, /// <p>A section of the request body that specifies the thumbnail parameters, if any.</p> #[serde(rename = "Thumbnails")] #[serde(skip_serializing_if = "Option::is_none")] pub thumbnails: Option<Thumbnails>, /// <p>A section of the request body that specifies the video parameters.</p> #[serde(rename = "Video")] #[serde(skip_serializing_if = "Option::is_none")] pub video: Option<VideoParameters>, } /// <p>The <code>CreatePresetResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreatePresetResponse { /// <p>A section of the response body that provides information about the preset that is created.</p> #[serde(rename = "Preset")] #[serde(skip_serializing_if = "Option::is_none")] pub preset: Option<Preset>, /// <p>If the preset settings don't comply with the standards for the video codec but Elastic Transcoder created the preset, this message explains the reason the preset settings don't meet the standard. Elastic Transcoder created the preset because the settings might produce acceptable output.</p> #[serde(rename = "Warning")] #[serde(skip_serializing_if = "Option::is_none")] pub warning: Option<String>, } /// <p>The <code>DeletePipelineRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeletePipelineRequest { /// <p>The identifier of the pipeline that you want to delete.</p> #[serde(rename = "Id")] pub id: String, } /// <p>The <code>DeletePipelineResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeletePipelineResponse {} /// <p>The <code>DeletePresetRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeletePresetRequest { /// <p>The identifier of the preset for which you want to get detailed information.</p> #[serde(rename = "Id")] pub id: String, } /// <p>The <code>DeletePresetResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeletePresetResponse {} /// <p>The detected properties of the input file. Elastic Transcoder identifies these values from the input file.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct DetectedProperties { /// <p>The detected duration of the input file, in milliseconds.</p> #[serde(rename = "DurationMillis")] #[serde(skip_serializing_if = "Option::is_none")] pub duration_millis: Option<i64>, /// <p>The detected file size of the input file, in bytes.</p> #[serde(rename = "FileSize")] #[serde(skip_serializing_if = "Option::is_none")] pub file_size: Option<i64>, /// <p>The detected frame rate of the input file, in frames per second.</p> #[serde(rename = "FrameRate")] #[serde(skip_serializing_if = "Option::is_none")] pub frame_rate: Option<String>, /// <p>The detected height of the input file, in pixels.</p> #[serde(rename = "Height")] #[serde(skip_serializing_if = "Option::is_none")] pub height: Option<i64>, /// <p>The detected width of the input file, in pixels.</p> #[serde(rename = "Width")] #[serde(skip_serializing_if = "Option::is_none")] pub width: Option<i64>, } /// <p>The encryption settings, if any, that are used for decrypting your input files or encrypting your output files. If your input file is encrypted, you must specify the mode that Elastic Transcoder uses to decrypt your file, otherwise you must specify the mode you want Elastic Transcoder to use to encrypt your output files.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Encryption { /// <p>The series of random bits created by a random bit generator, unique for every encryption operation, that you used to encrypt your input files or that you want Elastic Transcoder to use to encrypt your output files. The initialization vector must be base64-encoded, and it must be exactly 16 bytes long before being base64-encoded.</p> #[serde(rename = "InitializationVector")] #[serde(skip_serializing_if = "Option::is_none")] pub initialization_vector: Option<String>, /// <p>The data encryption key that you want Elastic Transcoder to use to encrypt your output file, or that was used to encrypt your input file. The key must be base64-encoded and it must be one of the following bit lengths before being base64-encoded:</p> <p> <code>128</code>, <code>192</code>, or <code>256</code>. </p> <p>The key must also be encrypted by using the Amazon Key Management Service.</p> #[serde(rename = "Key")] #[serde(skip_serializing_if = "Option::is_none")] pub key: Option<String>, /// <p>The MD5 digest of the key that you used to encrypt your input file, or that you want Elastic Transcoder to use to encrypt your output file. Elastic Transcoder uses the key digest as a checksum to make sure your key was not corrupted in transit. The key MD5 must be base64-encoded, and it must be exactly 16 bytes long before being base64-encoded.</p> #[serde(rename = "KeyMd5")] #[serde(skip_serializing_if = "Option::is_none")] pub key_md_5: Option<String>, /// <p><p>The specific server-side encryption mode that you want Elastic Transcoder to use when decrypting your input files or encrypting your output files. Elastic Transcoder supports the following options:</p> <ul> <li> <p> <b>s3:</b> Amazon S3 creates and manages the keys used for encrypting your files.</p> </li> <li> <p> <b>s3-aws-kms:</b> Amazon S3 calls the Amazon Key Management Service, which creates and manages the keys that are used for encrypting your files. If you specify <code>s3-aws-kms</code> and you don't want to use the default key, you must add the AWS-KMS key that you want to use to your pipeline.</p> </li> <li> <p> <b>aes-cbc-pkcs7:</b> A padded cipher-block mode of operation originally used for HLS files.</p> </li> <li> <p> <b>aes-ctr:</b> AES Counter Mode.</p> </li> <li> <p> <b>aes-gcm:</b> AES Galois Counter Mode, a mode of operation that is an authenticated encryption format, meaning that a file, key, or initialization vector that has been tampered with fails the decryption process.</p> </li> </ul> <p>For all three AES options, you must provide the following settings, which must be base64-encoded:</p> <ul> <li> <p> <b>Key</b> </p> </li> <li> <p> <b>Key MD5</b> </p> </li> <li> <p> <b>Initialization Vector</b> </p> </li> </ul> <important> <p>For the AES modes, your private encryption keys and your unencrypted data are never stored by AWS; therefore, it is important that you safely manage your encryption keys. If you lose them, you won't be able to unencrypt your data.</p> </important></p> #[serde(rename = "Mode")] #[serde(skip_serializing_if = "Option::is_none")] pub mode: Option<String>, } /// <p>The HLS content protection settings, if any, that you want Elastic Transcoder to apply to your output files.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct HlsContentProtection { /// <p>If Elastic Transcoder is generating your key for you, you must leave this field blank.</p> <p>The series of random bits created by a random bit generator, unique for every encryption operation, that you want Elastic Transcoder to use to encrypt your output files. The initialization vector must be base64-encoded, and it must be exactly 16 bytes before being base64-encoded.</p> #[serde(rename = "InitializationVector")] #[serde(skip_serializing_if = "Option::is_none")] pub initialization_vector: Option<String>, /// <p>If you want Elastic Transcoder to generate a key for you, leave this field blank.</p> <p>If you choose to supply your own key, you must encrypt the key by using AWS KMS. The key must be base64-encoded, and it must be one of the following bit lengths before being base64-encoded:</p> <p> <code>128</code>, <code>192</code>, or <code>256</code>. </p> #[serde(rename = "Key")] #[serde(skip_serializing_if = "Option::is_none")] pub key: Option<String>, /// <p>If Elastic Transcoder is generating your key for you, you must leave this field blank.</p> <p>The MD5 digest of the key that you want Elastic Transcoder to use to encrypt your output file, and that you want Elastic Transcoder to use as a checksum to make sure your key was not corrupted in transit. The key MD5 must be base64-encoded, and it must be exactly 16 bytes before being base64- encoded.</p> #[serde(rename = "KeyMd5")] #[serde(skip_serializing_if = "Option::is_none")] pub key_md_5: Option<String>, /// <p>Specify whether you want Elastic Transcoder to write your HLS license key to an Amazon S3 bucket. If you choose <code>WithVariantPlaylists</code>, <code>LicenseAcquisitionUrl</code> must be left blank and Elastic Transcoder writes your data key into the same bucket as the associated playlist.</p> #[serde(rename = "KeyStoragePolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub key_storage_policy: Option<String>, /// <p>The location of the license key required to decrypt your HLS playlist. The URL must be an absolute path, and is referenced in the URI attribute of the EXT-X-KEY metadata tag in the playlist file.</p> #[serde(rename = "LicenseAcquisitionUrl")] #[serde(skip_serializing_if = "Option::is_none")] pub license_acquisition_url: Option<String>, /// <p>The content protection method for your output. The only valid value is: <code>aes-128</code>.</p> <p>This value is written into the method attribute of the <code>EXT-X-KEY</code> metadata tag in the output playlist.</p> #[serde(rename = "Method")] #[serde(skip_serializing_if = "Option::is_none")] pub method: Option<String>, } /// <p>The captions to be created, if any.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct InputCaptions { /// <p>Source files for the input sidecar captions used during the transcoding process. To omit all sidecar captions, leave <code>CaptionSources</code> blank.</p> #[serde(rename = "CaptionSources")] #[serde(skip_serializing_if = "Option::is_none")] pub caption_sources: Option<Vec<CaptionSource>>, /// <p>A policy that determines how Elastic Transcoder handles the existence of multiple captions.</p> <ul> <li> <p> <b>MergeOverride:</b> Elastic Transcoder transcodes both embedded and sidecar captions into outputs. If captions for a language are embedded in the input file and also appear in a sidecar file, Elastic Transcoder uses the sidecar captions and ignores the embedded captions for that language.</p> </li> <li> <p> <b>MergeRetain:</b> Elastic Transcoder transcodes both embedded and sidecar captions into outputs. If captions for a language are embedded in the input file and also appear in a sidecar file, Elastic Transcoder uses the embedded captions and ignores the sidecar captions for that language. If <code>CaptionSources</code> is empty, Elastic Transcoder omits all sidecar captions from the output files.</p> </li> <li> <p> <b>Override:</b> Elastic Transcoder transcodes only the sidecar captions that you specify in <code>CaptionSources</code>.</p> </li> </ul> <p> <code>MergePolicy</code> cannot be null.</p> #[serde(rename = "MergePolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub merge_policy: Option<String>, } /// <p>A section of the response body that provides information about the job that is created.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Job { /// <p>The Amazon Resource Name (ARN) for the job.</p> #[serde(rename = "Arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p>The identifier that Elastic Transcoder assigned to the job. You use this value to get settings for the job or to delete the job.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p>A section of the request or response body that provides information about the file that is being transcoded.</p> #[serde(rename = "Input")] #[serde(skip_serializing_if = "Option::is_none")] pub input: Option<JobInput>, /// <p>Information about the files that you're transcoding. If you specified multiple files for this job, Elastic Transcoder stitches the files together to make one output.</p> #[serde(rename = "Inputs")] #[serde(skip_serializing_if = "Option::is_none")] pub inputs: Option<Vec<JobInput>>, /// <p>If you specified one output for a job, information about that output. If you specified multiple outputs for a job, the Output object lists information about the first output. This duplicates the information that is listed for the first output in the Outputs object.</p> <important> <p>Outputs recommended instead.</p> </important> <p>A section of the request or response body that provides information about the transcoded (target) file. </p> #[serde(rename = "Output")] #[serde(skip_serializing_if = "Option::is_none")] pub output: Option<JobOutput>, /// <p>The value, if any, that you want Elastic Transcoder to prepend to the names of all files that this job creates, including output files, thumbnails, and playlists. We recommend that you add a / or some other delimiter to the end of the <code>OutputKeyPrefix</code>.</p> #[serde(rename = "OutputKeyPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub output_key_prefix: Option<String>, /// <p>Information about the output files. We recommend that you use the <code>Outputs</code> syntax for all jobs, even when you want Elastic Transcoder to transcode a file into only one format. Do not use both the <code>Outputs</code> and <code>Output</code> syntaxes in the same request. You can create a maximum of 30 outputs per job. </p> <p>If you specify more than one output for a job, Elastic Transcoder creates the files for each output in the order in which you specify them in the job.</p> #[serde(rename = "Outputs")] #[serde(skip_serializing_if = "Option::is_none")] pub outputs: Option<Vec<JobOutput>>, /// <p> The <code>Id</code> of the pipeline that you want Elastic Transcoder to use for transcoding. The pipeline determines several settings, including the Amazon S3 bucket from which Elastic Transcoder gets the files to transcode and the bucket into which Elastic Transcoder puts the transcoded files. </p> #[serde(rename = "PipelineId")] #[serde(skip_serializing_if = "Option::is_none")] pub pipeline_id: Option<String>, /// <p><important> <p>Outputs in Fragmented MP4 or MPEG-TS format only.</p> </important> <p>If you specify a preset in <code>PresetId</code> for which the value of <code>Container</code> is fmp4 (Fragmented MP4) or ts (MPEG-TS), <code>Playlists</code> contains information about the master playlists that you want Elastic Transcoder to create.</p> <p>The maximum number of master playlists in a job is 30.</p></p> #[serde(rename = "Playlists")] #[serde(skip_serializing_if = "Option::is_none")] pub playlists: Option<Vec<Playlist>>, /// <p> The status of the job: <code>Submitted</code>, <code>Progressing</code>, <code>Complete</code>, <code>Canceled</code>, or <code>Error</code>. </p> #[serde(rename = "Status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p>Details about the timing of a job.</p> #[serde(rename = "Timing")] #[serde(skip_serializing_if = "Option::is_none")] pub timing: Option<Timing>, /// <p><p>User-defined metadata that you want to associate with an Elastic Transcoder job. You specify metadata in <code>key/value</code> pairs, and you can add up to 10 <code>key/value</code> pairs per job. Elastic Transcoder does not guarantee that <code>key/value</code> pairs are returned in the same order in which you specify them.</p> <p>Metadata <code>keys</code> and <code>values</code> must use characters from the following list:</p> <ul> <li> <p> <code>0-9</code> </p> </li> <li> <p> <code>A-Z</code> and <code>a-z</code> </p> </li> <li> <p> <code>Space</code> </p> </li> <li> <p>The following symbols: <code>_.:/=+-%@</code> </p> </li> </ul></p> #[serde(rename = "UserMetadata")] #[serde(skip_serializing_if = "Option::is_none")] pub user_metadata: Option<::std::collections::HashMap<String, String>>, } /// <p>The .jpg or .png file associated with an audio file.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct JobAlbumArt { /// <p>The file to be used as album art. There can be multiple artworks associated with an audio file, to a maximum of 20. Valid formats are <code>.jpg</code> and <code>.png</code> </p> #[serde(rename = "Artwork")] #[serde(skip_serializing_if = "Option::is_none")] pub artwork: Option<Vec<Artwork>>, /// <p><p>A policy that determines how Elastic Transcoder handles the existence of multiple album artwork files.</p> <ul> <li> <p> <code>Replace:</code> The specified album art replaces any existing album art.</p> </li> <li> <p> <code>Prepend:</code> The specified album art is placed in front of any existing album art.</p> </li> <li> <p> <code>Append:</code> The specified album art is placed after any existing album art.</p> </li> <li> <p> <code>Fallback:</code> If the original input file contains artwork, Elastic Transcoder uses that artwork for the output. If the original input does not contain artwork, Elastic Transcoder uses the specified album art file.</p> </li> </ul></p> #[serde(rename = "MergePolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub merge_policy: Option<String>, } /// <p>Information about the file that you're transcoding.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct JobInput { /// <p> The aspect ratio of the input file. If you want Elastic Transcoder to automatically detect the aspect ratio of the input file, specify <code>auto</code>. If you want to specify the aspect ratio for the output file, enter one of the following values: </p> <p> <code>1:1</code>, <code>4:3</code>, <code>3:2</code>, <code>16:9</code> </p> <p> If you specify a value other than <code>auto</code>, Elastic Transcoder disables automatic detection of the aspect ratio. </p> #[serde(rename = "AspectRatio")] #[serde(skip_serializing_if = "Option::is_none")] pub aspect_ratio: Option<String>, /// <p>The container type for the input file. If you want Elastic Transcoder to automatically detect the container type of the input file, specify <code>auto</code>. If you want to specify the container type for the input file, enter one of the following values: </p> <p> <code>3gp</code>, <code>aac</code>, <code>asf</code>, <code>avi</code>, <code>divx</code>, <code>flv</code>, <code>m4a</code>, <code>mkv</code>, <code>mov</code>, <code>mp3</code>, <code>mp4</code>, <code>mpeg</code>, <code>mpeg-ps</code>, <code>mpeg-ts</code>, <code>mxf</code>, <code>ogg</code>, <code>vob</code>, <code>wav</code>, <code>webm</code> </p> #[serde(rename = "Container")] #[serde(skip_serializing_if = "Option::is_none")] pub container: Option<String>, /// <p>The detected properties of the input file.</p> #[serde(rename = "DetectedProperties")] #[serde(skip_serializing_if = "Option::is_none")] pub detected_properties: Option<DetectedProperties>, /// <p>The encryption settings, if any, that are used for decrypting your input files. If your input file is encrypted, you must specify the mode that Elastic Transcoder uses to decrypt your file.</p> #[serde(rename = "Encryption")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption: Option<Encryption>, /// <p>The frame rate of the input file. If you want Elastic Transcoder to automatically detect the frame rate of the input file, specify <code>auto</code>. If you want to specify the frame rate for the input file, enter one of the following values: </p> <p> <code>10</code>, <code>15</code>, <code>23.97</code>, <code>24</code>, <code>25</code>, <code>29.97</code>, <code>30</code>, <code>60</code> </p> <p>If you specify a value other than <code>auto</code>, Elastic Transcoder disables automatic detection of the frame rate.</p> #[serde(rename = "FrameRate")] #[serde(skip_serializing_if = "Option::is_none")] pub frame_rate: Option<String>, /// <p>You can configure Elastic Transcoder to transcode captions, or subtitles, from one format to another. All captions must be in UTF-8. Elastic Transcoder supports two types of captions:</p> <ul> <li> <p> <b>Embedded:</b> Embedded captions are included in the same file as the audio and video. Elastic Transcoder supports only one embedded caption per language, to a maximum of 300 embedded captions per file.</p> <p>Valid input values include: <code>CEA-608 (EIA-608</code>, first non-empty channel only), <code>CEA-708 (EIA-708</code>, first non-empty channel only), and <code>mov-text</code> </p> <p>Valid outputs include: <code>mov-text</code> </p> <p>Elastic Transcoder supports a maximum of one embedded format per output.</p> </li> <li> <p> <b>Sidecar:</b> Sidecar captions are kept in a separate metadata file from the audio and video data. Sidecar captions require a player that is capable of understanding the relationship between the video file and the sidecar file. Elastic Transcoder supports only one sidecar caption per language, to a maximum of 20 sidecar captions per file.</p> <p>Valid input values include: <code>dfxp</code> (first div element only), <code>ebu-tt</code>, <code>scc</code>, <code>smpt</code>, <code>srt</code>, <code>ttml</code> (first div element only), and <code>webvtt</code> </p> <p>Valid outputs include: <code>dfxp</code> (first div element only), <code>scc</code>, <code>srt</code>, and <code>webvtt</code>.</p> </li> </ul> <p>If you want ttml or smpte-tt compatible captions, specify dfxp as your output format.</p> <p>Elastic Transcoder does not support OCR (Optical Character Recognition), does not accept pictures as a valid input for captions, and is not available for audio-only transcoding. Elastic Transcoder does not preserve text formatting (for example, italics) during the transcoding process.</p> <p>To remove captions or leave the captions empty, set <code>Captions</code> to null. To pass through existing captions unchanged, set the <code>MergePolicy</code> to <code>MergeRetain</code>, and pass in a null <code>CaptionSources</code> array.</p> <p>For more information on embedded files, see the Subtitles Wikipedia page.</p> <p>For more information on sidecar files, see the Extensible Metadata Platform and Sidecar file Wikipedia pages.</p> #[serde(rename = "InputCaptions")] #[serde(skip_serializing_if = "Option::is_none")] pub input_captions: Option<InputCaptions>, /// <p>Whether the input file is interlaced. If you want Elastic Transcoder to automatically detect whether the input file is interlaced, specify <code>auto</code>. If you want to specify whether the input file is interlaced, enter one of the following values:</p> <p> <code>true</code>, <code>false</code> </p> <p>If you specify a value other than <code>auto</code>, Elastic Transcoder disables automatic detection of interlacing.</p> #[serde(rename = "Interlaced")] #[serde(skip_serializing_if = "Option::is_none")] pub interlaced: Option<String>, /// <p> The name of the file to transcode. Elsewhere in the body of the JSON block is the the ID of the pipeline to use for processing the job. The <code>InputBucket</code> object in that pipeline tells Elastic Transcoder which Amazon S3 bucket to get the file from. </p> <p>If the file name includes a prefix, such as <code>cooking/lasagna.mpg</code>, include the prefix in the key. If the file isn't in the specified bucket, Elastic Transcoder returns an error.</p> #[serde(rename = "Key")] #[serde(skip_serializing_if = "Option::is_none")] pub key: Option<String>, /// <p>This value must be <code>auto</code>, which causes Elastic Transcoder to automatically detect the resolution of the input file.</p> #[serde(rename = "Resolution")] #[serde(skip_serializing_if = "Option::is_none")] pub resolution: Option<String>, /// <p>Settings for clipping an input. Each input can have different clip settings.</p> #[serde(rename = "TimeSpan")] #[serde(skip_serializing_if = "Option::is_none")] pub time_span: Option<TimeSpan>, } /// <p><important> <p>Outputs recommended instead.</p> </important> <p>If you specified one output for a job, information about that output. If you specified multiple outputs for a job, the <code>Output</code> object lists information about the first output. This duplicates the information that is listed for the first output in the <code>Outputs</code> object.</p></p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct JobOutput { /// <p>The album art to be associated with the output file, if any.</p> #[serde(rename = "AlbumArt")] #[serde(skip_serializing_if = "Option::is_none")] pub album_art: Option<JobAlbumArt>, /// <p>If Elastic Transcoder used a preset with a <code>ColorSpaceConversionMode</code> to transcode the output file, the <code>AppliedColorSpaceConversion</code> parameter shows the conversion used. If no <code>ColorSpaceConversionMode</code> was defined in the preset, this parameter is not be included in the job response.</p> #[serde(rename = "AppliedColorSpaceConversion")] #[serde(skip_serializing_if = "Option::is_none")] pub applied_color_space_conversion: Option<String>, /// <p>You can configure Elastic Transcoder to transcode captions, or subtitles, from one format to another. All captions must be in UTF-8. Elastic Transcoder supports two types of captions:</p> <ul> <li> <p> <b>Embedded:</b> Embedded captions are included in the same file as the audio and video. Elastic Transcoder supports only one embedded caption per language, to a maximum of 300 embedded captions per file.</p> <p>Valid input values include: <code>CEA-608 (EIA-608</code>, first non-empty channel only), <code>CEA-708 (EIA-708</code>, first non-empty channel only), and <code>mov-text</code> </p> <p>Valid outputs include: <code>mov-text</code> </p> <p>Elastic Transcoder supports a maximum of one embedded format per output.</p> </li> <li> <p> <b>Sidecar:</b> Sidecar captions are kept in a separate metadata file from the audio and video data. Sidecar captions require a player that is capable of understanding the relationship between the video file and the sidecar file. Elastic Transcoder supports only one sidecar caption per language, to a maximum of 20 sidecar captions per file.</p> <p>Valid input values include: <code>dfxp</code> (first div element only), <code>ebu-tt</code>, <code>scc</code>, <code>smpt</code>, <code>srt</code>, <code>ttml</code> (first div element only), and <code>webvtt</code> </p> <p>Valid outputs include: <code>dfxp</code> (first div element only), <code>scc</code>, <code>srt</code>, and <code>webvtt</code>.</p> </li> </ul> <p>If you want ttml or smpte-tt compatible captions, specify dfxp as your output format.</p> <p>Elastic Transcoder does not support OCR (Optical Character Recognition), does not accept pictures as a valid input for captions, and is not available for audio-only transcoding. Elastic Transcoder does not preserve text formatting (for example, italics) during the transcoding process.</p> <p>To remove captions or leave the captions empty, set <code>Captions</code> to null. To pass through existing captions unchanged, set the <code>MergePolicy</code> to <code>MergeRetain</code>, and pass in a null <code>CaptionSources</code> array.</p> <p>For more information on embedded files, see the Subtitles Wikipedia page.</p> <p>For more information on sidecar files, see the Extensible Metadata Platform and Sidecar file Wikipedia pages.</p> #[serde(rename = "Captions")] #[serde(skip_serializing_if = "Option::is_none")] pub captions: Option<Captions>, /// <p>Duration of the output file, in seconds.</p> #[serde(rename = "Duration")] #[serde(skip_serializing_if = "Option::is_none")] pub duration: Option<i64>, /// <p>Duration of the output file, in milliseconds.</p> #[serde(rename = "DurationMillis")] #[serde(skip_serializing_if = "Option::is_none")] pub duration_millis: Option<i64>, /// <p>The encryption settings, if any, that you want Elastic Transcoder to apply to your output files. If you choose to use encryption, you must specify a mode to use. If you choose not to use encryption, Elastic Transcoder writes an unencrypted file to your Amazon S3 bucket.</p> #[serde(rename = "Encryption")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption: Option<Encryption>, /// <p>File size of the output file, in bytes.</p> #[serde(rename = "FileSize")] #[serde(skip_serializing_if = "Option::is_none")] pub file_size: Option<i64>, /// <p>Frame rate of the output file, in frames per second.</p> #[serde(rename = "FrameRate")] #[serde(skip_serializing_if = "Option::is_none")] pub frame_rate: Option<String>, /// <p>Height of the output file, in pixels.</p> #[serde(rename = "Height")] #[serde(skip_serializing_if = "Option::is_none")] pub height: Option<i64>, /// <p>A sequential counter, starting with 1, that identifies an output among the outputs from the current job. In the Output syntax, this value is always 1.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p> The name to assign to the transcoded file. Elastic Transcoder saves the file in the Amazon S3 bucket specified by the <code>OutputBucket</code> object in the pipeline that is specified by the pipeline ID.</p> #[serde(rename = "Key")] #[serde(skip_serializing_if = "Option::is_none")] pub key: Option<String>, /// <p>The value of the <code>Id</code> object for the preset that you want to use for this job. The preset determines the audio, video, and thumbnail settings that Elastic Transcoder uses for transcoding. To use a preset that you created, specify the preset ID that Elastic Transcoder returned in the response when you created the preset. You can also use the Elastic Transcoder system presets, which you can get with <code>ListPresets</code>.</p> #[serde(rename = "PresetId")] #[serde(skip_serializing_if = "Option::is_none")] pub preset_id: Option<String>, /// <p>The number of degrees clockwise by which you want Elastic Transcoder to rotate the output relative to the input. Enter one of the following values:</p> <p> <code>auto</code>, <code>0</code>, <code>90</code>, <code>180</code>, <code>270</code> </p> <p> The value <code>auto</code> generally works only if the file that you're transcoding contains rotation metadata.</p> #[serde(rename = "Rotate")] #[serde(skip_serializing_if = "Option::is_none")] pub rotate: Option<String>, /// <p><important> <p>(Outputs in Fragmented MP4 or MPEG-TS format only.</p> </important> <p>If you specify a preset in <code>PresetId</code> for which the value of <code>Container</code> is <code>fmp4</code> (Fragmented MP4) or <code>ts</code> (MPEG-TS), <code>SegmentDuration</code> is the target maximum duration of each segment in seconds. For <code>HLSv3</code> format playlists, each media segment is stored in a separate <code>.ts</code> file. For <code>HLSv4</code>, <code>MPEG-DASH</code>, and <code>Smooth</code> playlists, all media segments for an output are stored in a single file. Each segment is approximately the length of the <code>SegmentDuration</code>, though individual segments might be shorter or longer.</p> <p>The range of valid values is 1 to 60 seconds. If the duration of the video is not evenly divisible by <code>SegmentDuration</code>, the duration of the last segment is the remainder of total length/SegmentDuration.</p> <p>Elastic Transcoder creates an output-specific playlist for each output <code>HLS</code> output that you specify in OutputKeys. To add an output to the master playlist for this job, include it in the <code>OutputKeys</code> of the associated playlist.</p></p> #[serde(rename = "SegmentDuration")] #[serde(skip_serializing_if = "Option::is_none")] pub segment_duration: Option<String>, /// <p> The status of one output in a job. If you specified only one output for the job, <code>Outputs:Status</code> is always the same as <code>Job:Status</code>. If you specified more than one output: </p> <ul> <li> <p> <code>Job:Status</code> and <code>Outputs:Status</code> for all of the outputs is Submitted until Elastic Transcoder starts to process the first output.</p> </li> <li> <p>When Elastic Transcoder starts to process the first output, <code>Outputs:Status</code> for that output and <code>Job:Status</code> both change to Progressing. For each output, the value of <code>Outputs:Status</code> remains Submitted until Elastic Transcoder starts to process the output.</p> </li> <li> <p>Job:Status remains Progressing until all of the outputs reach a terminal status, either Complete or Error.</p> </li> <li> <p>When all of the outputs reach a terminal status, <code>Job:Status</code> changes to Complete only if <code>Outputs:Status</code> for all of the outputs is <code>Complete</code>. If <code>Outputs:Status</code> for one or more outputs is <code>Error</code>, the terminal status for <code>Job:Status</code> is also <code>Error</code>.</p> </li> </ul> <p>The value of <code>Status</code> is one of the following: <code>Submitted</code>, <code>Progressing</code>, <code>Complete</code>, <code>Canceled</code>, or <code>Error</code>. </p> #[serde(rename = "Status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p>Information that further explains <code>Status</code>.</p> #[serde(rename = "StatusDetail")] #[serde(skip_serializing_if = "Option::is_none")] pub status_detail: Option<String>, /// <p>The encryption settings, if any, that you want Elastic Transcoder to apply to your thumbnail.</p> #[serde(rename = "ThumbnailEncryption")] #[serde(skip_serializing_if = "Option::is_none")] pub thumbnail_encryption: Option<Encryption>, /// <p>Whether you want Elastic Transcoder to create thumbnails for your videos and, if so, how you want Elastic Transcoder to name the files.</p> <p>If you don't want Elastic Transcoder to create thumbnails, specify "".</p> <p>If you do want Elastic Transcoder to create thumbnails, specify the information that you want to include in the file name for each thumbnail. You can specify the following values in any sequence:</p> <ul> <li> <p> <b> <code>{count}</code> (Required)</b>: If you want to create thumbnails, you must include <code>{count}</code> in the <code>ThumbnailPattern</code> object. Wherever you specify <code>{count}</code>, Elastic Transcoder adds a five-digit sequence number (beginning with <b>00001</b>) to thumbnail file names. The number indicates where a given thumbnail appears in the sequence of thumbnails for a transcoded file. </p> <important> <p>If you specify a literal value and/or <code>{resolution}</code> but you omit <code>{count}</code>, Elastic Transcoder returns a validation error and does not create the job.</p> </important> </li> <li> <p> <b>Literal values (Optional)</b>: You can specify literal values anywhere in the <code>ThumbnailPattern</code> object. For example, you can include them as a file name prefix or as a delimiter between <code>{resolution}</code> and <code>{count}</code>. </p> </li> <li> <p> <b> <code>{resolution}</code> (Optional)</b>: If you want Elastic Transcoder to include the resolution in the file name, include <code>{resolution}</code> in the <code>ThumbnailPattern</code> object. </p> </li> </ul> <p>When creating thumbnails, Elastic Transcoder automatically saves the files in the format (.jpg or .png) that appears in the preset that you specified in the <code>PresetID</code> value of <code>CreateJobOutput</code>. Elastic Transcoder also appends the applicable file name extension.</p> #[serde(rename = "ThumbnailPattern")] #[serde(skip_serializing_if = "Option::is_none")] pub thumbnail_pattern: Option<String>, /// <p>Information about the watermarks that you want Elastic Transcoder to add to the video during transcoding. You can specify up to four watermarks for each output. Settings for each watermark must be defined in the preset that you specify in <code>Preset</code> for the current output.</p> <p>Watermarks are added to the output video in the sequence in which you list them in the job output—the first watermark in the list is added to the output video first, the second watermark in the list is added next, and so on. As a result, if the settings in a preset cause Elastic Transcoder to place all watermarks in the same location, the second watermark that you add covers the first one, the third one covers the second, and the fourth one covers the third.</p> #[serde(rename = "Watermarks")] #[serde(skip_serializing_if = "Option::is_none")] pub watermarks: Option<Vec<JobWatermark>>, /// <p>Specifies the width of the output file in pixels.</p> #[serde(rename = "Width")] #[serde(skip_serializing_if = "Option::is_none")] pub width: Option<i64>, } /// <p>Watermarks can be in .png or .jpg format. If you want to display a watermark that is not rectangular, use the .png format, which supports transparency.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct JobWatermark { /// <p>The encryption settings, if any, that you want Elastic Transcoder to apply to your watermarks.</p> #[serde(rename = "Encryption")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption: Option<Encryption>, /// <p> The name of the .png or .jpg file that you want to use for the watermark. To determine which Amazon S3 bucket contains the specified file, Elastic Transcoder checks the pipeline specified by <code>Pipeline</code>; the <code>Input Bucket</code> object in that pipeline identifies the bucket.</p> <p> If the file name includes a prefix, for example, <b>logos/128x64.png</b>, include the prefix in the key. If the file isn't in the specified bucket, Elastic Transcoder returns an error. </p> #[serde(rename = "InputKey")] #[serde(skip_serializing_if = "Option::is_none")] pub input_key: Option<String>, /// <p>The ID of the watermark settings that Elastic Transcoder uses to add watermarks to the video during transcoding. The settings are in the preset specified by Preset for the current output. In that preset, the value of Watermarks Id tells Elastic Transcoder which settings to use.</p> #[serde(rename = "PresetWatermarkId")] #[serde(skip_serializing_if = "Option::is_none")] pub preset_watermark_id: Option<String>, } /// <p>The <code>ListJobsByPipelineRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListJobsByPipelineRequest { /// <p> To list jobs in chronological order by the date and time that they were submitted, enter <code>true</code>. To list jobs in reverse chronological order, enter <code>false</code>. </p> #[serde(rename = "Ascending")] #[serde(skip_serializing_if = "Option::is_none")] pub ascending: Option<String>, /// <p> When Elastic Transcoder returns more than one page of results, use <code>pageToken</code> in subsequent <code>GET</code> requests to get each successive page of results. </p> #[serde(rename = "PageToken")] #[serde(skip_serializing_if = "Option::is_none")] pub page_token: Option<String>, /// <p>The ID of the pipeline for which you want to get job information.</p> #[serde(rename = "PipelineId")] pub pipeline_id: String, } /// <p>The <code>ListJobsByPipelineResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListJobsByPipelineResponse { /// <p>An array of <code>Job</code> objects that are in the specified pipeline.</p> #[serde(rename = "Jobs")] #[serde(skip_serializing_if = "Option::is_none")] pub jobs: Option<Vec<Job>>, /// <p> A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of <code>NextPageToken</code> is <code>null</code>. </p> #[serde(rename = "NextPageToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_page_token: Option<String>, } /// <p>The <code>ListJobsByStatusRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListJobsByStatusRequest { /// <p> To list jobs in chronological order by the date and time that they were submitted, enter <code>true</code>. To list jobs in reverse chronological order, enter <code>false</code>. </p> #[serde(rename = "Ascending")] #[serde(skip_serializing_if = "Option::is_none")] pub ascending: Option<String>, /// <p> When Elastic Transcoder returns more than one page of results, use <code>pageToken</code> in subsequent <code>GET</code> requests to get each successive page of results. </p> #[serde(rename = "PageToken")] #[serde(skip_serializing_if = "Option::is_none")] pub page_token: Option<String>, /// <p>To get information about all of the jobs associated with the current AWS account that have a given status, specify the following status: <code>Submitted</code>, <code>Progressing</code>, <code>Complete</code>, <code>Canceled</code>, or <code>Error</code>.</p> #[serde(rename = "Status")] pub status: String, } /// <p> The <code>ListJobsByStatusResponse</code> structure. </p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListJobsByStatusResponse { /// <p>An array of <code>Job</code> objects that have the specified status.</p> #[serde(rename = "Jobs")] #[serde(skip_serializing_if = "Option::is_none")] pub jobs: Option<Vec<Job>>, /// <p> A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of <code>NextPageToken</code> is <code>null</code>. </p> #[serde(rename = "NextPageToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_page_token: Option<String>, } /// <p>The <code>ListPipelineRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListPipelinesRequest { /// <p>To list pipelines in chronological order by the date and time that they were created, enter <code>true</code>. To list pipelines in reverse chronological order, enter <code>false</code>.</p> #[serde(rename = "Ascending")] #[serde(skip_serializing_if = "Option::is_none")] pub ascending: Option<String>, /// <p>When Elastic Transcoder returns more than one page of results, use <code>pageToken</code> in subsequent <code>GET</code> requests to get each successive page of results. </p> #[serde(rename = "PageToken")] #[serde(skip_serializing_if = "Option::is_none")] pub page_token: Option<String>, } /// <p>A list of the pipelines associated with the current AWS account.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListPipelinesResponse { /// <p>A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value of <code>NextPageToken</code> is <code>null</code>.</p> #[serde(rename = "NextPageToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_page_token: Option<String>, /// <p>An array of <code>Pipeline</code> objects.</p> #[serde(rename = "Pipelines")] #[serde(skip_serializing_if = "Option::is_none")] pub pipelines: Option<Vec<Pipeline>>, } /// <p>The <code>ListPresetsRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListPresetsRequest { /// <p>To list presets in chronological order by the date and time that they were created, enter <code>true</code>. To list presets in reverse chronological order, enter <code>false</code>.</p> #[serde(rename = "Ascending")] #[serde(skip_serializing_if = "Option::is_none")] pub ascending: Option<String>, /// <p>When Elastic Transcoder returns more than one page of results, use <code>pageToken</code> in subsequent <code>GET</code> requests to get each successive page of results. </p> #[serde(rename = "PageToken")] #[serde(skip_serializing_if = "Option::is_none")] pub page_token: Option<String>, } /// <p>The <code>ListPresetsResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListPresetsResponse { /// <p>A value that you use to access the second and subsequent pages of results, if any. When the presets fit on one page or when you've reached the last page of results, the value of <code>NextPageToken</code> is <code>null</code>.</p> #[serde(rename = "NextPageToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_page_token: Option<String>, /// <p>An array of <code>Preset</code> objects.</p> #[serde(rename = "Presets")] #[serde(skip_serializing_if = "Option::is_none")] pub presets: Option<Vec<Preset>>, } /// <p><p>The Amazon Simple Notification Service (Amazon SNS) topic or topics to notify in order to report job status.</p> <important> <p>To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.</p> </important></p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Notifications { /// <p>The Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing the job.</p> #[serde(rename = "Completed")] #[serde(skip_serializing_if = "Option::is_none")] pub completed: Option<String>, /// <p>The Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition.</p> #[serde(rename = "Error")] #[serde(skip_serializing_if = "Option::is_none")] pub error: Option<String>, /// <p>The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process the job.</p> #[serde(rename = "Progressing")] #[serde(skip_serializing_if = "Option::is_none")] pub progressing: Option<String>, /// <p>The Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition.</p> #[serde(rename = "Warning")] #[serde(skip_serializing_if = "Option::is_none")] pub warning: Option<String>, } /// <p>The <code>Permission</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Permission { /// <p><p> The permission that you want to give to the AWS user that is listed in Grantee. Valid values include: </p> <ul> <li> <p> <code>READ</code>: The grantee can read the thumbnails and metadata for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>READ<em>ACP</code>: The grantee can read the object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>WRITE</em>ACP</code>: The grantee can write the ACL for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>FULL<em>CONTROL</code>: The grantee has READ, READ</em>ACP, and WRITE_ACP permissions for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> </ul></p> #[serde(rename = "Access")] #[serde(skip_serializing_if = "Option::is_none")] pub access: Option<Vec<String>>, /// <p>The AWS user or group that you want to have access to transcoded files and playlists. To identify the user or group, you can specify the canonical user ID for an AWS account, an origin access identity for a CloudFront distribution, the registered email address of an AWS account, or a predefined Amazon S3 group.</p> #[serde(rename = "Grantee")] #[serde(skip_serializing_if = "Option::is_none")] pub grantee: Option<String>, /// <p><p>The type of value that appears in the Grantee object:</p> <ul> <li> <p> <code>Canonical</code>: Either the canonical user ID for an AWS account or an origin access identity for an Amazon CloudFront distribution.</p> <important> <p>A canonical user ID is not the same as an AWS account number.</p> </important> </li> <li> <p> <code>Email</code>: The registered email address of an AWS account.</p> </li> <li> <p> <code>Group</code>: One of the following predefined Amazon S3 groups: <code>AllUsers</code>, <code>AuthenticatedUsers</code>, or <code>LogDelivery</code>.</p> </li> </ul></p> #[serde(rename = "GranteeType")] #[serde(skip_serializing_if = "Option::is_none")] pub grantee_type: Option<String>, } /// <p>The pipeline (queue) that is used to manage jobs.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Pipeline { /// <p>The Amazon Resource Name (ARN) for the pipeline.</p> #[serde(rename = "Arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p>The AWS Key Management Service (AWS KMS) key that you want to use with this pipeline.</p> <p>If you use either <code>s3</code> or <code>s3-aws-kms</code> as your <code>Encryption:Mode</code>, you don't need to provide a key with your job because a default key, known as an AWS-KMS key, is created for you automatically. You need to provide an AWS-KMS key only if you want to use a non-default AWS-KMS key, or if you are using an <code>Encryption:Mode</code> of <code>aes-cbc-pkcs7</code>, <code>aes-ctr</code>, or <code>aes-gcm</code>.</p> #[serde(rename = "AwsKmsKeyArn")] #[serde(skip_serializing_if = "Option::is_none")] pub aws_kms_key_arn: Option<String>, /// <p><p>Information about the Amazon S3 bucket in which you want Elastic Transcoder to save transcoded files and playlists. Either you specify both <code>ContentConfig</code> and <code>ThumbnailConfig</code>, or you specify <code>OutputBucket</code>.</p> <ul> <li> <p> <b>Bucket</b>: The Amazon S3 bucket in which you want Elastic Transcoder to save transcoded files and playlists.</p> </li> <li> <p> <b>Permissions</b>: A list of the users and/or predefined Amazon S3 groups you want to have access to transcoded files and playlists, and the type of access that you want them to have. </p> <ul> <li> <p>GranteeType: The type of value that appears in the <code>Grantee</code> object: </p> <ul> <li> <p> <code>Canonical</code>: Either the canonical user ID for an AWS account or an origin access identity for an Amazon CloudFront distribution.</p> </li> <li> <p> <code>Email</code>: The registered email address of an AWS account.</p> </li> <li> <p> <code>Group</code>: One of the following predefined Amazon S3 groups: <code>AllUsers</code>, <code>AuthenticatedUsers</code>, or <code>LogDelivery</code>.</p> </li> </ul> </li> <li> <p> <code>Grantee</code>: The AWS user or group that you want to have access to transcoded files and playlists.</p> </li> <li> <p> <code>Access</code>: The permission that you want to give to the AWS user that is listed in <code>Grantee</code>. Valid values include:</p> <ul> <li> <p> <code>READ</code>: The grantee can read the objects and metadata for objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>READ<em>ACP</code>: The grantee can read the object ACL for objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>WRITE</em>ACP</code>: The grantee can write the ACL for the objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>FULL<em>CONTROL</code>: The grantee has <code>READ</code>, <code>READ</em>ACP</code>, and <code>WRITE_ACP</code> permissions for the objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> </ul> </li> </ul> </li> <li> <p> <b>StorageClass</b>: The Amazon S3 storage class, Standard or ReducedRedundancy, that you want Elastic Transcoder to assign to the video files and playlists that it stores in your Amazon S3 bucket. </p> </li> </ul></p> #[serde(rename = "ContentConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub content_config: Option<PipelineOutputConfig>, /// <p>The identifier for the pipeline. You use this value to identify the pipeline in which you want to perform a variety of operations, such as creating a job or a preset.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p>The Amazon S3 bucket from which Elastic Transcoder gets media files for transcoding and the graphics files, if any, that you want to use for watermarks.</p> #[serde(rename = "InputBucket")] #[serde(skip_serializing_if = "Option::is_none")] pub input_bucket: Option<String>, /// <p>The name of the pipeline. We recommend that the name be unique within the AWS account, but uniqueness is not enforced.</p> <p>Constraints: Maximum 40 characters</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p><p>The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify to report job status.</p> <important> <p>To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.</p> </important> <ul> <li> <p> <b>Progressing</b> (optional): The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process the job.</p> </li> <li> <p> <b>Complete</b> (optional): The Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing the job.</p> </li> <li> <p> <b>Warning</b> (optional): The Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition.</p> </li> <li> <p> <b>Error</b> (optional): The Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition.</p> </li> </ul></p> #[serde(rename = "Notifications")] #[serde(skip_serializing_if = "Option::is_none")] pub notifications: Option<Notifications>, /// <p>The Amazon S3 bucket in which you want Elastic Transcoder to save transcoded files, thumbnails, and playlists. Either you specify this value, or you specify both <code>ContentConfig</code> and <code>ThumbnailConfig</code>.</p> #[serde(rename = "OutputBucket")] #[serde(skip_serializing_if = "Option::is_none")] pub output_bucket: Option<String>, /// <p>The IAM Amazon Resource Name (ARN) for the role that Elastic Transcoder uses to transcode jobs for this pipeline.</p> #[serde(rename = "Role")] #[serde(skip_serializing_if = "Option::is_none")] pub role: Option<String>, /// <p><p>The current status of the pipeline:</p> <ul> <li> <p> <code>Active</code>: The pipeline is processing jobs.</p> </li> <li> <p> <code>Paused</code>: The pipeline is not currently processing jobs.</p> </li> </ul></p> #[serde(rename = "Status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p><p>Information about the Amazon S3 bucket in which you want Elastic Transcoder to save thumbnail files. Either you specify both <code>ContentConfig</code> and <code>ThumbnailConfig</code>, or you specify <code>OutputBucket</code>.</p> <ul> <li> <p> <code>Bucket</code>: The Amazon S3 bucket in which you want Elastic Transcoder to save thumbnail files. </p> </li> <li> <p> <code>Permissions</code>: A list of the users and/or predefined Amazon S3 groups you want to have access to thumbnail files, and the type of access that you want them to have. </p> <ul> <li> <p>GranteeType: The type of value that appears in the Grantee object:</p> <ul> <li> <p> <code>Canonical</code>: Either the canonical user ID for an AWS account or an origin access identity for an Amazon CloudFront distribution.</p> <important> <p>A canonical user ID is not the same as an AWS account number.</p> </important> </li> <li> <p> <code>Email</code>: The registered email address of an AWS account.</p> </li> <li> <p> <code>Group</code>: One of the following predefined Amazon S3 groups: <code>AllUsers</code>, <code>AuthenticatedUsers</code>, or <code>LogDelivery</code>.</p> </li> </ul> </li> <li> <p> <code>Grantee</code>: The AWS user or group that you want to have access to thumbnail files.</p> </li> <li> <p>Access: The permission that you want to give to the AWS user that is listed in Grantee. Valid values include: </p> <ul> <li> <p> <code>READ</code>: The grantee can read the thumbnails and metadata for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>READ<em>ACP</code>: The grantee can read the object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>WRITE</em>ACP</code>: The grantee can write the ACL for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>FULL<em>CONTROL</code>: The grantee has READ, READ</em>ACP, and WRITE_ACP permissions for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> </ul> </li> </ul> </li> <li> <p> <code>StorageClass</code>: The Amazon S3 storage class, <code>Standard</code> or <code>ReducedRedundancy</code>, that you want Elastic Transcoder to assign to the thumbnails that it stores in your Amazon S3 bucket.</p> </li> </ul></p> #[serde(rename = "ThumbnailConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub thumbnail_config: Option<PipelineOutputConfig>, } /// <p>The <code>PipelineOutputConfig</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct PipelineOutputConfig { /// <p> The Amazon S3 bucket in which you want Elastic Transcoder to save the transcoded files. Specify this value when all of the following are true:</p> <ul> <li> <p>You want to save transcoded files, thumbnails (if any), and playlists (if any) together in one bucket.</p> </li> <li> <p>You do not want to specify the users or groups who have access to the transcoded files, thumbnails, and playlists.</p> </li> <li> <p>You do not want to specify the permissions that Elastic Transcoder grants to the files.</p> </li> <li> <p>You want to associate the transcoded files and thumbnails with the Amazon S3 Standard storage class.</p> </li> </ul> <p>If you want to save transcoded files and playlists in one bucket and thumbnails in another bucket, specify which users can access the transcoded files or the permissions the users have, or change the Amazon S3 storage class, omit OutputBucket and specify values for <code>ContentConfig</code> and <code>ThumbnailConfig</code> instead. </p> #[serde(rename = "Bucket")] #[serde(skip_serializing_if = "Option::is_none")] pub bucket: Option<String>, /// <p>Optional. The <code>Permissions</code> object specifies which users and/or predefined Amazon S3 groups you want to have access to transcoded files and playlists, and the type of access you want them to have. You can grant permissions to a maximum of 30 users and/or predefined Amazon S3 groups.</p> <p>If you include <code>Permissions</code>, Elastic Transcoder grants only the permissions that you specify. It does not grant full permissions to the owner of the role specified by <code>Role</code>. If you want that user to have full control, you must explicitly grant full control to the user.</p> <p> If you omit <code>Permissions</code>, Elastic Transcoder grants full control over the transcoded files and playlists to the owner of the role specified by <code>Role</code>, and grants no other permissions to any other user or group.</p> #[serde(rename = "Permissions")] #[serde(skip_serializing_if = "Option::is_none")] pub permissions: Option<Vec<Permission>>, /// <p> The Amazon S3 storage class, <code>Standard</code> or <code>ReducedRedundancy</code>, that you want Elastic Transcoder to assign to the video files and playlists that it stores in your Amazon S3 bucket. </p> #[serde(rename = "StorageClass")] #[serde(skip_serializing_if = "Option::is_none")] pub storage_class: Option<String>, } /// <p>The PlayReady DRM settings, if any, that you want Elastic Transcoder to apply to the output files associated with this playlist.</p> <p>PlayReady DRM encrypts your media files using <code>aes-ctr</code> encryption.</p> <p>If you use DRM for an <code>HLSv3</code> playlist, your outputs must have a master playlist.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct PlayReadyDrm { /// <p>The type of DRM, if any, that you want Elastic Transcoder to apply to the output files associated with this playlist.</p> #[serde(rename = "Format")] #[serde(skip_serializing_if = "Option::is_none")] pub format: Option<String>, /// <p>The series of random bits created by a random bit generator, unique for every encryption operation, that you want Elastic Transcoder to use to encrypt your files. The initialization vector must be base64-encoded, and it must be exactly 8 bytes long before being base64-encoded. If no initialization vector is provided, Elastic Transcoder generates one for you.</p> #[serde(rename = "InitializationVector")] #[serde(skip_serializing_if = "Option::is_none")] pub initialization_vector: Option<String>, /// <p>The DRM key for your file, provided by your DRM license provider. The key must be base64-encoded, and it must be one of the following bit lengths before being base64-encoded:</p> <p> <code>128</code>, <code>192</code>, or <code>256</code>. </p> <p>The key must also be encrypted by using AWS KMS.</p> #[serde(rename = "Key")] #[serde(skip_serializing_if = "Option::is_none")] pub key: Option<String>, /// <p>The ID for your DRM key, so that your DRM license provider knows which key to provide.</p> <p>The key ID must be provided in big endian, and Elastic Transcoder converts it to little endian before inserting it into the PlayReady DRM headers. If you are unsure whether your license server provides your key ID in big or little endian, check with your DRM provider.</p> #[serde(rename = "KeyId")] #[serde(skip_serializing_if = "Option::is_none")] pub key_id: Option<String>, /// <p>The MD5 digest of the key used for DRM on your file, and that you want Elastic Transcoder to use as a checksum to make sure your key was not corrupted in transit. The key MD5 must be base64-encoded, and it must be exactly 16 bytes before being base64-encoded.</p> #[serde(rename = "KeyMd5")] #[serde(skip_serializing_if = "Option::is_none")] pub key_md_5: Option<String>, /// <p>The location of the license key required to play DRM content. The URL must be an absolute path, and is referenced by the PlayReady header. The PlayReady header is referenced in the protection header of the client manifest for Smooth Streaming outputs, and in the EXT-X-DXDRM and EXT-XDXDRMINFO metadata tags for HLS playlist outputs. An example URL looks like this: <code>https://www.example.com/exampleKey/</code> </p> #[serde(rename = "LicenseAcquisitionUrl")] #[serde(skip_serializing_if = "Option::is_none")] pub license_acquisition_url: Option<String>, } /// <p> Use Only for Fragmented MP4 or MPEG-TS Outputs. If you specify a preset for which the value of Container is <code>fmp4</code> (Fragmented MP4) or <code>ts</code> (MPEG-TS), Playlists contains information about the master playlists that you want Elastic Transcoder to create. We recommend that you create only one master playlist per output format. The maximum number of master playlists in a job is 30. </p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Playlist { /// <p>The format of the output playlist. Valid formats include <code>HLSv3</code>, <code>HLSv4</code>, and <code>Smooth</code>.</p> #[serde(rename = "Format")] #[serde(skip_serializing_if = "Option::is_none")] pub format: Option<String>, /// <p>The HLS content protection settings, if any, that you want Elastic Transcoder to apply to the output files associated with this playlist.</p> #[serde(rename = "HlsContentProtection")] #[serde(skip_serializing_if = "Option::is_none")] pub hls_content_protection: Option<HlsContentProtection>, /// <p><p>The name that you want Elastic Transcoder to assign to the master playlist, for example, nyc-vacation.m3u8. If the name includes a <code>/</code> character, the section of the name before the last <code>/</code> must be identical for all <code>Name</code> objects. If you create more than one master playlist, the values of all <code>Name</code> objects must be unique.</p> <note> <p>Elastic Transcoder automatically appends the relevant file extension to the file name (<code>.m3u8</code> for <code>HLSv3</code> and <code>HLSv4</code> playlists, and <code>.ism</code> and <code>.ismc</code> for <code>Smooth</code> playlists). If you include a file extension in <code>Name</code>, the file name will have two extensions.</p> </note></p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>For each output in this job that you want to include in a master playlist, the value of the Outputs:Key object.</p> <ul> <li> <p>If your output is not <code>HLS</code> or does not have a segment duration set, the name of the output file is a concatenation of <code>OutputKeyPrefix</code> and <code>Outputs:Key</code>:</p> <p>OutputKeyPrefix<code>Outputs:Key</code> </p> </li> <li> <p>If your output is <code>HLSv3</code> and has a segment duration set, or is not included in a playlist, Elastic Transcoder creates an output playlist file with a file extension of <code>.m3u8</code>, and a series of <code>.ts</code> files that include a five-digit sequential counter beginning with 00000:</p> <p>OutputKeyPrefix<code>Outputs:Key</code>.m3u8</p> <p>OutputKeyPrefix<code>Outputs:Key</code>00000.ts</p> </li> <li> <p>If your output is <code>HLSv4</code>, has a segment duration set, and is included in an <code>HLSv4</code> playlist, Elastic Transcoder creates an output playlist file with a file extension of <code>_v4.m3u8</code>. If the output is video, Elastic Transcoder also creates an output file with an extension of <code>_iframe.m3u8</code>:</p> <p>OutputKeyPrefix<code>Outputs:Key</code>_v4.m3u8</p> <p>OutputKeyPrefix<code>Outputs:Key</code>_iframe.m3u8</p> <p>OutputKeyPrefix<code>Outputs:Key</code>.ts</p> </li> </ul> <p>Elastic Transcoder automatically appends the relevant file extension to the file name. If you include a file extension in Output Key, the file name will have two extensions.</p> <p>If you include more than one output in a playlist, any segment duration settings, clip settings, or caption settings must be the same for all outputs in the playlist. For <code>Smooth</code> playlists, the <code>Audio:Profile</code>, <code>Video:Profile</code>, and <code>Video:FrameRate</code> to <code>Video:KeyframesMaxDist</code> ratio must be the same for all outputs.</p> #[serde(rename = "OutputKeys")] #[serde(skip_serializing_if = "Option::is_none")] pub output_keys: Option<Vec<String>>, /// <p>The DRM settings, if any, that you want Elastic Transcoder to apply to the output files associated with this playlist.</p> #[serde(rename = "PlayReadyDrm")] #[serde(skip_serializing_if = "Option::is_none")] pub play_ready_drm: Option<PlayReadyDrm>, /// <p>The status of the job with which the playlist is associated.</p> #[serde(rename = "Status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p>Information that further explains the status.</p> #[serde(rename = "StatusDetail")] #[serde(skip_serializing_if = "Option::is_none")] pub status_detail: Option<String>, } /// <p>Presets are templates that contain most of the settings for transcoding media files from one format to another. Elastic Transcoder includes some default presets for common formats, for example, several iPod and iPhone versions. You can also create your own presets for formats that aren't included among the default presets. You specify which preset you want to use when you create a job.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Preset { /// <p>The Amazon Resource Name (ARN) for the preset.</p> #[serde(rename = "Arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p>A section of the response body that provides information about the audio preset values.</p> #[serde(rename = "Audio")] #[serde(skip_serializing_if = "Option::is_none")] pub audio: Option<AudioParameters>, /// <p>The container type for the output file. Valid values include <code>flac</code>, <code>flv</code>, <code>fmp4</code>, <code>gif</code>, <code>mp3</code>, <code>mp4</code>, <code>mpg</code>, <code>mxf</code>, <code>oga</code>, <code>ogg</code>, <code>ts</code>, and <code>webm</code>.</p> #[serde(rename = "Container")] #[serde(skip_serializing_if = "Option::is_none")] pub container: Option<String>, /// <p>A description of the preset.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>Identifier for the new preset. You use this value to get settings for the preset or to delete it.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p>The name of the preset.</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>A section of the response body that provides information about the thumbnail preset values, if any.</p> #[serde(rename = "Thumbnails")] #[serde(skip_serializing_if = "Option::is_none")] pub thumbnails: Option<Thumbnails>, /// <p>Whether the preset is a default preset provided by Elastic Transcoder (<code>System</code>) or a preset that you have defined (<code>Custom</code>).</p> #[serde(rename = "Type")] #[serde(skip_serializing_if = "Option::is_none")] pub type_: Option<String>, /// <p>A section of the response body that provides information about the video preset values.</p> #[serde(rename = "Video")] #[serde(skip_serializing_if = "Option::is_none")] pub video: Option<VideoParameters>, } /// <p>Settings for the size, location, and opacity of graphics that you want Elastic Transcoder to overlay over videos that are transcoded using this preset. You can specify settings for up to four watermarks. Watermarks appear in the specified size and location, and with the specified opacity for the duration of the transcoded video.</p> <p>Watermarks can be in .png or .jpg format. If you want to display a watermark that is not rectangular, use the .png format, which supports transparency.</p> <p>When you create a job that uses this preset, you specify the .png or .jpg graphics that you want Elastic Transcoder to include in the transcoded videos. You can specify fewer graphics in the job than you specify watermark settings in the preset, which allows you to use the same preset for up to four watermarks that have different dimensions.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct PresetWatermark { /// <p><p>The horizontal position of the watermark unless you specify a non-zero value for <code>HorizontalOffset</code>: </p> <ul> <li> <p> <b>Left</b>: The left edge of the watermark is aligned with the left border of the video.</p> </li> <li> <p> <b>Right</b>: The right edge of the watermark is aligned with the right border of the video.</p> </li> <li> <p> <b>Center</b>: The watermark is centered between the left and right borders.</p> </li> </ul></p> #[serde(rename = "HorizontalAlign")] #[serde(skip_serializing_if = "Option::is_none")] pub horizontal_align: Option<String>, /// <p>The amount by which you want the horizontal position of the watermark to be offset from the position specified by HorizontalAlign: </p> <ul> <li> <p>number of pixels (px): The minimum value is 0 pixels, and the maximum value is the value of MaxWidth.</p> </li> <li> <p>integer percentage (%): The range of valid values is 0 to 100.</p> </li> </ul> <p>For example, if you specify Left for <code>HorizontalAlign</code> and 5px for <code>HorizontalOffset</code>, the left side of the watermark appears 5 pixels from the left border of the output video.</p> <p> <code>HorizontalOffset</code> is only valid when the value of <code>HorizontalAlign</code> is <code>Left</code> or <code>Right</code>. If you specify an offset that causes the watermark to extend beyond the left or right border and Elastic Transcoder has not added black bars, the watermark is cropped. If Elastic Transcoder has added black bars, the watermark extends into the black bars. If the watermark extends beyond the black bars, it is cropped.</p> <p>Use the value of <code>Target</code> to specify whether you want to include the black bars that are added by Elastic Transcoder, if any, in the offset calculation.</p> #[serde(rename = "HorizontalOffset")] #[serde(skip_serializing_if = "Option::is_none")] pub horizontal_offset: Option<String>, /// <p> A unique identifier for the settings for one watermark. The value of <code>Id</code> can be up to 40 characters long. </p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p>The maximum height of the watermark in one of the following formats: </p> <ul> <li> <p>number of pixels (px): The minimum value is 16 pixels, and the maximum value is the value of <code>MaxHeight</code>.</p> </li> <li> <p>integer percentage (%): The range of valid values is 0 to 100. Use the value of <code>Target</code> to specify whether you want Elastic Transcoder to include the black bars that are added by Elastic Transcoder, if any, in the calculation.</p> </li> </ul> <p>If you specify the value in pixels, it must be less than or equal to the value of <code>MaxHeight</code>.</p> #[serde(rename = "MaxHeight")] #[serde(skip_serializing_if = "Option::is_none")] pub max_height: Option<String>, /// <p><p>The maximum width of the watermark in one of the following formats: </p> <ul> <li> <p>number of pixels (px): The minimum value is 16 pixels, and the maximum value is the value of <code>MaxWidth</code>.</p> </li> <li> <p>integer percentage (%): The range of valid values is 0 to 100. Use the value of <code>Target</code> to specify whether you want Elastic Transcoder to include the black bars that are added by Elastic Transcoder, if any, in the calculation.</p> <p>If you specify the value in pixels, it must be less than or equal to the value of <code>MaxWidth</code>.</p> </li> </ul></p> #[serde(rename = "MaxWidth")] #[serde(skip_serializing_if = "Option::is_none")] pub max_width: Option<String>, /// <p>A percentage that indicates how much you want a watermark to obscure the video in the location where it appears. Valid values are 0 (the watermark is invisible) to 100 (the watermark completely obscures the video in the specified location). The datatype of <code>Opacity</code> is float.</p> <p>Elastic Transcoder supports transparent .png graphics. If you use a transparent .png, the transparent portion of the video appears as if you had specified a value of 0 for <code>Opacity</code>. The .jpg file format doesn't support transparency.</p> #[serde(rename = "Opacity")] #[serde(skip_serializing_if = "Option::is_none")] pub opacity: Option<String>, /// <p><p>A value that controls scaling of the watermark: </p> <ul> <li> <p> <b>Fit</b>: Elastic Transcoder scales the watermark so it matches the value that you specified in either <code>MaxWidth</code> or <code>MaxHeight</code> without exceeding the other value.</p> </li> <li> <p> <b>Stretch</b>: Elastic Transcoder stretches the watermark to match the values that you specified for <code>MaxWidth</code> and <code>MaxHeight</code>. If the relative proportions of the watermark and the values of <code>MaxWidth</code> and <code>MaxHeight</code> are different, the watermark will be distorted.</p> </li> <li> <p> <b>ShrinkToFit</b>: Elastic Transcoder scales the watermark down so that its dimensions match the values that you specified for at least one of <code>MaxWidth</code> and <code>MaxHeight</code> without exceeding either value. If you specify this option, Elastic Transcoder does not scale the watermark up.</p> </li> </ul></p> #[serde(rename = "SizingPolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub sizing_policy: Option<String>, /// <p><p>A value that determines how Elastic Transcoder interprets values that you specified for <code>HorizontalOffset</code>, <code>VerticalOffset</code>, <code>MaxWidth</code>, and <code>MaxHeight</code>:</p> <ul> <li> <p> <b>Content</b>: <code>HorizontalOffset</code> and <code>VerticalOffset</code> values are calculated based on the borders of the video excluding black bars added by Elastic Transcoder, if any. In addition, <code>MaxWidth</code> and <code>MaxHeight</code>, if specified as a percentage, are calculated based on the borders of the video excluding black bars added by Elastic Transcoder, if any.</p> </li> <li> <p> <b>Frame</b>: <code>HorizontalOffset</code> and <code>VerticalOffset</code> values are calculated based on the borders of the video including black bars added by Elastic Transcoder, if any. In addition, <code>MaxWidth</code> and <code>MaxHeight</code>, if specified as a percentage, are calculated based on the borders of the video including black bars added by Elastic Transcoder, if any.</p> </li> </ul></p> #[serde(rename = "Target")] #[serde(skip_serializing_if = "Option::is_none")] pub target: Option<String>, /// <p><p>The vertical position of the watermark unless you specify a non-zero value for <code>VerticalOffset</code>: </p> <ul> <li> <p> <b>Top</b>: The top edge of the watermark is aligned with the top border of the video.</p> </li> <li> <p> <b>Bottom</b>: The bottom edge of the watermark is aligned with the bottom border of the video.</p> </li> <li> <p> <b>Center</b>: The watermark is centered between the top and bottom borders.</p> </li> </ul></p> #[serde(rename = "VerticalAlign")] #[serde(skip_serializing_if = "Option::is_none")] pub vertical_align: Option<String>, /// <p> <code>VerticalOffset</code> </p> <p>The amount by which you want the vertical position of the watermark to be offset from the position specified by VerticalAlign:</p> <ul> <li> <p>number of pixels (px): The minimum value is 0 pixels, and the maximum value is the value of <code>MaxHeight</code>.</p> </li> <li> <p>integer percentage (%): The range of valid values is 0 to 100.</p> </li> </ul> <p>For example, if you specify <code>Top</code> for <code>VerticalAlign</code> and <code>5px</code> for <code>VerticalOffset</code>, the top of the watermark appears 5 pixels from the top border of the output video.</p> <p> <code>VerticalOffset</code> is only valid when the value of VerticalAlign is Top or Bottom.</p> <p>If you specify an offset that causes the watermark to extend beyond the top or bottom border and Elastic Transcoder has not added black bars, the watermark is cropped. If Elastic Transcoder has added black bars, the watermark extends into the black bars. If the watermark extends beyond the black bars, it is cropped.</p> <p>Use the value of <code>Target</code> to specify whether you want Elastic Transcoder to include the black bars that are added by Elastic Transcoder, if any, in the offset calculation.</p> #[serde(rename = "VerticalOffset")] #[serde(skip_serializing_if = "Option::is_none")] pub vertical_offset: Option<String>, } /// <p>The <code>ReadJobRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ReadJobRequest { /// <p>The identifier of the job for which you want to get detailed information.</p> #[serde(rename = "Id")] pub id: String, } /// <p>The <code>ReadJobResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ReadJobResponse { /// <p>A section of the response body that provides information about the job.</p> #[serde(rename = "Job")] #[serde(skip_serializing_if = "Option::is_none")] pub job: Option<Job>, } /// <p>The <code>ReadPipelineRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ReadPipelineRequest { /// <p>The identifier of the pipeline to read.</p> #[serde(rename = "Id")] pub id: String, } /// <p>The <code>ReadPipelineResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ReadPipelineResponse { /// <p>A section of the response body that provides information about the pipeline.</p> #[serde(rename = "Pipeline")] #[serde(skip_serializing_if = "Option::is_none")] pub pipeline: Option<Pipeline>, /// <p>Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.</p> <p>Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.</p> #[serde(rename = "Warnings")] #[serde(skip_serializing_if = "Option::is_none")] pub warnings: Option<Vec<Warning>>, } /// <p>The <code>ReadPresetRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ReadPresetRequest { /// <p>The identifier of the preset for which you want to get detailed information.</p> #[serde(rename = "Id")] pub id: String, } /// <p>The <code>ReadPresetResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ReadPresetResponse { /// <p>A section of the response body that provides information about the preset.</p> #[serde(rename = "Preset")] #[serde(skip_serializing_if = "Option::is_none")] pub preset: Option<Preset>, } /// <p> The <code>TestRoleRequest</code> structure. </p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct TestRoleRequest { /// <p>The Amazon S3 bucket that contains media files to be transcoded. The action attempts to read from this bucket.</p> #[serde(rename = "InputBucket")] pub input_bucket: String, /// <p>The Amazon S3 bucket that Elastic Transcoder writes transcoded media files to. The action attempts to read from this bucket.</p> #[serde(rename = "OutputBucket")] pub output_bucket: String, /// <p>The IAM Amazon Resource Name (ARN) for the role that you want Elastic Transcoder to test.</p> #[serde(rename = "Role")] pub role: String, /// <p>The ARNs of one or more Amazon Simple Notification Service (Amazon SNS) topics that you want the action to send a test notification to.</p> #[serde(rename = "Topics")] pub topics: Vec<String>, } /// <p>The <code>TestRoleResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct TestRoleResponse { /// <p>If the <code>Success</code> element contains <code>false</code>, this value is an array of one or more error messages that were generated during the test process.</p> #[serde(rename = "Messages")] #[serde(skip_serializing_if = "Option::is_none")] pub messages: Option<Vec<String>>, /// <p>If the operation is successful, this value is <code>true</code>; otherwise, the value is <code>false</code>.</p> #[serde(rename = "Success")] #[serde(skip_serializing_if = "Option::is_none")] pub success: Option<String>, } /// <p>Thumbnails for videos.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Thumbnails { /// <p><important> <p>To better control resolution and aspect ratio of thumbnails, we recommend that you use the values <code>MaxWidth</code>, <code>MaxHeight</code>, <code>SizingPolicy</code>, and <code>PaddingPolicy</code> instead of <code>Resolution</code> and <code>AspectRatio</code>. The two groups of settings are mutually exclusive. Do not use them together.</p> </important> <p>The aspect ratio of thumbnails. Valid values include:</p> <p> <code>auto</code>, <code>1:1</code>, <code>4:3</code>, <code>3:2</code>, <code>16:9</code> </p> <p>If you specify <code>auto</code>, Elastic Transcoder tries to preserve the aspect ratio of the video in the output file.</p></p> #[serde(rename = "AspectRatio")] #[serde(skip_serializing_if = "Option::is_none")] pub aspect_ratio: Option<String>, /// <p>The format of thumbnails, if any. Valid values are <code>jpg</code> and <code>png</code>. </p> <p>You specify whether you want Elastic Transcoder to create thumbnails when you create a job.</p> #[serde(rename = "Format")] #[serde(skip_serializing_if = "Option::is_none")] pub format: Option<String>, /// <p>The approximate number of seconds between thumbnails. Specify an integer value.</p> #[serde(rename = "Interval")] #[serde(skip_serializing_if = "Option::is_none")] pub interval: Option<String>, /// <p>The maximum height of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1080 (Full HD) as the default value. If you specify a numeric value, enter an even integer between 32 and 3072.</p> #[serde(rename = "MaxHeight")] #[serde(skip_serializing_if = "Option::is_none")] pub max_height: Option<String>, /// <p>The maximum width of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1920 (Full HD) as the default value. If you specify a numeric value, enter an even integer between 32 and 4096.</p> #[serde(rename = "MaxWidth")] #[serde(skip_serializing_if = "Option::is_none")] pub max_width: Option<String>, /// <p>When you set <code>PaddingPolicy</code> to <code>Pad</code>, Elastic Transcoder may add black bars to the top and bottom and/or left and right sides of thumbnails to make the total size of the thumbnails match the values that you specified for thumbnail <code>MaxWidth</code> and <code>MaxHeight</code> settings.</p> #[serde(rename = "PaddingPolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub padding_policy: Option<String>, /// <p><important> <p>To better control resolution and aspect ratio of thumbnails, we recommend that you use the values <code>MaxWidth</code>, <code>MaxHeight</code>, <code>SizingPolicy</code>, and <code>PaddingPolicy</code> instead of <code>Resolution</code> and <code>AspectRatio</code>. The two groups of settings are mutually exclusive. Do not use them together.</p> </important> <p>The width and height of thumbnail files in pixels. Specify a value in the format <code> <i>width</i> </code> x <code> <i>height</i> </code> where both values are even integers. The values cannot exceed the width and height that you specified in the <code>Video:Resolution</code> object.</p></p> #[serde(rename = "Resolution")] #[serde(skip_serializing_if = "Option::is_none")] pub resolution: Option<String>, /// <p><p>Specify one of the following values to control scaling of thumbnails:</p> <ul> <li> <p> <code>Fit</code>: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail MaxWidth or MaxHeight settings without exceeding the other value. </p> </li> <li> <p> <code>Fill</code>: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail <code>MaxWidth</code> or <code>MaxHeight</code> settings and matches or exceeds the other value. Elastic Transcoder centers the image in thumbnails and then crops in the dimension (if any) that exceeds the maximum value.</p> </li> <li> <p> <code>Stretch</code>: Elastic Transcoder stretches thumbnails to match the values that you specified for thumbnail <code>MaxWidth</code> and <code>MaxHeight</code> settings. If the relative proportions of the input video and thumbnails are different, the thumbnails will be distorted.</p> </li> <li> <p> <code>Keep</code>: Elastic Transcoder does not scale thumbnails. If either dimension of the input video exceeds the values that you specified for thumbnail <code>MaxWidth</code> and <code>MaxHeight</code> settings, Elastic Transcoder crops the thumbnails.</p> </li> <li> <p> <code>ShrinkToFit</code>: Elastic Transcoder scales thumbnails down so that their dimensions match the values that you specified for at least one of thumbnail <code>MaxWidth</code> and <code>MaxHeight</code> without exceeding either value. If you specify this option, Elastic Transcoder does not scale thumbnails up.</p> </li> <li> <p> <code>ShrinkToFill</code>: Elastic Transcoder scales thumbnails down so that their dimensions match the values that you specified for at least one of <code>MaxWidth</code> and <code>MaxHeight</code> without dropping below either value. If you specify this option, Elastic Transcoder does not scale thumbnails up.</p> </li> </ul></p> #[serde(rename = "SizingPolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub sizing_policy: Option<String>, } /// <p>Settings that determine when a clip begins and how long it lasts.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct TimeSpan { /// <p>The duration of the clip. The format can be either HH:mm:ss.SSS (maximum value: 23:59:59.999; SSS is thousandths of a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a value, Elastic Transcoder creates an output file from StartTime to the end of the file.</p> <p>If you specify a value longer than the duration of the input file, Elastic Transcoder transcodes the file and returns a warning message.</p> #[serde(rename = "Duration")] #[serde(skip_serializing_if = "Option::is_none")] pub duration: Option<String>, /// <p>The place in the input file where you want a clip to start. The format can be either HH:mm:ss.SSS (maximum value: 23:59:59.999; SSS is thousandths of a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a value, Elastic Transcoder starts at the beginning of the input file.</p> #[serde(rename = "StartTime")] #[serde(skip_serializing_if = "Option::is_none")] pub start_time: Option<String>, } /// <p>Details about the timing of a job.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Timing { /// <p>The time the job finished transcoding, in epoch milliseconds.</p> #[serde(rename = "FinishTimeMillis")] #[serde(skip_serializing_if = "Option::is_none")] pub finish_time_millis: Option<i64>, /// <p>The time the job began transcoding, in epoch milliseconds.</p> #[serde(rename = "StartTimeMillis")] #[serde(skip_serializing_if = "Option::is_none")] pub start_time_millis: Option<i64>, /// <p>The time the job was submitted to Elastic Transcoder, in epoch milliseconds.</p> #[serde(rename = "SubmitTimeMillis")] #[serde(skip_serializing_if = "Option::is_none")] pub submit_time_millis: Option<i64>, } /// <p>The <code>UpdatePipelineNotificationsRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UpdatePipelineNotificationsRequest { /// <p>The identifier of the pipeline for which you want to change notification settings.</p> #[serde(rename = "Id")] pub id: String, /// <p><p>The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic that you want to notify to report job status.</p> <important> <p>To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.</p> </important> <ul> <li> <p> <b>Progressing</b>: The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process jobs that are added to this pipeline. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> <li> <p> <b>Complete</b>: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing a job. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> <li> <p> <b>Warning</b>: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> <li> <p> <b>Error</b>: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> </ul></p> #[serde(rename = "Notifications")] pub notifications: Notifications, } /// <p>The <code>UpdatePipelineNotificationsResponse</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UpdatePipelineNotificationsResponse { /// <p>A section of the response body that provides information about the pipeline associated with this notification.</p> #[serde(rename = "Pipeline")] #[serde(skip_serializing_if = "Option::is_none")] pub pipeline: Option<Pipeline>, } /// <p>The <code>UpdatePipelineRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UpdatePipelineRequest { /// <p>The AWS Key Management Service (AWS KMS) key that you want to use with this pipeline.</p> <p>If you use either <code>s3</code> or <code>s3-aws-kms</code> as your <code>Encryption:Mode</code>, you don't need to provide a key with your job because a default key, known as an AWS-KMS key, is created for you automatically. You need to provide an AWS-KMS key only if you want to use a non-default AWS-KMS key, or if you are using an <code>Encryption:Mode</code> of <code>aes-cbc-pkcs7</code>, <code>aes-ctr</code>, or <code>aes-gcm</code>.</p> #[serde(rename = "AwsKmsKeyArn")] #[serde(skip_serializing_if = "Option::is_none")] pub aws_kms_key_arn: Option<String>, /// <p><p>The optional <code>ContentConfig</code> object specifies information about the Amazon S3 bucket in which you want Elastic Transcoder to save transcoded files and playlists: which bucket to use, which users you want to have access to the files, the type of access you want users to have, and the storage class that you want to assign to the files.</p> <p>If you specify values for <code>ContentConfig</code>, you must also specify values for <code>ThumbnailConfig</code>.</p> <p>If you specify values for <code>ContentConfig</code> and <code>ThumbnailConfig</code>, omit the <code>OutputBucket</code> object.</p> <ul> <li> <p> <b>Bucket</b>: The Amazon S3 bucket in which you want Elastic Transcoder to save transcoded files and playlists.</p> </li> <li> <p> <b>Permissions</b> (Optional): The Permissions object specifies which users you want to have access to transcoded files and the type of access you want them to have. You can grant permissions to a maximum of 30 users and/or predefined Amazon S3 groups.</p> </li> <li> <p> <b>Grantee Type</b>: Specify the type of value that appears in the <code>Grantee</code> object:</p> <ul> <li> <p> <b>Canonical</b>: The value in the <code>Grantee</code> object is either the canonical user ID for an AWS account or an origin access identity for an Amazon CloudFront distribution. For more information about canonical user IDs, see Access Control List (ACL) Overview in the Amazon Simple Storage Service Developer Guide. For more information about using CloudFront origin access identities to require that users use CloudFront URLs instead of Amazon S3 URLs, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content.</p> <important> <p>A canonical user ID is not the same as an AWS account number.</p> </important> </li> <li> <p> <b>Email</b>: The value in the <code>Grantee</code> object is the registered email address of an AWS account.</p> </li> <li> <p> <b>Group</b>: The value in the <code>Grantee</code> object is one of the following predefined Amazon S3 groups: <code>AllUsers</code>, <code>AuthenticatedUsers</code>, or <code>LogDelivery</code>.</p> </li> </ul> </li> <li> <p> <b>Grantee</b>: The AWS user or group that you want to have access to transcoded files and playlists. To identify the user or group, you can specify the canonical user ID for an AWS account, an origin access identity for a CloudFront distribution, the registered email address of an AWS account, or a predefined Amazon S3 group </p> </li> <li> <p> <b>Access</b>: The permission that you want to give to the AWS user that you specified in <code>Grantee</code>. Permissions are granted on the files that Elastic Transcoder adds to the bucket, including playlists and video files. Valid values include: </p> <ul> <li> <p> <code>READ</code>: The grantee can read the objects and metadata for objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>READ<em>ACP</code>: The grantee can read the object ACL for objects that Elastic Transcoder adds to the Amazon S3 bucket. </p> </li> <li> <p> <code>WRITE</em>ACP</code>: The grantee can write the ACL for the objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>FULL<em>CONTROL</code>: The grantee has <code>READ</code>, <code>READ</em>ACP</code>, and <code>WRITE_ACP</code> permissions for the objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> </ul> </li> <li> <p> <b>StorageClass</b>: The Amazon S3 storage class, <code>Standard</code> or <code>ReducedRedundancy</code>, that you want Elastic Transcoder to assign to the video files and playlists that it stores in your Amazon S3 bucket.</p> </li> </ul></p> #[serde(rename = "ContentConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub content_config: Option<PipelineOutputConfig>, /// <p>The ID of the pipeline that you want to update.</p> #[serde(rename = "Id")] pub id: String, /// <p>The Amazon S3 bucket in which you saved the media files that you want to transcode and the graphics that you want to use as watermarks.</p> #[serde(rename = "InputBucket")] #[serde(skip_serializing_if = "Option::is_none")] pub input_bucket: Option<String>, /// <p>The name of the pipeline. We recommend that the name be unique within the AWS account, but uniqueness is not enforced.</p> <p>Constraints: Maximum 40 characters</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p><p>The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic that you want to notify to report job status.</p> <important> <p>To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.</p> </important> <ul> <li> <p> <b>Progressing</b>: The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process jobs that are added to this pipeline. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> <li> <p> <b>Complete</b>: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing a job. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> <li> <p> <b>Warning</b>: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> <li> <p> <b>Error</b>: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition. This is the ARN that Amazon SNS returned when you created the topic.</p> </li> </ul></p> #[serde(rename = "Notifications")] #[serde(skip_serializing_if = "Option::is_none")] pub notifications: Option<Notifications>, /// <p>The IAM Amazon Resource Name (ARN) for the role that you want Elastic Transcoder to use to transcode jobs for this pipeline.</p> #[serde(rename = "Role")] #[serde(skip_serializing_if = "Option::is_none")] pub role: Option<String>, /// <p><p>The <code>ThumbnailConfig</code> object specifies several values, including the Amazon S3 bucket in which you want Elastic Transcoder to save thumbnail files, which users you want to have access to the files, the type of access you want users to have, and the storage class that you want to assign to the files.</p> <p>If you specify values for <code>ContentConfig</code>, you must also specify values for <code>ThumbnailConfig</code> even if you don't want to create thumbnails.</p> <p>If you specify values for <code>ContentConfig</code> and <code>ThumbnailConfig</code>, omit the <code>OutputBucket</code> object.</p> <ul> <li> <p> <b>Bucket</b>: The Amazon S3 bucket in which you want Elastic Transcoder to save thumbnail files.</p> </li> <li> <p> <b>Permissions</b> (Optional): The <code>Permissions</code> object specifies which users and/or predefined Amazon S3 groups you want to have access to thumbnail files, and the type of access you want them to have. You can grant permissions to a maximum of 30 users and/or predefined Amazon S3 groups.</p> </li> <li> <p> <b>GranteeType</b>: Specify the type of value that appears in the Grantee object:</p> <ul> <li> <p> <b>Canonical</b>: The value in the <code>Grantee</code> object is either the canonical user ID for an AWS account or an origin access identity for an Amazon CloudFront distribution.</p> <important> <p>A canonical user ID is not the same as an AWS account number.</p> </important> </li> <li> <p> <b>Email</b>: The value in the <code>Grantee</code> object is the registered email address of an AWS account.</p> </li> <li> <p> <b>Group</b>: The value in the <code>Grantee</code> object is one of the following predefined Amazon S3 groups: <code>AllUsers</code>, <code>AuthenticatedUsers</code>, or <code>LogDelivery</code>.</p> </li> </ul> </li> <li> <p> <b>Grantee</b>: The AWS user or group that you want to have access to thumbnail files. To identify the user or group, you can specify the canonical user ID for an AWS account, an origin access identity for a CloudFront distribution, the registered email address of an AWS account, or a predefined Amazon S3 group. </p> </li> <li> <p> <b>Access</b>: The permission that you want to give to the AWS user that you specified in <code>Grantee</code>. Permissions are granted on the thumbnail files that Elastic Transcoder adds to the bucket. Valid values include: </p> <ul> <li> <p> <code>READ</code>: The grantee can read the thumbnails and metadata for objects that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>READ<em>ACP</code>: The grantee can read the object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>WRITE</em>ACP</code>: The grantee can write the ACL for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.</p> </li> <li> <p> <code>FULL<em>CONTROL</code>: The grantee has <code>READ</code>, <code>READ</em>ACP</code>, and <code>WRITE_ACP</code> permissions for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. </p> </li> </ul> </li> <li> <p> <b>StorageClass</b>: The Amazon S3 storage class, <code>Standard</code> or <code>ReducedRedundancy</code>, that you want Elastic Transcoder to assign to the thumbnails that it stores in your Amazon S3 bucket.</p> </li> </ul></p> #[serde(rename = "ThumbnailConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub thumbnail_config: Option<PipelineOutputConfig>, } /// <p>When you update a pipeline, Elastic Transcoder returns the values that you specified in the request.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UpdatePipelineResponse { /// <p>The pipeline updated by this <code>UpdatePipelineResponse</code> call.</p> #[serde(rename = "Pipeline")] #[serde(skip_serializing_if = "Option::is_none")] pub pipeline: Option<Pipeline>, /// <p>Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.</p> <p>Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.</p> #[serde(rename = "Warnings")] #[serde(skip_serializing_if = "Option::is_none")] pub warnings: Option<Vec<Warning>>, } /// <p>The <code>UpdatePipelineStatusRequest</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UpdatePipelineStatusRequest { /// <p>The identifier of the pipeline to update.</p> #[serde(rename = "Id")] pub id: String, /// <p><p>The desired status of the pipeline:</p> <ul> <li> <p> <code>Active</code>: The pipeline is processing jobs.</p> </li> <li> <p> <code>Paused</code>: The pipeline is not currently processing jobs.</p> </li> </ul></p> #[serde(rename = "Status")] pub status: String, } /// <p>When you update status for a pipeline, Elastic Transcoder returns the values that you specified in the request.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UpdatePipelineStatusResponse { /// <p>A section of the response body that provides information about the pipeline.</p> #[serde(rename = "Pipeline")] #[serde(skip_serializing_if = "Option::is_none")] pub pipeline: Option<Pipeline>, } /// <p>The <code>VideoParameters</code> structure.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct VideoParameters { /// <p><important> <p>To better control resolution and aspect ratio of output videos, we recommend that you use the values <code>MaxWidth</code>, <code>MaxHeight</code>, <code>SizingPolicy</code>, <code>PaddingPolicy</code>, and <code>DisplayAspectRatio</code> instead of <code>Resolution</code> and <code>AspectRatio</code>. The two groups of settings are mutually exclusive. Do not use them together.</p> </important> <p>The display aspect ratio of the video in the output file. Valid values include:</p> <p> <code>auto</code>, <code>1:1</code>, <code>4:3</code>, <code>3:2</code>, <code>16:9</code> </p> <p>If you specify <code>auto</code>, Elastic Transcoder tries to preserve the aspect ratio of the input file.</p> <p>If you specify an aspect ratio for the output file that differs from aspect ratio of the input file, Elastic Transcoder adds pillarboxing (black bars on the sides) or letterboxing (black bars on the top and bottom) to maintain the aspect ratio of the active region of the video.</p></p> #[serde(rename = "AspectRatio")] #[serde(skip_serializing_if = "Option::is_none")] pub aspect_ratio: Option<String>, /// <p><p>The bit rate of the video stream in the output file, in kilobits/second. Valid values depend on the values of <code>Level</code> and <code>Profile</code>. If you specify <code>auto</code>, Elastic Transcoder uses the detected bit rate of the input source. If you specify a value other than <code>auto</code>, we recommend that you specify a value less than or equal to the maximum H.264-compliant value listed for your level and profile:</p> <p> <i>Level - Maximum video bit rate in kilobits/second (baseline and main Profile) : maximum video bit rate in kilobits/second (high Profile)</i> </p> <ul> <li> <p>1 - 64 : 80</p> </li> <li> <p>1b - 128 : 160</p> </li> <li> <p>1.1 - 192 : 240</p> </li> <li> <p>1.2 - 384 : 480</p> </li> <li> <p>1.3 - 768 : 960</p> </li> <li> <p>2 - 2000 : 2500</p> </li> <li> <p>3 - 10000 : 12500</p> </li> <li> <p>3.1 - 14000 : 17500</p> </li> <li> <p>3.2 - 20000 : 25000</p> </li> <li> <p>4 - 20000 : 25000</p> </li> <li> <p>4.1 - 50000 : 62500</p> </li> </ul></p> #[serde(rename = "BitRate")] #[serde(skip_serializing_if = "Option::is_none")] pub bit_rate: Option<String>, /// <p>The video codec for the output file. Valid values include <code>gif</code>, <code>H.264</code>, <code>mpeg2</code>, <code>vp8</code>, and <code>vp9</code>. You can only specify <code>vp8</code> and <code>vp9</code> when the container type is <code>webm</code>, <code>gif</code> when the container type is <code>gif</code>, and <code>mpeg2</code> when the container type is <code>mpg</code>.</p> #[serde(rename = "Codec")] #[serde(skip_serializing_if = "Option::is_none")] pub codec: Option<String>, /// <p> <b>Profile (H.264/VP8/VP9 Only)</b> </p> <p>The H.264 profile that you want to use for the output file. Elastic Transcoder supports the following profiles:</p> <ul> <li> <p> <code>baseline</code>: The profile most commonly used for videoconferencing and for mobile applications.</p> </li> <li> <p> <code>main</code>: The profile used for standard-definition digital TV broadcasts.</p> </li> <li> <p> <code>high</code>: The profile used for high-definition digital TV broadcasts and for Blu-ray discs.</p> </li> </ul> <p> <b>Level (H.264 Only)</b> </p> <p>The H.264 level that you want to use for the output file. Elastic Transcoder supports the following levels:</p> <p> <code>1</code>, <code>1b</code>, <code>1.1</code>, <code>1.2</code>, <code>1.3</code>, <code>2</code>, <code>2.1</code>, <code>2.2</code>, <code>3</code>, <code>3.1</code>, <code>3.2</code>, <code>4</code>, <code>4.1</code> </p> <p> <b>MaxReferenceFrames (H.264 Only)</b> </p> <p>Applicable only when the value of Video:Codec is H.264. The maximum number of previously decoded frames to use as a reference for decoding future frames. Valid values are integers 0 through 16, but we recommend that you not use a value greater than the following:</p> <p> <code>Min(Floor(Maximum decoded picture buffer in macroblocks * 256 / (Width in pixels * Height in pixels)), 16)</code> </p> <p>where <i>Width in pixels</i> and <i>Height in pixels</i> represent either MaxWidth and MaxHeight, or Resolution. <i>Maximum decoded picture buffer in macroblocks</i> depends on the value of the <code>Level</code> object. See the list below. (A macroblock is a block of pixels measuring 16x16.) </p> <ul> <li> <p>1 - 396</p> </li> <li> <p>1b - 396</p> </li> <li> <p>1.1 - 900</p> </li> <li> <p>1.2 - 2376</p> </li> <li> <p>1.3 - 2376</p> </li> <li> <p>2 - 2376</p> </li> <li> <p>2.1 - 4752</p> </li> <li> <p>2.2 - 8100</p> </li> <li> <p>3 - 8100</p> </li> <li> <p>3.1 - 18000</p> </li> <li> <p>3.2 - 20480</p> </li> <li> <p>4 - 32768</p> </li> <li> <p>4.1 - 32768</p> </li> </ul> <p> <b>MaxBitRate (Optional, H.264/MPEG2/VP8/VP9 only)</b> </p> <p>The maximum number of bits per second in a video buffer; the size of the buffer is specified by <code>BufferSize</code>. Specify a value between 16 and 62,500. You can reduce the bandwidth required to stream a video by reducing the maximum bit rate, but this also reduces the quality of the video.</p> <p> <b>BufferSize (Optional, H.264/MPEG2/VP8/VP9 only)</b> </p> <p>The maximum number of bits in any x seconds of the output video. This window is commonly 10 seconds, the standard segment duration when you're using FMP4 or MPEG-TS for the container type of the output video. Specify an integer greater than 0. If you specify <code>MaxBitRate</code> and omit <code>BufferSize</code>, Elastic Transcoder sets <code>BufferSize</code> to 10 times the value of <code>MaxBitRate</code>.</p> <p> <b>InterlacedMode (Optional, H.264/MPEG2 Only)</b> </p> <p>The interlace mode for the output video.</p> <p>Interlaced video is used to double the perceived frame rate for a video by interlacing two fields (one field on every other line, the other field on the other lines) so that the human eye registers multiple pictures per frame. Interlacing reduces the bandwidth required for transmitting a video, but can result in blurred images and flickering.</p> <p>Valid values include <code>Progressive</code> (no interlacing, top to bottom), <code>TopFirst</code> (top field first), <code>BottomFirst</code> (bottom field first), and <code>Auto</code>.</p> <p>If <code>InterlaceMode</code> is not specified, Elastic Transcoder uses <code>Progressive</code> for the output. If <code>Auto</code> is specified, Elastic Transcoder interlaces the output.</p> <p> <b>ColorSpaceConversionMode (Optional, H.264/MPEG2 Only)</b> </p> <p>The color space conversion Elastic Transcoder applies to the output video. Color spaces are the algorithms used by the computer to store information about how to render color. <code>Bt.601</code> is the standard for standard definition video, while <code>Bt.709</code> is the standard for high definition video.</p> <p>Valid values include <code>None</code>, <code>Bt709toBt601</code>, <code>Bt601toBt709</code>, and <code>Auto</code>.</p> <p>If you chose <code>Auto</code> for <code>ColorSpaceConversionMode</code> and your output is interlaced, your frame rate is one of <code>23.97</code>, <code>24</code>, <code>25</code>, <code>29.97</code>, <code>50</code>, or <code>60</code>, your <code>SegmentDuration</code> is null, and you are using one of the resolution changes from the list below, Elastic Transcoder applies the following color space conversions:</p> <ul> <li> <p> <i>Standard to HD, 720x480 to 1920x1080</i> - Elastic Transcoder applies <code>Bt601ToBt709</code> </p> </li> <li> <p> <i>Standard to HD, 720x576 to 1920x1080</i> - Elastic Transcoder applies <code>Bt601ToBt709</code> </p> </li> <li> <p> <i>HD to Standard, 1920x1080 to 720x480</i> - Elastic Transcoder applies <code>Bt709ToBt601</code> </p> </li> <li> <p> <i>HD to Standard, 1920x1080 to 720x576</i> - Elastic Transcoder applies <code>Bt709ToBt601</code> </p> </li> </ul> <note> <p>Elastic Transcoder may change the behavior of the <code>ColorspaceConversionMode</code> <code>Auto</code> mode in the future. All outputs in a playlist must use the same <code>ColorSpaceConversionMode</code>.</p> </note> <p>If you do not specify a <code>ColorSpaceConversionMode</code>, Elastic Transcoder does not change the color space of a file. If you are unsure what <code>ColorSpaceConversionMode</code> was applied to your output file, you can check the <code>AppliedColorSpaceConversion</code> parameter included in your job response. If your job does not have an <code>AppliedColorSpaceConversion</code> in its response, no <code>ColorSpaceConversionMode</code> was applied.</p> <p> <b>ChromaSubsampling</b> </p> <p>The sampling pattern for the chroma (color) channels of the output video. Valid values include <code>yuv420p</code> and <code>yuv422p</code>.</p> <p> <code>yuv420p</code> samples the chroma information of every other horizontal and every other vertical line, <code>yuv422p</code> samples the color information of every horizontal line and every other vertical line.</p> <p> <b>LoopCount (Gif Only)</b> </p> <p>The number of times you want the output gif to loop. Valid values include <code>Infinite</code> and integers between <code>0</code> and <code>100</code>, inclusive.</p> #[serde(rename = "CodecOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub codec_options: Option<::std::collections::HashMap<String, String>>, /// <p>The value that Elastic Transcoder adds to the metadata in the output file.</p> #[serde(rename = "DisplayAspectRatio")] #[serde(skip_serializing_if = "Option::is_none")] pub display_aspect_ratio: Option<String>, /// <p><p>Applicable only when the value of Video:Codec is one of <code>H.264</code>, <code>MPEG2</code>, or <code>VP8</code>.</p> <p>Whether to use a fixed value for <code>FixedGOP</code>. Valid values are <code>true</code> and <code>false</code>:</p> <ul> <li> <p> <code>true</code>: Elastic Transcoder uses the value of <code>KeyframesMaxDist</code> for the distance between key frames (the number of frames in a group of pictures, or GOP).</p> </li> <li> <p> <code>false</code>: The distance between key frames can vary.</p> </li> </ul> <important> <p> <code>FixedGOP</code> must be set to <code>true</code> for <code>fmp4</code> containers.</p> </important></p> #[serde(rename = "FixedGOP")] #[serde(skip_serializing_if = "Option::is_none")] pub fixed_gop: Option<String>, /// <p><p>The frames per second for the video stream in the output file. Valid values include:</p> <p> <code>auto</code>, <code>10</code>, <code>15</code>, <code>23.97</code>, <code>24</code>, <code>25</code>, <code>29.97</code>, <code>30</code>, <code>60</code> </p> <p>If you specify <code>auto</code>, Elastic Transcoder uses the detected frame rate of the input source. If you specify a frame rate, we recommend that you perform the following calculation:</p> <p> <code>Frame rate = maximum recommended decoding speed in luma samples/second / (width in pixels * height in pixels)</code> </p> <p>where:</p> <ul> <li> <p> <i>width in pixels</i> and <i>height in pixels</i> represent the Resolution of the output video.</p> </li> <li> <p> <i>maximum recommended decoding speed in Luma samples/second</i> is less than or equal to the maximum value listed in the following table, based on the value that you specified for Level.</p> </li> </ul> <p>The maximum recommended decoding speed in Luma samples/second for each level is described in the following list (<i>Level - Decoding speed</i>):</p> <ul> <li> <p>1 - 380160</p> </li> <li> <p>1b - 380160</p> </li> <li> <p>1.1 - 76800</p> </li> <li> <p>1.2 - 1536000</p> </li> <li> <p>1.3 - 3041280</p> </li> <li> <p>2 - 3041280</p> </li> <li> <p>2.1 - 5068800</p> </li> <li> <p>2.2 - 5184000</p> </li> <li> <p>3 - 10368000</p> </li> <li> <p>3.1 - 27648000</p> </li> <li> <p>3.2 - 55296000</p> </li> <li> <p>4 - 62914560</p> </li> <li> <p>4.1 - 62914560</p> </li> </ul></p> #[serde(rename = "FrameRate")] #[serde(skip_serializing_if = "Option::is_none")] pub frame_rate: Option<String>, /// <p>Applicable only when the value of Video:Codec is one of <code>H.264</code>, <code>MPEG2</code>, or <code>VP8</code>.</p> <p>The maximum number of frames between key frames. Key frames are fully encoded frames; the frames between key frames are encoded based, in part, on the content of the key frames. The value is an integer formatted as a string; valid values are between 1 (every frame is a key frame) and 100000, inclusive. A higher value results in higher compression but may also discernibly decrease video quality.</p> <p>For <code>Smooth</code> outputs, the <code>FrameRate</code> must have a constant ratio to the <code>KeyframesMaxDist</code>. This allows <code>Smooth</code> playlists to switch between different quality levels while the file is being played.</p> <p>For example, an input file can have a <code>FrameRate</code> of 30 with a <code>KeyframesMaxDist</code> of 90. The output file then needs to have a ratio of 1:3. Valid outputs would have <code>FrameRate</code> of 30, 25, and 10, and <code>KeyframesMaxDist</code> of 90, 75, and 30, respectively.</p> <p>Alternately, this can be achieved by setting <code>FrameRate</code> to auto and having the same values for <code>MaxFrameRate</code> and <code>KeyframesMaxDist</code>.</p> #[serde(rename = "KeyframesMaxDist")] #[serde(skip_serializing_if = "Option::is_none")] pub keyframes_max_dist: Option<String>, /// <p>If you specify <code>auto</code> for <code>FrameRate</code>, Elastic Transcoder uses the frame rate of the input video for the frame rate of the output video. Specify the maximum frame rate that you want Elastic Transcoder to use when the frame rate of the input video is greater than the desired maximum frame rate of the output video. Valid values include: <code>10</code>, <code>15</code>, <code>23.97</code>, <code>24</code>, <code>25</code>, <code>29.97</code>, <code>30</code>, <code>60</code>.</p> #[serde(rename = "MaxFrameRate")] #[serde(skip_serializing_if = "Option::is_none")] pub max_frame_rate: Option<String>, /// <p>The maximum height of the output video in pixels. If you specify <code>auto</code>, Elastic Transcoder uses 1080 (Full HD) as the default value. If you specify a numeric value, enter an even integer between 96 and 3072.</p> #[serde(rename = "MaxHeight")] #[serde(skip_serializing_if = "Option::is_none")] pub max_height: Option<String>, /// <p> The maximum width of the output video in pixels. If you specify <code>auto</code>, Elastic Transcoder uses 1920 (Full HD) as the default value. If you specify a numeric value, enter an even integer between 128 and 4096. </p> #[serde(rename = "MaxWidth")] #[serde(skip_serializing_if = "Option::is_none")] pub max_width: Option<String>, /// <p>When you set <code>PaddingPolicy</code> to <code>Pad</code>, Elastic Transcoder may add black bars to the top and bottom and/or left and right sides of the output video to make the total size of the output video match the values that you specified for <code>MaxWidth</code> and <code>MaxHeight</code>.</p> #[serde(rename = "PaddingPolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub padding_policy: Option<String>, /// <p><important> <p>To better control resolution and aspect ratio of output videos, we recommend that you use the values <code>MaxWidth</code>, <code>MaxHeight</code>, <code>SizingPolicy</code>, <code>PaddingPolicy</code>, and <code>DisplayAspectRatio</code> instead of <code>Resolution</code> and <code>AspectRatio</code>. The two groups of settings are mutually exclusive. Do not use them together.</p> </important> <p>The width and height of the video in the output file, in pixels. Valid values are <code>auto</code> and <i>width</i> x <i>height</i>:</p> <ul> <li> <p> <code>auto</code>: Elastic Transcoder attempts to preserve the width and height of the input file, subject to the following rules.</p> </li> <li> <p> <code> <i>width</i> x <i>height</i> </code>: The width and height of the output video in pixels.</p> </li> </ul> <p>Note the following about specifying the width and height:</p> <ul> <li> <p>The width must be an even integer between 128 and 4096, inclusive.</p> </li> <li> <p>The height must be an even integer between 96 and 3072, inclusive.</p> </li> <li> <p>If you specify a resolution that is less than the resolution of the input file, Elastic Transcoder rescales the output file to the lower resolution.</p> </li> <li> <p>If you specify a resolution that is greater than the resolution of the input file, Elastic Transcoder rescales the output to the higher resolution.</p> </li> <li> <p>We recommend that you specify a resolution for which the product of width and height is less than or equal to the applicable value in the following list (<i>List - Max width x height value</i>):</p> <ul> <li> <p>1 - 25344</p> </li> <li> <p>1b - 25344</p> </li> <li> <p>1.1 - 101376</p> </li> <li> <p>1.2 - 101376</p> </li> <li> <p>1.3 - 101376</p> </li> <li> <p>2 - 101376</p> </li> <li> <p>2.1 - 202752</p> </li> <li> <p>2.2 - 404720</p> </li> <li> <p>3 - 404720</p> </li> <li> <p>3.1 - 921600</p> </li> <li> <p>3.2 - 1310720</p> </li> <li> <p>4 - 2097152</p> </li> <li> <p>4.1 - 2097152</p> </li> </ul> </li> </ul></p> #[serde(rename = "Resolution")] #[serde(skip_serializing_if = "Option::is_none")] pub resolution: Option<String>, /// <p><p>Specify one of the following values to control scaling of the output video:</p> <ul> <li> <p> <code>Fit</code>: Elastic Transcoder scales the output video so it matches the value that you specified in either <code>MaxWidth</code> or <code>MaxHeight</code> without exceeding the other value.</p> </li> <li> <p> <code>Fill</code>: Elastic Transcoder scales the output video so it matches the value that you specified in either <code>MaxWidth</code> or <code>MaxHeight</code> and matches or exceeds the other value. Elastic Transcoder centers the output video and then crops it in the dimension (if any) that exceeds the maximum value.</p> </li> <li> <p> <code>Stretch</code>: Elastic Transcoder stretches the output video to match the values that you specified for <code>MaxWidth</code> and <code>MaxHeight</code>. If the relative proportions of the input video and the output video are different, the output video will be distorted.</p> </li> <li> <p> <code>Keep</code>: Elastic Transcoder does not scale the output video. If either dimension of the input video exceeds the values that you specified for <code>MaxWidth</code> and <code>MaxHeight</code>, Elastic Transcoder crops the output video.</p> </li> <li> <p> <code>ShrinkToFit</code>: Elastic Transcoder scales the output video down so that its dimensions match the values that you specified for at least one of <code>MaxWidth</code> and <code>MaxHeight</code> without exceeding either value. If you specify this option, Elastic Transcoder does not scale the video up.</p> </li> <li> <p> <code>ShrinkToFill</code>: Elastic Transcoder scales the output video down so that its dimensions match the values that you specified for at least one of <code>MaxWidth</code> and <code>MaxHeight</code> without dropping below either value. If you specify this option, Elastic Transcoder does not scale the video up.</p> </li> </ul></p> #[serde(rename = "SizingPolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub sizing_policy: Option<String>, /// <p>Settings for the size, location, and opacity of graphics that you want Elastic Transcoder to overlay over videos that are transcoded using this preset. You can specify settings for up to four watermarks. Watermarks appear in the specified size and location, and with the specified opacity for the duration of the transcoded video.</p> <p>Watermarks can be in .png or .jpg format. If you want to display a watermark that is not rectangular, use the .png format, which supports transparency.</p> <p>When you create a job that uses this preset, you specify the .png or .jpg graphics that you want Elastic Transcoder to include in the transcoded videos. You can specify fewer graphics in the job than you specify watermark settings in the preset, which allows you to use the same preset for up to four watermarks that have different dimensions.</p> #[serde(rename = "Watermarks")] #[serde(skip_serializing_if = "Option::is_none")] pub watermarks: Option<Vec<PresetWatermark>>, } /// <p>Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.</p> <p>Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Warning { /// <p>The code of the cross-regional warning.</p> #[serde(rename = "Code")] #[serde(skip_serializing_if = "Option::is_none")] pub code: Option<String>, /// <p><p>The message explaining what resources are in a different region from the pipeline.</p> <note> <p>AWS KMS keys must be in the same region as the pipeline.</p> </note></p> #[serde(rename = "Message")] #[serde(skip_serializing_if = "Option::is_none")] pub message: Option<String>, } /// Errors returned by CancelJob #[derive(Debug, PartialEq)] pub enum CancelJobError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The resource you are attempting to change is in use. For example, you are attempting to delete a pipeline that is currently in use.</p> ResourceInUse(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl CancelJobError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CancelJobError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(CancelJobError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(CancelJobError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(CancelJobError::InternalService(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(CancelJobError::ResourceInUse(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(CancelJobError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CancelJobError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CancelJobError { fn description(&self) -> &str { match *self { CancelJobError::AccessDenied(ref cause) => cause, CancelJobError::IncompatibleVersion(ref cause) => cause, CancelJobError::InternalService(ref cause) => cause, CancelJobError::ResourceInUse(ref cause) => cause, CancelJobError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by CreateJob #[derive(Debug, PartialEq)] pub enum CreateJobError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>Too many operations for a given AWS account. For example, the number of pipelines exceeds the maximum allowed.</p> LimitExceeded(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl CreateJobError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateJobError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(CreateJobError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(CreateJobError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(CreateJobError::InternalService(err.msg)) } "LimitExceededException" => { return RusotoError::Service(CreateJobError::LimitExceeded(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(CreateJobError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateJobError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateJobError { fn description(&self) -> &str { match *self { CreateJobError::AccessDenied(ref cause) => cause, CreateJobError::IncompatibleVersion(ref cause) => cause, CreateJobError::InternalService(ref cause) => cause, CreateJobError::LimitExceeded(ref cause) => cause, CreateJobError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by CreatePipeline #[derive(Debug, PartialEq)] pub enum CreatePipelineError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>Too many operations for a given AWS account. For example, the number of pipelines exceeds the maximum allowed.</p> LimitExceeded(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl CreatePipelineError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreatePipelineError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(CreatePipelineError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(CreatePipelineError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(CreatePipelineError::InternalService(err.msg)) } "LimitExceededException" => { return RusotoError::Service(CreatePipelineError::LimitExceeded(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(CreatePipelineError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreatePipelineError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreatePipelineError { fn description(&self) -> &str { match *self { CreatePipelineError::AccessDenied(ref cause) => cause, CreatePipelineError::IncompatibleVersion(ref cause) => cause, CreatePipelineError::InternalService(ref cause) => cause, CreatePipelineError::LimitExceeded(ref cause) => cause, CreatePipelineError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by CreatePreset #[derive(Debug, PartialEq)] pub enum CreatePresetError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>Too many operations for a given AWS account. For example, the number of pipelines exceeds the maximum allowed.</p> LimitExceeded(String), } impl CreatePresetError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreatePresetError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(CreatePresetError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(CreatePresetError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(CreatePresetError::InternalService(err.msg)) } "LimitExceededException" => { return RusotoError::Service(CreatePresetError::LimitExceeded(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreatePresetError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreatePresetError { fn description(&self) -> &str { match *self { CreatePresetError::AccessDenied(ref cause) => cause, CreatePresetError::IncompatibleVersion(ref cause) => cause, CreatePresetError::InternalService(ref cause) => cause, CreatePresetError::LimitExceeded(ref cause) => cause, } } } /// Errors returned by DeletePipeline #[derive(Debug, PartialEq)] pub enum DeletePipelineError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The resource you are attempting to change is in use. For example, you are attempting to delete a pipeline that is currently in use.</p> ResourceInUse(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl DeletePipelineError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeletePipelineError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(DeletePipelineError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(DeletePipelineError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(DeletePipelineError::InternalService(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(DeletePipelineError::ResourceInUse(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(DeletePipelineError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeletePipelineError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeletePipelineError { fn description(&self) -> &str { match *self { DeletePipelineError::AccessDenied(ref cause) => cause, DeletePipelineError::IncompatibleVersion(ref cause) => cause, DeletePipelineError::InternalService(ref cause) => cause, DeletePipelineError::ResourceInUse(ref cause) => cause, DeletePipelineError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by DeletePreset #[derive(Debug, PartialEq)] pub enum DeletePresetError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl DeletePresetError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeletePresetError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(DeletePresetError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(DeletePresetError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(DeletePresetError::InternalService(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(DeletePresetError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeletePresetError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeletePresetError { fn description(&self) -> &str { match *self { DeletePresetError::AccessDenied(ref cause) => cause, DeletePresetError::IncompatibleVersion(ref cause) => cause, DeletePresetError::InternalService(ref cause) => cause, DeletePresetError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by ListJobsByPipeline #[derive(Debug, PartialEq)] pub enum ListJobsByPipelineError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl ListJobsByPipelineError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListJobsByPipelineError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(ListJobsByPipelineError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(ListJobsByPipelineError::IncompatibleVersion( err.msg, )) } "InternalServiceException" => { return RusotoError::Service(ListJobsByPipelineError::InternalService(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(ListJobsByPipelineError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListJobsByPipelineError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListJobsByPipelineError { fn description(&self) -> &str { match *self { ListJobsByPipelineError::AccessDenied(ref cause) => cause, ListJobsByPipelineError::IncompatibleVersion(ref cause) => cause, ListJobsByPipelineError::InternalService(ref cause) => cause, ListJobsByPipelineError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by ListJobsByStatus #[derive(Debug, PartialEq)] pub enum ListJobsByStatusError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl ListJobsByStatusError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListJobsByStatusError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(ListJobsByStatusError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(ListJobsByStatusError::IncompatibleVersion( err.msg, )) } "InternalServiceException" => { return RusotoError::Service(ListJobsByStatusError::InternalService(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(ListJobsByStatusError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListJobsByStatusError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListJobsByStatusError { fn description(&self) -> &str { match *self { ListJobsByStatusError::AccessDenied(ref cause) => cause, ListJobsByStatusError::IncompatibleVersion(ref cause) => cause, ListJobsByStatusError::InternalService(ref cause) => cause, ListJobsByStatusError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by ListPipelines #[derive(Debug, PartialEq)] pub enum ListPipelinesError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), } impl ListPipelinesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListPipelinesError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(ListPipelinesError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(ListPipelinesError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(ListPipelinesError::InternalService(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListPipelinesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListPipelinesError { fn description(&self) -> &str { match *self { ListPipelinesError::AccessDenied(ref cause) => cause, ListPipelinesError::IncompatibleVersion(ref cause) => cause, ListPipelinesError::InternalService(ref cause) => cause, } } } /// Errors returned by ListPresets #[derive(Debug, PartialEq)] pub enum ListPresetsError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), } impl ListPresetsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListPresetsError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(ListPresetsError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(ListPresetsError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(ListPresetsError::InternalService(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListPresetsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListPresetsError { fn description(&self) -> &str { match *self { ListPresetsError::AccessDenied(ref cause) => cause, ListPresetsError::IncompatibleVersion(ref cause) => cause, ListPresetsError::InternalService(ref cause) => cause, } } } /// Errors returned by ReadJob #[derive(Debug, PartialEq)] pub enum ReadJobError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl ReadJobError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ReadJobError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(ReadJobError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(ReadJobError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(ReadJobError::InternalService(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(ReadJobError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ReadJobError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ReadJobError { fn description(&self) -> &str { match *self { ReadJobError::AccessDenied(ref cause) => cause, ReadJobError::IncompatibleVersion(ref cause) => cause, ReadJobError::InternalService(ref cause) => cause, ReadJobError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by ReadPipeline #[derive(Debug, PartialEq)] pub enum ReadPipelineError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl ReadPipelineError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ReadPipelineError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(ReadPipelineError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(ReadPipelineError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(ReadPipelineError::InternalService(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(ReadPipelineError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ReadPipelineError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ReadPipelineError { fn description(&self) -> &str { match *self { ReadPipelineError::AccessDenied(ref cause) => cause, ReadPipelineError::IncompatibleVersion(ref cause) => cause, ReadPipelineError::InternalService(ref cause) => cause, ReadPipelineError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by ReadPreset #[derive(Debug, PartialEq)] pub enum ReadPresetError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl ReadPresetError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ReadPresetError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(ReadPresetError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(ReadPresetError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(ReadPresetError::InternalService(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(ReadPresetError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ReadPresetError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ReadPresetError { fn description(&self) -> &str { match *self { ReadPresetError::AccessDenied(ref cause) => cause, ReadPresetError::IncompatibleVersion(ref cause) => cause, ReadPresetError::InternalService(ref cause) => cause, ReadPresetError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by TestRole #[derive(Debug, PartialEq)] pub enum TestRoleError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl TestRoleError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<TestRoleError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(TestRoleError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(TestRoleError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(TestRoleError::InternalService(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(TestRoleError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for TestRoleError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for TestRoleError { fn description(&self) -> &str { match *self { TestRoleError::AccessDenied(ref cause) => cause, TestRoleError::IncompatibleVersion(ref cause) => cause, TestRoleError::InternalService(ref cause) => cause, TestRoleError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by UpdatePipeline #[derive(Debug, PartialEq)] pub enum UpdatePipelineError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The resource you are attempting to change is in use. For example, you are attempting to delete a pipeline that is currently in use.</p> ResourceInUse(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl UpdatePipelineError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdatePipelineError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(UpdatePipelineError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(UpdatePipelineError::IncompatibleVersion(err.msg)) } "InternalServiceException" => { return RusotoError::Service(UpdatePipelineError::InternalService(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(UpdatePipelineError::ResourceInUse(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(UpdatePipelineError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UpdatePipelineError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UpdatePipelineError { fn description(&self) -> &str { match *self { UpdatePipelineError::AccessDenied(ref cause) => cause, UpdatePipelineError::IncompatibleVersion(ref cause) => cause, UpdatePipelineError::InternalService(ref cause) => cause, UpdatePipelineError::ResourceInUse(ref cause) => cause, UpdatePipelineError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by UpdatePipelineNotifications #[derive(Debug, PartialEq)] pub enum UpdatePipelineNotificationsError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The resource you are attempting to change is in use. For example, you are attempting to delete a pipeline that is currently in use.</p> ResourceInUse(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl UpdatePipelineNotificationsError { pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdatePipelineNotificationsError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(UpdatePipelineNotificationsError::AccessDenied( err.msg, )) } "IncompatibleVersionException" => { return RusotoError::Service( UpdatePipelineNotificationsError::IncompatibleVersion(err.msg), ) } "InternalServiceException" => { return RusotoError::Service(UpdatePipelineNotificationsError::InternalService( err.msg, )) } "ResourceInUseException" => { return RusotoError::Service(UpdatePipelineNotificationsError::ResourceInUse( err.msg, )) } "ResourceNotFoundException" => { return RusotoError::Service( UpdatePipelineNotificationsError::ResourceNotFound(err.msg), ) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UpdatePipelineNotificationsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UpdatePipelineNotificationsError { fn description(&self) -> &str { match *self { UpdatePipelineNotificationsError::AccessDenied(ref cause) => cause, UpdatePipelineNotificationsError::IncompatibleVersion(ref cause) => cause, UpdatePipelineNotificationsError::InternalService(ref cause) => cause, UpdatePipelineNotificationsError::ResourceInUse(ref cause) => cause, UpdatePipelineNotificationsError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by UpdatePipelineStatus #[derive(Debug, PartialEq)] pub enum UpdatePipelineStatusError { /// <p>General authentication failure. The request was not signed correctly.</p> AccessDenied(String), IncompatibleVersion(String), /// <p>Elastic Transcoder encountered an unexpected exception while trying to fulfill the request.</p> InternalService(String), /// <p>The resource you are attempting to change is in use. For example, you are attempting to delete a pipeline that is currently in use.</p> ResourceInUse(String), /// <p>The requested resource does not exist or is not available. For example, the pipeline to which you're trying to add a job doesn't exist or is still being created.</p> ResourceNotFound(String), } impl UpdatePipelineStatusError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdatePipelineStatusError> { if let Some(err) = proto::json::Error::parse_rest(&res) { match err.typ.as_str() { "AccessDeniedException" => { return RusotoError::Service(UpdatePipelineStatusError::AccessDenied(err.msg)) } "IncompatibleVersionException" => { return RusotoError::Service(UpdatePipelineStatusError::IncompatibleVersion( err.msg, )) } "InternalServiceException" => { return RusotoError::Service(UpdatePipelineStatusError::InternalService( err.msg, )) } "ResourceInUseException" => { return RusotoError::Service(UpdatePipelineStatusError::ResourceInUse(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(UpdatePipelineStatusError::ResourceNotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UpdatePipelineStatusError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UpdatePipelineStatusError { fn description(&self) -> &str { match *self { UpdatePipelineStatusError::AccessDenied(ref cause) => cause, UpdatePipelineStatusError::IncompatibleVersion(ref cause) => cause, UpdatePipelineStatusError::InternalService(ref cause) => cause, UpdatePipelineStatusError::ResourceInUse(ref cause) => cause, UpdatePipelineStatusError::ResourceNotFound(ref cause) => cause, } } } /// Trait representing the capabilities of the Amazon Elastic Transcoder API. Amazon Elastic Transcoder clients implement this trait. pub trait Ets { /// <p><p>The CancelJob operation cancels an unfinished job.</p> <note> <p>You can only cancel a job that has a status of <code>Submitted</code>. To prevent a pipeline from starting to process a job while you're getting the job identifier, use <a>UpdatePipelineStatus</a> to temporarily pause the pipeline.</p> </note></p> fn cancel_job( &self, input: CancelJobRequest, ) -> RusotoFuture<CancelJobResponse, CancelJobError>; /// <p>When you create a job, Elastic Transcoder returns JSON data that includes the values that you specified plus information about the job that is created.</p> <p>If you have specified more than one output for your jobs (for example, one output for the Kindle Fire and another output for the Apple iPhone 4s), you currently must use the Elastic Transcoder API to list the jobs (as opposed to the AWS Console).</p> fn create_job( &self, input: CreateJobRequest, ) -> RusotoFuture<CreateJobResponse, CreateJobError>; /// <p>The CreatePipeline operation creates a pipeline with settings that you specify.</p> fn create_pipeline( &self, input: CreatePipelineRequest, ) -> RusotoFuture<CreatePipelineResponse, CreatePipelineError>; /// <p>The CreatePreset operation creates a preset with settings that you specify.</p> <important> <p>Elastic Transcoder checks the CreatePreset settings to ensure that they meet Elastic Transcoder requirements and to determine whether they comply with H.264 standards. If your settings are not valid for Elastic Transcoder, Elastic Transcoder returns an HTTP 400 response (<code>ValidationException</code>) and does not create the preset. If the settings are valid for Elastic Transcoder but aren't strictly compliant with the H.264 standard, Elastic Transcoder creates the preset and returns a warning message in the response. This helps you determine whether your settings comply with the H.264 standard while giving you greater flexibility with respect to the video that Elastic Transcoder produces.</p> </important> <p>Elastic Transcoder uses the H.264 video-compression format. For more information, see the International Telecommunication Union publication <i>Recommendation ITU-T H.264: Advanced video coding for generic audiovisual services</i>.</p> fn create_preset( &self, input: CreatePresetRequest, ) -> RusotoFuture<CreatePresetResponse, CreatePresetError>; /// <p>The DeletePipeline operation removes a pipeline.</p> <p> You can only delete a pipeline that has never been used or that is not currently in use (doesn't contain any active jobs). If the pipeline is currently in use, <code>DeletePipeline</code> returns an error. </p> fn delete_pipeline( &self, input: DeletePipelineRequest, ) -> RusotoFuture<DeletePipelineResponse, DeletePipelineError>; /// <p><p>The DeletePreset operation removes a preset that you've added in an AWS region.</p> <note> <p>You can't delete the default presets that are included with Elastic Transcoder.</p> </note></p> fn delete_preset( &self, input: DeletePresetRequest, ) -> RusotoFuture<DeletePresetResponse, DeletePresetError>; /// <p>The ListJobsByPipeline operation gets a list of the jobs currently in a pipeline.</p> <p>Elastic Transcoder returns all of the jobs currently in the specified pipeline. The response body contains one element for each job that satisfies the search criteria.</p> fn list_jobs_by_pipeline( &self, input: ListJobsByPipelineRequest, ) -> RusotoFuture<ListJobsByPipelineResponse, ListJobsByPipelineError>; /// <p>The ListJobsByStatus operation gets a list of jobs that have a specified status. The response body contains one element for each job that satisfies the search criteria.</p> fn list_jobs_by_status( &self, input: ListJobsByStatusRequest, ) -> RusotoFuture<ListJobsByStatusResponse, ListJobsByStatusError>; /// <p>The ListPipelines operation gets a list of the pipelines associated with the current AWS account.</p> fn list_pipelines( &self, input: ListPipelinesRequest, ) -> RusotoFuture<ListPipelinesResponse, ListPipelinesError>; /// <p>The ListPresets operation gets a list of the default presets included with Elastic Transcoder and the presets that you've added in an AWS region.</p> fn list_presets( &self, input: ListPresetsRequest, ) -> RusotoFuture<ListPresetsResponse, ListPresetsError>; /// <p>The ReadJob operation returns detailed information about a job.</p> fn read_job(&self, input: ReadJobRequest) -> RusotoFuture<ReadJobResponse, ReadJobError>; /// <p>The ReadPipeline operation gets detailed information about a pipeline.</p> fn read_pipeline( &self, input: ReadPipelineRequest, ) -> RusotoFuture<ReadPipelineResponse, ReadPipelineError>; /// <p>The ReadPreset operation gets detailed information about a preset.</p> fn read_preset( &self, input: ReadPresetRequest, ) -> RusotoFuture<ReadPresetResponse, ReadPresetError>; /// <p>The TestRole operation tests the IAM role used to create the pipeline.</p> <p>The <code>TestRole</code> action lets you determine whether the IAM role you are using has sufficient permissions to let Elastic Transcoder perform tasks associated with the transcoding process. The action attempts to assume the specified IAM role, checks read access to the input and output buckets, and tries to send a test notification to Amazon SNS topics that you specify.</p> fn test_role(&self, input: TestRoleRequest) -> RusotoFuture<TestRoleResponse, TestRoleError>; /// <p><p> Use the <code>UpdatePipeline</code> operation to update settings for a pipeline.</p> <important> <p>When you change pipeline settings, your changes take effect immediately. Jobs that you have already submitted and that Elastic Transcoder has not started to process are affected in addition to jobs that you submit after you change settings. </p> </important></p> fn update_pipeline( &self, input: UpdatePipelineRequest, ) -> RusotoFuture<UpdatePipelineResponse, UpdatePipelineError>; /// <p>With the UpdatePipelineNotifications operation, you can update Amazon Simple Notification Service (Amazon SNS) notifications for a pipeline.</p> <p>When you update notifications for a pipeline, Elastic Transcoder returns the values that you specified in the request.</p> fn update_pipeline_notifications( &self, input: UpdatePipelineNotificationsRequest, ) -> RusotoFuture<UpdatePipelineNotificationsResponse, UpdatePipelineNotificationsError>; /// <p>The UpdatePipelineStatus operation pauses or reactivates a pipeline, so that the pipeline stops or restarts the processing of jobs.</p> <p>Changing the pipeline status is useful if you want to cancel one or more jobs. You can't cancel jobs after Elastic Transcoder has started processing them; if you pause the pipeline to which you submitted the jobs, you have more time to get the job IDs for the jobs that you want to cancel, and to send a <a>CancelJob</a> request. </p> fn update_pipeline_status( &self, input: UpdatePipelineStatusRequest, ) -> RusotoFuture<UpdatePipelineStatusResponse, UpdatePipelineStatusError>; } /// A client for the Amazon Elastic Transcoder API. #[derive(Clone)] pub struct EtsClient { client: Client, region: region::Region, } impl EtsClient { /// Creates a client backed by the default tokio event loop. /// /// The client will use the default credentials provider and tls client. pub fn new(region: region::Region) -> EtsClient { EtsClient { client: Client::shared(), region, } } pub fn new_with<P, D>( request_dispatcher: D, credentials_provider: P, region: region::Region, ) -> EtsClient where P: ProvideAwsCredentials + Send + Sync + 'static, P::Future: Send, D: DispatchSignedRequest + Send + Sync + 'static, D::Future: Send, { EtsClient { client: Client::new_with(credentials_provider, request_dispatcher), region, } } } impl Ets for EtsClient { /// <p><p>The CancelJob operation cancels an unfinished job.</p> <note> <p>You can only cancel a job that has a status of <code>Submitted</code>. To prevent a pipeline from starting to process a job while you're getting the job identifier, use <a>UpdatePipelineStatus</a> to temporarily pause the pipeline.</p> </note></p> fn cancel_job( &self, input: CancelJobRequest, ) -> RusotoFuture<CancelJobResponse, CancelJobError> { let request_uri = format!("/2012-09-25/jobs/{id}", id = input.id); let mut request = SignedRequest::new("DELETE", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 202 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<CancelJobResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(CancelJobError::from_response(response))), ) } }) } /// <p>When you create a job, Elastic Transcoder returns JSON data that includes the values that you specified plus information about the job that is created.</p> <p>If you have specified more than one output for your jobs (for example, one output for the Kindle Fire and another output for the Apple iPhone 4s), you currently must use the Elastic Transcoder API to list the jobs (as opposed to the AWS Console).</p> fn create_job( &self, input: CreateJobRequest, ) -> RusotoFuture<CreateJobResponse, CreateJobError> { let request_uri = "/2012-09-25/jobs"; let mut request = SignedRequest::new("POST", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 201 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<CreateJobResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(CreateJobError::from_response(response))), ) } }) } /// <p>The CreatePipeline operation creates a pipeline with settings that you specify.</p> fn create_pipeline( &self, input: CreatePipelineRequest, ) -> RusotoFuture<CreatePipelineResponse, CreatePipelineError> { let request_uri = "/2012-09-25/pipelines"; let mut request = SignedRequest::new("POST", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 201 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<CreatePipelineResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(CreatePipelineError::from_response(response))), ) } }) } /// <p>The CreatePreset operation creates a preset with settings that you specify.</p> <important> <p>Elastic Transcoder checks the CreatePreset settings to ensure that they meet Elastic Transcoder requirements and to determine whether they comply with H.264 standards. If your settings are not valid for Elastic Transcoder, Elastic Transcoder returns an HTTP 400 response (<code>ValidationException</code>) and does not create the preset. If the settings are valid for Elastic Transcoder but aren't strictly compliant with the H.264 standard, Elastic Transcoder creates the preset and returns a warning message in the response. This helps you determine whether your settings comply with the H.264 standard while giving you greater flexibility with respect to the video that Elastic Transcoder produces.</p> </important> <p>Elastic Transcoder uses the H.264 video-compression format. For more information, see the International Telecommunication Union publication <i>Recommendation ITU-T H.264: Advanced video coding for generic audiovisual services</i>.</p> fn create_preset( &self, input: CreatePresetRequest, ) -> RusotoFuture<CreatePresetResponse, CreatePresetError> { let request_uri = "/2012-09-25/presets"; let mut request = SignedRequest::new("POST", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 201 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<CreatePresetResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(CreatePresetError::from_response(response))), ) } }) } /// <p>The DeletePipeline operation removes a pipeline.</p> <p> You can only delete a pipeline that has never been used or that is not currently in use (doesn't contain any active jobs). If the pipeline is currently in use, <code>DeletePipeline</code> returns an error. </p> fn delete_pipeline( &self, input: DeletePipelineRequest, ) -> RusotoFuture<DeletePipelineResponse, DeletePipelineError> { let request_uri = format!("/2012-09-25/pipelines/{id}", id = input.id); let mut request = SignedRequest::new("DELETE", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 202 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<DeletePipelineResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeletePipelineError::from_response(response))), ) } }) } /// <p><p>The DeletePreset operation removes a preset that you've added in an AWS region.</p> <note> <p>You can't delete the default presets that are included with Elastic Transcoder.</p> </note></p> fn delete_preset( &self, input: DeletePresetRequest, ) -> RusotoFuture<DeletePresetResponse, DeletePresetError> { let request_uri = format!("/2012-09-25/presets/{id}", id = input.id); let mut request = SignedRequest::new("DELETE", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 202 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<DeletePresetResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeletePresetError::from_response(response))), ) } }) } /// <p>The ListJobsByPipeline operation gets a list of the jobs currently in a pipeline.</p> <p>Elastic Transcoder returns all of the jobs currently in the specified pipeline. The response body contains one element for each job that satisfies the search criteria.</p> fn list_jobs_by_pipeline( &self, input: ListJobsByPipelineRequest, ) -> RusotoFuture<ListJobsByPipelineResponse, ListJobsByPipelineError> { let request_uri = format!( "/2012-09-25/jobsByPipeline/{pipeline_id}", pipeline_id = input.pipeline_id ); let mut request = SignedRequest::new("GET", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let mut params = Params::new(); if let Some(ref x) = input.ascending { params.put("Ascending", x); } if let Some(ref x) = input.page_token { params.put("PageToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<ListJobsByPipelineResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListJobsByPipelineError::from_response(response))), ) } }) } /// <p>The ListJobsByStatus operation gets a list of jobs that have a specified status. The response body contains one element for each job that satisfies the search criteria.</p> fn list_jobs_by_status( &self, input: ListJobsByStatusRequest, ) -> RusotoFuture<ListJobsByStatusResponse, ListJobsByStatusError> { let request_uri = format!("/2012-09-25/jobsByStatus/{status}", status = input.status); let mut request = SignedRequest::new("GET", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let mut params = Params::new(); if let Some(ref x) = input.ascending { params.put("Ascending", x); } if let Some(ref x) = input.page_token { params.put("PageToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<ListJobsByStatusResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListJobsByStatusError::from_response(response))), ) } }) } /// <p>The ListPipelines operation gets a list of the pipelines associated with the current AWS account.</p> fn list_pipelines( &self, input: ListPipelinesRequest, ) -> RusotoFuture<ListPipelinesResponse, ListPipelinesError> { let request_uri = "/2012-09-25/pipelines"; let mut request = SignedRequest::new("GET", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let mut params = Params::new(); if let Some(ref x) = input.ascending { params.put("Ascending", x); } if let Some(ref x) = input.page_token { params.put("PageToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<ListPipelinesResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListPipelinesError::from_response(response))), ) } }) } /// <p>The ListPresets operation gets a list of the default presets included with Elastic Transcoder and the presets that you've added in an AWS region.</p> fn list_presets( &self, input: ListPresetsRequest, ) -> RusotoFuture<ListPresetsResponse, ListPresetsError> { let request_uri = "/2012-09-25/presets"; let mut request = SignedRequest::new("GET", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let mut params = Params::new(); if let Some(ref x) = input.ascending { params.put("Ascending", x); } if let Some(ref x) = input.page_token { params.put("PageToken", x); } request.set_params(params); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<ListPresetsResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListPresetsError::from_response(response))), ) } }) } /// <p>The ReadJob operation returns detailed information about a job.</p> fn read_job(&self, input: ReadJobRequest) -> RusotoFuture<ReadJobResponse, ReadJobError> { let request_uri = format!("/2012-09-25/jobs/{id}", id = input.id); let mut request = SignedRequest::new("GET", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<ReadJobResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ReadJobError::from_response(response))), ) } }) } /// <p>The ReadPipeline operation gets detailed information about a pipeline.</p> fn read_pipeline( &self, input: ReadPipelineRequest, ) -> RusotoFuture<ReadPipelineResponse, ReadPipelineError> { let request_uri = format!("/2012-09-25/pipelines/{id}", id = input.id); let mut request = SignedRequest::new("GET", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<ReadPipelineResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ReadPipelineError::from_response(response))), ) } }) } /// <p>The ReadPreset operation gets detailed information about a preset.</p> fn read_preset( &self, input: ReadPresetRequest, ) -> RusotoFuture<ReadPresetResponse, ReadPresetError> { let request_uri = format!("/2012-09-25/presets/{id}", id = input.id); let mut request = SignedRequest::new("GET", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<ReadPresetResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ReadPresetError::from_response(response))), ) } }) } /// <p>The TestRole operation tests the IAM role used to create the pipeline.</p> <p>The <code>TestRole</code> action lets you determine whether the IAM role you are using has sufficient permissions to let Elastic Transcoder perform tasks associated with the transcoding process. The action attempts to assume the specified IAM role, checks read access to the input and output buckets, and tries to send a test notification to Amazon SNS topics that you specify.</p> fn test_role(&self, input: TestRoleRequest) -> RusotoFuture<TestRoleResponse, TestRoleError> { let request_uri = "/2012-09-25/roleTests"; let mut request = SignedRequest::new("POST", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<TestRoleResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(TestRoleError::from_response(response))), ) } }) } /// <p><p> Use the <code>UpdatePipeline</code> operation to update settings for a pipeline.</p> <important> <p>When you change pipeline settings, your changes take effect immediately. Jobs that you have already submitted and that Elastic Transcoder has not started to process are affected in addition to jobs that you submit after you change settings. </p> </important></p> fn update_pipeline( &self, input: UpdatePipelineRequest, ) -> RusotoFuture<UpdatePipelineResponse, UpdatePipelineError> { let request_uri = format!("/2012-09-25/pipelines/{id}", id = input.id); let mut request = SignedRequest::new("PUT", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.as_u16() == 200 { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<UpdatePipelineResponse, _>()?; Ok(result) })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(UpdatePipelineError::from_response(response))), ) } }) } /// <p>With the UpdatePipelineNotifications operation, you can update Amazon Simple Notification Service (Amazon SNS) notifications for a pipeline.</p> <p>When you update notifications for a pipeline, Elastic Transcoder returns the values that you specified in the request.</p> fn update_pipeline_notifications( &self, input: UpdatePipelineNotificationsRequest, ) -> RusotoFuture<UpdatePipelineNotificationsResponse, UpdatePipelineNotificationsError> { let request_uri = format!("/2012-09-25/pipelines/{id}/notifications", id = input.id); let mut request = SignedRequest::new("POST", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<UpdatePipelineNotificationsResponse, _>()?; Ok(result) })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(UpdatePipelineNotificationsError::from_response(response)) })) } }) } /// <p>The UpdatePipelineStatus operation pauses or reactivates a pipeline, so that the pipeline stops or restarts the processing of jobs.</p> <p>Changing the pipeline status is useful if you want to cancel one or more jobs. You can't cancel jobs after Elastic Transcoder has started processing them; if you pause the pipeline to which you submitted the jobs, you have more time to get the job IDs for the jobs that you want to cancel, and to send a <a>CancelJob</a> request. </p> fn update_pipeline_status( &self, input: UpdatePipelineStatusRequest, ) -> RusotoFuture<UpdatePipelineStatusResponse, UpdatePipelineStatusError> { let request_uri = format!("/2012-09-25/pipelines/{id}/status", id = input.id); let mut request = SignedRequest::new("POST", "elastictranscoder", &self.region, &request_uri); request.set_content_type("application/x-amz-json-1.1".to_owned()); let encoded = Some(serde_json::to_vec(&input).unwrap()); request.set_payload(encoded); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { let result = proto::json::ResponsePayload::new(&response) .deserialize::<UpdatePipelineStatusResponse, _>()?; Ok(result) })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(UpdatePipelineStatusError::from_response(response)) }), ) } }) } }