1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059
|
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package waf provides a client for AWS WAF.
package waf
import (
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opCreateByteMatchSet = "CreateByteMatchSet"
// CreateByteMatchSetRequest generates a request for the CreateByteMatchSet operation.
func (c *WAF) CreateByteMatchSetRequest(input *CreateByteMatchSetInput) (req *request.Request, output *CreateByteMatchSetOutput) {
op := &request.Operation{
Name: opCreateByteMatchSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateByteMatchSetInput{}
}
req = c.newRequest(op, input, output)
output = &CreateByteMatchSetOutput{}
req.Data = output
return
}
// Creates a ByteMatchSet. You then use UpdateByteMatchSet to identify the part
// of a web request that you want AWS WAF to inspect, such as the values of
// the User-Agent header or the query string. For example, you can create a
// ByteMatchSet that matches any requests with User-Agent headers that contain
// the string BadBot. You can then configure AWS WAF to reject those requests.
//
// To create and configure a ByteMatchSet, perform the following steps:
//
// Use GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of a CreateByteMatchSet request. Submit a CreateByteMatchSet request.
// Use GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of an UpdateByteMatchSet request. Submit an UpdateByteMatchSet
// request to specify the part of the request that you want AWS WAF to inspect
// (for example, the header or the URI) and the value that you want AWS WAF
// to watch for. For more information about how to use the AWS WAF API to allow
// or block HTTP requests, see the AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) CreateByteMatchSet(input *CreateByteMatchSetInput) (*CreateByteMatchSetOutput, error) {
req, out := c.CreateByteMatchSetRequest(input)
err := req.Send()
return out, err
}
const opCreateIPSet = "CreateIPSet"
// CreateIPSetRequest generates a request for the CreateIPSet operation.
func (c *WAF) CreateIPSetRequest(input *CreateIPSetInput) (req *request.Request, output *CreateIPSetOutput) {
op := &request.Operation{
Name: opCreateIPSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateIPSetInput{}
}
req = c.newRequest(op, input, output)
output = &CreateIPSetOutput{}
req.Data = output
return
}
// Creates an IPSet, which you use to specify which web requests you want to
// allow or block based on the IP addresses that the requests originate from.
// For example, if you're receiving a lot of requests from one or more individual
// IP addresses or one or more ranges of IP addresses and you want to block
// the requests, you can create an IPSet that contains those IP addresses and
// then configure AWS WAF to block the requests.
//
// To create and configure an IPSet, perform the following steps:
//
// Use GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of a CreateIPSet request. Submit a CreateIPSet request. Use GetChangeToken
// to get the change token that you provide in the ChangeToken parameter of
// an UpdateIPSet request. Submit an UpdateIPSet request to specify the IP addresses
// that you want AWS WAF to watch for. For more information about how to use
// the AWS WAF API to allow or block HTTP requests, see the AWS WAF Developer
// Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) CreateIPSet(input *CreateIPSetInput) (*CreateIPSetOutput, error) {
req, out := c.CreateIPSetRequest(input)
err := req.Send()
return out, err
}
const opCreateRule = "CreateRule"
// CreateRuleRequest generates a request for the CreateRule operation.
func (c *WAF) CreateRuleRequest(input *CreateRuleInput) (req *request.Request, output *CreateRuleOutput) {
op := &request.Operation{
Name: opCreateRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateRuleInput{}
}
req = c.newRequest(op, input, output)
output = &CreateRuleOutput{}
req.Data = output
return
}
// Creates a Rule, which contains the IPSet objects, ByteMatchSet objects, and
// other predicates that identify the requests that you want to block. If you
// add more than one predicate to a Rule, a request must match all of the specifications
// to be allowed or blocked. For example, suppose you add the following to a
// Rule:
//
// An IPSet that matches the IP address 192.0.2.44/32 A ByteMatchSet that
// matches BadBot in the User-Agent header You then add the Rule to a WebACL
// and specify that you want to blocks requests that satisfy the Rule. For a
// request to be blocked, it must come from the IP address 192.0.2.44 and the
// User-Agent header in the request must contain the value BadBot.
//
// To create and configure a Rule, perform the following steps:
//
// Create and update the predicates that you want to include in the Rule.
// For more information, see CreateByteMatchSet, CreateIPSet, and CreateSqlInjectionMatchSet.
// Use GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of a CreateRule request. Submit a CreateRule request. Use GetChangeToken
// to get the change token that you provide in the ChangeToken parameter of
// an UpdateRule request. Submit an UpdateRule request to specify the predicates
// that you want to include in the Rule. Create and update a WebACL that contains
// the Rule. For more information, see CreateWebACL. For more information about
// how to use the AWS WAF API to allow or block HTTP requests, see the AWS WAF
// Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) CreateRule(input *CreateRuleInput) (*CreateRuleOutput, error) {
req, out := c.CreateRuleRequest(input)
err := req.Send()
return out, err
}
const opCreateSizeConstraintSet = "CreateSizeConstraintSet"
// CreateSizeConstraintSetRequest generates a request for the CreateSizeConstraintSet operation.
func (c *WAF) CreateSizeConstraintSetRequest(input *CreateSizeConstraintSetInput) (req *request.Request, output *CreateSizeConstraintSetOutput) {
op := &request.Operation{
Name: opCreateSizeConstraintSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateSizeConstraintSetInput{}
}
req = c.newRequest(op, input, output)
output = &CreateSizeConstraintSetOutput{}
req.Data = output
return
}
// Creates a SizeConstraintSet. You then use UpdateSizeConstraintSet to identify
// the part of a web request that you want AWS WAF to check for length, such
// as the length of the User-Agent header or the length of the query string.
// For example, you can create a SizeConstraintSet that matches any requests
// that have a query string that is longer than 100 bytes. You can then configure
// AWS WAF to reject those requests.
//
// To create and configure a SizeConstraintSet, perform the following steps:
//
// Use GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of a CreateSizeConstraintSet request. Submit a CreateSizeConstraintSet
// request. Use GetChangeToken to get the change token that you provide in the
// ChangeToken parameter of an UpdateSizeConstraintSet request. Submit an UpdateSizeConstraintSet
// request to specify the part of the request that you want AWS WAF to inspect
// (for example, the header or the URI) and the value that you want AWS WAF
// to watch for. For more information about how to use the AWS WAF API to allow
// or block HTTP requests, see the AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) CreateSizeConstraintSet(input *CreateSizeConstraintSetInput) (*CreateSizeConstraintSetOutput, error) {
req, out := c.CreateSizeConstraintSetRequest(input)
err := req.Send()
return out, err
}
const opCreateSqlInjectionMatchSet = "CreateSqlInjectionMatchSet"
// CreateSqlInjectionMatchSetRequest generates a request for the CreateSqlInjectionMatchSet operation.
func (c *WAF) CreateSqlInjectionMatchSetRequest(input *CreateSqlInjectionMatchSetInput) (req *request.Request, output *CreateSqlInjectionMatchSetOutput) {
op := &request.Operation{
Name: opCreateSqlInjectionMatchSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateSqlInjectionMatchSetInput{}
}
req = c.newRequest(op, input, output)
output = &CreateSqlInjectionMatchSetOutput{}
req.Data = output
return
}
// Creates a SqlInjectionMatchSet, which you use to allow, block, or count requests
// that contain snippets of SQL code in a specified part of web requests. AWS
// WAF searches for character sequences that are likely to be malicious strings.
//
// To create and configure a SqlInjectionMatchSet, perform the following steps:
//
// Use GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of a CreateSqlInjectionMatchSet request. Submit a CreateSqlInjectionMatchSet
// request. Use GetChangeToken to get the change token that you provide in the
// ChangeToken parameter of an UpdateSqlInjectionMatchSet request. Submit an
// UpdateSqlInjectionMatchSet request to specify the parts of web requests in
// which you want to allow, block, or count malicious SQL code. For more information
// about how to use the AWS WAF API to allow or block HTTP requests, see the
// AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) CreateSqlInjectionMatchSet(input *CreateSqlInjectionMatchSetInput) (*CreateSqlInjectionMatchSetOutput, error) {
req, out := c.CreateSqlInjectionMatchSetRequest(input)
err := req.Send()
return out, err
}
const opCreateWebACL = "CreateWebACL"
// CreateWebACLRequest generates a request for the CreateWebACL operation.
func (c *WAF) CreateWebACLRequest(input *CreateWebACLInput) (req *request.Request, output *CreateWebACLOutput) {
op := &request.Operation{
Name: opCreateWebACL,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateWebACLInput{}
}
req = c.newRequest(op, input, output)
output = &CreateWebACLOutput{}
req.Data = output
return
}
// Creates a WebACL, which contains the Rules that identify the CloudFront web
// requests that you want to allow, block, or count. AWS WAF evaluates Rules
// in order based on the value of Priority for each Rule.
//
// You also specify a default action, either ALLOW or BLOCK. If a web request
// doesn't match any of the Rules in a WebACL, AWS WAF responds to the request
// with the default action.
//
// To create and configure a WebACL, perform the following steps:
//
// Create and update the ByteMatchSet objects and other predicates that you
// want to include in Rules. For more information, see CreateByteMatchSet, UpdateByteMatchSet,
// CreateIPSet, UpdateIPSet, CreateSqlInjectionMatchSet, and UpdateSqlInjectionMatchSet.
// Create and update the Rules that you want to include in the WebACL. For more
// information, see CreateRule and UpdateRule. Use GetChangeToken to get the
// change token that you provide in the ChangeToken parameter of a CreateWebACL
// request. Submit a CreateWebACL request. Use GetChangeToken to get the change
// token that you provide in the ChangeToken parameter of an UpdateWebACL request.
// Submit an UpdateWebACL request to specify the Rules that you want to include
// in the WebACL, to specify the default action, and to associate the WebACL
// with a CloudFront distribution. For more information about how to use the
// AWS WAF API, see the AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) CreateWebACL(input *CreateWebACLInput) (*CreateWebACLOutput, error) {
req, out := c.CreateWebACLRequest(input)
err := req.Send()
return out, err
}
const opDeleteByteMatchSet = "DeleteByteMatchSet"
// DeleteByteMatchSetRequest generates a request for the DeleteByteMatchSet operation.
func (c *WAF) DeleteByteMatchSetRequest(input *DeleteByteMatchSetInput) (req *request.Request, output *DeleteByteMatchSetOutput) {
op := &request.Operation{
Name: opDeleteByteMatchSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteByteMatchSetInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteByteMatchSetOutput{}
req.Data = output
return
}
// Permanently deletes a ByteMatchSet. You can't delete a ByteMatchSet if it's
// still used in any Rules or if it still includes any ByteMatchTuple objects
// (any filters).
//
// If you just want to remove a ByteMatchSet from a Rule, use UpdateRule.
//
// To permanently delete a ByteMatchSet, perform the following steps:
//
// Update the ByteMatchSet to remove filters, if any. For more information,
// see UpdateByteMatchSet. Use GetChangeToken to get the change token that you
// provide in the ChangeToken parameter of a DeleteByteMatchSet request. Submit
// a DeleteByteMatchSet request.
func (c *WAF) DeleteByteMatchSet(input *DeleteByteMatchSetInput) (*DeleteByteMatchSetOutput, error) {
req, out := c.DeleteByteMatchSetRequest(input)
err := req.Send()
return out, err
}
const opDeleteIPSet = "DeleteIPSet"
// DeleteIPSetRequest generates a request for the DeleteIPSet operation.
func (c *WAF) DeleteIPSetRequest(input *DeleteIPSetInput) (req *request.Request, output *DeleteIPSetOutput) {
op := &request.Operation{
Name: opDeleteIPSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteIPSetInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteIPSetOutput{}
req.Data = output
return
}
// Permanently deletes an IPSet. You can't delete an IPSet if it's still used
// in any Rules or if it still includes any IP addresses.
//
// If you just want to remove an IPSet from a Rule, use UpdateRule.
//
// To permanently delete an IPSet from AWS WAF, perform the following steps:
//
// Update the IPSet to remove IP address ranges, if any. For more information,
// see UpdateIPSet. Use GetChangeToken to get the change token that you provide
// in the ChangeToken parameter of a DeleteIPSet request. Submit a DeleteIPSet
// request.
func (c *WAF) DeleteIPSet(input *DeleteIPSetInput) (*DeleteIPSetOutput, error) {
req, out := c.DeleteIPSetRequest(input)
err := req.Send()
return out, err
}
const opDeleteRule = "DeleteRule"
// DeleteRuleRequest generates a request for the DeleteRule operation.
func (c *WAF) DeleteRuleRequest(input *DeleteRuleInput) (req *request.Request, output *DeleteRuleOutput) {
op := &request.Operation{
Name: opDeleteRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteRuleInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteRuleOutput{}
req.Data = output
return
}
// Permanently deletes a Rule. You can't delete a Rule if it's still used in
// any WebACL objects or if it still includes any predicates, such as ByteMatchSet
// objects.
//
// If you just want to remove a Rule from a WebACL, use UpdateWebACL.
//
// To permanently delete a Rule from AWS WAF, perform the following steps:
//
// Update the Rule to remove predicates, if any. For more information, see
// UpdateRule. Use GetChangeToken to get the change token that you provide in
// the ChangeToken parameter of a DeleteRule request. Submit a DeleteRule request.
func (c *WAF) DeleteRule(input *DeleteRuleInput) (*DeleteRuleOutput, error) {
req, out := c.DeleteRuleRequest(input)
err := req.Send()
return out, err
}
const opDeleteSizeConstraintSet = "DeleteSizeConstraintSet"
// DeleteSizeConstraintSetRequest generates a request for the DeleteSizeConstraintSet operation.
func (c *WAF) DeleteSizeConstraintSetRequest(input *DeleteSizeConstraintSetInput) (req *request.Request, output *DeleteSizeConstraintSetOutput) {
op := &request.Operation{
Name: opDeleteSizeConstraintSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteSizeConstraintSetInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteSizeConstraintSetOutput{}
req.Data = output
return
}
// Permanently deletes a SizeConstraintSet. You can't delete a SizeConstraintSet
// if it's still used in any Rules or if it still includes any SizeConstraint
// objects (any filters).
//
// If you just want to remove a SizeConstraintSet from a Rule, use UpdateRule.
//
// To permanently delete a SizeConstraintSet, perform the following steps:
//
// Update the SizeConstraintSet to remove filters, if any. For more information,
// see UpdateSizeConstraintSet. Use GetChangeToken to get the change token that
// you provide in the ChangeToken parameter of a DeleteSizeConstraintSet request.
// Submit a DeleteSizeConstraintSet request.
func (c *WAF) DeleteSizeConstraintSet(input *DeleteSizeConstraintSetInput) (*DeleteSizeConstraintSetOutput, error) {
req, out := c.DeleteSizeConstraintSetRequest(input)
err := req.Send()
return out, err
}
const opDeleteSqlInjectionMatchSet = "DeleteSqlInjectionMatchSet"
// DeleteSqlInjectionMatchSetRequest generates a request for the DeleteSqlInjectionMatchSet operation.
func (c *WAF) DeleteSqlInjectionMatchSetRequest(input *DeleteSqlInjectionMatchSetInput) (req *request.Request, output *DeleteSqlInjectionMatchSetOutput) {
op := &request.Operation{
Name: opDeleteSqlInjectionMatchSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteSqlInjectionMatchSetInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteSqlInjectionMatchSetOutput{}
req.Data = output
return
}
// Permanently deletes a SqlInjectionMatchSet. You can't delete a SqlInjectionMatchSet
// if it's still used in any Rules or if it still contains any SqlInjectionMatchTuple
// objects.
//
// If you just want to remove a SqlInjectionMatchSet from a Rule, use UpdateRule.
//
// To permanently delete a SqlInjectionMatchSet from AWS WAF, perform the following
// steps:
//
// Update the SqlInjectionMatchSet to remove filters, if any. For more information,
// see UpdateSqlInjectionMatchSet. Use GetChangeToken to get the change token
// that you provide in the ChangeToken parameter of a DeleteSqlInjectionMatchSet
// request. Submit a DeleteSqlInjectionMatchSet request.
func (c *WAF) DeleteSqlInjectionMatchSet(input *DeleteSqlInjectionMatchSetInput) (*DeleteSqlInjectionMatchSetOutput, error) {
req, out := c.DeleteSqlInjectionMatchSetRequest(input)
err := req.Send()
return out, err
}
const opDeleteWebACL = "DeleteWebACL"
// DeleteWebACLRequest generates a request for the DeleteWebACL operation.
func (c *WAF) DeleteWebACLRequest(input *DeleteWebACLInput) (req *request.Request, output *DeleteWebACLOutput) {
op := &request.Operation{
Name: opDeleteWebACL,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteWebACLInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteWebACLOutput{}
req.Data = output
return
}
// Permanently deletes a WebACL. You can't delete a WebACL if it still contains
// any Rules.
//
// To delete a WebACL, perform the following steps:
//
// Update the WebACL to remove Rules, if any. For more information, see UpdateWebACL.
// Use GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of a DeleteWebACL request. Submit a DeleteWebACL request.
func (c *WAF) DeleteWebACL(input *DeleteWebACLInput) (*DeleteWebACLOutput, error) {
req, out := c.DeleteWebACLRequest(input)
err := req.Send()
return out, err
}
const opGetByteMatchSet = "GetByteMatchSet"
// GetByteMatchSetRequest generates a request for the GetByteMatchSet operation.
func (c *WAF) GetByteMatchSetRequest(input *GetByteMatchSetInput) (req *request.Request, output *GetByteMatchSetOutput) {
op := &request.Operation{
Name: opGetByteMatchSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetByteMatchSetInput{}
}
req = c.newRequest(op, input, output)
output = &GetByteMatchSetOutput{}
req.Data = output
return
}
// Returns the ByteMatchSet specified by ByteMatchSetId.
func (c *WAF) GetByteMatchSet(input *GetByteMatchSetInput) (*GetByteMatchSetOutput, error) {
req, out := c.GetByteMatchSetRequest(input)
err := req.Send()
return out, err
}
const opGetChangeToken = "GetChangeToken"
// GetChangeTokenRequest generates a request for the GetChangeToken operation.
func (c *WAF) GetChangeTokenRequest(input *GetChangeTokenInput) (req *request.Request, output *GetChangeTokenOutput) {
op := &request.Operation{
Name: opGetChangeToken,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetChangeTokenInput{}
}
req = c.newRequest(op, input, output)
output = &GetChangeTokenOutput{}
req.Data = output
return
}
// When you want to create, update, or delete AWS WAF objects, get a change
// token and include the change token in the create, update, or delete request.
// Change tokens ensure that your application doesn't submit conflicting requests
// to AWS WAF.
//
// Each create, update, or delete request must use a unique change token. If
// your application submits a GetChangeToken request and then submits a second
// GetChangeToken request before submitting a create, update, or delete request,
// the second GetChangeToken request returns the same value as the first GetChangeToken
// request.
//
// When you use a change token in a create, update, or delete request, the
// status of the change token changes to PENDING, which indicates that AWS WAF
// is propagating the change to all AWS WAF servers. Use GetChangeTokenStatus
// to determine the status of your change token.
func (c *WAF) GetChangeToken(input *GetChangeTokenInput) (*GetChangeTokenOutput, error) {
req, out := c.GetChangeTokenRequest(input)
err := req.Send()
return out, err
}
const opGetChangeTokenStatus = "GetChangeTokenStatus"
// GetChangeTokenStatusRequest generates a request for the GetChangeTokenStatus operation.
func (c *WAF) GetChangeTokenStatusRequest(input *GetChangeTokenStatusInput) (req *request.Request, output *GetChangeTokenStatusOutput) {
op := &request.Operation{
Name: opGetChangeTokenStatus,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetChangeTokenStatusInput{}
}
req = c.newRequest(op, input, output)
output = &GetChangeTokenStatusOutput{}
req.Data = output
return
}
// Returns the status of a ChangeToken that you got by calling GetChangeToken.
// ChangeTokenStatus is one of the following values:
//
// PROVISIONED: You requested the change token by calling GetChangeToken,
// but you haven't used it yet in a call to create, update, or delete an AWS
// WAF object. PENDING: AWS WAF is propagating the create, update, or delete
// request to all AWS WAF servers. IN_SYNC: Propagation is complete.
func (c *WAF) GetChangeTokenStatus(input *GetChangeTokenStatusInput) (*GetChangeTokenStatusOutput, error) {
req, out := c.GetChangeTokenStatusRequest(input)
err := req.Send()
return out, err
}
const opGetIPSet = "GetIPSet"
// GetIPSetRequest generates a request for the GetIPSet operation.
func (c *WAF) GetIPSetRequest(input *GetIPSetInput) (req *request.Request, output *GetIPSetOutput) {
op := &request.Operation{
Name: opGetIPSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetIPSetInput{}
}
req = c.newRequest(op, input, output)
output = &GetIPSetOutput{}
req.Data = output
return
}
// Returns the IPSet that is specified by IPSetId.
func (c *WAF) GetIPSet(input *GetIPSetInput) (*GetIPSetOutput, error) {
req, out := c.GetIPSetRequest(input)
err := req.Send()
return out, err
}
const opGetRule = "GetRule"
// GetRuleRequest generates a request for the GetRule operation.
func (c *WAF) GetRuleRequest(input *GetRuleInput) (req *request.Request, output *GetRuleOutput) {
op := &request.Operation{
Name: opGetRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetRuleInput{}
}
req = c.newRequest(op, input, output)
output = &GetRuleOutput{}
req.Data = output
return
}
// Returns the Rule that is specified by the RuleId that you included in the
// GetRule request.
func (c *WAF) GetRule(input *GetRuleInput) (*GetRuleOutput, error) {
req, out := c.GetRuleRequest(input)
err := req.Send()
return out, err
}
const opGetSampledRequests = "GetSampledRequests"
// GetSampledRequestsRequest generates a request for the GetSampledRequests operation.
func (c *WAF) GetSampledRequestsRequest(input *GetSampledRequestsInput) (req *request.Request, output *GetSampledRequestsOutput) {
op := &request.Operation{
Name: opGetSampledRequests,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetSampledRequestsInput{}
}
req = c.newRequest(op, input, output)
output = &GetSampledRequestsOutput{}
req.Data = output
return
}
// Gets detailed information about a specified number of requests--a sample--that
// AWS WAF randomly selects from among the first 5,000 requests that your AWS
// resource received during a time range that you choose. You can specify a
// sample size of up to 100 requests, and you can specify any time range in
// the previous three hours.
//
// GetSampledRequests returns a time range, which is usually the time range
// that you specified. However, if your resource (such as a CloudFront distribution)
// received 5,000 requests before the specified time range elapsed, GetSampledRequests
// returns an updated time range. This new time range indicates the actual period
// during which AWS WAF selected the requests in the sample.
func (c *WAF) GetSampledRequests(input *GetSampledRequestsInput) (*GetSampledRequestsOutput, error) {
req, out := c.GetSampledRequestsRequest(input)
err := req.Send()
return out, err
}
const opGetSizeConstraintSet = "GetSizeConstraintSet"
// GetSizeConstraintSetRequest generates a request for the GetSizeConstraintSet operation.
func (c *WAF) GetSizeConstraintSetRequest(input *GetSizeConstraintSetInput) (req *request.Request, output *GetSizeConstraintSetOutput) {
op := &request.Operation{
Name: opGetSizeConstraintSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetSizeConstraintSetInput{}
}
req = c.newRequest(op, input, output)
output = &GetSizeConstraintSetOutput{}
req.Data = output
return
}
// Returns the SizeConstraintSet specified by SizeConstraintSetId.
func (c *WAF) GetSizeConstraintSet(input *GetSizeConstraintSetInput) (*GetSizeConstraintSetOutput, error) {
req, out := c.GetSizeConstraintSetRequest(input)
err := req.Send()
return out, err
}
const opGetSqlInjectionMatchSet = "GetSqlInjectionMatchSet"
// GetSqlInjectionMatchSetRequest generates a request for the GetSqlInjectionMatchSet operation.
func (c *WAF) GetSqlInjectionMatchSetRequest(input *GetSqlInjectionMatchSetInput) (req *request.Request, output *GetSqlInjectionMatchSetOutput) {
op := &request.Operation{
Name: opGetSqlInjectionMatchSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetSqlInjectionMatchSetInput{}
}
req = c.newRequest(op, input, output)
output = &GetSqlInjectionMatchSetOutput{}
req.Data = output
return
}
// Returns the SqlInjectionMatchSet that is specified by SqlInjectionMatchSetId.
func (c *WAF) GetSqlInjectionMatchSet(input *GetSqlInjectionMatchSetInput) (*GetSqlInjectionMatchSetOutput, error) {
req, out := c.GetSqlInjectionMatchSetRequest(input)
err := req.Send()
return out, err
}
const opGetWebACL = "GetWebACL"
// GetWebACLRequest generates a request for the GetWebACL operation.
func (c *WAF) GetWebACLRequest(input *GetWebACLInput) (req *request.Request, output *GetWebACLOutput) {
op := &request.Operation{
Name: opGetWebACL,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetWebACLInput{}
}
req = c.newRequest(op, input, output)
output = &GetWebACLOutput{}
req.Data = output
return
}
// Returns the WebACL that is specified by WebACLId.
func (c *WAF) GetWebACL(input *GetWebACLInput) (*GetWebACLOutput, error) {
req, out := c.GetWebACLRequest(input)
err := req.Send()
return out, err
}
const opListByteMatchSets = "ListByteMatchSets"
// ListByteMatchSetsRequest generates a request for the ListByteMatchSets operation.
func (c *WAF) ListByteMatchSetsRequest(input *ListByteMatchSetsInput) (req *request.Request, output *ListByteMatchSetsOutput) {
op := &request.Operation{
Name: opListByteMatchSets,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListByteMatchSetsInput{}
}
req = c.newRequest(op, input, output)
output = &ListByteMatchSetsOutput{}
req.Data = output
return
}
// Returns an array of ByteMatchSetSummary objects.
func (c *WAF) ListByteMatchSets(input *ListByteMatchSetsInput) (*ListByteMatchSetsOutput, error) {
req, out := c.ListByteMatchSetsRequest(input)
err := req.Send()
return out, err
}
const opListIPSets = "ListIPSets"
// ListIPSetsRequest generates a request for the ListIPSets operation.
func (c *WAF) ListIPSetsRequest(input *ListIPSetsInput) (req *request.Request, output *ListIPSetsOutput) {
op := &request.Operation{
Name: opListIPSets,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListIPSetsInput{}
}
req = c.newRequest(op, input, output)
output = &ListIPSetsOutput{}
req.Data = output
return
}
// Returns an array of IPSetSummary objects in the response.
func (c *WAF) ListIPSets(input *ListIPSetsInput) (*ListIPSetsOutput, error) {
req, out := c.ListIPSetsRequest(input)
err := req.Send()
return out, err
}
const opListRules = "ListRules"
// ListRulesRequest generates a request for the ListRules operation.
func (c *WAF) ListRulesRequest(input *ListRulesInput) (req *request.Request, output *ListRulesOutput) {
op := &request.Operation{
Name: opListRules,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListRulesInput{}
}
req = c.newRequest(op, input, output)
output = &ListRulesOutput{}
req.Data = output
return
}
// Returns an array of RuleSummary objects.
func (c *WAF) ListRules(input *ListRulesInput) (*ListRulesOutput, error) {
req, out := c.ListRulesRequest(input)
err := req.Send()
return out, err
}
const opListSizeConstraintSets = "ListSizeConstraintSets"
// ListSizeConstraintSetsRequest generates a request for the ListSizeConstraintSets operation.
func (c *WAF) ListSizeConstraintSetsRequest(input *ListSizeConstraintSetsInput) (req *request.Request, output *ListSizeConstraintSetsOutput) {
op := &request.Operation{
Name: opListSizeConstraintSets,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListSizeConstraintSetsInput{}
}
req = c.newRequest(op, input, output)
output = &ListSizeConstraintSetsOutput{}
req.Data = output
return
}
// Returns an array of SizeConstraintSetSummary objects.
func (c *WAF) ListSizeConstraintSets(input *ListSizeConstraintSetsInput) (*ListSizeConstraintSetsOutput, error) {
req, out := c.ListSizeConstraintSetsRequest(input)
err := req.Send()
return out, err
}
const opListSqlInjectionMatchSets = "ListSqlInjectionMatchSets"
// ListSqlInjectionMatchSetsRequest generates a request for the ListSqlInjectionMatchSets operation.
func (c *WAF) ListSqlInjectionMatchSetsRequest(input *ListSqlInjectionMatchSetsInput) (req *request.Request, output *ListSqlInjectionMatchSetsOutput) {
op := &request.Operation{
Name: opListSqlInjectionMatchSets,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListSqlInjectionMatchSetsInput{}
}
req = c.newRequest(op, input, output)
output = &ListSqlInjectionMatchSetsOutput{}
req.Data = output
return
}
// Returns an array of SqlInjectionMatchSet objects.
func (c *WAF) ListSqlInjectionMatchSets(input *ListSqlInjectionMatchSetsInput) (*ListSqlInjectionMatchSetsOutput, error) {
req, out := c.ListSqlInjectionMatchSetsRequest(input)
err := req.Send()
return out, err
}
const opListWebACLs = "ListWebACLs"
// ListWebACLsRequest generates a request for the ListWebACLs operation.
func (c *WAF) ListWebACLsRequest(input *ListWebACLsInput) (req *request.Request, output *ListWebACLsOutput) {
op := &request.Operation{
Name: opListWebACLs,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListWebACLsInput{}
}
req = c.newRequest(op, input, output)
output = &ListWebACLsOutput{}
req.Data = output
return
}
// Returns an array of WebACLSummary objects in the response.
func (c *WAF) ListWebACLs(input *ListWebACLsInput) (*ListWebACLsOutput, error) {
req, out := c.ListWebACLsRequest(input)
err := req.Send()
return out, err
}
const opUpdateByteMatchSet = "UpdateByteMatchSet"
// UpdateByteMatchSetRequest generates a request for the UpdateByteMatchSet operation.
func (c *WAF) UpdateByteMatchSetRequest(input *UpdateByteMatchSetInput) (req *request.Request, output *UpdateByteMatchSetOutput) {
op := &request.Operation{
Name: opUpdateByteMatchSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateByteMatchSetInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateByteMatchSetOutput{}
req.Data = output
return
}
// Inserts or deletes ByteMatchTuple objects (filters) in a ByteMatchSet. For
// each ByteMatchTuple object, you specify the following values:
//
// Whether to insert or delete the object from the array. If you want to change
// a ByteMatchSetUpdate object, you delete the existing object and add a new
// one. The part of a web request that you want AWS WAF to inspect, such as
// a query string or the value of the User-Agent header. The bytes (typically
// a string that corresponds with ASCII characters) that you want AWS WAF to
// look for. For more information, including how you specify the values for
// the AWS WAF API and the AWS CLI or SDKs, see TargetString in the ByteMatchTuple
// data type. Where to look, such as at the beginning or the end of a query
// string. Whether to perform any conversions on the request, such as converting
// it to lowercase, before inspecting it for the specified string. For example,
// you can add a ByteMatchSetUpdate object that matches web requests in which
// User-Agent headers contain the string BadBot. You can then configure AWS
// WAF to block those requests.
//
// To create and configure a ByteMatchSet, perform the following steps:
//
// Create a ByteMatchSet. For more information, see CreateByteMatchSet. Use
// GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of an UpdateByteMatchSet request. Submit an UpdateByteMatchSet
// request to specify the part of the request that you want AWS WAF to inspect
// (for example, the header or the URI) and the value that you want AWS WAF
// to watch for. For more information about how to use the AWS WAF API to allow
// or block HTTP requests, see the AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) UpdateByteMatchSet(input *UpdateByteMatchSetInput) (*UpdateByteMatchSetOutput, error) {
req, out := c.UpdateByteMatchSetRequest(input)
err := req.Send()
return out, err
}
const opUpdateIPSet = "UpdateIPSet"
// UpdateIPSetRequest generates a request for the UpdateIPSet operation.
func (c *WAF) UpdateIPSetRequest(input *UpdateIPSetInput) (req *request.Request, output *UpdateIPSetOutput) {
op := &request.Operation{
Name: opUpdateIPSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateIPSetInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateIPSetOutput{}
req.Data = output
return
}
// Inserts or deletes IPSetDescriptor objects in an IPSet. For each IPSetDescriptor
// object, you specify the following values:
//
// Whether to insert or delete the object from the array. If you want to change
// an IPSetDescriptor object, you delete the existing object and add a new one.
// The IP address version, IPv4. The IP address in CIDR notation, for example,
// 192.0.2.0/24 (for the range of IP addresses from 192.0.2.0 to 192.0.2.255)
// or 192.0.2.44/32 (for the individual IP address 192.0.2.44). AWS WAF supports
// /8, /16, /24, and /32 IP address ranges. For more information about CIDR
// notation, see the Wikipedia entry Classless Inter-Domain Routing (https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing).
//
// You use an IPSet to specify which web requests you want to allow or block
// based on the IP addresses that the requests originated from. For example,
// if you're receiving a lot of requests from one or a small number of IP addresses
// and you want to block the requests, you can create an IPSet that specifies
// those IP addresses, and then configure AWS WAF to block the requests.
//
// To create and configure an IPSet, perform the following steps:
//
// Submit a CreateIPSet request. Use GetChangeToken to get the change token
// that you provide in the ChangeToken parameter of an UpdateIPSet request.
// Submit an UpdateIPSet request to specify the IP addresses that you want AWS
// WAF to watch for. When you update an IPSet, you specify the IP addresses
// that you want to add and/or the IP addresses that you want to delete. If
// you want to change an IP address, you delete the existing IP address and
// add the new one.
//
// For more information about how to use the AWS WAF API to allow or block
// HTTP requests, see the AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) UpdateIPSet(input *UpdateIPSetInput) (*UpdateIPSetOutput, error) {
req, out := c.UpdateIPSetRequest(input)
err := req.Send()
return out, err
}
const opUpdateRule = "UpdateRule"
// UpdateRuleRequest generates a request for the UpdateRule operation.
func (c *WAF) UpdateRuleRequest(input *UpdateRuleInput) (req *request.Request, output *UpdateRuleOutput) {
op := &request.Operation{
Name: opUpdateRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateRuleInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateRuleOutput{}
req.Data = output
return
}
// Inserts or deletes Predicate objects in a Rule. Each Predicate object identifies
// a predicate, such as a ByteMatchSet or an IPSet, that specifies the web requests
// that you want to allow, block, or count. If you add more than one predicate
// to a Rule, a request must match all of the specifications to be allowed,
// blocked, or counted. For example, suppose you add the following to a Rule:
//
// A ByteMatchSet that matches the value BadBot in the User-Agent header An
// IPSet that matches the IP address 192.0.2.44 You then add the Rule to a
// WebACL and specify that you want to block requests that satisfy the Rule.
// For a request to be blocked, the User-Agent header in the request must contain
// the value BadBot and the request must originate from the IP address 192.0.2.44.
//
// To create and configure a Rule, perform the following steps:
//
// Create and update the predicates that you want to include in the Rule.
// Create the Rule. See CreateRule. Use GetChangeToken to get the change token
// that you provide in the ChangeToken parameter of an UpdateRule request. Submit
// an UpdateRule request to add predicates to the Rule. Create and update a
// WebACL that contains the Rule. See CreateWebACL. If you want to replace
// one ByteMatchSet or IPSet with another, you delete the existing one and add
// the new one.
//
// For more information about how to use the AWS WAF API to allow or block
// HTTP requests, see the AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) UpdateRule(input *UpdateRuleInput) (*UpdateRuleOutput, error) {
req, out := c.UpdateRuleRequest(input)
err := req.Send()
return out, err
}
const opUpdateSizeConstraintSet = "UpdateSizeConstraintSet"
// UpdateSizeConstraintSetRequest generates a request for the UpdateSizeConstraintSet operation.
func (c *WAF) UpdateSizeConstraintSetRequest(input *UpdateSizeConstraintSetInput) (req *request.Request, output *UpdateSizeConstraintSetOutput) {
op := &request.Operation{
Name: opUpdateSizeConstraintSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateSizeConstraintSetInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateSizeConstraintSetOutput{}
req.Data = output
return
}
// Inserts or deletes SizeConstraint objects (filters) in a SizeConstraintSet.
// For each SizeConstraint object, you specify the following values:
//
// Whether to insert or delete the object from the array. If you want to change
// a SizeConstraintSetUpdate object, you delete the existing object and add
// a new one. The part of a web request that you want AWS WAF to evaluate, such
// as the length of a query string or the length of the User-Agent header. Whether
// to perform any transformations on the request, such as converting it to lowercase,
// before checking its length. Note that transformations of the request body
// are not supported because the AWS resource forwards only the first 8192 bytes
// of your request to AWS WAF. A ComparisonOperator used for evaluating the
// selected part of the request against the specified Size, such as equals,
// greater than, less than, and so on. The length, in bytes, that you want AWS
// WAF to watch for in selected part of the request. The length is computed
// after applying the transformation. For example, you can add a SizeConstraintSetUpdate
// object that matches web requests in which the length of the User-Agent header
// is greater than 100 bytes. You can then configure AWS WAF to block those
// requests.
//
// To create and configure a SizeConstraintSet, perform the following steps:
//
// Create a SizeConstraintSet. For more information, see CreateSizeConstraintSet.
// Use GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of an UpdateSizeConstraintSet request. Submit an UpdateSizeConstraintSet
// request to specify the part of the request that you want AWS WAF to inspect
// (for example, the header or the URI) and the value that you want AWS WAF
// to watch for. For more information about how to use the AWS WAF API to allow
// or block HTTP requests, see the AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) UpdateSizeConstraintSet(input *UpdateSizeConstraintSetInput) (*UpdateSizeConstraintSetOutput, error) {
req, out := c.UpdateSizeConstraintSetRequest(input)
err := req.Send()
return out, err
}
const opUpdateSqlInjectionMatchSet = "UpdateSqlInjectionMatchSet"
// UpdateSqlInjectionMatchSetRequest generates a request for the UpdateSqlInjectionMatchSet operation.
func (c *WAF) UpdateSqlInjectionMatchSetRequest(input *UpdateSqlInjectionMatchSetInput) (req *request.Request, output *UpdateSqlInjectionMatchSetOutput) {
op := &request.Operation{
Name: opUpdateSqlInjectionMatchSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateSqlInjectionMatchSetInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateSqlInjectionMatchSetOutput{}
req.Data = output
return
}
// Inserts or deletes SqlInjectionMatchTuple objects (filters) in a SqlInjectionMatchSet.
// For each SqlInjectionMatchTuple object, you specify the following values:
//
// Action: Whether to insert the object into or delete the object from the
// array. To change a SqlInjectionMatchTuple, you delete the existing object
// and add a new one. FieldToMatch: The part of web requests that you want AWS
// WAF to inspect and, if you want AWS WAF to inspect a header, the name of
// the header. TextTransformation: Which text transformation, if any, to perform
// on the web request before inspecting the request for snippets of malicious
// SQL code. You use SqlInjectionMatchSet objects to specify which CloudFront
// requests you want to allow, block, or count. For example, if you're receiving
// requests that contain snippets of SQL code in the query string and you want
// to block the requests, you can create a SqlInjectionMatchSet with the applicable
// settings, and then configure AWS WAF to block the requests.
//
// To create and configure a SqlInjectionMatchSet, perform the following steps:
//
// Submit a CreateSqlInjectionMatchSet request. Use GetChangeToken to get
// the change token that you provide in the ChangeToken parameter of an UpdateIPSet
// request. Submit an UpdateSqlInjectionMatchSet request to specify the parts
// of web requests that you want AWS WAF to inspect for snippets of SQL code.
// For more information about how to use the AWS WAF API to allow or block
// HTTP requests, see the AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) UpdateSqlInjectionMatchSet(input *UpdateSqlInjectionMatchSetInput) (*UpdateSqlInjectionMatchSetOutput, error) {
req, out := c.UpdateSqlInjectionMatchSetRequest(input)
err := req.Send()
return out, err
}
const opUpdateWebACL = "UpdateWebACL"
// UpdateWebACLRequest generates a request for the UpdateWebACL operation.
func (c *WAF) UpdateWebACLRequest(input *UpdateWebACLInput) (req *request.Request, output *UpdateWebACLOutput) {
op := &request.Operation{
Name: opUpdateWebACL,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateWebACLInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateWebACLOutput{}
req.Data = output
return
}
// Inserts or deletes ActivatedRule objects in a WebACL. Each Rule identifies
// web requests that you want to allow, block, or count. When you update a WebACL,
// you specify the following values:
//
// A default action for the WebACL, either ALLOW or BLOCK. AWS WAF performs
// the default action if a request doesn't match the criteria in any of the
// Rules in a WebACL. The Rules that you want to add and/or delete. If you want
// to replace one Rule with another, you delete the existing Rule and add the
// new one. For each Rule, whether you want AWS WAF to allow requests, block
// requests, or count requests that match the conditions in the Rule. The order
// in which you want AWS WAF to evaluate the Rules in a WebACL. If you add more
// than one Rule to a WebACL, AWS WAF evaluates each request against the Rules
// in order based on the value of Priority. (The Rule that has the lowest value
// for Priority is evaluated first.) When a web request matches all of the predicates
// (such as ByteMatchSets and IPSets) in a Rule, AWS WAF immediately takes the
// corresponding action, allow or block, and doesn't evaluate the request against
// the remaining Rules in the WebACL, if any. The CloudFront distribution that
// you want to associate with the WebACL. To create and configure a WebACL,
// perform the following steps:
//
// Create and update the predicates that you want to include in Rules. For
// more information, see CreateByteMatchSet, UpdateByteMatchSet, CreateIPSet,
// UpdateIPSet, CreateSqlInjectionMatchSet, and UpdateSqlInjectionMatchSet.
// Create and update the Rules that you want to include in the WebACL. For more
// information, see CreateRule and UpdateRule. Create a WebACL. See CreateWebACL.
// Use GetChangeToken to get the change token that you provide in the ChangeToken
// parameter of an UpdateWebACL request. Submit an UpdateWebACL request to specify
// the Rules that you want to include in the WebACL, to specify the default
// action, and to associate the WebACL with a CloudFront distribution. For
// more information about how to use the AWS WAF API to allow or block HTTP
// requests, see the AWS WAF Developer Guide (http://docs.aws.amazon.com/waf/latest/developerguide/).
func (c *WAF) UpdateWebACL(input *UpdateWebACLInput) (*UpdateWebACLOutput, error) {
req, out := c.UpdateWebACLRequest(input)
err := req.Send()
return out, err
}
// The ActivatedRule object in an UpdateWebACL request specifies a Rule that
// you want to insert or delete, the priority of the Rule in the WebACL, and
// the action that you want AWS WAF to take when a web request matches the Rule
// (ALLOW, BLOCK, or COUNT).
//
// To specify whether to insert or delete a Rule, use the Action parameter
// in the WebACLUpdate data type.
type ActivatedRule struct {
_ struct{} `type:"structure"`
// Specifies the action that CloudFront or AWS WAF takes when a web request
// matches the conditions in the Rule. Valid values for Action include the following:
//
// ALLOW: CloudFront responds with the requested object. BLOCK: CloudFront
// responds with an HTTP 403 (Forbidden) status code. COUNT: AWS WAF increments
// a counter of requests that match the conditions in the rule and then continues
// to inspect the web request based on the remaining rules in the web ACL.
Action *WafAction `type:"structure" required:"true"`
// Specifies the order in which the Rules in a WebACL are evaluated. Rules with
// a lower value for Priority are evaluated before Rules with a higher value.
// The value must be a unique integer. If you add multiple Rules to a WebACL,
// the values don't need to be consecutive.
Priority *int64 `type:"integer" required:"true"`
// The RuleId for a Rule. You use RuleId to get more information about a Rule
// (see GetRule), update a Rule (see UpdateRule), insert a Rule into a WebACL
// or delete a one from a WebACL (see UpdateWebACL), or delete a Rule from AWS
// WAF (see DeleteRule).
//
// RuleId is returned by CreateRule and by ListRules.
RuleId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s ActivatedRule) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActivatedRule) GoString() string {
return s.String()
}
// In a GetByteMatchSet request, ByteMatchSet is a complex type that contains
// the ByteMatchSetId and Name of a ByteMatchSet, and the values that you specified
// when you updated the ByteMatchSet.
//
// A complex type that contains ByteMatchTuple objects, which specify the parts
// of web requests that you want AWS WAF to inspect and the values that you
// want AWS WAF to search for. If a ByteMatchSet contains more than one ByteMatchTuple
// object, a request needs to match the settings in only one ByteMatchTuple
// to be considered a match.
type ByteMatchSet struct {
_ struct{} `type:"structure"`
// The ByteMatchSetId for a ByteMatchSet. You use ByteMatchSetId to get information
// about a ByteMatchSet (see GetByteMatchSet), update a ByteMatchSet (see UpdateByteMatchSet,
// insert a ByteMatchSet into a Rule or delete one from a Rule (see UpdateRule),
// and delete a ByteMatchSet from AWS WAF (see DeleteByteMatchSet).
//
// ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.
ByteMatchSetId *string `min:"1" type:"string" required:"true"`
// Specifies the bytes (typically a string that corresponds with ASCII characters)
// that you want AWS WAF to search for in web requests, the location in requests
// that you want AWS WAF to search, and other settings.
ByteMatchTuples []*ByteMatchTuple `type:"list" required:"true"`
// A friendly name or description of the ByteMatchSet. You can't change Name
// after you create a ByteMatchSet.
Name *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ByteMatchSet) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ByteMatchSet) GoString() string {
return s.String()
}
// Returned by ListByteMatchSets. Each ByteMatchSetSummary object includes the
// Name and ByteMatchSetId for one ByteMatchSet.
type ByteMatchSetSummary struct {
_ struct{} `type:"structure"`
// The ByteMatchSetId for a ByteMatchSet. You use ByteMatchSetId to get information
// about a ByteMatchSet, update a ByteMatchSet, remove a ByteMatchSet from a
// Rule, and delete a ByteMatchSet from AWS WAF.
//
// ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.
ByteMatchSetId *string `min:"1" type:"string" required:"true"`
// A friendly name or description of the ByteMatchSet. You can't change Name
// after you create a ByteMatchSet.
Name *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s ByteMatchSetSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ByteMatchSetSummary) GoString() string {
return s.String()
}
// In an UpdateByteMatchSet request, ByteMatchSetUpdate specifies whether to
// insert or delete a ByteMatchTuple and includes the settings for the ByteMatchTuple.
type ByteMatchSetUpdate struct {
_ struct{} `type:"structure"`
// Specifies whether to insert or delete a ByteMatchTuple.
Action *string `type:"string" required:"true" enum:"ChangeAction"`
// Information about the part of a web request that you want AWS WAF to inspect
// and the value that you want AWS WAF to search for. If you specify DELETE
// for the value of Action, the ByteMatchTuple values must exactly match the
// values in the ByteMatchTuple that you want to delete from the ByteMatchSet.
ByteMatchTuple *ByteMatchTuple `type:"structure" required:"true"`
}
// String returns the string representation
func (s ByteMatchSetUpdate) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ByteMatchSetUpdate) GoString() string {
return s.String()
}
// The bytes (typically a string that corresponds with ASCII characters) that
// you want AWS WAF to search for in web requests, the location in requests
// that you want AWS WAF to search, and other settings.
type ByteMatchTuple struct {
_ struct{} `type:"structure"`
// The part of a web request that you want AWS WAF to search, such as a specified
// header or a query string. For more information, see FieldToMatch.
FieldToMatch *FieldToMatch `type:"structure" required:"true"`
// Within the portion of a web request that you want to search (for example,
// in the query string, if any), specify where you want AWS WAF to search. Valid
// values include the following:
//
// CONTAINS
//
// The specified part of the web request must include the value of TargetString,
// but the location doesn't matter.
//
// CONTAINS_WORD
//
// The specified part of the web request must include the value of TargetString,
// and TargetString must contain only alphanumeric characters or underscore
// (A-Z, a-z, 0-9, or _). In addition, TargetString must be a word, which means
// one of the following:
//
// TargetString exactly matches the value of the specified part of the web
// request, such as the value of a header. TargetString is at the beginning
// of the specified part of the web request and is followed by a character other
// than an alphanumeric character or underscore (_), for example, BadBot;. TargetString
// is at the end of the specified part of the web request and is preceded by
// a character other than an alphanumeric character or underscore (_), for example,
// ;BadBot. TargetString is in the middle of the specified part of the web request
// and is preceded and followed by characters other than alphanumeric characters
// or underscore (_), for example, -BadBot;. EXACTLY
//
// The value of the specified part of the web request must exactly match the
// value of TargetString.
//
// STARTS_WITH
//
// The value of TargetString must appear at the beginning of the specified
// part of the web request.
//
// ENDS_WITH
//
// The value of TargetString must appear at the end of the specified part of
// the web request.
PositionalConstraint *string `type:"string" required:"true" enum:"PositionalConstraint"`
// The value that you want AWS WAF to search for. AWS WAF searches for the specified
// string in the part of web requests that you specified in FieldToMatch. The
// maximum length of the value is 50 bytes.
//
// Valid values depend on the values that you specified for FieldToMatch:
//
// HEADER: The value that you want AWS WAF to search for in the request header
// that you specified in FieldToMatch, for example, the value of the User-Agent
// or Referer header. METHOD: The HTTP method, which indicates the type of operation
// specified in the request. CloudFront supports the following methods: DELETE,
// GET, HEAD, OPTIONS, PATCH, POST, and PUT. QUERY_STRING: The value that you
// want AWS WAF to search for in the query string, which is the part of a URL
// that appears after a ? character. URI: The value that you want AWS WAF to
// search for in the part of a URL that identifies a resource, for example,
// /images/daily-ad.jpg. BODY: The part of a request that contains any additional
// data that you want to send to your web server as the HTTP request body, such
// as data from a form. The request body immediately follows the request headers.
// Note that only the first 8192 bytes of the request body are forwarded to
// AWS WAF for inspection. To allow or block requests based on the length of
// the body, you can create a size constraint set. For more information, see
// CreateSizeConstraintSet. If TargetString includes alphabetic characters
// A-Z and a-z, note that the value is case sensitive.
//
// If you're using the AWS WAF API
//
// Specify a base64-encoded version of the value. The maximum length of the
// value before you base64-encode it is 50 bytes.
//
// For example, suppose the value of Type is HEADER and the value of Data is
// User-Agent. If you want to search the User-Agent header for the value BadBot,
// you base64-encode BadBot using MIME base64 encoding and include the resulting
// value, QmFkQm90, in the value of TargetString.
//
// If you're using the AWS CLI or one of the AWS SDKs
//
// The value that you want AWS WAF to search for. The SDK automatically base64
// encodes the value.
//
// TargetString is automatically base64 encoded/decoded by the SDK.
TargetString []byte `type:"blob" required:"true"`
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass AWS WAF. If you specify a transformation,
// AWS WAF performs the transformation on TargetString before inspecting a request
// for a match.
//
// CMD_LINE
//
// When you're concerned that attackers are injecting an operating system commandline
// command and using unusual formatting to disguise some or all of the command,
// use this option to perform the following transformations:
//
// Delete the following characters: \ " ' ^ Delete spaces before the following
// characters: / ( Replace the following characters with a space: , ; Replace
// multiple spaces with one space Convert uppercase letters (A-Z) to lowercase
// (a-z) COMPRESS_WHITE_SPACE
//
// Use this option to replace the following characters with a space character
// (decimal 32):
//
// \f, formfeed, decimal 12 \t, tab, decimal 9 \n, newline, decimal 10 \r,
// carriage return, decimal 13 \v, vertical tab, decimal 11 non-breaking space,
// decimal 160 COMPRESS_WHITE_SPACE also replaces multiple spaces with one
// space.
//
// HTML_ENTITY_DECODE
//
// Use this option to replace HTML-encoded characters with unencoded characters.
// HTML_ENTITY_DECODE performs the following operations:
//
// Replaces (ampersand)quot; with " Replaces (ampersand)nbsp; with a non-breaking
// space, decimal 160 Replaces (ampersand)lt; with a "less than" symbol Replaces
// (ampersand)gt; with > Replaces characters that are represented in hexadecimal
// format, (ampersand)#xhhhh;, with the corresponding characters Replaces characters
// that are represented in decimal format, (ampersand)#nnnn;, with the corresponding
// characters LOWERCASE
//
// Use this option to convert uppercase letters (A-Z) to lowercase (a-z).
//
// URL_DECODE
//
// Use this option to decode a URL-encoded value.
//
// NONE
//
// Specify NONE if you don't want to perform any text transformations.
TextTransformation *string `type:"string" required:"true" enum:"TextTransformation"`
}
// String returns the string representation
func (s ByteMatchTuple) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ByteMatchTuple) GoString() string {
return s.String()
}
type CreateByteMatchSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// A friendly name or description of the ByteMatchSet. You can't change Name
// after you create a ByteMatchSet.
Name *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateByteMatchSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateByteMatchSetInput) GoString() string {
return s.String()
}
type CreateByteMatchSetOutput struct {
_ struct{} `type:"structure"`
// A ByteMatchSet that contains no ByteMatchTuple objects.
ByteMatchSet *ByteMatchSet `type:"structure"`
// The ChangeToken that you used to submit the CreateByteMatchSet request. You
// can also use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s CreateByteMatchSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateByteMatchSetOutput) GoString() string {
return s.String()
}
type CreateIPSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// A friendly name or description of the IPSet. You can't change Name after
// you create the IPSet.
Name *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateIPSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateIPSetInput) GoString() string {
return s.String()
}
type CreateIPSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the CreateIPSet request. You can
// also use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
// The IPSet returned in the CreateIPSet response.
IPSet *IPSet `type:"structure"`
}
// String returns the string representation
func (s CreateIPSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateIPSetOutput) GoString() string {
return s.String()
}
type CreateRuleInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// A friendly name or description for the metrics for this Rule. The name can
// contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't contain
// whitespace. You can't change the name of the metric after you create the
// Rule.
MetricName *string `type:"string" required:"true"`
// A friendly name or description of the Rule. You can't change the name of
// a Rule after you create it.
Name *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateRuleInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateRuleInput) GoString() string {
return s.String()
}
type CreateRuleOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the CreateRule request. You can also
// use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
// The Rule returned in the CreateRule response.
Rule *Rule `type:"structure"`
}
// String returns the string representation
func (s CreateRuleOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateRuleOutput) GoString() string {
return s.String()
}
type CreateSizeConstraintSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// A friendly name or description of the SizeConstraintSet. You can't change
// Name after you create a SizeConstraintSet.
Name *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateSizeConstraintSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateSizeConstraintSetInput) GoString() string {
return s.String()
}
type CreateSizeConstraintSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the CreateSizeConstraintSet request.
// You can also use this value to query the status of the request. For more
// information, see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
// A SizeConstraintSet that contains no SizeConstraint objects.
SizeConstraintSet *SizeConstraintSet `type:"structure"`
}
// String returns the string representation
func (s CreateSizeConstraintSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateSizeConstraintSetOutput) GoString() string {
return s.String()
}
// A request to create a SqlInjectionMatchSet.
type CreateSqlInjectionMatchSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// A friendly name or description for the SqlInjectionMatchSet that you're creating.
// You can't change Name after you create the SqlInjectionMatchSet.
Name *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateSqlInjectionMatchSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateSqlInjectionMatchSetInput) GoString() string {
return s.String()
}
// The response to a CreateSqlInjectionMatchSet request.
type CreateSqlInjectionMatchSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the CreateSqlInjectionMatchSet request.
// You can also use this value to query the status of the request. For more
// information, see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
// A SqlInjectionMatchSet.
SqlInjectionMatchSet *SqlInjectionMatchSet `type:"structure"`
}
// String returns the string representation
func (s CreateSqlInjectionMatchSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateSqlInjectionMatchSetOutput) GoString() string {
return s.String()
}
type CreateWebACLInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The action that you want AWS WAF to take when a request doesn't match the
// criteria specified in any of the Rule objects that are associated with the
// WebACL.
DefaultAction *WafAction `type:"structure" required:"true"`
// A friendly name or description for the metrics for this WebACL. The name
// can contain only alphanumeric characters (A-Z, a-z, 0-9); the name can't
// contain whitespace. You can't change MetricName after you create the WebACL.
MetricName *string `type:"string" required:"true"`
// A friendly name or description of the WebACL. You can't change Name after
// you create the WebACL.
Name *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateWebACLInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateWebACLInput) GoString() string {
return s.String()
}
type CreateWebACLOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the CreateWebACL request. You can
// also use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
// The WebACL returned in the CreateWebACL response.
WebACL *WebACL `type:"structure"`
}
// String returns the string representation
func (s CreateWebACLOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateWebACLOutput) GoString() string {
return s.String()
}
type DeleteByteMatchSetInput struct {
_ struct{} `type:"structure"`
// The ByteMatchSetId of the ByteMatchSet that you want to delete. ByteMatchSetId
// is returned by CreateByteMatchSet and by ListByteMatchSets.
ByteMatchSetId *string `min:"1" type:"string" required:"true"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteByteMatchSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteByteMatchSetInput) GoString() string {
return s.String()
}
type DeleteByteMatchSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the DeleteByteMatchSet request. You
// can also use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s DeleteByteMatchSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteByteMatchSetOutput) GoString() string {
return s.String()
}
type DeleteIPSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The IPSetId of the IPSet that you want to delete. IPSetId is returned by
// CreateIPSet and by ListIPSets.
IPSetId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteIPSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteIPSetInput) GoString() string {
return s.String()
}
type DeleteIPSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the DeleteIPSet request. You can
// also use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s DeleteIPSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteIPSetOutput) GoString() string {
return s.String()
}
type DeleteRuleInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The RuleId of the Rule that you want to delete. RuleId is returned by CreateRule
// and by ListRules.
RuleId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteRuleInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteRuleInput) GoString() string {
return s.String()
}
type DeleteRuleOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the DeleteRule request. You can also
// use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s DeleteRuleOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteRuleOutput) GoString() string {
return s.String()
}
type DeleteSizeConstraintSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The SizeConstraintSetId of the SizeConstraintSet that you want to delete.
// SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.
SizeConstraintSetId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteSizeConstraintSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteSizeConstraintSetInput) GoString() string {
return s.String()
}
type DeleteSizeConstraintSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the DeleteSizeConstraintSet request.
// You can also use this value to query the status of the request. For more
// information, see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s DeleteSizeConstraintSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteSizeConstraintSetOutput) GoString() string {
return s.String()
}
// A request to delete a SqlInjectionMatchSet from AWS WAF.
type DeleteSqlInjectionMatchSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The SqlInjectionMatchSetId of the SqlInjectionMatchSet that you want to delete.
// SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
SqlInjectionMatchSetId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteSqlInjectionMatchSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteSqlInjectionMatchSetInput) GoString() string {
return s.String()
}
// The response to a request to delete a SqlInjectionMatchSet from AWS WAF.
type DeleteSqlInjectionMatchSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the DeleteSqlInjectionMatchSet request.
// You can also use this value to query the status of the request. For more
// information, see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s DeleteSqlInjectionMatchSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteSqlInjectionMatchSetOutput) GoString() string {
return s.String()
}
type DeleteWebACLInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The WebACLId of the WebACL that you want to delete. WebACLId is returned
// by CreateWebACL and by ListWebACLs.
WebACLId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteWebACLInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteWebACLInput) GoString() string {
return s.String()
}
type DeleteWebACLOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the DeleteWebACL request. You can
// also use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s DeleteWebACLOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteWebACLOutput) GoString() string {
return s.String()
}
// Specifies where in a web request to look for TargetString.
type FieldToMatch struct {
_ struct{} `type:"structure"`
// When the value of Type is HEADER, enter the name of the header that you want
// AWS WAF to search, for example, User-Agent or Referer. If the value of Type
// is any other value, omit Data.
//
// The name of the header is not case sensitive.
Data *string `type:"string"`
// The part of the web request that you want AWS WAF to search for a specified
// string. Parts of a request that you can search include the following:
//
// HEADER: A specified request header, for example, the value of the User-Agent
// or Referer header. If you choose HEADER for the type, specify the name of
// the header in Data. METHOD: The HTTP method, which indicated the type of
// operation that the request is asking the origin to perform. Amazon CloudFront
// supports the following methods: DELETE, GET, HEAD, OPTIONS, PATCH, POST,
// and PUT. QUERY_STRING: A query string, which is the part of a URL that appears
// after a ? character, if any. URI: The part of a web request that identifies
// a resource, for example, /images/daily-ad.jpg. BODY: The part of a request
// that contains any additional data that you want to send to your web server
// as the HTTP request body, such as data from a form. The request body immediately
// follows the request headers. Note that only the first 8192 bytes of the request
// body are forwarded to AWS WAF for inspection. To allow or block requests
// based on the length of the body, you can create a size constraint set. For
// more information, see CreateSizeConstraintSet.
Type *string `type:"string" required:"true" enum:"MatchFieldType"`
}
// String returns the string representation
func (s FieldToMatch) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s FieldToMatch) GoString() string {
return s.String()
}
type GetByteMatchSetInput struct {
_ struct{} `type:"structure"`
// The ByteMatchSetId of the ByteMatchSet that you want to get. ByteMatchSetId
// is returned by CreateByteMatchSet and by ListByteMatchSets.
ByteMatchSetId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetByteMatchSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetByteMatchSetInput) GoString() string {
return s.String()
}
type GetByteMatchSetOutput struct {
_ struct{} `type:"structure"`
// Information about the ByteMatchSet that you specified in the GetByteMatchSet
// request. For more information, see the following topics:
//
// ByteMatchSet: Contains ByteMatchSetId, ByteMatchTuples, and Name ByteMatchTuples:
// Contains an array of ByteMatchTuple objects. Each ByteMatchTuple object contains
// FieldToMatch, PositionalConstraint, TargetString, and TextTransformation
// FieldToMatch: Contains Data and Type
ByteMatchSet *ByteMatchSet `type:"structure"`
}
// String returns the string representation
func (s GetByteMatchSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetByteMatchSetOutput) GoString() string {
return s.String()
}
type GetChangeTokenInput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s GetChangeTokenInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetChangeTokenInput) GoString() string {
return s.String()
}
type GetChangeTokenOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used in the request. Use this value in a GetChangeTokenStatus
// request to get the current status of the request.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s GetChangeTokenOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetChangeTokenOutput) GoString() string {
return s.String()
}
type GetChangeTokenStatusInput struct {
_ struct{} `type:"structure"`
// The change token for which you want to get the status. This change token
// was previously returned in the GetChangeToken response.
ChangeToken *string `type:"string" required:"true"`
}
// String returns the string representation
func (s GetChangeTokenStatusInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetChangeTokenStatusInput) GoString() string {
return s.String()
}
type GetChangeTokenStatusOutput struct {
_ struct{} `type:"structure"`
// The status of the change token.
ChangeTokenStatus *string `type:"string" enum:"ChangeTokenStatus"`
}
// String returns the string representation
func (s GetChangeTokenStatusOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetChangeTokenStatusOutput) GoString() string {
return s.String()
}
type GetIPSetInput struct {
_ struct{} `type:"structure"`
// The IPSetId of the IPSet that you want to get. IPSetId is returned by CreateIPSet
// and by ListIPSets.
IPSetId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetIPSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetIPSetInput) GoString() string {
return s.String()
}
type GetIPSetOutput struct {
_ struct{} `type:"structure"`
// Information about the IPSet that you specified in the GetIPSet request. For
// more information, see the following topics:
//
// IPSet: Contains IPSetDescriptors, IPSetId, and Name IPSetDescriptors: Contains
// an array of IPSetDescriptor objects. Each IPSetDescriptor object contains
// Type and Value
IPSet *IPSet `type:"structure"`
}
// String returns the string representation
func (s GetIPSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetIPSetOutput) GoString() string {
return s.String()
}
type GetRuleInput struct {
_ struct{} `type:"structure"`
// The RuleId of the Rule that you want to get. RuleId is returned by CreateRule
// and by ListRules.
RuleId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetRuleInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetRuleInput) GoString() string {
return s.String()
}
type GetRuleOutput struct {
_ struct{} `type:"structure"`
// Information about the Rule that you specified in the GetRule request. For
// more information, see the following topics:
//
// Rule: Contains MetricName, Name, an array of Predicate objects, and RuleId
// Predicate: Each Predicate object contains DataId, Negated, and Type
Rule *Rule `type:"structure"`
}
// String returns the string representation
func (s GetRuleOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetRuleOutput) GoString() string {
return s.String()
}
type GetSampledRequestsInput struct {
_ struct{} `type:"structure"`
// The number of requests that you want AWS WAF to return from among the first
// 5,000 requests that your AWS resource received during the time range. If
// your resource received fewer requests than the value of MaxItems, GetSampledRequests
// returns information about all of them.
MaxItems *int64 `min:"1" type:"long" required:"true"`
// RuleId is one of two values:
//
// The RuleId of the Rule for which you want GetSampledRequests to return
// a sample of requests. Default_Action, which causes GetSampledRequests to
// return a sample of the requests that didn't match any of the rules in the
// specified WebACL.
RuleId *string `min:"1" type:"string" required:"true"`
// The start date and time and the end date and time of the range for which
// you want GetSampledRequests to return a sample of requests. Specify the date
// and time in Unix time format (in seconds). You can specify any time range
// in the previous three hours.
TimeWindow *TimeWindow `type:"structure" required:"true"`
// The WebACLId of the WebACL for which you want GetSampledRequests to return
// a sample of requests.
WebAclId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetSampledRequestsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetSampledRequestsInput) GoString() string {
return s.String()
}
type GetSampledRequestsOutput struct {
_ struct{} `type:"structure"`
// The total number of requests from which GetSampledRequests got a sample of
// MaxItems requests. If PopulationSize is less than MaxItems, the sample includes
// every request that your AWS resource received during the specified time range.
PopulationSize *int64 `type:"long"`
// A complex type that contains detailed information about each of the requests
// in the sample.
SampledRequests []*SampledHTTPRequest `type:"list"`
// Usually, TimeWindow is the time range that you specified in the GetSampledRequests
// request. However, if your AWS resource received more than 5,000 requests
// during the time range that you specified in the request, GetSampledRequests
// returns the time range for the first 5,000 requests.
TimeWindow *TimeWindow `type:"structure"`
}
// String returns the string representation
func (s GetSampledRequestsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetSampledRequestsOutput) GoString() string {
return s.String()
}
type GetSizeConstraintSetInput struct {
_ struct{} `type:"structure"`
// The SizeConstraintSetId of the SizeConstraintSet that you want to get. SizeConstraintSetId
// is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.
SizeConstraintSetId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetSizeConstraintSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetSizeConstraintSetInput) GoString() string {
return s.String()
}
type GetSizeConstraintSetOutput struct {
_ struct{} `type:"structure"`
// Information about the SizeConstraintSet that you specified in the GetSizeConstraintSet
// request. For more information, see the following topics:
//
// SizeConstraintSet: Contains SizeConstraintSetId, SizeConstraints, and Name
// SizeConstraints: Contains an array of SizeConstraint objects. Each SizeConstraint
// object contains FieldToMatch, TextTransformation, ComparisonOperator, and
// Size FieldToMatch: Contains Data and Type
SizeConstraintSet *SizeConstraintSet `type:"structure"`
}
// String returns the string representation
func (s GetSizeConstraintSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetSizeConstraintSetOutput) GoString() string {
return s.String()
}
// A request to get a SqlInjectionMatchSet.
type GetSqlInjectionMatchSetInput struct {
_ struct{} `type:"structure"`
// The SqlInjectionMatchSetId of the SqlInjectionMatchSet that you want to get.
// SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
SqlInjectionMatchSetId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetSqlInjectionMatchSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetSqlInjectionMatchSetInput) GoString() string {
return s.String()
}
// The response to a GetSqlInjectionMatchSet request.
type GetSqlInjectionMatchSetOutput struct {
_ struct{} `type:"structure"`
// Information about the SqlInjectionMatchSet that you specified in the GetSqlInjectionMatchSet
// request. For more information, see the following topics:
//
// SqlInjectionMatchSet: Contains Name, SqlInjectionMatchSetId, and an array
// of SqlInjectionMatchTuple objects SqlInjectionMatchTuple: Each SqlInjectionMatchTuple
// object contains FieldToMatch and TextTransformation FieldToMatch: Contains
// Data and Type
SqlInjectionMatchSet *SqlInjectionMatchSet `type:"structure"`
}
// String returns the string representation
func (s GetSqlInjectionMatchSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetSqlInjectionMatchSetOutput) GoString() string {
return s.String()
}
type GetWebACLInput struct {
_ struct{} `type:"structure"`
// The WebACLId of the WebACL that you want to get. WebACLId is returned by
// CreateWebACL and by ListWebACLs.
WebACLId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetWebACLInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetWebACLInput) GoString() string {
return s.String()
}
type GetWebACLOutput struct {
_ struct{} `type:"structure"`
// Information about the WebACL that you specified in the GetWebACL request.
// For more information, see the following topics:
//
// WebACL: Contains DefaultAction, MetricName, Name, an array of Rule objects,
// and WebACLId DefaultAction (Data type is WafAction): Contains Type Rules:
// Contains an array of ActivatedRule objects, which contain Action, Priority,
// and RuleId Action: Contains Type
WebACL *WebACL `type:"structure"`
}
// String returns the string representation
func (s GetWebACLOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetWebACLOutput) GoString() string {
return s.String()
}
// The response from a GetSampledRequests request includes an HTTPHeader complex
// type that appears as Headers in the response syntax. HTTPHeader contains
// the names and values of all of the headers that appear in one of the web
// requests that were returned by GetSampledRequests.
type HTTPHeader struct {
_ struct{} `type:"structure"`
// The name of one of the headers in the sampled web request.
Name *string `type:"string"`
// The value of one of the headers in the sampled web request.
Value *string `type:"string"`
}
// String returns the string representation
func (s HTTPHeader) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s HTTPHeader) GoString() string {
return s.String()
}
// The response from a GetSampledRequests request includes an HTTPRequest complex
// type that appears as Request in the response syntax. HTTPRequest contains
// information about one of the web requests that were returned by GetSampledRequests.
type HTTPRequest struct {
_ struct{} `type:"structure"`
// The IP address that the request originated from. If the WebACL is associated
// with a CloudFront distribution, this is the value of one of the following
// fields in CloudFront access logs:
//
// c-ip, if the viewer did not use an HTTP proxy or a load balancer to send
// the request x-forwarded-for, if the viewer did use an HTTP proxy or a load
// balancer to send the request
ClientIP *string `type:"string"`
// The two-letter country code for the country that the request originated from.
// For a current list of country codes, see the Wikipedia entry ISO 3166-1 alpha-2
// (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
Country *string `type:"string"`
// The HTTP version specified in the sampled web request, for example, HTTP/1.1.
HTTPVersion *string `type:"string"`
// A complex type that contains two values for each header in the sampled web
// request: the name of the header and the value of the header.
Headers []*HTTPHeader `type:"list"`
// The HTTP method specified in the sampled web request. CloudFront supports
// the following methods: DELETE, GET, HEAD, OPTIONS, PATCH, POST, and PUT.
Method *string `type:"string"`
// The part of a web request that identifies the resource, for example, /images/daily-ad.jpg.
URI *string `type:"string"`
}
// String returns the string representation
func (s HTTPRequest) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s HTTPRequest) GoString() string {
return s.String()
}
// Contains one or more IP addresses or blocks of IP addresses specified in
// Classless Inter-Domain Routing (CIDR) notation. To specify an individual
// IP address, you specify the four-part IP address followed by a /32, for example,
// 192.0.2.0/31. To block a range of IP addresses, you can specify a /24, a
// /16, or a /8 CIDR. For more information about CIDR notation, perform an Internet
// search on cidr notation.
type IPSet struct {
_ struct{} `type:"structure"`
// The IP address type (IPV4) and the IP address range (in CIDR notation) that
// web requests originate from. If the WebACL is associated with a CloudFront
// distribution, this is the value of one of the following fields in CloudFront
// access logs:
//
// c-ip, if the viewer did not use an HTTP proxy or a load balancer to send
// the request x-forwarded-for, if the viewer did use an HTTP proxy or a load
// balancer to send the request
IPSetDescriptors []*IPSetDescriptor `type:"list" required:"true"`
// The IPSetId for an IPSet. You use IPSetId to get information about an IPSet
// (see GetIPSet), update an IPSet (see UpdateIPSet), insert an IPSet into a
// Rule or delete one from a Rule (see UpdateRule), and delete an IPSet from
// AWS WAF (see DeleteIPSet).
//
// IPSetId is returned by CreateIPSet and by ListIPSets.
IPSetId *string `min:"1" type:"string" required:"true"`
// A friendly name or description of the IPSet. You can't change the name of
// an IPSet after you create it.
Name *string `min:"1" type:"string"`
}
// String returns the string representation
func (s IPSet) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s IPSet) GoString() string {
return s.String()
}
// Specifies the IP address type (IPV4) and the IP address range (in CIDR format)
// that web requests originate from.
type IPSetDescriptor struct {
_ struct{} `type:"structure"`
// Specify IPV4.
Type *string `type:"string" required:"true" enum:"IPSetDescriptorType"`
// Specify an IPv4 address by using CIDR notation. For example:
//
// To configure AWS WAF to allow, block, or count requests that originated
// from the IP address 192.0.2.44, specify 192.0.2.44/32. To configure AWS WAF
// to allow, block, or count requests that originated from IP addresses from
// 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24. AWS WAF supports only /8,
// /16, /24, and /32 IP addresses.
//
// For more information about CIDR notation, see the Wikipedia entry Classless
// Inter-Domain Routing (https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing).
Value *string `type:"string" required:"true"`
}
// String returns the string representation
func (s IPSetDescriptor) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s IPSetDescriptor) GoString() string {
return s.String()
}
// Contains the identifier and the name of the IPSet.
type IPSetSummary struct {
_ struct{} `type:"structure"`
// The IPSetId for an IPSet. You can use IPSetId in a GetIPSet request to get
// detailed information about an IPSet.
IPSetId *string `min:"1" type:"string" required:"true"`
// A friendly name or description of the IPSet. You can't change the name of
// an IPSet after you create it.
Name *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s IPSetSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s IPSetSummary) GoString() string {
return s.String()
}
// Specifies the type of update to perform to an IPSet with UpdateIPSet.
type IPSetUpdate struct {
_ struct{} `type:"structure"`
// Specifies whether to insert or delete an IP address with UpdateIPSet.
Action *string `type:"string" required:"true" enum:"ChangeAction"`
// The IP address type (IPV4) and the IP address range (in CIDR notation) that
// web requests originate from.
IPSetDescriptor *IPSetDescriptor `type:"structure" required:"true"`
}
// String returns the string representation
func (s IPSetUpdate) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s IPSetUpdate) GoString() string {
return s.String()
}
type ListByteMatchSetsInput struct {
_ struct{} `type:"structure"`
// Specifies the number of ByteMatchSet objects that you want AWS WAF to return
// for this request. If you have more ByteMatchSets objects than the number
// you specify for Limit, the response includes a NextMarker value that you
// can use to get another batch of ByteMatchSet objects.
Limit *int64 `min:"1" type:"integer" required:"true"`
// If you specify a value for Limit and you have more ByteMatchSets than the
// value of Limit, AWS WAF returns a NextMarker value in the response that allows
// you to list another group of ByteMatchSets. For the second and subsequent
// ListByteMatchSets requests, specify the value of NextMarker from the previous
// response to get information about another batch of ByteMatchSets.
NextMarker *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListByteMatchSetsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListByteMatchSetsInput) GoString() string {
return s.String()
}
type ListByteMatchSetsOutput struct {
_ struct{} `type:"structure"`
// An array of ByteMatchSetSummary objects.
ByteMatchSets []*ByteMatchSetSummary `type:"list"`
// If you have more ByteMatchSet objects than the number that you specified
// for Limit in the request, the response includes a NextMarker value. To list
// more ByteMatchSet objects, submit another ListByteMatchSets request, and
// specify the NextMarker value from the response in the NextMarker value in
// the next request.
NextMarker *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListByteMatchSetsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListByteMatchSetsOutput) GoString() string {
return s.String()
}
type ListIPSetsInput struct {
_ struct{} `type:"structure"`
// Specifies the number of IPSet objects that you want AWS WAF to return for
// this request. If you have more IPSet objects than the number you specify
// for Limit, the response includes a NextMarker value that you can use to get
// another batch of IPSet objects.
Limit *int64 `min:"1" type:"integer" required:"true"`
// If you specify a value for Limit and you have more IPSets than the value
// of Limit, AWS WAF returns a NextMarker value in the response that allows
// you to list another group of IPSets. For the second and subsequent ListIPSets
// requests, specify the value of NextMarker from the previous response to get
// information about another batch of ByteMatchSets.
NextMarker *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListIPSetsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListIPSetsInput) GoString() string {
return s.String()
}
type ListIPSetsOutput struct {
_ struct{} `type:"structure"`
// An array of IPSetSummary objects.
IPSets []*IPSetSummary `type:"list"`
// If you have more IPSet objects than the number that you specified for Limit
// in the request, the response includes a NextMarker value. To list more IPSet
// objects, submit another ListIPSets request, and specify the NextMarker value
// from the response in the NextMarker value in the next request.
NextMarker *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListIPSetsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListIPSetsOutput) GoString() string {
return s.String()
}
type ListRulesInput struct {
_ struct{} `type:"structure"`
// Specifies the number of Rules that you want AWS WAF to return for this request.
// If you have more Rules than the number that you specify for Limit, the response
// includes a NextMarker value that you can use to get another batch of Rules.
Limit *int64 `min:"1" type:"integer" required:"true"`
// If you specify a value for Limit and you have more Rules than the value of
// Limit, AWS WAF returns a NextMarker value in the response that allows you
// to list another group of Rules. For the second and subsequent ListRules requests,
// specify the value of NextMarker from the previous response to get information
// about another batch of Rules.
NextMarker *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListRulesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListRulesInput) GoString() string {
return s.String()
}
type ListRulesOutput struct {
_ struct{} `type:"structure"`
// If you have more Rules than the number that you specified for Limit in the
// request, the response includes a NextMarker value. To list more Rules, submit
// another ListRules request, and specify the NextMarker value from the response
// in the NextMarker value in the next request.
NextMarker *string `min:"1" type:"string"`
// An array of RuleSummary objects.
Rules []*RuleSummary `type:"list"`
}
// String returns the string representation
func (s ListRulesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListRulesOutput) GoString() string {
return s.String()
}
type ListSizeConstraintSetsInput struct {
_ struct{} `type:"structure"`
// Specifies the number of SizeConstraintSet objects that you want AWS WAF to
// return for this request. If you have more SizeConstraintSets objects than
// the number you specify for Limit, the response includes a NextMarker value
// that you can use to get another batch of SizeConstraintSet objects.
Limit *int64 `min:"1" type:"integer" required:"true"`
// If you specify a value for Limit and you have more SizeConstraintSets than
// the value of Limit, AWS WAF returns a NextMarker value in the response that
// allows you to list another group of SizeConstraintSets. For the second and
// subsequent ListSizeConstraintSets requests, specify the value of NextMarker
// from the previous response to get information about another batch of SizeConstraintSets.
NextMarker *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListSizeConstraintSetsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListSizeConstraintSetsInput) GoString() string {
return s.String()
}
type ListSizeConstraintSetsOutput struct {
_ struct{} `type:"structure"`
// If you have more SizeConstraintSet objects than the number that you specified
// for Limit in the request, the response includes a NextMarker value. To list
// more SizeConstraintSet objects, submit another ListSizeConstraintSets request,
// and specify the NextMarker value from the response in the NextMarker value
// in the next request.
NextMarker *string `min:"1" type:"string"`
// An array of SizeConstraintSetSummary objects.
SizeConstraintSets []*SizeConstraintSetSummary `type:"list"`
}
// String returns the string representation
func (s ListSizeConstraintSetsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListSizeConstraintSetsOutput) GoString() string {
return s.String()
}
// A request to list the SqlInjectionMatchSet objects created by the current
// AWS account.
type ListSqlInjectionMatchSetsInput struct {
_ struct{} `type:"structure"`
// Specifies the number of SqlInjectionMatchSet objects that you want AWS WAF
// to return for this request. If you have more SqlInjectionMatchSet objects
// than the number you specify for Limit, the response includes a NextMarker
// value that you can use to get another batch of Rules.
Limit *int64 `min:"1" type:"integer" required:"true"`
// If you specify a value for Limit and you have more SqlInjectionMatchSet objects
// than the value of Limit, AWS WAF returns a NextMarker value in the response
// that allows you to list another group of SqlInjectionMatchSets. For the second
// and subsequent ListSqlInjectionMatchSets requests, specify the value of NextMarker
// from the previous response to get information about another batch of SqlInjectionMatchSets.
NextMarker *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListSqlInjectionMatchSetsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListSqlInjectionMatchSetsInput) GoString() string {
return s.String()
}
// The response to a ListSqlInjectionMatchSets request.
type ListSqlInjectionMatchSetsOutput struct {
_ struct{} `type:"structure"`
// If you have more SqlInjectionMatchSet objects than the number that you specified
// for Limit in the request, the response includes a NextMarker value. To list
// more SqlInjectionMatchSet objects, submit another ListSqlInjectionMatchSets
// request, and specify the NextMarker value from the response in the NextMarker
// value in the next request.
NextMarker *string `min:"1" type:"string"`
// An array of SqlInjectionMatchSetSummary objects.
SqlInjectionMatchSets []*SqlInjectionMatchSetSummary `type:"list"`
}
// String returns the string representation
func (s ListSqlInjectionMatchSetsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListSqlInjectionMatchSetsOutput) GoString() string {
return s.String()
}
type ListWebACLsInput struct {
_ struct{} `type:"structure"`
// Specifies the number of WebACL objects that you want AWS WAF to return for
// this request. If you have more WebACL objects than the number that you specify
// for Limit, the response includes a NextMarker value that you can use to get
// another batch of WebACL objects.
Limit *int64 `min:"1" type:"integer" required:"true"`
// If you specify a value for Limit and you have more WebACL objects than the
// number that you specify for Limit, AWS WAF returns a NextMarker value in
// the response that allows you to list another group of WebACL objects. For
// the second and subsequent ListWebACLs requests, specify the value of NextMarker
// from the previous response to get information about another batch of WebACL
// objects.
NextMarker *string `min:"1" type:"string"`
}
// String returns the string representation
func (s ListWebACLsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListWebACLsInput) GoString() string {
return s.String()
}
type ListWebACLsOutput struct {
_ struct{} `type:"structure"`
// If you have more WebACL objects than the number that you specified for Limit
// in the request, the response includes a NextMarker value. To list more WebACL
// objects, submit another ListWebACLs request, and specify the NextMarker value
// from the response in the NextMarker value in the next request.
NextMarker *string `min:"1" type:"string"`
// An array of WebACLSummary objects.
WebACLs []*WebACLSummary `type:"list"`
}
// String returns the string representation
func (s ListWebACLsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListWebACLsOutput) GoString() string {
return s.String()
}
// Specifies the ByteMatchSet, IPSet, and SqlInjectionMatchSet objects that
// you want to add to a Rule and, for each object, indicates whether you want
// to negate the settings, for example, requests that do NOT originate from
// the IP address 192.0.2.44.
type Predicate struct {
_ struct{} `type:"structure"`
// A unique identifier for a predicate in a Rule, such as ByteMatchSetId or
// IPSetId. The ID is returned by the corresponding Create or List command.
DataId *string `min:"1" type:"string" required:"true"`
// Set Negated to False if you want AWS WAF to allow, block, or count requests
// based on the settings in the specified ByteMatchSet, IPSet, or SqlInjectionMatchSet.
// For example, if an IPSet includes the IP address 192.0.2.44, AWS WAF will
// allow or block requests based on that IP address.
//
// Set Negated to True if you want AWS WAF to allow or block a request based
// on the negation of the settings in the ByteMatchSet, IPSet, or SqlInjectionMatchSet.
// For example, if an IPSet includes the IP address 192.0.2.44, AWS WAF will
// allow, block, or count requests based on all IP addresses except 192.0.2.44.
Negated *bool `type:"boolean" required:"true"`
// The type of predicate in a Rule, such as ByteMatchSet or IPSet.
Type *string `type:"string" required:"true" enum:"PredicateType"`
}
// String returns the string representation
func (s Predicate) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Predicate) GoString() string {
return s.String()
}
// A combination of ByteMatchSet, IPSet, and/or SqlInjectionMatchSet objects
// that identify the web requests that you want to allow, block, or count. For
// example, you might create a Rule that includes the following predicates:
//
// An IPSet that causes AWS WAF to search for web requests that originate
// from the IP address 192.0.2.44 A ByteMatchSet that causes AWS WAF to search
// for web requests for which the value of the User-Agent header is BadBot.
// To match the settings in this Rule, a request must originate from 192.0.2.44
// AND include a User-Agent header for which the value is BadBot.
type Rule struct {
_ struct{} `type:"structure"`
MetricName *string `type:"string"`
// The friendly name or description for the Rule. You can't change the name
// of a Rule after you create it.
Name *string `min:"1" type:"string"`
// The Predicates object contains one Predicate element for each ByteMatchSet,
// IPSet, or SqlInjectionMatchSet object that you want to include in a Rule.
Predicates []*Predicate `type:"list" required:"true"`
// A unique identifier for a Rule. You use RuleId to get more information about
// a Rule (see GetRule), update a Rule (see UpdateRule), insert a Rule into
// a WebACL or delete a one from a WebACL (see UpdateWebACL), or delete a Rule
// from AWS WAF (see DeleteRule).
//
// RuleId is returned by CreateRule and by ListRules.
RuleId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s Rule) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Rule) GoString() string {
return s.String()
}
// Contains the identifier and the friendly name or description of the Rule.
type RuleSummary struct {
_ struct{} `type:"structure"`
// A friendly name or description of the Rule. You can't change the name of
// a Rule after you create it.
Name *string `min:"1" type:"string" required:"true"`
// A unique identifier for a Rule. You use RuleId to get more information about
// a Rule (see GetRule), update a Rule (see UpdateRule), insert a Rule into
// a WebACL or delete one from a WebACL (see UpdateWebACL), or delete a Rule
// from AWS WAF (see DeleteRule).
//
// RuleId is returned by CreateRule and by ListRules.
RuleId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s RuleSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RuleSummary) GoString() string {
return s.String()
}
// Specifies a Predicate (such as an IPSet) and indicates whether you want to
// add it to a Rule or delete it from a Rule.
type RuleUpdate struct {
_ struct{} `type:"structure"`
// Specify INSERT to add a Predicate to a Rule. Use DELETE to remove a Predicate
// from a Rule.
Action *string `type:"string" required:"true" enum:"ChangeAction"`
// The ID of the Predicate (such as an IPSet) that you want to add to a Rule.
Predicate *Predicate `type:"structure" required:"true"`
}
// String returns the string representation
func (s RuleUpdate) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RuleUpdate) GoString() string {
return s.String()
}
// The response from a GetSampledRequests request includes a SampledHTTPRequests
// complex type that appears as SampledRequests in the response syntax. SampledHTTPRequests
// contains one SampledHTTPRequest object for each web request that is returned
// by GetSampledRequests.
type SampledHTTPRequest struct {
_ struct{} `type:"structure"`
// The action for the Rule that the request matched: ALLOW, BLOCK, or COUNT.
Action *string `type:"string"`
// A complex type that contains detailed information about the request.
Request *HTTPRequest `type:"structure" required:"true"`
// The time at which AWS WAF received the request from your AWS resource, in
// Unix time format (in seconds).
Timestamp *time.Time `type:"timestamp" timestampFormat:"unix"`
// A value that indicates how one result in the response relates proportionally
// to other results in the response. A result that has a weight of 2 represents
// roughly twice as many CloudFront web requests as a result that has a weight
// of 1.
Weight *int64 `type:"long" required:"true"`
}
// String returns the string representation
func (s SampledHTTPRequest) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SampledHTTPRequest) GoString() string {
return s.String()
}
// Specifies a constraint on the size of a part of the web request. AWS WAF
// uses the Size, ComparisonOperator, and FieldToMatch to build an expression
// in the form of "Size ComparisonOperator size in bytes of FieldToMatch". If
// that expression is true, the SizeConstraint is considered to match.
type SizeConstraint struct {
_ struct{} `type:"structure"`
// The type of comparison you want AWS WAF to perform. AWS WAF uses this in
// combination with the provided Size and FieldToMatch to build an expression
// in the form of "Size ComparisonOperator size in bytes of FieldToMatch". If
// that expression is true, the SizeConstraint is considered to match.
//
// EQ: Used to test if the Size is equal to the size of the FieldToMatch
//
// NE: Used to test if the Size is not equal to the size of the FieldToMatch
//
// LE: Used to test if the Size is less than or equal to the size of the FieldToMatch
//
// LT: Used to test if the Size is strictly less than the size of the FieldToMatch
//
// GE: Used to test if the Size is greater than or equal to the size of the
// FieldToMatch
//
// GT: Used to test if the Size is strictly greater than the size of the FieldToMatch
ComparisonOperator *string `type:"string" required:"true" enum:"ComparisonOperator"`
// Specifies where in a web request to look for TargetString.
FieldToMatch *FieldToMatch `type:"structure" required:"true"`
// The size in bytes that you want AWS WAF to compare against the size of the
// specified FieldToMatch. AWS WAF uses this in combination with ComparisonOperator
// and FieldToMatch to build an expression in the form of "Size ComparisonOperator
// size in bytes of FieldToMatch". If that expression is true, the SizeConstraint
// is considered to match.
//
// Valid values for size are 0 - 21474836480 bytes (0 - 20 GB).
//
// If you specify URI for the value of Type, the / in the URI counts as one
// character. For example, the URI /logo.jpg is nine characters long.
Size *int64 `type:"long" required:"true"`
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass AWS WAF. If you specify a transformation,
// AWS WAF performs the transformation on FieldToMatch before inspecting a request
// for a match.
//
// Note that if you choose BODY for the value of Type, you must choose NONE
// for TextTransformation because CloudFront forwards only the first 8192 bytes
// for inspection.
//
// NONE
//
// Specify NONE if you don't want to perform any text transformations.
//
// CMD_LINE
//
// When you're concerned that attackers are injecting an operating system command
// line command and using unusual formatting to disguise some or all of the
// command, use this option to perform the following transformations:
//
// Delete the following characters: \ " ' ^ Delete spaces before the following
// characters: / ( Replace the following characters with a space: , ; Replace
// multiple spaces with one space Convert uppercase letters (A-Z) to lowercase
// (a-z) COMPRESS_WHITE_SPACE
//
// Use this option to replace the following characters with a space character
// (decimal 32):
//
// \f, formfeed, decimal 12 \t, tab, decimal 9 \n, newline, decimal 10 \r,
// carriage return, decimal 13 \v, vertical tab, decimal 11 non-breaking space,
// decimal 160 COMPRESS_WHITE_SPACE also replaces multiple spaces with one
// space.
//
// HTML_ENTITY_DECODE
//
// Use this option to replace HTML-encoded characters with unencoded characters.
// HTML_ENTITY_DECODE performs the following operations:
//
// Replaces (ampersand)quot; with " Replaces (ampersand)nbsp; with a non-breaking
// space, decimal 160 Replaces (ampersand)lt; with a "less than" symbol Replaces
// (ampersand)gt; with > Replaces characters that are represented in hexadecimal
// format, (ampersand)#xhhhh;, with the corresponding characters Replaces characters
// that are represented in decimal format, (ampersand)#nnnn;, with the corresponding
// characters LOWERCASE
//
// Use this option to convert uppercase letters (A-Z) to lowercase (a-z).
//
// URL_DECODE
//
// Use this option to decode a URL-encoded value.
TextTransformation *string `type:"string" required:"true" enum:"TextTransformation"`
}
// String returns the string representation
func (s SizeConstraint) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SizeConstraint) GoString() string {
return s.String()
}
// A complex type that contains SizeConstraint objects, which specify the parts
// of web requests that you want AWS WAF to inspect the size of. If a SizeConstraintSet
// contains more than one SizeConstraint object, a request only needs to match
// one constraint to be considered a match.
type SizeConstraintSet struct {
_ struct{} `type:"structure"`
// The name, if any, of the SizeConstraintSet.
Name *string `min:"1" type:"string"`
// A unique identifier for a SizeConstraintSet. You use SizeConstraintSetId
// to get information about a SizeConstraintSet (see GetSizeConstraintSet),
// update a SizeConstraintSet (see UpdateSizeConstraintSet, insert a SizeConstraintSet
// into a Rule or delete one from a Rule (see UpdateRule), and delete a SizeConstraintSet
// from AWS WAF (see DeleteSizeConstraintSet).
//
// SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.
SizeConstraintSetId *string `min:"1" type:"string" required:"true"`
// Specifies the parts of web requests that you want to inspect the size of.
SizeConstraints []*SizeConstraint `type:"list" required:"true"`
}
// String returns the string representation
func (s SizeConstraintSet) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SizeConstraintSet) GoString() string {
return s.String()
}
// The Id and Name of a SizeConstraintSet.
type SizeConstraintSetSummary struct {
_ struct{} `type:"structure"`
// The name of the SizeConstraintSet, if any.
Name *string `min:"1" type:"string" required:"true"`
// A unique identifier for a SizeConstraintSet. You use SizeConstraintSetId
// to get information about a SizeConstraintSet (see GetSizeConstraintSet),
// update a SizeConstraintSet (see UpdateSizeConstraintSet, insert a SizeConstraintSet
// into a Rule or delete one from a Rule (see UpdateRule), and delete a SizeConstraintSet
// from AWS WAF (see DeleteSizeConstraintSet).
//
// SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.
SizeConstraintSetId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s SizeConstraintSetSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SizeConstraintSetSummary) GoString() string {
return s.String()
}
// Specifies the part of a web request that you want to inspect the size of
// and indicates whether you want to add the specification to a SizeConstraintSet
// or delete it from a SizeConstraintSet.
type SizeConstraintSetUpdate struct {
_ struct{} `type:"structure"`
// Specify INSERT to add a SizeConstraintSetUpdate to a SizeConstraintSet. Use
// DELETE to remove a SizeConstraintSetUpdate from a SizeConstraintSet.
Action *string `type:"string" required:"true" enum:"ChangeAction"`
// Specifies a constraint on the size of a part of the web request. AWS WAF
// uses the Size, ComparisonOperator, and FieldToMatch to build an expression
// in the form of "Size ComparisonOperator size in bytes of FieldToMatch". If
// that expression is true, the SizeConstraint is considered to match.
SizeConstraint *SizeConstraint `type:"structure" required:"true"`
}
// String returns the string representation
func (s SizeConstraintSetUpdate) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SizeConstraintSetUpdate) GoString() string {
return s.String()
}
// A complex type that contains SqlInjectionMatchTuple objects, which specify
// the parts of web requests that you want AWS WAF to inspect for snippets of
// malicious SQL code and, if you want AWS WAF to inspect a header, the name
// of the header. If a SqlInjectionMatchSet contains more than one SqlInjectionMatchTuple
// object, a request needs to include snippets of SQL code in only one of the
// specified parts of the request to be considered a match.
type SqlInjectionMatchSet struct {
_ struct{} `type:"structure"`
// The name, if any, of the SqlInjectionMatchSet.
Name *string `min:"1" type:"string"`
// A unique identifier for a SqlInjectionMatchSet. You use SqlInjectionMatchSetId
// to get information about a SqlInjectionMatchSet (see GetSqlInjectionMatchSet),
// update a SqlInjectionMatchSet (see UpdateSqlInjectionMatchSet, insert a SqlInjectionMatchSet
// into a Rule or delete one from a Rule (see UpdateRule), and delete a SqlInjectionMatchSet
// from AWS WAF (see DeleteSqlInjectionMatchSet).
//
// SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by
// ListSqlInjectionMatchSets.
SqlInjectionMatchSetId *string `min:"1" type:"string" required:"true"`
// Specifies the parts of web requests that you want to inspect for snippets
// of malicious SQL code.
SqlInjectionMatchTuples []*SqlInjectionMatchTuple `type:"list" required:"true"`
}
// String returns the string representation
func (s SqlInjectionMatchSet) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SqlInjectionMatchSet) GoString() string {
return s.String()
}
// The Id and Name of a SqlInjectionMatchSet.
type SqlInjectionMatchSetSummary struct {
_ struct{} `type:"structure"`
// The name of the SqlInjectionMatchSet, if any, specified by Id.
Name *string `min:"1" type:"string" required:"true"`
// A unique identifier for a SqlInjectionMatchSet. You use SqlInjectionMatchSetId
// to get information about a SqlInjectionMatchSet (see GetSqlInjectionMatchSet),
// update a SqlInjectionMatchSet (see UpdateSqlInjectionMatchSet, insert a SqlInjectionMatchSet
// into a Rule or delete one from a Rule (see UpdateRule), and delete a SqlInjectionMatchSet
// from AWS WAF (see DeleteSqlInjectionMatchSet).
//
// SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by
// ListSqlInjectionMatchSets.
SqlInjectionMatchSetId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s SqlInjectionMatchSetSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SqlInjectionMatchSetSummary) GoString() string {
return s.String()
}
// Specifies the part of a web request that you want to inspect for snippets
// of malicious SQL code and indicates whether you want to add the specification
// to a SqlInjectionMatchSet or delete it from a SqlInjectionMatchSet.
type SqlInjectionMatchSetUpdate struct {
_ struct{} `type:"structure"`
// Specify INSERT to add a SqlInjectionMatchSetUpdate to a SqlInjectionMatchSet.
// Use DELETE to remove a SqlInjectionMatchSetUpdate from a SqlInjectionMatchSet.
Action *string `type:"string" required:"true" enum:"ChangeAction"`
// Specifies the part of a web request that you want AWS WAF to inspect for
// snippets of malicious SQL code and, if you want AWS WAF to inspect a header,
// the name of the header.
SqlInjectionMatchTuple *SqlInjectionMatchTuple `type:"structure" required:"true"`
}
// String returns the string representation
func (s SqlInjectionMatchSetUpdate) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SqlInjectionMatchSetUpdate) GoString() string {
return s.String()
}
// Specifies the part of a web request that you want AWS WAF to inspect for
// snippets of malicious SQL code and, if you want AWS WAF to inspect a header,
// the name of the header.
type SqlInjectionMatchTuple struct {
_ struct{} `type:"structure"`
// Specifies where in a web request to look for TargetString.
FieldToMatch *FieldToMatch `type:"structure" required:"true"`
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass AWS WAF. If you specify a transformation,
// AWS WAF performs the transformation on FieldToMatch before inspecting a request
// for a match.
//
// CMD_LINE
//
// When you're concerned that attackers are injecting an operating system commandline
// command and using unusual formatting to disguise some or all of the command,
// use this option to perform the following transformations:
//
// Delete the following characters: \ " ' ^ Delete spaces before the following
// characters: / ( Replace the following characters with a space: , ; Replace
// multiple spaces with one space Convert uppercase letters (A-Z) to lowercase
// (a-z) COMPRESS_WHITE_SPACE
//
// Use this option to replace the following characters with a space character
// (decimal 32):
//
// \f, formfeed, decimal 12 \t, tab, decimal 9 \n, newline, decimal 10 \r,
// carriage return, decimal 13 \v, vertical tab, decimal 11 non-breaking space,
// decimal 160 COMPRESS_WHITE_SPACE also replaces multiple spaces with one
// space.
//
// HTML_ENTITY_DECODE
//
// Use this option to replace HTML-encoded characters with unencoded characters.
// HTML_ENTITY_DECODE performs the following operations:
//
// Replaces (ampersand)quot; with " Replaces (ampersand)nbsp; with a non-breaking
// space, decimal 160 Replaces (ampersand)lt; with a "less than" symbol Replaces
// (ampersand)gt; with > Replaces characters that are represented in hexadecimal
// format, (ampersand)#xhhhh;, with the corresponding characters Replaces characters
// that are represented in decimal format, (ampersand)#nnnn;, with the corresponding
// characters LOWERCASE
//
// Use this option to convert uppercase letters (A-Z) to lowercase (a-z).
//
// URL_DECODE
//
// Use this option to decode a URL-encoded value.
//
// NONE
//
// Specify NONE if you don't want to perform any text transformations.
TextTransformation *string `type:"string" required:"true" enum:"TextTransformation"`
}
// String returns the string representation
func (s SqlInjectionMatchTuple) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s SqlInjectionMatchTuple) GoString() string {
return s.String()
}
// In a GetSampledRequests request, the StartTime and EndTime objects specify
// the time range for which you want AWS WAF to return a sample of web requests.
//
// In a GetSampledRequests response, the StartTime and EndTime objects specify
// the time range for which AWS WAF actually returned a sample of web requests.
// AWS WAF gets the specified number of requests from among the first 5,000
// requests that your AWS resource receives during the specified time period.
// If your resource receives more than 5,000 requests during that period, AWS
// WAF stops sampling after the 5,000th request. In that case, EndTime is the
// time that AWS WAF received the 5,000th request.
type TimeWindow struct {
_ struct{} `type:"structure"`
// The end of the time range from which you want GetSampledRequests to return
// a sample of the requests that your AWS resource received. You can specify
// any time range in the previous three hours.
EndTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
// The beginning of the time range from which you want GetSampledRequests to
// return a sample of the requests that your AWS resource received. You can
// specify any time range in the previous three hours.
StartTime *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
}
// String returns the string representation
func (s TimeWindow) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s TimeWindow) GoString() string {
return s.String()
}
type UpdateByteMatchSetInput struct {
_ struct{} `type:"structure"`
// The ByteMatchSetId of the ByteMatchSet that you want to update. ByteMatchSetId
// is returned by CreateByteMatchSet and by ListByteMatchSets.
ByteMatchSetId *string `min:"1" type:"string" required:"true"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// An array of ByteMatchSetUpdate objects that you want to insert into or delete
// from a ByteMatchSet. For more information, see the applicable data types:
//
// ByteMatchSetUpdate: Contains Action and ByteMatchTuple ByteMatchTuple:
// Contains FieldToMatch, PositionalConstraint, TargetString, and TextTransformation
// FieldToMatch: Contains Data and Type
Updates []*ByteMatchSetUpdate `type:"list" required:"true"`
}
// String returns the string representation
func (s UpdateByteMatchSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateByteMatchSetInput) GoString() string {
return s.String()
}
type UpdateByteMatchSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the UpdateByteMatchSet request. You
// can also use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s UpdateByteMatchSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateByteMatchSetOutput) GoString() string {
return s.String()
}
type UpdateIPSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The IPSetId of the IPSet that you want to update. IPSetId is returned by
// CreateIPSet and by ListIPSets.
IPSetId *string `min:"1" type:"string" required:"true"`
// An array of IPSetUpdate objects that you want to insert into or delete from
// an IPSet. For more information, see the applicable data types:
//
// IPSetUpdate: Contains Action and IPSetDescriptor IPSetDescriptor: Contains
// Type and Value
Updates []*IPSetUpdate `type:"list" required:"true"`
}
// String returns the string representation
func (s UpdateIPSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateIPSetInput) GoString() string {
return s.String()
}
type UpdateIPSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the UpdateIPSet request. You can
// also use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s UpdateIPSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateIPSetOutput) GoString() string {
return s.String()
}
type UpdateRuleInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The RuleId of the Rule that you want to update. RuleId is returned by CreateRule
// and by ListRules.
RuleId *string `min:"1" type:"string" required:"true"`
// An array of RuleUpdate objects that you want to insert into or delete from
// a Rule. For more information, see the applicable data types:
//
// RuleUpdate: Contains Action and Predicate Predicate: Contains DataId, Negated,
// and Type FieldToMatch: Contains Data and Type
Updates []*RuleUpdate `type:"list" required:"true"`
}
// String returns the string representation
func (s UpdateRuleInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateRuleInput) GoString() string {
return s.String()
}
type UpdateRuleOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the UpdateRule request. You can also
// use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s UpdateRuleOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateRuleOutput) GoString() string {
return s.String()
}
type UpdateSizeConstraintSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The SizeConstraintSetId of the SizeConstraintSet that you want to update.
// SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.
SizeConstraintSetId *string `min:"1" type:"string" required:"true"`
// An array of SizeConstraintSetUpdate objects that you want to insert into
// or delete from a SizeConstraintSet. For more information, see the applicable
// data types:
//
// SizeConstraintSetUpdate: Contains Action and SizeConstraint SizeConstraint:
// Contains FieldToMatch, TextTransformation, ComparisonOperator, and Size FieldToMatch:
// Contains Data and Type
Updates []*SizeConstraintSetUpdate `type:"list" required:"true"`
}
// String returns the string representation
func (s UpdateSizeConstraintSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateSizeConstraintSetInput) GoString() string {
return s.String()
}
type UpdateSizeConstraintSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the UpdateSizeConstraintSet request.
// You can also use this value to query the status of the request. For more
// information, see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s UpdateSizeConstraintSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateSizeConstraintSetOutput) GoString() string {
return s.String()
}
// A request to update a SqlInjectionMatchSet.
type UpdateSqlInjectionMatchSetInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// The SqlInjectionMatchSetId of the SqlInjectionMatchSet that you want to update.
// SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
SqlInjectionMatchSetId *string `min:"1" type:"string" required:"true"`
// An array of SqlInjectionMatchSetUpdate objects that you want to insert into
// or delete from a SqlInjectionMatchSet. For more information, see the applicable
// data types:
//
// SqlInjectionMatchSetUpdate: Contains Action and SqlInjectionMatchTuple
// SqlInjectionMatchTuple: Contains FieldToMatch and TextTransformation FieldToMatch:
// Contains Data and Type
Updates []*SqlInjectionMatchSetUpdate `type:"list" required:"true"`
}
// String returns the string representation
func (s UpdateSqlInjectionMatchSetInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateSqlInjectionMatchSetInput) GoString() string {
return s.String()
}
// The response to an UpdateSqlInjectionMatchSets request.
type UpdateSqlInjectionMatchSetOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the UpdateSqlInjectionMatchSet request.
// You can also use this value to query the status of the request. For more
// information, see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s UpdateSqlInjectionMatchSetOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateSqlInjectionMatchSetOutput) GoString() string {
return s.String()
}
type UpdateWebACLInput struct {
_ struct{} `type:"structure"`
// The value returned by the most recent call to GetChangeToken.
ChangeToken *string `type:"string" required:"true"`
// For the action that is associated with a rule in a WebACL, specifies the
// action that you want AWS WAF to perform when a web request matches all of
// the conditions in a rule. For the default action in a WebACL, specifies the
// action that you want AWS WAF to take when a web request doesn't match all
// of the conditions in any of the rules in a WebACL.
DefaultAction *WafAction `type:"structure"`
// An array of updates to make to the WebACL.
//
// An array of WebACLUpdate objects that you want to insert into or delete
// from a WebACL. For more information, see the applicable data types:
//
// WebACLUpdate: Contains Action and ActivatedRule ActivatedRule: Contains
// Action, Priority, and RuleId WafAction: Contains Type
Updates []*WebACLUpdate `type:"list"`
// The WebACLId of the WebACL that you want to update. WebACLId is returned
// by CreateWebACL and by ListWebACLs.
WebACLId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s UpdateWebACLInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateWebACLInput) GoString() string {
return s.String()
}
type UpdateWebACLOutput struct {
_ struct{} `type:"structure"`
// The ChangeToken that you used to submit the UpdateWebACL request. You can
// also use this value to query the status of the request. For more information,
// see GetChangeTokenStatus.
ChangeToken *string `type:"string"`
}
// String returns the string representation
func (s UpdateWebACLOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateWebACLOutput) GoString() string {
return s.String()
}
// For the action that is associated with a rule in a WebACL, specifies the
// action that you want AWS WAF to perform when a web request matches all of
// the conditions in a rule. For the default action in a WebACL, specifies the
// action that you want AWS WAF to take when a web request doesn't match all
// of the conditions in any of the rules in a WebACL.
type WafAction struct {
_ struct{} `type:"structure"`
// Specifies how you want AWS WAF to respond to requests that match the settings
// in a Rule. Valid settings include the following:
//
// ALLOW: AWS WAF allows requests BLOCK: AWS WAF blocks requests COUNT: AWS
// WAF increments a counter of the requests that match all of the conditions
// in the rule. AWS WAF then continues to inspect the web request based on the
// remaining rules in the web ACL. You can't specify COUNT for the default action
// for a WebACL.
Type *string `type:"string" required:"true" enum:"WafActionType"`
}
// String returns the string representation
func (s WafAction) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s WafAction) GoString() string {
return s.String()
}
// Contains the Rules that identify the requests that you want to allow, block,
// or count. In a WebACL, you also specify a default action (ALLOW or BLOCK),
// and the action for each Rule that you add to a WebACL, for example, block
// requests from specified IP addresses or block requests from specified referrers.
// You also associate the WebACL with a CloudFront distribution to identify
// the requests that you want AWS WAF to filter. If you add more than one Rule
// to a WebACL, a request needs to match only one of the specifications to be
// allowed, blocked, or counted. For more information, see UpdateWebACL.
type WebACL struct {
_ struct{} `type:"structure"`
// The action to perform if none of the Rules contained in the WebACL match.
// The action is specified by the WafAction object.
DefaultAction *WafAction `type:"structure" required:"true"`
MetricName *string `type:"string"`
// A friendly name or description of the WebACL. You can't change the name of
// a WebACL after you create it.
Name *string `min:"1" type:"string"`
// An array that contains the action for each Rule in a WebACL, the priority
// of the Rule, and the ID of the Rule.
Rules []*ActivatedRule `type:"list" required:"true"`
// A unique identifier for a WebACL. You use WebACLId to get information about
// a WebACL (see GetWebACL), update a WebACL (see UpdateWebACL, and delete a
// WebACL from AWS WAF (see DeleteWebACL).
//
// WebACLId is returned by CreateWebACL and by ListWebACLs.
WebACLId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s WebACL) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s WebACL) GoString() string {
return s.String()
}
// Contains the identifier and the name or description of the WebACL.
type WebACLSummary struct {
_ struct{} `type:"structure"`
// A friendly name or description of the WebACL. You can't change the name of
// a WebACL after you create it.
Name *string `min:"1" type:"string" required:"true"`
// A unique identifier for a WebACL. You use WebACLId to get information about
// a WebACL (see GetWebACL), update a WebACL (see UpdateWebACL, and delete a
// WebACL from AWS WAF (see DeleteWebACL).
//
// WebACLId is returned by CreateWebACL and by ListWebACLs.
WebACLId *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s WebACLSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s WebACLSummary) GoString() string {
return s.String()
}
// Specifies whether to insert a Rule into or delete a Rule from a WebACL.
type WebACLUpdate struct {
_ struct{} `type:"structure"`
// Specifies whether to insert a Rule into or delete a Rule from a WebACL.
Action *string `type:"string" required:"true" enum:"ChangeAction"`
// The ActivatedRule object in an UpdateWebACL request specifies a Rule that
// you want to insert or delete, the priority of the Rule in the WebACL, and
// the action that you want AWS WAF to take when a web request matches the Rule
// (ALLOW, BLOCK, or COUNT).
//
// To specify whether to insert or delete a Rule, use the Action parameter
// in the WebACLUpdate data type.
ActivatedRule *ActivatedRule `type:"structure" required:"true"`
}
// String returns the string representation
func (s WebACLUpdate) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s WebACLUpdate) GoString() string {
return s.String()
}
const (
// @enum ChangeAction
ChangeActionInsert = "INSERT"
// @enum ChangeAction
ChangeActionDelete = "DELETE"
)
const (
// @enum ChangeTokenStatus
ChangeTokenStatusProvisioned = "PROVISIONED"
// @enum ChangeTokenStatus
ChangeTokenStatusPending = "PENDING"
// @enum ChangeTokenStatus
ChangeTokenStatusInsync = "INSYNC"
)
const (
// @enum ComparisonOperator
ComparisonOperatorEq = "EQ"
// @enum ComparisonOperator
ComparisonOperatorNe = "NE"
// @enum ComparisonOperator
ComparisonOperatorLe = "LE"
// @enum ComparisonOperator
ComparisonOperatorLt = "LT"
// @enum ComparisonOperator
ComparisonOperatorGe = "GE"
// @enum ComparisonOperator
ComparisonOperatorGt = "GT"
)
const (
// @enum IPSetDescriptorType
IPSetDescriptorTypeIpv4 = "IPV4"
)
const (
// @enum MatchFieldType
MatchFieldTypeUri = "URI"
// @enum MatchFieldType
MatchFieldTypeQueryString = "QUERY_STRING"
// @enum MatchFieldType
MatchFieldTypeHeader = "HEADER"
// @enum MatchFieldType
MatchFieldTypeMethod = "METHOD"
// @enum MatchFieldType
MatchFieldTypeBody = "BODY"
)
const (
// @enum ParameterExceptionField
ParameterExceptionFieldChangeAction = "CHANGE_ACTION"
// @enum ParameterExceptionField
ParameterExceptionFieldWafAction = "WAF_ACTION"
// @enum ParameterExceptionField
ParameterExceptionFieldPredicateType = "PREDICATE_TYPE"
// @enum ParameterExceptionField
ParameterExceptionFieldIpsetType = "IPSET_TYPE"
// @enum ParameterExceptionField
ParameterExceptionFieldByteMatchFieldType = "BYTE_MATCH_FIELD_TYPE"
// @enum ParameterExceptionField
ParameterExceptionFieldSqlInjectionMatchFieldType = "SQL_INJECTION_MATCH_FIELD_TYPE"
// @enum ParameterExceptionField
ParameterExceptionFieldByteMatchTextTransformation = "BYTE_MATCH_TEXT_TRANSFORMATION"
// @enum ParameterExceptionField
ParameterExceptionFieldByteMatchPositionalConstraint = "BYTE_MATCH_POSITIONAL_CONSTRAINT"
// @enum ParameterExceptionField
ParameterExceptionFieldSizeConstraintComparisonOperator = "SIZE_CONSTRAINT_COMPARISON_OPERATOR"
)
const (
// @enum ParameterExceptionReason
ParameterExceptionReasonInvalidOption = "INVALID_OPTION"
// @enum ParameterExceptionReason
ParameterExceptionReasonIllegalCombination = "ILLEGAL_COMBINATION"
)
const (
// @enum PositionalConstraint
PositionalConstraintExactly = "EXACTLY"
// @enum PositionalConstraint
PositionalConstraintStartsWith = "STARTS_WITH"
// @enum PositionalConstraint
PositionalConstraintEndsWith = "ENDS_WITH"
// @enum PositionalConstraint
PositionalConstraintContains = "CONTAINS"
// @enum PositionalConstraint
PositionalConstraintContainsWord = "CONTAINS_WORD"
)
const (
// @enum PredicateType
PredicateTypeIpmatch = "IPMatch"
// @enum PredicateType
PredicateTypeByteMatch = "ByteMatch"
// @enum PredicateType
PredicateTypeSqlInjectionMatch = "SqlInjectionMatch"
// @enum PredicateType
PredicateTypeSizeConstraint = "SizeConstraint"
)
const (
// @enum TextTransformation
TextTransformationNone = "NONE"
// @enum TextTransformation
TextTransformationCompressWhiteSpace = "COMPRESS_WHITE_SPACE"
// @enum TextTransformation
TextTransformationHtmlEntityDecode = "HTML_ENTITY_DECODE"
// @enum TextTransformation
TextTransformationLowercase = "LOWERCASE"
// @enum TextTransformation
TextTransformationCmdLine = "CMD_LINE"
// @enum TextTransformation
TextTransformationUrlDecode = "URL_DECODE"
)
const (
// @enum WafActionType
WafActionTypeBlock = "BLOCK"
// @enum WafActionType
WafActionTypeAllow = "ALLOW"
// @enum WafActionType
WafActionTypeCount = "COUNT"
)
|