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
|
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package ecs provides a client for Amazon EC2 Container Service.
package ecs
import (
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opCreateCluster = "CreateCluster"
// CreateClusterRequest generates a request for the CreateCluster operation.
func (c *ECS) CreateClusterRequest(input *CreateClusterInput) (req *request.Request, output *CreateClusterOutput) {
op := &request.Operation{
Name: opCreateCluster,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateClusterInput{}
}
req = c.newRequest(op, input, output)
output = &CreateClusterOutput{}
req.Data = output
return
}
// Creates a new Amazon ECS cluster. By default, your account receives a default
// cluster when you launch your first container instance. However, you can create
// your own cluster with a unique name with the CreateCluster action.
func (c *ECS) CreateCluster(input *CreateClusterInput) (*CreateClusterOutput, error) {
req, out := c.CreateClusterRequest(input)
err := req.Send()
return out, err
}
const opCreateService = "CreateService"
// CreateServiceRequest generates a request for the CreateService operation.
func (c *ECS) CreateServiceRequest(input *CreateServiceInput) (req *request.Request, output *CreateServiceOutput) {
op := &request.Operation{
Name: opCreateService,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateServiceInput{}
}
req = c.newRequest(op, input, output)
output = &CreateServiceOutput{}
req.Data = output
return
}
// Runs and maintains a desired number of tasks from a specified task definition.
// If the number of tasks running in a service drops below desiredCount, Amazon
// ECS spawns another instantiation of the task in the specified cluster. To
// update an existing service, see UpdateService.
//
// You can optionally specify a deployment configuration for your service.
// During a deployment (which is triggered by changing the task definition of
// a service with an UpdateService operation), the service scheduler uses the
// minimumHealthyPercent and maximumPercent parameters to determine the deployment
// strategy.
//
// If the minimumHealthyPercent is below 100%, the scheduler can ignore the
// desiredCount temporarily during a deployment. For example, if your service
// has a desiredCount of four tasks, a minimumHealthyPercent of 50% allows the
// scheduler to stop two existing tasks before starting two new tasks. Tasks
// for services that do not use a load balancer are considered healthy if they
// are in the RUNNING state; tasks for services that do use a load balancer
// are considered healthy if they are in the RUNNING state and the container
// instance it is hosted on is reported as healthy by the load balancer. The
// default value for minimumHealthyPercent is 50% in the console and 100% for
// the AWS CLI, the AWS SDKs, and the APIs.
//
// The maximumPercent parameter represents an upper limit on the number of
// running tasks during a deployment, which enables you to define the deployment
// batch size. For example, if your service has a desiredCount of four tasks,
// a maximumPercent value of 200% starts four new tasks before stopping the
// four older tasks (provided that the cluster resources required to do this
// are available). The default value for maximumPercent is 200%.
//
// When the service scheduler launches new tasks, it attempts to balance them
// across the Availability Zones in your cluster with the following logic:
//
// Determine which of the container instances in your cluster can support
// your service's task definition (for example, they have the required CPU,
// memory, ports, and container instance attributes).
//
// Sort the valid container instances by the fewest number of running tasks
// for this service in the same Availability Zone as the instance. For example,
// if zone A has one running service task and zones B and C each have zero,
// valid container instances in either zone B or C are considered optimal for
// placement.
//
// Place the new service task on a valid container instance in an optimal
// Availability Zone (based on the previous steps), favoring container instances
// with the fewest number of running tasks for this service.
func (c *ECS) CreateService(input *CreateServiceInput) (*CreateServiceOutput, error) {
req, out := c.CreateServiceRequest(input)
err := req.Send()
return out, err
}
const opDeleteCluster = "DeleteCluster"
// DeleteClusterRequest generates a request for the DeleteCluster operation.
func (c *ECS) DeleteClusterRequest(input *DeleteClusterInput) (req *request.Request, output *DeleteClusterOutput) {
op := &request.Operation{
Name: opDeleteCluster,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteClusterInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteClusterOutput{}
req.Data = output
return
}
// Deletes the specified cluster. You must deregister all container instances
// from this cluster before you may delete it. You can list the container instances
// in a cluster with ListContainerInstances and deregister them with DeregisterContainerInstance.
func (c *ECS) DeleteCluster(input *DeleteClusterInput) (*DeleteClusterOutput, error) {
req, out := c.DeleteClusterRequest(input)
err := req.Send()
return out, err
}
const opDeleteService = "DeleteService"
// DeleteServiceRequest generates a request for the DeleteService operation.
func (c *ECS) DeleteServiceRequest(input *DeleteServiceInput) (req *request.Request, output *DeleteServiceOutput) {
op := &request.Operation{
Name: opDeleteService,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteServiceInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteServiceOutput{}
req.Data = output
return
}
// Deletes a specified service within a cluster. You can delete a service if
// you have no running tasks in it and the desired task count is zero. If the
// service is actively maintaining tasks, you cannot delete it, and you must
// update the service to a desired task count of zero. For more information,
// see UpdateService.
//
// When you delete a service, if there are still running tasks that require
// cleanup, the service status moves from ACTIVE to DRAINING, and the service
// is no longer visible in the console or in ListServices API operations. After
// the tasks have stopped, then the service status moves from DRAINING to INACTIVE.
// Services in the DRAINING or INACTIVE status can still be viewed with DescribeServices
// API operations; however, in the future, INACTIVE services may be cleaned
// up and purged from Amazon ECS record keeping, and DescribeServices API operations
// on those services will return a ServiceNotFoundException error.
func (c *ECS) DeleteService(input *DeleteServiceInput) (*DeleteServiceOutput, error) {
req, out := c.DeleteServiceRequest(input)
err := req.Send()
return out, err
}
const opDeregisterContainerInstance = "DeregisterContainerInstance"
// DeregisterContainerInstanceRequest generates a request for the DeregisterContainerInstance operation.
func (c *ECS) DeregisterContainerInstanceRequest(input *DeregisterContainerInstanceInput) (req *request.Request, output *DeregisterContainerInstanceOutput) {
op := &request.Operation{
Name: opDeregisterContainerInstance,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeregisterContainerInstanceInput{}
}
req = c.newRequest(op, input, output)
output = &DeregisterContainerInstanceOutput{}
req.Data = output
return
}
// Deregisters an Amazon ECS container instance from the specified cluster.
// This instance is no longer available to run tasks.
//
// If you intend to use the container instance for some other purpose after
// deregistration, you should stop all of the tasks running on the container
// instance before deregistration to avoid any orphaned tasks from consuming
// resources.
//
// Deregistering a container instance removes the instance from a cluster,
// but it does not terminate the EC2 instance; if you are finished using the
// instance, be sure to terminate it in the Amazon EC2 console to stop billing.
//
// When you terminate a container instance, it is automatically deregistered
// from your cluster.
func (c *ECS) DeregisterContainerInstance(input *DeregisterContainerInstanceInput) (*DeregisterContainerInstanceOutput, error) {
req, out := c.DeregisterContainerInstanceRequest(input)
err := req.Send()
return out, err
}
const opDeregisterTaskDefinition = "DeregisterTaskDefinition"
// DeregisterTaskDefinitionRequest generates a request for the DeregisterTaskDefinition operation.
func (c *ECS) DeregisterTaskDefinitionRequest(input *DeregisterTaskDefinitionInput) (req *request.Request, output *DeregisterTaskDefinitionOutput) {
op := &request.Operation{
Name: opDeregisterTaskDefinition,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeregisterTaskDefinitionInput{}
}
req = c.newRequest(op, input, output)
output = &DeregisterTaskDefinitionOutput{}
req.Data = output
return
}
// Deregisters the specified task definition by family and revision. Upon deregistration,
// the task definition is marked as INACTIVE. Existing tasks and services that
// reference an INACTIVE task definition continue to run without disruption.
// Existing services that reference an INACTIVE task definition can still scale
// up or down by modifying the service's desired count.
//
// You cannot use an INACTIVE task definition to run new tasks or create new
// services, and you cannot update an existing service to reference an INACTIVE
// task definition (although there may be up to a 10 minute window following
// deregistration where these restrictions have not yet taken effect).
func (c *ECS) DeregisterTaskDefinition(input *DeregisterTaskDefinitionInput) (*DeregisterTaskDefinitionOutput, error) {
req, out := c.DeregisterTaskDefinitionRequest(input)
err := req.Send()
return out, err
}
const opDescribeClusters = "DescribeClusters"
// DescribeClustersRequest generates a request for the DescribeClusters operation.
func (c *ECS) DescribeClustersRequest(input *DescribeClustersInput) (req *request.Request, output *DescribeClustersOutput) {
op := &request.Operation{
Name: opDescribeClusters,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeClustersInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeClustersOutput{}
req.Data = output
return
}
// Describes one or more of your clusters.
func (c *ECS) DescribeClusters(input *DescribeClustersInput) (*DescribeClustersOutput, error) {
req, out := c.DescribeClustersRequest(input)
err := req.Send()
return out, err
}
const opDescribeContainerInstances = "DescribeContainerInstances"
// DescribeContainerInstancesRequest generates a request for the DescribeContainerInstances operation.
func (c *ECS) DescribeContainerInstancesRequest(input *DescribeContainerInstancesInput) (req *request.Request, output *DescribeContainerInstancesOutput) {
op := &request.Operation{
Name: opDescribeContainerInstances,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeContainerInstancesInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeContainerInstancesOutput{}
req.Data = output
return
}
// Describes Amazon EC2 Container Service container instances. Returns metadata
// about registered and remaining resources on each container instance requested.
func (c *ECS) DescribeContainerInstances(input *DescribeContainerInstancesInput) (*DescribeContainerInstancesOutput, error) {
req, out := c.DescribeContainerInstancesRequest(input)
err := req.Send()
return out, err
}
const opDescribeServices = "DescribeServices"
// DescribeServicesRequest generates a request for the DescribeServices operation.
func (c *ECS) DescribeServicesRequest(input *DescribeServicesInput) (req *request.Request, output *DescribeServicesOutput) {
op := &request.Operation{
Name: opDescribeServices,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeServicesInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeServicesOutput{}
req.Data = output
return
}
// Describes the specified services running in your cluster.
func (c *ECS) DescribeServices(input *DescribeServicesInput) (*DescribeServicesOutput, error) {
req, out := c.DescribeServicesRequest(input)
err := req.Send()
return out, err
}
const opDescribeTaskDefinition = "DescribeTaskDefinition"
// DescribeTaskDefinitionRequest generates a request for the DescribeTaskDefinition operation.
func (c *ECS) DescribeTaskDefinitionRequest(input *DescribeTaskDefinitionInput) (req *request.Request, output *DescribeTaskDefinitionOutput) {
op := &request.Operation{
Name: opDescribeTaskDefinition,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeTaskDefinitionInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeTaskDefinitionOutput{}
req.Data = output
return
}
// Describes a task definition. You can specify a family and revision to find
// information about a specific task definition, or you can simply specify the
// family to find the latest ACTIVE revision in that family.
//
// You can only describe INACTIVE task definitions while an active task or
// service references them.
func (c *ECS) DescribeTaskDefinition(input *DescribeTaskDefinitionInput) (*DescribeTaskDefinitionOutput, error) {
req, out := c.DescribeTaskDefinitionRequest(input)
err := req.Send()
return out, err
}
const opDescribeTasks = "DescribeTasks"
// DescribeTasksRequest generates a request for the DescribeTasks operation.
func (c *ECS) DescribeTasksRequest(input *DescribeTasksInput) (req *request.Request, output *DescribeTasksOutput) {
op := &request.Operation{
Name: opDescribeTasks,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeTasksInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeTasksOutput{}
req.Data = output
return
}
// Describes a specified task or tasks.
func (c *ECS) DescribeTasks(input *DescribeTasksInput) (*DescribeTasksOutput, error) {
req, out := c.DescribeTasksRequest(input)
err := req.Send()
return out, err
}
const opDiscoverPollEndpoint = "DiscoverPollEndpoint"
// DiscoverPollEndpointRequest generates a request for the DiscoverPollEndpoint operation.
func (c *ECS) DiscoverPollEndpointRequest(input *DiscoverPollEndpointInput) (req *request.Request, output *DiscoverPollEndpointOutput) {
op := &request.Operation{
Name: opDiscoverPollEndpoint,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DiscoverPollEndpointInput{}
}
req = c.newRequest(op, input, output)
output = &DiscoverPollEndpointOutput{}
req.Data = output
return
}
// This action is only used by the Amazon EC2 Container Service agent, and it
// is not intended for use outside of the agent.
//
// Returns an endpoint for the Amazon EC2 Container Service agent to poll for
// updates.
func (c *ECS) DiscoverPollEndpoint(input *DiscoverPollEndpointInput) (*DiscoverPollEndpointOutput, error) {
req, out := c.DiscoverPollEndpointRequest(input)
err := req.Send()
return out, err
}
const opListClusters = "ListClusters"
// ListClustersRequest generates a request for the ListClusters operation.
func (c *ECS) ListClustersRequest(input *ListClustersInput) (req *request.Request, output *ListClustersOutput) {
op := &request.Operation{
Name: opListClusters,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &ListClustersInput{}
}
req = c.newRequest(op, input, output)
output = &ListClustersOutput{}
req.Data = output
return
}
// Returns a list of existing clusters.
func (c *ECS) ListClusters(input *ListClustersInput) (*ListClustersOutput, error) {
req, out := c.ListClustersRequest(input)
err := req.Send()
return out, err
}
func (c *ECS) ListClustersPages(input *ListClustersInput, fn func(p *ListClustersOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListClustersRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListClustersOutput), lastPage)
})
}
const opListContainerInstances = "ListContainerInstances"
// ListContainerInstancesRequest generates a request for the ListContainerInstances operation.
func (c *ECS) ListContainerInstancesRequest(input *ListContainerInstancesInput) (req *request.Request, output *ListContainerInstancesOutput) {
op := &request.Operation{
Name: opListContainerInstances,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &ListContainerInstancesInput{}
}
req = c.newRequest(op, input, output)
output = &ListContainerInstancesOutput{}
req.Data = output
return
}
// Returns a list of container instances in a specified cluster.
func (c *ECS) ListContainerInstances(input *ListContainerInstancesInput) (*ListContainerInstancesOutput, error) {
req, out := c.ListContainerInstancesRequest(input)
err := req.Send()
return out, err
}
func (c *ECS) ListContainerInstancesPages(input *ListContainerInstancesInput, fn func(p *ListContainerInstancesOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListContainerInstancesRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListContainerInstancesOutput), lastPage)
})
}
const opListServices = "ListServices"
// ListServicesRequest generates a request for the ListServices operation.
func (c *ECS) ListServicesRequest(input *ListServicesInput) (req *request.Request, output *ListServicesOutput) {
op := &request.Operation{
Name: opListServices,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &ListServicesInput{}
}
req = c.newRequest(op, input, output)
output = &ListServicesOutput{}
req.Data = output
return
}
// Lists the services that are running in a specified cluster.
func (c *ECS) ListServices(input *ListServicesInput) (*ListServicesOutput, error) {
req, out := c.ListServicesRequest(input)
err := req.Send()
return out, err
}
func (c *ECS) ListServicesPages(input *ListServicesInput, fn func(p *ListServicesOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListServicesRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListServicesOutput), lastPage)
})
}
const opListTaskDefinitionFamilies = "ListTaskDefinitionFamilies"
// ListTaskDefinitionFamiliesRequest generates a request for the ListTaskDefinitionFamilies operation.
func (c *ECS) ListTaskDefinitionFamiliesRequest(input *ListTaskDefinitionFamiliesInput) (req *request.Request, output *ListTaskDefinitionFamiliesOutput) {
op := &request.Operation{
Name: opListTaskDefinitionFamilies,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &ListTaskDefinitionFamiliesInput{}
}
req = c.newRequest(op, input, output)
output = &ListTaskDefinitionFamiliesOutput{}
req.Data = output
return
}
// Returns a list of task definition families that are registered to your account
// (which may include task definition families that no longer have any ACTIVE
// task definitions). You can filter the results with the familyPrefix parameter.
func (c *ECS) ListTaskDefinitionFamilies(input *ListTaskDefinitionFamiliesInput) (*ListTaskDefinitionFamiliesOutput, error) {
req, out := c.ListTaskDefinitionFamiliesRequest(input)
err := req.Send()
return out, err
}
func (c *ECS) ListTaskDefinitionFamiliesPages(input *ListTaskDefinitionFamiliesInput, fn func(p *ListTaskDefinitionFamiliesOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListTaskDefinitionFamiliesRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListTaskDefinitionFamiliesOutput), lastPage)
})
}
const opListTaskDefinitions = "ListTaskDefinitions"
// ListTaskDefinitionsRequest generates a request for the ListTaskDefinitions operation.
func (c *ECS) ListTaskDefinitionsRequest(input *ListTaskDefinitionsInput) (req *request.Request, output *ListTaskDefinitionsOutput) {
op := &request.Operation{
Name: opListTaskDefinitions,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &ListTaskDefinitionsInput{}
}
req = c.newRequest(op, input, output)
output = &ListTaskDefinitionsOutput{}
req.Data = output
return
}
// Returns a list of task definitions that are registered to your account. You
// can filter the results by family name with the familyPrefix parameter or
// by status with the status parameter.
func (c *ECS) ListTaskDefinitions(input *ListTaskDefinitionsInput) (*ListTaskDefinitionsOutput, error) {
req, out := c.ListTaskDefinitionsRequest(input)
err := req.Send()
return out, err
}
func (c *ECS) ListTaskDefinitionsPages(input *ListTaskDefinitionsInput, fn func(p *ListTaskDefinitionsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListTaskDefinitionsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListTaskDefinitionsOutput), lastPage)
})
}
const opListTasks = "ListTasks"
// ListTasksRequest generates a request for the ListTasks operation.
func (c *ECS) ListTasksRequest(input *ListTasksInput) (req *request.Request, output *ListTasksOutput) {
op := &request.Operation{
Name: opListTasks,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "maxResults",
TruncationToken: "",
},
}
if input == nil {
input = &ListTasksInput{}
}
req = c.newRequest(op, input, output)
output = &ListTasksOutput{}
req.Data = output
return
}
// Returns a list of tasks for a specified cluster. You can filter the results
// by family name, by a particular container instance, or by the desired status
// of the task with the family, containerInstance, and desiredStatus parameters.
func (c *ECS) ListTasks(input *ListTasksInput) (*ListTasksOutput, error) {
req, out := c.ListTasksRequest(input)
err := req.Send()
return out, err
}
func (c *ECS) ListTasksPages(input *ListTasksInput, fn func(p *ListTasksOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListTasksRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListTasksOutput), lastPage)
})
}
const opRegisterContainerInstance = "RegisterContainerInstance"
// RegisterContainerInstanceRequest generates a request for the RegisterContainerInstance operation.
func (c *ECS) RegisterContainerInstanceRequest(input *RegisterContainerInstanceInput) (req *request.Request, output *RegisterContainerInstanceOutput) {
op := &request.Operation{
Name: opRegisterContainerInstance,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RegisterContainerInstanceInput{}
}
req = c.newRequest(op, input, output)
output = &RegisterContainerInstanceOutput{}
req.Data = output
return
}
// This action is only used by the Amazon EC2 Container Service agent, and it
// is not intended for use outside of the agent.
//
// Registers an EC2 instance into the specified cluster. This instance becomes
// available to place containers on.
func (c *ECS) RegisterContainerInstance(input *RegisterContainerInstanceInput) (*RegisterContainerInstanceOutput, error) {
req, out := c.RegisterContainerInstanceRequest(input)
err := req.Send()
return out, err
}
const opRegisterTaskDefinition = "RegisterTaskDefinition"
// RegisterTaskDefinitionRequest generates a request for the RegisterTaskDefinition operation.
func (c *ECS) RegisterTaskDefinitionRequest(input *RegisterTaskDefinitionInput) (req *request.Request, output *RegisterTaskDefinitionOutput) {
op := &request.Operation{
Name: opRegisterTaskDefinition,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RegisterTaskDefinitionInput{}
}
req = c.newRequest(op, input, output)
output = &RegisterTaskDefinitionOutput{}
req.Data = output
return
}
// Registers a new task definition from the supplied family and containerDefinitions.
// Optionally, you can add data volumes to your containers with the volumes
// parameter. For more information about task definition parameters and defaults,
// see Amazon ECS Task Definitions (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html)
// in the Amazon EC2 Container Service Developer Guide.
func (c *ECS) RegisterTaskDefinition(input *RegisterTaskDefinitionInput) (*RegisterTaskDefinitionOutput, error) {
req, out := c.RegisterTaskDefinitionRequest(input)
err := req.Send()
return out, err
}
const opRunTask = "RunTask"
// RunTaskRequest generates a request for the RunTask operation.
func (c *ECS) RunTaskRequest(input *RunTaskInput) (req *request.Request, output *RunTaskOutput) {
op := &request.Operation{
Name: opRunTask,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RunTaskInput{}
}
req = c.newRequest(op, input, output)
output = &RunTaskOutput{}
req.Data = output
return
}
// Start a task using random placement and the default Amazon ECS scheduler.
// To use your own scheduler or place a task on a specific container instance,
// use StartTask instead.
//
// The count parameter is limited to 10 tasks per call.
func (c *ECS) RunTask(input *RunTaskInput) (*RunTaskOutput, error) {
req, out := c.RunTaskRequest(input)
err := req.Send()
return out, err
}
const opStartTask = "StartTask"
// StartTaskRequest generates a request for the StartTask operation.
func (c *ECS) StartTaskRequest(input *StartTaskInput) (req *request.Request, output *StartTaskOutput) {
op := &request.Operation{
Name: opStartTask,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &StartTaskInput{}
}
req = c.newRequest(op, input, output)
output = &StartTaskOutput{}
req.Data = output
return
}
// Starts a new task from the specified task definition on the specified container
// instance or instances. To use the default Amazon ECS scheduler to place your
// task, use RunTask instead.
//
// The list of container instances to start tasks on is limited to 10.
func (c *ECS) StartTask(input *StartTaskInput) (*StartTaskOutput, error) {
req, out := c.StartTaskRequest(input)
err := req.Send()
return out, err
}
const opStopTask = "StopTask"
// StopTaskRequest generates a request for the StopTask operation.
func (c *ECS) StopTaskRequest(input *StopTaskInput) (req *request.Request, output *StopTaskOutput) {
op := &request.Operation{
Name: opStopTask,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &StopTaskInput{}
}
req = c.newRequest(op, input, output)
output = &StopTaskOutput{}
req.Data = output
return
}
// Stops a running task.
//
// When StopTask is called on a task, the equivalent of docker stop is issued
// to the containers running in the task. This results in a SIGTERM and a 30-second
// timeout, after which SIGKILL is sent and the containers are forcibly stopped.
// If the container handles the SIGTERM gracefully and exits within 30 seconds
// from receiving it, no SIGKILL is sent.
func (c *ECS) StopTask(input *StopTaskInput) (*StopTaskOutput, error) {
req, out := c.StopTaskRequest(input)
err := req.Send()
return out, err
}
const opSubmitContainerStateChange = "SubmitContainerStateChange"
// SubmitContainerStateChangeRequest generates a request for the SubmitContainerStateChange operation.
func (c *ECS) SubmitContainerStateChangeRequest(input *SubmitContainerStateChangeInput) (req *request.Request, output *SubmitContainerStateChangeOutput) {
op := &request.Operation{
Name: opSubmitContainerStateChange,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SubmitContainerStateChangeInput{}
}
req = c.newRequest(op, input, output)
output = &SubmitContainerStateChangeOutput{}
req.Data = output
return
}
// This action is only used by the Amazon EC2 Container Service agent, and it
// is not intended for use outside of the agent.
//
// Sent to acknowledge that a container changed states.
func (c *ECS) SubmitContainerStateChange(input *SubmitContainerStateChangeInput) (*SubmitContainerStateChangeOutput, error) {
req, out := c.SubmitContainerStateChangeRequest(input)
err := req.Send()
return out, err
}
const opSubmitTaskStateChange = "SubmitTaskStateChange"
// SubmitTaskStateChangeRequest generates a request for the SubmitTaskStateChange operation.
func (c *ECS) SubmitTaskStateChangeRequest(input *SubmitTaskStateChangeInput) (req *request.Request, output *SubmitTaskStateChangeOutput) {
op := &request.Operation{
Name: opSubmitTaskStateChange,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SubmitTaskStateChangeInput{}
}
req = c.newRequest(op, input, output)
output = &SubmitTaskStateChangeOutput{}
req.Data = output
return
}
// This action is only used by the Amazon EC2 Container Service agent, and it
// is not intended for use outside of the agent.
//
// Sent to acknowledge that a task changed states.
func (c *ECS) SubmitTaskStateChange(input *SubmitTaskStateChangeInput) (*SubmitTaskStateChangeOutput, error) {
req, out := c.SubmitTaskStateChangeRequest(input)
err := req.Send()
return out, err
}
const opUpdateContainerAgent = "UpdateContainerAgent"
// UpdateContainerAgentRequest generates a request for the UpdateContainerAgent operation.
func (c *ECS) UpdateContainerAgentRequest(input *UpdateContainerAgentInput) (req *request.Request, output *UpdateContainerAgentOutput) {
op := &request.Operation{
Name: opUpdateContainerAgent,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateContainerAgentInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateContainerAgentOutput{}
req.Data = output
return
}
// Updates the Amazon ECS container agent on a specified container instance.
// Updating the Amazon ECS container agent does not interrupt running tasks
// or services on the container instance. The process for updating the agent
// differs depending on whether your container instance was launched with the
// Amazon ECS-optimized AMI or another operating system.
//
// UpdateContainerAgent requires the Amazon ECS-optimized AMI or Amazon Linux
// with the ecs-init service installed and running. For help updating the Amazon
// ECS container agent on other operating systems, see Manually Updating the
// Amazon ECS Container Agent (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html#manually_update_agent)
// in the Amazon EC2 Container Service Developer Guide.
func (c *ECS) UpdateContainerAgent(input *UpdateContainerAgentInput) (*UpdateContainerAgentOutput, error) {
req, out := c.UpdateContainerAgentRequest(input)
err := req.Send()
return out, err
}
const opUpdateService = "UpdateService"
// UpdateServiceRequest generates a request for the UpdateService operation.
func (c *ECS) UpdateServiceRequest(input *UpdateServiceInput) (req *request.Request, output *UpdateServiceOutput) {
op := &request.Operation{
Name: opUpdateService,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateServiceInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateServiceOutput{}
req.Data = output
return
}
// Modifies the desired count, deployment configuration, or task definition
// used in a service.
//
// You can add to or subtract from the number of instantiations of a task definition
// in a service by specifying the cluster that the service is running in and
// a new desiredCount parameter.
//
// You can use UpdateService to modify your task definition and deploy a new
// version of your service.
//
// You can also update the deployment configuration of a service. When a deployment
// is triggered by updating the task definition of a service, the service scheduler
// uses the deployment configuration parameters, minimumHealthyPercent and maximumPercent,
// to determine the deployment strategy.
//
// If the minimumHealthyPercent is below 100%, the scheduler can ignore the
// desiredCount temporarily during a deployment. For example, if your service
// has a desiredCount of four tasks, a minimumHealthyPercent of 50% allows the
// scheduler to stop two existing tasks before starting two new tasks. Tasks
// for services that do not use a load balancer are considered healthy if they
// are in the RUNNING state; tasks for services that do use a load balancer
// are considered healthy if they are in the RUNNING state and the container
// instance it is hosted on is reported as healthy by the load balancer.
//
// The maximumPercent parameter represents an upper limit on the number of
// running tasks during a deployment, which enables you to define the deployment
// batch size. For example, if your service has a desiredCount of four tasks,
// a maximumPercent value of 200% starts four new tasks before stopping the
// four older tasks (provided that the cluster resources required to do this
// are available).
//
// When UpdateService stops a task during a deployment, the equivalent of docker
// stop is issued to the containers running in the task. This results in a SIGTERM
// and a 30-second timeout, after which SIGKILL is sent and the containers are
// forcibly stopped. If the container handles the SIGTERM gracefully and exits
// within 30 seconds from receiving it, no SIGKILL is sent.
//
// When the service scheduler launches new tasks, it attempts to balance them
// across the Availability Zones in your cluster with the following logic:
//
// Determine which of the container instances in your cluster can support
// your service's task definition (for example, they have the required CPU,
// memory, ports, and container instance attributes).
//
// Sort the valid container instances by the fewest number of running tasks
// for this service in the same Availability Zone as the instance. For example,
// if zone A has one running service task and zones B and C each have zero,
// valid container instances in either zone B or C are considered optimal for
// placement.
//
// Place the new service task on a valid container instance in an optimal
// Availability Zone (based on the previous steps), favoring container instances
// with the fewest number of running tasks for this service.
func (c *ECS) UpdateService(input *UpdateServiceInput) (*UpdateServiceOutput, error) {
req, out := c.UpdateServiceRequest(input)
err := req.Send()
return out, err
}
// The attributes applicable to a container instance when it is registered.
type Attribute struct {
_ struct{} `type:"structure"`
// The name of the container instance attribute.
Name *string `locationName:"name" type:"string" required:"true"`
// The value of the container instance attribute (at this time, the value here
// is Null, but this could change in future revisions for expandability).
Value *string `locationName:"value" type:"string"`
}
// String returns the string representation
func (s Attribute) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Attribute) GoString() string {
return s.String()
}
// A regional grouping of one or more container instances on which you can run
// task requests. Each account receives a default cluster the first time you
// use the Amazon ECS service, but you may also create other clusters. Clusters
// may contain more than one instance type simultaneously.
type Cluster struct {
_ struct{} `type:"structure"`
// The number of services that are running on the cluster in an ACTIVE state.
// You can view these services with ListServices.
ActiveServicesCount *int64 `locationName:"activeServicesCount" type:"integer"`
// The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains
// the arn:aws:ecs namespace, followed by the region of the cluster, the AWS
// account ID of the cluster owner, the cluster namespace, and then the cluster
// name. For example, arn:aws:ecs:region:012345678910:cluster/test.
ClusterArn *string `locationName:"clusterArn" type:"string"`
// A user-generated string that you use to identify your cluster.
ClusterName *string `locationName:"clusterName" type:"string"`
// The number of tasks in the cluster that are in the PENDING state.
PendingTasksCount *int64 `locationName:"pendingTasksCount" type:"integer"`
// The number of container instances registered into the cluster.
RegisteredContainerInstancesCount *int64 `locationName:"registeredContainerInstancesCount" type:"integer"`
// The number of tasks in the cluster that are in the RUNNING state.
RunningTasksCount *int64 `locationName:"runningTasksCount" type:"integer"`
// The status of the cluster. The valid values are ACTIVE or INACTIVE. ACTIVE
// indicates that you can register container instances with the cluster and
// the associated instances can accept tasks.
Status *string `locationName:"status" type:"string"`
}
// String returns the string representation
func (s Cluster) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Cluster) GoString() string {
return s.String()
}
// A Docker container that is part of a task.
type Container struct {
_ struct{} `type:"structure"`
// The Amazon Resource Name (ARN) of the container.
ContainerArn *string `locationName:"containerArn" type:"string"`
// The exit code returned from the container.
ExitCode *int64 `locationName:"exitCode" type:"integer"`
// The last known status of the container.
LastStatus *string `locationName:"lastStatus" type:"string"`
// The name of the container.
Name *string `locationName:"name" type:"string"`
// The network bindings associated with the container.
NetworkBindings []*NetworkBinding `locationName:"networkBindings" type:"list"`
// A short (255 max characters) human-readable string to provide additional
// detail about a running or stopped container.
Reason *string `locationName:"reason" type:"string"`
// The Amazon Resource Name (ARN) of the task.
TaskArn *string `locationName:"taskArn" type:"string"`
}
// String returns the string representation
func (s Container) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Container) GoString() string {
return s.String()
}
// Container definitions are used in task definitions to describe the different
// containers that are launched as part of a task.
type ContainerDefinition struct {
_ struct{} `type:"structure"`
// The command that is passed to the container. This parameter maps to Cmd in
// the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the COMMAND parameter to docker run (https://docs.docker.com/reference/commandline/run/).
// For more information, see https://docs.docker.com/reference/builder/#cmd
// (https://docs.docker.com/reference/builder/#cmd).
Command []*string `locationName:"command" type:"list"`
// The number of cpu units reserved for the container. A container instance
// has 1,024 cpu units for every CPU core. This parameter specifies the minimum
// amount of CPU to reserve for a container, and containers share unallocated
// CPU units with other containers on the instance with the same ratio as their
// allocated amount. This parameter maps to CpuShares in the Create a container
// (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --cpu-shares option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// You can determine the number of CPU units that are available per EC2 instance
// type by multiplying the vCPUs listed for that instance type on the Amazon
// EC2 Instances (http://aws.amazon.com/ec2/instance-types/) detail page by
// 1,024.
//
// For example, if you run a single-container task on a single-core instance
// type with 512 CPU units specified for that container, and that is the only
// task running on the container instance, that container could use the full
// 1,024 CPU unit share at any given time. However, if you launched another
// copy of the same task on that container instance, each task would be guaranteed
// a minimum of 512 CPU units when needed, and each container could float to
// higher CPU usage if the other container was not using it, but if both tasks
// were 100% active all of the time, they would be limited to 512 CPU units.
//
// The Docker daemon on the container instance uses the CPU value to calculate
// the relative CPU share ratios for running containers. For more information,
// see CPU share constraint (https://docs.docker.com/reference/run/#cpu-share-constraint)
// in the Docker documentation. The minimum valid CPU share value that the Linux
// kernel allows is 2; however, the CPU parameter is not required, and you can
// use CPU values below 2 in your container definitions. For CPU values below
// 2 (including null), the behavior varies based on your Amazon ECS container
// agent version:
//
// Agent versions less than or equal to 1.1.0: Null and zero CPU values are
// passed to Docker as 0, which Docker then converts to 1,024 CPU shares. CPU
// values of 1 are passed to Docker as 1, which the Linux kernel converts to
// 2 CPU shares. Agent versions greater than or equal to 1.2.0: Null, zero,
// and CPU values of 1 are passed to Docker as 2.
Cpu *int64 `locationName:"cpu" type:"integer"`
// When this parameter is true, networking is disabled within the container.
// This parameter maps to NetworkDisabled in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/).
DisableNetworking *bool `locationName:"disableNetworking" type:"boolean"`
// A list of DNS search domains that are presented to the container. This parameter
// maps to DnsSearch in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --dns-search option to docker run (https://docs.docker.com/reference/commandline/run/).
DnsSearchDomains []*string `locationName:"dnsSearchDomains" type:"list"`
// A list of DNS servers that are presented to the container. This parameter
// maps to Dns in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --dns option to docker run (https://docs.docker.com/reference/commandline/run/).
DnsServers []*string `locationName:"dnsServers" type:"list"`
// A key/value map of labels to add to the container. This parameter maps to
// Labels in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --label option to docker run (https://docs.docker.com/reference/commandline/run/).
// 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 into your container instance and run the following
// command: sudo docker version | grep "Server API version"
DockerLabels map[string]*string `locationName:"dockerLabels" type:"map"`
// A list of strings to provide custom labels for SELinux and AppArmor multi-level
// security systems. This parameter maps to SecurityOpt in the Create a container
// (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --security-opt option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// The Amazon ECS container agent running on a container instance must register
// with the ECS_SELINUX_CAPABLE=true or ECS_APPARMOR_CAPABLE=true environment
// variables before containers placed on that instance can use these security
// options. For more information, see Amazon ECS Container Agent Configuration
// (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/developerguide/ecs-agent-config.html)
// in the Amazon EC2 Container Service Developer Guide.
DockerSecurityOptions []*string `locationName:"dockerSecurityOptions" type:"list"`
// Early versions of the Amazon ECS container agent do not properly handle entryPoint
// parameters. If you have problems using entryPoint, update your container
// agent or enter your commands and arguments as command array items instead.
//
// The entry point that is passed to the container. This parameter maps to
// Entrypoint in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --entrypoint option to docker run (https://docs.docker.com/reference/commandline/run/).
// For more information, see https://docs.docker.com/reference/builder/#entrypoint
// (https://docs.docker.com/reference/builder/#entrypoint).
EntryPoint []*string `locationName:"entryPoint" type:"list"`
// The environment variables to pass to a container. This parameter maps to
// Env in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --env option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// We do not recommend using plain text environment variables for sensitive
// information, such as credential data.
Environment []*KeyValuePair `locationName:"environment" type:"list"`
// If the essential parameter of a container is marked as true, the failure
// of that container stops the task. If the essential parameter of a container
// is marked as false, then its failure does not affect the rest of the containers
// in a task. If this parameter is omitted, a container is assumed to be essential.
//
// All tasks must have at least one essential container.
Essential *bool `locationName:"essential" type:"boolean"`
// A list of hostnames and IP address mappings to append to the /etc/hosts file
// on the container. This parameter maps to ExtraHosts in the Create a container
// (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --add-host option to docker run (https://docs.docker.com/reference/commandline/run/).
ExtraHosts []*HostEntry `locationName:"extraHosts" type:"list"`
// The hostname to use for your container. This parameter maps to Hostname in
// the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --hostname option to docker run (https://docs.docker.com/reference/commandline/run/).
Hostname *string `locationName:"hostname" type:"string"`
// 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. 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 (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the IMAGE parameter of docker run (https://docs.docker.com/reference/commandline/run/).
//
// 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).
Image *string `locationName:"image" type:"string"`
// The link parameter allows containers to communicate with each other without
// the need for port mappings, using the name parameter and optionally, an alias
// for the link. This construct is analogous to name:alias in Docker links.
// Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores
// are allowed for each name and alias. For more information on linking Docker
// containers, see https://docs.docker.com/userguide/dockerlinks/ (https://docs.docker.com/userguide/dockerlinks/).
// This parameter maps to Links in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --link option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// Containers that are collocated on a single container instance may be able
// to communicate with each other without requiring links or host port mappings.
// Network isolation is achieved on the container instance using security groups
// and VPC settings.
Links []*string `locationName:"links" type:"list"`
// The log configuration specification for the container. This parameter maps
// to LogConfig in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --log-driver option to docker run (https://docs.docker.com/reference/commandline/run/).
// Valid log drivers are displayed 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 into 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 (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/developerguide/ecs-agent-config.html)
// in the Amazon EC2 Container Service Developer Guide.
LogConfiguration *LogConfiguration `locationName:"logConfiguration" type:"structure"`
// The number of MiB of memory to reserve for the container. You must specify
// a non-zero integer for this parameter; the Docker daemon reserves a minimum
// of 4 MiB of memory for a container, so you should not specify fewer than
// 4 MiB of memory for your containers. If your container attempts to exceed
// the memory allocated here, the container is killed. This parameter maps to
// Memory in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --memory option to docker run (https://docs.docker.com/reference/commandline/run/).
Memory *int64 `locationName:"memory" type:"integer"`
// The mount points for data volumes in your container. This parameter maps
// to Volumes in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --volume option to docker run (https://docs.docker.com/reference/commandline/run/).
MountPoints []*MountPoint `locationName:"mountPoints" type:"list"`
// The name of a container. If you are linking multiple containers together
// in a task definition, the name of one container can be entered in the links
// of another container to connect the containers. Up to 255 letters (uppercase
// and lowercase), numbers, hyphens, and underscores are allowed. This parameter
// maps to name in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --name option to docker run (https://docs.docker.com/reference/commandline/run/).
Name *string `locationName:"name" type:"string"`
// The list of port mappings for the container. Port mappings allow containers
// to access ports on the host container instance to send or receive traffic.
// This parameter maps to PortBindings in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --publish option to docker run (https://docs.docker.com/reference/commandline/run/).
//
// After a task reaches the RUNNING status, manual and automatic host and
// container port assignments are visible in the Network Bindings section of
// a container description of a selected task in the Amazon ECS console, or
// the networkBindings section DescribeTasks responses.
PortMappings []*PortMapping `locationName:"portMappings" type:"list"`
// 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 (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --privileged option to docker run (https://docs.docker.com/reference/commandline/run/).
Privileged *bool `locationName:"privileged" type:"boolean"`
// 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
// (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --read-only option to docker run.
ReadonlyRootFilesystem *bool `locationName:"readonlyRootFilesystem" type:"boolean"`
// A list of ulimits to set in the container. This parameter maps to Ulimits
// in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --ulimit option to docker run (https://docs.docker.com/reference/commandline/run/).
// Valid naming values are displayed in the Ulimit 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 into your container instance and run the following command: sudo docker
// version | grep "Server API version"
Ulimits []*Ulimit `locationName:"ulimits" type:"list"`
// The user name to use inside the container. This parameter maps to User in
// the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --user option to docker run (https://docs.docker.com/reference/commandline/run/).
User *string `locationName:"user" type:"string"`
// Data volumes to mount from another container. This parameter maps to VolumesFrom
// in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --volumes-from option to docker run (https://docs.docker.com/reference/commandline/run/).
VolumesFrom []*VolumeFrom `locationName:"volumesFrom" type:"list"`
// The working directory in which to run commands inside the container. This
// parameter maps to WorkingDir in the Create a container (https://docs.docker.com/reference/api/docker_remote_api_v1.19/#create-a-container)
// section of the Docker Remote API (https://docs.docker.com/reference/api/docker_remote_api_v1.19/)
// and the --workdir option to docker run (https://docs.docker.com/reference/commandline/run/).
WorkingDirectory *string `locationName:"workingDirectory" type:"string"`
}
// String returns the string representation
func (s ContainerDefinition) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ContainerDefinition) GoString() string {
return s.String()
}
// An EC2 instance that is running the Amazon ECS agent and has been registered
// with a cluster.
type ContainerInstance struct {
_ struct{} `type:"structure"`
// This parameter returns true if the agent is actually connected to Amazon
// ECS. Registered instances with an agent that may be unhealthy or stopped
// return false, and instances without a connected agent cannot accept placement
// requests.
AgentConnected *bool `locationName:"agentConnected" type:"boolean"`
// The status of the most recent agent update. If an update has never been requested,
// this value is NULL.
AgentUpdateStatus *string `locationName:"agentUpdateStatus" type:"string" enum:"AgentUpdateStatus"`
// The attributes set for the container instance by the Amazon ECS container
// agent at instance registration.
Attributes []*Attribute `locationName:"attributes" type:"list"`
// The Amazon Resource Name (ARN) of the container instance. The ARN contains
// the arn:aws:ecs namespace, followed by the region of the container instance,
// the AWS account ID of the container instance owner, the container-instance
// namespace, and then the container instance ID. For example, arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID.
ContainerInstanceArn *string `locationName:"containerInstanceArn" type:"string"`
// The EC2 instance ID of the container instance.
Ec2InstanceId *string `locationName:"ec2InstanceId" type:"string"`
// The number of tasks on the container instance that are in the PENDING status.
PendingTasksCount *int64 `locationName:"pendingTasksCount" type:"integer"`
// The registered resources on the container instance that are in use by current
// tasks.
RegisteredResources []*Resource `locationName:"registeredResources" type:"list"`
// The remaining resources of the container instance that are available for
// new tasks.
RemainingResources []*Resource `locationName:"remainingResources" type:"list"`
// The number of tasks on the container instance that are in the RUNNING status.
RunningTasksCount *int64 `locationName:"runningTasksCount" type:"integer"`
// The status of the container instance. The valid values are ACTIVE or INACTIVE.
// ACTIVE indicates that the container instance can accept tasks.
Status *string `locationName:"status" type:"string"`
// The version information for the Amazon ECS container agent and Docker daemon
// running on the container instance.
VersionInfo *VersionInfo `locationName:"versionInfo" type:"structure"`
}
// String returns the string representation
func (s ContainerInstance) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ContainerInstance) GoString() string {
return s.String()
}
// The overrides that should be sent to a container.
type ContainerOverride struct {
_ struct{} `type:"structure"`
// The command to send to the container that overrides the default command from
// the Docker image or the task definition.
Command []*string `locationName:"command" type:"list"`
// 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 task definition.
Environment []*KeyValuePair `locationName:"environment" type:"list"`
// The name of the container that receives the override.
Name *string `locationName:"name" type:"string"`
}
// String returns the string representation
func (s ContainerOverride) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ContainerOverride) GoString() string {
return s.String()
}
type CreateClusterInput struct {
_ struct{} `type:"structure"`
// The name of your cluster. If you do not specify a name for your cluster,
// you create a cluster named default. Up to 255 letters (uppercase and lowercase),
// numbers, hyphens, and underscores are allowed.
ClusterName *string `locationName:"clusterName" type:"string"`
}
// String returns the string representation
func (s CreateClusterInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateClusterInput) GoString() string {
return s.String()
}
type CreateClusterOutput struct {
_ struct{} `type:"structure"`
// The full description of your new cluster.
Cluster *Cluster `locationName:"cluster" type:"structure"`
}
// String returns the string representation
func (s CreateClusterOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateClusterOutput) GoString() string {
return s.String()
}
type CreateServiceInput struct {
_ struct{} `type:"structure"`
// Unique, case-sensitive identifier you provide to ensure the idempotency of
// the request. Up to 32 ASCII characters are allowed.
ClientToken *string `locationName:"clientToken" type:"string"`
// The short name or full Amazon Resource Name (ARN) of the cluster on which
// to run your service. If you do not specify a cluster, the default cluster
// is assumed.
Cluster *string `locationName:"cluster" type:"string"`
// Optional deployment parameters that control how many tasks run during the
// deployment and the ordering of stopping and starting tasks.
DeploymentConfiguration *DeploymentConfiguration `locationName:"deploymentConfiguration" type:"structure"`
// The number of instantiations of the specified task definition to place and
// keep running on your cluster.
DesiredCount *int64 `locationName:"desiredCount" type:"integer" required:"true"`
// A list of load balancer objects, containing the load balancer name, the container
// name (as it appears in a container definition), and the container port to
// access from the load balancer.
LoadBalancers []*LoadBalancer `locationName:"loadBalancers" type:"list"`
// The name or full Amazon Resource Name (ARN) of the IAM role that allows your
// Amazon ECS container agent to make calls to your load balancer on your behalf.
// This parameter is only required if you are using a load balancer with your
// service.
Role *string `locationName:"role" type:"string"`
// The name of your service. Up to 255 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed. Service names must be unique within
// a cluster, but you can have similarly named services in multiple clusters
// within a region or across multiple regions.
ServiceName *string `locationName:"serviceName" type:"string" required:"true"`
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to run in your service. If a revision is not specified,
// the latest ACTIVE revision is used.
TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateServiceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateServiceInput) GoString() string {
return s.String()
}
type CreateServiceOutput struct {
_ struct{} `type:"structure"`
// The full description of your service following the create call.
Service *Service `locationName:"service" type:"structure"`
}
// String returns the string representation
func (s CreateServiceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateServiceOutput) GoString() string {
return s.String()
}
type DeleteClusterInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster to delete.
Cluster *string `locationName:"cluster" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteClusterInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteClusterInput) GoString() string {
return s.String()
}
type DeleteClusterOutput struct {
_ struct{} `type:"structure"`
// The full description of the deleted cluster.
Cluster *Cluster `locationName:"cluster" type:"structure"`
}
// String returns the string representation
func (s DeleteClusterOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteClusterOutput) GoString() string {
return s.String()
}
type DeleteServiceInput struct {
_ struct{} `type:"structure"`
// The name of the cluster that hosts the service to delete. If you do not specify
// a cluster, the default cluster is assumed.
Cluster *string `locationName:"cluster" type:"string"`
// The name of the service to delete.
Service *string `locationName:"service" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteServiceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteServiceInput) GoString() string {
return s.String()
}
type DeleteServiceOutput struct {
_ struct{} `type:"structure"`
// The full description of the deleted service.
Service *Service `locationName:"service" type:"structure"`
}
// String returns the string representation
func (s DeleteServiceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteServiceOutput) GoString() string {
return s.String()
}
// The details of an Amazon ECS service deployment.
type Deployment struct {
_ struct{} `type:"structure"`
// The Unix time in seconds and milliseconds when the service was created.
CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" timestampFormat:"unix"`
// The most recent desired count of tasks that was specified for the service
// to deploy or maintain.
DesiredCount *int64 `locationName:"desiredCount" type:"integer"`
// The ID of the deployment.
Id *string `locationName:"id" type:"string"`
// The number of tasks in the deployment that are in the PENDING status.
PendingCount *int64 `locationName:"pendingCount" type:"integer"`
// The number of tasks in the deployment that are in the RUNNING status.
RunningCount *int64 `locationName:"runningCount" type:"integer"`
// The status of the deployment. Valid values are PRIMARY (for the most recent
// deployment), ACTIVE (for previous deployments that still have tasks running,
// but are being replaced with the PRIMARY deployment), and INACTIVE (for deployments
// that have been completely replaced).
Status *string `locationName:"status" type:"string"`
// The most recent task definition that was specified for the service to use.
TaskDefinition *string `locationName:"taskDefinition" type:"string"`
// The Unix time in seconds and milliseconds when the service was last updated.
UpdatedAt *time.Time `locationName:"updatedAt" type:"timestamp" timestampFormat:"unix"`
}
// String returns the string representation
func (s Deployment) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Deployment) GoString() string {
return s.String()
}
// Optional deployment parameters that control how many tasks run during the
// deployment and the ordering of stopping and starting tasks.
type DeploymentConfiguration struct {
_ struct{} `type:"structure"`
// The upper limit (as a percentage of the service's desiredCount) of the number
// of running tasks that can be running in a service during a deployment. The
// maximum number of tasks during a deployment is the desiredCount multiplied
// by the maximumPercent/100, rounded down to the nearest integer value.
MaximumPercent *int64 `locationName:"maximumPercent" type:"integer"`
// The lower limit (as a percentage of the service's desiredCount) of the number
// of running tasks that must remain running and healthy in a service during
// a deployment. The minimum healthy tasks during a deployment is the desiredCount
// multiplied by the minimumHealthyPercent/100, rounded up to the nearest integer
// value.
MinimumHealthyPercent *int64 `locationName:"minimumHealthyPercent" type:"integer"`
}
// String returns the string representation
func (s DeploymentConfiguration) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeploymentConfiguration) GoString() string {
return s.String()
}
type DeregisterContainerInstanceInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the container instance to deregister. If you do not specify a cluster, the
// default cluster is assumed.
Cluster *string `locationName:"cluster" type:"string"`
// The container instance ID or full Amazon Resource Name (ARN) of the container
// instance to deregister. The ARN contains the arn:aws:ecs namespace, followed
// by the region of the container instance, the AWS account ID of the container
// instance owner, the container-instance namespace, and then the container
// instance ID. For example, arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID.
ContainerInstance *string `locationName:"containerInstance" type:"string" required:"true"`
// Forces the deregistration of the container instance. If you have tasks running
// on the container instance when you deregister it with the force option, these
// tasks remain running and they continue to pass Elastic Load Balancing load
// balancer health checks until you terminate the instance or the tasks stop
// through some other means, but they are orphaned (no longer monitored or accounted
// for by Amazon ECS). If an orphaned task on your container instance is part
// of an Amazon ECS service, then the service scheduler starts another copy
// of that task, on a different container instance if possible.
Force *bool `locationName:"force" type:"boolean"`
}
// String returns the string representation
func (s DeregisterContainerInstanceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeregisterContainerInstanceInput) GoString() string {
return s.String()
}
type DeregisterContainerInstanceOutput struct {
_ struct{} `type:"structure"`
// An EC2 instance that is running the Amazon ECS agent and has been registered
// with a cluster.
ContainerInstance *ContainerInstance `locationName:"containerInstance" type:"structure"`
}
// String returns the string representation
func (s DeregisterContainerInstanceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeregisterContainerInstanceOutput) GoString() string {
return s.String()
}
type DeregisterTaskDefinitionInput struct {
_ struct{} `type:"structure"`
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to deregister. You must specify a revision.
TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"`
}
// String returns the string representation
func (s DeregisterTaskDefinitionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeregisterTaskDefinitionInput) GoString() string {
return s.String()
}
type DeregisterTaskDefinitionOutput struct {
_ struct{} `type:"structure"`
// The full description of the deregistered task.
TaskDefinition *TaskDefinition `locationName:"taskDefinition" type:"structure"`
}
// String returns the string representation
func (s DeregisterTaskDefinitionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeregisterTaskDefinitionOutput) GoString() string {
return s.String()
}
type DescribeClustersInput struct {
_ struct{} `type:"structure"`
// A space-separated list of cluster names or full cluster Amazon Resource Name
// (ARN) entries. If you do not specify a cluster, the default cluster is assumed.
Clusters []*string `locationName:"clusters" type:"list"`
}
// String returns the string representation
func (s DescribeClustersInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeClustersInput) GoString() string {
return s.String()
}
type DescribeClustersOutput struct {
_ struct{} `type:"structure"`
// The list of clusters.
Clusters []*Cluster `locationName:"clusters" type:"list"`
// Any failures associated with the call.
Failures []*Failure `locationName:"failures" type:"list"`
}
// String returns the string representation
func (s DescribeClustersOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeClustersOutput) GoString() string {
return s.String()
}
type DescribeContainerInstancesInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the container instances to describe. If you do not specify a cluster, the
// default cluster is assumed.
Cluster *string `locationName:"cluster" type:"string"`
// A space-separated list of container instance IDs or full Amazon Resource
// Name (ARN) entries.
ContainerInstances []*string `locationName:"containerInstances" type:"list" required:"true"`
}
// String returns the string representation
func (s DescribeContainerInstancesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeContainerInstancesInput) GoString() string {
return s.String()
}
type DescribeContainerInstancesOutput struct {
_ struct{} `type:"structure"`
// The list of container instances.
ContainerInstances []*ContainerInstance `locationName:"containerInstances" type:"list"`
// Any failures associated with the call.
Failures []*Failure `locationName:"failures" type:"list"`
}
// String returns the string representation
func (s DescribeContainerInstancesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeContainerInstancesOutput) GoString() string {
return s.String()
}
type DescribeServicesInput struct {
_ struct{} `type:"structure"`
// The name of the cluster that hosts the service to describe. If you do not
// specify a cluster, the default cluster is assumed.
Cluster *string `locationName:"cluster" type:"string"`
// A list of services to describe.
Services []*string `locationName:"services" type:"list" required:"true"`
}
// String returns the string representation
func (s DescribeServicesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeServicesInput) GoString() string {
return s.String()
}
type DescribeServicesOutput struct {
_ struct{} `type:"structure"`
// Any failures associated with the call.
Failures []*Failure `locationName:"failures" type:"list"`
// The list of services described.
Services []*Service `locationName:"services" type:"list"`
}
// String returns the string representation
func (s DescribeServicesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeServicesOutput) GoString() string {
return s.String()
}
type DescribeTaskDefinitionInput struct {
_ struct{} `type:"structure"`
// The family for the latest ACTIVE revision, family and revision (family:revision)
// for a specific revision in the family, or full Amazon Resource Name (ARN)
// of the task definition to describe.
TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"`
}
// String returns the string representation
func (s DescribeTaskDefinitionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeTaskDefinitionInput) GoString() string {
return s.String()
}
type DescribeTaskDefinitionOutput struct {
_ struct{} `type:"structure"`
// The full task definition description.
TaskDefinition *TaskDefinition `locationName:"taskDefinition" type:"structure"`
}
// String returns the string representation
func (s DescribeTaskDefinitionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeTaskDefinitionOutput) GoString() string {
return s.String()
}
type DescribeTasksInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the task to describe. If you do not specify a cluster, the default cluster
// is assumed.
Cluster *string `locationName:"cluster" type:"string"`
// A space-separated list of task IDs or full Amazon Resource Name (ARN) entries.
Tasks []*string `locationName:"tasks" type:"list" required:"true"`
}
// String returns the string representation
func (s DescribeTasksInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeTasksInput) GoString() string {
return s.String()
}
type DescribeTasksOutput struct {
_ struct{} `type:"structure"`
// Any failures associated with the call.
Failures []*Failure `locationName:"failures" type:"list"`
// The list of tasks.
Tasks []*Task `locationName:"tasks" type:"list"`
}
// String returns the string representation
func (s DescribeTasksOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeTasksOutput) GoString() string {
return s.String()
}
type DiscoverPollEndpointInput struct {
_ struct{} `type:"structure"`
// The cluster that the container instance belongs to.
Cluster *string `locationName:"cluster" type:"string"`
// The container instance ID or full Amazon Resource Name (ARN) of the container
// instance. The ARN contains the arn:aws:ecs namespace, followed by the region
// of the container instance, the AWS account ID of the container instance owner,
// the container-instance namespace, and then the container instance ID. For
// example, arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID.
ContainerInstance *string `locationName:"containerInstance" type:"string"`
}
// String returns the string representation
func (s DiscoverPollEndpointInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DiscoverPollEndpointInput) GoString() string {
return s.String()
}
type DiscoverPollEndpointOutput struct {
_ struct{} `type:"structure"`
// The endpoint for the Amazon ECS agent to poll.
Endpoint *string `locationName:"endpoint" type:"string"`
// The telemetry endpoint for the Amazon ECS agent.
TelemetryEndpoint *string `locationName:"telemetryEndpoint" type:"string"`
}
// String returns the string representation
func (s DiscoverPollEndpointOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DiscoverPollEndpointOutput) GoString() string {
return s.String()
}
// A failed resource.
type Failure struct {
_ struct{} `type:"structure"`
// The Amazon Resource Name (ARN) of the failed resource.
Arn *string `locationName:"arn" type:"string"`
// The reason for the failure.
Reason *string `locationName:"reason" type:"string"`
}
// String returns the string representation
func (s Failure) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Failure) GoString() string {
return s.String()
}
// Hostnames and IP address entries that are added to the /etc/hosts file of
// a container via the extraHosts parameter of its ContainerDefinition.
type HostEntry struct {
_ struct{} `type:"structure"`
// The hostname to use in the /etc/hosts entry.
Hostname *string `locationName:"hostname" type:"string" required:"true"`
// The IP address to use in the /etc/hosts entry.
IpAddress *string `locationName:"ipAddress" type:"string" required:"true"`
}
// String returns the string representation
func (s HostEntry) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s HostEntry) GoString() string {
return s.String()
}
// Details on a container instance host volume.
type HostVolumeProperties struct {
_ struct{} `type:"structure"`
// The path on the host container instance that is presented to the container.
// If this parameter is empty, then the Docker daemon has assigned a host path
// for you. If the host parameter contains a sourcePath file location, then
// the data volume persists at the specified location on the host container
// instance until you delete it manually. If the sourcePath value does not 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.
SourcePath *string `locationName:"sourcePath" type:"string"`
}
// String returns the string representation
func (s HostVolumeProperties) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s HostVolumeProperties) GoString() string {
return s.String()
}
// A key and value pair object.
type KeyValuePair struct {
_ struct{} `type:"structure"`
// The name of the key value pair. For environment variables, this is the name
// of the environment variable.
Name *string `locationName:"name" type:"string"`
// The value of the key value pair. For environment variables, this is the value
// of the environment variable.
Value *string `locationName:"value" type:"string"`
}
// String returns the string representation
func (s KeyValuePair) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s KeyValuePair) GoString() string {
return s.String()
}
type ListClustersInput struct {
_ struct{} `type:"structure"`
// The maximum number of cluster results returned by ListClusters in paginated
// output. When this parameter is used, ListClusters only returns maxResults
// results in a single page along with a nextToken response element. The remaining
// results of the initial request can be seen by sending another ListClusters
// request with the returned nextToken value. This value can be between 1 and
// 100. If this parameter is not used, then ListClusters returns up to 100 results
// and a nextToken value if applicable.
MaxResults *int64 `locationName:"maxResults" type:"integer"`
// The nextToken value returned from a previous paginated ListClusters request
// where maxResults was used and the results exceeded the value of that parameter.
// Pagination continues from the end of the previous results that returned the
// nextToken value. This value is null when there are no more results to return.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListClustersInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListClustersInput) GoString() string {
return s.String()
}
type ListClustersOutput struct {
_ struct{} `type:"structure"`
// The list of full Amazon Resource Name (ARN) entries for each cluster associated
// with your account.
ClusterArns []*string `locationName:"clusterArns" type:"list"`
// The nextToken value to include in a future ListClusters request. When the
// results of a ListClusters request exceed maxResults, this value can be used
// to retrieve the next page of results. This value is null when there are no
// more results to return.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListClustersOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListClustersOutput) GoString() string {
return s.String()
}
type ListContainerInstancesInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the container instances to list. If you do not specify a cluster, the default
// cluster is assumed..
Cluster *string `locationName:"cluster" type:"string"`
// The maximum number of container instance results returned by ListContainerInstances
// in paginated output. When this parameter is used, ListContainerInstances
// only returns maxResults results in a single page along with a nextToken response
// element. The remaining results of the initial request can be seen by sending
// another ListContainerInstances request with the returned nextToken value.
// This value can be between 1 and 100. If this parameter is not used, then
// ListContainerInstances returns up to 100 results and a nextToken value if
// applicable.
MaxResults *int64 `locationName:"maxResults" type:"integer"`
// The nextToken value returned from a previous paginated ListContainerInstances
// request where maxResults was used and the results exceeded the value of that
// parameter. Pagination continues from the end of the previous results that
// returned the nextToken value. This value is null when there are no more results
// to return.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListContainerInstancesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListContainerInstancesInput) GoString() string {
return s.String()
}
type ListContainerInstancesOutput struct {
_ struct{} `type:"structure"`
// The list of container instances with full Amazon Resource Name (ARN) entries
// for each container instance associated with the specified cluster.
ContainerInstanceArns []*string `locationName:"containerInstanceArns" type:"list"`
// The nextToken value to include in a future ListContainerInstances request.
// When the results of a ListContainerInstances request exceed maxResults, this
// value can be used to retrieve the next page of results. This value is null
// when there are no more results to return.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListContainerInstancesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListContainerInstancesOutput) GoString() string {
return s.String()
}
type ListServicesInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the services to list. If you do not specify a cluster, the default cluster
// is assumed..
Cluster *string `locationName:"cluster" type:"string"`
// The maximum number of container instance results returned by ListServices
// in paginated output. When this parameter is used, ListServices only returns
// maxResults results in a single page along with a nextToken response element.
// The remaining results of the initial request can be seen by sending another
// ListServices request with the returned nextToken value. This value can be
// between 1 and 10. If this parameter is not used, then ListServices returns
// up to 10 results and a nextToken value if applicable.
MaxResults *int64 `locationName:"maxResults" type:"integer"`
// The nextToken value returned from a previous paginated ListServices request
// where maxResults was used and the results exceeded the value of that parameter.
// Pagination continues from the end of the previous results that returned the
// nextToken value. This value is null when there are no more results to return.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListServicesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListServicesInput) GoString() string {
return s.String()
}
type ListServicesOutput struct {
_ struct{} `type:"structure"`
// The nextToken value to include in a future ListServices request. When the
// results of a ListServices request exceed maxResults, this value can be used
// to retrieve the next page of results. This value is null when there are no
// more results to return.
NextToken *string `locationName:"nextToken" type:"string"`
// The list of full Amazon Resource Name (ARN) entries for each service associated
// with the specified cluster.
ServiceArns []*string `locationName:"serviceArns" type:"list"`
}
// String returns the string representation
func (s ListServicesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListServicesOutput) GoString() string {
return s.String()
}
type ListTaskDefinitionFamiliesInput struct {
_ struct{} `type:"structure"`
// The familyPrefix is a string that is used to filter the results of ListTaskDefinitionFamilies.
// If you specify a familyPrefix, only task definition family names that begin
// with the familyPrefix string are returned.
FamilyPrefix *string `locationName:"familyPrefix" type:"string"`
// The maximum number of task definition family results returned by ListTaskDefinitionFamilies
// in paginated output. When this parameter is used, ListTaskDefinitions only
// returns maxResults results in a single page along with a nextToken response
// element. The remaining results of the initial request can be seen by sending
// another ListTaskDefinitionFamilies request with the returned nextToken value.
// This value can be between 1 and 100. If this parameter is not used, then
// ListTaskDefinitionFamilies returns up to 100 results and a nextToken value
// if applicable.
MaxResults *int64 `locationName:"maxResults" type:"integer"`
// The nextToken value returned from a previous paginated ListTaskDefinitionFamilies
// request where maxResults was used and the results exceeded the value of that
// parameter. Pagination continues from the end of the previous results that
// returned the nextToken value. This value is null when there are no more results
// to return.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListTaskDefinitionFamiliesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListTaskDefinitionFamiliesInput) GoString() string {
return s.String()
}
type ListTaskDefinitionFamiliesOutput struct {
_ struct{} `type:"structure"`
// The list of task definition family names that match the ListTaskDefinitionFamilies
// request.
Families []*string `locationName:"families" type:"list"`
// The nextToken value to include in a future ListTaskDefinitionFamilies request.
// When the results of a ListTaskDefinitionFamilies request exceed maxResults,
// this value can be used to retrieve the next page of results. This value is
// null when there are no more results to return.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListTaskDefinitionFamiliesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListTaskDefinitionFamiliesOutput) GoString() string {
return s.String()
}
type ListTaskDefinitionsInput struct {
_ struct{} `type:"structure"`
// The full family name with which to filter the ListTaskDefinitions results.
// Specifying a familyPrefix limits the listed task definitions to task definition
// revisions that belong to that family.
FamilyPrefix *string `locationName:"familyPrefix" type:"string"`
// The maximum number of task definition results returned by ListTaskDefinitions
// in paginated output. When this parameter is used, ListTaskDefinitions only
// returns maxResults results in a single page along with a nextToken response
// element. The remaining results of the initial request can be seen by sending
// another ListTaskDefinitions request with the returned nextToken value. This
// value can be between 1 and 100. If this parameter is not used, then ListTaskDefinitions
// returns up to 100 results and a nextToken value if applicable.
MaxResults *int64 `locationName:"maxResults" type:"integer"`
// The nextToken value returned from a previous paginated ListTaskDefinitions
// request where maxResults was used and the results exceeded the value of that
// parameter. Pagination continues from the end of the previous results that
// returned the nextToken value. This value is null when there are no more results
// to return.
NextToken *string `locationName:"nextToken" type:"string"`
// The order in which to sort the results. Valid values are ASC and DESC. By
// default (ASC), task definitions are listed lexicographically by family name
// and in ascending numerical order by revision so that the newest task definitions
// in a family are listed last. Setting this parameter to DESC reverses the
// sort order on family name and revision so that the newest task definitions
// in a family are listed first.
Sort *string `locationName:"sort" type:"string" enum:"SortOrder"`
// The task definition status with which to filter the ListTaskDefinitions results.
// By default, only ACTIVE task definitions are listed. By setting this parameter
// to INACTIVE, you can view task definitions that are INACTIVE as long as an
// active task or service still references them. If you paginate the resulting
// output, be sure to keep the status value constant in each subsequent request.
Status *string `locationName:"status" type:"string" enum:"TaskDefinitionStatus"`
}
// String returns the string representation
func (s ListTaskDefinitionsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListTaskDefinitionsInput) GoString() string {
return s.String()
}
type ListTaskDefinitionsOutput struct {
_ struct{} `type:"structure"`
// The nextToken value to include in a future ListTaskDefinitions request. When
// the results of a ListTaskDefinitions request exceed maxResults, this value
// can be used to retrieve the next page of results. This value is null when
// there are no more results to return.
NextToken *string `locationName:"nextToken" type:"string"`
// The list of task definition Amazon Resource Name (ARN) entries for the ListTaskDefinitions
// request.
TaskDefinitionArns []*string `locationName:"taskDefinitionArns" type:"list"`
}
// String returns the string representation
func (s ListTaskDefinitionsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListTaskDefinitionsOutput) GoString() string {
return s.String()
}
type ListTasksInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the tasks to list. If you do not specify a cluster, the default cluster is
// assumed..
Cluster *string `locationName:"cluster" type:"string"`
// The container instance ID or full Amazon Resource Name (ARN) of the container
// instance with which to filter the ListTasks results. Specifying a containerInstance
// limits the results to tasks that belong to that container instance.
ContainerInstance *string `locationName:"containerInstance" type:"string"`
// The task status with which to filter the ListTasks results. Specifying a
// desiredStatus of STOPPED limits the results to tasks that are in the STOPPED
// status, which can be useful for debugging tasks that are not starting properly
// or have died or finished. The default status filter is RUNNING.
DesiredStatus *string `locationName:"desiredStatus" type:"string" enum:"DesiredStatus"`
// The name of the family with which to filter the ListTasks results. Specifying
// a family limits the results to tasks that belong to that family.
Family *string `locationName:"family" type:"string"`
// The maximum number of task results returned by ListTasks in paginated output.
// When this parameter is used, ListTasks only returns maxResults results in
// a single page along with a nextToken response element. The remaining results
// of the initial request can be seen by sending another ListTasks request with
// the returned nextToken value. This value can be between 1 and 100. If this
// parameter is not used, then ListTasks returns up to 100 results and a nextToken
// value if applicable.
MaxResults *int64 `locationName:"maxResults" type:"integer"`
// The nextToken value returned from a previous paginated ListTasks request
// where maxResults was used and the results exceeded the value of that parameter.
// Pagination continues from the end of the previous results that returned the
// nextToken value. This value is null when there are no more results to return.
NextToken *string `locationName:"nextToken" type:"string"`
// The name of the service with which to filter the ListTasks results. Specifying
// a serviceName limits the results to tasks that belong to that service.
ServiceName *string `locationName:"serviceName" type:"string"`
// The startedBy value with which to filter the task results. Specifying a startedBy
// value limits the results to tasks that were started with that value.
StartedBy *string `locationName:"startedBy" type:"string"`
}
// String returns the string representation
func (s ListTasksInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListTasksInput) GoString() string {
return s.String()
}
type ListTasksOutput struct {
_ struct{} `type:"structure"`
// The nextToken value to include in a future ListTasks request. When the results
// of a ListTasks request exceed maxResults, this value can be used to retrieve
// the next page of results. This value is null when there are no more results
// to return.
NextToken *string `locationName:"nextToken" type:"string"`
// The list of task Amazon Resource Name (ARN) entries for the ListTasks request.
TaskArns []*string `locationName:"taskArns" type:"list"`
}
// String returns the string representation
func (s ListTasksOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListTasksOutput) GoString() string {
return s.String()
}
// Details on a load balancer that is used with a service.
type LoadBalancer struct {
_ struct{} `type:"structure"`
// The name of the container (as it appears in a container definition) to associate
// with the load balancer.
ContainerName *string `locationName:"containerName" type:"string"`
// The port on the container to associate with the load balancer. This port
// must correspond to a containerPort in the service's task definition. Your
// container instances must allow ingress traffic on the hostPort of the port
// mapping.
ContainerPort *int64 `locationName:"containerPort" type:"integer"`
// The name of the load balancer.
LoadBalancerName *string `locationName:"loadBalancerName" type:"string"`
}
// String returns the string representation
func (s LoadBalancer) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s LoadBalancer) GoString() string {
return s.String()
}
// Log configuration options to send to a custom log driver for the container.
type LogConfiguration struct {
_ struct{} `type:"structure"`
// The log driver to use for the container. 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 into your container
// instance and run the following command: sudo docker version | grep "Server
// API version"
LogDriver *string `locationName:"logDriver" type:"string" required:"true" enum:"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 into
// your container instance and run the following command: sudo docker version
// | grep "Server API version"
Options map[string]*string `locationName:"options" type:"map"`
}
// String returns the string representation
func (s LogConfiguration) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s LogConfiguration) GoString() string {
return s.String()
}
// Details on a volume mount point that is used in a container definition.
type MountPoint struct {
_ struct{} `type:"structure"`
// The path on the container to mount the host volume at.
ContainerPath *string `locationName:"containerPath" type:"string"`
// If this value is true, the container has read-only access to the volume.
// If this value is false, then the container can write to the volume. The default
// value is false.
ReadOnly *bool `locationName:"readOnly" type:"boolean"`
// The name of the volume to mount.
SourceVolume *string `locationName:"sourceVolume" type:"string"`
}
// String returns the string representation
func (s MountPoint) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s MountPoint) GoString() string {
return s.String()
}
// Details on the network bindings between a container and its host container
// instance. After a task reaches the RUNNING status, manual and automatic host
// and container port assignments are visible in the networkBindings section
// of DescribeTasks API responses.
type NetworkBinding struct {
_ struct{} `type:"structure"`
// The IP address that the container is bound to on the container instance.
BindIP *string `locationName:"bindIP" type:"string"`
// The port number on the container that is be used with the network binding.
ContainerPort *int64 `locationName:"containerPort" type:"integer"`
// The port number on the host that is used with the network binding.
HostPort *int64 `locationName:"hostPort" type:"integer"`
// The protocol used for the network binding.
Protocol *string `locationName:"protocol" type:"string" enum:"TransportProtocol"`
}
// String returns the string representation
func (s NetworkBinding) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s NetworkBinding) GoString() string {
return s.String()
}
// Port mappings allow containers to access ports on the host container instance
// to send or receive traffic. Port mappings are specified as part of the container
// definition. After a task reaches the RUNNING status, manual and automatic
// host and container port assignments are visible in the networkBindings section
// of DescribeTasks API responses.
type PortMapping struct {
_ struct{} `type:"structure"`
// The port number on the container that is bound to the user-specified or automatically
// assigned host port. If you specify a container port and not a host port,
// your container automatically receives a host port in the ephemeral port range
// (for more information, see hostPort).
ContainerPort *int64 `locationName:"containerPort" type:"integer"`
// The port number on the container instance to reserve for your container.
// You can specify a non-reserved host port for your container port mapping,
// or you can omit the hostPort (or set it to 0) while specifying a containerPort
// and your container automatically receives a port in the ephemeral port range
// for your container instance operating system and Docker version.
//
// The default ephemeral port range is 49153 to 65535, and this range is used
// for Docker versions prior to 1.6.0. For Docker version 1.6.0 and later, the
// Docker daemon tries to read the ephemeral port range from /proc/sys/net/ipv4/ip_local_port_range;
// if this kernel parameter is unavailable, the default ephemeral port range
// is used. You should not attempt to specify a host port in the ephemeral port
// range, because these are reserved for automatic assignment. In general, ports
// below 32768 are outside of the ephemeral port range.
//
// The default reserved ports are 22 for SSH, the Docker ports 2375 and 2376,
// and the Amazon ECS container agent port 51678. Any host port that was previously
// specified in a running task is also reserved while the task is running (after
// a task stops, the host port is released).The current reserved ports are displayed
// in the remainingResources of DescribeContainerInstances output, and a container
// instance may have up to 50 reserved ports at a time, including the default
// reserved ports (automatically assigned ports do not count toward this limit).
HostPort *int64 `locationName:"hostPort" type:"integer"`
// The protocol used for the port mapping. Valid values are tcp and udp. The
// default is tcp.
Protocol *string `locationName:"protocol" type:"string" enum:"TransportProtocol"`
}
// String returns the string representation
func (s PortMapping) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PortMapping) GoString() string {
return s.String()
}
type RegisterContainerInstanceInput struct {
_ struct{} `type:"structure"`
// The container instance attributes that this container instance supports.
Attributes []*Attribute `locationName:"attributes" type:"list"`
// The short name or full Amazon Resource Name (ARN) of the cluster with which
// to register your container instance. If you do not specify a cluster, the
// default cluster is assumed..
Cluster *string `locationName:"cluster" type:"string"`
// The Amazon Resource Name (ARN) of the container instance (if it was previously
// registered).
ContainerInstanceArn *string `locationName:"containerInstanceArn" type:"string"`
// The instance identity document for the EC2 instance to register. This document
// can be found by running the following command from the instance: curl http://169.254.169.254/latest/dynamic/instance-identity/document/
InstanceIdentityDocument *string `locationName:"instanceIdentityDocument" type:"string"`
// The instance identity document signature for the EC2 instance to register.
// This signature can be found by running the following command from the instance:
// curl http://169.254.169.254/latest/dynamic/instance-identity/signature/
InstanceIdentityDocumentSignature *string `locationName:"instanceIdentityDocumentSignature" type:"string"`
// The resources available on the instance.
TotalResources []*Resource `locationName:"totalResources" type:"list"`
// The version information for the Amazon ECS container agent and Docker daemon
// running on the container instance.
VersionInfo *VersionInfo `locationName:"versionInfo" type:"structure"`
}
// String returns the string representation
func (s RegisterContainerInstanceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterContainerInstanceInput) GoString() string {
return s.String()
}
type RegisterContainerInstanceOutput struct {
_ struct{} `type:"structure"`
// An EC2 instance that is running the Amazon ECS agent and has been registered
// with a cluster.
ContainerInstance *ContainerInstance `locationName:"containerInstance" type:"structure"`
}
// String returns the string representation
func (s RegisterContainerInstanceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterContainerInstanceOutput) GoString() string {
return s.String()
}
type RegisterTaskDefinitionInput struct {
_ struct{} `type:"structure"`
// A list of container definitions in JSON format that describe the different
// containers that make up your task.
ContainerDefinitions []*ContainerDefinition `locationName:"containerDefinitions" type:"list" required:"true"`
// You must specify a family for a task definition, which allows you to track
// multiple versions of the same task definition. The family is used as a name
// for your task definition. Up to 255 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed.
Family *string `locationName:"family" type:"string" required:"true"`
// A list of volume definitions in JSON format that containers in your task
// may use.
Volumes []*Volume `locationName:"volumes" type:"list"`
}
// String returns the string representation
func (s RegisterTaskDefinitionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterTaskDefinitionInput) GoString() string {
return s.String()
}
type RegisterTaskDefinitionOutput struct {
_ struct{} `type:"structure"`
// The full description of the registered task definition.
TaskDefinition *TaskDefinition `locationName:"taskDefinition" type:"structure"`
}
// String returns the string representation
func (s RegisterTaskDefinitionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterTaskDefinitionOutput) GoString() string {
return s.String()
}
// Describes the resources available for a container instance.
type Resource struct {
_ struct{} `type:"structure"`
// When the doubleValue type is set, the value of the resource must be a double
// precision floating-point type.
DoubleValue *float64 `locationName:"doubleValue" type:"double"`
// When the integerValue type is set, the value of the resource must be an integer.
IntegerValue *int64 `locationName:"integerValue" type:"integer"`
// When the longValue type is set, the value of the resource must be an extended
// precision floating-point type.
LongValue *int64 `locationName:"longValue" type:"long"`
// The name of the resource, such as CPU, MEMORY, PORTS, or a user-defined resource.
Name *string `locationName:"name" type:"string"`
// When the stringSetValue type is set, the value of the resource must be a
// string type.
StringSetValue []*string `locationName:"stringSetValue" type:"list"`
// The type of the resource, such as INTEGER, DOUBLE, LONG, or STRINGSET.
Type *string `locationName:"type" type:"string"`
}
// String returns the string representation
func (s Resource) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Resource) GoString() string {
return s.String()
}
type RunTaskInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster on which
// to run your task. If you do not specify a cluster, the default cluster is
// assumed..
Cluster *string `locationName:"cluster" type:"string"`
// The number of instantiations of the specified task to place on your cluster.
//
// The count parameter is limited to 10 tasks per call.
Count *int64 `locationName:"count" type:"integer"`
// A list of container overrides in JSON format that specify the name of a container
// in the specified task definition and the overrides it should receive. You
// can override the default command for a container (that is specified in the
// task definition or Docker image) with a command override. You can also override
// existing environment variables (that are specified in the task definition
// or Docker image) on a container or add new environment variables to it with
// an environment override.
//
// A total of 8192 characters are allowed for overrides. This limit includes
// the JSON formatting characters of the override structure.
Overrides *TaskOverride `locationName:"overrides" type:"structure"`
// An optional tag specified when a task is started. For example if you automatically
// trigger a task to run a batch process job, you could apply a unique identifier
// for that job to your task with the startedBy parameter. You can then identify
// which tasks belong to that job by filtering the results of a ListTasks call
// with the startedBy value.
//
// If a task is started by an Amazon ECS service, then the startedBy parameter
// contains the deployment ID of the service that starts it.
StartedBy *string `locationName:"startedBy" type:"string"`
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to run. If a revision is not specified, the latest
// ACTIVE revision is used.
TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"`
}
// String returns the string representation
func (s RunTaskInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RunTaskInput) GoString() string {
return s.String()
}
type RunTaskOutput struct {
_ struct{} `type:"structure"`
// Any failures associated with the call.
Failures []*Failure `locationName:"failures" type:"list"`
// A full description of the tasks that were run. Each task that was successfully
// placed on your cluster are described here.
Tasks []*Task `locationName:"tasks" type:"list"`
}
// String returns the string representation
func (s RunTaskOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RunTaskOutput) GoString() string {
return s.String()
}
// Details on a service within a cluster
type Service struct {
_ struct{} `type:"structure"`
// The Amazon Resource Name (ARN) of the of the cluster that hosts the service.
ClusterArn *string `locationName:"clusterArn" type:"string"`
// Optional deployment parameters that control how many tasks run during the
// deployment and the ordering of stopping and starting tasks.
DeploymentConfiguration *DeploymentConfiguration `locationName:"deploymentConfiguration" type:"structure"`
// The current state of deployments for the service.
Deployments []*Deployment `locationName:"deployments" type:"list"`
// The desired number of instantiations of the task definition to keep running
// on the service. This value is specified when the service is created with
// CreateService, and it can be modified with UpdateService.
DesiredCount *int64 `locationName:"desiredCount" type:"integer"`
// The event stream for your service. A maximum of 100 of the latest events
// are displayed.
Events []*ServiceEvent `locationName:"events" type:"list"`
// A list of load balancer objects, containing the load balancer name, the container
// name (as it appears in a container definition), and the container port to
// access from the load balancer.
LoadBalancers []*LoadBalancer `locationName:"loadBalancers" type:"list"`
// The number of tasks in the cluster that are in the PENDING state.
PendingCount *int64 `locationName:"pendingCount" type:"integer"`
// The Amazon Resource Name (ARN) of the IAM role associated with the service
// that allows the Amazon ECS container agent to register container instances
// with a load balancer.
RoleArn *string `locationName:"roleArn" type:"string"`
// The number of tasks in the cluster that are in the RUNNING state.
RunningCount *int64 `locationName:"runningCount" type:"integer"`
// The Amazon Resource Name (ARN) that identifies the service. The ARN contains
// the arn:aws:ecs namespace, followed by the region of the service, the AWS
// account ID of the service owner, the service namespace, and then the service
// name. For example, arn:aws:ecs:region:012345678910:service/my-service.
ServiceArn *string `locationName:"serviceArn" type:"string"`
// The name of your service. Up to 255 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed. Service names must be unique within
// a cluster, but you can have similarly named services in multiple clusters
// within a region or across multiple regions.
ServiceName *string `locationName:"serviceName" type:"string"`
// The status of the service. The valid values are ACTIVE, DRAINING, or INACTIVE.
Status *string `locationName:"status" type:"string"`
// The task definition to use for tasks in the service. This value is specified
// when the service is created with CreateService, and it can be modified with
// UpdateService.
TaskDefinition *string `locationName:"taskDefinition" type:"string"`
}
// String returns the string representation
func (s Service) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Service) GoString() string {
return s.String()
}
// Details on an event associated with a service.
type ServiceEvent struct {
_ struct{} `type:"structure"`
// The Unix time in seconds and milliseconds when the event was triggered.
CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" timestampFormat:"unix"`
// The ID string of the event.
Id *string `locationName:"id" type:"string"`
// The event message.
Message *string `locationName:"message" type:"string"`
}
// String returns the string representation
func (s ServiceEvent) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ServiceEvent) GoString() string {
return s.String()
}
type StartTaskInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster on which
// to start your task. If you do not specify a cluster, the default cluster
// is assumed..
Cluster *string `locationName:"cluster" type:"string"`
// The container instance IDs or full Amazon Resource Name (ARN) entries for
// the container instances on which you would like to place your task.
//
// The list of container instances to start tasks on is limited to 10.
ContainerInstances []*string `locationName:"containerInstances" type:"list" required:"true"`
// A list of container overrides in JSON format that specify the name of a container
// in the specified task definition and the overrides it should receive. You
// can override the default command for a container (that is specified in the
// task definition or Docker image) with a command override. You can also override
// existing environment variables (that are specified in the task definition
// or Docker image) on a container or add new environment variables to it with
// an environment override.
//
// A total of 8192 characters are allowed for overrides. This limit includes
// the JSON formatting characters of the override structure.
Overrides *TaskOverride `locationName:"overrides" type:"structure"`
// An optional tag specified when a task is started. For example if you automatically
// trigger a task to run a batch process job, you could apply a unique identifier
// for that job to your task with the startedBy parameter. You can then identify
// which tasks belong to that job by filtering the results of a ListTasks call
// with the startedBy value.
//
// If a task is started by an Amazon ECS service, then the startedBy parameter
// contains the deployment ID of the service that starts it.
StartedBy *string `locationName:"startedBy" type:"string"`
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to start. If a revision is not specified, the latest
// ACTIVE revision is used.
TaskDefinition *string `locationName:"taskDefinition" type:"string" required:"true"`
}
// String returns the string representation
func (s StartTaskInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s StartTaskInput) GoString() string {
return s.String()
}
type StartTaskOutput struct {
_ struct{} `type:"structure"`
// Any failures associated with the call.
Failures []*Failure `locationName:"failures" type:"list"`
// A full description of the tasks that were started. Each task that was successfully
// placed on your container instances are described here.
Tasks []*Task `locationName:"tasks" type:"list"`
}
// String returns the string representation
func (s StartTaskOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s StartTaskOutput) GoString() string {
return s.String()
}
type StopTaskInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the task to stop. If you do not specify a cluster, the default cluster is
// assumed..
Cluster *string `locationName:"cluster" type:"string"`
// An optional message specified when a task is stopped. For example, if you
// are using a custom scheduler, you can use this parameter to specify the reason
// for stopping the task here, and the message will appear in subsequent DescribeTasks
// API operations on this task. Up to 255 characters are allowed in this message.
Reason *string `locationName:"reason" type:"string"`
// The task ID or full Amazon Resource Name (ARN) entry of the task to stop.
Task *string `locationName:"task" type:"string" required:"true"`
}
// String returns the string representation
func (s StopTaskInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s StopTaskInput) GoString() string {
return s.String()
}
type StopTaskOutput struct {
_ struct{} `type:"structure"`
// Details on a task in a cluster.
Task *Task `locationName:"task" type:"structure"`
}
// String returns the string representation
func (s StopTaskOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s StopTaskOutput) GoString() string {
return s.String()
}
type SubmitContainerStateChangeInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the container.
Cluster *string `locationName:"cluster" type:"string"`
// The name of the container.
ContainerName *string `locationName:"containerName" type:"string"`
// The exit code returned for the state change request.
ExitCode *int64 `locationName:"exitCode" type:"integer"`
// The network bindings of the container.
NetworkBindings []*NetworkBinding `locationName:"networkBindings" type:"list"`
// The reason for the state change request.
Reason *string `locationName:"reason" type:"string"`
// The status of the state change request.
Status *string `locationName:"status" type:"string"`
// The task ID or full Amazon Resource Name (ARN) of the task that hosts the
// container.
Task *string `locationName:"task" type:"string"`
}
// String returns the string representation
func (s SubmitContainerStateChangeInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SubmitContainerStateChangeInput) GoString() string {
return s.String()
}
type SubmitContainerStateChangeOutput struct {
_ struct{} `type:"structure"`
// Acknowledgement of the state change.
Acknowledgment *string `locationName:"acknowledgment" type:"string"`
}
// String returns the string representation
func (s SubmitContainerStateChangeOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SubmitContainerStateChangeOutput) GoString() string {
return s.String()
}
type SubmitTaskStateChangeInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that hosts
// the task.
Cluster *string `locationName:"cluster" type:"string"`
// The reason for the state change request.
Reason *string `locationName:"reason" type:"string"`
// The status of the state change request.
Status *string `locationName:"status" type:"string"`
// The task ID or full Amazon Resource Name (ARN) of the task in the state change
// request.
Task *string `locationName:"task" type:"string"`
}
// String returns the string representation
func (s SubmitTaskStateChangeInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SubmitTaskStateChangeInput) GoString() string {
return s.String()
}
type SubmitTaskStateChangeOutput struct {
_ struct{} `type:"structure"`
// Acknowledgement of the state change.
Acknowledgment *string `locationName:"acknowledgment" type:"string"`
}
// String returns the string representation
func (s SubmitTaskStateChangeOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SubmitTaskStateChangeOutput) GoString() string {
return s.String()
}
// Details on a task in a cluster.
type Task struct {
_ struct{} `type:"structure"`
// The Amazon Resource Name (ARN) of the of the cluster that hosts the task.
ClusterArn *string `locationName:"clusterArn" type:"string"`
// The Amazon Resource Name (ARN) of the container instances that host the task.
ContainerInstanceArn *string `locationName:"containerInstanceArn" type:"string"`
// The containers associated with the task.
Containers []*Container `locationName:"containers" type:"list"`
// The Unix time in seconds and milliseconds when the task was created (the
// task entered the PENDING state).
CreatedAt *time.Time `locationName:"createdAt" type:"timestamp" timestampFormat:"unix"`
// The desired status of the task.
DesiredStatus *string `locationName:"desiredStatus" type:"string"`
// The last known status of the task.
LastStatus *string `locationName:"lastStatus" type:"string"`
// One or more container overrides.
Overrides *TaskOverride `locationName:"overrides" type:"structure"`
// The Unix time in seconds and milliseconds when the task was started (the
// task transitioned from the PENDING state to the RUNNING state).
StartedAt *time.Time `locationName:"startedAt" type:"timestamp" timestampFormat:"unix"`
// The tag specified when a task is started. If the task is started by an Amazon
// ECS service, then the startedBy parameter contains the deployment ID of the
// service that starts it.
StartedBy *string `locationName:"startedBy" type:"string"`
// The Unix time in seconds and milliseconds when the task was stopped (the
// task transitioned from the RUNNING state to the STOPPED state).
StoppedAt *time.Time `locationName:"stoppedAt" type:"timestamp" timestampFormat:"unix"`
// The reason the task was stopped.
StoppedReason *string `locationName:"stoppedReason" type:"string"`
// The Amazon Resource Name (ARN) of the task.
TaskArn *string `locationName:"taskArn" type:"string"`
// The Amazon Resource Name (ARN) of the of the task definition that creates
// the task.
TaskDefinitionArn *string `locationName:"taskDefinitionArn" type:"string"`
}
// String returns the string representation
func (s Task) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Task) GoString() string {
return s.String()
}
// Details of a task definition.
type TaskDefinition struct {
_ struct{} `type:"structure"`
// A list of container definitions in JSON format that describe the different
// containers that make up your task. For more information about container definition
// parameters and defaults, see Amazon ECS Task Definitions (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html)
// in the Amazon EC2 Container Service Developer Guide.
ContainerDefinitions []*ContainerDefinition `locationName:"containerDefinitions" type:"list"`
// The family of your task definition, used as the definition name.
Family *string `locationName:"family" type:"string"`
// The container instance attributes required by your task.
RequiresAttributes []*Attribute `locationName:"requiresAttributes" type:"list"`
// The revision of the task in a particular family. The revision is a version
// number of a task definition in a family. When you register a task definition
// for the first time, the revision is 1; each time you register a new revision
// of a task definition in the same family, the revision value always increases
// by one (even if you have deregistered previous revisions in this family).
Revision *int64 `locationName:"revision" type:"integer"`
// The status of the task definition.
Status *string `locationName:"status" type:"string" enum:"TaskDefinitionStatus"`
// The full Amazon Resource Name (ARN) of the of the task definition.
TaskDefinitionArn *string `locationName:"taskDefinitionArn" type:"string"`
// The list of volumes in a task. For more information about volume definition
// parameters and defaults, see Amazon ECS Task Definitions (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html)
// in the Amazon EC2 Container Service Developer Guide.
Volumes []*Volume `locationName:"volumes" type:"list"`
}
// String returns the string representation
func (s TaskDefinition) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s TaskDefinition) GoString() string {
return s.String()
}
// The overrides associated with a task.
type TaskOverride struct {
_ struct{} `type:"structure"`
// One or more container overrides sent to a task.
ContainerOverrides []*ContainerOverride `locationName:"containerOverrides" type:"list"`
}
// String returns the string representation
func (s TaskOverride) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s TaskOverride) GoString() string {
return s.String()
}
// The ulimit settings to pass to the container.
type Ulimit struct {
_ struct{} `type:"structure"`
// The hard limit for the ulimit type.
HardLimit *int64 `locationName:"hardLimit" type:"integer" required:"true"`
// The type of the ulimit.
Name *string `locationName:"name" type:"string" required:"true" enum:"UlimitName"`
// The soft limit for the ulimit type.
SoftLimit *int64 `locationName:"softLimit" type:"integer" required:"true"`
}
// String returns the string representation
func (s Ulimit) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Ulimit) GoString() string {
return s.String()
}
type UpdateContainerAgentInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that your
// container instance is running on. If you do not specify a cluster, the default
// cluster is assumed.
Cluster *string `locationName:"cluster" type:"string"`
// The container instance ID or full Amazon Resource Name (ARN) entries for
// the container instance on which you would like to update the Amazon ECS container
// agent.
ContainerInstance *string `locationName:"containerInstance" type:"string" required:"true"`
}
// String returns the string representation
func (s UpdateContainerAgentInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateContainerAgentInput) GoString() string {
return s.String()
}
type UpdateContainerAgentOutput struct {
_ struct{} `type:"structure"`
// An EC2 instance that is running the Amazon ECS agent and has been registered
// with a cluster.
ContainerInstance *ContainerInstance `locationName:"containerInstance" type:"structure"`
}
// String returns the string representation
func (s UpdateContainerAgentOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateContainerAgentOutput) GoString() string {
return s.String()
}
type UpdateServiceInput struct {
_ struct{} `type:"structure"`
// The short name or full Amazon Resource Name (ARN) of the cluster that your
// service is running on. If you do not specify a cluster, the default cluster
// is assumed.
Cluster *string `locationName:"cluster" type:"string"`
// Optional deployment parameters that control how many tasks run during the
// deployment and the ordering of stopping and starting tasks.
DeploymentConfiguration *DeploymentConfiguration `locationName:"deploymentConfiguration" type:"structure"`
// The number of instantiations of the task to place and keep running in your
// service.
DesiredCount *int64 `locationName:"desiredCount" type:"integer"`
// The name of the service to update.
Service *string `locationName:"service" type:"string" required:"true"`
// The family and revision (family:revision) or full Amazon Resource Name (ARN)
// of the task definition to run in your service. If a revision is not specified,
// the latest ACTIVE revision is used. If you modify the task definition with
// UpdateService, Amazon ECS spawns a task with the new version of the task
// definition and then stops an old task after the new version is running.
TaskDefinition *string `locationName:"taskDefinition" type:"string"`
}
// String returns the string representation
func (s UpdateServiceInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateServiceInput) GoString() string {
return s.String()
}
type UpdateServiceOutput struct {
_ struct{} `type:"structure"`
// The full description of your service following the update call.
Service *Service `locationName:"service" type:"structure"`
}
// String returns the string representation
func (s UpdateServiceOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateServiceOutput) GoString() string {
return s.String()
}
// The Docker and Amazon ECS container agent version information about a container
// instance.
type VersionInfo struct {
_ struct{} `type:"structure"`
// The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent
// (https://github.com/aws/amazon-ecs-agent/commits/master) GitHub repository.
AgentHash *string `locationName:"agentHash" type:"string"`
// The version number of the Amazon ECS container agent.
AgentVersion *string `locationName:"agentVersion" type:"string"`
// The Docker version running on the container instance.
DockerVersion *string `locationName:"dockerVersion" type:"string"`
}
// String returns the string representation
func (s VersionInfo) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s VersionInfo) GoString() string {
return s.String()
}
// A data volume used in a task definition.
type Volume struct {
_ struct{} `type:"structure"`
// The contents of the host parameter determine whether your data volume persists
// on the host container instance and where it is stored. If the host parameter
// is empty, then the Docker daemon assigns a host path for your data volume,
// but the data is not guaranteed to persist after the containers associated
// with it stop running.
Host *HostVolumeProperties `locationName:"host" type:"structure"`
// The name of the volume. Up to 255 letters (uppercase and lowercase), numbers,
// hyphens, and underscores are allowed. This name is referenced in the sourceVolume
// parameter of container definition mountPoints.
Name *string `locationName:"name" type:"string"`
}
// String returns the string representation
func (s Volume) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Volume) GoString() string {
return s.String()
}
// Details on a data volume from another container.
type VolumeFrom struct {
_ struct{} `type:"structure"`
// If this value is true, the container has read-only access to the volume.
// If this value is false, then the container can write to the volume. The default
// value is false.
ReadOnly *bool `locationName:"readOnly" type:"boolean"`
// The name of the container to mount volumes from.
SourceContainer *string `locationName:"sourceContainer" type:"string"`
}
// String returns the string representation
func (s VolumeFrom) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s VolumeFrom) GoString() string {
return s.String()
}
const (
// @enum AgentUpdateStatus
AgentUpdateStatusPending = "PENDING"
// @enum AgentUpdateStatus
AgentUpdateStatusStaging = "STAGING"
// @enum AgentUpdateStatus
AgentUpdateStatusStaged = "STAGED"
// @enum AgentUpdateStatus
AgentUpdateStatusUpdating = "UPDATING"
// @enum AgentUpdateStatus
AgentUpdateStatusUpdated = "UPDATED"
// @enum AgentUpdateStatus
AgentUpdateStatusFailed = "FAILED"
)
const (
// @enum DesiredStatus
DesiredStatusRunning = "RUNNING"
// @enum DesiredStatus
DesiredStatusPending = "PENDING"
// @enum DesiredStatus
DesiredStatusStopped = "STOPPED"
)
const (
// @enum LogDriver
LogDriverJsonFile = "json-file"
// @enum LogDriver
LogDriverSyslog = "syslog"
// @enum LogDriver
LogDriverJournald = "journald"
// @enum LogDriver
LogDriverGelf = "gelf"
// @enum LogDriver
LogDriverFluentd = "fluentd"
)
const (
// @enum SortOrder
SortOrderAsc = "ASC"
// @enum SortOrder
SortOrderDesc = "DESC"
)
const (
// @enum TaskDefinitionStatus
TaskDefinitionStatusActive = "ACTIVE"
// @enum TaskDefinitionStatus
TaskDefinitionStatusInactive = "INACTIVE"
)
const (
// @enum TransportProtocol
TransportProtocolTcp = "tcp"
// @enum TransportProtocol
TransportProtocolUdp = "udp"
)
const (
// @enum UlimitName
UlimitNameCore = "core"
// @enum UlimitName
UlimitNameCpu = "cpu"
// @enum UlimitName
UlimitNameData = "data"
// @enum UlimitName
UlimitNameFsize = "fsize"
// @enum UlimitName
UlimitNameLocks = "locks"
// @enum UlimitName
UlimitNameMemlock = "memlock"
// @enum UlimitName
UlimitNameMsgqueue = "msgqueue"
// @enum UlimitName
UlimitNameNice = "nice"
// @enum UlimitName
UlimitNameNofile = "nofile"
// @enum UlimitName
UlimitNameNproc = "nproc"
// @enum UlimitName
UlimitNameRss = "rss"
// @enum UlimitName
UlimitNameRtprio = "rtprio"
// @enum UlimitName
UlimitNameRttime = "rttime"
// @enum UlimitName
UlimitNameSigpending = "sigpending"
// @enum UlimitName
UlimitNameStack = "stack"
)
|