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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// A single action condition for a Condition in a logging filter.
type ActionCondition struct {
// The action setting that a log record must contain in order to meet the
// condition. This is the action that WAF applied to the web request. For rule
// groups, this is either the configured rule action setting, or if you've applied
// a rule action override to the rule, it's the override action. The value
// EXCLUDED_AS_COUNT matches on excluded rules and also on rules that have a rule
// action override of Count.
//
// This member is required.
Action ActionValue
noSmithyDocumentSerde
}
// The name of a field in the request payload that contains part or all of your
// customer's primary physical address. This data type is used in the
// RequestInspectionACFP data type.
type AddressField struct {
// The name of a single primary address field. How you specify the address fields
// depends on the request inspection payload type.
// - For JSON payloads, specify the field identifiers in JSON pointer syntax.
// For information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "primaryaddressline1":
// "THE_ADDRESS1", "primaryaddressline2": "THE_ADDRESS2", "primaryaddressline3":
// "THE_ADDRESS3" } } , the address field idenfiers are /form/primaryaddressline1
// , /form/primaryaddressline2 , and /form/primaryaddressline3 .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with input elements named primaryaddressline1 ,
// primaryaddressline2 , and primaryaddressline3 , the address fields identifiers
// are primaryaddressline1 , primaryaddressline2 , and primaryaddressline3 .
//
// This member is required.
Identifier *string
noSmithyDocumentSerde
}
// Inspect all of the elements that WAF has parsed and extracted from the web
// request component that you've identified in your FieldToMatch specifications.
// This is used in the FieldToMatch specification for some web request component
// types. JSON specification: "All": {}
type All struct {
noSmithyDocumentSerde
}
// Specifies that WAF should allow the request and optionally defines additional
// custom handling for the request. This is used in the context of other settings,
// for example to specify values for RuleAction and web ACL DefaultAction .
type AllowAction struct {
// Defines custom handling for the web request. For information about customizing
// web requests and responses, see Customizing web requests and responses in WAF (https://docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html)
// in the WAF Developer Guide.
CustomRequestHandling *CustomRequestHandling
noSmithyDocumentSerde
}
// Inspect all query arguments of the web request. This is used in the FieldToMatch
// specification for some web request component types. JSON specification:
// "AllQueryArguments": {}
type AllQueryArguments struct {
noSmithyDocumentSerde
}
// A logical rule statement used to combine other rule statements with AND logic.
// You provide more than one Statement within the AndStatement .
type AndStatement struct {
// The statements to combine with AND logic. You can use any statements that can
// be nested.
//
// This member is required.
Statements []Statement
noSmithyDocumentSerde
}
// Information for a single API key. API keys are required for the integration of
// the CAPTCHA API in your JavaScript client applications. The API lets you
// customize the placement and characteristics of the CAPTCHA puzzle for your end
// users. For more information about the CAPTCHA JavaScript integration, see WAF
// client application integration (https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html)
// in the WAF Developer Guide.
type APIKeySummary struct {
// The generated, encrypted API key. You can copy this for use in your JavaScript
// CAPTCHA integration.
APIKey *string
// The date and time that the key was created.
CreationTimestamp *time.Time
// The token domains that are defined in this API key.
TokenDomains []string
// Internal value used by WAF to manage the key.
Version int32
noSmithyDocumentSerde
}
// Specifies custom configurations for the associations between the web ACL and
// protected resources. Use this to customize the maximum size of the request body
// that your protected CloudFront distributions forward to WAF for inspection. The
// default is 16 KB (16,384 bytes). You are charged additional fees when your
// protected resources forward body sizes that are larger than the default. For
// more information, see WAF Pricing (http://aws.amazon.com/waf/pricing/) .
type AssociationConfig struct {
// Customizes the maximum size of the request body that your protected CloudFront
// distributions forward to WAF for inspection. The default size is 16 KB (16,384
// bytes). You are charged additional fees when your protected resources forward
// body sizes that are larger than the default. For more information, see WAF
// Pricing (http://aws.amazon.com/waf/pricing/) .
RequestBody map[string]RequestBodyAssociatedResourceTypeConfig
noSmithyDocumentSerde
}
// Details for your use of the account creation fraud prevention managed rule
// group, AWSManagedRulesACFPRuleSet . This configuration is used in
// ManagedRuleGroupConfig .
type AWSManagedRulesACFPRuleSet struct {
// The path of the account creation endpoint for your application. This is the
// page on your website that accepts the completed registration form for a new
// user. This page must accept POST requests. For example, for the URL
// https://example.com/web/newaccount , you would provide the path /web/newaccount
// . Account creation page paths that start with the path that you provide are
// considered a match. For example /web/newaccount matches the account creation
// paths /web/newaccount , /web/newaccount/ , /web/newaccountPage , and
// /web/newaccount/thisPage , but doesn't match the path /home/web/newaccount or
// /website/newaccount .
//
// This member is required.
CreationPath *string
// The path of the account registration endpoint for your application. This is the
// page on your website that presents the registration form to new users. This page
// must accept GET text/html requests. For example, for the URL
// https://example.com/web/registration , you would provide the path
// /web/registration . Registration page paths that start with the path that you
// provide are considered a match. For example /web/registration matches the
// registration paths /web/registration , /web/registration/ ,
// /web/registrationPage , and /web/registration/thisPage , but doesn't match the
// path /home/web/registration or /website/registration .
//
// This member is required.
RegistrationPagePath *string
// The criteria for inspecting account creation requests, used by the ACFP rule
// group to validate and track account creation attempts.
//
// This member is required.
RequestInspection *RequestInspectionACFP
// Allow the use of regular expressions in the registration page path and the
// account creation path.
EnableRegexInPath bool
// The criteria for inspecting responses to account creation requests, used by the
// ACFP rule group to track account creation success rates. Response inspection is
// available only in web ACLs that protect Amazon CloudFront distributions. The
// ACFP rule group evaluates the responses that your protected resources send back
// to client account creation attempts, keeping count of successful and failed
// attempts from each IP address and client session. Using this information, the
// rule group labels and mitigates requests from client sessions and IP addresses
// that have had too many successful account creation attempts in a short amount of
// time.
ResponseInspection *ResponseInspection
noSmithyDocumentSerde
}
// Details for your use of the account takeover prevention managed rule group,
// AWSManagedRulesATPRuleSet . This configuration is used in ManagedRuleGroupConfig
// .
type AWSManagedRulesATPRuleSet struct {
// The path of the login endpoint for your application. For example, for the URL
// https://example.com/web/login , you would provide the path /web/login . Login
// paths that start with the path that you provide are considered a match. For
// example /web/login matches the login paths /web/login , /web/login/ ,
// /web/loginPage , and /web/login/thisPage , but doesn't match the login path
// /home/web/login or /website/login . The rule group inspects only HTTP POST
// requests to your specified login endpoint.
//
// This member is required.
LoginPath *string
// Allow the use of regular expressions in the login page path.
EnableRegexInPath bool
// The criteria for inspecting login requests, used by the ATP rule group to
// validate credentials usage.
RequestInspection *RequestInspection
// The criteria for inspecting responses to login requests, used by the ATP rule
// group to track login failure rates. Response inspection is available only in web
// ACLs that protect Amazon CloudFront distributions. The ATP rule group evaluates
// the responses that your protected resources send back to client login attempts,
// keeping count of successful and failed attempts for each IP address and client
// session. Using this information, the rule group labels and mitigates requests
// from client sessions and IP addresses that have had too many failed login
// attempts in a short amount of time.
ResponseInspection *ResponseInspection
noSmithyDocumentSerde
}
// Details for your use of the Bot Control managed rule group,
// AWSManagedRulesBotControlRuleSet . This configuration is used in
// ManagedRuleGroupConfig .
type AWSManagedRulesBotControlRuleSet struct {
// The inspection level to use for the Bot Control rule group. The common level is
// the least expensive. The targeted level includes all common level rules and adds
// rules with more advanced inspection criteria. For details, see WAF Bot Control
// rule group (https://docs.aws.amazon.com/waf/latest/developerguide/aws-managed-rule-groups-bot.html)
// in the WAF Developer Guide.
//
// This member is required.
InspectionLevel InspectionLevel
// Applies only to the targeted inspection level. Determines whether to use
// machine learning (ML) to analyze your web traffic for bot-related activity.
// Machine learning is required for the Bot Control rules
// TGT_ML_CoordinatedActivityLow and TGT_ML_CoordinatedActivityMedium , which
// inspect for anomalous behavior that might indicate distributed, coordinated bot
// activity. For more information about this choice, see the listing for these
// rules in the table at Bot Control rules listing (https://docs.aws.amazon.com/waf/latest/developerguide/aws-managed-rule-groups-bot.html#aws-managed-rule-groups-bot-rules)
// in the WAF Developer Guide. Default: TRUE
EnableMachineLearning bool
noSmithyDocumentSerde
}
// Specifies that WAF should block the request and optionally defines additional
// custom handling for the response to the web request. This is used in the context
// of other settings, for example to specify values for RuleAction and web ACL
// DefaultAction .
type BlockAction struct {
// Defines a custom response for the web request. For information about
// customizing web requests and responses, see Customizing web requests and
// responses in WAF (https://docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html)
// in the WAF Developer Guide.
CustomResponse *CustomResponse
noSmithyDocumentSerde
}
// Inspect the body of the web request. The body immediately follows the request
// headers. This is used to indicate the web request component to inspect, in the
// FieldToMatch specification.
type Body struct {
// What WAF should do if the body is larger than WAF can inspect. WAF does not
// support inspecting the entire contents of the web request body if the body
// exceeds the limit for the resource type. If the body is larger than the limit,
// the underlying host service only forwards the contents that are below the limit
// to WAF for inspection. The default limit is 8 KB (8,192 bytes) for regional
// resources and 16 KB (16,384 bytes) for CloudFront distributions. For CloudFront
// distributions, you can increase the limit in the web ACL AssociationConfig , for
// additional processing fees. The options for oversize handling are the following:
//
// - CONTINUE - Inspect the available body contents normally, according to the
// rule inspection criteria.
// - MATCH - Treat the web request as matching the rule statement. WAF applies
// the rule action to the request.
// - NO_MATCH - Treat the web request as not matching the rule statement.
// You can combine the MATCH or NO_MATCH settings for oversize handling with your
// rule and web ACL action settings, so that you block any request whose body is
// over the limit. Default: CONTINUE
OversizeHandling OversizeHandling
noSmithyDocumentSerde
}
// A rule statement that defines a string match search for WAF to apply to web
// requests. The byte match statement provides the bytes to search for, the
// location in requests that you want WAF to search, and other settings. The bytes
// to search for are typically a string that corresponds with ASCII characters. In
// the WAF console and the developer guide, this is called a string match
// statement.
type ByteMatchStatement struct {
// The part of the web request that you want WAF to inspect.
//
// This member is required.
FieldToMatch *FieldToMatch
// The area within the portion of the web request that you want WAF to search for
// SearchString . Valid values include the following: CONTAINS The specified part
// of the web request must include the value of SearchString , but the location
// doesn't matter. CONTAINS_WORD The specified part of the web request must include
// the value of SearchString , and SearchString must contain only alphanumeric
// characters or underscore (A-Z, a-z, 0-9, or _). In addition, SearchString must
// be a word, which means that both of the following are true:
// - SearchString is at the beginning of the specified part of the web request or
// is preceded by a character other than an alphanumeric character or underscore
// (_). Examples include the value of a header and ;BadBot .
// - SearchString is at the end of the specified part of the web request or is
// followed by a character other than an alphanumeric character or underscore (_),
// for example, BadBot; and -BadBot; .
// EXACTLY The value of the specified part of the web request must exactly match
// the value of SearchString . STARTS_WITH The value of SearchString must appear
// at the beginning of the specified part of the web request. ENDS_WITH The value
// of SearchString must appear at the end of the specified part of the web request.
//
// This member is required.
PositionalConstraint PositionalConstraint
// A string value that you want WAF to search for. WAF searches only in the part
// of web requests that you designate for inspection in FieldToMatch . The maximum
// length of the value is 200 bytes. Valid values depend on the component that you
// specify for inspection in FieldToMatch :
// - Method : The HTTP method that you want WAF to search for. This indicates the
// type of operation specified in the request.
// - UriPath : The value that you want WAF to search for in the URI path, for
// example, /images/daily-ad.jpg .
// - JA3Fingerprint : Match against the request's JA3 fingerprint. The JA3
// fingerprint is a 32-character hash derived from the TLS Client Hello of an
// incoming request. This fingerprint serves as a unique identifier for the
// client's TLS configuration. You can use this choice only with a string match
// ByteMatchStatement with the PositionalConstraint set to EXACTLY . You can
// obtain the JA3 fingerprint for client requests from the web ACL logs. If WAF is
// able to calculate the fingerprint, it includes it in the logs. For information
// about the logging fields, see Log fields (https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html)
// in the WAF Developer Guide.
// - HeaderOrder : The list of header names to match for. WAF creates a string
// that contains the ordered list of header names, from the headers in the web
// request, and then matches against that string.
// If SearchString includes alphabetic characters A-Z and a-z, note that the value
// is case sensitive. If you're using the WAF API Specify a base64-encoded version
// of the value. The maximum length of the value before you base64-encode it is 200
// 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 SearchString . If you're using the CLI or one
// of the Amazon Web Services SDKs The value that you want WAF to search for. The
// SDK automatically base64 encodes the value.
//
// This member is required.
SearchString []byte
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
// Specifies that WAF should run a CAPTCHA check against the request:
// - If the request includes a valid, unexpired CAPTCHA token, WAF applies any
// custom request handling and labels that you've configured and then allows the
// web request inspection to proceed to the next rule, similar to a CountAction .
// - If the request doesn't include a valid, unexpired token, WAF discontinues
// the web ACL evaluation of the request and blocks it from going to its intended
// destination. WAF generates a response that it sends back to the client, which
// includes the following:
// - The header x-amzn-waf-action with a value of captcha .
// - The HTTP status code 405 Method Not Allowed .
// - If the request contains an Accept header with a value of text/html , the
// response includes a CAPTCHA JavaScript page interstitial.
//
// You can configure the expiration time in the CaptchaConfig ImmunityTimeProperty
// setting at the rule and web ACL level. The rule setting overrides the web ACL
// setting. This action option is available for rules. It isn't available for web
// ACL default actions.
type CaptchaAction struct {
// Defines custom handling for the web request, used when the CAPTCHA inspection
// determines that the request's token is valid and unexpired. For information
// about customizing web requests and responses, see Customizing web requests and
// responses in WAF (https://docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html)
// in the WAF Developer Guide.
CustomRequestHandling *CustomRequestHandling
noSmithyDocumentSerde
}
// Specifies how WAF should handle CAPTCHA evaluations. This is available at the
// web ACL level and in each rule.
type CaptchaConfig struct {
// Determines how long a CAPTCHA timestamp in the token remains valid after the
// client successfully solves a CAPTCHA puzzle.
ImmunityTimeProperty *ImmunityTimeProperty
noSmithyDocumentSerde
}
// The result from the inspection of the web request for a valid CAPTCHA token.
type CaptchaResponse struct {
// The reason for failure, populated when the evaluation of the token fails.
FailureReason FailureReason
// The HTTP response code indicating the status of the CAPTCHA token in the web
// request. If the token is missing, invalid, or expired, this code is 405 Method
// Not Allowed .
ResponseCode *int32
// The time that the CAPTCHA was last solved for the supplied token.
SolveTimestamp *int64
noSmithyDocumentSerde
}
// Specifies that WAF should run a Challenge check against the request to verify
// that the request is coming from a legitimate client session:
// - If the request includes a valid, unexpired challenge token, WAF applies any
// custom request handling and labels that you've configured and then allows the
// web request inspection to proceed to the next rule, similar to a CountAction .
// - If the request doesn't include a valid, unexpired challenge token, WAF
// discontinues the web ACL evaluation of the request and blocks it from going to
// its intended destination. WAF then generates a challenge response that it sends
// back to the client, which includes the following:
// - The header x-amzn-waf-action with a value of challenge .
// - The HTTP status code 202 Request Accepted .
// - If the request contains an Accept header with a value of text/html , the
// response includes a JavaScript page interstitial with a challenge script.
// Challenges run silent browser interrogations in the background, and don't
// generally affect the end user experience. A challenge enforces token acquisition
// using an interstitial JavaScript challenge that inspects the client session for
// legitimate behavior. The challenge blocks bots or at least increases the cost of
// operating sophisticated bots. After the client session successfully responds to
// the challenge, it receives a new token from WAF, which the challenge script uses
// to resubmit the original request.
//
// You can configure the expiration time in the ChallengeConfig ImmunityTimeProperty
// setting at the rule and web ACL level. The rule setting overrides the web ACL
// setting. This action option is available for rules. It isn't available for web
// ACL default actions.
type ChallengeAction struct {
// Defines custom handling for the web request, used when the challenge inspection
// determines that the request's token is valid and unexpired. For information
// about customizing web requests and responses, see Customizing web requests and
// responses in WAF (https://docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html)
// in the WAF Developer Guide.
CustomRequestHandling *CustomRequestHandling
noSmithyDocumentSerde
}
// Specifies how WAF should handle Challenge evaluations. This is available at the
// web ACL level and in each rule.
type ChallengeConfig struct {
// Determines how long a challenge timestamp in the token remains valid after the
// client successfully responds to a challenge.
ImmunityTimeProperty *ImmunityTimeProperty
noSmithyDocumentSerde
}
// The result from the inspection of the web request for a valid challenge token.
type ChallengeResponse struct {
// The reason for failure, populated when the evaluation of the token fails.
FailureReason FailureReason
// The HTTP response code indicating the status of the challenge token in the web
// request. If the token is missing, invalid, or expired, this code is 202 Request
// Accepted .
ResponseCode *int32
// The time that the challenge was last solved for the supplied token.
SolveTimestamp *int64
noSmithyDocumentSerde
}
// A single match condition for a Filter .
type Condition struct {
// A single action condition. This is the action setting that a log record must
// contain in order to meet the condition.
ActionCondition *ActionCondition
// A single label name condition. This is the fully qualified label name that a
// log record must contain in order to meet the condition. Fully qualified labels
// have a prefix, optional namespaces, and label name. The prefix identifies the
// rule group or web ACL context of the rule that added the label.
LabelNameCondition *LabelNameCondition
noSmithyDocumentSerde
}
// The filter to use to identify the subset of cookies to inspect in a web
// request. You must specify exactly one setting: either All , IncludedCookies , or
// ExcludedCookies . Example JSON: "MatchPattern": { "IncludedCookies": [
// "session-id-time", "session-id" ] }
type CookieMatchPattern struct {
// Inspect all cookies.
All *All
// Inspect only the cookies whose keys don't match any of the strings specified
// here.
ExcludedCookies []string
// Inspect only the cookies that have a key that matches one of the strings
// specified here.
IncludedCookies []string
noSmithyDocumentSerde
}
// Inspect the cookies in the web request. You can specify the parts of the
// cookies to inspect and you can narrow the set of cookies to inspect by including
// or excluding specific keys. This is used to indicate the web request component
// to inspect, in the FieldToMatch specification. Example JSON: "Cookies": {
// "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH"
// }
type Cookies struct {
// The filter to use to identify the subset of cookies to inspect in a web
// request. You must specify exactly one setting: either All , IncludedCookies , or
// ExcludedCookies . Example JSON: "MatchPattern": { "IncludedCookies": [
// "session-id-time", "session-id" ] }
//
// This member is required.
MatchPattern *CookieMatchPattern
// The parts of the cookies to inspect with the rule inspection criteria. If you
// specify ALL , WAF inspects both keys and values. All does not require a match
// to be found in the keys and a match to be found in the values. It requires a
// match to be found in the keys or the values or both. To require a match in the
// keys and in the values, use a logical AND statement to combine two match rules,
// one that inspects the keys and another that inspects the values.
//
// This member is required.
MatchScope MapMatchScope
// What WAF should do if the cookies of the request are more numerous or larger
// than WAF can inspect. WAF does not support inspecting the entire contents of
// request cookies when they exceed 8 KB (8192 bytes) or 200 total cookies. The
// underlying host service forwards a maximum of 200 cookies and at most 8 KB of
// cookie contents to WAF. The options for oversize handling are the following:
// - CONTINUE - Inspect the available cookies normally, according to the rule
// inspection criteria.
// - MATCH - Treat the web request as matching the rule statement. WAF applies
// the rule action to the request.
// - NO_MATCH - Treat the web request as not matching the rule statement.
//
// This member is required.
OversizeHandling OversizeHandling
noSmithyDocumentSerde
}
// Specifies that WAF should count the request. Optionally defines additional
// custom handling for the request. This is used in the context of other settings,
// for example to specify values for RuleAction and web ACL DefaultAction .
type CountAction struct {
// Defines custom handling for the web request. For information about customizing
// web requests and responses, see Customizing web requests and responses in WAF (https://docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html)
// in the WAF Developer Guide.
CustomRequestHandling *CustomRequestHandling
noSmithyDocumentSerde
}
// A custom header for custom request and response handling. This is used in
// CustomResponse and CustomRequestHandling .
type CustomHTTPHeader struct {
// The name of the custom header. For custom request header insertion, when WAF
// inserts the header into the request, it prefixes this name x-amzn-waf- , to
// avoid confusion with the headers that are already in the request. For example,
// for the header name sample , WAF inserts the header x-amzn-waf-sample .
//
// This member is required.
Name *string
// The value of the custom header.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// Custom request handling behavior that inserts custom headers into a web
// request. You can add custom request handling for WAF to use when the rule action
// doesn't block the request. For example, CaptchaAction for requests with valid t
// okens, and AllowAction . For information about customizing web requests and
// responses, see Customizing web requests and responses in WAF (https://docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html)
// in the WAF Developer Guide.
type CustomRequestHandling struct {
// The HTTP headers to insert into the request. Duplicate header names are not
// allowed. For information about the limits on count and size for custom request
// and response settings, see WAF quotas (https://docs.aws.amazon.com/waf/latest/developerguide/limits.html)
// in the WAF Developer Guide.
//
// This member is required.
InsertHeaders []CustomHTTPHeader
noSmithyDocumentSerde
}
// A custom response to send to the client. You can define a custom response for
// rule actions and default web ACL actions that are set to BlockAction . For
// information about customizing web requests and responses, see Customizing web
// requests and responses in WAF (https://docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html)
// in the WAF Developer Guide.
type CustomResponse struct {
// The HTTP status code to return to the client. For a list of status codes that
// you can use in your custom responses, see Supported status codes for custom
// response (https://docs.aws.amazon.com/waf/latest/developerguide/customizing-the-response-status-codes.html)
// in the WAF Developer Guide.
//
// This member is required.
ResponseCode *int32
// References the response body that you want WAF to return to the web request
// client. You can define a custom response for a rule action or a default web ACL
// action that is set to block. To do this, you first define the response body key
// and value in the CustomResponseBodies setting for the WebACL or RuleGroup where
// you want to use it. Then, in the rule action or web ACL default action
// BlockAction setting, you reference the response body using this key.
CustomResponseBodyKey *string
// The HTTP headers to use in the response. You can specify any header name except
// for content-type . Duplicate header names are not allowed. For information about
// the limits on count and size for custom request and response settings, see WAF
// quotas (https://docs.aws.amazon.com/waf/latest/developerguide/limits.html) in
// the WAF Developer Guide.
ResponseHeaders []CustomHTTPHeader
noSmithyDocumentSerde
}
// The response body to use in a custom response to a web request. This is
// referenced by key from CustomResponse CustomResponseBodyKey .
type CustomResponseBody struct {
// The payload of the custom response. You can use JSON escape strings in JSON
// content. To do this, you must specify JSON content in the ContentType setting.
// For information about the limits on count and size for custom request and
// response settings, see WAF quotas (https://docs.aws.amazon.com/waf/latest/developerguide/limits.html)
// in the WAF Developer Guide.
//
// This member is required.
Content *string
// The type of content in the payload that you are defining in the Content string.
//
// This member is required.
ContentType ResponseContentType
noSmithyDocumentSerde
}
// In a WebACL , this is the action that you want WAF to perform when a web request
// doesn't match any of the rules in the WebACL . The default action must be a
// terminating action.
type DefaultAction struct {
// Specifies that WAF should allow requests by default.
Allow *AllowAction
// Specifies that WAF should block requests by default.
Block *BlockAction
noSmithyDocumentSerde
}
// The name of the field in the request payload that contains your customer's
// email. This data type is used in the RequestInspectionACFP data type.
type EmailField struct {
// The name of the email field. How you specify this depends on the request
// inspection payload type.
// - For JSON payloads, specify the field name in JSON pointer syntax. For
// information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "email": "THE_EMAIL" } } , the
// email field specification is /form/email .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with the input element named email1 , the email field
// specification is email1 .
//
// This member is required.
Identifier *string
noSmithyDocumentSerde
}
// Specifies a single rule in a rule group whose action you want to override to
// Count . Instead of this option, use RuleActionOverrides . It accepts any valid
// action setting, including Count .
type ExcludedRule struct {
// The name of the rule whose action you want to override to Count .
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// The part of the web request that you want WAF to inspect. Include the single
// FieldToMatch type that you want to inspect, with additional specifications as
// needed, according to the type. You specify a single request component in
// FieldToMatch for each rule statement that requires it. To inspect more than one
// component of the web request, create a separate rule statement for each
// component. Example JSON for a QueryString field to match: "FieldToMatch": {
// "QueryString": {} } Example JSON for a Method field to match specification:
// "FieldToMatch": { "Method": { "Name": "DELETE" } }
type FieldToMatch struct {
// Inspect all query arguments.
AllQueryArguments *AllQueryArguments
// Inspect the request body as plain text. The request body immediately follows
// the request headers. This is 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. A limited amount of the request body is forwarded to WAF for
// inspection by the underlying host service. For regional resources, the limit is
// 8 KB (8,192 bytes) and for CloudFront distributions, the limit is 16 KB (16,384
// bytes). For CloudFront distributions, you can increase the limit in the web
// ACL's AssociationConfig , for additional processing fees. For information about
// how to handle oversized request bodies, see the Body object configuration.
Body *Body
// Inspect the request cookies. You must configure scope and pattern matching
// filters in the Cookies object, to define the set of cookies and the parts of
// the cookies that WAF inspects. Only the first 8 KB (8192 bytes) of a request's
// cookies and only the first 200 cookies are forwarded to WAF for inspection by
// the underlying host service. You must configure how to handle any oversize
// cookie content in the Cookies object. WAF applies the pattern matching filters
// to the cookies that it receives from the underlying host service.
Cookies *Cookies
// Inspect a string containing the list of the request's header names, ordered as
// they appear in the web request that WAF receives for inspection. WAF generates
// the string and then uses that as the field to match component in its inspection.
// WAF separates the header names in the string using colons and no added spaces,
// for example host:user-agent:accept:authorization:referer .
HeaderOrder *HeaderOrder
// Inspect the request headers. You must configure scope and pattern matching
// filters in the Headers object, to define the set of headers to and the parts of
// the headers that WAF inspects. Only the first 8 KB (8192 bytes) of a request's
// headers and only the first 200 headers are forwarded to WAF for inspection by
// the underlying host service. You must configure how to handle any oversize
// header content in the Headers object. WAF applies the pattern matching filters
// to the headers that it receives from the underlying host service.
Headers *Headers
// Match against the request's JA3 fingerprint. The JA3 fingerprint is a
// 32-character hash derived from the TLS Client Hello of an incoming request. This
// fingerprint serves as a unique identifier for the client's TLS configuration.
// WAF calculates and logs this fingerprint for each request that has enough TLS
// Client Hello information for the calculation. Almost all web requests include
// this information. You can use this choice only with a string match
// ByteMatchStatement with the PositionalConstraint set to EXACTLY . You can obtain
// the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to
// calculate the fingerprint, it includes it in the logs. For information about the
// logging fields, see Log fields (https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html)
// in the WAF Developer Guide. Provide the JA3 fingerprint string from the logs in
// your string match statement specification, to match with any future requests
// that have the same TLS configuration.
JA3Fingerprint *JA3Fingerprint
// Inspect the request body as JSON. The request body immediately follows the
// request headers. This is 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. A limited amount of the request body is forwarded to WAF for
// inspection by the underlying host service. For regional resources, the limit is
// 8 KB (8,192 bytes) and for CloudFront distributions, the limit is 16 KB (16,384
// bytes). For CloudFront distributions, you can increase the limit in the web
// ACL's AssociationConfig , for additional processing fees. For information about
// how to handle oversized request bodies, see the JsonBody object configuration.
JsonBody *JsonBody
// Inspect the HTTP method. The method indicates the type of operation that the
// request is asking the origin to perform.
Method *Method
// Inspect the query string. This is the part of a URL that appears after a ?
// character, if any.
QueryString *QueryString
// Inspect a single header. Provide the name of the header to inspect, for
// example, User-Agent or Referer . This setting isn't case sensitive. Example
// JSON: "SingleHeader": { "Name": "haystack" } Alternately, you can filter and
// inspect all headers with the Headers FieldToMatch setting.
SingleHeader *SingleHeader
// Inspect a single query argument. Provide the name of the query argument to
// inspect, such as UserName or SalesRegion. The name can be up to 30 characters
// long and isn't case sensitive. Example JSON: "SingleQueryArgument": { "Name":
// "myArgument" }
SingleQueryArgument *SingleQueryArgument
// Inspect the request URI path. This is the part of the web request that
// identifies a resource, for example, /images/daily-ad.jpg .
UriPath *UriPath
noSmithyDocumentSerde
}
// A single logging filter, used in LoggingFilter .
type Filter struct {
// How to handle logs that satisfy the filter's conditions and requirement.
//
// This member is required.
Behavior FilterBehavior
// Match conditions for the filter.
//
// This member is required.
Conditions []Condition
// Logic to apply to the filtering conditions. You can specify that, in order to
// satisfy the filter, a log must match all conditions or must match at least one
// condition.
//
// This member is required.
Requirement FilterRequirement
noSmithyDocumentSerde
}
// A rule group that's defined for an Firewall Manager WAF policy.
type FirewallManagerRuleGroup struct {
// The processing guidance for an Firewall Manager rule. This is like a regular
// rule Statement , but it can only contain a rule group reference.
//
// This member is required.
FirewallManagerStatement *FirewallManagerStatement
// The name of the rule group. You cannot change the name of a rule group after
// you create it.
//
// This member is required.
Name *string
// The action to use in the place of the action that results from the rule group
// evaluation. Set the override action to none to leave the result of the rule
// group alone. Set it to count to override the result to count only. You can only
// use this for rule statements that reference a rule group, like
// RuleGroupReferenceStatement and ManagedRuleGroupStatement . This option is
// usually set to none. It does not affect how the rules in the rule group are
// evaluated. If you want the rules in the rule group to only count matches, do not
// use this and instead use the rule action override option, with Count action, in
// your rule group reference statement settings.
//
// This member is required.
OverrideAction *OverrideAction
// If you define more than one rule group in the first or last Firewall Manager
// rule groups, WAF evaluates each request against the rule groups in order,
// starting from the lowest priority setting. The priorities don't need to be
// consecutive, but they must all be different.
//
// This member is required.
Priority int32
// Defines and enables Amazon CloudWatch metrics and web request sample collection.
//
// This member is required.
VisibilityConfig *VisibilityConfig
noSmithyDocumentSerde
}
// The processing guidance for an Firewall Manager rule. This is like a regular
// rule Statement , but it can only contain a single rule group reference.
type FirewallManagerStatement struct {
// A statement used by Firewall Manager to run the rules that are defined in a
// managed rule group. This is managed by Firewall Manager for an Firewall Manager
// WAF policy.
ManagedRuleGroupStatement *ManagedRuleGroupStatement
// A statement used by Firewall Manager to run the rules that are defined in a
// rule group. This is managed by Firewall Manager for an Firewall Manager WAF
// policy.
RuleGroupReferenceStatement *RuleGroupReferenceStatement
noSmithyDocumentSerde
}
// The configuration for inspecting IP addresses in an HTTP header that you
// specify, instead of using the IP address that's reported by the web request
// origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify
// any header name. If the specified header isn't present in the request, WAF
// doesn't apply the rule to the web request at all. This configuration is used for
// GeoMatchStatement and RateBasedStatement . For IPSetReferenceStatement , use
// IPSetForwardedIPConfig instead. WAF only evaluates the first IP address found in
// the specified HTTP header.
type ForwardedIPConfig struct {
// The match status to assign to the web request if the request doesn't have a
// valid IP address in the specified position. If the specified header isn't
// present in the request, WAF doesn't apply the rule to the web request at all.
// You can specify the following fallback behaviors:
// - MATCH - Treat the web request as matching the rule statement. WAF applies
// the rule action to the request.
// - NO_MATCH - Treat the web request as not matching the rule statement.
//
// This member is required.
FallbackBehavior FallbackBehavior
// The name of the HTTP header to use for the IP address. For example, to use the
// X-Forwarded-For (XFF) header, set this to X-Forwarded-For . If the specified
// header isn't present in the request, WAF doesn't apply the rule to the web
// request at all.
//
// This member is required.
HeaderName *string
noSmithyDocumentSerde
}
// A rule statement that labels web requests by country and region and that
// matches against web requests based on country code. A geo match rule labels
// every request that it inspects regardless of whether it finds a match.
// - To manage requests only by country, you can use this statement by itself
// and specify the countries that you want to match against in the CountryCodes
// array.
// - Otherwise, configure your geo match rule with Count action so that it only
// labels requests. Then, add one or more label match rules to run after the geo
// match rule and configure them to match against the geographic labels and handle
// the requests as needed.
//
// WAF labels requests using the alpha-2 country and region codes from the
// International Organization for Standardization (ISO) 3166 standard. WAF
// determines the codes using either the IP address in the web request origin or,
// if you specify it, the address in the geo match ForwardedIPConfig . If you use
// the web request origin, the label formats are awswaf:clientip:geo:region:- and
// awswaf:clientip:geo:country: . If you use a forwarded IP address, the label
// formats are awswaf:forwardedip:geo:region:- and awswaf:forwardedip:geo:country:
// . For additional details, see Geographic match rule statement (https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statement-type-geo-match.html)
// in the WAF Developer Guide (https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html)
// .
type GeoMatchStatement struct {
// An array of two-character country codes that you want to match against, for
// example, [ "US", "CN" ] , from the alpha-2 country ISO codes of the ISO 3166
// international standard. When you use a geo match statement just for the region
// and country labels that it adds to requests, you still have to supply a country
// code for the rule to evaluate. In this case, you configure the rule to only
// count matching requests, but it will still generate logging and count metrics
// for any matches. You can reduce the logging and metrics that the rule produces
// by specifying a country that's unlikely to be a source of traffic to your site.
CountryCodes []CountryCode
// The configuration for inspecting IP addresses in an HTTP header that you
// specify, instead of using the IP address that's reported by the web request
// origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify
// any header name. If the specified header isn't present in the request, WAF
// doesn't apply the rule to the web request at all.
ForwardedIPConfig *ForwardedIPConfig
noSmithyDocumentSerde
}
// The filter to use to identify the subset of headers to inspect in a web
// request. You must specify exactly one setting: either All , IncludedHeaders , or
// ExcludedHeaders . Example JSON: "MatchPattern": { "ExcludedHeaders": [
// "KeyToExclude1", "KeyToExclude2" ] }
type HeaderMatchPattern struct {
// Inspect all headers.
All *All
// Inspect only the headers whose keys don't match any of the strings specified
// here.
ExcludedHeaders []string
// Inspect only the headers that have a key that matches one of the strings
// specified here.
IncludedHeaders []string
noSmithyDocumentSerde
}
// Inspect a string containing the list of the request's header names, ordered as
// they appear in the web request that WAF receives for inspection. WAF generates
// the string and then uses that as the field to match component in its inspection.
// WAF separates the header names in the string using colons and no added spaces,
// for example host:user-agent:accept:authorization:referer .
type HeaderOrder struct {
// What WAF should do if the headers of the request are more numerous or larger
// than WAF can inspect. WAF does not support inspecting the entire contents of
// request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The
// underlying host service forwards a maximum of 200 headers and at most 8 KB of
// header contents to WAF. The options for oversize handling are the following:
// - CONTINUE - Inspect the available headers normally, according to the rule
// inspection criteria.
// - MATCH - Treat the web request as matching the rule statement. WAF applies
// the rule action to the request.
// - NO_MATCH - Treat the web request as not matching the rule statement.
//
// This member is required.
OversizeHandling OversizeHandling
noSmithyDocumentSerde
}
// Inspect all headers in the web request. You can specify the parts of the
// headers to inspect and you can narrow the set of headers to inspect by including
// or excluding specific keys. This is used to indicate the web request component
// to inspect, in the FieldToMatch specification. If you want to inspect just the
// value of a single header, use the SingleHeader FieldToMatch setting instead.
// Example JSON: "Headers": { "MatchPattern": { "All": {} }, "MatchScope": "KEY",
// "OversizeHandling": "MATCH" }
type Headers struct {
// The filter to use to identify the subset of headers to inspect in a web
// request. You must specify exactly one setting: either All , IncludedHeaders , or
// ExcludedHeaders . Example JSON: "MatchPattern": { "ExcludedHeaders": [
// "KeyToExclude1", "KeyToExclude2" ] }
//
// This member is required.
MatchPattern *HeaderMatchPattern
// The parts of the headers to match with the rule inspection criteria. If you
// specify ALL , WAF inspects both keys and values. All does not require a match
// to be found in the keys and a match to be found in the values. It requires a
// match to be found in the keys or the values or both. To require a match in the
// keys and in the values, use a logical AND statement to combine two match rules,
// one that inspects the keys and another that inspects the values.
//
// This member is required.
MatchScope MapMatchScope
// What WAF should do if the headers of the request are more numerous or larger
// than WAF can inspect. WAF does not support inspecting the entire contents of
// request headers when they exceed 8 KB (8192 bytes) or 200 total headers. The
// underlying host service forwards a maximum of 200 headers and at most 8 KB of
// header contents to WAF. The options for oversize handling are the following:
// - CONTINUE - Inspect the available headers normally, according to the rule
// inspection criteria.
// - MATCH - Treat the web request as matching the rule statement. WAF applies
// the rule action to the request.
// - NO_MATCH - Treat the web request as not matching the rule statement.
//
// This member is required.
OversizeHandling OversizeHandling
noSmithyDocumentSerde
}
// Part of the response from GetSampledRequests . This is a 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.
type HTTPHeader struct {
// The name of the HTTP header.
Name *string
// The value of the HTTP header.
Value *string
noSmithyDocumentSerde
}
// Part of the response from GetSampledRequests . This is a complex type that
// appears as Request in the response syntax. HTTPRequest contains information
// about one of the web requests.
type HTTPRequest struct {
// The IP address that the request originated from. If the web ACL 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
// 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
// The HTTP version specified in the sampled web request, for example, HTTP/1.1 .
HTTPVersion *string
// A complex type that contains the name and value for each header in the sampled
// web request.
Headers []HTTPHeader
// The HTTP method specified in the sampled web request.
Method *string
// The URI path of the request, which identifies the resource, for example,
// /images/daily-ad.jpg .
URI *string
noSmithyDocumentSerde
}
// Used for CAPTCHA and challenge token settings. Determines how long a CAPTCHA or
// challenge timestamp remains valid after WAF updates it for a successful CAPTCHA
// or challenge response.
type ImmunityTimeProperty struct {
// The amount of time, in seconds, that a CAPTCHA or challenge timestamp is
// considered valid by WAF. The default setting is 300. For the Challenge action,
// the minimum setting is 300.
//
// This member is required.
ImmunityTime *int64
noSmithyDocumentSerde
}
// Contains zero or more IP addresses or blocks of IP addresses specified in
// Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4 and IPv6
// CIDR ranges except for /0. For information about CIDR notation, see the
// Wikipedia entry Classless Inter-Domain Routing (https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
// . WAF assigns an ARN to each IPSet that you create. To use an IP set in a rule,
// you provide the ARN to the Rule statement IPSetReferenceStatement .
type IPSet struct {
// The Amazon Resource Name (ARN) of the entity.
//
// This member is required.
ARN *string
// Contains an array of strings that specifies zero or more IP addresses or blocks
// of IP addresses that you want WAF to inspect for in incoming requests. All
// addresses must be specified using Classless Inter-Domain Routing (CIDR)
// notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0 . Example
// address strings:
// - For requests that originated from the IP address 192.0.2.44, specify
// 192.0.2.44/32 .
// - For requests that originated from IP addresses from 192.0.2.0 to
// 192.0.2.255, specify 192.0.2.0/24 .
// - For requests that originated from the IP address
// 1111:0000:0000:0000:0000:0000:0000:0111, specify
// 1111:0000:0000:0000:0000:0000:0000:0111/128 .
// - For requests that originated from IP addresses
// 1111:0000:0000:0000:0000:0000:0000:0000 to
// 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify
// 1111:0000:0000:0000:0000:0000:0000:0000/64 .
// For more information about CIDR notation, see the Wikipedia entry Classless
// Inter-Domain Routing (https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
// . Example JSON Addresses specifications:
// - Empty array: "Addresses": []
// - Array with one address: "Addresses": ["192.0.2.44/32"]
// - Array with three addresses: "Addresses": ["192.0.2.44/32", "192.0.2.0/24",
// "192.0.0.0/16"]
// - INVALID specification: "Addresses": [""] INVALID
//
// This member is required.
Addresses []string
// The version of the IP addresses, either IPV4 or IPV6 .
//
// This member is required.
IPAddressVersion IPAddressVersion
// A unique identifier for the set. This ID is returned in the responses to create
// and list commands. You provide it to operations like update and delete.
//
// This member is required.
Id *string
// The name of the IP set. You cannot change the name of an IPSet after you create
// it.
//
// This member is required.
Name *string
// A description of the IP set that helps with identification.
Description *string
noSmithyDocumentSerde
}
// The configuration for inspecting IP addresses in an HTTP header that you
// specify, instead of using the IP address that's reported by the web request
// origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify
// any header name. If the specified header isn't present in the request, WAF
// doesn't apply the rule to the web request at all. This configuration is used
// only for IPSetReferenceStatement . For GeoMatchStatement and RateBasedStatement
// , use ForwardedIPConfig instead.
type IPSetForwardedIPConfig struct {
// The match status to assign to the web request if the request doesn't have a
// valid IP address in the specified position. If the specified header isn't
// present in the request, WAF doesn't apply the rule to the web request at all.
// You can specify the following fallback behaviors:
// - MATCH - Treat the web request as matching the rule statement. WAF applies
// the rule action to the request.
// - NO_MATCH - Treat the web request as not matching the rule statement.
//
// This member is required.
FallbackBehavior FallbackBehavior
// The name of the HTTP header to use for the IP address. For example, to use the
// X-Forwarded-For (XFF) header, set this to X-Forwarded-For . If the specified
// header isn't present in the request, WAF doesn't apply the rule to the web
// request at all.
//
// This member is required.
HeaderName *string
// The position in the header to search for the IP address. The header can contain
// IP addresses of the original client and also of proxies. For example, the header
// value could be 10.1.1.1, 127.0.0.0, 10.10.10.10 where the first IP address
// identifies the original client and the rest identify proxies that the request
// went through. The options for this setting are the following:
// - FIRST - Inspect the first IP address in the list of IP addresses in the
// header. This is usually the client's original IP.
// - LAST - Inspect the last IP address in the list of IP addresses in the
// header.
// - ANY - Inspect all IP addresses in the header for a match. If the header
// contains more than 10 IP addresses, WAF inspects the last 10.
//
// This member is required.
Position ForwardedIPPosition
noSmithyDocumentSerde
}
// A rule statement used to detect web requests coming from particular IP
// addresses or address ranges. To use this, create an IPSet that specifies the
// addresses you want to detect, then use the ARN of that set in this statement. To
// create an IP set, see CreateIPSet . Each IP set rule statement references an IP
// set. You create and maintain the set independent of your rules. This allows you
// to use the single set in multiple rules. When you update the referenced set, WAF
// automatically updates all rules that reference it.
type IPSetReferenceStatement struct {
// The Amazon Resource Name (ARN) of the IPSet that this statement references.
//
// This member is required.
ARN *string
// The configuration for inspecting IP addresses in an HTTP header that you
// specify, instead of using the IP address that's reported by the web request
// origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify
// any header name. If the specified header isn't present in the request, WAF
// doesn't apply the rule to the web request at all.
IPSetForwardedIPConfig *IPSetForwardedIPConfig
noSmithyDocumentSerde
}
// High-level information about an IPSet , returned by operations like create and
// list. This provides information like the ID, that you can use to retrieve and
// manage an IPSet , and the ARN, that you provide to the IPSetReferenceStatement
// to use the address set in a Rule .
type IPSetSummary struct {
// The Amazon Resource Name (ARN) of the entity.
ARN *string
// A description of the IP set that helps with identification.
Description *string
// A unique identifier for the set. This ID is returned in the responses to create
// and list commands. You provide it to operations like update and delete.
Id *string
// A token used for optimistic locking. WAF returns a token to your get and list
// requests, to mark the state of the entity at the time of the request. To make
// changes to the entity associated with the token, you provide the token to
// operations like update and delete . WAF uses the token to ensure that no changes
// have been made to the entity since you last retrieved it. If a change has been
// made, the update fails with a WAFOptimisticLockException . If this happens,
// perform another get , and use the new token returned by that operation.
LockToken *string
// The name of the IP set. You cannot change the name of an IPSet after you create
// it.
Name *string
noSmithyDocumentSerde
}
// Match against the request's JA3 fingerprint. The JA3 fingerprint is a
// 32-character hash derived from the TLS Client Hello of an incoming request. This
// fingerprint serves as a unique identifier for the client's TLS configuration.
// WAF calculates and logs this fingerprint for each request that has enough TLS
// Client Hello information for the calculation. Almost all web requests include
// this information. You can use this choice only with a string match
// ByteMatchStatement with the PositionalConstraint set to EXACTLY . You can obtain
// the JA3 fingerprint for client requests from the web ACL logs. If WAF is able to
// calculate the fingerprint, it includes it in the logs. For information about the
// logging fields, see Log fields (https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html)
// in the WAF Developer Guide. Provide the JA3 fingerprint string from the logs in
// your string match statement specification, to match with any future requests
// that have the same TLS configuration.
type JA3Fingerprint struct {
// The match status to assign to the web request if the request doesn't have a JA3
// fingerprint. You can specify the following fallback behaviors:
// - MATCH - Treat the web request as matching the rule statement. WAF applies
// the rule action to the request.
// - NO_MATCH - Treat the web request as not matching the rule statement.
//
// This member is required.
FallbackBehavior FallbackBehavior
noSmithyDocumentSerde
}
// Inspect the body of the web request as JSON. The body immediately follows the
// request headers. This is used to indicate the web request component to inspect,
// in the FieldToMatch specification. Use the specifications in this object to
// indicate which parts of the JSON body to inspect using the rule's inspection
// criteria. WAF inspects only the parts of the JSON that result from the matches
// that you indicate. Example JSON: "JsonBody": { "MatchPattern": { "All": {} },
// "MatchScope": "ALL" }
type JsonBody struct {
// The patterns to look for in the JSON body. WAF inspects the results of these
// pattern matches against the rule inspection criteria.
//
// This member is required.
MatchPattern *JsonMatchPattern
// The parts of the JSON to match against using the MatchPattern . If you specify
// ALL , WAF matches against keys and values. All does not require a match to be
// found in the keys and a match to be found in the values. It requires a match to
// be found in the keys or the values or both. To require a match in the keys and
// in the values, use a logical AND statement to combine two match rules, one that
// inspects the keys and another that inspects the values.
//
// This member is required.
MatchScope JsonMatchScope
// What WAF should do if it fails to completely parse the JSON body. The options
// are the following:
// - EVALUATE_AS_STRING - Inspect the body as plain text. WAF applies the text
// transformations and inspection criteria that you defined for the JSON inspection
// to the body text string.
// - MATCH - Treat the web request as matching the rule statement. WAF applies
// the rule action to the request.
// - NO_MATCH - Treat the web request as not matching the rule statement.
// If you don't provide this setting, WAF parses and evaluates the content only up
// to the first parsing failure that it encounters. WAF does its best to parse the
// entire JSON body, but might be forced to stop for reasons such as invalid
// characters, duplicate keys, truncation, and any content whose root node isn't an
// object or an array. WAF parses the JSON in the following examples as two valid
// key, value pairs:
// - Missing comma: {"key1":"value1""key2":"value2"}
// - Missing colon: {"key1":"value1","key2""value2"}
// - Extra colons: {"key1"::"value1","key2""value2"}
InvalidFallbackBehavior BodyParsingFallbackBehavior
// What WAF should do if the body is larger than WAF can inspect. WAF does not
// support inspecting the entire contents of the web request body if the body
// exceeds the limit for the resource type. If the body is larger than the limit,
// the underlying host service only forwards the contents that are below the limit
// to WAF for inspection. The default limit is 8 KB (8,192 bytes) for regional
// resources and 16 KB (16,384 bytes) for CloudFront distributions. For CloudFront
// distributions, you can increase the limit in the web ACL AssociationConfig , for
// additional processing fees. The options for oversize handling are the following:
//
// - CONTINUE - Inspect the available body contents normally, according to the
// rule inspection criteria.
// - MATCH - Treat the web request as matching the rule statement. WAF applies
// the rule action to the request.
// - NO_MATCH - Treat the web request as not matching the rule statement.
// You can combine the MATCH or NO_MATCH settings for oversize handling with your
// rule and web ACL action settings, so that you block any request whose body is
// over the limit. Default: CONTINUE
OversizeHandling OversizeHandling
noSmithyDocumentSerde
}
// The patterns to look for in the JSON body. WAF inspects the results of these
// pattern matches against the rule inspection criteria. This is used with the
// FieldToMatch option JsonBody .
type JsonMatchPattern struct {
// Match all of the elements. See also MatchScope in JsonBody . You must specify
// either this setting or the IncludedPaths setting, but not both.
All *All
// Match only the specified include paths. See also MatchScope in JsonBody .
// Provide the include paths using JSON Pointer syntax. For example,
// "IncludedPaths": ["/dogs/0/name", "/dogs/1/name"] . For information about this
// syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript
// Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901) . You must
// specify either this setting or the All setting, but not both. Don't use this
// option to include all paths. Instead, use the All setting.
IncludedPaths []string
noSmithyDocumentSerde
}
// A single label container. This is used as an element of a label array in
// multiple contexts, for example, in RuleLabels inside a Rule and in Labels
// inside a SampledHTTPRequest .
type Label struct {
// The label string.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// A rule statement to match against labels that have been added to the web
// request by rules that have already run in the web ACL. The label match statement
// provides the label or namespace string to search for. The label string can
// represent a part or all of the fully qualified label name that had been added to
// the web request. Fully qualified labels have a prefix, optional namespaces, and
// label name. The prefix identifies the rule group or web ACL context of the rule
// that added the label. If you do not provide the fully qualified name in your
// label match string, WAF performs the search for labels that were added in the
// same context as the label match statement.
type LabelMatchStatement struct {
// The string to match against. The setting you provide for this depends on the
// match statement's Scope setting:
// - If the Scope indicates LABEL , then this specification must include the name
// and can include any number of preceding namespace specifications and prefix up
// to providing the fully qualified label name.
// - If the Scope indicates NAMESPACE , then this specification can include any
// number of contiguous namespace strings, and can include the entire label
// namespace prefix from the rule group or web ACL where the label originates.
// Labels are case sensitive and components of a label must be separated by colon,
// for example NS1:NS2:name .
//
// This member is required.
Key *string
// Specify whether you want to match using the label name or just the namespace.
//
// This member is required.
Scope LabelMatchScope
noSmithyDocumentSerde
}
// A single label name condition for a Condition in a logging filter.
type LabelNameCondition struct {
// The label name that a log record must contain in order to meet the condition.
// This must be a fully qualified label name. Fully qualified labels have a prefix,
// optional namespaces, and label name. The prefix identifies the rule group or web
// ACL context of the rule that added the label.
//
// This member is required.
LabelName *string
noSmithyDocumentSerde
}
// List of labels used by one or more of the rules of a RuleGroup . This summary
// object is used for the following rule group lists:
// - AvailableLabels - Labels that rules add to matching requests. These labels
// are defined in the RuleLabels for a Rule .
// - ConsumedLabels - Labels that rules match against. These labels are defined
// in a LabelMatchStatement specification, in the Statement definition of a rule.
type LabelSummary struct {
// An individual label specification.
Name *string
noSmithyDocumentSerde
}
// Defines an association between logging destinations and a web ACL resource, for
// logging from WAF. As part of the association, you can specify parts of the
// standard logging fields to keep out of the logs and you can specify filters so
// that you log only a subset of the logging records. You can define one logging
// destination per web ACL. You can access information about the traffic that WAF
// inspects using the following steps:
// - Create your logging destination. You can use an Amazon CloudWatch Logs log
// group, an Amazon Simple Storage Service (Amazon S3) bucket, or an Amazon Kinesis
// Data Firehose. The name that you give the destination must start with
// aws-waf-logs- . Depending on the type of destination, you might need to
// configure additional settings or permissions. For configuration requirements and
// pricing information for each destination type, see Logging web ACL traffic (https://docs.aws.amazon.com/waf/latest/developerguide/logging.html)
// in the WAF Developer Guide.
// - Associate your logging destination to your web ACL using a
// PutLoggingConfiguration request.
//
// When you successfully enable logging using a PutLoggingConfiguration request,
// WAF creates an additional role or policy that is required to write logs to the
// logging destination. For an Amazon CloudWatch Logs log group, WAF creates a
// resource policy on the log group. For an Amazon S3 bucket, WAF creates a bucket
// policy. For an Amazon Kinesis Data Firehose, WAF creates a service-linked role.
// For additional information about web ACL logging, see Logging web ACL traffic
// information (https://docs.aws.amazon.com/waf/latest/developerguide/logging.html)
// in the WAF Developer Guide.
type LoggingConfiguration struct {
// The logging destination configuration that you want to associate with the web
// ACL. You can associate one logging destination to a web ACL.
//
// This member is required.
LogDestinationConfigs []string
// The Amazon Resource Name (ARN) of the web ACL that you want to associate with
// LogDestinationConfigs .
//
// This member is required.
ResourceArn *string
// Filtering that specifies which web requests are kept in the logs and which are
// dropped. You can filter on the rule action and on the web request labels that
// were applied by matching rules during web ACL evaluation.
LoggingFilter *LoggingFilter
// Indicates whether the logging configuration was created by Firewall Manager, as
// part of an WAF policy configuration. If true, only Firewall Manager can modify
// or delete the configuration.
ManagedByFirewallManager bool
// The parts of the request that you want to keep out of the logs. For example, if
// you redact the SingleHeader field, the HEADER field in the logs will be REDACTED
// for all rules that use the SingleHeader FieldToMatch setting. Redaction applies
// only to the component that's specified in the rule's FieldToMatch setting, so
// the SingleHeader redaction doesn't apply to rules that use the Headers
// FieldToMatch . You can specify only the following fields for redaction: UriPath
// , QueryString , SingleHeader , and Method .
RedactedFields []FieldToMatch
noSmithyDocumentSerde
}
// Filtering that specifies which web requests are kept in the logs and which are
// dropped, defined for a web ACL's LoggingConfiguration . You can filter on the
// rule action and on the web request labels that were applied by matching rules
// during web ACL evaluation.
type LoggingFilter struct {
// Default handling for logs that don't match any of the specified filtering
// conditions.
//
// This member is required.
DefaultBehavior FilterBehavior
// The filters that you want to apply to the logs.
//
// This member is required.
Filters []Filter
noSmithyDocumentSerde
}
// The properties of a managed product, such as an Amazon Web Services Managed
// Rules rule group or an Amazon Web Services Marketplace managed rule group.
type ManagedProductDescriptor struct {
// Indicates whether the rule group provides an advanced set of protections, such
// as the the Amazon Web Services Managed Rules rule groups that are used for WAF
// intelligent threat mitigation.
IsAdvancedManagedRuleSet bool
// Indicates whether the rule group is versioned.
IsVersioningSupported bool
// The name of the managed rule group. For example, AWSManagedRulesAnonymousIpList
// or AWSManagedRulesATPRuleSet .
ManagedRuleSetName *string
// A short description of the managed rule group.
ProductDescription *string
// A unique identifier for the rule group. This ID is returned in the responses to
// create and list commands. You provide it to operations like update and delete.
ProductId *string
// For Amazon Web Services Marketplace managed rule groups only, the link to the
// rule group product page.
ProductLink *string
// The display name for the managed rule group. For example, Anonymous IP list or
// Account takeover prevention .
ProductTitle *string
// The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS
// topic that's used to provide notification of changes to the managed rule group.
// You can subscribe to the SNS topic to receive notifications when the managed
// rule group is modified, such as for new versions and for version expiration. For
// more information, see the Amazon Simple Notification Service Developer Guide (https://docs.aws.amazon.com/sns/latest/dg/welcome.html)
// .
SnsTopicArn *string
// The name of the managed rule group vendor. You use this, along with the rule
// group name, to identify a rule group.
VendorName *string
noSmithyDocumentSerde
}
// Additional information that's used by a managed rule group. Many managed rule
// groups don't require this. The rule groups used for intelligent threat
// mitigation require additional configuration:
// - Use the AWSManagedRulesACFPRuleSet configuration object to configure the
// account creation fraud prevention managed rule group. The configuration includes
// the registration and sign-up pages of your application and the locations in the
// account creation request payload of data, such as the user email and phone
// number fields.
// - Use the AWSManagedRulesATPRuleSet configuration object to configure the
// account takeover prevention managed rule group. The configuration includes the
// sign-in page of your application and the locations in the login request payload
// of data such as the username and password.
// - Use the AWSManagedRulesBotControlRuleSet configuration object to configure
// the protection level that you want the Bot Control rule group to use.
//
// For example specifications, see the examples section of CreateWebACL .
type ManagedRuleGroupConfig struct {
// Additional configuration for using the account creation fraud prevention (ACFP)
// managed rule group, AWSManagedRulesACFPRuleSet . Use this to provide account
// creation request information to the rule group. For web ACLs that protect
// CloudFront distributions, use this to also provide the information about how
// your distribution responds to account creation requests. For information about
// using the ACFP managed rule group, see WAF Fraud Control account creation fraud
// prevention (ACFP) rule group (https://docs.aws.amazon.com/waf/latest/developerguide/aws-managed-rule-groups-acfp.html)
// and WAF Fraud Control account creation fraud prevention (ACFP) (https://docs.aws.amazon.com/waf/latest/developerguide/waf-acfp.html)
// in the WAF Developer Guide.
AWSManagedRulesACFPRuleSet *AWSManagedRulesACFPRuleSet
// Additional configuration for using the account takeover prevention (ATP)
// managed rule group, AWSManagedRulesATPRuleSet . Use this to provide login
// request information to the rule group. For web ACLs that protect CloudFront
// distributions, use this to also provide the information about how your
// distribution responds to login requests. This configuration replaces the
// individual configuration fields in ManagedRuleGroupConfig and provides
// additional feature configuration. For information about using the ATP managed
// rule group, see WAF Fraud Control account takeover prevention (ATP) rule group (https://docs.aws.amazon.com/waf/latest/developerguide/aws-managed-rule-groups-atp.html)
// and WAF Fraud Control account takeover prevention (ATP) (https://docs.aws.amazon.com/waf/latest/developerguide/waf-atp.html)
// in the WAF Developer Guide.
AWSManagedRulesATPRuleSet *AWSManagedRulesATPRuleSet
// Additional configuration for using the Bot Control managed rule group. Use this
// to specify the inspection level that you want to use. For information about
// using the Bot Control managed rule group, see WAF Bot Control rule group (https://docs.aws.amazon.com/waf/latest/developerguide/aws-managed-rule-groups-bot.html)
// and WAF Bot Control (https://docs.aws.amazon.com/waf/latest/developerguide/waf-bot-control.html)
// in the WAF Developer Guide.
AWSManagedRulesBotControlRuleSet *AWSManagedRulesBotControlRuleSet
// Instead of this setting, provide your configuration under
// AWSManagedRulesATPRuleSet .
//
// Deprecated: Deprecated. Use AWSManagedRulesATPRuleSet LoginPath
LoginPath *string
// Instead of this setting, provide your configuration under the request
// inspection configuration for AWSManagedRulesATPRuleSet or
// AWSManagedRulesACFPRuleSet .
//
// Deprecated: Deprecated. Use AWSManagedRulesATPRuleSet RequestInspection
// PasswordField
PasswordField *PasswordField
// Instead of this setting, provide your configuration under the request
// inspection configuration for AWSManagedRulesATPRuleSet or
// AWSManagedRulesACFPRuleSet .
//
// Deprecated: Deprecated. Use AWSManagedRulesATPRuleSet RequestInspection
// PayloadType
PayloadType PayloadType
// Instead of this setting, provide your configuration under the request
// inspection configuration for AWSManagedRulesATPRuleSet or
// AWSManagedRulesACFPRuleSet .
//
// Deprecated: Deprecated. Use AWSManagedRulesATPRuleSet RequestInspection
// UsernameField
UsernameField *UsernameField
noSmithyDocumentSerde
}
// A rule statement used to run the rules that are defined in a managed rule
// group. To use this, provide the vendor name and the name of the rule group in
// this statement. You can retrieve the required names by calling
// ListAvailableManagedRuleGroups . You cannot nest a ManagedRuleGroupStatement ,
// for example for use inside a NotStatement or OrStatement . You cannot use a
// managed rule group inside another rule group. You can only reference a managed
// rule group as a top-level statement within a rule that you define in a web ACL.
// You are charged additional fees when you use the WAF Bot Control managed rule
// group AWSManagedRulesBotControlRuleSet , the WAF Fraud Control account takeover
// prevention (ATP) managed rule group AWSManagedRulesATPRuleSet , or the WAF Fraud
// Control account creation fraud prevention (ACFP) managed rule group
// AWSManagedRulesACFPRuleSet . For more information, see WAF Pricing (http://aws.amazon.com/waf/pricing/)
// .
type ManagedRuleGroupStatement struct {
// The name of the managed rule group. You use this, along with the vendor name,
// to identify the rule group.
//
// This member is required.
Name *string
// The name of the managed rule group vendor. You use this, along with the rule
// group name, to identify a rule group.
//
// This member is required.
VendorName *string
// Rules in the referenced rule group whose actions are set to Count . Instead of
// this option, use RuleActionOverrides . It accepts any valid action setting,
// including Count .
ExcludedRules []ExcludedRule
// Additional information that's used by a managed rule group. Many managed rule
// groups don't require this. The rule groups used for intelligent threat
// mitigation require additional configuration:
// - Use the AWSManagedRulesACFPRuleSet configuration object to configure the
// account creation fraud prevention managed rule group. The configuration includes
// the registration and sign-up pages of your application and the locations in the
// account creation request payload of data, such as the user email and phone
// number fields.
// - Use the AWSManagedRulesATPRuleSet configuration object to configure the
// account takeover prevention managed rule group. The configuration includes the
// sign-in page of your application and the locations in the login request payload
// of data such as the username and password.
// - Use the AWSManagedRulesBotControlRuleSet configuration object to configure
// the protection level that you want the Bot Control rule group to use.
ManagedRuleGroupConfigs []ManagedRuleGroupConfig
// Action settings to use in the place of the rule actions that are configured
// inside the rule group. You specify one override for each rule whose action you
// want to change. You can use overrides for testing, for example you can override
// all of rule actions to Count and then monitor the resulting count metrics to
// understand how the rule group would handle your web traffic. You can also
// permanently override some or all actions, to modify how the rule group manages
// your web traffic.
RuleActionOverrides []RuleActionOverride
// An optional nested statement that narrows the scope of the web requests that
// are evaluated by the managed rule group. Requests are only evaluated by the rule
// group if they match the scope-down statement. You can use any nestable Statement
// in the scope-down statement, and you can nest statements at any level, the same
// as you can for a rule statement.
ScopeDownStatement *Statement
// The version of the managed rule group to use. If you specify this, the version
// setting is fixed until you change it. If you don't specify this, WAF uses the
// vendor's default version, and then keeps the version at the vendor's default
// when the vendor updates the managed rule group settings.
Version *string
noSmithyDocumentSerde
}
// High-level information about a managed rule group, returned by
// ListAvailableManagedRuleGroups . This provides information like the name and
// vendor name, that you provide when you add a ManagedRuleGroupStatement to a web
// ACL. Managed rule groups include Amazon Web Services Managed Rules rule groups
// and Amazon Web Services Marketplace managed rule groups. To use any Amazon Web
// Services Marketplace managed rule group, first subscribe to the rule group
// through Amazon Web Services Marketplace.
type ManagedRuleGroupSummary struct {
// The description of the managed rule group, provided by Amazon Web Services
// Managed Rules or the Amazon Web Services Marketplace seller who manages it.
Description *string
// The name of the managed rule group. You use this, along with the vendor name,
// to identify the rule group.
Name *string
// The name of the managed rule group vendor. You use this, along with the rule
// group name, to identify a rule group.
VendorName *string
// Indicates whether the managed rule group is versioned. If it is, you can
// retrieve the versions list by calling ListAvailableManagedRuleGroupVersions .
VersioningSupported bool
noSmithyDocumentSerde
}
// Describes a single version of a managed rule group.
type ManagedRuleGroupVersion struct {
// The date and time that the managed rule group owner updated the rule group
// version information.
LastUpdateTimestamp *time.Time
// The version name.
Name *string
noSmithyDocumentSerde
}
// A set of rules that is managed by Amazon Web Services and Amazon Web Services
// Marketplace sellers to provide versioned managed rule groups for customers of
// WAF. This is intended for use only by vendors of managed rule sets. Vendors are
// Amazon Web Services and Amazon Web Services Marketplace sellers. Vendors, you
// can use the managed rule set APIs to provide controlled rollout of your
// versioned managed rule group offerings for your customers. The APIs are
// ListManagedRuleSets , GetManagedRuleSet , PutManagedRuleSetVersions , and
// UpdateManagedRuleSetVersionExpiryDate .
type ManagedRuleSet struct {
// The Amazon Resource Name (ARN) of the entity.
//
// This member is required.
ARN *string
// A unique identifier for the managed rule set. The ID is returned in the
// responses to commands like list . You provide it to operations like get and
// update .
//
// This member is required.
Id *string
// The name of the managed rule set. You use this, along with the rule set ID, to
// identify the rule set. This name is assigned to the corresponding managed rule
// group, which your customers can access and use.
//
// This member is required.
Name *string
// A description of the set that helps with identification.
Description *string
// The label namespace prefix for the managed rule groups that are offered to
// customers from this managed rule set. All labels that are added by rules in the
// managed rule group have this prefix.
// - The syntax for the label namespace prefix for a managed rule group is the
// following: awswaf:managed:: :
// - When a rule with a label matches a web request, WAF adds the fully
// qualified label to the request. A fully qualified label is made up of the label
// namespace from the rule group or web ACL where the rule is defined and the label
// from the rule, separated by a colon: :
LabelNamespace *string
// The versions of this managed rule set that are available for use by customers.
PublishedVersions map[string]ManagedRuleSetVersion
// The version that you would like your customers to use.
RecommendedVersion *string
noSmithyDocumentSerde
}
// High-level information for a managed rule set. This is intended for use only by
// vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web
// Services Marketplace sellers. Vendors, you can use the managed rule set APIs to
// provide controlled rollout of your versioned managed rule group offerings for
// your customers. The APIs are ListManagedRuleSets , GetManagedRuleSet ,
// PutManagedRuleSetVersions , and UpdateManagedRuleSetVersionExpiryDate .
type ManagedRuleSetSummary struct {
// The Amazon Resource Name (ARN) of the entity.
ARN *string
// A description of the set that helps with identification.
Description *string
// A unique identifier for the managed rule set. The ID is returned in the
// responses to commands like list . You provide it to operations like get and
// update .
Id *string
// The label namespace prefix for the managed rule groups that are offered to
// customers from this managed rule set. All labels that are added by rules in the
// managed rule group have this prefix.
// - The syntax for the label namespace prefix for a managed rule group is the
// following: awswaf:managed:: :
// - When a rule with a label matches a web request, WAF adds the fully
// qualified label to the request. A fully qualified label is made up of the label
// namespace from the rule group or web ACL where the rule is defined and the label
// from the rule, separated by a colon: :
LabelNamespace *string
// A token used for optimistic locking. WAF returns a token to your get and list
// requests, to mark the state of the entity at the time of the request. To make
// changes to the entity associated with the token, you provide the token to
// operations like update and delete . WAF uses the token to ensure that no changes
// have been made to the entity since you last retrieved it. If a change has been
// made, the update fails with a WAFOptimisticLockException . If this happens,
// perform another get , and use the new token returned by that operation.
LockToken *string
// The name of the managed rule set. You use this, along with the rule set ID, to
// identify the rule set. This name is assigned to the corresponding managed rule
// group, which your customers can access and use.
Name *string
noSmithyDocumentSerde
}
// Information for a single version of a managed rule set. This is intended for
// use only by vendors of managed rule sets. Vendors are Amazon Web Services and
// Amazon Web Services Marketplace sellers. Vendors, you can use the managed rule
// set APIs to provide controlled rollout of your versioned managed rule group
// offerings for your customers. The APIs are ListManagedRuleSets ,
// GetManagedRuleSet , PutManagedRuleSetVersions , and
// UpdateManagedRuleSetVersionExpiryDate .
type ManagedRuleSetVersion struct {
// The Amazon Resource Name (ARN) of the vendor rule group that's used to define
// the published version of your managed rule group.
AssociatedRuleGroupArn *string
// The web ACL capacity units (WCUs) required for this rule group. WAF uses WCUs
// to calculate and control the operating resources that are used to run your
// rules, rule groups, and web ACLs. WAF calculates capacity differently for each
// rule type, to reflect the relative cost of each rule. Simple rules that cost
// little to run use fewer WCUs than more complex rules that use more processing
// power. Rule group capacity is fixed at creation, which helps users plan their
// web ACL WCU usage when they use a rule group. For more information, see WAF web
// ACL capacity units (WCU) (https://docs.aws.amazon.com/waf/latest/developerguide/aws-waf-capacity-units.html)
// in the WAF Developer Guide.
Capacity *int64
// The time that this version is set to expire. Times are in Coordinated Universal
// Time (UTC) format. UTC format includes the special designator, Z. For example,
// "2016-09-27T14:50Z".
ExpiryTimestamp *time.Time
// The amount of time you expect this version of your managed rule group to last,
// in days.
ForecastedLifetime *int32
// The last time that you updated this version. Times are in Coordinated Universal
// Time (UTC) format. UTC format includes the special designator, Z. For example,
// "2016-09-27T14:50Z".
LastUpdateTimestamp *time.Time
// The time that you first published this version. Times are in Coordinated
// Universal Time (UTC) format. UTC format includes the special designator, Z. For
// example, "2016-09-27T14:50Z".
PublishTimestamp *time.Time
noSmithyDocumentSerde
}
// Inspect the HTTP method of the web request. The method indicates the type of
// operation that the request is asking the origin to perform. This is used in the
// FieldToMatch specification for some web request component types. JSON
// specification: "Method": {}
type Method struct {
noSmithyDocumentSerde
}
// Information for a release of the mobile SDK, including release notes and tags.
// The mobile SDK is not generally available. Customers who have access to the
// mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S)
// requests from a mobile device to WAF. For more information, see WAF client
// application integration (https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html)
// in the WAF Developer Guide.
type MobileSdkRelease struct {
// Notes describing the release.
ReleaseNotes *string
// The release version.
ReleaseVersion *string
// Tags that are associated with the release.
Tags []Tag
// The timestamp of the release.
Timestamp *time.Time
noSmithyDocumentSerde
}
// Specifies that WAF should do nothing. This is used for the OverrideAction
// setting on a Rule when the rule uses a rule group reference statement. This is
// used in the context of other settings, for example to specify values for
// RuleAction and web ACL DefaultAction . JSON specification: "None": {}
type NoneAction struct {
noSmithyDocumentSerde
}
// A logical rule statement used to negate the results of another rule statement.
// You provide one Statement within the NotStatement .
type NotStatement struct {
// The statement to negate. You can use any statement that can be nested.
//
// This member is required.
Statement *Statement
noSmithyDocumentSerde
}
// A logical rule statement used to combine other rule statements with OR logic.
// You provide more than one Statement within the OrStatement .
type OrStatement struct {
// The statements to combine with OR logic. You can use any statements that can be
// nested.
//
// This member is required.
Statements []Statement
noSmithyDocumentSerde
}
// The action to use in the place of the action that results from the rule group
// evaluation. Set the override action to none to leave the result of the rule
// group alone. Set it to count to override the result to count only. You can only
// use this for rule statements that reference a rule group, like
// RuleGroupReferenceStatement and ManagedRuleGroupStatement . This option is
// usually set to none. It does not affect how the rules in the rule group are
// evaluated. If you want the rules in the rule group to only count matches, do not
// use this and instead use the rule action override option, with Count action, in
// your rule group reference statement settings.
type OverrideAction struct {
// Override the rule group evaluation result to count only. This option is usually
// set to none. It does not affect how the rules in the rule group are evaluated.
// If you want the rules in the rule group to only count matches, do not use this
// and instead use the rule action override option, with Count action, in your
// rule group reference statement settings.
Count *CountAction
// Don't override the rule group evaluation result. This is the most common
// setting.
None *NoneAction
noSmithyDocumentSerde
}
// The name of the field in the request payload that contains your customer's
// password. This data type is used in the RequestInspection and
// RequestInspectionACFP data types.
type PasswordField struct {
// The name of the password field. How you specify this depends on the request
// inspection payload type.
// - For JSON payloads, specify the field name in JSON pointer syntax. For
// information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }
// , the password field specification is /form/password .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with the input element named password1 , the password field
// specification is password1 .
//
// This member is required.
Identifier *string
noSmithyDocumentSerde
}
// The name of a field in the request payload that contains part or all of your
// customer's primary phone number. This data type is used in the
// RequestInspectionACFP data type.
type PhoneNumberField struct {
// The name of a single primary phone number field. How you specify the phone
// number fields depends on the request inspection payload type.
// - For JSON payloads, specify the field identifiers in JSON pointer syntax.
// For information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "primaryphoneline1":
// "THE_PHONE1", "primaryphoneline2": "THE_PHONE2", "primaryphoneline3":
// "THE_PHONE3" } } , the phone number field identifiers are
// /form/primaryphoneline1 , /form/primaryphoneline2 , and
// /form/primaryphoneline3 .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with input elements named primaryphoneline1 , primaryphoneline2 ,
// and primaryphoneline3 , the phone number field identifiers are
// primaryphoneline1 , primaryphoneline2 , and primaryphoneline3 .
//
// This member is required.
Identifier *string
noSmithyDocumentSerde
}
// Inspect the query string of the web request. This is the part of a URL that
// appears after a ? character, if any. This is used in the FieldToMatch
// specification for some web request component types. JSON specification:
// "QueryString": {}
type QueryString struct {
noSmithyDocumentSerde
}
// A rate-based rule counts incoming requests and rate limits requests when they
// are coming at too fast a rate. The rule categorizes requests according to your
// aggregation criteria, collects them into aggregation instances, and counts and
// rate limits the requests for each instance. You can specify individual
// aggregation keys, like IP address or HTTP method. You can also specify
// aggregation key combinations, like IP address and HTTP method, or HTTP method,
// query argument, and cookie. Each unique set of values for the aggregation keys
// that you specify is a separate aggregation instance, with the value from each
// key contributing to the aggregation instance definition. For example, assume the
// rule evaluates web requests with the following IP address and HTTP method
// values:
// - IP address 10.1.1.1, HTTP method POST
// - IP address 10.1.1.1, HTTP method GET
// - IP address 127.0.0.0, HTTP method POST
// - IP address 10.1.1.1, HTTP method GET
//
// The rule would create different aggregation instances according to your
// aggregation criteria, for example:
// - If the aggregation criteria is just the IP address, then each individual
// address is an aggregation instance, and WAF counts requests separately for each.
// The aggregation instances and request counts for our example would be the
// following:
// - IP address 10.1.1.1: count 3
// - IP address 127.0.0.0: count 1
// - If the aggregation criteria is HTTP method, then each individual HTTP
// method is an aggregation instance. The aggregation instances and request counts
// for our example would be the following:
// - HTTP method POST: count 2
// - HTTP method GET: count 2
// - If the aggregation criteria is IP address and HTTP method, then each IP
// address and each HTTP method would contribute to the combined aggregation
// instance. The aggregation instances and request counts for our example would be
// the following:
// - IP address 10.1.1.1, HTTP method POST: count 1
// - IP address 10.1.1.1, HTTP method GET: count 2
// - IP address 127.0.0.0, HTTP method POST: count 1
//
// For any n-tuple of aggregation keys, each unique combination of values for the
// keys defines a separate aggregation instance, which WAF counts and rate-limits
// individually. You can optionally nest another statement inside the rate-based
// statement, to narrow the scope of the rule so that it only counts and rate
// limits requests that match the nested statement. You can use this nested
// scope-down statement in conjunction with your aggregation key specifications or
// you can just count and rate limit all requests that match the scope-down
// statement, without additional aggregation. When you choose to just manage all
// requests that match a scope-down statement, the aggregation instance is singular
// for the rule. You cannot nest a RateBasedStatement inside another statement,
// for example inside a NotStatement or OrStatement . You can define a
// RateBasedStatement inside a web ACL and inside a rule group. For additional
// information about the options, see Rate limiting web requests using rate-based
// rules (https://docs.aws.amazon.com/waf/latest/developerguide/waf-rate-based-rules.html)
// in the WAF Developer Guide. If you only aggregate on the individual IP address
// or forwarded IP address, you can retrieve the list of IP addresses that WAF is
// currently rate limiting for a rule through the API call
// GetRateBasedStatementManagedKeys . This option is not available for other
// aggregation configurations. WAF tracks and manages web requests separately for
// each instance of a rate-based rule that you use. For example, if you provide the
// same rate-based rule settings in two web ACLs, each of the two rule statements
// represents a separate instance of the rate-based rule and gets its own tracking
// and management by WAF. If you define a rate-based rule inside a rule group, and
// then use that rule group in multiple places, each use creates a separate
// instance of the rate-based rule that gets its own tracking and management by
// WAF.
type RateBasedStatement struct {
// Setting that indicates how to aggregate the request counts. Web requests that
// are missing any of the components specified in the aggregation keys are omitted
// from the rate-based rule evaluation and handling.
// - CONSTANT - Count and limit the requests that match the rate-based rule's
// scope-down statement. With this option, the counted requests aren't further
// aggregated. The scope-down statement is the only specification used. When the
// count of all requests that satisfy the scope-down statement goes over the limit,
// WAF applies the rule action to all requests that satisfy the scope-down
// statement. With this option, you must configure the ScopeDownStatement
// property.
// - CUSTOM_KEYS - Aggregate the request counts using one or more web request
// components as the aggregate keys. With this option, you must specify the
// aggregate keys in the CustomKeys property. To aggregate on only the IP address
// or only the forwarded IP address, don't use custom keys. Instead, set the
// aggregate key type to IP or FORWARDED_IP .
// - FORWARDED_IP - Aggregate the request counts on the first IP address in an
// HTTP header. With this option, you must specify the header to use in the
// ForwardedIPConfig property. To aggregate on a combination of the forwarded IP
// address with other aggregate keys, use CUSTOM_KEYS .
// - IP - Aggregate the request counts on the IP address from the web request
// origin. To aggregate on a combination of the IP address with other aggregate
// keys, use CUSTOM_KEYS .
//
// This member is required.
AggregateKeyType RateBasedStatementAggregateKeyType
// The limit on requests per 5-minute period for a single aggregation instance for
// the rate-based rule. If the rate-based statement includes a ScopeDownStatement ,
// this limit is applied only to the requests that match the statement. Examples:
// - If you aggregate on just the IP address, this is the limit on requests from
// any single IP address.
// - If you aggregate on the HTTP method and the query argument name "city",
// then this is the limit on requests for any single method, city pair.
//
// This member is required.
Limit *int64
// Specifies the aggregate keys to use in a rate-base rule.
CustomKeys []RateBasedStatementCustomKey
// The configuration for inspecting IP addresses in an HTTP header that you
// specify, instead of using the IP address that's reported by the web request
// origin. Commonly, this is the X-Forwarded-For (XFF) header, but you can specify
// any header name. If the specified header isn't present in the request, WAF
// doesn't apply the rule to the web request at all. This is required if you
// specify a forwarded IP in the rule's aggregate key settings.
ForwardedIPConfig *ForwardedIPConfig
// An optional nested statement that narrows the scope of the web requests that
// are evaluated and managed by the rate-based statement. When you use a scope-down
// statement, the rate-based rule only tracks and rate limits requests that match
// the scope-down statement. You can use any nestable Statement in the scope-down
// statement, and you can nest statements at any level, the same as you can for a
// rule statement.
ScopeDownStatement *Statement
noSmithyDocumentSerde
}
// Specifies a single custom aggregate key for a rate-base rule. Web requests that
// are missing any of the components specified in the aggregation keys are omitted
// from the rate-based rule evaluation and handling.
type RateBasedStatementCustomKey struct {
// Use the value of a cookie in the request as an aggregate key. Each distinct
// value in the cookie contributes to the aggregation instance. If you use a single
// cookie as your custom key, then each value fully defines an aggregation
// instance.
Cookie *RateLimitCookie
// Use the first IP address in an HTTP header as an aggregate key. Each distinct
// forwarded IP address contributes to the aggregation instance. When you specify
// an IP or forwarded IP in the custom key settings, you must also specify at least
// one other key to use. You can aggregate on only the forwarded IP address by
// specifying FORWARDED_IP in your rate-based statement's AggregateKeyType . With
// this option, you must specify the header to use in the rate-based rule's
// ForwardedIPConfig property.
ForwardedIP *RateLimitForwardedIP
// Use the request's HTTP method as an aggregate key. Each distinct HTTP method
// contributes to the aggregation instance. If you use just the HTTP method as your
// custom key, then each method fully defines an aggregation instance.
HTTPMethod *RateLimitHTTPMethod
// Use the value of a header in the request as an aggregate key. Each distinct
// value in the header contributes to the aggregation instance. If you use a single
// header as your custom key, then each value fully defines an aggregation
// instance.
Header *RateLimitHeader
// Use the request's originating IP address as an aggregate key. Each distinct IP
// address contributes to the aggregation instance. When you specify an IP or
// forwarded IP in the custom key settings, you must also specify at least one
// other key to use. You can aggregate on only the IP address by specifying IP in
// your rate-based statement's AggregateKeyType .
IP *RateLimitIP
// Use the specified label namespace as an aggregate key. Each distinct fully
// qualified label name that has the specified label namespace contributes to the
// aggregation instance. If you use just one label namespace as your custom key,
// then each label name fully defines an aggregation instance. This uses only
// labels that have been added to the request by rules that are evaluated before
// this rate-based rule in the web ACL. For information about label namespaces and
// names, see Label syntax and naming requirements (https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-label-requirements.html)
// in the WAF Developer Guide.
LabelNamespace *RateLimitLabelNamespace
// Use the specified query argument as an aggregate key. Each distinct value for
// the named query argument contributes to the aggregation instance. If you use a
// single query argument as your custom key, then each value fully defines an
// aggregation instance.
QueryArgument *RateLimitQueryArgument
// Use the request's query string as an aggregate key. Each distinct string
// contributes to the aggregation instance. If you use just the query string as
// your custom key, then each string fully defines an aggregation instance.
QueryString *RateLimitQueryString
// Use the request's URI path as an aggregate key. Each distinct URI path
// contributes to the aggregation instance. If you use just the URI path as your
// custom key, then each URI path fully defines an aggregation instance.
UriPath *RateLimitUriPath
noSmithyDocumentSerde
}
// The set of IP addresses that are currently blocked for a RateBasedStatement .
// This is only available for rate-based rules that aggregate on just the IP
// address, with the AggregateKeyType set to IP or FORWARDED_IP . A rate-based rule
// applies its rule action to requests from IP addresses that are in the rule's
// managed keys list and that match the rule's scope-down statement. When a rule
// has no scope-down statement, it applies the action to all requests from the IP
// addresses that are in the list. The rule applies its rule action to rate limit
// the matching requests. The action is usually Block but it can be any valid rule
// action except for Allow. The maximum number of IP addresses that can be rate
// limited by a single rate-based rule instance is 10,000. If more than 10,000
// addresses exceed the rate limit, WAF limits those with the highest rates.
type RateBasedStatementManagedKeysIPSet struct {
// The IP addresses that are currently blocked.
Addresses []string
// The version of the IP addresses, either IPV4 or IPV6 .
IPAddressVersion IPAddressVersion
noSmithyDocumentSerde
}
// Specifies a cookie as an aggregate key for a rate-based rule. Each distinct
// value in the cookie contributes to the aggregation instance. If you use a single
// cookie as your custom key, then each value fully defines an aggregation
// instance.
type RateLimitCookie struct {
// The name of the cookie to use.
//
// This member is required.
Name *string
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
// Specifies the first IP address in an HTTP header as an aggregate key for a
// rate-based rule. Each distinct forwarded IP address contributes to the
// aggregation instance. This setting is used only in the
// RateBasedStatementCustomKey specification of a rate-based rule statement. When
// you specify an IP or forwarded IP in the custom key settings, you must also
// specify at least one other key to use. You can aggregate on only the forwarded
// IP address by specifying FORWARDED_IP in your rate-based statement's
// AggregateKeyType . This data type supports using the forwarded IP address in the
// web request aggregation for a rate-based rule, in RateBasedStatementCustomKey .
// The JSON specification for using the forwarded IP address doesn't explicitly use
// this data type. JSON specification: "ForwardedIP": {} When you use this
// specification, you must also configure the forwarded IP address in the
// rate-based statement's ForwardedIPConfig .
type RateLimitForwardedIP struct {
noSmithyDocumentSerde
}
// Specifies a header as an aggregate key for a rate-based rule. Each distinct
// value in the header contributes to the aggregation instance. If you use a single
// header as your custom key, then each value fully defines an aggregation
// instance.
type RateLimitHeader struct {
// The name of the header to use.
//
// This member is required.
Name *string
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
// Specifies the request's HTTP method as an aggregate key for a rate-based rule.
// Each distinct HTTP method contributes to the aggregation instance. If you use
// just the HTTP method as your custom key, then each method fully defines an
// aggregation instance. JSON specification: "RateLimitHTTPMethod": {}
type RateLimitHTTPMethod struct {
noSmithyDocumentSerde
}
// Specifies the IP address in the web request as an aggregate key for a
// rate-based rule. Each distinct IP address contributes to the aggregation
// instance. This setting is used only in the RateBasedStatementCustomKey
// specification of a rate-based rule statement. To use this in the custom key
// settings, you must specify at least one other key to use, along with the IP
// address. To aggregate on only the IP address, in your rate-based statement's
// AggregateKeyType , specify IP . JSON specification: "RateLimitIP": {}
type RateLimitIP struct {
noSmithyDocumentSerde
}
// Specifies a label namespace to use as an aggregate key for a rate-based rule.
// Each distinct fully qualified label name that has the specified label namespace
// contributes to the aggregation instance. If you use just one label namespace as
// your custom key, then each label name fully defines an aggregation instance.
// This uses only labels that have been added to the request by rules that are
// evaluated before this rate-based rule in the web ACL. For information about
// label namespaces and names, see Label syntax and naming requirements (https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-label-requirements.html)
// in the WAF Developer Guide.
type RateLimitLabelNamespace struct {
// The namespace to use for aggregation.
//
// This member is required.
Namespace *string
noSmithyDocumentSerde
}
// Specifies a query argument in the request as an aggregate key for a rate-based
// rule. Each distinct value for the named query argument contributes to the
// aggregation instance. If you use a single query argument as your custom key,
// then each value fully defines an aggregation instance.
type RateLimitQueryArgument struct {
// The name of the query argument to use.
//
// This member is required.
Name *string
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
// Specifies the request's query string as an aggregate key for a rate-based rule.
// Each distinct string contributes to the aggregation instance. If you use just
// the query string as your custom key, then each string fully defines an
// aggregation instance.
type RateLimitQueryString struct {
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
// Specifies the request's URI path as an aggregate key for a rate-based rule.
// Each distinct URI path contributes to the aggregation instance. If you use just
// the URI path as your custom key, then each URI path fully defines an aggregation
// instance.
type RateLimitUriPath struct {
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
// A single regular expression. This is used in a RegexPatternSet .
type Regex struct {
// The string representing the regular expression.
RegexString *string
noSmithyDocumentSerde
}
// A rule statement used to search web request components for a match against a
// single regular expression.
type RegexMatchStatement struct {
// The part of the web request that you want WAF to inspect.
//
// This member is required.
FieldToMatch *FieldToMatch
// The string representing the regular expression.
//
// This member is required.
RegexString *string
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
// Contains one or more regular expressions. WAF assigns an ARN to each
// RegexPatternSet that you create. To use a set in a rule, you provide the ARN to
// the Rule statement RegexPatternSetReferenceStatement .
type RegexPatternSet struct {
// The Amazon Resource Name (ARN) of the entity.
ARN *string
// A description of the set that helps with identification.
Description *string
// A unique identifier for the set. This ID is returned in the responses to create
// and list commands. You provide it to operations like update and delete.
Id *string
// The name of the set. You cannot change the name after you create the set.
Name *string
// The regular expression patterns in the set.
RegularExpressionList []Regex
noSmithyDocumentSerde
}
// A rule statement used to search web request components for matches with regular
// expressions. To use this, create a RegexPatternSet that specifies the
// expressions that you want to detect, then use the ARN of that set in this
// statement. A web request matches the pattern set rule statement if the request
// component matches any of the patterns in the set. To create a regex pattern set,
// see CreateRegexPatternSet . Each regex pattern set rule statement references a
// regex pattern set. You create and maintain the set independent of your rules.
// This allows you to use the single set in multiple rules. When you update the
// referenced set, WAF automatically updates all rules that reference it.
type RegexPatternSetReferenceStatement struct {
// The Amazon Resource Name (ARN) of the RegexPatternSet that this statement
// references.
//
// This member is required.
ARN *string
// The part of the web request that you want WAF to inspect.
//
// This member is required.
FieldToMatch *FieldToMatch
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
// High-level information about a RegexPatternSet , returned by operations like
// create and list. This provides information like the ID, that you can use to
// retrieve and manage a RegexPatternSet , and the ARN, that you provide to the
// RegexPatternSetReferenceStatement to use the pattern set in a Rule .
type RegexPatternSetSummary struct {
// The Amazon Resource Name (ARN) of the entity.
ARN *string
// A description of the set that helps with identification.
Description *string
// A unique identifier for the set. This ID is returned in the responses to create
// and list commands. You provide it to operations like update and delete.
Id *string
// A token used for optimistic locking. WAF returns a token to your get and list
// requests, to mark the state of the entity at the time of the request. To make
// changes to the entity associated with the token, you provide the token to
// operations like update and delete . WAF uses the token to ensure that no changes
// have been made to the entity since you last retrieved it. If a change has been
// made, the update fails with a WAFOptimisticLockException . If this happens,
// perform another get , and use the new token returned by that operation.
LockToken *string
// The name of the data type instance. You cannot change the name after you create
// the instance.
Name *string
noSmithyDocumentSerde
}
// High level information for an SDK release.
type ReleaseSummary struct {
// The release version.
ReleaseVersion *string
// The timestamp of the release.
Timestamp *time.Time
noSmithyDocumentSerde
}
// Customizes the maximum size of the request body that your protected CloudFront
// distributions forward to WAF for inspection. The default size is 16 KB (16,384
// bytes). You are charged additional fees when your protected resources forward
// body sizes that are larger than the default. For more information, see WAF
// Pricing (http://aws.amazon.com/waf/pricing/) . This is used in the
// AssociationConfig of the web ACL.
type RequestBodyAssociatedResourceTypeConfig struct {
// Specifies the maximum size of the web request body component that an associated
// CloudFront distribution should send to WAF for inspection. This applies to
// statements in the web ACL that inspect the body or JSON body. Default: 16 KB
// (16,384 bytes)
//
// This member is required.
DefaultSizeInspectionLimit SizeInspectionLimit
noSmithyDocumentSerde
}
// The criteria for inspecting login requests, used by the ATP rule group to
// validate credentials usage. This is part of the AWSManagedRulesATPRuleSet
// configuration in ManagedRuleGroupConfig . In these settings, you specify how
// your application accepts login attempts by providing the request payload type
// and the names of the fields within the request body where the username and
// password are provided.
type RequestInspection struct {
// The name of the field in the request payload that contains your customer's
// password. How you specify this depends on the request inspection payload type.
// - For JSON payloads, specify the field name in JSON pointer syntax. For
// information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }
// , the password field specification is /form/password .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with the input element named password1 , the password field
// specification is password1 .
//
// This member is required.
PasswordField *PasswordField
// The payload type for your login endpoint, either JSON or form encoded.
//
// This member is required.
PayloadType PayloadType
// The name of the field in the request payload that contains your customer's
// username. How you specify this depends on the request inspection payload type.
// - For JSON payloads, specify the field name in JSON pointer syntax. For
// information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }
// , the username field specification is /form/username .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with the input element named username1 , the username field
// specification is username1
//
// This member is required.
UsernameField *UsernameField
noSmithyDocumentSerde
}
// The criteria for inspecting account creation requests, used by the ACFP rule
// group to validate and track account creation attempts. This is part of the
// AWSManagedRulesACFPRuleSet configuration in ManagedRuleGroupConfig . In these
// settings, you specify how your application accepts account creation attempts by
// providing the request payload type and the names of the fields within the
// request body where the username, password, email, and primary address and phone
// number fields are provided.
type RequestInspectionACFP struct {
// The payload type for your account creation endpoint, either JSON or form
// encoded.
//
// This member is required.
PayloadType PayloadType
// The names of the fields in the request payload that contain your customer's
// primary physical address. Order the address fields in the array exactly as they
// are ordered in the request payload. How you specify the address fields depends
// on the request inspection payload type.
// - For JSON payloads, specify the field identifiers in JSON pointer syntax.
// For information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "primaryaddressline1":
// "THE_ADDRESS1", "primaryaddressline2": "THE_ADDRESS2", "primaryaddressline3":
// "THE_ADDRESS3" } } , the address field idenfiers are /form/primaryaddressline1
// , /form/primaryaddressline2 , and /form/primaryaddressline3 .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with input elements named primaryaddressline1 ,
// primaryaddressline2 , and primaryaddressline3 , the address fields identifiers
// are primaryaddressline1 , primaryaddressline2 , and primaryaddressline3 .
AddressFields []AddressField
// The name of the field in the request payload that contains your customer's
// email. How you specify this depends on the request inspection payload type.
// - For JSON payloads, specify the field name in JSON pointer syntax. For
// information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "email": "THE_EMAIL" } } , the
// email field specification is /form/email .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with the input element named email1 , the email field
// specification is email1 .
EmailField *EmailField
// The name of the field in the request payload that contains your customer's
// password. How you specify this depends on the request inspection payload type.
// - For JSON payloads, specify the field name in JSON pointer syntax. For
// information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "password": "THE_PASSWORD" } }
// , the password field specification is /form/password .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with the input element named password1 , the password field
// specification is password1 .
PasswordField *PasswordField
// The names of the fields in the request payload that contain your customer's
// primary phone number. Order the phone number fields in the array exactly as they
// are ordered in the request payload. How you specify the phone number fields
// depends on the request inspection payload type.
// - For JSON payloads, specify the field identifiers in JSON pointer syntax.
// For information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "primaryphoneline1":
// "THE_PHONE1", "primaryphoneline2": "THE_PHONE2", "primaryphoneline3":
// "THE_PHONE3" } } , the phone number field identifiers are
// /form/primaryphoneline1 , /form/primaryphoneline2 , and
// /form/primaryphoneline3 .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with input elements named primaryphoneline1 , primaryphoneline2 ,
// and primaryphoneline3 , the phone number field identifiers are
// primaryphoneline1 , primaryphoneline2 , and primaryphoneline3 .
PhoneNumberFields []PhoneNumberField
// The name of the field in the request payload that contains your customer's
// username. How you specify this depends on the request inspection payload type.
// - For JSON payloads, specify the field name in JSON pointer syntax. For
// information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }
// , the username field specification is /form/username .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with the input element named username1 , the username field
// specification is username1
UsernameField *UsernameField
noSmithyDocumentSerde
}
// The criteria for inspecting responses to login requests and account creation
// requests, used by the ATP and ACFP rule groups to track login and account
// creation success and failure rates. Response inspection is available only in web
// ACLs that protect Amazon CloudFront distributions. The rule groups evaluates the
// responses that your protected resources send back to client login and account
// creation attempts, keeping count of successful and failed attempts from each IP
// address and client session. Using this information, the rule group labels and
// mitigates requests from client sessions and IP addresses with too much
// suspicious activity in a short amount of time. This is part of the
// AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet configurations in
// ManagedRuleGroupConfig . Enable response inspection by configuring exactly one
// component of the response to inspect, for example, Header or StatusCode . You
// can't configure more than one component for inspection. If you don't configure
// any of the response inspection options, response inspection is disabled.
type ResponseInspection struct {
// Configures inspection of the response body for success and failure indicators.
// WAF can inspect the first 65,536 bytes (64 KB) of the response body.
BodyContains *ResponseInspectionBodyContains
// Configures inspection of the response header for success and failure indicators.
Header *ResponseInspectionHeader
// Configures inspection of the response JSON for success and failure indicators.
// WAF can inspect the first 65,536 bytes (64 KB) of the response JSON.
Json *ResponseInspectionJson
// Configures inspection of the response status code for success and failure
// indicators.
StatusCode *ResponseInspectionStatusCode
noSmithyDocumentSerde
}
// Configures inspection of the response body. WAF can inspect the first 65,536
// bytes (64 KB) of the response body. This is part of the ResponseInspection
// configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet .
// Response inspection is available only in web ACLs that protect Amazon CloudFront
// distributions.
type ResponseInspectionBodyContains struct {
// Strings in the body of the response that indicate a failed login or account
// creation attempt. To be counted as a failure, the string can be anywhere in the
// body and must be an exact match, including case. Each string must be unique
// among the success and failure strings. JSON example: "FailureStrings": [
// "Request failed" ]
//
// This member is required.
FailureStrings []string
// Strings in the body of the response that indicate a successful login or account
// creation attempt. To be counted as a success, the string can be anywhere in the
// body and must be an exact match, including case. Each string must be unique
// among the success and failure strings. JSON examples: "SuccessStrings": [
// "Login successful" ] and "SuccessStrings": [ "Account creation successful",
// "Welcome to our site!" ]
//
// This member is required.
SuccessStrings []string
noSmithyDocumentSerde
}
// Configures inspection of the response header. This is part of the
// ResponseInspection configuration for AWSManagedRulesATPRuleSet and
// AWSManagedRulesACFPRuleSet . Response inspection is available only in web ACLs
// that protect Amazon CloudFront distributions.
type ResponseInspectionHeader struct {
// Values in the response header with the specified name that indicate a failed
// login or account creation attempt. To be counted as a failure, the value must be
// an exact match, including case. Each value must be unique among the success and
// failure values. JSON examples: "FailureValues": [ "LoginFailed", "Failed login"
// ] and "FailureValues": [ "AccountCreationFailed" ]
//
// This member is required.
FailureValues []string
// The name of the header to match against. The name must be an exact match,
// including case. JSON example: "Name": [ "RequestResult" ]
//
// This member is required.
Name *string
// Values in the response header with the specified name that indicate a
// successful login or account creation attempt. To be counted as a success, the
// value must be an exact match, including case. Each value must be unique among
// the success and failure values. JSON examples: "SuccessValues": [
// "LoginPassed", "Successful login" ] and "SuccessValues": [ "AccountCreated",
// "Successful account creation" ]
//
// This member is required.
SuccessValues []string
noSmithyDocumentSerde
}
// Configures inspection of the response JSON. WAF can inspect the first 65,536
// bytes (64 KB) of the response JSON. This is part of the ResponseInspection
// configuration for AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet .
// Response inspection is available only in web ACLs that protect Amazon CloudFront
// distributions.
type ResponseInspectionJson struct {
// Values for the specified identifier in the response JSON that indicate a failed
// login or account creation attempt. To be counted as a failure, the value must be
// an exact match, including case. Each value must be unique among the success and
// failure values. JSON example: "FailureValues": [ "False", "Failed" ]
//
// This member is required.
FailureValues []string
// The identifier for the value to match against in the JSON. The identifier must
// be an exact match, including case. JSON examples: "Identifier": [
// "/login/success" ] and "Identifier": [ "/sign-up/success" ]
//
// This member is required.
Identifier *string
// Values for the specified identifier in the response JSON that indicate a
// successful login or account creation attempt. To be counted as a success, the
// value must be an exact match, including case. Each value must be unique among
// the success and failure values. JSON example: "SuccessValues": [ "True",
// "Succeeded" ]
//
// This member is required.
SuccessValues []string
noSmithyDocumentSerde
}
// Configures inspection of the response status code. This is part of the
// ResponseInspection configuration for AWSManagedRulesATPRuleSet and
// AWSManagedRulesACFPRuleSet . Response inspection is available only in web ACLs
// that protect Amazon CloudFront distributions.
type ResponseInspectionStatusCode struct {
// Status codes in the response that indicate a failed login or account creation
// attempt. To be counted as a failure, the response status code must match one of
// these. Each code must be unique among the success and failure status codes. JSON
// example: "FailureCodes": [ 400, 404 ]
//
// This member is required.
FailureCodes []int32
// Status codes in the response that indicate a successful login or account
// creation attempt. To be counted as a success, the response status code must
// match one of these. Each code must be unique among the success and failure
// status codes. JSON example: "SuccessCodes": [ 200, 201 ]
//
// This member is required.
SuccessCodes []int32
noSmithyDocumentSerde
}
// A single rule, which you can use in a WebACL or RuleGroup to identify web
// requests that you want to manage in some way. Each rule includes one top-level
// Statement that WAF uses to identify matching web requests, and parameters that
// govern how WAF handles them.
type Rule struct {
// The name of the rule. If you change the name of a Rule after you create it and
// you want the rule's metric name to reflect the change, update the metric name in
// the rule's VisibilityConfig settings. WAF doesn't automatically update the
// metric name when you update the rule name.
//
// This member is required.
Name *string
// If you define more than one Rule in a WebACL , WAF evaluates each request
// against the Rules in order based on the value of Priority . WAF processes rules
// with lower priority first. The priorities don't need to be consecutive, but they
// must all be different.
//
// This member is required.
Priority int32
// The WAF processing statement for the rule, for example ByteMatchStatement or
// SizeConstraintStatement .
//
// This member is required.
Statement *Statement
// Defines and enables Amazon CloudWatch metrics and web request sample
// collection. If you change the name of a Rule after you create it and you want
// the rule's metric name to reflect the change, update the metric name as well.
// WAF doesn't automatically update the metric name.
//
// This member is required.
VisibilityConfig *VisibilityConfig
// The action that WAF should take on a web request when it matches the rule
// statement. Settings at the web ACL level can override the rule action setting.
// This is used only for rules whose statements do not reference a rule group. Rule
// statements that reference a rule group include RuleGroupReferenceStatement and
// ManagedRuleGroupStatement . You must specify either this Action setting or the
// rule OverrideAction setting, but not both:
// - If the rule statement does not reference a rule group, use this rule action
// setting and not the rule override action setting.
// - If the rule statement references a rule group, use the override action
// setting and not this action setting.
Action *RuleAction
// Specifies how WAF should handle CAPTCHA evaluations. If you don't specify this,
// WAF uses the CAPTCHA configuration that's defined for the web ACL.
CaptchaConfig *CaptchaConfig
// Specifies how WAF should handle Challenge evaluations. If you don't specify
// this, WAF uses the challenge configuration that's defined for the web ACL.
ChallengeConfig *ChallengeConfig
// The action to use in the place of the action that results from the rule group
// evaluation. Set the override action to none to leave the result of the rule
// group alone. Set it to count to override the result to count only. You can only
// use this for rule statements that reference a rule group, like
// RuleGroupReferenceStatement and ManagedRuleGroupStatement . This option is
// usually set to none. It does not affect how the rules in the rule group are
// evaluated. If you want the rules in the rule group to only count matches, do not
// use this and instead use the rule action override option, with Count action, in
// your rule group reference statement settings.
OverrideAction *OverrideAction
// Labels to apply to web requests that match the rule match statement. WAF
// applies fully qualified labels to matching web requests. A fully qualified label
// is the concatenation of a label namespace and a rule label. The rule's rule
// group or web ACL defines the label namespace. Rules that run after this rule in
// the web ACL can match against these labels using a LabelMatchStatement . For
// each label, provide a case-sensitive string containing optional namespaces and a
// label name, according to the following guidelines:
// - Separate each component of the label with a colon.
// - Each namespace or name can have up to 128 characters.
// - You can specify up to 5 namespaces in a label.
// - Don't use the following reserved words in your label specification: aws ,
// waf , managed , rulegroup , webacl , regexpatternset , or ipset .
// For example, myLabelName or nameSpace1:nameSpace2:myLabelName .
RuleLabels []Label
noSmithyDocumentSerde
}
// The action that WAF should take on a web request when it matches a rule's
// statement. Settings at the web ACL level can override the rule action setting.
type RuleAction struct {
// Instructs WAF to allow the web request.
Allow *AllowAction
// Instructs WAF to block the web request.
Block *BlockAction
// Instructs WAF to run a CAPTCHA check against the web request.
Captcha *CaptchaAction
// Instructs WAF to run a Challenge check against the web request.
Challenge *ChallengeAction
// Instructs WAF to count the web request and then continue evaluating the request
// using the remaining rules in the web ACL.
Count *CountAction
noSmithyDocumentSerde
}
// Action setting to use in the place of a rule action that is configured inside
// the rule group. You specify one override for each rule whose action you want to
// change. You can use overrides for testing, for example you can override all of
// rule actions to Count and then monitor the resulting count metrics to
// understand how the rule group would handle your web traffic. You can also
// permanently override some or all actions, to modify how the rule group manages
// your web traffic.
type RuleActionOverride struct {
// The override action to use, in place of the configured action of the rule in
// the rule group.
//
// This member is required.
ActionToUse *RuleAction
// The name of the rule to override.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// A rule group defines a collection of rules to inspect and control web requests
// that you can use in a WebACL . When you create a rule group, you define an
// immutable capacity limit. If you update a rule group, you must stay within the
// capacity. This allows others to reuse the rule group with confidence in its
// capacity requirements.
type RuleGroup struct {
// The Amazon Resource Name (ARN) of the entity.
//
// This member is required.
ARN *string
// The web ACL capacity units (WCUs) required for this rule group. When you create
// your own rule group, you define this, and you cannot change it after creation.
// When you add or modify the rules in a rule group, WAF enforces this limit. You
// can check the capacity for a set of rules using CheckCapacity . WAF uses WCUs to
// calculate and control the operating resources that are used to run your rules,
// rule groups, and web ACLs. WAF calculates capacity differently for each rule
// type, to reflect the relative cost of each rule. Simple rules that cost little
// to run use fewer WCUs than more complex rules that use more processing power.
// Rule group capacity is fixed at creation, which helps users plan their web ACL
// WCU usage when they use a rule group. For more information, see WAF web ACL
// capacity units (WCU) (https://docs.aws.amazon.com/waf/latest/developerguide/aws-waf-capacity-units.html)
// in the WAF Developer Guide.
//
// This member is required.
Capacity *int64
// A unique identifier for the rule group. This ID is returned in the responses to
// create and list commands. You provide it to operations like update and delete.
//
// This member is required.
Id *string
// The name of the rule group. You cannot change the name of a rule group after
// you create it.
//
// This member is required.
Name *string
// Defines and enables Amazon CloudWatch metrics and web request sample collection.
//
// This member is required.
VisibilityConfig *VisibilityConfig
// The labels that one or more rules in this rule group add to matching web
// requests. These labels are defined in the RuleLabels for a Rule .
AvailableLabels []LabelSummary
// The labels that one or more rules in this rule group match against in label
// match statements. These labels are defined in a LabelMatchStatement
// specification, in the Statement definition of a rule.
ConsumedLabels []LabelSummary
// A map of custom response keys and content bodies. When you create a rule with a
// block action, you can send a custom response to the web request. You define
// these for the rule group, and then use them in the rules that you define in the
// rule group. For information about customizing web requests and responses, see
// Customizing web requests and responses in WAF (https://docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html)
// in the WAF Developer Guide. For information about the limits on count and size
// for custom request and response settings, see WAF quotas (https://docs.aws.amazon.com/waf/latest/developerguide/limits.html)
// in the WAF Developer Guide.
CustomResponseBodies map[string]CustomResponseBody
// A description of the rule group that helps with identification.
Description *string
// The label namespace prefix for this rule group. All labels added by rules in
// this rule group have this prefix.
// - The syntax for the label namespace prefix for your rule groups is the
// following: awswaf::rulegroup::
// - When a rule with a label matches a web request, WAF adds the fully
// qualified label to the request. A fully qualified label is made up of the label
// namespace from the rule group or web ACL where the rule is defined and the label
// from the rule, separated by a colon: :
LabelNamespace *string
// The Rule statements used to identify the web requests that you want to manage.
// Each rule includes one top-level statement that WAF uses to identify matching
// web requests, and parameters that govern how WAF handles them.
Rules []Rule
noSmithyDocumentSerde
}
// A rule statement used to run the rules that are defined in a RuleGroup . To use
// this, create a rule group with your rules, then provide the ARN of the rule
// group in this statement. You cannot nest a RuleGroupReferenceStatement , for
// example for use inside a NotStatement or OrStatement . You cannot use a rule
// group reference statement inside another rule group. You can only reference a
// rule group as a top-level statement within a rule that you define in a web ACL.
type RuleGroupReferenceStatement struct {
// The Amazon Resource Name (ARN) of the entity.
//
// This member is required.
ARN *string
// Rules in the referenced rule group whose actions are set to Count . Instead of
// this option, use RuleActionOverrides . It accepts any valid action setting,
// including Count .
ExcludedRules []ExcludedRule
// Action settings to use in the place of the rule actions that are configured
// inside the rule group. You specify one override for each rule whose action you
// want to change. You can use overrides for testing, for example you can override
// all of rule actions to Count and then monitor the resulting count metrics to
// understand how the rule group would handle your web traffic. You can also
// permanently override some or all actions, to modify how the rule group manages
// your web traffic.
RuleActionOverrides []RuleActionOverride
noSmithyDocumentSerde
}
// High-level information about a RuleGroup , returned by operations like create
// and list. This provides information like the ID, that you can use to retrieve
// and manage a RuleGroup , and the ARN, that you provide to the
// RuleGroupReferenceStatement to use the rule group in a Rule .
type RuleGroupSummary struct {
// The Amazon Resource Name (ARN) of the entity.
ARN *string
// A description of the rule group that helps with identification.
Description *string
// A unique identifier for the rule group. This ID is returned in the responses to
// create and list commands. You provide it to operations like update and delete.
Id *string
// A token used for optimistic locking. WAF returns a token to your get and list
// requests, to mark the state of the entity at the time of the request. To make
// changes to the entity associated with the token, you provide the token to
// operations like update and delete . WAF uses the token to ensure that no changes
// have been made to the entity since you last retrieved it. If a change has been
// made, the update fails with a WAFOptimisticLockException . If this happens,
// perform another get , and use the new token returned by that operation.
LockToken *string
// The name of the data type instance. You cannot change the name after you create
// the instance.
Name *string
noSmithyDocumentSerde
}
// High-level information about a Rule , returned by operations like
// DescribeManagedRuleGroup . This provides information like the ID, that you can
// use to retrieve and manage a RuleGroup , and the ARN, that you provide to the
// RuleGroupReferenceStatement to use the rule group in a Rule .
type RuleSummary struct {
// The action that WAF should take on a web request when it matches a rule's
// statement. Settings at the web ACL level can override the rule action setting.
Action *RuleAction
// The name of the rule.
Name *string
noSmithyDocumentSerde
}
// Represents a single sampled web request. The response from GetSampledRequests
// includes a SampledHTTPRequests complex type that appears as SampledRequests in
// the response syntax. SampledHTTPRequests contains an array of SampledHTTPRequest
// objects.
type SampledHTTPRequest struct {
// A complex type that contains detailed information about the request.
//
// This member is required.
Request *HTTPRequest
// A value that indicates how one result in the response relates proportionally to
// other results in the response. For example, a result that has a weight of 2
// represents roughly twice as many web requests as a result that has a weight of 1
// .
//
// This member is required.
Weight int64
// The action that WAF applied to the request.
Action *string
// The CAPTCHA response for the request.
CaptchaResponse *CaptchaResponse
// The Challenge response for the request.
ChallengeResponse *ChallengeResponse
// Labels applied to the web request by matching rules. WAF applies fully
// qualified labels to matching web requests. A fully qualified label is the
// concatenation of a label namespace and a rule label. The rule's rule group or
// web ACL defines the label namespace. For example,
// awswaf:111122223333:myRuleGroup:testRules:testNS1:testNS2:labelNameA or
// awswaf:managed:aws:managed-rule-set:header:encoding:utf8 .
Labels []Label
// Used only for rule group rules that have a rule action override in place in the
// web ACL. This is the action that the rule group rule is configured for, and not
// the action that was applied to the request. The action that WAF applied is the
// Action value.
OverriddenAction *string
// Custom request headers inserted by WAF into the request, according to the
// custom request configuration for the matching rule action.
RequestHeadersInserted []HTTPHeader
// The response code that was sent for the request.
ResponseCodeSent *int32
// The name of the Rule that the request matched. For managed rule groups, the
// format for this name is ## . For your own rule groups, the format for this name
// is # . If the rule is not in a rule group, this field is absent.
RuleNameWithinRuleGroup *string
// The time at which WAF received the request from your Amazon Web Services
// resource, in Unix time format (in seconds).
Timestamp *time.Time
noSmithyDocumentSerde
}
// Inspect one of the headers in the web request, identified by name, for example,
// User-Agent or Referer . The name isn't case sensitive. You can filter and
// inspect all headers with the FieldToMatch setting Headers . This is used to
// indicate the web request component to inspect, in the FieldToMatch
// specification. Example JSON: "SingleHeader": { "Name": "haystack" }
type SingleHeader struct {
// The name of the query header to inspect.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// Inspect one query argument in the web request, identified by name, for example
// UserName or SalesRegion. The name isn't case sensitive. This is used to indicate
// the web request component to inspect, in the FieldToMatch specification.
// Example JSON: "SingleQueryArgument": { "Name": "myArgument" }
type SingleQueryArgument struct {
// The name of the query argument to inspect.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// A rule statement that compares a number of bytes against the size of a request
// component, using a comparison operator, such as greater than (>) or less than
// (<). For example, you can use a size constraint statement to look for query
// strings that are longer than 100 bytes. If you configure WAF to inspect the
// request body, WAF inspects only the number of bytes of the body up to the limit
// for the web ACL. By default, for regional web ACLs, this limit is 8 KB (8,192
// bytes) and for CloudFront web ACLs, this limit is 16 KB (16,384 bytes). For
// CloudFront web ACLs, you can increase the limit in the web ACL AssociationConfig
// , for additional fees. If you know that the request body for your web requests
// should never exceed the inspection limit, you could use a size constraint
// statement to block requests that have a larger request body size. If you choose
// URI for the value of Part of the request to filter on, the slash (/) in the URI
// counts as one character. For example, the URI /logo.jpg is nine characters long.
type SizeConstraintStatement struct {
// The operator to use to compare the request part to the size setting.
//
// This member is required.
ComparisonOperator ComparisonOperator
// The part of the web request that you want WAF to inspect.
//
// This member is required.
FieldToMatch *FieldToMatch
// The size, in byte, to compare to the request part, after any transformations.
//
// This member is required.
Size int64
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
// A rule statement that inspects for malicious SQL code. Attackers insert
// malicious SQL code into web requests to do things like modify your database or
// extract data from it.
type SqliMatchStatement struct {
// The part of the web request that you want WAF to inspect.
//
// This member is required.
FieldToMatch *FieldToMatch
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
// The sensitivity that you want WAF to use to inspect for SQL injection attacks.
// HIGH detects more attacks, but might generate more false positives, especially
// if your web requests frequently contain unusual strings. For information about
// identifying and mitigating false positives, see Testing and tuning (https://docs.aws.amazon.com/waf/latest/developerguide/web-acl-testing.html)
// in the WAF Developer Guide. LOW is generally a better choice for resources that
// already have other protections against SQL injection attacks or that have a low
// tolerance for false positives. Default: LOW
SensitivityLevel SensitivityLevel
noSmithyDocumentSerde
}
// The processing guidance for a Rule , used by WAF to determine whether a web
// request matches the rule. For example specifications, see the examples section
// of CreateWebACL .
type Statement struct {
// A logical rule statement used to combine other rule statements with AND logic.
// You provide more than one Statement within the AndStatement .
AndStatement *AndStatement
// A rule statement that defines a string match search for WAF to apply to web
// requests. The byte match statement provides the bytes to search for, the
// location in requests that you want WAF to search, and other settings. The bytes
// to search for are typically a string that corresponds with ASCII characters. In
// the WAF console and the developer guide, this is called a string match
// statement.
ByteMatchStatement *ByteMatchStatement
// A rule statement that labels web requests by country and region and that
// matches against web requests based on country code. A geo match rule labels
// every request that it inspects regardless of whether it finds a match.
// - To manage requests only by country, you can use this statement by itself
// and specify the countries that you want to match against in the CountryCodes
// array.
// - Otherwise, configure your geo match rule with Count action so that it only
// labels requests. Then, add one or more label match rules to run after the geo
// match rule and configure them to match against the geographic labels and handle
// the requests as needed.
// WAF labels requests using the alpha-2 country and region codes from the
// International Organization for Standardization (ISO) 3166 standard. WAF
// determines the codes using either the IP address in the web request origin or,
// if you specify it, the address in the geo match ForwardedIPConfig . If you use
// the web request origin, the label formats are awswaf:clientip:geo:region:- and
// awswaf:clientip:geo:country: . If you use a forwarded IP address, the label
// formats are awswaf:forwardedip:geo:region:- and awswaf:forwardedip:geo:country:
// . For additional details, see Geographic match rule statement (https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statement-type-geo-match.html)
// in the WAF Developer Guide (https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html)
// .
GeoMatchStatement *GeoMatchStatement
// A rule statement used to detect web requests coming from particular IP
// addresses or address ranges. To use this, create an IPSet that specifies the
// addresses you want to detect, then use the ARN of that set in this statement. To
// create an IP set, see CreateIPSet . Each IP set rule statement references an IP
// set. You create and maintain the set independent of your rules. This allows you
// to use the single set in multiple rules. When you update the referenced set, WAF
// automatically updates all rules that reference it.
IPSetReferenceStatement *IPSetReferenceStatement
// A rule statement to match against labels that have been added to the web
// request by rules that have already run in the web ACL. The label match statement
// provides the label or namespace string to search for. The label string can
// represent a part or all of the fully qualified label name that had been added to
// the web request. Fully qualified labels have a prefix, optional namespaces, and
// label name. The prefix identifies the rule group or web ACL context of the rule
// that added the label. If you do not provide the fully qualified name in your
// label match string, WAF performs the search for labels that were added in the
// same context as the label match statement.
LabelMatchStatement *LabelMatchStatement
// A rule statement used to run the rules that are defined in a managed rule
// group. To use this, provide the vendor name and the name of the rule group in
// this statement. You can retrieve the required names by calling
// ListAvailableManagedRuleGroups . You cannot nest a ManagedRuleGroupStatement ,
// for example for use inside a NotStatement or OrStatement . You cannot use a
// managed rule group inside another rule group. You can only reference a managed
// rule group as a top-level statement within a rule that you define in a web ACL.
// You are charged additional fees when you use the WAF Bot Control managed rule
// group AWSManagedRulesBotControlRuleSet , the WAF Fraud Control account takeover
// prevention (ATP) managed rule group AWSManagedRulesATPRuleSet , or the WAF Fraud
// Control account creation fraud prevention (ACFP) managed rule group
// AWSManagedRulesACFPRuleSet . For more information, see WAF Pricing (http://aws.amazon.com/waf/pricing/)
// .
ManagedRuleGroupStatement *ManagedRuleGroupStatement
// A logical rule statement used to negate the results of another rule statement.
// You provide one Statement within the NotStatement .
NotStatement *NotStatement
// A logical rule statement used to combine other rule statements with OR logic.
// You provide more than one Statement within the OrStatement .
OrStatement *OrStatement
// A rate-based rule counts incoming requests and rate limits requests when they
// are coming at too fast a rate. The rule categorizes requests according to your
// aggregation criteria, collects them into aggregation instances, and counts and
// rate limits the requests for each instance. You can specify individual
// aggregation keys, like IP address or HTTP method. You can also specify
// aggregation key combinations, like IP address and HTTP method, or HTTP method,
// query argument, and cookie. Each unique set of values for the aggregation keys
// that you specify is a separate aggregation instance, with the value from each
// key contributing to the aggregation instance definition. For example, assume the
// rule evaluates web requests with the following IP address and HTTP method
// values:
// - IP address 10.1.1.1, HTTP method POST
// - IP address 10.1.1.1, HTTP method GET
// - IP address 127.0.0.0, HTTP method POST
// - IP address 10.1.1.1, HTTP method GET
// The rule would create different aggregation instances according to your
// aggregation criteria, for example:
// - If the aggregation criteria is just the IP address, then each individual
// address is an aggregation instance, and WAF counts requests separately for each.
// The aggregation instances and request counts for our example would be the
// following:
// - IP address 10.1.1.1: count 3
// - IP address 127.0.0.0: count 1
// - If the aggregation criteria is HTTP method, then each individual HTTP
// method is an aggregation instance. The aggregation instances and request counts
// for our example would be the following:
// - HTTP method POST: count 2
// - HTTP method GET: count 2
// - If the aggregation criteria is IP address and HTTP method, then each IP
// address and each HTTP method would contribute to the combined aggregation
// instance. The aggregation instances and request counts for our example would be
// the following:
// - IP address 10.1.1.1, HTTP method POST: count 1
// - IP address 10.1.1.1, HTTP method GET: count 2
// - IP address 127.0.0.0, HTTP method POST: count 1
// For any n-tuple of aggregation keys, each unique combination of values for the
// keys defines a separate aggregation instance, which WAF counts and rate-limits
// individually. You can optionally nest another statement inside the rate-based
// statement, to narrow the scope of the rule so that it only counts and rate
// limits requests that match the nested statement. You can use this nested
// scope-down statement in conjunction with your aggregation key specifications or
// you can just count and rate limit all requests that match the scope-down
// statement, without additional aggregation. When you choose to just manage all
// requests that match a scope-down statement, the aggregation instance is singular
// for the rule. You cannot nest a RateBasedStatement inside another statement,
// for example inside a NotStatement or OrStatement . You can define a
// RateBasedStatement inside a web ACL and inside a rule group. For additional
// information about the options, see Rate limiting web requests using rate-based
// rules (https://docs.aws.amazon.com/waf/latest/developerguide/waf-rate-based-rules.html)
// in the WAF Developer Guide. If you only aggregate on the individual IP address
// or forwarded IP address, you can retrieve the list of IP addresses that WAF is
// currently rate limiting for a rule through the API call
// GetRateBasedStatementManagedKeys . This option is not available for other
// aggregation configurations. WAF tracks and manages web requests separately for
// each instance of a rate-based rule that you use. For example, if you provide the
// same rate-based rule settings in two web ACLs, each of the two rule statements
// represents a separate instance of the rate-based rule and gets its own tracking
// and management by WAF. If you define a rate-based rule inside a rule group, and
// then use that rule group in multiple places, each use creates a separate
// instance of the rate-based rule that gets its own tracking and management by
// WAF.
RateBasedStatement *RateBasedStatement
// A rule statement used to search web request components for a match against a
// single regular expression.
RegexMatchStatement *RegexMatchStatement
// A rule statement used to search web request components for matches with regular
// expressions. To use this, create a RegexPatternSet that specifies the
// expressions that you want to detect, then use the ARN of that set in this
// statement. A web request matches the pattern set rule statement if the request
// component matches any of the patterns in the set. To create a regex pattern set,
// see CreateRegexPatternSet . Each regex pattern set rule statement references a
// regex pattern set. You create and maintain the set independent of your rules.
// This allows you to use the single set in multiple rules. When you update the
// referenced set, WAF automatically updates all rules that reference it.
RegexPatternSetReferenceStatement *RegexPatternSetReferenceStatement
// A rule statement used to run the rules that are defined in a RuleGroup . To use
// this, create a rule group with your rules, then provide the ARN of the rule
// group in this statement. You cannot nest a RuleGroupReferenceStatement , for
// example for use inside a NotStatement or OrStatement . You cannot use a rule
// group reference statement inside another rule group. You can only reference a
// rule group as a top-level statement within a rule that you define in a web ACL.
RuleGroupReferenceStatement *RuleGroupReferenceStatement
// A rule statement that compares a number of bytes against the size of a request
// component, using a comparison operator, such as greater than (>) or less than
// (<). For example, you can use a size constraint statement to look for query
// strings that are longer than 100 bytes. If you configure WAF to inspect the
// request body, WAF inspects only the number of bytes of the body up to the limit
// for the web ACL. By default, for regional web ACLs, this limit is 8 KB (8,192
// bytes) and for CloudFront web ACLs, this limit is 16 KB (16,384 bytes). For
// CloudFront web ACLs, you can increase the limit in the web ACL AssociationConfig
// , for additional fees. If you know that the request body for your web requests
// should never exceed the inspection limit, you could use a size constraint
// statement to block requests that have a larger request body size. If you choose
// URI for the value of Part of the request to filter on, the slash (/) in the URI
// counts as one character. For example, the URI /logo.jpg is nine characters long.
SizeConstraintStatement *SizeConstraintStatement
// A rule statement that inspects for malicious SQL code. Attackers insert
// malicious SQL code into web requests to do things like modify your database or
// extract data from it.
SqliMatchStatement *SqliMatchStatement
// A rule statement that inspects for cross-site scripting (XSS) attacks. In XSS
// attacks, the attacker uses vulnerabilities in a benign website as a vehicle to
// inject malicious client-site scripts into other legitimate web browsers.
XssMatchStatement *XssMatchStatement
noSmithyDocumentSerde
}
// A tag associated with an Amazon Web Services resource. Tags are key:value pairs
// that you can use to categorize and manage your resources, for purposes like
// billing or other management. Typically, the tag key represents a category, such
// as "environment", and the tag value represents a specific value within that
// category, such as "test," "development," or "production". Or you might set the
// tag key to "customer" and the value to the customer name or ID. You can specify
// one or more tags to add to each Amazon Web Services resource, up to 50 tags for
// a resource. You can tag the Amazon Web Services resources that you manage
// through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can't
// manage or view tags through the WAF console.
type Tag struct {
// Part of the key:value pair that defines a tag. You can use a tag key to
// describe a category of information, such as "customer." Tag keys are
// case-sensitive.
//
// This member is required.
Key *string
// Part of the key:value pair that defines a tag. You can use a tag value to
// describe a specific value within a category, such as "companyA" or "companyB."
// Tag values are case-sensitive.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// The collection of tagging definitions for an Amazon Web Services resource. Tags
// are key:value pairs that you can use to categorize and manage your resources,
// for purposes like billing or other management. Typically, the tag key represents
// a category, such as "environment", and the tag value represents a specific value
// within that category, such as "test," "development," or "production". Or you
// might set the tag key to "customer" and the value to the customer name or ID.
// You can specify one or more tags to add to each Amazon Web Services resource, up
// to 50 tags for a resource. You can tag the Amazon Web Services resources that
// you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets.
// You can't manage or view tags through the WAF console.
type TagInfoForResource struct {
// The Amazon Resource Name (ARN) of the resource.
ResourceARN *string
// The array of Tag objects defined for the resource.
TagList []Tag
noSmithyDocumentSerde
}
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection.
type TextTransformation struct {
// Sets the relative processing order for multiple transformations. WAF processes
// all transformations, from lowest priority to highest, before inspecting the
// transformed content. The priorities don't need to be consecutive, but they must
// all be different.
//
// This member is required.
Priority int32
// For detailed descriptions of each of the transformation types, see Text
// transformations (https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statement-transformation.html)
// in the WAF Developer Guide.
//
// This member is required.
Type TextTransformationType
noSmithyDocumentSerde
}
// In a GetSampledRequests request, the StartTime and EndTime objects specify the
// time range for which you want WAF to return a sample of web requests. You must
// specify the times in Coordinated Universal Time (UTC) format. UTC format
// includes the special designator, Z . For example, "2016-09-27T14:50Z" . You can
// specify any time range in the previous three hours. In a GetSampledRequests
// response, the StartTime and EndTime objects specify the time range for which
// WAF actually returned a sample of web requests. WAF gets the specified number of
// requests from among the first 5,000 requests that your Amazon Web Services
// resource receives during the specified time period. If your resource receives
// more than 5,000 requests during that period, WAF stops sampling after the
// 5,000th request. In that case, EndTime is the time that WAF received the
// 5,000th request.
type TimeWindow struct {
// The end of the time range from which you want GetSampledRequests to return a
// sample of the requests that your Amazon Web Services resource received. You must
// specify the times in Coordinated Universal Time (UTC) format. UTC format
// includes the special designator, Z . For example, "2016-09-27T14:50Z" . You can
// specify any time range in the previous three hours.
//
// This member is required.
EndTime *time.Time
// The beginning of the time range from which you want GetSampledRequests to
// return a sample of the requests that your Amazon Web Services resource received.
// You must specify the times in Coordinated Universal Time (UTC) format. UTC
// format includes the special designator, Z . For example, "2016-09-27T14:50Z" .
// You can specify any time range in the previous three hours.
//
// This member is required.
StartTime *time.Time
noSmithyDocumentSerde
}
// Inspect the path component of the URI of the web request. This is the part of
// the web request that identifies a resource. For example, /images/daily-ad.jpg .
// This is used in the FieldToMatch specification for some web request component
// types. JSON specification: "UriPath": {}
type UriPath struct {
noSmithyDocumentSerde
}
// The name of the field in the request payload that contains your customer's
// username. This data type is used in the RequestInspection and
// RequestInspectionACFP data types.
type UsernameField struct {
// The name of the username field. How you specify this depends on the request
// inspection payload type.
// - For JSON payloads, specify the field name in JSON pointer syntax. For
// information about the JSON Pointer syntax, see the Internet Engineering Task
// Force (IETF) documentation JavaScript Object Notation (JSON) Pointer (https://tools.ietf.org/html/rfc6901)
// . For example, for the JSON payload { "form": { "username": "THE_USERNAME" } }
// , the username field specification is /form/username .
// - For form encoded payload types, use the HTML form names. For example, for
// an HTML form with the input element named username1 , the username field
// specification is username1
//
// This member is required.
Identifier *string
noSmithyDocumentSerde
}
// A version of the named managed rule group, that the rule group's vendor
// publishes for use by customers. This is intended for use only by vendors of
// managed rule sets. Vendors are Amazon Web Services and Amazon Web Services
// Marketplace sellers. Vendors, you can use the managed rule set APIs to provide
// controlled rollout of your versioned managed rule group offerings for your
// customers. The APIs are ListManagedRuleSets , GetManagedRuleSet ,
// PutManagedRuleSetVersions , and UpdateManagedRuleSetVersionExpiryDate .
type VersionToPublish struct {
// The Amazon Resource Name (ARN) of the vendor's rule group that's used in the
// published managed rule group version.
AssociatedRuleGroupArn *string
// The amount of time the vendor expects this version of the managed rule group to
// last, in days.
ForecastedLifetime *int32
noSmithyDocumentSerde
}
// Defines and enables Amazon CloudWatch metrics and web request sample collection.
type VisibilityConfig struct {
// Indicates whether the associated resource sends metrics to Amazon CloudWatch.
// For the list of available metrics, see WAF Metrics (https://docs.aws.amazon.com/waf/latest/developerguide/monitoring-cloudwatch.html#waf-metrics)
// in the WAF Developer Guide. For web ACLs, the metrics are for web requests that
// have the web ACL default action applied. WAF applies the default action to web
// requests that pass the inspection of all rules in the web ACL without being
// either allowed or blocked. For more information, see The web ACL default action (https://docs.aws.amazon.com/waf/latest/developerguide/web-acl-default-action.html)
// in the WAF Developer Guide.
//
// This member is required.
CloudWatchMetricsEnabled bool
// A name of the Amazon CloudWatch metric dimension. The name can contain only the
// characters: A-Z, a-z, 0-9, - (hyphen), and _ (underscore). The name can be from
// one to 128 characters long. It can't contain whitespace or metric names that are
// reserved for WAF, for example All and Default_Action .
//
// This member is required.
MetricName *string
// Indicates whether WAF should store a sampling of the web requests that match
// the rules. You can view the sampled requests through the WAF console.
//
// This member is required.
SampledRequestsEnabled bool
noSmithyDocumentSerde
}
// A web ACL defines a collection of rules to use to inspect and control web
// requests. Each rule has a statement that defines what to look for in web
// requests and an action that WAF applies to requests that match the statement. In
// the web ACL, you assign a default action to take (allow, block) for any request
// that does not match any of the rules. The rules in a web ACL can be a
// combination of the types Rule , RuleGroup , and managed rule group. You can
// associate a web ACL with one or more Amazon Web Services resources to protect.
// The resources can be an Amazon CloudFront distribution, an Amazon API Gateway
// REST API, an Application Load Balancer, an AppSync GraphQL API, an Amazon
// Cognito user pool, an App Runner service, or an Amazon Web Services Verified
// Access instance.
type WebACL struct {
// The Amazon Resource Name (ARN) of the web ACL that you want to associate with
// the resource.
//
// This member is required.
ARN *string
// The action to perform if none of the Rules contained in the WebACL match.
//
// This member is required.
DefaultAction *DefaultAction
// A unique identifier for the WebACL . This ID is returned in the responses to
// create and list commands. You use this ID to do things like get, update, and
// delete a WebACL .
//
// This member is required.
Id *string
// The name of the web ACL. You cannot change the name of a web ACL after you
// create it.
//
// This member is required.
Name *string
// Defines and enables Amazon CloudWatch metrics and web request sample collection.
//
// This member is required.
VisibilityConfig *VisibilityConfig
// Specifies custom configurations for the associations between the web ACL and
// protected resources. Use this to customize the maximum size of the request body
// that your protected CloudFront distributions forward to WAF for inspection. The
// default is 16 KB (16,384 bytes). You are charged additional fees when your
// protected resources forward body sizes that are larger than the default. For
// more information, see WAF Pricing (http://aws.amazon.com/waf/pricing/) .
AssociationConfig *AssociationConfig
// The web ACL capacity units (WCUs) currently being used by this web ACL. WAF
// uses WCUs to calculate and control the operating resources that are used to run
// your rules, rule groups, and web ACLs. WAF calculates capacity differently for
// each rule type, to reflect the relative cost of each rule. Simple rules that
// cost little to run use fewer WCUs than more complex rules that use more
// processing power. Rule group capacity is fixed at creation, which helps users
// plan their web ACL WCU usage when they use a rule group. For more information,
// see WAF web ACL capacity units (WCU) (https://docs.aws.amazon.com/waf/latest/developerguide/aws-waf-capacity-units.html)
// in the WAF Developer Guide.
Capacity int64
// Specifies how WAF should handle CAPTCHA evaluations for rules that don't have
// their own CaptchaConfig settings. If you don't specify this, WAF uses its
// default settings for CaptchaConfig .
CaptchaConfig *CaptchaConfig
// Specifies how WAF should handle challenge evaluations for rules that don't have
// their own ChallengeConfig settings. If you don't specify this, WAF uses its
// default settings for ChallengeConfig .
ChallengeConfig *ChallengeConfig
// A map of custom response keys and content bodies. When you create a rule with a
// block action, you can send a custom response to the web request. You define
// these for the web ACL, and then use them in the rules and default actions that
// you define in the web ACL. For information about customizing web requests and
// responses, see Customizing web requests and responses in WAF (https://docs.aws.amazon.com/waf/latest/developerguide/waf-custom-request-response.html)
// in the WAF Developer Guide. For information about the limits on count and size
// for custom request and response settings, see WAF quotas (https://docs.aws.amazon.com/waf/latest/developerguide/limits.html)
// in the WAF Developer Guide.
CustomResponseBodies map[string]CustomResponseBody
// A description of the web ACL that helps with identification.
Description *string
// The label namespace prefix for this web ACL. All labels added by rules in this
// web ACL have this prefix.
// - The syntax for the label namespace prefix for a web ACL is the following:
// awswaf::webacl::
// - When a rule with a label matches a web request, WAF adds the fully
// qualified label to the request. A fully qualified label is made up of the label
// namespace from the rule group or web ACL where the rule is defined and the label
// from the rule, separated by a colon: :
LabelNamespace *string
// Indicates whether this web ACL is managed by Firewall Manager. If true, then
// only Firewall Manager can delete the web ACL or any Firewall Manager rule groups
// in the web ACL.
ManagedByFirewallManager bool
// The last set of rules for WAF to process in the web ACL. This is defined in an
// Firewall Manager WAF policy and contains only rule group references. You can't
// alter these. Any rules and rule groups that you define for the web ACL are
// prioritized before these. In the Firewall Manager WAF policy, the Firewall
// Manager administrator can define a set of rule groups to run first in the web
// ACL and a set of rule groups to run last. Within each set, the administrator
// prioritizes the rule groups, to determine their relative processing order.
PostProcessFirewallManagerRuleGroups []FirewallManagerRuleGroup
// The first set of rules for WAF to process in the web ACL. This is defined in an
// Firewall Manager WAF policy and contains only rule group references. You can't
// alter these. Any rules and rule groups that you define for the web ACL are
// prioritized after these. In the Firewall Manager WAF policy, the Firewall
// Manager administrator can define a set of rule groups to run first in the web
// ACL and a set of rule groups to run last. Within each set, the administrator
// prioritizes the rule groups, to determine their relative processing order.
PreProcessFirewallManagerRuleGroups []FirewallManagerRuleGroup
// The Rule statements used to identify the web requests that you want to manage.
// Each rule includes one top-level statement that WAF uses to identify matching
// web requests, and parameters that govern how WAF handles them.
Rules []Rule
// Specifies the domains that WAF should accept in a web request token. This
// enables the use of tokens across multiple protected websites. When WAF provides
// a token, it uses the domain of the Amazon Web Services resource that the web ACL
// is protecting. If you don't specify a list of token domains, WAF accepts tokens
// only for the domain of the protected resource. With a token domain list, WAF
// accepts the resource's host domain plus all domains in the token domain list,
// including their prefixed subdomains.
TokenDomains []string
noSmithyDocumentSerde
}
// High-level information about a WebACL , returned by operations like create and
// list. This provides information like the ID, that you can use to retrieve and
// manage a WebACL , and the ARN, that you provide to operations like
// AssociateWebACL .
type WebACLSummary struct {
// The Amazon Resource Name (ARN) of the entity.
ARN *string
// A description of the web ACL that helps with identification.
Description *string
// The unique identifier for the web ACL. This ID is returned in the responses to
// create and list commands. You provide it to operations like update and delete.
Id *string
// A token used for optimistic locking. WAF returns a token to your get and list
// requests, to mark the state of the entity at the time of the request. To make
// changes to the entity associated with the token, you provide the token to
// operations like update and delete . WAF uses the token to ensure that no changes
// have been made to the entity since you last retrieved it. If a change has been
// made, the update fails with a WAFOptimisticLockException . If this happens,
// perform another get , and use the new token returned by that operation.
LockToken *string
// The name of the web ACL. You cannot change the name of a web ACL after you
// create it.
Name *string
noSmithyDocumentSerde
}
// A rule statement that inspects for cross-site scripting (XSS) attacks. In XSS
// attacks, the attacker uses vulnerabilities in a benign website as a vehicle to
// inject malicious client-site scripts into other legitimate web browsers.
type XssMatchStatement struct {
// The part of the web request that you want WAF to inspect.
//
// This member is required.
FieldToMatch *FieldToMatch
// Text transformations eliminate some of the unusual formatting that attackers
// use in web requests in an effort to bypass detection. Text transformations are
// used in rule match statements, to transform the FieldToMatch request component
// before inspecting it, and they're used in rate-based rule statements, to
// transform request components before using them as custom aggregation keys. If
// you specify one or more transformations to apply, WAF performs all
// transformations on the specified content, starting from the lowest priority
// setting, and then uses the transformed component contents.
//
// This member is required.
TextTransformations []TextTransformation
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|