1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836
|
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package gamelift provides a client for Amazon GameLift.
package gamelift
import (
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/private/protocol"
"github.com/aws/aws-sdk-go/private/protocol/jsonrpc"
)
const opCreateAlias = "CreateAlias"
// CreateAliasRequest generates a request for the CreateAlias operation.
func (c *GameLift) CreateAliasRequest(input *CreateAliasInput) (req *request.Request, output *CreateAliasOutput) {
op := &request.Operation{
Name: opCreateAlias,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateAliasInput{}
}
req = c.newRequest(op, input, output)
output = &CreateAliasOutput{}
req.Data = output
return
}
// Creates an alias for a fleet. You can use an alias to anonymize your fleet
// by referencing an alias instead of a specific fleet when you create game
// sessions. Amazon GameLift supports two types of routing strategies for aliases:
// simple and terminal. Use a simple alias to point to an active fleet. Use
// a terminal alias to display a message to incoming traffic instead of routing
// players to an active fleet. This option is useful when a game server is no
// longer supported but you want to provide better messaging than a standard
// 404 error.
//
// To create a fleet alias, specify an alias name, routing strategy, and optional
// description. If successful, a new alias record is returned, including an
// alias ID, which you can reference when creating a game session. To reassign
// the alias to another fleet ID, call UpdateAlias.
func (c *GameLift) CreateAlias(input *CreateAliasInput) (*CreateAliasOutput, error) {
req, out := c.CreateAliasRequest(input)
err := req.Send()
return out, err
}
const opCreateBuild = "CreateBuild"
// CreateBuildRequest generates a request for the CreateBuild operation.
func (c *GameLift) CreateBuildRequest(input *CreateBuildInput) (req *request.Request, output *CreateBuildOutput) {
op := &request.Operation{
Name: opCreateBuild,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateBuildInput{}
}
req = c.newRequest(op, input, output)
output = &CreateBuildOutput{}
req.Data = output
return
}
// Initializes a new build record and generates information required to upload
// a game build to Amazon GameLift. Once the build record has been created and
// is in an INITIALIZED state, you can upload your game build.
//
// To create a build, use the CLI command upload-build, which creates a new
// build record and uploads the build files in one step. (See the Amazon GameLift
// Developer Guide (http://docs.aws.amazon.com/gamelift/latest/developerguide/)
// for more details on the CLI and the upload process.) Call the CreateBuild
// action only if you have your own Amazon Simple Storage Service (Amazon S3)
// client and need to manually upload your build files.
//
// To create a new build, optionally specify a build name and version. This
// metadata is stored with other properties in the build record and is displayed
// in the GameLift console (but not visible to players). If successful, this
// action returns the newly created build record along with an Amazon S3 storage
// location and AWS account credentials. Use the location and credentials to
// upload your game build.
func (c *GameLift) CreateBuild(input *CreateBuildInput) (*CreateBuildOutput, error) {
req, out := c.CreateBuildRequest(input)
err := req.Send()
return out, err
}
const opCreateFleet = "CreateFleet"
// CreateFleetRequest generates a request for the CreateFleet operation.
func (c *GameLift) CreateFleetRequest(input *CreateFleetInput) (req *request.Request, output *CreateFleetOutput) {
op := &request.Operation{
Name: opCreateFleet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateFleetInput{}
}
req = c.newRequest(op, input, output)
output = &CreateFleetOutput{}
req.Data = output
return
}
// Creates a new fleet to host game servers. A fleet consists of a set of Amazon
// Elastic Compute Cloud (Amazon EC2) instances of a certain type, which defines
// the CPU, memory, storage, and networking capacity of each host in the fleet.
// See Amazon EC2 Instance Types (https://aws.amazon.com/ec2/instance-types/)
// for more information. Each instance in the fleet hosts a game server created
// from the specified game build. Once a fleet is in an ACTIVE state, it can
// begin hosting game sessions.
//
// To create a new fleet, provide a name and the EC2 instance type for the
// new fleet, and specify the build and server launch path. Builds must be in
// a READY state before they can be used to build fleets. When configuring the
// new fleet, you can optionally (1) provide a set of launch parameters to be
// passed to a game server when activated; (2) limit incoming traffic to a specified
// range of IP addresses and port numbers; (3) set game session protection for
// all instances in the fleet, and (4) configure Amazon GameLift to store game
// session logs by specifying the path to the logs stored in your game server
// files. If the call is successful, Amazon GameLift performs the following
// tasks:
//
// Creates a fleet record and sets the state to NEW. Sets the fleet's capacity
// to 1 "desired" and 1 "active" EC2 instance count. Creates an EC2 instance
// and begins the process of initializing the fleet and activating a game server
// on the instance. Begins writing events to the fleet event log, which can
// be accessed in the GameLift console. Once a fleet is created, use the following
// actions to change certain fleet properties (server launch parameters and
// log paths cannot be changed):
//
// UpdateFleetAttributes -- Update fleet metadata, including name and description.
// UpdateFleetCapacity -- Increase or decrease the number of instances you
// want the fleet to maintain. UpdateFleetPortSettings -- Change the IP addresses
// and ports that allow access to incoming traffic.
func (c *GameLift) CreateFleet(input *CreateFleetInput) (*CreateFleetOutput, error) {
req, out := c.CreateFleetRequest(input)
err := req.Send()
return out, err
}
const opCreateGameSession = "CreateGameSession"
// CreateGameSessionRequest generates a request for the CreateGameSession operation.
func (c *GameLift) CreateGameSessionRequest(input *CreateGameSessionInput) (req *request.Request, output *CreateGameSessionOutput) {
op := &request.Operation{
Name: opCreateGameSession,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateGameSessionInput{}
}
req = c.newRequest(op, input, output)
output = &CreateGameSessionOutput{}
req.Data = output
return
}
// Creates a multiplayer game session for players. This action creates a game
// session record and assigns the new session to an instance in the specified
// fleet, which activates the server initialization process in your game server.
// A fleet must be in an ACTIVE state before a game session can be created for
// it.
//
// To create a game session, specify either a fleet ID or an alias ID and indicate
// the maximum number of players the game session allows. You can also provide
// a name and a set of properties for your game (optional). If successful, a
// GameSession object is returned containing session properties, including an
// IP address. By default, newly created game sessions are set to accept adding
// any new players to the game session. Use UpdateGameSession to change the
// creation policy.
func (c *GameLift) CreateGameSession(input *CreateGameSessionInput) (*CreateGameSessionOutput, error) {
req, out := c.CreateGameSessionRequest(input)
err := req.Send()
return out, err
}
const opCreatePlayerSession = "CreatePlayerSession"
// CreatePlayerSessionRequest generates a request for the CreatePlayerSession operation.
func (c *GameLift) CreatePlayerSessionRequest(input *CreatePlayerSessionInput) (req *request.Request, output *CreatePlayerSessionOutput) {
op := &request.Operation{
Name: opCreatePlayerSession,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreatePlayerSessionInput{}
}
req = c.newRequest(op, input, output)
output = &CreatePlayerSessionOutput{}
req.Data = output
return
}
// Adds a player to a game session and creates a player session record. A game
// session must be in an ACTIVE state, have a creation policy of ALLOW_ALL,
// and have an open player slot before players can be added to the session.
//
// To create a player session, specify a game session ID and player ID. If
// successful, the player is added to the game session and a new PlayerSession
// object is returned.
func (c *GameLift) CreatePlayerSession(input *CreatePlayerSessionInput) (*CreatePlayerSessionOutput, error) {
req, out := c.CreatePlayerSessionRequest(input)
err := req.Send()
return out, err
}
const opCreatePlayerSessions = "CreatePlayerSessions"
// CreatePlayerSessionsRequest generates a request for the CreatePlayerSessions operation.
func (c *GameLift) CreatePlayerSessionsRequest(input *CreatePlayerSessionsInput) (req *request.Request, output *CreatePlayerSessionsOutput) {
op := &request.Operation{
Name: opCreatePlayerSessions,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreatePlayerSessionsInput{}
}
req = c.newRequest(op, input, output)
output = &CreatePlayerSessionsOutput{}
req.Data = output
return
}
// Adds a group of players to a game session. Similar to CreatePlayerSession,
// this action allows you to add multiple players in a single call, which is
// useful for games that provide party and/or matchmaking features. A game session
// must be in an ACTIVE state, have a creation policy of ALLOW_ALL, and have
// an open player slot before players can be added to the session.
//
// To create player sessions, specify a game session ID and a list of player
// IDs. If successful, the players are added to the game session and a set of
// new PlayerSession objects is returned.
func (c *GameLift) CreatePlayerSessions(input *CreatePlayerSessionsInput) (*CreatePlayerSessionsOutput, error) {
req, out := c.CreatePlayerSessionsRequest(input)
err := req.Send()
return out, err
}
const opDeleteAlias = "DeleteAlias"
// DeleteAliasRequest generates a request for the DeleteAlias operation.
func (c *GameLift) DeleteAliasRequest(input *DeleteAliasInput) (req *request.Request, output *DeleteAliasOutput) {
op := &request.Operation{
Name: opDeleteAlias,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteAliasInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteAliasOutput{}
req.Data = output
return
}
// Deletes an alias. This action removes all record of the alias; game clients
// attempting to access a game server using the deleted alias receive an error.
// To delete an alias, specify the alias ID to be deleted.
func (c *GameLift) DeleteAlias(input *DeleteAliasInput) (*DeleteAliasOutput, error) {
req, out := c.DeleteAliasRequest(input)
err := req.Send()
return out, err
}
const opDeleteBuild = "DeleteBuild"
// DeleteBuildRequest generates a request for the DeleteBuild operation.
func (c *GameLift) DeleteBuildRequest(input *DeleteBuildInput) (req *request.Request, output *DeleteBuildOutput) {
op := &request.Operation{
Name: opDeleteBuild,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteBuildInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteBuildOutput{}
req.Data = output
return
}
// Deletes a build. This action permanently deletes the build record and any
// uploaded build files.
//
// To delete a build, specify its ID. Deleting a build does not affect the
// status of any active fleets, but you can no longer create new fleets for
// the deleted build.
func (c *GameLift) DeleteBuild(input *DeleteBuildInput) (*DeleteBuildOutput, error) {
req, out := c.DeleteBuildRequest(input)
err := req.Send()
return out, err
}
const opDeleteFleet = "DeleteFleet"
// DeleteFleetRequest generates a request for the DeleteFleet operation.
func (c *GameLift) DeleteFleetRequest(input *DeleteFleetInput) (req *request.Request, output *DeleteFleetOutput) {
op := &request.Operation{
Name: opDeleteFleet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteFleetInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteFleetOutput{}
req.Data = output
return
}
// Deletes everything related to a fleet. Before deleting a fleet, you must
// set the fleet's desired capacity to zero. See UpdateFleetCapacity.
//
// This action removes the fleet's resources and the fleet record. Once a fleet
// is deleted, you can no longer use that fleet.
func (c *GameLift) DeleteFleet(input *DeleteFleetInput) (*DeleteFleetOutput, error) {
req, out := c.DeleteFleetRequest(input)
err := req.Send()
return out, err
}
const opDeleteScalingPolicy = "DeleteScalingPolicy"
// DeleteScalingPolicyRequest generates a request for the DeleteScalingPolicy operation.
func (c *GameLift) DeleteScalingPolicyRequest(input *DeleteScalingPolicyInput) (req *request.Request, output *DeleteScalingPolicyOutput) {
op := &request.Operation{
Name: opDeleteScalingPolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteScalingPolicyInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteScalingPolicyOutput{}
req.Data = output
return
}
// Deletes a fleet scaling policy. This action means that the policy is no longer
// in force and removes all record of it. To delete a scaling policy, specify
// both the scaling policy name and the fleet ID it is associated with.
func (c *GameLift) DeleteScalingPolicy(input *DeleteScalingPolicyInput) (*DeleteScalingPolicyOutput, error) {
req, out := c.DeleteScalingPolicyRequest(input)
err := req.Send()
return out, err
}
const opDescribeAlias = "DescribeAlias"
// DescribeAliasRequest generates a request for the DescribeAlias operation.
func (c *GameLift) DescribeAliasRequest(input *DescribeAliasInput) (req *request.Request, output *DescribeAliasOutput) {
op := &request.Operation{
Name: opDescribeAlias,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeAliasInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeAliasOutput{}
req.Data = output
return
}
// Retrieves properties for a specified alias. To get the alias, specify an
// alias ID. If successful, an Alias object is returned.
func (c *GameLift) DescribeAlias(input *DescribeAliasInput) (*DescribeAliasOutput, error) {
req, out := c.DescribeAliasRequest(input)
err := req.Send()
return out, err
}
const opDescribeBuild = "DescribeBuild"
// DescribeBuildRequest generates a request for the DescribeBuild operation.
func (c *GameLift) DescribeBuildRequest(input *DescribeBuildInput) (req *request.Request, output *DescribeBuildOutput) {
op := &request.Operation{
Name: opDescribeBuild,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeBuildInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeBuildOutput{}
req.Data = output
return
}
// Retrieves properties for a build. To get a build record, specify a build
// ID. If successful, an object containing the build properties is returned.
func (c *GameLift) DescribeBuild(input *DescribeBuildInput) (*DescribeBuildOutput, error) {
req, out := c.DescribeBuildRequest(input)
err := req.Send()
return out, err
}
const opDescribeEC2InstanceLimits = "DescribeEC2InstanceLimits"
// DescribeEC2InstanceLimitsRequest generates a request for the DescribeEC2InstanceLimits operation.
func (c *GameLift) DescribeEC2InstanceLimitsRequest(input *DescribeEC2InstanceLimitsInput) (req *request.Request, output *DescribeEC2InstanceLimitsOutput) {
op := &request.Operation{
Name: opDescribeEC2InstanceLimits,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeEC2InstanceLimitsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeEC2InstanceLimitsOutput{}
req.Data = output
return
}
// Retrieves the following information for the specified EC2 instance type:
//
// maximum number of instances allowed per AWS account (service limit) current
// usage level for the AWS account Service limits vary depending on region.
// Available regions for GameLift can be found in the AWS Management Console
// for GameLift (see the drop-down list in the upper right corner).
func (c *GameLift) DescribeEC2InstanceLimits(input *DescribeEC2InstanceLimitsInput) (*DescribeEC2InstanceLimitsOutput, error) {
req, out := c.DescribeEC2InstanceLimitsRequest(input)
err := req.Send()
return out, err
}
const opDescribeFleetAttributes = "DescribeFleetAttributes"
// DescribeFleetAttributesRequest generates a request for the DescribeFleetAttributes operation.
func (c *GameLift) DescribeFleetAttributesRequest(input *DescribeFleetAttributesInput) (req *request.Request, output *DescribeFleetAttributesOutput) {
op := &request.Operation{
Name: opDescribeFleetAttributes,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeFleetAttributesInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeFleetAttributesOutput{}
req.Data = output
return
}
// Retrieves fleet properties, including metadata, status, and configuration,
// for one or more fleets. You can request attributes for all fleets, or specify
// a list of one or more fleet IDs. When requesting all fleets, use the pagination
// parameters to retrieve results as a set of sequential pages. If successful,
// a FleetAttributes object is returned for each requested fleet ID. When specifying
// a list of fleet IDs, attribute objects are returned only for fleets that
// currently exist.
//
// Some API actions may limit the number of fleet IDs allowed in one request.
// If a request exceeds this limit, the request fails and the error message
// includes the maximum allowed.
func (c *GameLift) DescribeFleetAttributes(input *DescribeFleetAttributesInput) (*DescribeFleetAttributesOutput, error) {
req, out := c.DescribeFleetAttributesRequest(input)
err := req.Send()
return out, err
}
const opDescribeFleetCapacity = "DescribeFleetCapacity"
// DescribeFleetCapacityRequest generates a request for the DescribeFleetCapacity operation.
func (c *GameLift) DescribeFleetCapacityRequest(input *DescribeFleetCapacityInput) (req *request.Request, output *DescribeFleetCapacityOutput) {
op := &request.Operation{
Name: opDescribeFleetCapacity,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeFleetCapacityInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeFleetCapacityOutput{}
req.Data = output
return
}
// Retrieves the current status of fleet capacity for one or more fleets. This
// information includes the number of instances that have been requested for
// the fleet and the number currently active. You can request capacity for all
// fleets, or specify a list of one or more fleet IDs. When requesting all fleets,
// use the pagination parameters to retrieve results as a set of sequential
// pages. If successful, a FleetCapacity object is returned for each requested
// fleet ID. When specifying a list of fleet IDs, attribute objects are returned
// only for fleets that currently exist.
//
// Some API actions may limit the number of fleet IDs allowed in one request.
// If a request exceeds this limit, the request fails and the error message
// includes the maximum allowed.
func (c *GameLift) DescribeFleetCapacity(input *DescribeFleetCapacityInput) (*DescribeFleetCapacityOutput, error) {
req, out := c.DescribeFleetCapacityRequest(input)
err := req.Send()
return out, err
}
const opDescribeFleetEvents = "DescribeFleetEvents"
// DescribeFleetEventsRequest generates a request for the DescribeFleetEvents operation.
func (c *GameLift) DescribeFleetEventsRequest(input *DescribeFleetEventsInput) (req *request.Request, output *DescribeFleetEventsOutput) {
op := &request.Operation{
Name: opDescribeFleetEvents,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeFleetEventsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeFleetEventsOutput{}
req.Data = output
return
}
// Retrieves entries from the fleet event log. You can specify a time range
// to limit the result set. Use the pagination parameters to retrieve results
// as a set of sequential pages. If successful, a collection of event log entries
// matching the request are returned.
func (c *GameLift) DescribeFleetEvents(input *DescribeFleetEventsInput) (*DescribeFleetEventsOutput, error) {
req, out := c.DescribeFleetEventsRequest(input)
err := req.Send()
return out, err
}
const opDescribeFleetPortSettings = "DescribeFleetPortSettings"
// DescribeFleetPortSettingsRequest generates a request for the DescribeFleetPortSettings operation.
func (c *GameLift) DescribeFleetPortSettingsRequest(input *DescribeFleetPortSettingsInput) (req *request.Request, output *DescribeFleetPortSettingsOutput) {
op := &request.Operation{
Name: opDescribeFleetPortSettings,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeFleetPortSettingsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeFleetPortSettingsOutput{}
req.Data = output
return
}
// Retrieves the port settings for a fleet. Port settings are used to limit
// incoming traffic access to game servers in the fleet. To get a fleet's port
// settings, specify a fleet ID. If successful, an IpPermission object is returned
// for the requested fleet ID. If the requested fleet has been deleted, the
// result set will be empty.
func (c *GameLift) DescribeFleetPortSettings(input *DescribeFleetPortSettingsInput) (*DescribeFleetPortSettingsOutput, error) {
req, out := c.DescribeFleetPortSettingsRequest(input)
err := req.Send()
return out, err
}
const opDescribeFleetUtilization = "DescribeFleetUtilization"
// DescribeFleetUtilizationRequest generates a request for the DescribeFleetUtilization operation.
func (c *GameLift) DescribeFleetUtilizationRequest(input *DescribeFleetUtilizationInput) (req *request.Request, output *DescribeFleetUtilizationOutput) {
op := &request.Operation{
Name: opDescribeFleetUtilization,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeFleetUtilizationInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeFleetUtilizationOutput{}
req.Data = output
return
}
// Retrieves utilization statistics for one or more fleets. You can request
// utilization data for all fleets, or specify a list of one or more fleet IDs.
// When requesting all fleets, use the pagination parameters to retrieve results
// as a set of sequential pages. If successful, a FleetUtilization object is
// returned for each requested fleet ID. When specifying a list of fleet IDs,
// utilization objects are returned only for fleets that currently exist.
//
// Some API actions may limit the number of fleet IDs allowed in one request.
// If a request exceeds this limit, the request fails and the error message
// includes the maximum allowed.
func (c *GameLift) DescribeFleetUtilization(input *DescribeFleetUtilizationInput) (*DescribeFleetUtilizationOutput, error) {
req, out := c.DescribeFleetUtilizationRequest(input)
err := req.Send()
return out, err
}
const opDescribeGameSessionDetails = "DescribeGameSessionDetails"
// DescribeGameSessionDetailsRequest generates a request for the DescribeGameSessionDetails operation.
func (c *GameLift) DescribeGameSessionDetailsRequest(input *DescribeGameSessionDetailsInput) (req *request.Request, output *DescribeGameSessionDetailsOutput) {
op := &request.Operation{
Name: opDescribeGameSessionDetails,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeGameSessionDetailsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeGameSessionDetailsOutput{}
req.Data = output
return
}
// Retrieves properties, including the protection policy in force, for one or
// more game sessions. This action can be used in several ways: (1) provide
// a GameSessionId to request details for a specific game session; (2) provide
// either a FleetId or an AliasId to request properties for all game sessions
// running on a fleet.
//
// To get game session record(s), specify just one of the following: game session
// ID, fleet ID, or alias ID. You can filter this request by game session status.
// Use the pagination parameters to retrieve results as a set of sequential
// pages. If successful, a GameSessionDetail object is returned for each session
// matching the request.
func (c *GameLift) DescribeGameSessionDetails(input *DescribeGameSessionDetailsInput) (*DescribeGameSessionDetailsOutput, error) {
req, out := c.DescribeGameSessionDetailsRequest(input)
err := req.Send()
return out, err
}
const opDescribeGameSessions = "DescribeGameSessions"
// DescribeGameSessionsRequest generates a request for the DescribeGameSessions operation.
func (c *GameLift) DescribeGameSessionsRequest(input *DescribeGameSessionsInput) (req *request.Request, output *DescribeGameSessionsOutput) {
op := &request.Operation{
Name: opDescribeGameSessions,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeGameSessionsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeGameSessionsOutput{}
req.Data = output
return
}
// Retrieves properties for one or more game sessions. This action can be used
// in several ways: (1) provide a GameSessionId to request properties for a
// specific game session; (2) provide a FleetId or an AliasId to request properties
// for all game sessions running on a fleet.
//
// To get game session record(s), specify just one of the following: game session
// ID, fleet ID, or alias ID. You can filter this request by game session status.
// Use the pagination parameters to retrieve results as a set of sequential
// pages. If successful, a GameSession object is returned for each session matching
// the request.
func (c *GameLift) DescribeGameSessions(input *DescribeGameSessionsInput) (*DescribeGameSessionsOutput, error) {
req, out := c.DescribeGameSessionsRequest(input)
err := req.Send()
return out, err
}
const opDescribePlayerSessions = "DescribePlayerSessions"
// DescribePlayerSessionsRequest generates a request for the DescribePlayerSessions operation.
func (c *GameLift) DescribePlayerSessionsRequest(input *DescribePlayerSessionsInput) (req *request.Request, output *DescribePlayerSessionsOutput) {
op := &request.Operation{
Name: opDescribePlayerSessions,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribePlayerSessionsInput{}
}
req = c.newRequest(op, input, output)
output = &DescribePlayerSessionsOutput{}
req.Data = output
return
}
// Retrieves properties for one or more player sessions. This action can be
// used in several ways: (1) provide a PlayerSessionId parameter to request
// properties for a specific player session; (2) provide a GameSessionId parameter
// to request properties for all player sessions in the specified game session;
// (3) provide a PlayerId parameter to request properties for all player sessions
// of a specified player.
//
// To get game session record(s), specify only one of the following: a player
// session ID, a game session ID, or a player ID. You can filter this request
// by player session status. Use the pagination parameters to retrieve results
// as a set of sequential pages. If successful, a PlayerSession object is returned
// for each session matching the request.
func (c *GameLift) DescribePlayerSessions(input *DescribePlayerSessionsInput) (*DescribePlayerSessionsOutput, error) {
req, out := c.DescribePlayerSessionsRequest(input)
err := req.Send()
return out, err
}
const opDescribeScalingPolicies = "DescribeScalingPolicies"
// DescribeScalingPoliciesRequest generates a request for the DescribeScalingPolicies operation.
func (c *GameLift) DescribeScalingPoliciesRequest(input *DescribeScalingPoliciesInput) (req *request.Request, output *DescribeScalingPoliciesOutput) {
op := &request.Operation{
Name: opDescribeScalingPolicies,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeScalingPoliciesInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeScalingPoliciesOutput{}
req.Data = output
return
}
// Retrieves all scaling policies applied to a fleet.
//
// To get a fleet's scaling policies, specify the fleet ID. You can filter
// this request by policy status, such as to retrieve only active scaling policies.
// Use the pagination parameters to retrieve results as a set of sequential
// pages. If successful, set of ScalingPolicy objects is returned for the fleet.
func (c *GameLift) DescribeScalingPolicies(input *DescribeScalingPoliciesInput) (*DescribeScalingPoliciesOutput, error) {
req, out := c.DescribeScalingPoliciesRequest(input)
err := req.Send()
return out, err
}
const opGetGameSessionLogUrl = "GetGameSessionLogUrl"
// GetGameSessionLogUrlRequest generates a request for the GetGameSessionLogUrl operation.
func (c *GameLift) GetGameSessionLogUrlRequest(input *GetGameSessionLogUrlInput) (req *request.Request, output *GetGameSessionLogUrlOutput) {
op := &request.Operation{
Name: opGetGameSessionLogUrl,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetGameSessionLogUrlInput{}
}
req = c.newRequest(op, input, output)
output = &GetGameSessionLogUrlOutput{}
req.Data = output
return
}
// Retrieves the location of stored game session logs for a specified game session.
// When a game session is terminated, Amazon GameLift automatically stores the
// logs in Amazon S3. Use this URL to download the logs.
//
// See the AWS Service Limits (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_gamelift)
// page for maximum log file sizes. Log files that exceed this limit are not
// saved.
func (c *GameLift) GetGameSessionLogUrl(input *GetGameSessionLogUrlInput) (*GetGameSessionLogUrlOutput, error) {
req, out := c.GetGameSessionLogUrlRequest(input)
err := req.Send()
return out, err
}
const opListAliases = "ListAliases"
// ListAliasesRequest generates a request for the ListAliases operation.
func (c *GameLift) ListAliasesRequest(input *ListAliasesInput) (req *request.Request, output *ListAliasesOutput) {
op := &request.Operation{
Name: opListAliases,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListAliasesInput{}
}
req = c.newRequest(op, input, output)
output = &ListAliasesOutput{}
req.Data = output
return
}
// Retrieves a collection of alias records for this AWS account. You can filter
// the result set by alias name and/or routing strategy type. Use the pagination
// parameters to retrieve results in sequential pages.
//
// Aliases are not listed in any particular order.
func (c *GameLift) ListAliases(input *ListAliasesInput) (*ListAliasesOutput, error) {
req, out := c.ListAliasesRequest(input)
err := req.Send()
return out, err
}
const opListBuilds = "ListBuilds"
// ListBuildsRequest generates a request for the ListBuilds operation.
func (c *GameLift) ListBuildsRequest(input *ListBuildsInput) (req *request.Request, output *ListBuildsOutput) {
op := &request.Operation{
Name: opListBuilds,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListBuildsInput{}
}
req = c.newRequest(op, input, output)
output = &ListBuildsOutput{}
req.Data = output
return
}
// Retrieves build records for all builds associated with an AWS account. You
// can filter the result set by build status. Use the pagination parameters
// to retrieve results in a set of sequential pages.
//
// Build records are not listed in any particular order.
func (c *GameLift) ListBuilds(input *ListBuildsInput) (*ListBuildsOutput, error) {
req, out := c.ListBuildsRequest(input)
err := req.Send()
return out, err
}
const opListFleets = "ListFleets"
// ListFleetsRequest generates a request for the ListFleets operation.
func (c *GameLift) ListFleetsRequest(input *ListFleetsInput) (req *request.Request, output *ListFleetsOutput) {
op := &request.Operation{
Name: opListFleets,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListFleetsInput{}
}
req = c.newRequest(op, input, output)
output = &ListFleetsOutput{}
req.Data = output
return
}
// Retrieves a collection of fleet records for this AWS account. You can filter
// the result set by build ID. Use the pagination parameters to retrieve results
// in sequential pages.
//
// Fleet records are not listed in any particular order.
func (c *GameLift) ListFleets(input *ListFleetsInput) (*ListFleetsOutput, error) {
req, out := c.ListFleetsRequest(input)
err := req.Send()
return out, err
}
const opPutScalingPolicy = "PutScalingPolicy"
// PutScalingPolicyRequest generates a request for the PutScalingPolicy operation.
func (c *GameLift) PutScalingPolicyRequest(input *PutScalingPolicyInput) (req *request.Request, output *PutScalingPolicyOutput) {
op := &request.Operation{
Name: opPutScalingPolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutScalingPolicyInput{}
}
req = c.newRequest(op, input, output)
output = &PutScalingPolicyOutput{}
req.Data = output
return
}
// Creates or updates a scaling policy for a fleet. An active scaling policy
// prompts GameLift to track a certain metric for a fleet and automatically
// change the fleet's capacity in specific circumstances. Each scaling policy
// contains one rule statement. Fleets can have multiple scaling policies in
// force simultaneously.
//
// A scaling policy rule statement has the following structure:
//
// If [MetricName] is [ComparisonOperator] [Threshold] for [EvaluationPeriods]
// minutes, then [ScalingAdjustmentType] to/by [ScalingAdjustment].
//
// For example, this policy: "If the number of idle instances exceeds 20 for
// more than 15 minutes, then reduce the fleet capacity by 10 instances" could
// be implemented as the following rule statement:
//
// If [IdleInstances] is [GreaterThanOrEqualToThreshold] [20] for [15] minutes,
// then [ChangeInCapacity] by [-10].
//
// To create or update a scaling policy, specify a unique combination of name
// and fleet ID, and set the rule values. All parameters for this action are
// required. If successful, the policy name is returned. Scaling policies cannot
// be suspended or made inactive. To stop enforcing a scaling policy, call DeleteScalingPolicy.
func (c *GameLift) PutScalingPolicy(input *PutScalingPolicyInput) (*PutScalingPolicyOutput, error) {
req, out := c.PutScalingPolicyRequest(input)
err := req.Send()
return out, err
}
const opRequestUploadCredentials = "RequestUploadCredentials"
// RequestUploadCredentialsRequest generates a request for the RequestUploadCredentials operation.
func (c *GameLift) RequestUploadCredentialsRequest(input *RequestUploadCredentialsInput) (req *request.Request, output *RequestUploadCredentialsOutput) {
op := &request.Operation{
Name: opRequestUploadCredentials,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RequestUploadCredentialsInput{}
}
req = c.newRequest(op, input, output)
output = &RequestUploadCredentialsOutput{}
req.Data = output
return
}
// Retrieves a fresh set of upload credentials and the assigned Amazon S3 storage
// location for a specific build. Valid credentials are required to upload your
// game build files to Amazon S3.
//
// Call this action only if you need credentials for a build created with CreateBuild.
// This is a rare situation; in most cases, builds are created using the CLI
// command upload-build, which creates a build record and also uploads build
// files.
//
// Upload credentials are returned when you create the build, but they have
// a limited lifespan. You can get fresh credentials and use them to re-upload
// game files until the state of that build changes to READY. Once this happens,
// you must create a brand new build.
func (c *GameLift) RequestUploadCredentials(input *RequestUploadCredentialsInput) (*RequestUploadCredentialsOutput, error) {
req, out := c.RequestUploadCredentialsRequest(input)
err := req.Send()
return out, err
}
const opResolveAlias = "ResolveAlias"
// ResolveAliasRequest generates a request for the ResolveAlias operation.
func (c *GameLift) ResolveAliasRequest(input *ResolveAliasInput) (req *request.Request, output *ResolveAliasOutput) {
op := &request.Operation{
Name: opResolveAlias,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ResolveAliasInput{}
}
req = c.newRequest(op, input, output)
output = &ResolveAliasOutput{}
req.Data = output
return
}
// Retrieves the fleet ID that a specified alias is currently pointing to.
func (c *GameLift) ResolveAlias(input *ResolveAliasInput) (*ResolveAliasOutput, error) {
req, out := c.ResolveAliasRequest(input)
err := req.Send()
return out, err
}
const opUpdateAlias = "UpdateAlias"
// UpdateAliasRequest generates a request for the UpdateAlias operation.
func (c *GameLift) UpdateAliasRequest(input *UpdateAliasInput) (req *request.Request, output *UpdateAliasOutput) {
op := &request.Operation{
Name: opUpdateAlias,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateAliasInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateAliasOutput{}
req.Data = output
return
}
// Updates properties for an alias. To update properties, specify the alias
// ID to be updated and provide the information to be changed. To reassign an
// alias to another fleet, provide an updated routing strategy. If successful,
// the updated alias record is returned.
func (c *GameLift) UpdateAlias(input *UpdateAliasInput) (*UpdateAliasOutput, error) {
req, out := c.UpdateAliasRequest(input)
err := req.Send()
return out, err
}
const opUpdateBuild = "UpdateBuild"
// UpdateBuildRequest generates a request for the UpdateBuild operation.
func (c *GameLift) UpdateBuildRequest(input *UpdateBuildInput) (req *request.Request, output *UpdateBuildOutput) {
op := &request.Operation{
Name: opUpdateBuild,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateBuildInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateBuildOutput{}
req.Data = output
return
}
// Updates metadata in a build record, including the build name and version.
// To update the metadata, specify the build ID to update and provide the new
// values. If successful, a build object containing the updated metadata is
// returned.
func (c *GameLift) UpdateBuild(input *UpdateBuildInput) (*UpdateBuildOutput, error) {
req, out := c.UpdateBuildRequest(input)
err := req.Send()
return out, err
}
const opUpdateFleetAttributes = "UpdateFleetAttributes"
// UpdateFleetAttributesRequest generates a request for the UpdateFleetAttributes operation.
func (c *GameLift) UpdateFleetAttributesRequest(input *UpdateFleetAttributesInput) (req *request.Request, output *UpdateFleetAttributesOutput) {
op := &request.Operation{
Name: opUpdateFleetAttributes,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateFleetAttributesInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateFleetAttributesOutput{}
req.Data = output
return
}
// Updates fleet properties, including name and description, for a fleet. To
// update metadata, specify the fleet ID and the property values you want to
// change. If successful, the fleet ID for the updated fleet is returned.
func (c *GameLift) UpdateFleetAttributes(input *UpdateFleetAttributesInput) (*UpdateFleetAttributesOutput, error) {
req, out := c.UpdateFleetAttributesRequest(input)
err := req.Send()
return out, err
}
const opUpdateFleetCapacity = "UpdateFleetCapacity"
// UpdateFleetCapacityRequest generates a request for the UpdateFleetCapacity operation.
func (c *GameLift) UpdateFleetCapacityRequest(input *UpdateFleetCapacityInput) (req *request.Request, output *UpdateFleetCapacityOutput) {
op := &request.Operation{
Name: opUpdateFleetCapacity,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateFleetCapacityInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateFleetCapacityOutput{}
req.Data = output
return
}
// Updates capacity settings for a fleet. Use this action to specify the number
// of EC2 instances (hosts) you want this fleet to contain. Before calling this
// action, you may want to call DescribeEC2InstanceLimits to get the maximum
// capacity based on the fleet's EC2 instance type.
//
// If you're using auto-scaling (see PutScalingPolicy), you may want to specify
// a minimum and/or maximum capacity. If you don't provide these boundaries,
// auto-scaling can set capacity anywhere between zero and the service limits
// (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_gamelift).
//
// To update fleet capacity, specify the fleet ID and the desired number of
// instances. If successful, Amazon GameLift starts or terminates instances
// so that the fleet's active instance count matches the desired instance count.
// You can view a fleet's current capacity information by calling DescribeFleetCapacity.
// If the desired instance count is higher than the instance type's limit, the
// "Limit Exceeded" exception will occur.
func (c *GameLift) UpdateFleetCapacity(input *UpdateFleetCapacityInput) (*UpdateFleetCapacityOutput, error) {
req, out := c.UpdateFleetCapacityRequest(input)
err := req.Send()
return out, err
}
const opUpdateFleetPortSettings = "UpdateFleetPortSettings"
// UpdateFleetPortSettingsRequest generates a request for the UpdateFleetPortSettings operation.
func (c *GameLift) UpdateFleetPortSettingsRequest(input *UpdateFleetPortSettingsInput) (req *request.Request, output *UpdateFleetPortSettingsOutput) {
op := &request.Operation{
Name: opUpdateFleetPortSettings,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateFleetPortSettingsInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateFleetPortSettingsOutput{}
req.Data = output
return
}
// Updates port settings for a fleet. To update settings, specify the fleet
// ID to be updated and list the permissions you want to update. List the permissions
// you want to add in InboundPermissionAuthorizations, and permissions you want
// to remove in InboundPermissionRevocations. Permissions to be removed must
// match existing fleet permissions. If successful, the fleet ID for the updated
// fleet is returned.
func (c *GameLift) UpdateFleetPortSettings(input *UpdateFleetPortSettingsInput) (*UpdateFleetPortSettingsOutput, error) {
req, out := c.UpdateFleetPortSettingsRequest(input)
err := req.Send()
return out, err
}
const opUpdateGameSession = "UpdateGameSession"
// UpdateGameSessionRequest generates a request for the UpdateGameSession operation.
func (c *GameLift) UpdateGameSessionRequest(input *UpdateGameSessionInput) (req *request.Request, output *UpdateGameSessionOutput) {
op := &request.Operation{
Name: opUpdateGameSession,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateGameSessionInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateGameSessionOutput{}
req.Data = output
return
}
// Updates game session properties. This includes the session name, maximum
// player count, protection policy, which controls whether or not an active
// game session can be terminated during a scale-down event, and the player
// session creation policy, which controls whether or not new players can join
// the session. To update a game session, specify the game session ID and the
// values you want to change. If successful, an updated GameSession object is
// returned.
func (c *GameLift) UpdateGameSession(input *UpdateGameSessionInput) (*UpdateGameSessionOutput, error) {
req, out := c.UpdateGameSessionRequest(input)
err := req.Send()
return out, err
}
// Properties describing a fleet alias.
type Alias struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet alias.
AliasId *string `type:"string"`
// Time stamp indicating when this object was created. Format is an integer
// representing the number of seconds since the Unix epoch (Unix time).
CreationTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// Human-readable description of the alias.
Description *string `type:"string"`
// Time stamp indicating when this object was last modified. Format is an integer
// representing the number of seconds since the Unix epoch (Unix time).
LastUpdatedTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// Descriptive label associated with this alias. Alias names do not need to
// be unique.
Name *string `type:"string"`
// Routing configuration for a fleet alias.
RoutingStrategy *RoutingStrategy `type:"structure"`
}
// String returns the string representation
func (s Alias) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Alias) GoString() string {
return s.String()
}
// AWS access credentials required to upload game build files to Amazon GameLift.
// These credentials are generated with CreateBuild, and are valid for a limited
// time. If they expire before you upload your game build, get a new set by
// calling RequestUploadCredentials.
type AwsCredentials struct {
_ struct{} `type:"structure"`
// Access key for an AWS account.
AccessKeyId *string `min:"1" type:"string"`
// Secret key for an AWS account.
SecretAccessKey *string `min:"1" type:"string"`
// Token specific to a build ID.
SessionToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s AwsCredentials) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AwsCredentials) GoString() string {
return s.String()
}
// Properties describing a game build.
type Build struct {
_ struct{} `type:"structure"`
// Unique identifier for a build.
BuildId *string `type:"string"`
// Time stamp indicating when this object was created. Format is an integer
// representing the number of seconds since the Unix epoch (Unix time).
CreationTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// Descriptive label associated with this build. Build names do not need to
// be unique. It can be set using CreateBuild or UpdateBuild.
Name *string `type:"string"`
// File size of the uploaded game build, expressed in bytes. When the build
// state is INITIALIZED, this value is 0.
SizeOnDisk *int64 `min:"1" type:"long"`
// Current status of the build. Possible build states include: INITIALIZED:
// A new build has been defined, but no files have been uploaded. You cannot
// create fleets for builds that are in this state. When a build is successfully
// created, the build state is set to this value. READY: The game build has
// been successfully uploaded. You can now create new fleets for this build.FAILED:
// The game build upload failed. You cannot create new fleets for this build.
Status *string `type:"string" enum:"BuildStatus"`
// Version associated with this build. Version strings do not need to be unique
// to a build. This value can be set using CreateBuild or UpdateBuild.
Version *string `type:"string"`
}
// String returns the string representation
func (s Build) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Build) GoString() string {
return s.String()
}
// Represents the input for a request action.
type CreateAliasInput struct {
_ struct{} `type:"structure"`
// Human-readable description of the alias.
Description *string `min:"1" type:"string"`
// Descriptive label associated with this alias. Alias names do not need to
// be unique.
Name *string `min:"1" type:"string" required:"true"`
// Object specifying the fleet and routing type to use for the alias.
RoutingStrategy *RoutingStrategy `type:"structure" required:"true"`
}
// String returns the string representation
func (s CreateAliasInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateAliasInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type CreateAliasOutput struct {
_ struct{} `type:"structure"`
// Object containing the newly created alias record.
Alias *Alias `type:"structure"`
}
// String returns the string representation
func (s CreateAliasOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateAliasOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type CreateBuildInput struct {
_ struct{} `type:"structure"`
// Descriptive label associated with this build. Build names do not need to
// be unique. A build name can be changed later using UpdateBuild.
Name *string `min:"1" type:"string"`
// Location in Amazon Simple Storage Service (Amazon S3) where a build's files
// are stored. This location is assigned in response to a CreateBuild call,
// and is always in the same region as the service used to create the build.
// For more details see the Amazon S3 documentation (http://aws.amazon.com/documentation/s3/).
StorageLocation *S3Location `type:"structure"`
// Version associated with this build. Version strings do not need to be unique
// to a build. A build version can be changed later using UpdateBuild.
Version *string `min:"1" type:"string"`
}
// String returns the string representation
func (s CreateBuildInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateBuildInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type CreateBuildOutput struct {
_ struct{} `type:"structure"`
// Set of properties for the newly created build.
Build *Build `type:"structure"`
// Amazon S3 path and key, identifying where the game build files are stored.
StorageLocation *S3Location `type:"structure"`
// AWS credentials required when uploading a game build to the storage location.
// These credentials have a limited lifespan and are valid only for the build
// they were issued for. If you need to get fresh credentials, call RequestUploadCredentials.
UploadCredentials *AwsCredentials `type:"structure"`
}
// String returns the string representation
func (s CreateBuildOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateBuildOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type CreateFleetInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the build you want the new fleet to use.
BuildId *string `type:"string" required:"true"`
// Human-readable description of the fleet.
Description *string `min:"1" type:"string"`
// Access limits for incoming traffic. Setting these values limits game server
// access to incoming traffic using specified IP ranges and port numbers. Some
// ports in a range may be restricted. You can provide one or more sets of permissions
// for the fleet.
EC2InboundPermissions []*IpPermission `type:"list"`
// Type of EC2 instances used in the fleet. EC2 instance types define the CPU,
// memory, storage, and networking capacity of the fleetaposs hosts. Amazon
// GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance
// Types (https://aws.amazon.com/ec2/instance-types/) for detailed descriptions
// of each.
EC2InstanceType *string `type:"string" required:"true" enum:"EC2InstanceType"`
// Path to game-session log files generated by your game server. Once a game
// session has been terminated, Amazon GameLift captures and stores the logs
// on Amazon S3. Use the GameLift console to access the stored logs.
LogPaths []*string `type:"list"`
// Descriptive label associated with this fleet. Fleet names do not need to
// be unique.
Name *string `min:"1" type:"string" required:"true"`
// Game session protection policy to apply to all instances created in this
// fleet. If this parameter is not set, new instances in this fleet will default
// to no protection. Protection can be set for individual instances using UpdateGameSession.
// NoProtection: The game session can be terminated during a scale-down event.
// FullProtection: If the game session is in an ACTIVE status, it cannot be
// terminated during a scale-down event.
NewGameSessionProtectionPolicy *string `type:"string" enum:"ProtectionPolicy"`
// Parameters required to launch your game server. These parameters should be
// expressed as a string of command-line parameters. Example: "+sv_port 33435
// +start_lobby".
ServerLaunchParameters *string `min:"1" type:"string"`
// Path to the launch executable for the game server. A game server is built
// into a C:\game drive. This value must be expressed as C:\game\[launchpath].
// Example: If, when built, your game server files are in a folder called "MyGame",
// your log path should be C:\game\MyGame\server.exe.
ServerLaunchPath *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateFleetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateFleetInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type CreateFleetOutput struct {
_ struct{} `type:"structure"`
// Properties for the newly created fleet.
FleetAttributes *FleetAttributes `type:"structure"`
}
// String returns the string representation
func (s CreateFleetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateFleetOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type CreateGameSessionInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet alias. Each request must reference either a
// fleet ID or alias ID, but not both.
AliasId *string `type:"string"`
// Unique identifier for a fleet. Each request must reference either a fleet
// ID or alias ID, but not both.
FleetId *string `type:"string"`
// Set of properties used to administer a game session. These properties are
// passed to your game server.
GameProperties []*GameProperty `type:"list"`
// Maximum number of players that can be connected simultaneously to the game
// session.
MaximumPlayerSessionCount *int64 `type:"integer" required:"true"`
// Descriptive label associated with this game session. Session names do not
// need to be unique.
Name *string `min:"1" type:"string"`
}
// String returns the string representation
func (s CreateGameSessionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateGameSessionInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type CreateGameSessionOutput struct {
_ struct{} `type:"structure"`
// Object containing the newly created game session record.
GameSession *GameSession `type:"structure"`
}
// String returns the string representation
func (s CreateGameSessionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateGameSessionOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type CreatePlayerSessionInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a game session. Specify the game session you want to
// add a player to.
GameSessionId *string `type:"string" required:"true"`
// Unique identifier for the player to be added.
PlayerId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreatePlayerSessionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePlayerSessionInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type CreatePlayerSessionOutput struct {
_ struct{} `type:"structure"`
// Object containing the newly created player session record.
PlayerSession *PlayerSession `type:"structure"`
}
// String returns the string representation
func (s CreatePlayerSessionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePlayerSessionOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type CreatePlayerSessionsInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a game session.
GameSessionId *string `type:"string" required:"true"`
// List of unique identifiers for the players to be added.
PlayerIds []*string `min:"1" type:"list" required:"true"`
}
// String returns the string representation
func (s CreatePlayerSessionsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePlayerSessionsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type CreatePlayerSessionsOutput struct {
_ struct{} `type:"structure"`
// Collection of player session objects created for the added players.
PlayerSessions []*PlayerSession `type:"list"`
}
// String returns the string representation
func (s CreatePlayerSessionsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePlayerSessionsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DeleteAliasInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet alias. Specify the alias you want to delete.
AliasId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteAliasInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteAliasInput) GoString() string {
return s.String()
}
type DeleteAliasOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DeleteAliasOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteAliasOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DeleteBuildInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the build you want to delete.
BuildId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteBuildInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteBuildInput) GoString() string {
return s.String()
}
type DeleteBuildOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DeleteBuildOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteBuildOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DeleteFleetInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the fleet you want to delete.
FleetId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteFleetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteFleetInput) GoString() string {
return s.String()
}
type DeleteFleetOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DeleteFleetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteFleetOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DeleteScalingPolicyInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet.
FleetId *string `type:"string" required:"true"`
// Descriptive label associated with this scaling policy. Policy names do not
// need to be unique.
Name *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteScalingPolicyInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteScalingPolicyInput) GoString() string {
return s.String()
}
type DeleteScalingPolicyOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DeleteScalingPolicyOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteScalingPolicyOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeAliasInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet alias. Specify the alias you want to retrieve.
AliasId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DescribeAliasInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeAliasInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeAliasOutput struct {
_ struct{} `type:"structure"`
// Object containing the requested alias.
Alias *Alias `type:"structure"`
}
// String returns the string representation
func (s DescribeAliasOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeAliasOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeBuildInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the build you want to retrieve properties for.
BuildId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DescribeBuildInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeBuildInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeBuildOutput struct {
_ struct{} `type:"structure"`
// Set of properties describing the requested build.
Build *Build `type:"structure"`
}
// String returns the string representation
func (s DescribeBuildOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeBuildOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeEC2InstanceLimitsInput struct {
_ struct{} `type:"structure"`
// Type of EC2 instances used in the fleet. EC2 instance types define the CPU,
// memory, storage, and networking capacity of the fleetaposs hosts. Amazon
// GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance
// Types (https://aws.amazon.com/ec2/instance-types/) for detailed descriptions
// of each. Leave this parameter blank to retrieve limits for all types.
EC2InstanceType *string `type:"string" enum:"EC2InstanceType"`
}
// String returns the string representation
func (s DescribeEC2InstanceLimitsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeEC2InstanceLimitsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeEC2InstanceLimitsOutput struct {
_ struct{} `type:"structure"`
// Object containing the maximum number of instances for the specified instance
// type.
EC2InstanceLimits []*EC2InstanceLimit `type:"list"`
}
// String returns the string representation
func (s DescribeEC2InstanceLimitsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeEC2InstanceLimitsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeFleetAttributesInput struct {
_ struct{} `type:"structure"`
// Unique identifiers for the fleet(s) that you want to retrieve attributes
// for. Leave this parameter empty to retrieve attributes for all fleets.
FleetIds []*string `min:"1" type:"list"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages. This parameter is ignored when
// the request specifies one or a list of fleet IDs.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value. This parameter is ignored
// when the request specifies one or a list of fleet IDs.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeFleetAttributesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetAttributesInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeFleetAttributesOutput struct {
_ struct{} `type:"structure"`
// Collection of objects containing attribute metadata for each requested fleet
// ID.
FleetAttributes []*FleetAttributes `type:"list"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeFleetAttributesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetAttributesOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeFleetCapacityInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the fleet(s) you want to retrieve capacity information
// for.
FleetIds []*string `min:"1" type:"list"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages. This parameter is ignored when
// the request specifies one or a list of fleet IDs.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value. This parameter is ignored
// when the request specifies one or a list of fleet IDs.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeFleetCapacityInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetCapacityInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeFleetCapacityOutput struct {
_ struct{} `type:"structure"`
// Collection of objects containing capacity information for each requested
// fleet ID. Leave this parameter empty to retrieve capacity information for
// all fleets.
FleetCapacity []*FleetCapacity `type:"list"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeFleetCapacityOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetCapacityOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeFleetEventsInput struct {
_ struct{} `type:"structure"`
// Most recent date to retrieve event logs for. If no end time is specified,
// this call returns entries from the specified start time up to the present.
// Format is an integer representing the number of seconds since the Unix epoch
// (Unix time).
EndTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// Unique identifier for the fleet to get event logs for.
FleetId *string `type:"string" required:"true"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value.
NextToken *string `min:"1" type:"string"`
// Earliest date to retrieve event logs for. If no start time is specified,
// this call returns entries starting from when the fleet was created to the
// specified end time. Format is an integer representing the number of seconds
// since the Unix epoch (Unix time).
StartTime *time.Time `type:"timestamp" timestampFormat:"unix"`
}
// String returns the string representation
func (s DescribeFleetEventsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetEventsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeFleetEventsOutput struct {
_ struct{} `type:"structure"`
// Collection of objects containing event log entries for the specified fleet.
Events []*Event `type:"list"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeFleetEventsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetEventsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeFleetPortSettingsInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the fleet you want to retrieve port settings for.
FleetId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DescribeFleetPortSettingsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetPortSettingsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeFleetPortSettingsOutput struct {
_ struct{} `type:"structure"`
// Object containing port settings for the requested fleet ID.
InboundPermissions []*IpPermission `type:"list"`
}
// String returns the string representation
func (s DescribeFleetPortSettingsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetPortSettingsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeFleetUtilizationInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the fleet(s) you want to retrieve utilization data
// for. Leave this parameter empty to retrieve utilization data for all fleets.
FleetIds []*string `min:"1" type:"list"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages. This parameter is ignored when
// the request specifies one or a list of fleet IDs.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value. This parameter is ignored
// when the request specifies one or a list of fleet IDs.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeFleetUtilizationInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetUtilizationInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeFleetUtilizationOutput struct {
_ struct{} `type:"structure"`
// Collection of objects containing utilization information for each requested
// fleet ID.
FleetUtilization []*FleetUtilization `type:"list"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeFleetUtilizationOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeFleetUtilizationOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeGameSessionDetailsInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet alias. Specify an alias to retrieve information
// on all game sessions active on the fleet.
AliasId *string `type:"string"`
// Unique identifier for a fleet. Specify a fleet to retrieve information on
// all game sessions active on the fleet.
FleetId *string `type:"string"`
// Unique identifier for a game session. Specify the game session to retrieve
// information on.
GameSessionId *string `type:"string"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value.
NextToken *string `min:"1" type:"string"`
// Game session status to filter results on. Possible game session states include
// ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).
StatusFilter *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeGameSessionDetailsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeGameSessionDetailsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeGameSessionDetailsOutput struct {
_ struct{} `type:"structure"`
// Collection of objects containing game session properties and the protection
// policy currently in force for each session matching the request.
GameSessionDetails []*GameSessionDetail `type:"list"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeGameSessionDetailsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeGameSessionDetailsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeGameSessionsInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet alias. Specify an alias to retrieve information
// on all game sessions active on the fleet.
AliasId *string `type:"string"`
// Unique identifier for a fleet. Specify a fleet to retrieve information on
// all game sessions active on the fleet.
FleetId *string `type:"string"`
// Unique identifier for a game session. Specify the game session to retrieve
// information on.
GameSessionId *string `type:"string"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value.
NextToken *string `min:"1" type:"string"`
// Game session status to filter results on. Possible game session states include
// ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).
StatusFilter *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeGameSessionsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeGameSessionsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeGameSessionsOutput struct {
_ struct{} `type:"structure"`
// Collection of objects containing game session properties for each session
// matching the request.
GameSessions []*GameSession `type:"list"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribeGameSessionsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeGameSessionsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribePlayerSessionsInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a game session.
GameSessionId *string `type:"string"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages. If a player session ID is specified,
// this parameter is ignored.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value. If a player session ID is
// specified, this parameter is ignored.
NextToken *string `min:"1" type:"string"`
// Unique identifier for a player.
PlayerId *string `min:"1" type:"string"`
// Unique identifier for a player session.
PlayerSessionId *string `type:"string"`
// Player session status to filter results on. Possible player session states
// include: RESERVED: The player session request has been received, but the
// player has not yet connected to the game server and/or been validated. ACTIVE:
// The player has been validated by the game server and is currently connected.COMPLETED:
// The player connection has been dropped.TIMEDOUT: A player session request
// was received, but the player did not connect and/or was not validated within
// the time-out limit (60 seconds).
PlayerSessionStatusFilter *string `min:"1" type:"string"`
}
// String returns the string representation
func (s DescribePlayerSessionsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribePlayerSessionsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribePlayerSessionsOutput struct {
_ struct{} `type:"structure"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
// Collection of objects containing properties for each player session that
// matches the request.
PlayerSessions []*PlayerSession `type:"list"`
}
// String returns the string representation
func (s DescribePlayerSessionsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribePlayerSessionsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type DescribeScalingPoliciesInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet. Specify the fleet to retrieve scaling policies
// for.
FleetId *string `type:"string" required:"true"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value.
NextToken *string `min:"1" type:"string"`
// Game session status to filter results on. A scaling policy is only in force
// when in an Active state. ACTIVE: The scaling policy is currently in force.
// UPDATEREQUESTED: A request to update the scaling policy has been received.
// UPDATING: A change is being made to the scaling policy. DELETEREQUESTED:
// A request to delete the scaling policy has been received. DELETING: The scaling
// policy is being deleted. DELETED: The scaling policy has been deleted. ERROR:
// An error occurred in creating the policy. It should be removed and recreated.
StatusFilter *string `type:"string" enum:"ScalingStatusType"`
}
// String returns the string representation
func (s DescribeScalingPoliciesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeScalingPoliciesInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type DescribeScalingPoliciesOutput struct {
_ struct{} `type:"structure"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
// Collection of objects containing the scaling policies matching the request.
ScalingPolicies []*ScalingPolicy `type:"list"`
}
// String returns the string representation
func (s DescribeScalingPoliciesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DescribeScalingPoliciesOutput) GoString() string {
return s.String()
}
// Current status of fleet capacity. The number of active instances should match
// or be in the process of matching the number of desired instances. Pending
// and terminating counts are non-zero only if fleet capacity is adjusting to
// an UpdateFleetCapacity request, or if access to resources is temporarily
// affected.
type EC2InstanceCounts struct {
_ struct{} `type:"structure"`
// Actual number of active instances in the fleet.
ACTIVE *int64 `type:"integer"`
// Ideal number of active instances in the fleet.
DESIRED *int64 `type:"integer"`
// Number of active instances in the fleet that are not currently hosting a
// game session.
IDLE *int64 `type:"integer"`
// Maximum value allowed for the fleet's instance count.
MAXIMUM *int64 `type:"integer"`
// Minimum value allowed for the fleet's instance count.
MINIMUM *int64 `type:"integer"`
// Number of instances in the fleet that are starting but not yet active.
PENDING *int64 `type:"integer"`
// Number of instances in the fleet that are no longer active but haven't yet
// been terminated.
TERMINATING *int64 `type:"integer"`
}
// String returns the string representation
func (s EC2InstanceCounts) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EC2InstanceCounts) GoString() string {
return s.String()
}
// Maximum number of instances allowed based on the Amazon Elastic Compute Cloud
// (Amazon EC2) instance type. Instance limits can be retrieved by calling DescribeEC2InstanceLimits.
type EC2InstanceLimit struct {
_ struct{} `type:"structure"`
// Number of instances of the specified type that are currently in use by this
// AWS account.
CurrentInstances *int64 `type:"integer"`
// Type of EC2 instances used in the fleet. EC2 instance types define the CPU,
// memory, storage, and networking capacity of the fleetaposs hosts. Amazon
// GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance
// Types (https://aws.amazon.com/ec2/instance-types/) for detailed descriptions
// of each.
EC2InstanceType *string `type:"string" enum:"EC2InstanceType"`
// Number of instances allowed.
InstanceLimit *int64 `type:"integer"`
}
// String returns the string representation
func (s EC2InstanceLimit) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EC2InstanceLimit) GoString() string {
return s.String()
}
// Log entry describing an event involving an Amazon GameLift resource (such
// as a fleet).
type Event struct {
_ struct{} `type:"structure"`
// Type of event being logged.
EventCode *string `type:"string" enum:"EventCode"`
// Unique identifier for a fleet event.
EventId *string `min:"1" type:"string"`
// Time stamp indicating when this event occurred. Format is an integer representing
// the number of seconds since the Unix epoch (Unix time).
EventTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// Additional information related to the event.
Message *string `min:"1" type:"string"`
// Unique identifier for the resource, such as a fleet ID.
ResourceId *string `min:"1" type:"string"`
}
// String returns the string representation
func (s Event) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Event) GoString() string {
return s.String()
}
// General properties describing a fleet.
type FleetAttributes struct {
_ struct{} `type:"structure"`
// Unique identifier for a build.
BuildId *string `type:"string"`
// Time stamp indicating when this object was created. Format is an integer
// representing the number of seconds since the Unix epoch (Unix time).
CreationTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// Human-readable description of the fleet.
Description *string `min:"1" type:"string"`
// Unique identifier for a fleet.
FleetId *string `type:"string"`
// Path to game-session log files generated by your game server. Once a game
// session has been terminated, Amazon GameLift captures and stores the logs
// on Amazon S3. Use the GameLift console to access the stored logs.
LogPaths []*string `type:"list"`
// Descriptive label associated with this fleet. Fleet names do not need to
// be unique.
Name *string `min:"1" type:"string"`
// Type of game session protection to set for all new instances started in the
// fleet. NoProtection: The game session can be terminated during a scale-down
// event. FullProtection: If the game session is in an ACTIVE status, it cannot
// be terminated during a scale-down event.
NewGameSessionProtectionPolicy *string `type:"string" enum:"ProtectionPolicy"`
// Parameters required to launch your game server. These parameters should be
// expressed as a string of command-line parameters. Example: "+sv_port 33435
// +start_lobby".
ServerLaunchParameters *string `min:"1" type:"string"`
// Path to the launch executable for the game server. A game server is built
// into a C:\game drive. This value must be expressed as C:\game\[launchpath].
// Example: If, when built, your game server files are in a folder called "MyGame",
// your log path should be C:\game\MyGame\server.exe.
ServerLaunchPath *string `min:"1" type:"string"`
// Current status of the fleet. Possible fleet states include: NEW: A new fleet
// has been defined and hosts allocated.DOWNLOADING/VALIDATING/BUILDING/ACTIVATING:
// The new fleet is being set up with the game build, and new hosts are being
// started.ACTIVE: Hosts can now accept game sessions.ERROR: An error occurred
// when downloading, validating, building, or activating the fleet.DELETING:
// Hosts are responding to a delete fleet request.TERMINATED: The fleet no longer
// exists.
Status *string `type:"string" enum:"FleetStatus"`
// Time stamp indicating when this fleet was terminated. Format is an integer
// representing the number of seconds since the Unix epoch (Unix time).
TerminationTime *time.Time `type:"timestamp" timestampFormat:"unix"`
}
// String returns the string representation
func (s FleetAttributes) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s FleetAttributes) GoString() string {
return s.String()
}
// Information about the fleet's capacity. Fleet capacity is measured in EC2
// instances. By default, new fleets have a capacity of one instance, but can
// be updated as needed. The maximum number of instances for a fleet is determined
// by the fleet's instance type.
type FleetCapacity struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet.
FleetId *string `type:"string"`
// Current status of fleet capacity.
InstanceCounts *EC2InstanceCounts `type:"structure"`
// Type of EC2 instances used in the fleet. EC2 instance types define the CPU,
// memory, storage, and networking capacity of the fleetaposs hosts. Amazon
// GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance
// Types (https://aws.amazon.com/ec2/instance-types/) for detailed descriptions
// of each.
InstanceType *string `type:"string" enum:"EC2InstanceType"`
}
// String returns the string representation
func (s FleetCapacity) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s FleetCapacity) GoString() string {
return s.String()
}
// Current status of fleet utilization, including the number of game and player
// sessions being hosted.
type FleetUtilization struct {
_ struct{} `type:"structure"`
// Number of active game sessions currently being hosted on fleet game servers.
ActiveGameSessionCount *int64 `type:"integer"`
// Number of active player sessions currently being hosted on fleet game servers.
CurrentPlayerSessionCount *int64 `type:"integer"`
// Unique identifier for a fleet.
FleetId *string `type:"string"`
// Maximum players allowed across all game sessions currently hosted in the
// fleet.
MaximumPlayerSessionCount *int64 `type:"integer"`
}
// String returns the string representation
func (s FleetUtilization) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s FleetUtilization) GoString() string {
return s.String()
}
// Set of key-value pairs containing information your game server requires to
// set up sessions. This object allows you to pass in any set of data needed
// for your game. For more information, see the Amazon GameLift Developer Guide
// (http://docs.aws.amazon.com/gamelift/latest/developerguide/).
type GameProperty struct {
_ struct{} `type:"structure"`
Key *string `type:"string" required:"true"`
Value *string `type:"string" required:"true"`
}
// String returns the string representation
func (s GameProperty) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GameProperty) GoString() string {
return s.String()
}
// Properties describing a game session.
type GameSession struct {
_ struct{} `type:"structure"`
// Time stamp indicating when this object was created. Format is an integer
// representing the number of seconds since the Unix epoch (Unix time).
CreationTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// Number of players currently in the game session.
CurrentPlayerSessionCount *int64 `type:"integer"`
// Unique identifier for a fleet.
FleetId *string `type:"string"`
// Set of custom properties for the game session.
GameProperties []*GameProperty `type:"list"`
// Unique identifier for a game session.
GameSessionId *string `type:"string"`
// IP address of the game session.
IpAddress *string `type:"string"`
// Maximum number of players allowed in the game session.
MaximumPlayerSessionCount *int64 `type:"integer"`
// Descriptive label associated with this game session. Session names do not
// need to be unique.
Name *string `min:"1" type:"string"`
// Indicates whether or not the game session is accepting new players.
PlayerSessionCreationPolicy *string `type:"string" enum:"PlayerSessionCreationPolicy"`
// Current status of the game session. A game session must be in an ACTIVE state
// to have player sessions.
Status *string `type:"string" enum:"GameSessionStatus"`
// Time stamp indicating when this fleet was terminated. Format is an integer
// representing the number of seconds since the Unix epoch (Unix time).
TerminationTime *time.Time `type:"timestamp" timestampFormat:"unix"`
}
// String returns the string representation
func (s GameSession) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GameSession) GoString() string {
return s.String()
}
// A game session's properties and the protection policy currently in force.
type GameSessionDetail struct {
_ struct{} `type:"structure"`
// Properties describing a game session.
GameSession *GameSession `type:"structure"`
// Current status of protection for the game session. NoProtection: The game
// session can be terminated during a scale-down event. FullProtection: If the
// game session is in an ACTIVE status, it cannot be terminated during a scale-down
// event.
ProtectionPolicy *string `type:"string" enum:"ProtectionPolicy"`
}
// String returns the string representation
func (s GameSessionDetail) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GameSessionDetail) GoString() string {
return s.String()
}
// Represents the input for a request action.
type GetGameSessionLogUrlInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a game session. Specify the game session you want to
// get logs for.
GameSessionId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s GetGameSessionLogUrlInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetGameSessionLogUrlInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type GetGameSessionLogUrlOutput struct {
_ struct{} `type:"structure"`
// Location of the requested game session logs, available for download.
PreSignedUrl *string `min:"1" type:"string"`
}
// String returns the string representation
func (s GetGameSessionLogUrlOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetGameSessionLogUrlOutput) GoString() string {
return s.String()
}
// IP addresses and port settings used to limit access by incoming traffic (players)
// to a fleet. Permissions specify a range of IP addresses and port settings
// that must be used to gain access to a game server on a fleet machine.
type IpPermission struct {
_ struct{} `type:"structure"`
// Starting value for a range of allowed port numbers.
FromPort *int64 `min:"1025" type:"integer" required:"true"`
// Range of allowed IP addresses. This value must be expressed in CIDR notation
// (https://tools.ietf.org/id/cidr). Example: "000.000.000.000/[subnet mask]"
// or optionally the shortened version "0.0.0.0/[subnet mask]".
IpRange *string `type:"string" required:"true"`
// Network communication protocol used by the fleet.
Protocol *string `type:"string" required:"true" enum:"IpProtocol"`
// Ending value for a range of allowed port numbers. Port numbers are end-inclusive.
// This value must be higher than FromPort.
ToPort *int64 `min:"1025" type:"integer" required:"true"`
}
// String returns the string representation
func (s IpPermission) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s IpPermission) GoString() string {
return s.String()
}
// Represents the input for a request action.
type ListAliasesInput struct {
_ struct{} `type:"structure"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages.
Limit *int64 `min:"1" type:"integer"`
// Descriptive label associated with this alias. Alias names do not need to
// be unique.
Name *string `min:"1" type:"string"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value.
NextToken *string `min:"1" type:"string"`
// Type of routing to filter results on. Use this parameter to retrieve only
// aliases of a certain type. To retrieve all aliases, leave this parameter
// empty. Possible routing types include: SIMPLE: The alias resolves to one
// specific fleet. Use this type when routing to active fleets.TERMINAL: The
// alias does not resolve to a fleet but instead can be used to display a message
// to the user. A terminal alias throws a TerminalRoutingStrategyException with
// the RoutingStrategy message embedded.
RoutingStrategyType *string `type:"string" enum:"RoutingStrategyType"`
}
// String returns the string representation
func (s ListAliasesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListAliasesInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type ListAliasesOutput struct {
_ struct{} `type:"structure"`
// Collection of alias records that match the list request.
Aliases []*Alias `type:"list"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListAliasesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListAliasesOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type ListBuildsInput struct {
_ struct{} `type:"structure"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value.
NextToken *string `min:"1" type:"string"`
// Build state to filter results on. Use this parameter to retrieve builds in
// a certain state. To retrieve all builds, leave this parameter empty. Possible
// build states include: INITIALIZED: A new build has been defined, but no files
// have been uploaded. You cannot create fleets for builds that are in this
// state. When a build is successfully created, the build state is set to this
// value. READY: The game build has been successfully uploaded. You can now
// create new fleets for this build.FAILED: The game build upload failed. You
// cannot create new fleets for this build.
Status *string `type:"string" enum:"BuildStatus"`
}
// String returns the string representation
func (s ListBuildsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListBuildsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type ListBuildsOutput struct {
_ struct{} `type:"structure"`
// Collection of build records that match the request.
Builds []*Build `type:"list"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListBuildsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListBuildsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type ListFleetsInput struct {
_ struct{} `type:"structure"`
// Unique identifier of the build to return fleets for. Use this parameter to
// return only fleets using the specified build. To retrieve all fleets, leave
// this parameter empty.
BuildId *string `type:"string"`
// Maximum number of results to return. You can use this parameter with NextToken
// to get results as a set of sequential pages.
Limit *int64 `min:"1" type:"integer"`
// Token indicating the start of the next sequential page of results. Use the
// token that is returned with a previous call to this action. To specify the
// start of the result set, do not specify a value.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListFleetsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListFleetsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type ListFleetsOutput struct {
_ struct{} `type:"structure"`
// Set of fleet IDs matching the list request. You can retrieve additional information
// about all returned fleets by passing this result set to a call to DescribeFleetAttributes,
// DescribeFleetCapacity, and DescribeFleetUtilization.
FleetIds []*string `min:"1" type:"list"`
// Token indicating where to resume retrieving results on the next call to this
// action. If no token is returned, these results represent the end of the list.
//
// If a request has a limit that exactly matches the number of remaining results,
// a token is returned even though there are no more results to retrieve.
NextToken *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListFleetsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListFleetsOutput) GoString() string {
return s.String()
}
// Properties describing a player session.
type PlayerSession struct {
_ struct{} `type:"structure"`
// Time stamp indicating when this object was created. Format is an integer
// representing the number of seconds since the Unix epoch (Unix time).
CreationTime *time.Time `type:"timestamp" timestampFormat:"unix"`
// Unique identifier for a fleet.
FleetId *string `type:"string"`
// Unique identifier for a game session.
GameSessionId *string `type:"string"`
// Game session IP address. All player sessions reference the game session location.
IpAddress *string `type:"string"`
// Unique identifier for a player.
PlayerId *string `min:"1" type:"string"`
// Unique identifier for a player session.
PlayerSessionId *string `type:"string"`
// Current status of the player session. Possible player session states include:
// RESERVED: The player session request has been received, but the player has
// not yet connected to the game server and/or been validated. ACTIVE: The player
// has been validated by the game server and is currently connected.COMPLETED:
// The player connection has been dropped.TIMEDOUT: A player session request
// was received, but the player did not connect and/or was not validated within
// the time-out limit (60 seconds).
Status *string `type:"string" enum:"PlayerSessionStatus"`
// Time stamp indicating when this fleet was terminated. Format is an integer
// representing the number of seconds since the Unix epoch (Unix time).
TerminationTime *time.Time `type:"timestamp" timestampFormat:"unix"`
}
// String returns the string representation
func (s PlayerSession) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PlayerSession) GoString() string {
return s.String()
}
// Represents the input for a request action.
type PutScalingPolicyInput struct {
_ struct{} `type:"structure"`
// Comparison operator to use when measuring the metric against the threshold
// value.
ComparisonOperator *string `type:"string" required:"true" enum:"ComparisonOperatorType"`
// Length of time (in minutes) the metric must be at or beyond the threshold
// before a scaling event is triggered.
EvaluationPeriods *int64 `min:"1" type:"integer" required:"true"`
// Unique identity for the fleet to scale with this policy.
FleetId *string `type:"string" required:"true"`
// Name of the Service-defined metric that is used to trigger an adjustment.
// ActivatingGameSessions: number of game sessions in the process of being
// created (game session status = ACTIVATING). ActiveGameSessions: number of
// game sessions currently running (game session status = ACTIVE). CurrentPlayerSessions:
// number of active or reserved player sessions (player session status = ACTIVE
// or RESERVED). AvailablePlayerSessions: number of player session slots currently
// available in active game sessions across the fleet, calculated by subtracting
// a game session's current player session count from its maximum player session
// count. This number includes game sessions that are not currently accepting
// players (game session PlayerSessionCreationPolicy = DENY_ALL). ActiveInstances:
// number of instances currently running a game session. IdleInstances: number
// of instances not currently running a game session.
MetricName *string `type:"string" required:"true" enum:"MetricName"`
// Descriptive label associated with this scaling policy. Policy names do not
// need to be unique. A fleet can have only one scaling policy with the same
// name.
Name *string `min:"1" type:"string" required:"true"`
// Amount of adjustment to make, based on the scaling adjustment type.
ScalingAdjustment *int64 `type:"integer" required:"true"`
// Type of adjustment to make to a fleet's instance count (see FleetCapacity):
// ChangeInCapacity: add (or subtract) the scaling adjustment value from the
// current instance count. Positive values scale up while negative values scale
// down. ExactCapacity: set the instance count to the scaling adjustment value.
// PercentChangeInCapacity: increase or reduce the current instance count by
// the scaling adjustment, read as a percentage. Positive values scale up while
// negative values scale down; for example, a value of "-10" scales the fleet
// down by 10%.
ScalingAdjustmentType *string `type:"string" required:"true" enum:"ScalingAdjustmentType"`
// Metric value used to trigger a scaling event.
Threshold *float64 `type:"double" required:"true"`
}
// String returns the string representation
func (s PutScalingPolicyInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutScalingPolicyInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type PutScalingPolicyOutput struct {
_ struct{} `type:"structure"`
// Descriptive label associated with this scaling policy. Policy names do not
// need to be unique.
Name *string `min:"1" type:"string"`
}
// String returns the string representation
func (s PutScalingPolicyOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutScalingPolicyOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type RequestUploadCredentialsInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the build you want to get credentials for.
BuildId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s RequestUploadCredentialsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RequestUploadCredentialsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type RequestUploadCredentialsOutput struct {
_ struct{} `type:"structure"`
// Amazon S3 path and key, identifying where the game build files are stored.
StorageLocation *S3Location `type:"structure"`
// AWS credentials required when uploading a game build to the storage location.
// These credentials have a limited lifespan and are valid only for the build
// they were issued for.
UploadCredentials *AwsCredentials `type:"structure"`
}
// String returns the string representation
func (s RequestUploadCredentialsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RequestUploadCredentialsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type ResolveAliasInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the alias you want to resolve.
AliasId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s ResolveAliasInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ResolveAliasInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type ResolveAliasOutput struct {
_ struct{} `type:"structure"`
// Fleet ID associated with the requested alias.
FleetId *string `type:"string"`
}
// String returns the string representation
func (s ResolveAliasOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ResolveAliasOutput) GoString() string {
return s.String()
}
// Routing configuration for a fleet alias.
type RoutingStrategy struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet.
FleetId *string `type:"string"`
// Message text to be used with a terminal routing strategy.
Message *string `type:"string"`
// Type of routing strategy. Possible routing types include: SIMPLE: The alias
// resolves to one specific fleet. Use this type when routing to active fleets.TERMINAL:
// The alias does not resolve to a fleet but instead can be used to display
// a message to the user. A terminal alias throws a TerminalRoutingStrategyException
// with the RoutingStrategy message embedded.
Type *string `type:"string" enum:"RoutingStrategyType"`
}
// String returns the string representation
func (s RoutingStrategy) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RoutingStrategy) GoString() string {
return s.String()
}
// Location in Amazon Simple Storage Service (Amazon S3) where a build's files
// are stored. This location is assigned in response to a CreateBuild call,
// and is always in the same region as the service used to create the build.
// For more details see the Amazon S3 documentation (http://aws.amazon.com/documentation/s3/).
type S3Location struct {
_ struct{} `type:"structure"`
// Amazon S3 bucket identifier.
Bucket *string `min:"1" type:"string"`
// Amazon S3 bucket key.
Key *string `min:"1" type:"string"`
RoleArn *string `min:"1" type:"string"`
}
// String returns the string representation
func (s S3Location) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s S3Location) GoString() string {
return s.String()
}
// Rule that controls how a fleet is scaled. Scaling policies are uniquely identified
// by the combination of name and fleet ID.
type ScalingPolicy struct {
_ struct{} `type:"structure"`
// Comparison operator to use when measuring a metric against the threshold
// value.
ComparisonOperator *string `type:"string" enum:"ComparisonOperatorType"`
// Length of time (in minutes) the metric must be at or beyond the threshold
// before a scaling event is triggered.
EvaluationPeriods *int64 `min:"1" type:"integer"`
// Unique identity for the fleet associated with this scaling policy.
FleetId *string `type:"string"`
// Name of the GameLift-defined metric that is used to trigger an adjustment.
// ActivatingGameSessions: number of game sessions in the process of being
// created (game session status = ACTIVATING). ActiveGameSessions: number of
// game sessions currently running (game session status = ACTIVE). CurrentPlayerSessions:
// number of active or reserved player sessions (player session status = ACTIVE
// or RESERVED). AvailablePlayerSessions: number of player session slots currently
// available in active game sessions across the fleet, calculated by subtracting
// a game session's current player session count from its maximum player session
// count. This number does include game sessions that are not currently accepting
// players (game session PlayerSessionCreationPolicy = DENY_ALL). ActiveInstances:
// number of instances currently running a game session. IdleInstances: number
// of instances not currently running a game session.
MetricName *string `type:"string" enum:"MetricName"`
// Descriptive label associated with this scaling policy. Policy names do not
// need to be unique.
Name *string `min:"1" type:"string"`
// Amount of adjustment to make, based on the scaling adjustment type.
ScalingAdjustment *int64 `type:"integer"`
// Type of adjustment to make to a fleet's instance count (see FleetCapacity):
// ChangeInCapacity: add (or subtract) the scaling adjustment value from the
// current instance count. Positive values scale up while negative values scale
// down. ExactCapacity: set the instance count to the scaling adjustment value.
// PercentChangeInCapacity: increase or reduce the current instance count by
// the scaling adjustment, read as a percentage. Positive values scale up while
// negative values scale down.
ScalingAdjustmentType *string `type:"string" enum:"ScalingAdjustmentType"`
// Current status of the scaling policy. The scaling policy is only in force
// when in an Active state. ACTIVE: The scaling policy is currently in force.
// UPDATEREQUESTED: A request to update the scaling policy has been received.
// UPDATING: A change is being made to the scaling policy. DELETEREQUESTED:
// A request to delete the scaling policy has been received. DELETING: The scaling
// policy is being deleted. DELETED: The scaling policy has been deleted. ERROR:
// An error occurred in creating the policy. It should be removed and recreated.
Status *string `type:"string" enum:"ScalingStatusType"`
// Metric value used to trigger a scaling event.
Threshold *float64 `type:"double"`
}
// String returns the string representation
func (s ScalingPolicy) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ScalingPolicy) GoString() string {
return s.String()
}
// Represents the input for a request action.
type UpdateAliasInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a fleet alias. Specify the alias you want to update.
AliasId *string `type:"string" required:"true"`
// Human-readable description of the alias.
Description *string `min:"1" type:"string"`
// Descriptive label associated with this alias. Alias names do not need to
// be unique.
Name *string `min:"1" type:"string"`
// Object specifying the fleet and routing type to use for the alias.
RoutingStrategy *RoutingStrategy `type:"structure"`
}
// String returns the string representation
func (s UpdateAliasInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateAliasInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type UpdateAliasOutput struct {
_ struct{} `type:"structure"`
// Object containing the updated alias configuration.
Alias *Alias `type:"structure"`
}
// String returns the string representation
func (s UpdateAliasOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateAliasOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type UpdateBuildInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the build you want to update.
BuildId *string `type:"string" required:"true"`
// Descriptive label associated with this build. Build names do not need to
// be unique.
Name *string `min:"1" type:"string"`
// Version associated with this build. Version strings do not need to be unique
// to a build.
Version *string `min:"1" type:"string"`
}
// String returns the string representation
func (s UpdateBuildInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateBuildInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type UpdateBuildOutput struct {
_ struct{} `type:"structure"`
// Object containing the updated build record.
Build *Build `type:"structure"`
}
// String returns the string representation
func (s UpdateBuildOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateBuildOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type UpdateFleetAttributesInput struct {
_ struct{} `type:"structure"`
// Human-readable description of the fleet.
Description *string `min:"1" type:"string"`
// Unique identifier for the fleet you want to update attribute metadata for.
FleetId *string `type:"string" required:"true"`
// Descriptive label associated with this fleet. Fleet names do not need to
// be unique.
Name *string `min:"1" type:"string"`
// Game session protection policy to apply to all new instances created in this
// fleet. Instances that already exist will not be affected. You can set protection
// for individual instances using UpdateGameSession. NoProtection: The game
// session can be terminated during a scale-down event. FullProtection: If the
// game session is in an ACTIVE status, it cannot be terminated during a scale-down
// event.
NewGameSessionProtectionPolicy *string `type:"string" enum:"ProtectionPolicy"`
}
// String returns the string representation
func (s UpdateFleetAttributesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateFleetAttributesInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type UpdateFleetAttributesOutput struct {
_ struct{} `type:"structure"`
// Unique identifier for the updated fleet.
FleetId *string `type:"string"`
}
// String returns the string representation
func (s UpdateFleetAttributesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateFleetAttributesOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type UpdateFleetCapacityInput struct {
_ struct{} `type:"structure"`
// Number of EC2 instances you want this fleet to host.
DesiredInstances *int64 `type:"integer"`
// Unique identifier for the fleet you want to update capacity for.
FleetId *string `type:"string" required:"true"`
// Maximum value allowed for the fleet's instance count. Default if not set
// is 1.
MaxSize *int64 `type:"integer"`
// Minimum value allowed for the fleet's instance count. Default if not set
// is 0.
MinSize *int64 `type:"integer"`
}
// String returns the string representation
func (s UpdateFleetCapacityInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateFleetCapacityInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type UpdateFleetCapacityOutput struct {
_ struct{} `type:"structure"`
// Unique identifier for the updated fleet.
FleetId *string `type:"string"`
}
// String returns the string representation
func (s UpdateFleetCapacityOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateFleetCapacityOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type UpdateFleetPortSettingsInput struct {
_ struct{} `type:"structure"`
// Unique identifier for the fleet you want to update port settings for.
FleetId *string `type:"string" required:"true"`
// Collection of port settings to be added to the fleet record.
InboundPermissionAuthorizations []*IpPermission `type:"list"`
// Collection of port settings to be removed from the fleet record.
InboundPermissionRevocations []*IpPermission `type:"list"`
}
// String returns the string representation
func (s UpdateFleetPortSettingsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateFleetPortSettingsInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type UpdateFleetPortSettingsOutput struct {
_ struct{} `type:"structure"`
// Unique identifier for the updated fleet.
FleetId *string `type:"string"`
}
// String returns the string representation
func (s UpdateFleetPortSettingsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateFleetPortSettingsOutput) GoString() string {
return s.String()
}
// Represents the input for a request action.
type UpdateGameSessionInput struct {
_ struct{} `type:"structure"`
// Unique identifier for a game session. Specify the game session you want to
// update.
GameSessionId *string `type:"string" required:"true"`
// Maximum number of players that can be simultaneously connected to the game
// session.
MaximumPlayerSessionCount *int64 `type:"integer"`
// Descriptive label associated with this game session. Session names do not
// need to be unique.
Name *string `min:"1" type:"string"`
// Policy determining whether or not the game session accepts new players.
PlayerSessionCreationPolicy *string `type:"string" enum:"PlayerSessionCreationPolicy"`
// Game session protection policy to apply to this game session only. NoProtection:
// The game session can be terminated during a scale-down event. FullProtection:
// If the game session is in an ACTIVE status, it cannot be terminated during
// a scale-down event.
ProtectionPolicy *string `type:"string" enum:"ProtectionPolicy"`
}
// String returns the string representation
func (s UpdateGameSessionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateGameSessionInput) GoString() string {
return s.String()
}
// Represents the returned data in response to a request action.
type UpdateGameSessionOutput struct {
_ struct{} `type:"structure"`
// Object containing the updated game session metadata.
GameSession *GameSession `type:"structure"`
}
// String returns the string representation
func (s UpdateGameSessionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateGameSessionOutput) GoString() string {
return s.String()
}
const (
// @enum BuildStatus
BuildStatusInitialized = "INITIALIZED"
// @enum BuildStatus
BuildStatusReady = "READY"
// @enum BuildStatus
BuildStatusFailed = "FAILED"
)
const (
// @enum ComparisonOperatorType
ComparisonOperatorTypeGreaterThanOrEqualToThreshold = "GreaterThanOrEqualToThreshold"
// @enum ComparisonOperatorType
ComparisonOperatorTypeGreaterThanThreshold = "GreaterThanThreshold"
// @enum ComparisonOperatorType
ComparisonOperatorTypeLessThanThreshold = "LessThanThreshold"
// @enum ComparisonOperatorType
ComparisonOperatorTypeLessThanOrEqualToThreshold = "LessThanOrEqualToThreshold"
)
const (
// @enum EC2InstanceType
EC2InstanceTypeT2Micro = "t2.micro"
// @enum EC2InstanceType
EC2InstanceTypeT2Small = "t2.small"
// @enum EC2InstanceType
EC2InstanceTypeT2Medium = "t2.medium"
// @enum EC2InstanceType
EC2InstanceTypeT2Large = "t2.large"
// @enum EC2InstanceType
EC2InstanceTypeC3Large = "c3.large"
// @enum EC2InstanceType
EC2InstanceTypeC3Xlarge = "c3.xlarge"
// @enum EC2InstanceType
EC2InstanceTypeC32xlarge = "c3.2xlarge"
// @enum EC2InstanceType
EC2InstanceTypeC34xlarge = "c3.4xlarge"
// @enum EC2InstanceType
EC2InstanceTypeC38xlarge = "c3.8xlarge"
// @enum EC2InstanceType
EC2InstanceTypeC4Large = "c4.large"
// @enum EC2InstanceType
EC2InstanceTypeC4Xlarge = "c4.xlarge"
// @enum EC2InstanceType
EC2InstanceTypeC42xlarge = "c4.2xlarge"
// @enum EC2InstanceType
EC2InstanceTypeC44xlarge = "c4.4xlarge"
// @enum EC2InstanceType
EC2InstanceTypeC48xlarge = "c4.8xlarge"
// @enum EC2InstanceType
EC2InstanceTypeR3Large = "r3.large"
// @enum EC2InstanceType
EC2InstanceTypeR3Xlarge = "r3.xlarge"
// @enum EC2InstanceType
EC2InstanceTypeR32xlarge = "r3.2xlarge"
// @enum EC2InstanceType
EC2InstanceTypeR34xlarge = "r3.4xlarge"
// @enum EC2InstanceType
EC2InstanceTypeR38xlarge = "r3.8xlarge"
// @enum EC2InstanceType
EC2InstanceTypeM3Medium = "m3.medium"
// @enum EC2InstanceType
EC2InstanceTypeM3Large = "m3.large"
// @enum EC2InstanceType
EC2InstanceTypeM3Xlarge = "m3.xlarge"
// @enum EC2InstanceType
EC2InstanceTypeM32xlarge = "m3.2xlarge"
// @enum EC2InstanceType
EC2InstanceTypeM4Large = "m4.large"
// @enum EC2InstanceType
EC2InstanceTypeM4Xlarge = "m4.xlarge"
// @enum EC2InstanceType
EC2InstanceTypeM42xlarge = "m4.2xlarge"
// @enum EC2InstanceType
EC2InstanceTypeM44xlarge = "m4.4xlarge"
// @enum EC2InstanceType
EC2InstanceTypeM410xlarge = "m4.10xlarge"
)
const (
// @enum EventCode
EventCodeGenericEvent = "GENERIC_EVENT"
// @enum EventCode
EventCodeFleetCreated = "FLEET_CREATED"
// @enum EventCode
EventCodeFleetDeleted = "FLEET_DELETED"
// @enum EventCode
EventCodeFleetScalingEvent = "FLEET_SCALING_EVENT"
// @enum EventCode
EventCodeFleetStateDownloading = "FLEET_STATE_DOWNLOADING"
// @enum EventCode
EventCodeFleetStateValidating = "FLEET_STATE_VALIDATING"
// @enum EventCode
EventCodeFleetStateBuilding = "FLEET_STATE_BUILDING"
// @enum EventCode
EventCodeFleetStateActivating = "FLEET_STATE_ACTIVATING"
// @enum EventCode
EventCodeFleetStateActive = "FLEET_STATE_ACTIVE"
// @enum EventCode
EventCodeFleetStateError = "FLEET_STATE_ERROR"
// @enum EventCode
EventCodeFleetInitializationFailed = "FLEET_INITIALIZATION_FAILED"
// @enum EventCode
EventCodeFleetBinaryDownloadFailed = "FLEET_BINARY_DOWNLOAD_FAILED"
// @enum EventCode
EventCodeFleetValidationLaunchPathNotFound = "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND"
// @enum EventCode
EventCodeFleetValidationExecutableRuntimeFailure = "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE"
// @enum EventCode
EventCodeFleetValidationTimedOut = "FLEET_VALIDATION_TIMED_OUT"
// @enum EventCode
EventCodeFleetActivationFailed = "FLEET_ACTIVATION_FAILED"
// @enum EventCode
EventCodeFleetActivationFailedNoInstances = "FLEET_ACTIVATION_FAILED_NO_INSTANCES"
// @enum EventCode
EventCodeFleetNewGameSessionProtectionPolicyUpdated = "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED"
)
const (
// @enum FleetStatus
FleetStatusNew = "NEW"
// @enum FleetStatus
FleetStatusDownloading = "DOWNLOADING"
// @enum FleetStatus
FleetStatusValidating = "VALIDATING"
// @enum FleetStatus
FleetStatusBuilding = "BUILDING"
// @enum FleetStatus
FleetStatusActivating = "ACTIVATING"
// @enum FleetStatus
FleetStatusActive = "ACTIVE"
// @enum FleetStatus
FleetStatusDeleting = "DELETING"
// @enum FleetStatus
FleetStatusError = "ERROR"
// @enum FleetStatus
FleetStatusTerminated = "TERMINATED"
)
const (
// @enum GameSessionStatus
GameSessionStatusActive = "ACTIVE"
// @enum GameSessionStatus
GameSessionStatusActivating = "ACTIVATING"
// @enum GameSessionStatus
GameSessionStatusTerminated = "TERMINATED"
// @enum GameSessionStatus
GameSessionStatusTerminating = "TERMINATING"
)
const (
// @enum IpProtocol
IpProtocolTcp = "TCP"
// @enum IpProtocol
IpProtocolUdp = "UDP"
)
const (
// @enum MetricName
MetricNameActivatingGameSessions = "ActivatingGameSessions"
// @enum MetricName
MetricNameActiveGameSessions = "ActiveGameSessions"
// @enum MetricName
MetricNameActiveInstances = "ActiveInstances"
// @enum MetricName
MetricNameAvailablePlayerSessions = "AvailablePlayerSessions"
// @enum MetricName
MetricNameCurrentPlayerSessions = "CurrentPlayerSessions"
// @enum MetricName
MetricNameIdleInstances = "IdleInstances"
)
const (
// @enum PlayerSessionCreationPolicy
PlayerSessionCreationPolicyAcceptAll = "ACCEPT_ALL"
// @enum PlayerSessionCreationPolicy
PlayerSessionCreationPolicyDenyAll = "DENY_ALL"
)
const (
// @enum PlayerSessionStatus
PlayerSessionStatusReserved = "RESERVED"
// @enum PlayerSessionStatus
PlayerSessionStatusActive = "ACTIVE"
// @enum PlayerSessionStatus
PlayerSessionStatusCompleted = "COMPLETED"
// @enum PlayerSessionStatus
PlayerSessionStatusTimedout = "TIMEDOUT"
)
const (
// @enum ProtectionPolicy
ProtectionPolicyNoProtection = "NoProtection"
// @enum ProtectionPolicy
ProtectionPolicyFullProtection = "FullProtection"
)
const (
// @enum RoutingStrategyType
RoutingStrategyTypeSimple = "SIMPLE"
// @enum RoutingStrategyType
RoutingStrategyTypeTerminal = "TERMINAL"
)
const (
// @enum ScalingAdjustmentType
ScalingAdjustmentTypeChangeInCapacity = "ChangeInCapacity"
// @enum ScalingAdjustmentType
ScalingAdjustmentTypeExactCapacity = "ExactCapacity"
// @enum ScalingAdjustmentType
ScalingAdjustmentTypePercentChangeInCapacity = "PercentChangeInCapacity"
)
const (
// @enum ScalingStatusType
ScalingStatusTypeActive = "ACTIVE"
// @enum ScalingStatusType
ScalingStatusTypeUpdateRequested = "UPDATE_REQUESTED"
// @enum ScalingStatusType
ScalingStatusTypeUpdating = "UPDATING"
// @enum ScalingStatusType
ScalingStatusTypeDeleteRequested = "DELETE_REQUESTED"
// @enum ScalingStatusType
ScalingStatusTypeDeleting = "DELETING"
// @enum ScalingStatusType
ScalingStatusTypeDeleted = "DELETED"
// @enum ScalingStatusType
ScalingStatusTypeError = "ERROR"
)
|