1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
)
// An object that represents an Batch array job.
type ArrayProperties struct {
// The size of the array job.
Size *int32
noSmithyDocumentSerde
}
// An object that represents the array properties of a job.
type ArrayPropertiesDetail struct {
// The job index within the array that's associated with this job. This parameter
// is returned for array job children.
Index *int32
// The size of the array job. This parameter is returned for parent array jobs.
Size *int32
// A summary of the number of array job children in each available job status.
// This parameter is returned for parent array jobs.
StatusSummary map[string]int32
noSmithyDocumentSerde
}
// An object that represents the array properties of a job.
type ArrayPropertiesSummary struct {
// The job index within the array that's associated with this job. This parameter
// is returned for children of array jobs.
Index *int32
// The size of the array job. This parameter is returned for parent array jobs.
Size *int32
noSmithyDocumentSerde
}
// An object that represents the details of a container that's part of a job
// attempt.
type AttemptContainerDetail struct {
// The Amazon Resource Name (ARN) of the Amazon ECS container instance that hosts
// the job attempt.
ContainerInstanceArn *string
// The exit code for the job attempt. A non-zero exit code is considered failed.
ExitCode *int32
// The name of the CloudWatch Logs log stream that's associated with the
// container. The log group for Batch jobs is /aws/batch/job . Each container
// attempt receives a log stream name when they reach the RUNNING status.
LogStreamName *string
// The network interfaces that are associated with the job attempt.
NetworkInterfaces []NetworkInterface
// A short (255 max characters) human-readable string to provide additional
// details for a running or stopped container.
Reason *string
// The Amazon Resource Name (ARN) of the Amazon ECS task that's associated with
// the job attempt. Each container attempt receives a task ARN when they reach the
// STARTING status.
TaskArn *string
noSmithyDocumentSerde
}
// An object that represents a job attempt.
type AttemptDetail struct {
// The details for the container in this job attempt.
Container *AttemptContainerDetail
// The Unix timestamp (in milliseconds) for when the attempt was started (when the
// attempt transitioned from the STARTING state to the RUNNING state).
StartedAt *int64
// A short, human-readable string to provide additional details for the current
// status of the job attempt.
StatusReason *string
// The Unix timestamp (in milliseconds) for when the attempt was stopped (when the
// attempt transitioned from the RUNNING state to a terminal state, such as
// SUCCEEDED or FAILED ).
StoppedAt *int64
// The properties for a task definition that describes the container and volume
// definitions of an Amazon ECS task.
TaskProperties []AttemptEcsTaskDetails
noSmithyDocumentSerde
}
// An object that represents the details of a task.
type AttemptEcsTaskDetails struct {
// The Amazon Resource Name (ARN) of the container instance that hosts the task.
ContainerInstanceArn *string
// A list of containers that are included in the taskProperties list.
Containers []AttemptTaskContainerDetails
// The ARN of the Amazon ECS task.
TaskArn *string
noSmithyDocumentSerde
}
// An object that represents the details of a container that's part of a job
// attempt.
type AttemptTaskContainerDetails struct {
// The exit code for the container’s attempt. A non-zero exit code is considered
// failed.
ExitCode *int32
// The name of the Amazon CloudWatch Logs log stream that's associated with the
// container. The log group for Batch jobs is /aws/batch/job . Each container
// attempt receives a log stream name when they reach the RUNNING status.
LogStreamName *string
// The name of a container.
Name *string
// The network interfaces that are associated with the job attempt.
NetworkInterfaces []NetworkInterface
// A short (255 max characters) string that's easy to understand and provides
// additional details for a running or stopped container.
Reason *string
noSmithyDocumentSerde
}
// An object that represents an Batch compute environment.
type ComputeEnvironmentDetail struct {
// The Amazon Resource Name (ARN) of the compute environment.
//
// This member is required.
ComputeEnvironmentArn *string
// The name of the compute environment. It can be up to 128 characters long. It
// can contain uppercase and lowercase letters, numbers, hyphens (-), and
// underscores (_).
//
// This member is required.
ComputeEnvironmentName *string
// The compute resources defined for the compute environment. For more
// information, see [Compute environments]in the Batch User Guide.
//
// [Compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html
ComputeResources *ComputeResource
// The orchestration type of the compute environment. The valid values are ECS
// (default) or EKS .
ContainerOrchestrationType OrchestrationType
// The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster that the
// compute environment uses.
EcsClusterArn *string
// The configuration for the Amazon EKS cluster that supports the Batch compute
// environment. Only specify this parameter if the containerOrchestrationType is
// EKS .
EksConfiguration *EksConfiguration
// The service role that's associated with the compute environment that allows
// Batch to make calls to Amazon Web Services API operations on your behalf. For
// more information, see [Batch service IAM role]in the Batch User Guide.
//
// [Batch service IAM role]: https://docs.aws.amazon.com/batch/latest/userguide/service_IAM_role.html
ServiceRole *string
// The state of the compute environment. The valid values are ENABLED or DISABLED .
//
// If the state is ENABLED , then the Batch scheduler can attempt to place jobs
// from an associated job queue on the compute resources within the environment. If
// the compute environment is managed, then it can scale its instances out or in
// automatically based on the job queue demand.
//
// If the state is DISABLED , then the Batch scheduler doesn't attempt to place
// jobs within the environment. Jobs in a STARTING or RUNNING state continue to
// progress normally. Managed compute environments in the DISABLED state don't
// scale out.
//
// Compute environments in a DISABLED state may continue to incur billing charges.
// To prevent additional charges, turn off and then delete the compute environment.
// For more information, see [State]in the Batch User Guide.
//
// When an instance is idle, the instance scales down to the minvCpus value.
// However, the instance size doesn't change. For example, consider a c5.8xlarge
// instance with a minvCpus value of 4 and a desiredvCpus value of 36 . This
// instance doesn't scale down to a c5.large instance.
//
// [State]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environment_parameters.html#compute_environment_state
State CEState
// The current status of the compute environment (for example, CREATING or VALID ).
Status CEStatus
// A short, human-readable string to provide additional details for the current
// status of the compute environment.
StatusReason *string
// The tags applied to the compute environment.
Tags map[string]string
// The type of the compute environment: MANAGED or UNMANAGED . For more
// information, see [Compute environments]in the Batch User Guide.
//
// [Compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html
Type CEType
// The maximum number of VCPUs expected to be used for an unmanaged compute
// environment.
UnmanagedvCpus *int32
// Specifies the infrastructure update policy for the compute environment. For
// more information about infrastructure updates, see [Updating compute environments]in the Batch User Guide.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
UpdatePolicy *UpdatePolicy
// Unique identifier for the compute environment.
Uuid *string
noSmithyDocumentSerde
}
// The order that compute environments are tried in for job placement within a
// queue. Compute environments are tried in ascending order. For example, if two
// compute environments are associated with a job queue, the compute environment
// with a lower order integer value is tried for job placement first. Compute
// environments must be in the VALID state before you can associate them with a
// job queue. All of the compute environments must be either EC2 ( EC2 or SPOT ) or
// Fargate ( FARGATE or FARGATE_SPOT ); Amazon EC2 and Fargate compute environments
// can't be mixed.
//
// All compute environments that are associated with a job queue must share the
// same architecture. Batch doesn't support mixing compute environment architecture
// types in a single job queue.
type ComputeEnvironmentOrder struct {
// The Amazon Resource Name (ARN) of the compute environment.
//
// This member is required.
ComputeEnvironment *string
// The order of the compute environment. Compute environments are tried in
// ascending order. For example, if two compute environments are associated with a
// job queue, the compute environment with a lower order integer value is tried
// for job placement first.
//
// This member is required.
Order *int32
noSmithyDocumentSerde
}
// An object that represents an Batch compute resource. For more information, see [Compute environments]
// in the Batch User Guide.
//
// [Compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html
type ComputeResource struct {
// The maximum number of vCPUs that a compute environment can support.
//
// With BEST_FIT_PROGRESSIVE , SPOT_CAPACITY_OPTIMIZED and
// SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot
// Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to
// exceed maxvCpus to meet your capacity requirements. In this event, Batch never
// exceeds maxvCpus by more than a single instance.
//
// This member is required.
MaxvCpus *int32
// The VPC subnets where the compute resources are launched. These subnets must be
// within the same VPC. Fargate compute resources can contain up to 16 subnets. For
// more information, see [VPCs and subnets]in the Amazon VPC User Guide.
//
// Batch on Amazon EC2 and Batch on Amazon EKS support Local Zones. For more
// information, see [Local Zones]in the Amazon EC2 User Guide for Linux Instances, [Amazon EKS and Amazon Web Services Local Zones] in the
// Amazon EKS User Guide and [Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts]in the Amazon ECS Developer Guide.
//
// Batch on Fargate doesn't currently support Local Zones.
//
// [VPCs and subnets]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html
// [Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-regions-zones.html#clusters-local-zones
// [Local Zones]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-local-zones
// [Amazon EKS and Amazon Web Services Local Zones]: https://docs.aws.amazon.com/eks/latest/userguide/local-zones.html
//
// This member is required.
Subnets []string
// The type of compute environment: EC2 , SPOT , FARGATE , or FARGATE_SPOT . For
// more information, see [Compute environments]in the Batch User Guide.
//
// If you choose SPOT , you must also specify an Amazon EC2 Spot Fleet role with
// the spotIamFleetRole parameter. For more information, see [Amazon EC2 spot fleet role] in the Batch User
// Guide.
//
// [Amazon EC2 spot fleet role]: https://docs.aws.amazon.com/batch/latest/userguide/spot_fleet_IAM_role.html
// [Compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html
//
// This member is required.
Type CRType
// The allocation strategy to use for the compute resource if not enough instances
// of the best fitting instance type can be allocated. This might be because of
// availability of the instance type in the Region or [Amazon EC2 service limits]. For more information, see [Allocation strategies]
// in the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// BEST_FIT (default) Batch selects an instance type that best fits the needs of
// the jobs with a preference for the lowest-cost instance type. If additional
// instances of the selected instance type aren't available, Batch waits for the
// additional instances to be available. If there aren't enough instances available
// or the user is reaching [Amazon EC2 service limits], additional jobs aren't run until the currently
// running jobs are completed. This allocation strategy keeps costs lower but can
// limit scaling. If you're using Spot Fleets with BEST_FIT , the Spot Fleet IAM
// Role must be specified. Compute resources that use a BEST_FIT allocation
// strategy don't support infrastructure updates and can't update some parameters.
// For more information, see [Updating compute environments]in the Batch User Guide.
//
// BEST_FIT_PROGRESSIVE Batch selects additional instance types that are large
// enough to meet the requirements of the jobs in the queue. Its preference is for
// instance types with lower cost vCPUs. If additional instances of the previously
// selected instance types aren't available, Batch selects new instance types.
//
// SPOT_CAPACITY_OPTIMIZED Batch selects one or more instance types that are large
// enough to meet the requirements of the jobs in the queue. Its preference is for
// instance types that are less likely to be interrupted. This allocation strategy
// is only available for Spot Instance compute resources.
//
// SPOT_PRICE_CAPACITY_OPTIMIZED The price and capacity optimized allocation
// strategy looks at both price and capacity to select the Spot Instance pools that
// are the least likely to be interrupted and have the lowest possible price. This
// allocation strategy is only available for Spot Instance compute resources.
//
// With BEST_FIT_PROGRESSIVE , SPOT_CAPACITY_OPTIMIZED and
// SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot
// Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to
// exceed maxvCpus to meet your capacity requirements. In this event, Batch never
// exceeds maxvCpus by more than a single instance.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
// [Allocation strategies]: https://docs.aws.amazon.com/batch/latest/userguide/allocation-strategies.html
// [Amazon EC2 service limits]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-resource-limits.html
AllocationStrategy CRAllocationStrategy
// The maximum percentage that a Spot Instance price can be when compared with the
// On-Demand price for that instance type before instances are launched. For
// example, if your maximum percentage is 20%, then the Spot price must be less
// than 20% of the current On-Demand price for that Amazon EC2 instance. You always
// pay the lowest (market) price and never more than your maximum percentage. If
// you leave this field empty, the default value is 100% of the On-Demand price.
// For most use cases, we recommend leaving this field empty.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
BidPercentage *int32
// The desired number of vCPUS in the compute environment. Batch modifies this
// value between the minimum and maximum values based on job queue demand.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
DesiredvCpus *int32
// Provides information that's used to select Amazon Machine Images (AMIs) for
// Amazon EC2 instances in the compute environment. If Ec2Configuration isn't
// specified, the default is ECS_AL2 .
//
// One or two values can be provided.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
Ec2Configuration []Ec2Configuration
// The Amazon EC2 key pair that's used for instances launched in the compute
// environment. You can use this key pair to log in to your instances with SSH.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
Ec2KeyPair *string
// The Amazon Machine Image (AMI) ID used for instances launched in the compute
// environment. This parameter is overridden by the imageIdOverride member of the
// Ec2Configuration structure.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// The AMI that you choose for a compute environment must match the architecture
// of the instance types that you intend to use for that compute environment. For
// example, if your compute environment uses A1 instance types, the compute
// resource AMI that you choose must support ARM instances. Amazon ECS vends both
// x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more
// information, see [Amazon ECS-optimized Amazon Linux 2 AMI]in the Amazon Elastic Container Service Developer Guide.
//
// [Amazon ECS-optimized Amazon Linux 2 AMI]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html#ecs-optimized-ami-linux-variants.html
//
// Deprecated: This field is deprecated, use ec2Configuration[].imageIdOverride
// instead.
ImageId *string
// The Amazon ECS instance profile applied to Amazon EC2 instances in a compute
// environment. This parameter is required for Amazon EC2 instances types. You can
// specify the short name or full Amazon Resource Name (ARN) of an instance
// profile. For example, ecsInstanceRole or
// arn:aws:iam:::instance-profile/ecsInstanceRole . For more information, see [Amazon ECS instance role] in
// the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Amazon ECS instance role]: https://docs.aws.amazon.com/batch/latest/userguide/instance_IAM_role.html
InstanceRole *string
// The instances types that can be launched. You can specify instance families to
// launch any instance type within those families (for example, c5 or p3 ), or you
// can specify specific sizes within a family (such as c5.8xlarge ). You can also
// choose optimal to select instance types (from the C4, M4, and R4 instance
// families) that match the demand of your job queues.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// When you create a compute environment, the instance types that you select for
// the compute environment must share the same architecture. For example, you can't
// mix x86 and ARM instances in the same compute environment.
//
// Currently, optimal uses instance types from the C4, M4, and R4 instance
// families. In Regions that don't have instance types from those instance
// families, instance types from the C5, M5, and R5 instance families are used.
InstanceTypes []string
// The launch template to use for your compute resources. Any other compute
// resource parameters that you specify in a [CreateComputeEnvironment]API operation override the same
// parameters in the launch template. You must specify either the launch template
// ID or launch template name in the request, but not both. For more information,
// see [Launch template support]in the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [CreateComputeEnvironment]: https://docs.aws.amazon.com/batch/latest/APIReference/API_CreateComputeEnvironment.html
// [Launch template support]: https://docs.aws.amazon.com/batch/latest/userguide/launch-templates.html
LaunchTemplate *LaunchTemplateSpecification
// The minimum number of vCPUs that a compute environment should maintain (even if
// the compute environment is DISABLED ).
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
MinvCpus *int32
// The Amazon EC2 placement group to associate with your compute resources. If you
// intend to submit multi-node parallel jobs to your compute environment, you
// should consider creating a cluster placement group and associate it with your
// compute resources. This keeps your multi-node parallel job on a logical grouping
// of instances within a single Availability Zone with high network flow potential.
// For more information, see [Placement groups]in the Amazon EC2 User Guide for Linux Instances.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Placement groups]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html
PlacementGroup *string
// The Amazon EC2 security groups that are associated with instances launched in
// the compute environment. One or more security groups must be specified, either
// in securityGroupIds or using a launch template referenced in launchTemplate .
// This parameter is required for jobs that are running on Fargate resources and
// must contain at least one security group. Fargate doesn't support launch
// templates. If security groups are specified using both securityGroupIds and
// launchTemplate , the values in securityGroupIds are used.
SecurityGroupIds []string
// The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to
// a SPOT compute environment. This role is required if the allocation strategy
// set to BEST_FIT or if the allocation strategy isn't specified. For more
// information, see [Amazon EC2 spot fleet role]in the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// To tag your Spot Instances on creation, the Spot Fleet IAM role specified here
// must use the newer AmazonEC2SpotFleetTaggingRole managed policy. The previously
// recommended AmazonEC2SpotFleetRole managed policy doesn't have the required
// permissions to tag Spot Instances. For more information, see [Spot instances not tagged on creation]in the Batch User
// Guide.
//
// [Spot instances not tagged on creation]: https://docs.aws.amazon.com/batch/latest/userguide/troubleshooting.html#spot-instance-no-tag
// [Amazon EC2 spot fleet role]: https://docs.aws.amazon.com/batch/latest/userguide/spot_fleet_IAM_role.html
SpotIamFleetRole *string
// Key-value pair tags to be applied to Amazon EC2 resources that are launched in
// the compute environment. For Batch, these take the form of "String1": "String2"
// , where String1 is the tag key and String2 is the tag value-for example, {
// "Name": "Batch Instance - C4OnDemand" } . This is helpful for recognizing your
// Batch instances in the Amazon EC2 console. Updating these tags requires an
// infrastructure update to the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide. These tags aren't seen when using the Batch
// ListTagsForResource API operation.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
Tags map[string]string
noSmithyDocumentSerde
}
// An object that represents the attributes of a compute environment that can be
// updated. For more information, see [Updating compute environments]in the Batch User Guide.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
type ComputeResourceUpdate struct {
// The allocation strategy to use for the compute resource if there's not enough
// instances of the best fitting instance type that can be allocated. This might be
// because of availability of the instance type in the Region or [Amazon EC2 service limits]. For more
// information, see [Allocation strategies]in the Batch User Guide.
//
// When updating a compute environment, changing the allocation strategy requires
// an infrastructure update of the compute environment. For more information, see [Updating compute environments]
// in the Batch User Guide. BEST_FIT isn't supported when updating a compute
// environment.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// BEST_FIT_PROGRESSIVE Batch selects additional instance types that are large
// enough to meet the requirements of the jobs in the queue. Its preference is for
// instance types with lower cost vCPUs. If additional instances of the previously
// selected instance types aren't available, Batch selects new instance types.
//
// SPOT_CAPACITY_OPTIMIZED Batch selects one or more instance types that are large
// enough to meet the requirements of the jobs in the queue. Its preference is for
// instance types that are less likely to be interrupted. This allocation strategy
// is only available for Spot Instance compute resources.
//
// SPOT_PRICE_CAPACITY_OPTIMIZED The price and capacity optimized allocation
// strategy looks at both price and capacity to select the Spot Instance pools that
// are the least likely to be interrupted and have the lowest possible price. This
// allocation strategy is only available for Spot Instance compute resources.
//
// With BEST_FIT_PROGRESSIVE , SPOT_CAPACITY_OPTIMIZED and
// SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot
// Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to
// exceed maxvCpus to meet your capacity requirements. In this event, Batch never
// exceeds maxvCpus by more than a single instance.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
// [Allocation strategies]: https://docs.aws.amazon.com/batch/latest/userguide/allocation-strategies.html
// [Amazon EC2 service limits]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-resource-limits.html
AllocationStrategy CRUpdateAllocationStrategy
// The maximum percentage that a Spot Instance price can be when compared with the
// On-Demand price for that instance type before instances are launched. For
// example, if your maximum percentage is 20%, the Spot price must be less than 20%
// of the current On-Demand price for that Amazon EC2 instance. You always pay the
// lowest (market) price and never more than your maximum percentage. For most use
// cases, we recommend leaving this field empty.
//
// When updating a compute environment, changing the bid percentage requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
BidPercentage *int32
// The desired number of vCPUS in the compute environment. Batch modifies this
// value between the minimum and maximum values based on job queue demand.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// Batch doesn't support changing the desired number of vCPUs of an existing
// compute environment. Don't specify this parameter for compute environments using
// Amazon EKS clusters.
//
// When you update the desiredvCpus setting, the value must be between the minvCpus
// and maxvCpus values.
//
// Additionally, the updated desiredvCpus value must be greater than or equal to
// the current desiredvCpus value. For more information, see [Troubleshooting Batch] in the Batch User
// Guide.
//
// [Troubleshooting Batch]: https://docs.aws.amazon.com/batch/latest/userguide/troubleshooting.html#error-desired-vcpus-update
DesiredvCpus *int32
// Provides information used to select Amazon Machine Images (AMIs) for Amazon EC2
// instances in the compute environment. If Ec2Configuration isn't specified, the
// default is ECS_AL2 .
//
// When updating a compute environment, changing this setting requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide. To remove the Amazon EC2 configuration and any custom AMI
// ID specified in imageIdOverride , set this value to an empty string.
//
// One or two values can be provided.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
Ec2Configuration []Ec2Configuration
// The Amazon EC2 key pair that's used for instances launched in the compute
// environment. You can use this key pair to log in to your instances with SSH. To
// remove the Amazon EC2 key pair, set this value to an empty string.
//
// When updating a compute environment, changing the Amazon EC2 key pair requires
// an infrastructure update of the compute environment. For more information, see [Updating compute environments]
// in the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
Ec2KeyPair *string
// The Amazon Machine Image (AMI) ID used for instances launched in the compute
// environment. This parameter is overridden by the imageIdOverride member of the
// Ec2Configuration structure. To remove the custom AMI ID and use the default AMI
// ID, set this value to an empty string.
//
// When updating a compute environment, changing the AMI ID requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// The AMI that you choose for a compute environment must match the architecture
// of the instance types that you intend to use for that compute environment. For
// example, if your compute environment uses A1 instance types, the compute
// resource AMI that you choose must support ARM instances. Amazon ECS vends both
// x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more
// information, see [Amazon ECS-optimized Amazon Linux 2 AMI]in the Amazon Elastic Container Service Developer Guide.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
// [Amazon ECS-optimized Amazon Linux 2 AMI]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html#ecs-optimized-ami-linux-variants.html
ImageId *string
// The Amazon ECS instance profile applied to Amazon EC2 instances in a compute
// environment. Required for Amazon EC2 instances. You can specify the short name
// or full Amazon Resource Name (ARN) of an instance profile. For example,
// ecsInstanceRole or arn:aws:iam:::instance-profile/ecsInstanceRole . For more
// information, see [Amazon ECS instance role]in the Batch User Guide.
//
// When updating a compute environment, changing this setting requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
// [Amazon ECS instance role]: https://docs.aws.amazon.com/batch/latest/userguide/instance_IAM_role.html
InstanceRole *string
// The instances types that can be launched. You can specify instance families to
// launch any instance type within those families (for example, c5 or p3 ), or you
// can specify specific sizes within a family (such as c5.8xlarge ). You can also
// choose optimal to select instance types (from the C4, M4, and R4 instance
// families) that match the demand of your job queues.
//
// When updating a compute environment, changing this setting requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// When you create a compute environment, the instance types that you select for
// the compute environment must share the same architecture. For example, you can't
// mix x86 and ARM instances in the same compute environment.
//
// Currently, optimal uses instance types from the C4, M4, and R4 instance
// families. In Regions that don't have instance types from those instance
// families, instance types from the C5, M5, and R5 instance families are used.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
InstanceTypes []string
// The updated launch template to use for your compute resources. You must specify
// either the launch template ID or launch template name in the request, but not
// both. For more information, see [Launch template support]in the Batch User Guide. To remove the custom
// launch template and use the default launch template, set launchTemplateId or
// launchTemplateName member of the launch template specification to an empty
// string. Removing the launch template from a compute environment will not remove
// the AMI specified in the launch template. In order to update the AMI specified
// in a launch template, the updateToLatestImageVersion parameter must be set to
// true .
//
// When updating a compute environment, changing the launch template requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
// [Launch template support]: https://docs.aws.amazon.com/batch/latest/userguide/launch-templates.html
LaunchTemplate *LaunchTemplateSpecification
// The maximum number of Amazon EC2 vCPUs that an environment can reach.
//
// With BEST_FIT_PROGRESSIVE , SPOT_CAPACITY_OPTIMIZED and
// SPOT_PRICE_CAPACITY_OPTIMIZED (recommended) strategies using On-Demand or Spot
// Instances, and the BEST_FIT strategy using Spot Instances, Batch might need to
// exceed maxvCpus to meet your capacity requirements. In this event, Batch never
// exceeds maxvCpus by more than a single instance.
MaxvCpus *int32
// The minimum number of vCPUs that an environment should maintain (even if the
// compute environment is DISABLED ).
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
MinvCpus *int32
// The Amazon EC2 placement group to associate with your compute resources. If you
// intend to submit multi-node parallel jobs to your compute environment, you
// should consider creating a cluster placement group and associate it with your
// compute resources. This keeps your multi-node parallel job on a logical grouping
// of instances within a single Availability Zone with high network flow potential.
// For more information, see [Placement groups]in the Amazon EC2 User Guide for Linux Instances.
//
// When updating a compute environment, changing the placement group requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
// [Placement groups]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html
PlacementGroup *string
// The Amazon EC2 security groups that are associated with instances launched in
// the compute environment. This parameter is required for Fargate compute
// resources, where it can contain up to 5 security groups. For Fargate compute
// resources, providing an empty list is handled as if this parameter wasn't
// specified and no change is made. For Amazon EC2 compute resources, providing an
// empty list removes the security groups from the compute resource.
//
// When updating a compute environment, changing the Amazon EC2 security groups
// requires an infrastructure update of the compute environment. For more
// information, see [Updating compute environments]in the Batch User Guide.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
SecurityGroupIds []string
// The VPC subnets where the compute resources are launched. Fargate compute
// resources can contain up to 16 subnets. For Fargate compute resources, providing
// an empty list will be handled as if this parameter wasn't specified and no
// change is made. For Amazon EC2 compute resources, providing an empty list
// removes the VPC subnets from the compute resource. For more information, see [VPCs and subnets]in
// the Amazon VPC User Guide.
//
// When updating a compute environment, changing the VPC subnets requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide.
//
// Batch on Amazon EC2 and Batch on Amazon EKS support Local Zones. For more
// information, see [Local Zones]in the Amazon EC2 User Guide for Linux Instances, [Amazon EKS and Amazon Web Services Local Zones] in the
// Amazon EKS User Guide and [Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts]in the Amazon ECS Developer Guide.
//
// Batch on Fargate doesn't currently support Local Zones.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
// [VPCs and subnets]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html
// [Amazon ECS clusters in Local Zones, Wavelength Zones, and Amazon Web Services Outposts]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-regions-zones.html#clusters-local-zones
// [Local Zones]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-local-zones
// [Amazon EKS and Amazon Web Services Local Zones]: https://docs.aws.amazon.com/eks/latest/userguide/local-zones.html
Subnets []string
// Key-value pair tags to be applied to Amazon EC2 resources that are launched in
// the compute environment. For Batch, these take the form of "String1": "String2"
// , where String1 is the tag key and String2 is the tag value-for example, {
// "Name": "Batch Instance - C4OnDemand" } . This is helpful for recognizing your
// Batch instances in the Amazon EC2 console. These tags aren't seen when using the
// Batch ListTagsForResource API operation.
//
// When updating a compute environment, changing this setting requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't specify it.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
Tags map[string]string
// The type of compute environment: EC2 , SPOT , FARGATE , or FARGATE_SPOT . For
// more information, see [Compute environments]in the Batch User Guide.
//
// If you choose SPOT , you must also specify an Amazon EC2 Spot Fleet role with
// the spotIamFleetRole parameter. For more information, see [Amazon EC2 spot fleet role] in the Batch User
// Guide.
//
// When updating a compute environment, changing the type of a compute environment
// requires an infrastructure update of the compute environment. For more
// information, see [Updating compute environments]in the Batch User Guide.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
// [Amazon EC2 spot fleet role]: https://docs.aws.amazon.com/batch/latest/userguide/spot_fleet_IAM_role.html
// [Compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html
Type CRType
// Specifies whether the AMI ID is updated to the latest one that's supported by
// Batch when the compute environment has an infrastructure update. The default
// value is false .
//
// An AMI ID can either be specified in the imageId or imageIdOverride parameters
// or be determined by the launch template that's specified in the launchTemplate
// parameter. If an AMI ID is specified any of these ways, this parameter is
// ignored. For more information about to update AMI IDs during an infrastructure
// update, see [Updating the AMI ID]in the Batch User Guide.
//
// When updating a compute environment, changing this setting requires an
// infrastructure update of the compute environment. For more information, see [Updating compute environments]in
// the Batch User Guide.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
// [Updating the AMI ID]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html#updating-compute-environments-ami
UpdateToLatestImageVersion *bool
noSmithyDocumentSerde
}
// An object that represents the details of a container that's part of a job.
type ContainerDetail struct {
// The command that's passed to the container.
Command []string
// The Amazon Resource Name (ARN) of the container instance that the container is
// running on.
ContainerInstanceArn *string
// The environment variables to pass to a container.
//
// Environment variables cannot start with " AWS_BATCH ". This naming convention is
// reserved for variables that Batch sets.
Environment []KeyValuePair
// The amount of ephemeral storage allocated for the task. This parameter is used
// to expand the total amount of ephemeral storage available, beyond the default
// amount, for tasks hosted on Fargate.
EphemeralStorage *EphemeralStorage
// The Amazon Resource Name (ARN) of the execution role that Batch can assume. For
// more information, see [Batch execution IAM role]in the Batch User Guide.
//
// [Batch execution IAM role]: https://docs.aws.amazon.com/batch/latest/userguide/execution-IAM-role.html
ExecutionRoleArn *string
// The exit code returned upon completion.
ExitCode *int32
// The platform configuration for jobs that are running on Fargate resources. Jobs
// that are running on Amazon EC2 resources must not specify this parameter.
FargatePlatformConfiguration *FargatePlatformConfiguration
// The image used to start the container.
Image *string
// The instance type of the underlying host infrastructure of a multi-node
// parallel job.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
InstanceType *string
// The Amazon Resource Name (ARN) that's associated with the job when run.
JobRoleArn *string
// Linux-specific modifications that are applied to the container, such as details
// for device mappings.
LinuxParameters *LinuxParameters
// The log configuration specification for the container.
//
// This parameter maps to LogConfig in the [Create a container] section of the [Docker Remote API] and the --log-driver
// option to [docker run]. By default, containers use the same logging driver that the Docker
// daemon uses. However, the container might use a different logging driver than
// the Docker daemon by specifying a log driver with this parameter in the
// container definition. To use a different logging driver for a container, the log
// system must be configured properly on the container instance. Or, alternatively,
// it must be configured on a different log server for remote logging options. For
// more information on the options for different supported log drivers, see [Configure logging drivers]in the
// Docker documentation.
//
// Batch currently supports a subset of the logging drivers available to the
// Docker daemon (shown in the [LogConfiguration]data type). Additional log drivers might be
// available in future releases of the Amazon ECS container agent.
//
// This parameter requires version 1.18 of the Docker Remote API or greater on
// your container instance. To check the Docker Remote API version on your
// container instance, log in to your container instance and run the following
// command: sudo docker version | grep "Server API version"
//
// The Amazon ECS container agent running on a container instance must register
// the logging drivers available on that instance with the
// ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on
// that instance can use these log configuration options. For more information, see
// [Amazon ECS container agent configuration]in the Amazon Elastic Container Service Developer Guide.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Configure logging drivers]: https://docs.docker.com/engine/admin/logging/overview/
// [Amazon ECS container agent configuration]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
// [LogConfiguration]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties-logconfiguration.html
LogConfiguration *LogConfiguration
// The name of the Amazon CloudWatch Logs log stream that's associated with the
// container. The log group for Batch jobs is /aws/batch/job . Each container
// attempt receives a log stream name when they reach the RUNNING status.
LogStreamName *string
// For jobs running on Amazon EC2 resources that didn't specify memory
// requirements using resourceRequirements , the number of MiB of memory reserved
// for the job. For other jobs, including all run on Fargate resources, see
// resourceRequirements .
Memory *int32
// The mount points for data volumes in your container.
MountPoints []MountPoint
// The network configuration for jobs that are running on Fargate resources. Jobs
// that are running on Amazon EC2 resources must not specify this parameter.
NetworkConfiguration *NetworkConfiguration
// The network interfaces that are associated with the job.
NetworkInterfaces []NetworkInterface
// When this parameter is true, the container is given elevated permissions on the
// host container instance (similar to the root user). The default value is false .
//
// This parameter isn't applicable to jobs that are running on Fargate resources
// and shouldn't be provided, or specified as false .
Privileged *bool
// When this parameter is true, the container is given read-only access to its
// root file system. This parameter maps to ReadonlyRootfs in the [Create a container] section of the [Docker Remote API]
// and the --read-only option to [docker run]docker run .
//
// [docker run]: https://docs.docker.com/engine/reference/commandline/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
ReadonlyRootFilesystem *bool
// A short (255 max characters) human-readable string to provide additional
// details for a running or stopped container.
Reason *string
// The private repository authentication credentials to use.
RepositoryCredentials *RepositoryCredentials
// The type and amount of resources to assign to a container. The supported
// resources include GPU , MEMORY , and VCPU .
ResourceRequirements []ResourceRequirement
// An object that represents the compute environment architecture for Batch jobs
// on Fargate.
RuntimePlatform *RuntimePlatform
// The secrets to pass to the container. For more information, see [Specifying sensitive data] in the Batch
// User Guide.
//
// [Specifying sensitive data]: https://docs.aws.amazon.com/batch/latest/userguide/specifying-sensitive-data.html
Secrets []Secret
// The Amazon Resource Name (ARN) of the Amazon ECS task that's associated with
// the container job. Each container attempt receives a task ARN when they reach
// the STARTING status.
TaskArn *string
// A list of ulimit values to set in the container. This parameter maps to Ulimits
// in the [Create a container]section of the [Docker Remote API] and the --ulimit option to [docker run].
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Ulimits []Ulimit
// The user name to use inside the container. This parameter maps to User in the [Create a container]
// section of the [Docker Remote API]and the --user option to [docker run].
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
User *string
// The number of vCPUs reserved for the container. For jobs that run on Amazon EC2
// resources, you can specify the vCPU requirement for the job using
// resourceRequirements , but you can't specify the vCPU requirements in both the
// vcpus and resourceRequirements object. This parameter maps to CpuShares in the [Create a container]
// section of the [Docker Remote API]and the --cpu-shares option to [docker run]. Each vCPU is equivalent to
// 1,024 CPU shares. You must specify at least one vCPU. This is required but can
// be specified in several places. It must be specified for each node at least
// once.
//
// This parameter isn't applicable to jobs that run on Fargate resources. For jobs
// that run on Fargate resources, you must specify the vCPU requirement for the job
// using resourceRequirements .
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Vcpus *int32
// A list of volumes that are associated with the job.
Volumes []Volume
noSmithyDocumentSerde
}
// The overrides that should be sent to a container.
//
// For information about using Batch overrides when you connect event sources to
// targets, see [BatchContainerOverrides].
//
// [BatchContainerOverrides]: https://docs.aws.amazon.com/eventbridge/latest/pipes-reference/API_BatchContainerOverrides.html
type ContainerOverrides struct {
// The command to send to the container that overrides the default command from
// the Docker image or the job definition.
//
// This parameter can't contain an empty string.
Command []string
// The environment variables to send to the container. You can add new environment
// variables, which are added to the container at launch, or you can override the
// existing environment variables from the Docker image or the job definition.
//
// Environment variables cannot start with " AWS_BATCH ". This naming convention is
// reserved for variables that Batch sets.
Environment []KeyValuePair
// The instance type to use for a multi-node parallel job.
//
// This parameter isn't applicable to single-node container jobs or jobs that run
// on Fargate resources, and shouldn't be provided.
InstanceType *string
// This parameter is deprecated, use resourceRequirements to override the memory
// requirements specified in the job definition. It's not supported for jobs
// running on Fargate resources. For jobs that run on Amazon EC2 resources, it
// overrides the memory parameter set in the job definition, but doesn't override
// any memory requirement that's specified in the resourceRequirements structure
// in the job definition. To override memory requirements that are specified in the
// resourceRequirements structure in the job definition, resourceRequirements must
// be specified in the SubmitJob request, with type set to MEMORY and value set to
// the new value. For more information, see [Can't override job definition resource requirements]in the Batch User Guide.
//
// [Can't override job definition resource requirements]: https://docs.aws.amazon.com/batch/latest/userguide/troubleshooting.html#override-resource-requirements
//
// Deprecated: This field is deprecated, use resourceRequirements instead.
Memory *int32
// The type and amount of resources to assign to a container. This overrides the
// settings in the job definition. The supported resources include GPU , MEMORY ,
// and VCPU .
ResourceRequirements []ResourceRequirement
// This parameter is deprecated, use resourceRequirements to override the vcpus
// parameter that's set in the job definition. It's not supported for jobs running
// on Fargate resources. For jobs that run on Amazon EC2 resources, it overrides
// the vcpus parameter set in the job definition, but doesn't override any vCPU
// requirement specified in the resourceRequirements structure in the job
// definition. To override vCPU requirements that are specified in the
// resourceRequirements structure in the job definition, resourceRequirements must
// be specified in the SubmitJob request, with type set to VCPU and value set to
// the new value. For more information, see [Can't override job definition resource requirements]in the Batch User Guide.
//
// [Can't override job definition resource requirements]: https://docs.aws.amazon.com/batch/latest/userguide/troubleshooting.html#override-resource-requirements
//
// Deprecated: This field is deprecated, use resourceRequirements instead.
Vcpus *int32
noSmithyDocumentSerde
}
// Container properties are used for Amazon ECS based job definitions. These
// properties to describe the container that's launched as part of a job.
type ContainerProperties struct {
// The command that's passed to the container. This parameter maps to Cmd in the [Create a container]
// section of the [Docker Remote API]and the COMMAND parameter to [docker run]. For more information, see [https://docs.docker.com/engine/reference/builder/#cmd].
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
// [https://docs.docker.com/engine/reference/builder/#cmd]: https://docs.docker.com/engine/reference/builder/#cmd
Command []string
// The environment variables to pass to a container. This parameter maps to Env in
// the [Create a container]section of the [Docker Remote API] and the --env option to [docker run].
//
// We don't recommend using plaintext environment variables for sensitive
// information, such as credential data.
//
// Environment variables cannot start with " AWS_BATCH ". This naming convention is
// reserved for variables that Batch sets.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Environment []KeyValuePair
// The amount of ephemeral storage to allocate for the task. This parameter is
// used to expand the total amount of ephemeral storage available, beyond the
// default amount, for tasks hosted on Fargate.
EphemeralStorage *EphemeralStorage
// The Amazon Resource Name (ARN) of the execution role that Batch can assume. For
// jobs that run on Fargate resources, you must provide an execution role. For more
// information, see [Batch execution IAM role]in the Batch User Guide.
//
// [Batch execution IAM role]: https://docs.aws.amazon.com/batch/latest/userguide/execution-IAM-role.html
ExecutionRoleArn *string
// The platform configuration for jobs that are running on Fargate resources. Jobs
// that are running on Amazon EC2 resources must not specify this parameter.
FargatePlatformConfiguration *FargatePlatformConfiguration
// Required. The image used to start a container. This string is passed directly
// to the Docker daemon. Images in the Docker Hub registry are available by
// default. Other repositories are specified with repository-url/image:tag . It
// can be 255 characters long. It can contain uppercase and lowercase letters,
// numbers, hyphens (-), underscores (_), colons (:), periods (.), forward slashes
// (/), and number signs (#). This parameter maps to Image in the [Create a container] section of the [Docker Remote API]
// and the IMAGE parameter of [docker run].
//
// Docker image architecture must match the processor architecture of the compute
// resources that they're scheduled on. For example, ARM-based Docker images can
// only run on ARM-based compute resources.
//
// - Images in Amazon ECR Public repositories use the full
// registry/repository[:tag] or registry/repository[@digest] naming conventions.
// For example, public.ecr.aws/registry_alias/my-web-app:latest .
//
// - Images in Amazon ECR repositories use the full registry and repository URI
// (for example, 123456789012.dkr.ecr..amazonaws.com/ ).
//
// - Images in official repositories on Docker Hub use a single name (for
// example, ubuntu or mongo ).
//
// - Images in other repositories on Docker Hub are qualified with an
// organization name (for example, amazon/amazon-ecs-agent ).
//
// - Images in other online repositories are qualified further by a domain name
// (for example, quay.io/assemblyline/ubuntu ).
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Image *string
// The instance type to use for a multi-node parallel job. All node groups in a
// multi-node parallel job must use the same instance type.
//
// This parameter isn't applicable to single-node container jobs or jobs that run
// on Fargate resources, and shouldn't be provided.
InstanceType *string
// The Amazon Resource Name (ARN) of the IAM role that the container can assume
// for Amazon Web Services permissions. For more information, see [IAM roles for tasks]in the Amazon
// Elastic Container Service Developer Guide.
//
// [IAM roles for tasks]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
JobRoleArn *string
// Linux-specific modifications that are applied to the container, such as details
// for device mappings.
LinuxParameters *LinuxParameters
// The log configuration specification for the container.
//
// This parameter maps to LogConfig in the [Create a container] section of the [Docker Remote API] and the --log-driver
// option to [docker run]. By default, containers use the same logging driver that the Docker
// daemon uses. However the container might use a different logging driver than the
// Docker daemon by specifying a log driver with this parameter in the container
// definition. To use a different logging driver for a container, the log system
// must be configured properly on the container instance (or on a different log
// server for remote logging options). For more information on the options for
// different supported log drivers, see [Configure logging drivers]in the Docker documentation.
//
// Batch currently supports a subset of the logging drivers available to the
// Docker daemon (shown in the [LogConfiguration]data type).
//
// This parameter requires version 1.18 of the Docker Remote API or greater on
// your container instance. To check the Docker Remote API version on your
// container instance, log in to your container instance and run the following
// command: sudo docker version | grep "Server API version"
//
// The Amazon ECS container agent running on a container instance must register
// the logging drivers available on that instance with the
// ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on
// that instance can use these log configuration options. For more information, see
// [Amazon ECS container agent configuration]in the Amazon Elastic Container Service Developer Guide.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Configure logging drivers]: https://docs.docker.com/engine/admin/logging/overview/
// [Amazon ECS container agent configuration]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
// [LogConfiguration]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties-logconfiguration.html
LogConfiguration *LogConfiguration
// This parameter is deprecated, use resourceRequirements to specify the memory
// requirements for the job definition. It's not supported for jobs running on
// Fargate resources. For jobs that run on Amazon EC2 resources, it specifies the
// memory hard limit (in MiB) for a container. If your container attempts to exceed
// the specified number, it's terminated. You must specify at least 4 MiB of memory
// for a job using this parameter. The memory hard limit can be specified in
// several places. It must be specified for each node at least once.
//
// Deprecated: This field is deprecated, use resourceRequirements instead.
Memory *int32
// The mount points for data volumes in your container. This parameter maps to
// Volumes in the [Create a container] section of the [Docker Remote API] and the --volume option to [docker run].
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
MountPoints []MountPoint
// The network configuration for jobs that are running on Fargate resources. Jobs
// that are running on Amazon EC2 resources must not specify this parameter.
NetworkConfiguration *NetworkConfiguration
// When this parameter is true, the container is given elevated permissions on the
// host container instance (similar to the root user). This parameter maps to
// Privileged in the [Create a container] section of the [Docker Remote API] and the --privileged option to [docker run]. The default
// value is false.
//
// This parameter isn't applicable to jobs that are running on Fargate resources
// and shouldn't be provided, or specified as false.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Privileged *bool
// When this parameter is true, the container is given read-only access to its
// root file system. This parameter maps to ReadonlyRootfs in the [Create a container] section of the [Docker Remote API]
// and the --read-only option to docker run .
//
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
ReadonlyRootFilesystem *bool
// The private repository authentication credentials to use.
RepositoryCredentials *RepositoryCredentials
// The type and amount of resources to assign to a container. The supported
// resources include GPU , MEMORY , and VCPU .
ResourceRequirements []ResourceRequirement
// An object that represents the compute environment architecture for Batch jobs
// on Fargate.
RuntimePlatform *RuntimePlatform
// The secrets for the container. For more information, see [Specifying sensitive data] in the Batch User
// Guide.
//
// [Specifying sensitive data]: https://docs.aws.amazon.com/batch/latest/userguide/specifying-sensitive-data.html
Secrets []Secret
// A list of ulimits to set in the container. This parameter maps to Ulimits in
// the [Create a container]section of the [Docker Remote API] and the --ulimit option to [docker run].
//
// This parameter isn't applicable to jobs that are running on Fargate resources
// and shouldn't be provided.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Ulimits []Ulimit
// The user name to use inside the container. This parameter maps to User in the [Create a container]
// section of the [Docker Remote API]and the --user option to [docker run].
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
User *string
// This parameter is deprecated, use resourceRequirements to specify the vCPU
// requirements for the job definition. It's not supported for jobs running on
// Fargate resources. For jobs running on Amazon EC2 resources, it specifies the
// number of vCPUs reserved for the job.
//
// Each vCPU is equivalent to 1,024 CPU shares. This parameter maps to CpuShares
// in the [Create a container]section of the [Docker Remote API] and the --cpu-shares option to [docker run]. The number of vCPUs
// must be specified but can be specified in several places. You must specify it at
// least once for each node.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
//
// Deprecated: This field is deprecated, use resourceRequirements instead.
Vcpus *int32
// A list of data volumes used in a job.
Volumes []Volume
noSmithyDocumentSerde
}
// An object that represents summary details of a container within a job.
type ContainerSummary struct {
// The exit code to return upon completion.
ExitCode *int32
// A short (255 max characters) human-readable string to provide additional
// details for a running or stopped container.
Reason *string
noSmithyDocumentSerde
}
// An object that represents a container instance host device.
//
// This object isn't applicable to jobs that are running on Fargate resources and
// shouldn't be provided.
type Device struct {
// The path for the device on the host container instance.
//
// This member is required.
HostPath *string
// The path inside the container that's used to expose the host device. By
// default, the hostPath value is used.
ContainerPath *string
// The explicit permissions to provide to the container for the device. By
// default, the container has permissions for read , write , and mknod for the
// device.
Permissions []DeviceCgroupPermission
noSmithyDocumentSerde
}
// Provides information used to select Amazon Machine Images (AMIs) for instances
// in the compute environment. If Ec2Configuration isn't specified, the default is
// ECS_AL2 ([Amazon Linux 2] ).
//
// This object isn't applicable to jobs that are running on Fargate resources.
//
// [Amazon Linux 2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html#al2ami
type Ec2Configuration struct {
// The image type to match with the instance type to select an AMI. The supported
// values are different for ECS and EKS resources.
//
// ECS If the imageIdOverride parameter isn't specified, then a recent [Amazon ECS-optimized Amazon Linux 2 AMI] ( ECS_AL2 )
// is used. If a new image type is specified in an update, but neither an imageId
// nor a imageIdOverride parameter is specified, then the latest Amazon ECS
// optimized AMI for that image type that's supported by Batch is used.
//
// ECS_AL2 [Amazon Linux 2]: Default for all non-GPU instance families.
//
// ECS_AL2_NVIDIA [Amazon Linux 2 (GPU)]: Default for all GPU instance families (for example P4 and G4 )
// and can be used for all non Amazon Web Services Graviton-based instance types.
//
// ECS_AL2023 [Amazon Linux 2023]: Batch supports Amazon Linux 2023.
//
// Amazon Linux 2023 does not support A1 instances.
//
// ECS_AL1 [Amazon Linux]. Amazon Linux has reached the end-of-life of standard support. For
// more information, see [Amazon Linux AMI].
//
// EKS If the imageIdOverride parameter isn't specified, then a recent [Amazon EKS-optimized Amazon Linux AMI] ( EKS_AL2 )
// is used. If a new image type is specified in an update, but neither an imageId
// nor a imageIdOverride parameter is specified, then the latest Amazon EKS
// optimized AMI for that image type that Batch supports is used.
//
// EKS_AL2 [Amazon Linux 2]: Default for all non-GPU instance families.
//
// EKS_AL2_NVIDIA [Amazon Linux 2 (accelerated)]: Default for all GPU instance families (for example, P4 and G4 )
// and can be used for all non Amazon Web Services Graviton-based instance types.
//
// [Amazon Linux AMI]: http://aws.amazon.com/amazon-linux-ami/
// [Amazon Linux 2023]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html
// [Amazon EKS-optimized Amazon Linux AMI]: https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-ami.html
// [Amazon Linux 2 (GPU)]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html#gpuami
// [Amazon Linux 2 (accelerated)]: https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-ami.html
// [Amazon ECS-optimized Amazon Linux 2 AMI]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html#al2ami
// [Amazon Linux 2]: https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-ami.html
// [Amazon Linux]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html#alami
//
// This member is required.
ImageType *string
// The AMI ID used for instances launched in the compute environment that match
// the image type. This setting overrides the imageId set in the computeResource
// object.
//
// The AMI that you choose for a compute environment must match the architecture
// of the instance types that you intend to use for that compute environment. For
// example, if your compute environment uses A1 instance types, the compute
// resource AMI that you choose must support ARM instances. Amazon ECS vends both
// x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more
// information, see [Amazon ECS-optimized Amazon Linux 2 AMI]in the Amazon Elastic Container Service Developer Guide.
//
// [Amazon ECS-optimized Amazon Linux 2 AMI]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html#ecs-optimized-ami-linux-variants.html
ImageIdOverride *string
// The Kubernetes version for the compute environment. If you don't specify a
// value, the latest version that Batch supports is used.
ImageKubernetesVersion *string
noSmithyDocumentSerde
}
// An object that contains the properties for the Amazon ECS resources of a job.
type EcsProperties struct {
// An object that contains the properties for the Amazon ECS task definition of a
// job.
//
// This object is currently limited to one element.
//
// This member is required.
TaskProperties []EcsTaskProperties
noSmithyDocumentSerde
}
// An object that contains the details for the Amazon ECS resources of a job.
type EcsPropertiesDetail struct {
// The properties for the Amazon ECS task definition of a job.
TaskProperties []EcsTaskDetails
noSmithyDocumentSerde
}
// An object that contains overrides for the Amazon ECS task definition of a job.
type EcsPropertiesOverride struct {
// The overrides for the Amazon ECS task definition of a job.
//
// This object is currently limited to one element.
TaskProperties []TaskPropertiesOverride
noSmithyDocumentSerde
}
// The details of a task definition that describes the container and volume
// definitions of an Amazon ECS task.
type EcsTaskDetails struct {
// The Amazon Resource Name (ARN) of the container instance that hosts the task.
ContainerInstanceArn *string
// A list of containers that are included in the taskProperties list.
Containers []TaskContainerDetails
// The amount of ephemeral storage allocated for the task.
EphemeralStorage *EphemeralStorage
// The Amazon Resource Name (ARN) of the execution role that Batch can assume. For
// more information, see [Batch execution IAM role]in the Batch User Guide.
//
// [Batch execution IAM role]: https://docs.aws.amazon.com/batch/latest/userguide/execution-IAM-role.html
ExecutionRoleArn *string
// The IPC resource namespace to use for the containers in the task.
IpcMode *string
// The network configuration for jobs that are running on Fargate resources. Jobs
// that are running on Amazon EC2 resources must not specify this parameter.
NetworkConfiguration *NetworkConfiguration
// The process namespace to use for the containers in the task.
PidMode *string
// The Fargate platform version where the jobs are running.
PlatformVersion *string
// An object that represents the compute environment architecture for Batch jobs
// on Fargate.
RuntimePlatform *RuntimePlatform
// The ARN of the Amazon ECS task.
TaskArn *string
// The Amazon Resource Name (ARN) of the IAM role that the container can assume
// for Amazon Web Services permissions. For more information, see [IAM roles for tasks]in the Amazon
// Elastic Container Service Developer Guide.
//
// This is object is comparable to [ContainerProperties:jobRoleArn].
//
// [ContainerProperties:jobRoleArn]: https://docs.aws.amazon.com/batch/latest/APIReference/API_ContainerProperties.html
// [IAM roles for tasks]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
TaskRoleArn *string
// A list of data volumes used in a job.
Volumes []Volume
noSmithyDocumentSerde
}
// The properties for a task definition that describes the container and volume
// definitions of an Amazon ECS task. You can specify which Docker images to use,
// the required resources, and other configurations related to launching the task
// definition through an Amazon ECS service or task.
type EcsTaskProperties struct {
// This object is a list of containers.
//
// This member is required.
Containers []TaskContainerProperties
// The amount of ephemeral storage to allocate for the task. This parameter is
// used to expand the total amount of ephemeral storage available, beyond the
// default amount, for tasks hosted on Fargate.
EphemeralStorage *EphemeralStorage
// The Amazon Resource Name (ARN) of the execution role that Batch can assume. For
// jobs that run on Fargate resources, you must provide an execution role. For more
// information, see [Batch execution IAM role]in the Batch User Guide.
//
// [Batch execution IAM role]: https://docs.aws.amazon.com/batch/latest/userguide/execution-IAM-role.html
ExecutionRoleArn *string
// The IPC resource namespace to use for the containers in the task. The valid
// values are host , task , or none .
//
// If host is specified, all containers within the tasks that specified the host
// IPC mode on the same container instance share the same IPC resources with the
// host Amazon EC2 instance.
//
// If task is specified, all containers within the specified task share the same
// IPC resources.
//
// If none is specified, the IPC resources within the containers of a task are
// private, and are not shared with other containers in a task or on the container
// instance.
//
// If no value is specified, then the IPC resource namespace sharing depends on
// the Docker daemon setting on the container instance. For more information, see [IPC settings]
// in the Docker run reference.
//
// [IPC settings]: https://docs.docker.com/engine/reference/run/#ipc-settings---ipc
IpcMode *string
// The network configuration for jobs that are running on Fargate resources. Jobs
// that are running on Amazon EC2 resources must not specify this parameter.
NetworkConfiguration *NetworkConfiguration
// The process namespace to use for the containers in the task. The valid values
// are host or task . For example, monitoring sidecars might need pidMode to
// access information about other containers running in the same task.
//
// If host is specified, all containers within the tasks that specified the host
// PID mode on the same container instance share the process namespace with the
// host Amazon EC2 instance.
//
// If task is specified, all containers within the specified task share the same
// process namespace.
//
// If no value is specified, the default is a private namespace for each
// container. For more information, see [PID settings]in the Docker run reference.
//
// [PID settings]: https://docs.docker.com/engine/reference/run/#pid-settings---pid
PidMode *string
// The Fargate platform version where the jobs are running. A platform version is
// specified only for jobs that are running on Fargate resources. If one isn't
// specified, the LATEST platform version is used by default. This uses a recent,
// approved version of the Fargate platform for compute resources. For more
// information, see [Fargate platform versions]in the Amazon Elastic Container Service Developer Guide.
//
// [Fargate platform versions]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
PlatformVersion *string
// An object that represents the compute environment architecture for Batch jobs
// on Fargate.
RuntimePlatform *RuntimePlatform
// The Amazon Resource Name (ARN) that's associated with the Amazon ECS task.
//
// This is object is comparable to [ContainerProperties:jobRoleArn].
//
// [ContainerProperties:jobRoleArn]: https://docs.aws.amazon.com/batch/latest/APIReference/API_ContainerProperties.html
TaskRoleArn *string
// A list of volumes that are associated with the job.
Volumes []Volume
noSmithyDocumentSerde
}
// The authorization configuration details for the Amazon EFS file system.
type EFSAuthorizationConfig struct {
// The Amazon EFS access point ID to use. If an access point is specified, the
// root directory value specified in the EFSVolumeConfiguration must either be
// omitted or set to / which enforces the path set on the EFS access point. If an
// access point is used, transit encryption must be enabled in the
// EFSVolumeConfiguration . For more information, see [Working with Amazon EFS access points] in the Amazon Elastic File
// System User Guide.
//
// [Working with Amazon EFS access points]: https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html
AccessPointId *string
// Whether or not to use the Batch job IAM role defined in a job definition when
// mounting the Amazon EFS file system. If enabled, transit encryption must be
// enabled in the EFSVolumeConfiguration . If this parameter is omitted, the
// default value of DISABLED is used. For more information, see [Using Amazon EFS access points] in the Batch User
// Guide. EFS IAM authorization requires that TransitEncryption be ENABLED and
// that a JobRoleArn is specified.
//
// [Using Amazon EFS access points]: https://docs.aws.amazon.com/batch/latest/userguide/efs-volumes.html#efs-volume-accesspoints
Iam EFSAuthorizationConfigIAM
noSmithyDocumentSerde
}
// This is used when you're using an Amazon Elastic File System file system for
// job storage. For more information, see [Amazon EFS Volumes]in the Batch User Guide.
//
// [Amazon EFS Volumes]: https://docs.aws.amazon.com/batch/latest/userguide/efs-volumes.html
type EFSVolumeConfiguration struct {
// The Amazon EFS file system ID to use.
//
// This member is required.
FileSystemId *string
// The authorization configuration details for the Amazon EFS file system.
AuthorizationConfig *EFSAuthorizationConfig
// The directory within the Amazon EFS file system to mount as the root directory
// inside the host. If this parameter is omitted, the root of the Amazon EFS volume
// is used instead. Specifying / has the same effect as omitting this parameter.
// The maximum length is 4,096 characters.
//
// If an EFS access point is specified in the authorizationConfig , the root
// directory parameter must either be omitted or set to / , which enforces the path
// set on the Amazon EFS access point.
RootDirectory *string
// Determines whether to enable encryption for Amazon EFS data in transit between
// the Amazon ECS host and the Amazon EFS server. Transit encryption must be
// enabled if Amazon EFS IAM authorization is used. If this parameter is omitted,
// the default value of DISABLED is used. For more information, see [Encrypting data in transit] in the Amazon
// Elastic File System User Guide.
//
// [Encrypting data in transit]: https://docs.aws.amazon.com/efs/latest/ug/encryption-in-transit.html
TransitEncryption EFSTransitEncryption
// The port to use when sending encrypted data between the Amazon ECS host and the
// Amazon EFS server. If you don't specify a transit encryption port, it uses the
// port selection strategy that the Amazon EFS mount helper uses. The value must be
// between 0 and 65,535. For more information, see [EFS mount helper]in the Amazon Elastic File
// System User Guide.
//
// [EFS mount helper]: https://docs.aws.amazon.com/efs/latest/ug/efs-mount-helper.html
TransitEncryptionPort *int32
noSmithyDocumentSerde
}
// An object that represents the details for an attempt for a job attempt that an
// Amazon EKS container runs.
type EksAttemptContainerDetail struct {
// The exit code returned for the job attempt. A non-zero exit code is considered
// failed.
ExitCode *int32
// The name of a container.
Name *string
// A short (255 max characters) human-readable string to provide additional
// details for a running or stopped container.
Reason *string
noSmithyDocumentSerde
}
// An object that represents the details of a job attempt for a job attempt by an
// Amazon EKS container.
type EksAttemptDetail struct {
// The details for the final status of the containers for this job attempt.
Containers []EksAttemptContainerDetail
// The Amazon Resource Name (ARN) of the Amazon EKS cluster.
EksClusterArn *string
// The details for the init containers.
InitContainers []EksAttemptContainerDetail
// The name of the node for this job attempt.
NodeName *string
// The name of the pod for this job attempt.
PodName *string
// The Unix timestamp (in milliseconds) for when the attempt was started (when the
// attempt transitioned from the STARTING state to the RUNNING state).
StartedAt *int64
// A short, human-readable string to provide additional details for the current
// status of the job attempt.
StatusReason *string
// The Unix timestamp (in milliseconds) for when the attempt was stopped. This
// happens when the attempt transitioned from the RUNNING state to a terminal
// state, such as SUCCEEDED or FAILED .
StoppedAt *int64
noSmithyDocumentSerde
}
// Configuration for the Amazon EKS cluster that supports the Batch compute
// environment. The cluster must exist before the compute environment can be
// created.
type EksConfiguration struct {
// The Amazon Resource Name (ARN) of the Amazon EKS cluster. An example is
// arn:aws:eks:us-east-1:123456789012:cluster/ClusterForBatch .
//
// This member is required.
EksClusterArn *string
// The namespace of the Amazon EKS cluster. Batch manages pods in this namespace.
// The value can't left empty or null. It must be fewer than 64 characters long,
// can't be set to default , can't start with " kube- ," and must match this
// regular expression: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$ . For more information, see [Namespaces]
// in the Kubernetes documentation.
//
// [Namespaces]: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
//
// This member is required.
KubernetesNamespace *string
noSmithyDocumentSerde
}
// EKS container properties are used in job definitions for Amazon EKS based job
// definitions to describe the properties for a container node in the pod that's
// launched as part of a job. This can't be specified for Amazon ECS based job
// definitions.
type EksContainer struct {
// The Docker image used to start the container.
//
// This member is required.
Image *string
// An array of arguments to the entrypoint. If this isn't specified, the CMD of
// the container image is used. This corresponds to the args member in the [Entrypoint]
// portion of the [Pod]in Kubernetes. Environment variable references are expanded
// using the container's environment.
//
// If the referenced environment variable doesn't exist, the reference in the
// command isn't changed. For example, if the reference is to " $(NAME1) " and the
// NAME1 environment variable doesn't exist, the command string will remain "
// $(NAME1) ." $$ is replaced with $ , and the resulting string isn't expanded. For
// example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME
// environment variable exists. For more information, see [Dockerfile reference: CMD]and [Define a command and arguments for a pod] in the Kubernetes
// documentation.
//
// [Entrypoint]: https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#entrypoint
// [Pod]: https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/
// [Dockerfile reference: CMD]: https://docs.docker.com/engine/reference/builder/#cmd
// [Define a command and arguments for a pod]: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/
Args []string
// The entrypoint for the container. This isn't run within a shell. If this isn't
// specified, the ENTRYPOINT of the container image is used. Environment variable
// references are expanded using the container's environment.
//
// If the referenced environment variable doesn't exist, the reference in the
// command isn't changed. For example, if the reference is to " $(NAME1) " and the
// NAME1 environment variable doesn't exist, the command string will remain "
// $(NAME1) ." $$ is replaced with $ and the resulting string isn't expanded. For
// example, $$(VAR_NAME) will be passed as $(VAR_NAME) whether or not the VAR_NAME
// environment variable exists. The entrypoint can't be updated. For more
// information, see [ENTRYPOINT]in the Dockerfile reference and [Define a command and arguments for a container] and [Entrypoint] in the Kubernetes
// documentation.
//
// [Define a command and arguments for a container]: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/
// [Entrypoint]: https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#entrypoint
// [ENTRYPOINT]: https://docs.docker.com/engine/reference/builder/#entrypoint
Command []string
// The environment variables to pass to a container.
//
// Environment variables cannot start with " AWS_BATCH ". This naming convention is
// reserved for variables that Batch sets.
Env []EksContainerEnvironmentVariable
// The image pull policy for the container. Supported values are Always ,
// IfNotPresent , and Never . This parameter defaults to IfNotPresent . However, if
// the :latest tag is specified, it defaults to Always . For more information, see [Updating images]
// in the Kubernetes documentation.
//
// [Updating images]: https://kubernetes.io/docs/concepts/containers/images/#updating-images
ImagePullPolicy *string
// The name of the container. If the name isn't specified, the default name "
// Default " is used. Each container in a pod must have a unique name.
Name *string
// The type and amount of resources to assign to a container. The supported
// resources include memory , cpu , and nvidia.com/gpu . For more information, see [Resource management for pods and containers]
// in the Kubernetes documentation.
//
// [Resource management for pods and containers]: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
Resources *EksContainerResourceRequirements
// The security context for a job. For more information, see [Configure a security context for a pod or container] in the Kubernetes
// documentation.
//
// [Configure a security context for a pod or container]: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
SecurityContext *EksContainerSecurityContext
// The volume mounts for the container. Batch supports emptyDir , hostPath , and
// secret volume types. For more information about volumes and volume mounts in
// Kubernetes, see [Volumes]in the Kubernetes documentation.
//
// [Volumes]: https://kubernetes.io/docs/concepts/storage/volumes/
VolumeMounts []EksContainerVolumeMount
noSmithyDocumentSerde
}
// The details for container properties that are returned by DescribeJobs for jobs
// that use Amazon EKS.
type EksContainerDetail struct {
// An array of arguments to the entrypoint. If this isn't specified, the CMD of
// the container image is used. This corresponds to the args member in the [Entrypoint]
// portion of the [Pod]in Kubernetes. Environment variable references are expanded
// using the container's environment.
//
// If the referenced environment variable doesn't exist, the reference in the
// command isn't changed. For example, if the reference is to " $(NAME1) " and the
// NAME1 environment variable doesn't exist, the command string will remain "
// $(NAME1) ". $$ is replaced with $ and the resulting string isn't expanded. For
// example, $$(VAR_NAME) is passed as $(VAR_NAME) whether or not the VAR_NAME
// environment variable exists. For more information, see [Dockerfile reference: CMD]and [Define a command and arguments for a pod] in the Kubernetes
// documentation.
//
// [Entrypoint]: https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#entrypoint
// [Pod]: https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/
// [Dockerfile reference: CMD]: https://docs.docker.com/engine/reference/builder/#cmd
// [Define a command and arguments for a pod]: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/
Args []string
// The entrypoint for the container. For more information, see [Entrypoint] in the Kubernetes
// documentation.
//
// [Entrypoint]: https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#entrypoint
Command []string
// The environment variables to pass to a container.
//
// Environment variables cannot start with " AWS_BATCH ". This naming convention is
// reserved for variables that Batch sets.
Env []EksContainerEnvironmentVariable
// The exit code returned for the job attempt. A non-zero exit code is considered
// failed.
ExitCode *int32
// The Docker image used to start the container.
Image *string
// The image pull policy for the container. Supported values are Always ,
// IfNotPresent , and Never . This parameter defaults to Always if the :latest tag
// is specified, IfNotPresent otherwise. For more information, see [Updating images] in the
// Kubernetes documentation.
//
// [Updating images]: https://kubernetes.io/docs/concepts/containers/images/#updating-images
ImagePullPolicy *string
// The name of the container. If the name isn't specified, the default name "
// Default " is used. Each container in a pod must have a unique name.
Name *string
// A short human-readable string to provide additional details for a running or
// stopped container. It can be up to 255 characters long.
Reason *string
// The type and amount of resources to assign to a container. The supported
// resources include memory , cpu , and nvidia.com/gpu . For more information, see [Resource management for pods and containers]
// in the Kubernetes documentation.
//
// [Resource management for pods and containers]: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
Resources *EksContainerResourceRequirements
// The security context for a job. For more information, see [Configure a security context for a pod or container] in the Kubernetes
// documentation.
//
// [Configure a security context for a pod or container]: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
SecurityContext *EksContainerSecurityContext
// The volume mounts for the container. Batch supports emptyDir , hostPath , and
// secret volume types. For more information about volumes and volume mounts in
// Kubernetes, see [Volumes]in the Kubernetes documentation.
//
// [Volumes]: https://kubernetes.io/docs/concepts/storage/volumes/
VolumeMounts []EksContainerVolumeMount
noSmithyDocumentSerde
}
// An environment variable.
type EksContainerEnvironmentVariable struct {
// The name of the environment variable.
//
// This member is required.
Name *string
// The value of the environment variable.
Value *string
noSmithyDocumentSerde
}
// Object representing any Kubernetes overrides to a job definition that's used in
// a [SubmitJob]API operation.
//
// [SubmitJob]: https://docs.aws.amazon.com/batch/latest/APIReference/API_SubmitJob.html
type EksContainerOverride struct {
// The arguments to the entrypoint to send to the container that overrides the
// default arguments from the Docker image or the job definition. For more
// information, see [Dockerfile reference: CMD]and [Define a command an arguments for a pod] in the Kubernetes documentation.
//
// [Define a command an arguments for a pod]: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/
// [Dockerfile reference: CMD]: https://docs.docker.com/engine/reference/builder/#cmd
Args []string
// The command to send to the container that overrides the default command from
// the Docker image or the job definition.
Command []string
// The environment variables to send to the container. You can add new environment
// variables, which are added to the container at launch. Or, you can override the
// existing environment variables from the Docker image or the job definition.
//
// Environment variables cannot start with " AWS_BATCH ". This naming convention is
// reserved for variables that Batch sets.
Env []EksContainerEnvironmentVariable
// The override of the Docker image that's used to start the container.
Image *string
// A pointer to the container that you want to override. The name must match a
// unique container name that you wish to override.
Name *string
// The type and amount of resources to assign to a container. These override the
// settings in the job definition. The supported resources include memory , cpu ,
// and nvidia.com/gpu . For more information, see [Resource management for pods and containers] in the Kubernetes documentation.
//
// [Resource management for pods and containers]: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
Resources *EksContainerResourceRequirements
noSmithyDocumentSerde
}
// The type and amount of resources to assign to a container. The supported
// resources include memory , cpu , and nvidia.com/gpu . For more information, see [Resource management for pods and containers]
// in the Kubernetes documentation.
//
// [Resource management for pods and containers]: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
type EksContainerResourceRequirements struct {
// The type and quantity of the resources to reserve for the container. The values
// vary based on the name that's specified. Resources can be requested using
// either the limits or the requests objects.
//
// memory The memory hard limit (in MiB) for the container, using whole integers,
// with a "Mi" suffix. If your container attempts to exceed the memory specified,
// the container is terminated. You must specify at least 4 MiB of memory for a
// job. memory can be specified in limits , requests , or both. If memory is
// specified in both places, then the value that's specified in limits must be
// equal to the value that's specified in requests .
//
// To maximize your resource utilization, provide your jobs with as much memory as
// possible for the specific instance type that you are using. To learn how, see [Memory management]
// in the Batch User Guide.
//
// cpu The number of CPUs that's reserved for the container. Values must be an
// even multiple of 0.25 . cpu can be specified in limits , requests , or both. If
// cpu is specified in both places, then the value that's specified in limits must
// be at least as large as the value that's specified in requests .
//
// nvidia.com/gpu The number of GPUs that's reserved for the container. Values
// must be a whole integer. memory can be specified in limits , requests , or both.
// If memory is specified in both places, then the value that's specified in limits
// must be equal to the value that's specified in requests .
//
// [Memory management]: https://docs.aws.amazon.com/batch/latest/userguide/memory-management.html
Limits map[string]string
// The type and quantity of the resources to request for the container. The values
// vary based on the name that's specified. Resources can be requested by using
// either the limits or the requests objects.
//
// memory The memory hard limit (in MiB) for the container, using whole integers,
// with a "Mi" suffix. If your container attempts to exceed the memory specified,
// the container is terminated. You must specify at least 4 MiB of memory for a
// job. memory can be specified in limits , requests , or both. If memory is
// specified in both, then the value that's specified in limits must be equal to
// the value that's specified in requests .
//
// If you're trying to maximize your resource utilization by providing your jobs
// as much memory as possible for a particular instance type, see [Memory management]in the Batch
// User Guide.
//
// cpu The number of CPUs that are reserved for the container. Values must be an
// even multiple of 0.25 . cpu can be specified in limits , requests , or both. If
// cpu is specified in both, then the value that's specified in limits must be at
// least as large as the value that's specified in requests .
//
// nvidia.com/gpu The number of GPUs that are reserved for the container. Values
// must be a whole integer. nvidia.com/gpu can be specified in limits , requests ,
// or both. If nvidia.com/gpu is specified in both, then the value that's
// specified in limits must be equal to the value that's specified in requests .
//
// [Memory management]: https://docs.aws.amazon.com/batch/latest/userguide/memory-management.html
Requests map[string]string
noSmithyDocumentSerde
}
// The security context for a job. For more information, see [Configure a security context for a pod or container] in the Kubernetes
// documentation.
//
// [Configure a security context for a pod or container]: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
type EksContainerSecurityContext struct {
// Whether or not a container or a Kubernetes pod is allowed to gain more
// privileges than its parent process. The default value is false .
AllowPrivilegeEscalation *bool
// When this parameter is true , the container is given elevated permissions on the
// host container instance. The level of permissions are similar to the root user
// permissions. The default value is false . This parameter maps to privileged
// policy in the [Privileged pod security policies]in the Kubernetes documentation.
//
// [Privileged pod security policies]: https://kubernetes.io/docs/concepts/security/pod-security-policy/#privileged
Privileged *bool
// When this parameter is true , the container is given read-only access to its
// root file system. The default value is false . This parameter maps to
// ReadOnlyRootFilesystem policy in the [Volumes and file systems pod security policies] in the Kubernetes documentation.
//
// [Volumes and file systems pod security policies]: https://kubernetes.io/docs/concepts/security/pod-security-policy/#volumes-and-file-systems
ReadOnlyRootFilesystem *bool
// When this parameter is specified, the container is run as the specified group
// ID ( gid ). If this parameter isn't specified, the default is the group that's
// specified in the image metadata. This parameter maps to RunAsGroup and MustRunAs
// policy in the [Users and groups pod security policies]in the Kubernetes documentation.
//
// [Users and groups pod security policies]: https://kubernetes.io/docs/concepts/security/pod-security-policy/#users-and-groups
RunAsGroup *int64
// When this parameter is specified, the container is run as a user with a uid
// other than 0. If this parameter isn't specified, so such rule is enforced. This
// parameter maps to RunAsUser and MustRunAsNonRoot policy in the [Users and groups pod security policies] in the
// Kubernetes documentation.
//
// [Users and groups pod security policies]: https://kubernetes.io/docs/concepts/security/pod-security-policy/#users-and-groups
RunAsNonRoot *bool
// When this parameter is specified, the container is run as the specified user ID
// ( uid ). If this parameter isn't specified, the default is the user that's
// specified in the image metadata. This parameter maps to RunAsUser and MustRanAs
// policy in the [Users and groups pod security policies]in the Kubernetes documentation.
//
// [Users and groups pod security policies]: https://kubernetes.io/docs/concepts/security/pod-security-policy/#users-and-groups
RunAsUser *int64
noSmithyDocumentSerde
}
// The volume mounts for a container for an Amazon EKS job. For more information
// about volumes and volume mounts in Kubernetes, see [Volumes]in the Kubernetes
// documentation.
//
// [Volumes]: https://kubernetes.io/docs/concepts/storage/volumes/
type EksContainerVolumeMount struct {
// The path on the container where the volume is mounted.
MountPath *string
// The name the volume mount. This must match the name of one of the volumes in
// the pod.
Name *string
// If this value is true , the container has read-only access to the volume.
// Otherwise, the container can write to the volume. The default value is false .
ReadOnly *bool
noSmithyDocumentSerde
}
// Specifies the configuration of a Kubernetes emptyDir volume. An emptyDir volume
// is first created when a pod is assigned to a node. It exists as long as that pod
// is running on that node. The emptyDir volume is initially empty. All containers
// in the pod can read and write the files in the emptyDir volume. However, the
// emptyDir volume can be mounted at the same or different paths in each container.
// When a pod is removed from a node for any reason, the data in the emptyDir is
// deleted permanently. For more information, see [emptyDir]in the Kubernetes documentation.
//
// [emptyDir]: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir
type EksEmptyDir struct {
// The medium to store the volume. The default value is an empty string, which
// uses the storage of the node.
//
// "" (Default) Use the disk storage of the node.
//
// "Memory" Use the tmpfs volume that's backed by the RAM of the node. Contents of
// the volume are lost when the node reboots, and any storage on the volume counts
// against the container's memory limit.
Medium *string
// The maximum size of the volume. By default, there's no maximum size defined.
SizeLimit *string
noSmithyDocumentSerde
}
// Specifies the configuration of a Kubernetes hostPath volume. A hostPath volume
// mounts an existing file or directory from the host node's filesystem into your
// pod. For more information, see [hostPath]in the Kubernetes documentation.
//
// [hostPath]: https://kubernetes.io/docs/concepts/storage/volumes/#hostpath
type EksHostPath struct {
// The path of the file or directory on the host to mount into containers on the
// pod.
Path *string
noSmithyDocumentSerde
}
// Describes and uniquely identifies Kubernetes resources. For example, the
// compute environment that a pod runs in or the jobID for a job running in the
// pod. For more information, see [Understanding Kubernetes Objects]in the Kubernetes documentation.
//
// [Understanding Kubernetes Objects]: https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/
type EksMetadata struct {
// Key-value pairs used to identify, sort, and organize cube resources. Can
// contain up to 63 uppercase letters, lowercase letters, numbers, hyphens (-), and
// underscores (_). Labels can be added or modified at any time. Each resource can
// have multiple labels, but each key must be unique for a given object.
Labels map[string]string
noSmithyDocumentSerde
}
// The properties for the pod.
type EksPodProperties struct {
// The properties of the container that's used on the Amazon EKS pod.
Containers []EksContainer
// The DNS policy for the pod. The default value is ClusterFirst . If the
// hostNetwork parameter is not specified, the default is ClusterFirstWithHostNet .
// ClusterFirst indicates that any DNS query that does not match the configured
// cluster domain suffix is forwarded to the upstream nameserver inherited from the
// node. For more information, see [Pod's DNS policy]in the Kubernetes documentation.
//
// Valid values: Default | ClusterFirst | ClusterFirstWithHostNet
//
// [Pod's DNS policy]: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy
DnsPolicy *string
// Indicates if the pod uses the hosts' network IP address. The default value is
// true . Setting this to false enables the Kubernetes pod networking model. Most
// Batch workloads are egress-only and don't require the overhead of IP allocation
// for each pod for incoming connections. For more information, see [Host namespaces]and [Pod networking] in the
// Kubernetes documentation.
//
// [Pod networking]: https://kubernetes.io/docs/concepts/workloads/pods/#pod-networking
// [Host namespaces]: https://kubernetes.io/docs/concepts/security/pod-security-policy/#host-namespaces
HostNetwork *bool
// References a Kubernetes secret resource. It holds a list of secrets. These
// secrets help to gain access to pull an images from a private registry.
//
// ImagePullSecret$name is required when this object is used.
ImagePullSecrets []ImagePullSecret
// These containers run before application containers, always runs to completion,
// and must complete successfully before the next container starts. These
// containers are registered with the Amazon EKS Connector agent and persists the
// registration information in the Kubernetes backend data store. For more
// information, see [Init Containers]in the Kubernetes documentation.
//
// This object is limited to 10 elements
//
// [Init Containers]: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
InitContainers []EksContainer
// Metadata about the Kubernetes pod. For more information, see [Understanding Kubernetes Objects] in the Kubernetes
// documentation.
//
// [Understanding Kubernetes Objects]: https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/
Metadata *EksMetadata
// The name of the service account that's used to run the pod. For more
// information, see [Kubernetes service accounts]and [Configure a Kubernetes service account to assume an IAM role] in the Amazon EKS User Guide and [Configure service accounts for pods] in the Kubernetes
// documentation.
//
// [Kubernetes service accounts]: https://docs.aws.amazon.com/eks/latest/userguide/service-accounts.html
// [Configure service accounts for pods]: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
// [Configure a Kubernetes service account to assume an IAM role]: https://docs.aws.amazon.com/eks/latest/userguide/associate-service-account-role.html
ServiceAccountName *string
// Indicates if the processes in a container are shared, or visible, to other
// containers in the same pod. For more information, see [Share Process Namespace between Containers in a Pod].
//
// [Share Process Namespace between Containers in a Pod]: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/
ShareProcessNamespace *bool
// Specifies the volumes for a job definition that uses Amazon EKS resources.
Volumes []EksVolume
noSmithyDocumentSerde
}
// The details for the pod.
type EksPodPropertiesDetail struct {
// The properties of the container that's used on the Amazon EKS pod.
Containers []EksContainerDetail
// The DNS policy for the pod. The default value is ClusterFirst . If the
// hostNetwork parameter is not specified, the default is ClusterFirstWithHostNet .
// ClusterFirst indicates that any DNS query that does not match the configured
// cluster domain suffix is forwarded to the upstream nameserver inherited from the
// node. If no value was specified for dnsPolicy in the [RegisterJobDefinition] API operation, then no
// value will be returned for dnsPolicy by either of [DescribeJobDefinitions] or [DescribeJobs] API operations. The pod
// spec setting will contain either ClusterFirst or ClusterFirstWithHostNet ,
// depending on the value of the hostNetwork parameter. For more information, see [Pod's DNS policy]
// in the Kubernetes documentation.
//
// Valid values: Default | ClusterFirst | ClusterFirstWithHostNet
//
// [DescribeJobs]: https://docs.aws.amazon.com/batch/latest/APIReference/API_DescribeJobs.html
// [RegisterJobDefinition]: https://docs.aws.amazon.com/batch/latest/APIReference/API_RegisterJobDefinition.html
// [DescribeJobDefinitions]: https://docs.aws.amazon.com/batch/latest/APIReference/API_DescribeJobDefinitions.html
// [Pod's DNS policy]: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy
DnsPolicy *string
// Indicates if the pod uses the hosts' network IP address. The default value is
// true . Setting this to false enables the Kubernetes pod networking model. Most
// Batch workloads are egress-only and don't require the overhead of IP allocation
// for each pod for incoming connections. For more information, see [Host namespaces]and [Pod networking] in the
// Kubernetes documentation.
//
// [Pod networking]: https://kubernetes.io/docs/concepts/workloads/pods/#pod-networking
// [Host namespaces]: https://kubernetes.io/docs/concepts/security/pod-security-policy/#host-namespaces
HostNetwork *bool
// Displays the reference pointer to the Kubernetes secret resource. These secrets
// help to gain access to pull an images from a private registry.
ImagePullSecrets []ImagePullSecret
// The container registered with the Amazon EKS Connector agent and persists the
// registration information in the Kubernetes backend data store.
InitContainers []EksContainerDetail
// Describes and uniquely identifies Kubernetes resources. For example, the
// compute environment that a pod runs in or the jobID for a job running in the
// pod. For more information, see [Understanding Kubernetes Objects]in the Kubernetes documentation.
//
// [Understanding Kubernetes Objects]: https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/
Metadata *EksMetadata
// The name of the node for this job.
NodeName *string
// The name of the pod for this job.
PodName *string
// The name of the service account that's used to run the pod. For more
// information, see [Kubernetes service accounts]and [Configure a Kubernetes service account to assume an IAM role] in the Amazon EKS User Guide and [Configure service accounts for pods] in the Kubernetes
// documentation.
//
// [Kubernetes service accounts]: https://docs.aws.amazon.com/eks/latest/userguide/service-accounts.html
// [Configure service accounts for pods]: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
// [Configure a Kubernetes service account to assume an IAM role]: https://docs.aws.amazon.com/eks/latest/userguide/associate-service-account-role.html
ServiceAccountName *string
// Indicates if the processes in a container are shared, or visible, to other
// containers in the same pod. For more information, see [Share Process Namespace between Containers in a Pod].
//
// [Share Process Namespace between Containers in a Pod]: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/
ShareProcessNamespace *bool
// Specifies the volumes for a job definition using Amazon EKS resources.
Volumes []EksVolume
noSmithyDocumentSerde
}
// An object that contains overrides for the Kubernetes pod properties of a job.
type EksPodPropertiesOverride struct {
// The overrides for the container that's used on the Amazon EKS pod.
Containers []EksContainerOverride
// The overrides for the conatainers defined in the Amazon EKS pod. These
// containers run before application containers, always runs to completion, and
// must complete successfully before the next container starts. These containers
// are registered with the Amazon EKS Connector agent and persists the registration
// information in the Kubernetes backend data store. For more information, see [Init Containers]in
// the Kubernetes documentation.
//
// This object is limited to 10 elements
//
// [Init Containers]: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
InitContainers []EksContainerOverride
// Metadata about the overrides for the container that's used on the Amazon EKS
// pod.
Metadata *EksMetadata
noSmithyDocumentSerde
}
// An object that contains the properties for the Kubernetes resources of a job.
type EksProperties struct {
// The properties for the Kubernetes pod resources of a job.
PodProperties *EksPodProperties
noSmithyDocumentSerde
}
// An object that contains the details for the Kubernetes resources of a job.
type EksPropertiesDetail struct {
// The properties for the Kubernetes pod resources of a job.
PodProperties *EksPodPropertiesDetail
noSmithyDocumentSerde
}
// An object that contains overrides for the Kubernetes resources of a job.
type EksPropertiesOverride struct {
// The overrides for the Kubernetes pod resources of a job.
PodProperties *EksPodPropertiesOverride
noSmithyDocumentSerde
}
// Specifies the configuration of a Kubernetes secret volume. For more
// information, see [secret]in the Kubernetes documentation.
//
// [secret]: https://kubernetes.io/docs/concepts/storage/volumes/#secret
type EksSecret struct {
// The name of the secret. The name must be allowed as a DNS subdomain name. For
// more information, see [DNS subdomain names]in the Kubernetes documentation.
//
// [DNS subdomain names]: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-subdomain-names
//
// This member is required.
SecretName *string
// Specifies whether the secret or the secret's keys must be defined.
Optional *bool
noSmithyDocumentSerde
}
// Specifies an Amazon EKS volume for a job definition.
type EksVolume struct {
// The name of the volume. The name must be allowed as a DNS subdomain name. For
// more information, see [DNS subdomain names]in the Kubernetes documentation.
//
// [DNS subdomain names]: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-subdomain-names
//
// This member is required.
Name *string
// Specifies the configuration of a Kubernetes emptyDir volume. For more
// information, see [emptyDir]in the Kubernetes documentation.
//
// [emptyDir]: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir
EmptyDir *EksEmptyDir
// Specifies the configuration of a Kubernetes hostPath volume. For more
// information, see [hostPath]in the Kubernetes documentation.
//
// [hostPath]: https://kubernetes.io/docs/concepts/storage/volumes/#hostpath
HostPath *EksHostPath
// Specifies the configuration of a Kubernetes secret volume. For more
// information, see [secret]in the Kubernetes documentation.
//
// [secret]: https://kubernetes.io/docs/concepts/storage/volumes/#secret
Secret *EksSecret
noSmithyDocumentSerde
}
// The amount of ephemeral storage to allocate for the task. This parameter is
// used to expand the total amount of ephemeral storage available, beyond the
// default amount, for tasks hosted on Fargate.
type EphemeralStorage struct {
// The total amount, in GiB, of ephemeral storage to set for the task. The minimum
// supported value is 21 GiB and the maximum supported value is 200 GiB.
//
// This member is required.
SizeInGiB *int32
noSmithyDocumentSerde
}
// Specifies an array of up to 5 conditions to be met, and an action to take ( RETRY
// or EXIT ) if all conditions are met. If none of the EvaluateOnExit conditions
// in a RetryStrategy match, then the job is retried.
type EvaluateOnExit struct {
// Specifies the action to take if all of the specified conditions ( onStatusReason
// , onReason , and onExitCode ) are met. The values aren't case sensitive.
//
// This member is required.
Action RetryAction
// Contains a glob pattern to match against the decimal representation of the
// ExitCode returned for a job. The pattern can be up to 512 characters long. It
// can contain only numbers, and can end with an asterisk (*) so that only the
// start of the string needs to be an exact match.
//
// The string can contain up to 512 characters.
OnExitCode *string
// Contains a glob pattern to match against the Reason returned for a job. The
// pattern can contain up to 512 characters. It can contain letters, numbers,
// periods (.), colons (:), and white space (including spaces and tabs). It can
// optionally end with an asterisk (*) so that only the start of the string needs
// to be an exact match.
OnReason *string
// Contains a glob pattern to match against the StatusReason returned for a job.
// The pattern can contain up to 512 characters. It can contain letters, numbers,
// periods (.), colons (:), and white spaces (including spaces or tabs). It can
// optionally end with an asterisk (*) so that only the start of the string needs
// to be an exact match.
OnStatusReason *string
noSmithyDocumentSerde
}
// The fair share policy for a scheduling policy.
type FairsharePolicy struct {
// A value used to reserve some of the available maximum vCPU for fair share
// identifiers that aren't already used.
//
// The reserved ratio is (computeReservation/100)^ActiveFairShares where
// ActiveFairShares is the number of active fair share identifiers.
//
// For example, a computeReservation value of 50 indicates that Batch reserves 50%
// of the maximum available vCPU if there's only one fair share identifier. It
// reserves 25% if there are two fair share identifiers. It reserves 12.5% if there
// are three fair share identifiers. A computeReservation value of 25 indicates
// that Batch should reserve 25% of the maximum available vCPU if there's only one
// fair share identifier, 6.25% if there are two fair share identifiers, and 1.56%
// if there are three fair share identifiers.
//
// The minimum value is 0 and the maximum value is 99.
ComputeReservation *int32
// The amount of time (in seconds) to use to calculate a fair share percentage for
// each fair share identifier in use. A value of zero (0) indicates that only
// current usage is measured. The decay allows for more recently run jobs to have
// more weight than jobs that ran earlier. The maximum supported value is 604800 (1
// week).
ShareDecaySeconds *int32
// An array of SharedIdentifier objects that contain the weights for the fair
// share identifiers for the fair share policy. Fair share identifiers that aren't
// included have a default weight of 1.0 .
ShareDistribution []ShareAttributes
noSmithyDocumentSerde
}
// The platform configuration for jobs that are running on Fargate resources. Jobs
// that run on Amazon EC2 resources must not specify this parameter.
type FargatePlatformConfiguration struct {
// The Fargate platform version where the jobs are running. A platform version is
// specified only for jobs that are running on Fargate resources. If one isn't
// specified, the LATEST platform version is used by default. This uses a recent,
// approved version of the Fargate platform for compute resources. For more
// information, see [Fargate platform versions]in the Amazon Elastic Container Service Developer Guide.
//
// [Fargate platform versions]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
PlatformVersion *string
noSmithyDocumentSerde
}
// Contains a list of the first 100 RUNNABLE jobs associated to a single job queue.
type FrontOfQueueDetail struct {
// The Amazon Resource Names (ARNs) of the first 100 RUNNABLE jobs in a named job
// queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their
// submission time. For fair share scheduling (FSS) job queues, jobs are ordered
// based on their job priority and share usage.
Jobs []FrontOfQueueJobSummary
// The Unix timestamp (in milliseconds) for when each of the first 100 RUNNABLE
// jobs were last updated.
LastUpdatedAt *int64
noSmithyDocumentSerde
}
// An object that represents summary details for the first 100 RUNNABLE jobs in a
// job queue.
type FrontOfQueueJobSummary struct {
// The Unix timestamp (in milliseconds) for when the job transitioned to its
// current position in the job queue.
EarliestTimeAtPosition *int64
// The ARN for a job in a named job queue.
JobArn *string
noSmithyDocumentSerde
}
// Determine whether your data volume persists on the host container instance and
// where it's stored. If this parameter is empty, then the Docker daemon assigns a
// host path for your data volume. However, the data isn't guaranteed to persist
// after the containers that are associated with it stop running.
type Host struct {
// The path on the host container instance that's presented to the container. If
// this parameter is empty, then the Docker daemon has assigned a host path for
// you. If this parameter contains a file location, then the data volume persists
// at the specified location on the host container instance until you delete it
// manually. If the source path location doesn't exist on the host container
// instance, the Docker daemon creates it. If the location does exist, the contents
// of the source path folder are exported.
//
// This parameter isn't applicable to jobs that run on Fargate resources. Don't
// provide this for these jobs.
SourcePath *string
noSmithyDocumentSerde
}
// References a Kubernetes secret resource. This name of the secret must start and
// end with an alphanumeric character, is required to be lowercase, can include
// periods (.) and hyphens (-), and can't contain more than 253 characters.
type ImagePullSecret struct {
// Provides a unique identifier for the ImagePullSecret . This object is required
// when EksPodProperties$imagePullSecrets is used.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// An object that represents an Batch job definition.
type JobDefinition struct {
// The Amazon Resource Name (ARN) for the job definition.
//
// This member is required.
JobDefinitionArn *string
// The name of the job definition.
//
// This member is required.
JobDefinitionName *string
// The revision of the job definition.
//
// This member is required.
Revision *int32
// The type of job definition. It's either container or multinode . If the job is
// run on Fargate resources, then multinode isn't supported. For more information
// about multi-node parallel jobs, see [Creating a multi-node parallel job definition]in the Batch User Guide.
//
// [Creating a multi-node parallel job definition]: https://docs.aws.amazon.com/batch/latest/userguide/multi-node-job-def.html
//
// This member is required.
Type *string
// The orchestration type of the compute environment. The valid values are ECS
// (default) or EKS .
ContainerOrchestrationType OrchestrationType
// An object with properties specific to Amazon ECS-based jobs. When
// containerProperties is used in the job definition, it can't be used in addition
// to eksProperties , ecsProperties , or nodeProperties .
ContainerProperties *ContainerProperties
// An object that contains the properties for the Amazon ECS resources of a
// job.When ecsProperties is used in the job definition, it can't be used in
// addition to containerProperties , eksProperties , or nodeProperties .
EcsProperties *EcsProperties
// An object with properties that are specific to Amazon EKS-based jobs. When
// eksProperties is used in the job definition, it can't be used in addition to
// containerProperties , ecsProperties , or nodeProperties .
EksProperties *EksProperties
// An object with properties that are specific to multi-node parallel jobs. When
// nodeProperties is used in the job definition, it can't be used in addition to
// containerProperties , ecsProperties , or eksProperties .
//
// If the job runs on Fargate resources, don't specify nodeProperties . Use
// containerProperties instead.
NodeProperties *NodeProperties
// Default parameters or parameter substitution placeholders that are set in the
// job definition. Parameters are specified as a key-value pair mapping. Parameters
// in a SubmitJob request override any corresponding parameter defaults from the
// job definition. For more information about specifying parameters, see [Job definition parameters]in the
// Batch User Guide.
//
// [Job definition parameters]: https://docs.aws.amazon.com/batch/latest/userguide/job_definition_parameters.html
Parameters map[string]string
// The platform capabilities required by the job definition. If no value is
// specified, it defaults to EC2 . Jobs run on Fargate resources specify FARGATE .
PlatformCapabilities []PlatformCapability
// Specifies whether to propagate the tags from the job or job definition to the
// corresponding Amazon ECS task. If no value is specified, the tags aren't
// propagated. Tags can only be propagated to the tasks when the tasks are created.
// For tags with the same name, job tags are given priority over job definitions
// tags. If the total number of combined tags from the job and job definition is
// over 50, the job is moved to the FAILED state.
PropagateTags *bool
// The retry strategy to use for failed jobs that are submitted with this job
// definition.
RetryStrategy *RetryStrategy
// The scheduling priority of the job definition. This only affects jobs in job
// queues with a fair share policy. Jobs with a higher scheduling priority are
// scheduled before jobs with a lower scheduling priority.
SchedulingPriority *int32
// The status of the job definition.
Status *string
// The tags that are applied to the job definition.
Tags map[string]string
// The timeout time for jobs that are submitted with this job definition. After
// the amount of time you specify passes, Batch terminates your jobs if they aren't
// finished.
Timeout *JobTimeout
noSmithyDocumentSerde
}
// An object that represents an Batch job dependency.
type JobDependency struct {
// The job ID of the Batch job that's associated with this dependency.
JobId *string
// The type of the job dependency.
Type ArrayJobDependency
noSmithyDocumentSerde
}
// An object that represents an Batch job.
type JobDetail struct {
// The Amazon Resource Name (ARN) of the job definition that this job uses.
//
// This member is required.
JobDefinition *string
// The job ID.
//
// This member is required.
JobId *string
// The job name.
//
// This member is required.
JobName *string
// The Amazon Resource Name (ARN) of the job queue that the job is associated with.
//
// This member is required.
JobQueue *string
// The Unix timestamp (in milliseconds) for when the job was started. More
// specifically, it's when the job transitioned from the STARTING state to the
// RUNNING state.
//
// This member is required.
StartedAt *int64
// The current status for the job.
//
// If your jobs don't progress to STARTING , see [Jobs stuck in RUNNABLE status] in the troubleshooting section
// of the Batch User Guide.
//
// [Jobs stuck in RUNNABLE status]: https://docs.aws.amazon.com/batch/latest/userguide/troubleshooting.html#job_stuck_in_runnable
//
// This member is required.
Status JobStatus
// The array properties of the job, if it's an array job.
ArrayProperties *ArrayPropertiesDetail
// A list of job attempts that are associated with this job.
Attempts []AttemptDetail
// An object that represents the details for the container that's associated with
// the job. If the details are for a multiple-container job, this object will be
// empty.
Container *ContainerDetail
// The Unix timestamp (in milliseconds) for when the job was created. For
// non-array jobs and parent array jobs, this is when the job entered the SUBMITTED
// state. This is specifically at the time [SubmitJob]was called. For array child jobs, this
// is when the child job was spawned by its parent and entered the PENDING state.
//
// [SubmitJob]: https://docs.aws.amazon.com/batch/latest/APIReference/API_SubmitJob.html
CreatedAt *int64
// A list of job IDs that this job depends on.
DependsOn []JobDependency
// An object with properties that are specific to Amazon ECS-based jobs.
EcsProperties *EcsPropertiesDetail
// A list of job attempts that are associated with this job.
EksAttempts []EksAttemptDetail
// An object with various properties that are specific to Amazon EKS based jobs.
EksProperties *EksPropertiesDetail
// Indicates whether the job is canceled.
IsCancelled *bool
// Indicates whether the job is terminated.
IsTerminated *bool
// The Amazon Resource Name (ARN) of the job.
JobArn *string
// An object that represents the details of a node that's associated with a
// multi-node parallel job.
NodeDetails *NodeDetails
// An object that represents the node properties of a multi-node parallel job.
//
// This isn't applicable to jobs that are running on Fargate resources.
NodeProperties *NodeProperties
// Additional parameters that are passed to the job that replace parameter
// substitution placeholders or override any corresponding parameter defaults from
// the job definition.
Parameters map[string]string
// The platform capabilities required by the job definition. If no value is
// specified, it defaults to EC2 . Jobs run on Fargate resources specify FARGATE .
PlatformCapabilities []PlatformCapability
// Specifies whether to propagate the tags from the job or job definition to the
// corresponding Amazon ECS task. If no value is specified, the tags aren't
// propagated. Tags can only be propagated to the tasks when the tasks are created.
// For tags with the same name, job tags are given priority over job definitions
// tags. If the total number of combined tags from the job and job definition is
// over 50, the job is moved to the FAILED state.
PropagateTags *bool
// The retry strategy to use for this job if an attempt fails.
RetryStrategy *RetryStrategy
// The scheduling policy of the job definition. This only affects jobs in job
// queues with a fair share policy. Jobs with a higher scheduling priority are
// scheduled before jobs with a lower scheduling priority.
SchedulingPriority *int32
// The share identifier for the job.
ShareIdentifier *string
// A short, human-readable string to provide more details for the current status
// of the job.
//
// - CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY - All compute environments have
// insufficient capacity to service the job.
//
// - MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE - All compute environments
// have a maxVcpu setting that is smaller than the job requirements.
//
// - MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT - All compute environments have no
// connected instances that meet the job requirements.
//
// - MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS - All compute environments have
// problems with the service role permissions.
StatusReason *string
// The Unix timestamp (in milliseconds) for when the job was stopped. More
// specifically, it's when the job transitioned from the RUNNING state to a
// terminal state, such as SUCCEEDED or FAILED .
StoppedAt *int64
// The tags that are applied to the job.
Tags map[string]string
// The timeout configuration for the job.
Timeout *JobTimeout
noSmithyDocumentSerde
}
// An object that represents the details for an Batch job queue.
type JobQueueDetail struct {
// The compute environments that are attached to the job queue and the order that
// job placement is preferred. Compute environments are selected for job placement
// in ascending order.
//
// This member is required.
ComputeEnvironmentOrder []ComputeEnvironmentOrder
// The Amazon Resource Name (ARN) of the job queue.
//
// This member is required.
JobQueueArn *string
// The job queue name.
//
// This member is required.
JobQueueName *string
// The priority of the job queue. Job queues with a higher priority (or a higher
// integer value for the priority parameter) are evaluated first when associated
// with the same compute environment. Priority is determined in descending order.
// For example, a job queue with a priority value of 10 is given scheduling
// preference over a job queue with a priority value of 1 . All of the compute
// environments must be either Amazon EC2 ( EC2 or SPOT ) or Fargate ( FARGATE or
// FARGATE_SPOT ). Amazon EC2 and Fargate compute environments can't be mixed.
//
// This member is required.
Priority *int32
// Describes the ability of the queue to accept new jobs. If the job queue state
// is ENABLED , it can accept jobs. If the job queue state is DISABLED , new jobs
// can't be added to the queue, but jobs already in the queue can finish.
//
// This member is required.
State JQState
// The set of actions that Batch perform on jobs that remain at the head of the
// job queue in the specified state longer than specified times. Batch will perform
// each action after maxTimeSeconds has passed.
JobStateTimeLimitActions []JobStateTimeLimitAction
// The Amazon Resource Name (ARN) of the scheduling policy. The format is
// aws:Partition:batch:Region:Account:scheduling-policy/Name . For example,
// aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy .
SchedulingPolicyArn *string
// The status of the job queue (for example, CREATING or VALID ).
Status JQStatus
// A short, human-readable string to provide additional details for the current
// status of the job queue.
StatusReason *string
// The tags that are applied to the job queue. For more information, see [Tagging your Batch resources] in Batch
// User Guide.
//
// [Tagging your Batch resources]: https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html
Tags map[string]string
noSmithyDocumentSerde
}
// Specifies an action that Batch will take after the job has remained at the head
// of the queue in the specified state for longer than the specified time.
type JobStateTimeLimitAction struct {
// The action to take when a job is at the head of the job queue in the specified
// state for the specified period of time. The only supported value is CANCEL ,
// which will cancel the job.
//
// This member is required.
Action JobStateTimeLimitActionsAction
// The approximate amount of time, in seconds, that must pass with the job in the
// specified state before the action is taken. The minimum value is 600 (10
// minutes) and the maximum value is 86,400 (24 hours).
//
// This member is required.
MaxTimeSeconds *int32
// The reason to log for the action being taken.
//
// This member is required.
Reason *string
// The state of the job needed to trigger the action. The only supported value is
// RUNNABLE .
//
// This member is required.
State JobStateTimeLimitActionsState
noSmithyDocumentSerde
}
// An object that represents summary details of a job.
type JobSummary struct {
// The job ID.
//
// This member is required.
JobId *string
// The job name.
//
// This member is required.
JobName *string
// The array properties of the job, if it's an array job.
ArrayProperties *ArrayPropertiesSummary
// An object that represents the details of the container that's associated with
// the job.
Container *ContainerSummary
// The Unix timestamp (in milliseconds) for when the job was created. For
// non-array jobs and parent array jobs, this is when the job entered the SUBMITTED
// state (at the time [SubmitJob]was called). For array child jobs, this is when the child
// job was spawned by its parent and entered the PENDING state.
//
// [SubmitJob]: https://docs.aws.amazon.com/batch/latest/APIReference/API_SubmitJob.html
CreatedAt *int64
// The Amazon Resource Name (ARN) of the job.
JobArn *string
// The Amazon Resource Name (ARN) of the job definition.
JobDefinition *string
// The node properties for a single node in a job summary list.
//
// This isn't applicable to jobs that are running on Fargate resources.
NodeProperties *NodePropertiesSummary
// The Unix timestamp for when the job was started. More specifically, it's when
// the job transitioned from the STARTING state to the RUNNING state.
StartedAt *int64
// The current status for the job.
Status JobStatus
// A short, human-readable string to provide more details for the current status
// of the job.
StatusReason *string
// The Unix timestamp for when the job was stopped. More specifically, it's when
// the job transitioned from the RUNNING state to a terminal state, such as
// SUCCEEDED or FAILED .
StoppedAt *int64
noSmithyDocumentSerde
}
// An object that represents a job timeout configuration.
type JobTimeout struct {
// The job timeout time (in seconds) that's measured from the job attempt's
// startedAt timestamp. After this time passes, Batch terminates your jobs if they
// aren't finished. The minimum value for the timeout is 60 seconds.
//
// For array jobs, the timeout applies to the child jobs, not to the parent array
// job.
//
// For multi-node parallel (MNP) jobs, the timeout applies to the whole job, not
// to the individual nodes.
AttemptDurationSeconds *int32
noSmithyDocumentSerde
}
// A key-value pair object.
type KeyValuePair struct {
// The name of the key-value pair. For environment variables, this is the name of
// the environment variable.
Name *string
// The value of the key-value pair. For environment variables, this is the value
// of the environment variable.
Value *string
noSmithyDocumentSerde
}
// A filter name and value pair that's used to return a more specific list of
// results from a ListJobs API operation.
type KeyValuesPair struct {
// The name of the filter. Filter names are case sensitive.
Name *string
// The filter values.
Values []string
noSmithyDocumentSerde
}
// An object that represents a launch template that's associated with a compute
// resource. You must specify either the launch template ID or launch template name
// in the request, but not both.
//
// If security groups are specified using both the securityGroupIds parameter of
// CreateComputeEnvironment and the launch template, the values in the
// securityGroupIds parameter of CreateComputeEnvironment will be used.
//
// This object isn't applicable to jobs that are running on Fargate resources.
type LaunchTemplateSpecification struct {
// The ID of the launch template.
LaunchTemplateId *string
// The name of the launch template.
LaunchTemplateName *string
// The version number of the launch template, $Latest , or $Default .
//
// If the value is $Latest , the latest version of the launch template is used. If
// the value is $Default , the default version of the launch template is used.
//
// If the AMI ID that's used in a compute environment is from the launch template,
// the AMI isn't changed when the compute environment is updated. It's only changed
// if the updateToLatestImageVersion parameter for the compute environment is set
// to true . During an infrastructure update, if either $Latest or $Default is
// specified, Batch re-evaluates the launch template version, and it might use a
// different version of the launch template. This is the case even if the launch
// template isn't specified in the update. When updating a compute environment,
// changing the launch template requires an infrastructure update of the compute
// environment. For more information, see [Updating compute environments]in the Batch User Guide.
//
// Default: $Default .
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
Version *string
noSmithyDocumentSerde
}
// Linux-specific modifications that are applied to the container, such as details
// for device mappings.
type LinuxParameters struct {
// Any of the host devices to expose to the container. This parameter maps to
// Devices in the [Create a container] section of the [Docker Remote API] and the --device option to [docker run].
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't provide it for these jobs.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Devices []Device
// If true, run an init process inside the container that forwards signals and
// reaps processes. This parameter maps to the --init option to [docker run]. This parameter
// requires version 1.25 of the Docker Remote API or greater on your container
// instance. To check the Docker Remote API version on your container instance, log
// in to your container instance and run the following command: sudo docker
// version | grep "Server API version"
//
// [docker run]: https://docs.docker.com/engine/reference/run/
InitProcessEnabled *bool
// The total amount of swap memory (in MiB) a container can use. This parameter is
// translated to the --memory-swap option to [docker run] where the value is the sum of the
// container memory plus the maxSwap value. For more information, see [--memory-swap details]--memory-swap
// in the Docker documentation.
//
// If a maxSwap value of 0 is specified, the container doesn't use swap. Accepted
// values are 0 or any positive integer. If the maxSwap parameter is omitted, the
// container doesn't use the swap configuration for the container instance that
// it's running on. A maxSwap value must be set for the swappiness parameter to be
// used.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't provide it for these jobs.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [--memory-swap details]: https://docs.docker.com/config/containers/resource_constraints/#--memory-swap-details
MaxSwap *int32
// The value for the size (in MiB) of the /dev/shm volume. This parameter maps to
// the --shm-size option to [docker run].
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't provide it for these jobs.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
SharedMemorySize *int32
// You can use this parameter to tune a container's memory swappiness behavior. A
// swappiness value of 0 causes swapping to not occur unless absolutely necessary.
// A swappiness value of 100 causes pages to be swapped aggressively. Valid values
// are whole numbers between 0 and 100 . If the swappiness parameter isn't
// specified, a default value of 60 is used. If a value isn't specified for maxSwap
// , then this parameter is ignored. If maxSwap is set to 0, the container doesn't
// use swap. This parameter maps to the --memory-swappiness option to [docker run].
//
// Consider the following when you use a per-container swap configuration.
//
// - Swap space must be enabled and allocated on the container instance for the
// containers to use.
//
// By default, the Amazon ECS optimized AMIs don't have swap enabled. You must
// enable swap on the instance to use this feature. For more information, see [Instance store swap volumes]in
// the Amazon EC2 User Guide for Linux Instances or [How do I allocate memory to work as swap space in an Amazon EC2 instance by using a swap file?]
//
// - The swap space parameters are only supported for job definitions using EC2
// resources.
//
// - If the maxSwap and swappiness parameters are omitted from a job definition,
// each container has a default swappiness value of 60. Moreover, the total swap
// usage is limited to two times the memory reservation of the container.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't provide it for these jobs.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Instance store swap volumes]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-store-swap-volumes.html
// [How do I allocate memory to work as swap space in an Amazon EC2 instance by using a swap file?]: http://aws.amazon.com/premiumsupport/knowledge-center/ec2-memory-swap-file/
Swappiness *int32
// The container path, mount options, and size (in MiB) of the tmpfs mount. This
// parameter maps to the --tmpfs option to [docker run].
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't provide this parameter for this resource type.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
Tmpfs []Tmpfs
noSmithyDocumentSerde
}
// Log configuration options to send to a custom log driver for the container.
type LogConfiguration struct {
// The log driver to use for the container. The valid values that are listed for
// this parameter are log drivers that the Amazon ECS container agent can
// communicate with by default.
//
// The supported log drivers are awslogs , fluentd , gelf , json-file , journald ,
// logentries , syslog , and splunk .
//
// Jobs that are running on Fargate resources are restricted to the awslogs and
// splunk log drivers.
//
// awslogs Specifies the Amazon CloudWatch Logs logging driver. For more
// information, see [Using the awslogs log driver]in the Batch User Guide and [Amazon CloudWatch Logs logging driver] in the Docker documentation.
//
// fluentd Specifies the Fluentd logging driver. For more information including
// usage and options, see [Fluentd logging driver]in the Docker documentation.
//
// gelf Specifies the Graylog Extended Format (GELF) logging driver. For more
// information including usage and options, see [Graylog Extended Format logging driver]in the Docker documentation.
//
// journald Specifies the journald logging driver. For more information including
// usage and options, see [Journald logging driver]in the Docker documentation.
//
// json-file Specifies the JSON file logging driver. For more information
// including usage and options, see [JSON File logging driver]in the Docker documentation.
//
// splunk Specifies the Splunk logging driver. For more information including
// usage and options, see [Splunk logging driver]in the Docker documentation.
//
// syslog Specifies the syslog logging driver. For more information including
// usage and options, see [Syslog logging driver]in the Docker documentation.
//
// If you have a custom driver that's not listed earlier that you want to work
// with the Amazon ECS container agent, you can fork the Amazon ECS container agent
// project that's [available on GitHub]and customize it to work with that driver. We encourage you to
// submit pull requests for changes that you want to have included. However, Amazon
// Web Services doesn't currently support running modified copies of this software.
//
// This parameter requires version 1.18 of the Docker Remote API or greater on
// your container instance. To check the Docker Remote API version on your
// container instance, log in to your container instance and run the following
// command: sudo docker version | grep "Server API version"
//
// [Journald logging driver]: https://docs.docker.com/config/containers/logging/journald/
// [Syslog logging driver]: https://docs.docker.com/config/containers/logging/syslog/
// [JSON File logging driver]: https://docs.docker.com/config/containers/logging/json-file/
// [Splunk logging driver]: https://docs.docker.com/config/containers/logging/splunk/
// [Amazon CloudWatch Logs logging driver]: https://docs.docker.com/config/containers/logging/awslogs/
// [available on GitHub]: https://github.com/aws/amazon-ecs-agent
// [Using the awslogs log driver]: https://docs.aws.amazon.com/batch/latest/userguide/using_awslogs.html
// [Fluentd logging driver]: https://docs.docker.com/config/containers/logging/fluentd/
// [Graylog Extended Format logging driver]: https://docs.docker.com/config/containers/logging/gelf/
//
// This member is required.
LogDriver LogDriver
// The configuration options to send to the log driver. This parameter requires
// version 1.19 of the Docker Remote API or greater on your container instance. To
// check the Docker Remote API version on your container instance, log in to your
// container instance and run the following command: sudo docker version | grep
// "Server API version"
Options map[string]string
// The secrets to pass to the log configuration. For more information, see [Specifying sensitive data] in the
// Batch User Guide.
//
// [Specifying sensitive data]: https://docs.aws.amazon.com/batch/latest/userguide/specifying-sensitive-data.html
SecretOptions []Secret
noSmithyDocumentSerde
}
// Details for a Docker volume mount point that's used in a job's container
// properties. This parameter maps to Volumes in the [Create a container] section of the Docker Remote
// API and the --volume option to docker run.
//
// [Create a container]: https://docs.docker.com/engine/api/v1.43/#tag/Container/operation/ContainerCreate
type MountPoint struct {
// The path on the container where the host volume is mounted.
ContainerPath *string
// If this value is true , the container has read-only access to the volume.
// Otherwise, the container can write to the volume. The default value is false .
ReadOnly *bool
// The name of the volume to mount.
SourceVolume *string
noSmithyDocumentSerde
}
// The network configuration for jobs that are running on Fargate resources. Jobs
// that are running on Amazon EC2 resources must not specify this parameter.
type NetworkConfiguration struct {
// Indicates whether the job has a public IP address. For a job that's running on
// Fargate resources in a private subnet to send outbound traffic to the internet
// (for example, to pull container images), the private subnet requires a NAT
// gateway be attached to route requests to the internet. For more information, see
// [Amazon ECS task networking]in the Amazon Elastic Container Service Developer Guide. The default value is "
// DISABLED ".
//
// [Amazon ECS task networking]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html
AssignPublicIp AssignPublicIp
noSmithyDocumentSerde
}
// An object that represents the elastic network interface for a multi-node
// parallel job node.
type NetworkInterface struct {
// The attachment ID for the network interface.
AttachmentId *string
// The private IPv6 address for the network interface.
Ipv6Address *string
// The private IPv4 address for the network interface.
PrivateIpv4Address *string
noSmithyDocumentSerde
}
// An object that represents the details of a multi-node parallel job node.
type NodeDetails struct {
// Specifies whether the current node is the main node for a multi-node parallel
// job.
IsMainNode *bool
// The node index for the node. Node index numbering starts at zero. This index is
// also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment
// variable.
NodeIndex *int32
noSmithyDocumentSerde
}
// An object that represents any node overrides to a job definition that's used in
// a [SubmitJob]API operation.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
// Don't provide it for these jobs. Rather, use containerOverrides instead.
//
// [SubmitJob]: https://docs.aws.amazon.com/batch/latest/APIReference/API_SubmitJob.html
type NodeOverrides struct {
// The node property overrides for the job.
NodePropertyOverrides []NodePropertyOverride
// The number of nodes to use with a multi-node parallel job. This value overrides
// the number of nodes that are specified in the job definition. To use this
// override, you must meet the following conditions:
//
// - There must be at least one node range in your job definition that has an
// open upper boundary, such as : or n: .
//
// - The lower boundary of the node range that's specified in the job definition
// must be fewer than the number of nodes specified in the override.
//
// - The main node index that's specified in the job definition must be fewer
// than the number of nodes specified in the override.
NumNodes *int32
noSmithyDocumentSerde
}
// An object that represents the node properties of a multi-node parallel job.
//
// Node properties can't be specified for Amazon EKS based job definitions.
type NodeProperties struct {
// Specifies the node index for the main node of a multi-node parallel job. This
// node index value must be fewer than the number of nodes.
//
// This member is required.
MainNode *int32
// A list of node ranges and their properties that are associated with a
// multi-node parallel job.
//
// This member is required.
NodeRangeProperties []NodeRangeProperty
// The number of nodes that are associated with a multi-node parallel job.
//
// This member is required.
NumNodes *int32
noSmithyDocumentSerde
}
// An object that represents the properties of a node that's associated with a
// multi-node parallel job.
type NodePropertiesSummary struct {
// Specifies whether the current node is the main node for a multi-node parallel
// job.
IsMainNode *bool
// The node index for the node. Node index numbering begins at zero. This index is
// also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment
// variable.
NodeIndex *int32
// The number of nodes that are associated with a multi-node parallel job.
NumNodes *int32
noSmithyDocumentSerde
}
// The object that represents any node overrides to a job definition that's used
// in a [SubmitJob]API operation.
//
// [SubmitJob]: https://docs.aws.amazon.com/batch/latest/APIReference/API_SubmitJob.html
type NodePropertyOverride struct {
// The range of nodes, using node index values, that's used to override. A range
// of 0:3 indicates nodes with index values of 0 through 3 . If the starting range
// value is omitted ( :n ), then 0 is used to start the range. If the ending range
// value is omitted ( n: ), then the highest possible node index is used to end the
// range.
//
// This member is required.
TargetNodes *string
// The overrides that are sent to a node range.
ContainerOverrides *ContainerOverrides
// An object that contains the properties that you want to replace for the
// existing Amazon ECS resources of a job.
EcsPropertiesOverride *EcsPropertiesOverride
// An object that contains the properties that you want to replace for the
// existing Amazon EKS resources of a job.
EksPropertiesOverride *EksPropertiesOverride
// An object that contains the instance types that you want to replace for the
// existing resources of a job.
InstanceTypes []string
noSmithyDocumentSerde
}
// This is an object that represents the properties of the node range for a
// multi-node parallel job.
type NodeRangeProperty struct {
// The range of nodes, using node index values. A range of 0:3 indicates nodes
// with index values of 0 through 3 . If the starting range value is omitted ( :n
// ), then 0 is used to start the range. If the ending range value is omitted ( n:
// ), then the highest possible node index is used to end the range. Your
// accumulative node ranges must account for all nodes ( 0:n ). You can nest node
// ranges (for example, 0:10 and 4:5 ). In this case, the 4:5 range properties
// override the 0:10 properties.
//
// This member is required.
TargetNodes *string
// The container details for the node range.
Container *ContainerProperties
// This is an object that represents the properties of the node range for a
// multi-node parallel job.
EcsProperties *EcsProperties
// This is an object that represents the properties of the node range for a
// multi-node parallel job.
EksProperties *EksProperties
// The instance types of the underlying host infrastructure of a multi-node
// parallel job.
//
// This parameter isn't applicable to jobs that are running on Fargate resources.
//
// In addition, this list object is currently limited to one element.
InstanceTypes []string
noSmithyDocumentSerde
}
// The repository credentials for private registry authentication.
type RepositoryCredentials struct {
// The Amazon Resource Name (ARN) of the secret containing the private repository
// credentials.
//
// This member is required.
CredentialsParameter *string
noSmithyDocumentSerde
}
// The type and amount of a resource to assign to a container. The supported
// resources include GPU , MEMORY , and VCPU .
type ResourceRequirement struct {
// The type of resource to assign to a container. The supported resources include
// GPU , MEMORY , and VCPU .
//
// This member is required.
Type ResourceType
// The quantity of the specified resource to reserve for the container. The values
// vary based on the type specified.
//
// type="GPU" The number of physical GPUs to reserve for the container. Make sure
// that the number of GPUs reserved for all containers in a job doesn't exceed the
// number of available GPUs on the compute resource that the job is launched on.
//
// GPUs aren't available for jobs that are running on Fargate resources.
//
// type="MEMORY" The memory hard limit (in MiB) present to the container. This
// parameter is supported for jobs that are running on Amazon EC2 resources. If
// your container attempts to exceed the memory specified, the container is
// terminated. This parameter maps to Memory in the [Create a container] section of the [Docker Remote API] and the
// --memory option to [docker run]. You must specify at least 4 MiB of memory for a job. This
// is required but can be specified in several places for multi-node parallel (MNP)
// jobs. It must be specified for each node at least once. This parameter maps to
// Memory in the [Create a container] section of the [Docker Remote API] and the --memory option to [docker run].
//
// If you're trying to maximize your resource utilization by providing your jobs
// as much memory as possible for a particular instance type, see [Memory management]in the Batch
// User Guide.
//
// For jobs that are running on Fargate resources, then value is the hard limit
// (in MiB), and must match one of the supported values and the VCPU values must
// be one of the values supported for that memory value.
//
// value = 512 VCPU = 0.25
//
// value = 1024 VCPU = 0.25 or 0.5
//
// value = 2048 VCPU = 0.25, 0.5, or 1
//
// value = 3072 VCPU = 0.5, or 1
//
// value = 4096 VCPU = 0.5, 1, or 2
//
// value = 5120, 6144, or 7168 VCPU = 1 or 2
//
// value = 8192 VCPU = 1, 2, or 4
//
// value = 9216, 10240, 11264, 12288, 13312, 14336, or 15360 VCPU = 2 or 4
//
// value = 16384 VCPU = 2, 4, or 8
//
// value = 17408, 18432, 19456, 21504, 22528, 23552, 25600, 26624, 27648, 29696,
// or 30720 VCPU = 4
//
// value = 20480, 24576, or 28672 VCPU = 4 or 8
//
// value = 36864, 45056, 53248, or 61440 VCPU = 8
//
// value = 32768, 40960, 49152, or 57344 VCPU = 8 or 16
//
// value = 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880 VCPU = 16
//
// type="VCPU" The number of vCPUs reserved for the container. This parameter maps
// to CpuShares in the [Create a container] section of the [Docker Remote API] and the --cpu-shares option to [docker run]. Each vCPU
// is equivalent to 1,024 CPU shares. For Amazon EC2 resources, you must specify at
// least one vCPU. This is required but can be specified in several places; it must
// be specified for each node at least once.
//
// The default for the Fargate On-Demand vCPU resource count quota is 6 vCPUs. For
// more information about Fargate quotas, see [Fargate quotas]in the Amazon Web Services General
// Reference.
//
// For jobs that are running on Fargate resources, then value must match one of
// the supported values and the MEMORY values must be one of the values supported
// for that VCPU value. The supported values are 0.25, 0.5, 1, 2, 4, 8, and 16
//
// value = 0.25 MEMORY = 512, 1024, or 2048
//
// value = 0.5 MEMORY = 1024, 2048, 3072, or 4096
//
// value = 1 MEMORY = 2048, 3072, 4096, 5120, 6144, 7168, or 8192
//
// value = 2 MEMORY = 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288,
// 13312, 14336, 15360, or 16384
//
// value = 4 MEMORY = 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384,
// 17408, 18432, 19456, 20480, 21504, 22528, 23552, 24576, 25600, 26624, 27648,
// 28672, 29696, or 30720
//
// value = 8 MEMORY = 16384, 20480, 24576, 28672, 32768, 36864, 40960, 45056,
// 49152, 53248, 57344, or 61440
//
// value = 16 MEMORY = 32768, 40960, 49152, 57344, 65536, 73728, 81920, 90112,
// 98304, 106496, 114688, or 122880
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Memory management]: https://docs.aws.amazon.com/batch/latest/userguide/memory-management.html
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
// [Fargate quotas]: https://docs.aws.amazon.com/general/latest/gr/ecs-service.html#service-quotas-fargate
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// The retry strategy that's associated with a job. For more information, see [Automated job retries] in
// the Batch User Guide.
//
// [Automated job retries]: https://docs.aws.amazon.com/batch/latest/userguide/job_retries.html
type RetryStrategy struct {
// The number of times to move a job to the RUNNABLE status. You can specify
// between 1 and 10 attempts. If the value of attempts is greater than one, the
// job is retried on failure the same number of attempts as the value.
Attempts *int32
// Array of up to 5 objects that specify the conditions where jobs are retried or
// failed. If this parameter is specified, then the attempts parameter must also
// be specified. If none of the listed conditions match, then the job is retried.
EvaluateOnExit []EvaluateOnExit
noSmithyDocumentSerde
}
// An object that represents the compute environment architecture for Batch jobs
//
// on Fargate.
type RuntimePlatform struct {
// The vCPU architecture. The default value is X86_64 . Valid values are X86_64
// and ARM64 .
//
// This parameter must be set to X86_64 for Windows containers.
//
// Fargate Spot is not supported for ARM64 and Windows-based containers on
// Fargate. A job queue will be blocked if a Fargate ARM64 or Windows job is
// submitted to a job queue with only Fargate Spot compute environments. However,
// you can attach both FARGATE and FARGATE_SPOT compute environments to the same
// job queue.
CpuArchitecture *string
// The operating system for the compute environment. Valid values are: LINUX
// (default), WINDOWS_SERVER_2019_CORE , WINDOWS_SERVER_2019_FULL ,
// WINDOWS_SERVER_2022_CORE , and WINDOWS_SERVER_2022_FULL .
//
// The following parameters can’t be set for Windows containers: linuxParameters ,
// privileged , user , ulimits , readonlyRootFilesystem , and
// efsVolumeConfiguration .
//
// The Batch Scheduler checks the compute environments that are attached to the
// job queue before registering a task definition with Fargate. In this scenario,
// the job queue is where the job is submitted. If the job requires a Windows
// container and the first compute environment is LINUX , the compute environment
// is skipped and the next compute environment is checked until a Windows-based
// compute environment is found.
//
// Fargate Spot is not supported for ARM64 and Windows-based containers on
// Fargate. A job queue will be blocked if a Fargate ARM64 or Windows job is
// submitted to a job queue with only Fargate Spot compute environments. However,
// you can attach both FARGATE and FARGATE_SPOT compute environments to the same
// job queue.
OperatingSystemFamily *string
noSmithyDocumentSerde
}
// An object that represents a scheduling policy.
type SchedulingPolicyDetail struct {
// The Amazon Resource Name (ARN) of the scheduling policy. An example is
// arn:aws:batch:us-east-1:123456789012:scheduling-policy/HighPriority .
//
// This member is required.
Arn *string
// The name of the scheduling policy.
//
// This member is required.
Name *string
// The fair share policy for the scheduling policy.
FairsharePolicy *FairsharePolicy
// The tags that you apply to the scheduling policy to categorize and organize
// your resources. Each tag consists of a key and an optional value. For more
// information, see [Tagging Amazon Web Services resources]in Amazon Web Services General Reference.
//
// [Tagging Amazon Web Services resources]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
Tags map[string]string
noSmithyDocumentSerde
}
// An object that contains the details of a scheduling policy that's returned in a
// ListSchedulingPolicy action.
type SchedulingPolicyListingDetail struct {
// Amazon Resource Name (ARN) of the scheduling policy.
//
// This member is required.
Arn *string
noSmithyDocumentSerde
}
// An object that represents the secret to expose to your container. Secrets can
// be exposed to a container in the following ways:
//
// - To inject sensitive data into your containers as environment variables, use
// the secrets container definition parameter.
//
// - To reference sensitive information in the log configuration of a container,
// use the secretOptions container definition parameter.
//
// For more information, see [Specifying sensitive data] in the Batch User Guide.
//
// [Specifying sensitive data]: https://docs.aws.amazon.com/batch/latest/userguide/specifying-sensitive-data.html
type Secret struct {
// The name of the secret.
//
// This member is required.
Name *string
// The secret to expose to the container. The supported values are either the full
// Amazon Resource Name (ARN) of the Secrets Manager secret or the full ARN of the
// parameter in the Amazon Web Services Systems Manager Parameter Store.
//
// If the Amazon Web Services Systems Manager Parameter Store parameter exists in
// the same Region as the job you're launching, then you can use either the full
// Amazon Resource Name (ARN) or name of the parameter. If the parameter exists in
// a different Region, then the full ARN must be specified.
//
// This member is required.
ValueFrom *string
noSmithyDocumentSerde
}
// Specifies the weights for the fair share identifiers for the fair share policy.
// Fair share identifiers that aren't included have a default weight of 1.0 .
type ShareAttributes struct {
// A fair share identifier or fair share identifier prefix. If the string ends
// with an asterisk (*), this entry specifies the weight factor to use for fair
// share identifiers that start with that prefix. The list of fair share
// identifiers in a fair share policy can't overlap. For example, you can't have
// one that specifies a shareIdentifier of UserA* and another that specifies a
// shareIdentifier of UserA-1 .
//
// There can be no more than 500 fair share identifiers active in a job queue.
//
// The string is limited to 255 alphanumeric characters, and can be followed by an
// asterisk (*).
//
// This member is required.
ShareIdentifier *string
// The weight factor for the fair share identifier. The default value is 1.0. A
// lower value has a higher priority for compute resources. For example, jobs that
// use a share identifier with a weight factor of 0.125 (1/8) get 8 times the
// compute resources of jobs that use a share identifier with a weight factor of 1.
//
// The smallest supported value is 0.0001, and the largest supported value is
// 999.9999.
WeightFactor *float32
noSmithyDocumentSerde
}
// A list of containers that this task depends on.
type TaskContainerDependency struct {
// The dependency condition of the container. The following are the available
// conditions and their behavior:
//
// - START - This condition emulates the behavior of links and volumes today. It
// validates that a dependent container is started before permitting other
// containers to start.
//
// - COMPLETE - This condition validates that a dependent container runs to
// completion (exits) before permitting other containers to start. This can be
// useful for nonessential containers that run a script and then exit. This
// condition can't be set on an essential container.
//
// - SUCCESS - This condition is the same as COMPLETE , but it also requires that
// the container exits with a zero status. This condition can't be set on an
// essential container.
Condition *string
// A unique identifier for the container.
ContainerName *string
noSmithyDocumentSerde
}
// The details for the container in this task attempt.
type TaskContainerDetails struct {
// The command that's passed to the container. This parameter maps to Cmd in the [Create a container]
// section of the [Docker Remote API]and the COMMAND parameter to [docker run]. For more information, see [https://docs.docker.com/engine/reference/builder/#cmd].
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
// [https://docs.docker.com/engine/reference/builder/#cmd]: https://docs.docker.com/engine/reference/builder/#cmd
Command []string
// A list of containers that this container depends on.
DependsOn []TaskContainerDependency
// The environment variables to pass to a container. This parameter maps to Env in
// the [Create a container]section of the [Docker Remote API] and the --env option to [docker run].
//
// We don't recommend using plaintext environment variables for sensitive
// information, such as credential data.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Environment []KeyValuePair
// If the essential parameter of a container is marked as true , and that container
// fails or stops for any reason, all other containers that are part of the task
// are stopped. If the essential parameter of a container is marked as false, its
// failure doesn't affect the rest of the containers in a task. If this parameter
// is omitted, a container is assumed to be essential.
//
// All jobs must have at least one essential container. If you have an application
// that's composed of multiple containers, group containers that are used for a
// common purpose into components, and separate the different components into
// multiple task definitions. For more information, see [Application Architecture]in the Amazon Elastic
// Container Service Developer Guide.
//
// [Application Architecture]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html
Essential *bool
// The exit code returned upon completion.
ExitCode *int32
// The image used to start a container. This string is passed directly to the
// Docker daemon. By default, images in the Docker Hub registry are available.
// Other repositories are specified with either repository-url/image:tag or
// repository-url/image@digest . Up to 255 letters (uppercase and lowercase),
// numbers, hyphens, underscores, colons, periods, forward slashes, and number
// signs are allowed. This parameter maps to Image in the [Create a container] section of the [Docker Remote API] and the
// IMAGE parameter of the [docker run].
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
Image *string
// Linux-specific modifications that are applied to the container, such as Linux
// kernel capabilities. For more information, see [KernelCapabilities].
//
// This parameter is not supported for Windows containers.
//
// [KernelCapabilities]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_KernelCapabilities.html
LinuxParameters *LinuxParameters
// The log configuration specification for the container.
//
// This parameter maps to LogConfig in the [Create a container] section of the [Docker Remote API] and the --log-driver
// option to [docker run].
//
// By default, containers use the same logging driver that the Docker daemon uses.
// However the container can use a different logging driver than the Docker daemon
// by specifying a log driver with this parameter in the container definition. To
// use a different logging driver for a container, the log system must be
// configured properly on the container instance (or on a different log server for
// remote logging options). For more information about the options for different
// supported log drivers, see [Configure logging drivers]in the Docker documentation.
//
// Amazon ECS currently supports a subset of the logging drivers available to the
// Docker daemon (shown in the LogConfiguration data type). Additional log drivers
// may be available in future releases of the Amazon ECS container agent.
//
// This parameter requires version 1.18 of the Docker Remote API or greater on
// your container instance. To check the Docker Remote API version on your
// container instance, log in to your container instance and run the following
// command: sudo docker version --format '{{.Server.APIVersion}}'
//
// The Amazon ECS container agent running on a container instance must register
// the logging drivers available on that instance with the
// ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on
// that instance can use these log configuration options. For more information, see
// [Amazon ECS container agent configuration]in the Amazon Elastic Container Service Developer Guide.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Configure logging drivers]: https://docs.docker.com/engine/admin/logging/overview/
// [Amazon ECS container agent configuration]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
LogConfiguration *LogConfiguration
// The name of the CloudWatch Logs log stream that's associated with the
// container. The log group for Batch jobs is /aws/batch/job. Each container
// attempt receives a log stream name when they reach the RUNNING status.
LogStreamName *string
// The mount points for data volumes in your container.
//
// This parameter maps to Volumes in the [Create a container] section of the [Docker Remote API] and the --volume option to [docker run].
//
// Windows containers can mount whole directories on the same drive as
// $env:ProgramData . Windows containers can't mount directories on a different
// drive, and mount point can't be across drives.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
MountPoints []MountPoint
// The name of a container.
Name *string
// The network interfaces that are associated with the job.
NetworkInterfaces []NetworkInterface
// When this parameter is true , the container is given elevated privileges on the
// host container instance (similar to the root user). This parameter maps to
// Privileged in the [Create a container] section of the [Docker Remote API] and the --privileged option to [docker run].
//
// This parameter is not supported for Windows containers or tasks run on Fargate.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
Privileged *bool
// When this parameter is true, the container is given read-only access to its
// root file system. This parameter maps to ReadonlyRootfs in the [Create a container] section of the [Docker Remote API]
// and the --read-only option to [docker run].
//
// This parameter is not supported for Windows containers.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
ReadonlyRootFilesystem *bool
// A short (255 max characters) human-readable string to provide additional
// details for a running or stopped container.
Reason *string
// The private repository authentication credentials to use.
RepositoryCredentials *RepositoryCredentials
// The type and amount of a resource to assign to a container. The only supported
// resource is a GPU.
ResourceRequirements []ResourceRequirement
// The secrets to pass to the container. For more information, see [Specifying Sensitive Data] in the Amazon
// Elastic Container Service Developer Guide.
//
// [Specifying Sensitive Data]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html
Secrets []Secret
// A list of ulimits to set in the container. If a ulimit value is specified in a
// task definition, it overrides the default values set by Docker. This parameter
// maps to Ulimits in the [Create a container] section of the [Docker Remote API] and the --ulimit option to [docker run].
//
// Amazon ECS tasks hosted on Fargate use the default resource limit values set by
// the operating system with the exception of the nofile resource limit parameter
// which Fargate overrides. The nofile resource limit sets a restriction on the
// number of open files that a container can use. The default nofile soft limit is
// 1024 and the default hard limit is 65535 .
//
// This parameter requires version 1.18 of the Docker Remote API or greater on
// your container instance. To check the Docker Remote API version on your
// container instance, log in to your container instance and run the following
// command: sudo docker version --format '{{.Server.APIVersion}}'
//
// This parameter is not supported for Windows containers.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
Ulimits []Ulimit
// The user to use inside the container. This parameter maps to User in the Create
// a container section of the Docker Remote API and the --user option to docker
// run.
//
// When running tasks using the host network mode, don't run containers using the
// root user (UID 0) . We recommend using a non-root user for better security.
//
// You can specify the user using the following formats. If specifying a UID or
// GID, you must specify it as a positive integer.
//
// - user
//
// - user:group
//
// - uid
//
// - uid:gid
//
// - user:gi
//
// - uid:group
//
// This parameter is not supported for Windows containers.
User *string
noSmithyDocumentSerde
}
// The overrides that should be sent to a container.
//
// For information about using Batch overrides when you connect event sources to
// targets, see [BatchContainerOverrides].
//
// [BatchContainerOverrides]: https://docs.aws.amazon.com/eventbridge/latest/pipes-reference/API_BatchContainerOverrides.html
type TaskContainerOverrides struct {
// The command to send to the container that overrides the default command from
// the Docker image or the job definition.
//
// This parameter can't contain an empty string.
Command []string
// The environment variables to send to the container. You can add new environment
// variables, which are added to the container at launch, or you can override the
// existing environment variables from the Docker image or the job definition.
//
// Environment variables cannot start with AWS_BATCH . This naming convention is
// reserved for variables that Batch sets.
Environment []KeyValuePair
// A pointer to the container that you want to override. The container's name
// provides a unique identifier for the container being used.
Name *string
// The type and amount of resources to assign to a container. This overrides the
// settings in the job definition. The supported resources include GPU , MEMORY ,
// and VCPU .
ResourceRequirements []ResourceRequirement
noSmithyDocumentSerde
}
// Container properties are used for Amazon ECS-based job definitions. These
// properties to describe the container that's launched as part of a job.
type TaskContainerProperties struct {
// The image used to start a container. This string is passed directly to the
// Docker daemon. By default, images in the Docker Hub registry are available.
// Other repositories are specified with either repository-url/image:tag or
// repository-url/image@digest . Up to 255 letters (uppercase and lowercase),
// numbers, hyphens, underscores, colons, periods, forward slashes, and number
// signs are allowed. This parameter maps to Image in the [Create a container] section of the [Docker Remote API] and the
// IMAGE parameter of the [docker run].
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
//
// This member is required.
Image *string
// The command that's passed to the container. This parameter maps to Cmd in the [Create a container]
// section of the [Docker Remote API]and the COMMAND parameter to [docker run]. For more information, see [Dockerfile reference: CMD].
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Dockerfile reference: CMD]: https://docs.docker.com/engine/reference/builder/#cmd
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Command []string
// A list of containers that this container depends on.
DependsOn []TaskContainerDependency
// The environment variables to pass to a container. This parameter maps to Env
// inthe [Create a container]section of the [Docker Remote API] and the --env parameter to [docker run].
//
// We don't recommend using plaintext environment variables for sensitive
// information, such as credential data.
//
// Environment variables cannot start with AWS_BATCH . This naming convention is
// reserved for variables that Batch sets.
//
// [docker run]: https://docs.docker.com/engine/reference/run/
// [Create a container]: https://docs.docker.com/engine/api/v1.23/#create-a-container
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.23/
Environment []KeyValuePair
// If the essential parameter of a container is marked as true , and that container
// fails or stops for any reason, all other containers that are part of the task
// are stopped. If the essential parameter of a container is marked as false, its
// failure doesn't affect the rest of the containers in a task. If this parameter
// is omitted, a container is assumed to be essential.
//
// All jobs must have at least one essential container. If you have an application
// that's composed of multiple containers, group containers that are used for a
// common purpose into components, and separate the different components into
// multiple task definitions. For more information, see [Application Architecture]in the Amazon Elastic
// Container Service Developer Guide.
//
// [Application Architecture]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html
Essential *bool
// Linux-specific modifications that are applied to the container, such as Linux
// kernel capabilities. For more information, see [KernelCapabilities].
//
// [KernelCapabilities]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_KernelCapabilities.html
LinuxParameters *LinuxParameters
// The log configuration specification for the container.
//
// This parameter maps to LogConfig in the [Create a container] section of the [Docker Remote API] and the --log-driver
// option to [docker run].
//
// By default, containers use the same logging driver that the Docker daemon uses.
// However the container can use a different logging driver than the Docker daemon
// by specifying a log driver with this parameter in the container definition. To
// use a different logging driver for a container, the log system must be
// configured properly on the container instance (or on a different log server for
// remote logging options). For more information about the options for different
// supported log drivers, see [Configure logging drivers]in the Docker documentation.
//
// Amazon ECS currently supports a subset of the logging drivers available to the
// Docker daemon (shown in the LogConfiguration data type). Additional log drivers
// may be available in future releases of the Amazon ECS container agent.
//
// This parameter requires version 1.18 of the Docker Remote API or greater on
// your container instance. To check the Docker Remote API version on your
// container instance, log in to your container instance and run the following
// command: sudo docker version --format '{{.Server.APIVersion}}'
//
// The Amazon ECS container agent running on a container instance must register
// the logging drivers available on that instance with the
// ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on
// that instance can use these log configuration options. For more information, see
// [Amazon ECS container agent configuration]in the Amazon Elastic Container Service Developer Guide.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Configure logging drivers]: https://docs.docker.com/engine/admin/logging/overview/
// [Amazon ECS container agent configuration]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
LogConfiguration *LogConfiguration
// The mount points for data volumes in your container.
//
// This parameter maps to Volumes in the [Create a container] section of the [Docker Remote API] and the --volume option to [docker run].
//
// Windows containers can mount whole directories on the same drive as
// $env:ProgramData . Windows containers can't mount directories on a different
// drive, and mount point can't be across drives.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
MountPoints []MountPoint
// The name of a container. The name can be used as a unique identifier to target
// your dependsOn and Overrides objects.
Name *string
// When this parameter is true , the container is given elevated privileges on the
// host container instance (similar to the root user). This parameter maps to
// Privileged in the [Create a container] section of the [Docker Remote API] and the --privileged option to [docker run].
//
// This parameter is not supported for Windows containers or tasks run on Fargate.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
Privileged *bool
// When this parameter is true, the container is given read-only access to its
// root file system. This parameter maps to ReadonlyRootfs in the [Create a container] section of the [Docker Remote API]
// and the --read-only option to [docker run].
//
// This parameter is not supported for Windows containers.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
ReadonlyRootFilesystem *bool
// The private repository authentication credentials to use.
RepositoryCredentials *RepositoryCredentials
// The type and amount of a resource to assign to a container. The only supported
// resource is a GPU.
ResourceRequirements []ResourceRequirement
// The secrets to pass to the container. For more information, see [Specifying Sensitive Data] in the Amazon
// Elastic Container Service Developer Guide.
//
// [Specifying Sensitive Data]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html
Secrets []Secret
// A list of ulimits to set in the container. If a ulimit value is specified in a
// task definition, it overrides the default values set by Docker. This parameter
// maps to Ulimits in the [Create a container] section of the [Docker Remote API] and the --ulimit option to [docker run].
//
// Amazon ECS tasks hosted on Fargate use the default resource limit values set by
// the operating system with the exception of the nofile resource limit parameter
// which Fargate overrides. The nofile resource limit sets a restriction on the
// number of open files that a container can use. The default nofile soft limit is
// 1024 and the default hard limit is 65535 .
//
// This parameter requires version 1.18 of the Docker Remote API or greater on
// your container instance. To check the Docker Remote API version on your
// container instance, log in to your container instance and run the following
// command: sudo docker version --format '{{.Server.APIVersion}}'
//
// This parameter is not supported for Windows containers.
//
// [docker run]: https://docs.docker.com/engine/reference/run/#security-configuration
// [Create a container]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
// [Docker Remote API]: https://docs.docker.com/engine/api/v1.35/
Ulimits []Ulimit
// The user to use inside the container. This parameter maps to User in the Create
// a container section of the Docker Remote API and the --user option to docker
// run.
//
// When running tasks using the host network mode, don't run containers using the
// root user (UID 0) . We recommend using a non-root user for better security.
//
// You can specify the user using the following formats. If specifying a UID or
// GID, you must specify it as a positive integer.
//
// - user
//
// - user:group
//
// - uid
//
// - uid:gid
//
// - user:gi
//
// - uid:group
//
// This parameter is not supported for Windows containers.
User *string
noSmithyDocumentSerde
}
// An object that contains overrides for the task definition of a job.
type TaskPropertiesOverride struct {
// The overrides for the container definition of a job.
Containers []TaskContainerOverrides
noSmithyDocumentSerde
}
// The container path, mount options, and size of the tmpfs mount.
//
// This object isn't applicable to jobs that are running on Fargate resources.
type Tmpfs struct {
// The absolute file path in the container where the tmpfs volume is mounted.
//
// This member is required.
ContainerPath *string
// The size (in MiB) of the tmpfs volume.
//
// This member is required.
Size *int32
// The list of tmpfs volume mount options.
//
// Valid values: " defaults " | " ro " | " rw " | " suid " | " nosuid " | " dev " |
// " nodev " | " exec " | " noexec " | " sync " | " async " | " dirsync " | "
// remount " | " mand " | " nomand " | " atime " | " noatime " | " diratime " | "
// nodiratime " | " bind " | " rbind" | "unbindable" | "runbindable" | "private" |
// "rprivate" | "shared" | "rshared" | "slave" | "rslave" | "relatime " | "
// norelatime " | " strictatime " | " nostrictatime " | " mode " | " uid " | " gid
// " | " nr_inodes " | " nr_blocks " | " mpol "
MountOptions []string
noSmithyDocumentSerde
}
// The ulimit settings to pass to the container. For more information, see [Ulimit].
//
// This object isn't applicable to jobs that are running on Fargate resources.
//
// [Ulimit]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_Ulimit.html
type Ulimit struct {
// The hard limit for the ulimit type.
//
// This member is required.
HardLimit *int32
// The type of the ulimit . Valid values are: core | cpu | data | fsize | locks |
// memlock | msgqueue | nice | nofile | nproc | rss | rtprio | rttime | sigpending
// | stack .
//
// This member is required.
Name *string
// The soft limit for the ulimit type.
//
// This member is required.
SoftLimit *int32
noSmithyDocumentSerde
}
// Specifies the infrastructure update policy for the compute environment. For
// more information about infrastructure updates, see [Updating compute environments]in the Batch User Guide.
//
// [Updating compute environments]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
type UpdatePolicy struct {
// Specifies the job timeout (in minutes) when the compute environment
// infrastructure is updated. The default value is 30.
JobExecutionTimeoutMinutes *int64
// Specifies whether jobs are automatically terminated when the computer
// environment infrastructure is updated. The default value is false .
TerminateJobsOnUpdate *bool
noSmithyDocumentSerde
}
// A data volume that's used in a job's container properties.
type Volume struct {
// This parameter is specified when you're using an Amazon Elastic File System
// file system for job storage. Jobs that are running on Fargate resources must
// specify a platformVersion of at least 1.4.0 .
EfsVolumeConfiguration *EFSVolumeConfiguration
// The contents of the host parameter determine whether your data volume persists
// on the host container instance and where it's stored. If the host parameter is
// empty, then the Docker daemon assigns a host path for your data volume. However,
// the data isn't guaranteed to persist after the containers that are associated
// with it stop running.
//
// This parameter isn't applicable to jobs that are running on Fargate resources
// and shouldn't be provided.
Host *Host
// The name of the volume. It can be up to 255 characters long. It can contain
// uppercase and lowercase letters, numbers, hyphens (-), and underscores (_). This
// name is referenced in the sourceVolume parameter of container definition
// mountPoints .
Name *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|