1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// A list of key groups, and the public keys in each key group, that CloudFront
// can use to verify the signatures of signed URLs and signed cookies.
type ActiveTrustedKeyGroups struct {
// This field is true if any of the key groups have public keys that CloudFront
// can use to verify the signatures of signed URLs and signed cookies. If not, this
// field is false .
//
// This member is required.
Enabled *bool
// The number of key groups in the list.
//
// This member is required.
Quantity *int32
// A list of key groups, including the identifiers of the public keys in each key
// group that CloudFront can use to verify the signatures of signed URLs and signed
// cookies.
Items []KGKeyPairIds
noSmithyDocumentSerde
}
// A list of Amazon Web Services accounts and the active CloudFront key pairs in
// each account that CloudFront can use to verify the signatures of signed URLs and
// signed cookies.
type ActiveTrustedSigners struct {
// This field is true if any of the Amazon Web Services accounts in the list are
// configured as trusted signers. If not, this field is false .
//
// This member is required.
Enabled *bool
// The number of Amazon Web Services accounts in the list.
//
// This member is required.
Quantity *int32
// A list of Amazon Web Services accounts and the identifiers of active CloudFront
// key pairs in each account that CloudFront can use to verify the signatures of
// signed URLs and signed cookies.
Items []Signer
noSmithyDocumentSerde
}
// A complex type that contains information about CNAMEs (alternate domain names),
// if any, for this distribution.
type Aliases struct {
// The number of CNAME aliases, if any, that you want to associate with this
// distribution.
//
// This member is required.
Quantity *int32
// A complex type that contains the CNAME aliases, if any, that you want to
// associate with this distribution.
Items []string
noSmithyDocumentSerde
}
// Amazon Web Services services in China customers must file for an Internet
// Content Provider (ICP) recordal if they want to serve content publicly on an
// alternate domain name, also known as a CNAME, that they've added to CloudFront.
// AliasICPRecordal provides the ICP recordal status for CNAMEs associated with
// distributions. The status is returned in the CloudFront response; you can't
// configure it yourself. For more information about ICP recordals, see Signup,
// Accounts, and Credentials (https://docs.amazonaws.cn/en_us/aws/latest/userguide/accounts-and-credentials.html)
// in Getting Started with Amazon Web Services services in China.
type AliasICPRecordal struct {
// A domain name associated with a distribution.
CNAME *string
// The Internet Content Provider (ICP) recordal status for a CNAME. The
// ICPRecordalStatus is set to APPROVED for all CNAMEs (aliases) in regions outside
// of China. The status values returned are the following:
// - APPROVED indicates that the associated CNAME has a valid ICP recordal
// number. Multiple CNAMEs can be associated with a distribution, and CNAMEs can
// correspond to different ICP recordals. To be marked as APPROVED, that is, valid
// to use with China region, a CNAME must have one ICP recordal number associated
// with it.
// - SUSPENDED indicates that the associated CNAME does not have a valid ICP
// recordal number.
// - PENDING indicates that CloudFront can't determine the ICP recordal status
// of the CNAME associated with the distribution because there was an error in
// trying to determine the status. You can try again to see if the error is
// resolved in which case CloudFront returns an APPROVED or SUSPENDED status.
ICPRecordalStatus ICPRecordalStatus
noSmithyDocumentSerde
}
// A complex type that controls which HTTP methods CloudFront processes and
// forwards to your Amazon S3 bucket or your custom origin. There are three
// choices:
// - CloudFront forwards only GET and HEAD requests.
// - CloudFront forwards only GET , HEAD , and OPTIONS requests.
// - CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST , and DELETE
// requests.
//
// If you pick the third choice, you may need to restrict access to your Amazon S3
// bucket or to your custom origin so users can't perform operations that you don't
// want them to. For example, you might not want users to have permissions to
// delete objects from your origin.
type AllowedMethods struct {
// A complex type that contains the HTTP methods that you want CloudFront to
// process and forward to your origin.
//
// This member is required.
Items []Method
// The number of HTTP methods that you want CloudFront to forward to your origin.
// Valid values are 2 (for GET and HEAD requests), 3 (for GET , HEAD , and OPTIONS
// requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST , and DELETE
// requests).
//
// This member is required.
Quantity *int32
// A complex type that controls whether CloudFront caches the response to requests
// using the specified HTTP methods. There are two choices:
// - CloudFront caches responses to GET and HEAD requests.
// - CloudFront caches responses to GET , HEAD , and OPTIONS requests.
// If you pick the second choice for your Amazon S3 Origin, you may need to
// forward Access-Control-Request-Method, Access-Control-Request-Headers, and
// Origin headers for the responses to be cached correctly.
CachedMethods *CachedMethods
noSmithyDocumentSerde
}
// A complex type that describes how CloudFront processes requests. You must
// create at least as many cache behaviors (including the default cache behavior)
// as you have origins if you want CloudFront to serve objects from all of the
// origins. Each cache behavior specifies the one origin from which you want
// CloudFront to get objects. If you have two origins and only the default cache
// behavior, the default cache behavior will cause CloudFront to get objects from
// one of the origins, but the other origin is never used. For the current quota
// (formerly known as limit) on the number of cache behaviors that you can add to a
// distribution, see Quotas (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html)
// in the Amazon CloudFront Developer Guide. If you don't want to specify any cache
// behaviors, include only an empty CacheBehaviors element. Don't include an empty
// CacheBehavior element because this is invalid. To delete all cache behaviors in
// an existing distribution, update the distribution configuration and include only
// an empty CacheBehaviors element. To add, change, or remove one or more cache
// behaviors, update the distribution configuration and specify all of the cache
// behaviors that you want to include in the updated distribution. For more
// information about cache behaviors, see Cache Behavior Settings (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesCacheBehavior)
// in the Amazon CloudFront Developer Guide.
type CacheBehavior struct {
// The pattern (for example, images/*.jpg ) that specifies which requests to apply
// the behavior to. When CloudFront receives a viewer request, the requested path
// is compared with path patterns in the order in which cache behaviors are listed
// in the distribution. You can optionally include a slash ( / ) at the beginning
// of the path pattern. For example, /images/*.jpg . CloudFront behavior is the
// same with or without the leading / . The path pattern for the default cache
// behavior is * and cannot be changed. If the request for an object does not
// match the path pattern for any cache behaviors, CloudFront applies the behavior
// in the default cache behavior. For more information, see Path Pattern (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesPathPattern)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
PathPattern *string
// The value of ID for the origin that you want CloudFront to route requests to
// when they match this cache behavior.
//
// This member is required.
TargetOriginId *string
// The protocol that viewers can use to access the files in the origin specified
// by TargetOriginId when a request matches the path pattern in PathPattern . You
// can specify the following options:
// - allow-all : Viewers can use HTTP or HTTPS.
// - redirect-to-https : If a viewer submits an HTTP request, CloudFront returns
// an HTTP status code of 301 (Moved Permanently) to the viewer along with the
// HTTPS URL. The viewer then resubmits the request using the new URL.
// - https-only : If a viewer sends an HTTP request, CloudFront returns an HTTP
// status code of 403 (Forbidden).
// For more information about requiring the HTTPS protocol, see Requiring HTTPS
// Between Viewers and CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https-viewers-to-cloudfront.html)
// in the Amazon CloudFront Developer Guide. The only way to guarantee that viewers
// retrieve an object that was fetched from the origin using HTTPS is never to use
// any other protocol to fetch the object. If you have recently changed from HTTP
// to HTTPS, we recommend that you clear your objects' cache because cached objects
// are protocol agnostic. That means that an edge location will return an object
// from the cache regardless of whether the current request protocol matches the
// protocol used previously. For more information, see Managing Cache Expiration (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
ViewerProtocolPolicy ViewerProtocolPolicy
// A complex type that controls which HTTP methods CloudFront processes and
// forwards to your Amazon S3 bucket or your custom origin. There are three
// choices:
// - CloudFront forwards only GET and HEAD requests.
// - CloudFront forwards only GET , HEAD , and OPTIONS requests.
// - CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST , and DELETE
// requests.
// If you pick the third choice, you may need to restrict access to your Amazon S3
// bucket or to your custom origin so users can't perform operations that you don't
// want them to. For example, you might not want users to have permissions to
// delete objects from your origin.
AllowedMethods *AllowedMethods
// The unique identifier of the cache policy that is attached to this cache
// behavior. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. A CacheBehavior must include either a
// CachePolicyId or ForwardedValues . We recommend that you use a CachePolicyId .
CachePolicyId *string
// Whether you want CloudFront to automatically compress certain files for this
// cache behavior. If so, specify true; if not, specify false. For more
// information, see Serving Compressed Files (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/ServingCompressedFiles.html)
// in the Amazon CloudFront Developer Guide.
Compress *bool
// This field is deprecated. We recommend that you use the DefaultTTL field in a
// cache policy instead of this field. For more information, see Creating cache
// policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. The default amount of time that you
// want objects to stay in CloudFront caches before CloudFront forwards another
// request to your origin to determine whether the object has been updated. The
// value that you specify applies only when your origin does not add HTTP headers
// such as Cache-Control max-age , Cache-Control s-maxage , and Expires to
// objects. For more information, see Managing How Long Content Stays in an Edge
// Cache (Expiration) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide.
//
// Deprecated: This member has been deprecated.
DefaultTTL *int64
// The value of ID for the field-level encryption configuration that you want
// CloudFront to use for encrypting specific fields of data for this cache
// behavior.
FieldLevelEncryptionId *string
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. For more information, see Working with
// policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/working-with-policies.html)
// in the Amazon CloudFront Developer Guide. If you want to include values in the
// cache key, use a cache policy. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. If you want to send values to the
// origin but not include them in the cache key, use an origin request policy. For
// more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// or Using the managed origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-origin-request-policies.html)
// in the Amazon CloudFront Developer Guide. A CacheBehavior must include either a
// CachePolicyId or ForwardedValues . We recommend that you use a CachePolicyId . A
// complex type that specifies how CloudFront handles query strings, cookies, and
// HTTP headers.
//
// Deprecated: This member has been deprecated.
ForwardedValues *ForwardedValues
// A list of CloudFront functions that are associated with this cache behavior.
// CloudFront functions must be published to the LIVE stage to associate them with
// a cache behavior.
FunctionAssociations *FunctionAssociations
// A complex type that contains zero or more Lambda@Edge function associations for
// a cache behavior.
LambdaFunctionAssociations *LambdaFunctionAssociations
// This field is deprecated. We recommend that you use the MaxTTL field in a cache
// policy instead of this field. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. The maximum amount of time that you
// want objects to stay in CloudFront caches before CloudFront forwards another
// request to your origin to determine whether the object has been updated. The
// value that you specify applies only when your origin adds HTTP headers such as
// Cache-Control max-age , Cache-Control s-maxage , and Expires to objects. For
// more information, see Managing How Long Content Stays in an Edge Cache
// (Expiration) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide.
//
// Deprecated: This member has been deprecated.
MaxTTL *int64
// This field is deprecated. We recommend that you use the MinTTL field in a cache
// policy instead of this field. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. The minimum amount of time that you
// want objects to stay in CloudFront caches before CloudFront forwards another
// request to your origin to determine whether the object has been updated. For
// more information, see Managing How Long Content Stays in an Edge Cache
// (Expiration) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide. You must specify 0 for MinTTL if you
// configure CloudFront to forward all headers to your origin (under Headers , if
// you specify 1 for Quantity and * for Name ).
//
// Deprecated: This member has been deprecated.
MinTTL *int64
// The unique identifier of the origin request policy that is attached to this
// cache behavior. For more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// or Using the managed origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-origin-request-policies.html)
// in the Amazon CloudFront Developer Guide.
OriginRequestPolicyId *string
// The Amazon Resource Name (ARN) of the real-time log configuration that is
// attached to this cache behavior. For more information, see Real-time logs (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html)
// in the Amazon CloudFront Developer Guide.
RealtimeLogConfigArn *string
// The identifier for a response headers policy.
ResponseHeadersPolicyId *string
// Indicates whether you want to distribute media files in the Microsoft Smooth
// Streaming format using the origin that is associated with this cache behavior.
// If so, specify true ; if not, specify false . If you specify true for
// SmoothStreaming , you can still distribute other content using this cache
// behavior if the content matches the value of PathPattern .
SmoothStreaming *bool
// A list of key groups that CloudFront can use to validate signed URLs or signed
// cookies. When a cache behavior contains trusted key groups, CloudFront requires
// signed URLs or signed cookies for all requests that match the cache behavior.
// The URLs or cookies must be signed with a private key whose corresponding public
// key is in the key group. The signed URL or cookie contains information about
// which public key CloudFront should use to verify the signature. For more
// information, see Serving private content (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// in the Amazon CloudFront Developer Guide.
TrustedKeyGroups *TrustedKeyGroups
// We recommend using TrustedKeyGroups instead of TrustedSigners . A list of Amazon
// Web Services account IDs whose public keys CloudFront can use to validate signed
// URLs or signed cookies. When a cache behavior contains trusted signers,
// CloudFront requires signed URLs or signed cookies for all requests that match
// the cache behavior. The URLs or cookies must be signed with the private key of a
// CloudFront key pair in the trusted signer's Amazon Web Services account. The
// signed URL or cookie contains information about which public key CloudFront
// should use to verify the signature. For more information, see Serving private
// content (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// in the Amazon CloudFront Developer Guide.
TrustedSigners *TrustedSigners
noSmithyDocumentSerde
}
// A complex type that contains zero or more CacheBehavior elements.
type CacheBehaviors struct {
// The number of cache behaviors for this distribution.
//
// This member is required.
Quantity *int32
// Optional: A complex type that contains cache behaviors for this distribution.
// If Quantity is 0 , you can omit Items .
Items []CacheBehavior
noSmithyDocumentSerde
}
// A complex type that controls whether CloudFront caches the response to requests
// using the specified HTTP methods. There are two choices:
// - CloudFront caches responses to GET and HEAD requests.
// - CloudFront caches responses to GET , HEAD , and OPTIONS requests.
//
// If you pick the second choice for your Amazon S3 Origin, you may need to
// forward Access-Control-Request-Method, Access-Control-Request-Headers, and
// Origin headers for the responses to be cached correctly.
type CachedMethods struct {
// A complex type that contains the HTTP methods that you want CloudFront to cache
// responses to.
//
// This member is required.
Items []Method
// The number of HTTP methods for which you want CloudFront to cache responses.
// Valid values are 2 (for caching responses to GET and HEAD requests) and 3 (for
// caching responses to GET , HEAD , and OPTIONS requests).
//
// This member is required.
Quantity *int32
noSmithyDocumentSerde
}
// A cache policy. When it's attached to a cache behavior, the cache policy
// determines the following:
// - The values that CloudFront includes in the cache key. These values can
// include HTTP headers, cookies, and URL query strings. CloudFront uses the cache
// key to find an object in its cache that it can return to the viewer.
// - The default, minimum, and maximum time to live (TTL) values that you want
// objects to stay in the CloudFront cache.
//
// The headers, cookies, and query strings that are included in the cache key are
// also included in requests that CloudFront sends to the origin. CloudFront sends
// a request when it can't find a valid object in its cache that matches the
// request's cache key. If you want to send values to the origin but not include
// them in the cache key, use OriginRequestPolicy .
type CachePolicy struct {
// The cache policy configuration.
//
// This member is required.
CachePolicyConfig *CachePolicyConfig
// The unique identifier for the cache policy.
//
// This member is required.
Id *string
// The date and time when the cache policy was last modified.
//
// This member is required.
LastModifiedTime *time.Time
noSmithyDocumentSerde
}
// A cache policy configuration. This configuration determines the following:
// - The values that CloudFront includes in the cache key. These values can
// include HTTP headers, cookies, and URL query strings. CloudFront uses the cache
// key to find an object in its cache that it can return to the viewer.
// - The default, minimum, and maximum time to live (TTL) values that you want
// objects to stay in the CloudFront cache.
//
// The headers, cookies, and query strings that are included in the cache key are
// also included in requests that CloudFront sends to the origin. CloudFront sends
// a request when it can't find a valid object in its cache that matches the
// request's cache key. If you want to send values to the origin but not include
// them in the cache key, use OriginRequestPolicy .
type CachePolicyConfig struct {
// The minimum amount of time, in seconds, that you want objects to stay in the
// CloudFront cache before CloudFront sends another request to the origin to see if
// the object has been updated. For more information, see Managing How Long
// Content Stays in an Edge Cache (Expiration) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
MinTTL *int64
// A unique name to identify the cache policy.
//
// This member is required.
Name *string
// A comment to describe the cache policy. The comment cannot be longer than 128
// characters.
Comment *string
// The default amount of time, in seconds, that you want objects to stay in the
// CloudFront cache before CloudFront sends another request to the origin to see if
// the object has been updated. CloudFront uses this value as the object's time to
// live (TTL) only when the origin does not send Cache-Control or Expires headers
// with the object. For more information, see Managing How Long Content Stays in
// an Edge Cache (Expiration) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide. The default value for this field is
// 86400 seconds (one day). If the value of MinTTL is more than 86400 seconds,
// then the default value for this field is the same as the value of MinTTL .
DefaultTTL *int64
// The maximum amount of time, in seconds, that objects stay in the CloudFront
// cache before CloudFront sends another request to the origin to see if the object
// has been updated. CloudFront uses this value only when the origin sends
// Cache-Control or Expires headers with the object. For more information, see
// Managing How Long Content Stays in an Edge Cache (Expiration) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide. The default value for this field is
// 31536000 seconds (one year). If the value of MinTTL or DefaultTTL is more than
// 31536000 seconds, then the default value for this field is the same as the value
// of DefaultTTL .
MaxTTL *int64
// The HTTP headers, cookies, and URL query strings to include in the cache key.
// The values included in the cache key are also included in requests that
// CloudFront sends to the origin.
ParametersInCacheKeyAndForwardedToOrigin *ParametersInCacheKeyAndForwardedToOrigin
noSmithyDocumentSerde
}
// An object that determines whether any cookies in viewer requests (and if so,
// which cookies) are included in the cache key and in requests that CloudFront
// sends to the origin.
type CachePolicyCookiesConfig struct {
// Determines whether any cookies in viewer requests are included in the cache key
// and in requests that CloudFront sends to the origin. Valid values are:
// - none – No cookies in viewer requests are included in the cache key or in
// requests that CloudFront sends to the origin. Even when this field is set to
// none , any cookies that are listed in an OriginRequestPolicy are included in
// origin requests.
// - whitelist – Only the cookies in viewer requests that are listed in the
// CookieNames type are included in the cache key and in requests that CloudFront
// sends to the origin.
// - allExcept – All cookies in viewer requests are included in the cache key and
// in requests that CloudFront sends to the origin, except for those that are
// listed in the CookieNames type, which are not included.
// - all – All cookies in viewer requests are included in the cache key and in
// requests that CloudFront sends to the origin.
//
// This member is required.
CookieBehavior CachePolicyCookieBehavior
// Contains a list of cookie names.
Cookies *CookieNames
noSmithyDocumentSerde
}
// An object that determines whether any HTTP headers (and if so, which headers)
// are included in the cache key and in requests that CloudFront sends to the
// origin.
type CachePolicyHeadersConfig struct {
// Determines whether any HTTP headers are included in the cache key and in
// requests that CloudFront sends to the origin. Valid values are:
// - none – No HTTP headers are included in the cache key or in requests that
// CloudFront sends to the origin. Even when this field is set to none , any
// headers that are listed in an OriginRequestPolicy are included in origin
// requests.
// - whitelist – Only the HTTP headers that are listed in the Headers type are
// included in the cache key and in requests that CloudFront sends to the origin.
//
// This member is required.
HeaderBehavior CachePolicyHeaderBehavior
// Contains a list of HTTP header names.
Headers *Headers
noSmithyDocumentSerde
}
// A list of cache policies.
type CachePolicyList struct {
// The maximum number of cache policies requested.
//
// This member is required.
MaxItems *int32
// The total number of cache policies returned in the response.
//
// This member is required.
Quantity *int32
// Contains the cache policies in the list.
Items []CachePolicySummary
// If there are more items in the list than are in this response, this element is
// present. It contains the value that you should use in the Marker field of a
// subsequent request to continue listing cache policies where you left off.
NextMarker *string
noSmithyDocumentSerde
}
// An object that determines whether any URL query strings in viewer requests (and
// if so, which query strings) are included in the cache key and in requests that
// CloudFront sends to the origin.
type CachePolicyQueryStringsConfig struct {
// Determines whether any URL query strings in viewer requests are included in the
// cache key and in requests that CloudFront sends to the origin. Valid values are:
//
// - none – No query strings in viewer requests are included in the cache key or
// in requests that CloudFront sends to the origin. Even when this field is set to
// none , any query strings that are listed in an OriginRequestPolicy are
// included in origin requests.
// - whitelist – Only the query strings in viewer requests that are listed in the
// QueryStringNames type are included in the cache key and in requests that
// CloudFront sends to the origin.
// - allExcept – All query strings in viewer requests are included in the cache
// key and in requests that CloudFront sends to the origin, except those that are
// listed in the QueryStringNames type, which are not included.
// - all – All query strings in viewer requests are included in the cache key and
// in requests that CloudFront sends to the origin.
//
// This member is required.
QueryStringBehavior CachePolicyQueryStringBehavior
// Contains the specific query strings in viewer requests that either are or are
// not included in the cache key and in requests that CloudFront sends to the
// origin. The behavior depends on whether the QueryStringBehavior field in the
// CachePolicyQueryStringsConfig type is set to whitelist (the listed query
// strings are included) or allExcept (the listed query strings are not included,
// but all other query strings are).
QueryStrings *QueryStringNames
noSmithyDocumentSerde
}
// Contains a cache policy.
type CachePolicySummary struct {
// The cache policy.
//
// This member is required.
CachePolicy *CachePolicy
// The type of cache policy, either managed (created by Amazon Web Services) or
// custom (created in this Amazon Web Services account).
//
// This member is required.
Type CachePolicyType
noSmithyDocumentSerde
}
// CloudFront origin access identity.
type CloudFrontOriginAccessIdentity struct {
// The ID for the origin access identity, for example, E74FTE3AJFJ256A .
//
// This member is required.
Id *string
// The Amazon S3 canonical user ID for the origin access identity, used when
// giving the origin access identity read permission to an object in Amazon S3.
//
// This member is required.
S3CanonicalUserId *string
// The current configuration information for the identity.
CloudFrontOriginAccessIdentityConfig *CloudFrontOriginAccessIdentityConfig
noSmithyDocumentSerde
}
// Origin access identity configuration. Send a GET request to the /CloudFront API
// version/CloudFront/identity ID/config resource.
type CloudFrontOriginAccessIdentityConfig struct {
// A unique value (for example, a date-time stamp) that ensures that the request
// can't be replayed. If the value of CallerReference is new (regardless of the
// content of the CloudFrontOriginAccessIdentityConfig object), a new origin
// access identity is created. If the CallerReference is a value already sent in a
// previous identity request, and the content of the
// CloudFrontOriginAccessIdentityConfig is identical to the original request
// (ignoring white space), the response includes the same information returned to
// the original request. If the CallerReference is a value you already sent in a
// previous request to create an identity, but the content of the
// CloudFrontOriginAccessIdentityConfig is different from the original request,
// CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists error.
//
// This member is required.
CallerReference *string
// A comment to describe the origin access identity. The comment cannot be longer
// than 128 characters.
//
// This member is required.
Comment *string
noSmithyDocumentSerde
}
// Lists the origin access identities for CloudFront.Send a GET request to the
// /CloudFront API version/origin-access-identity/cloudfront resource. The response
// includes a CloudFrontOriginAccessIdentityList element with zero or more
// CloudFrontOriginAccessIdentitySummary child elements. By default, your entire
// list of origin access identities is returned in one single page. If the list is
// long, you can paginate it using the MaxItems and Marker parameters.
type CloudFrontOriginAccessIdentityList struct {
// A flag that indicates whether more origin access identities remain to be
// listed. If your results were truncated, you can make a follow-up pagination
// request using the Marker request parameter to retrieve more items in the list.
//
// This member is required.
IsTruncated *bool
// Use this when paginating results to indicate where to begin in your list of
// origin access identities. The results include identities in the list that occur
// after the marker. To get the next page of results, set the Marker to the value
// of the NextMarker from the current page's response (which is also the ID of the
// last identity on that page).
//
// This member is required.
Marker *string
// The maximum number of origin access identities you want in the response body.
//
// This member is required.
MaxItems *int32
// The number of CloudFront origin access identities that were created by the
// current Amazon Web Services account.
//
// This member is required.
Quantity *int32
// A complex type that contains one CloudFrontOriginAccessIdentitySummary element
// for each origin access identity that was created by the current Amazon Web
// Services account.
Items []CloudFrontOriginAccessIdentitySummary
// If IsTruncated is true , this element is present and contains the value you can
// use for the Marker request parameter to continue listing your origin access
// identities where they left off.
NextMarker *string
noSmithyDocumentSerde
}
// Summary of the information about a CloudFront origin access identity.
type CloudFrontOriginAccessIdentitySummary struct {
// The comment for this origin access identity, as originally specified when
// created.
//
// This member is required.
Comment *string
// The ID for the origin access identity. For example: E74FTE3AJFJ256A .
//
// This member is required.
Id *string
// The Amazon S3 canonical user ID for the origin access identity, which you use
// when giving the origin access identity read permission to an object in Amazon
// S3.
//
// This member is required.
S3CanonicalUserId *string
noSmithyDocumentSerde
}
// An alias (also called a CNAME) and the CloudFront distribution and Amazon Web
// Services account ID that it's associated with. The distribution and account IDs
// are partially hidden, which allows you to identify the distributions and
// accounts that you own, but helps to protect the information of ones that you
// don't own.
type ConflictingAlias struct {
// The (partially hidden) ID of the Amazon Web Services account that owns the
// distribution that's associated with the alias.
AccountId *string
// An alias (also called a CNAME).
Alias *string
// The (partially hidden) ID of the CloudFront distribution associated with the
// alias.
DistributionId *string
noSmithyDocumentSerde
}
// A list of aliases (also called CNAMEs) and the CloudFront distributions and
// Amazon Web Services accounts that they are associated with. In the list, the
// distribution and account IDs are partially hidden, which allows you to identify
// the distributions and accounts that you own, but helps to protect the
// information of ones that you don't own.
type ConflictingAliasesList struct {
// Contains the conflicting aliases in the list.
Items []ConflictingAlias
// The maximum number of conflicting aliases requested.
MaxItems *int32
// If there are more items in the list than are in this response, this element is
// present. It contains the value that you should use in the Marker field of a
// subsequent request to continue listing conflicting aliases where you left off.
NextMarker *string
// The number of conflicting aliases returned in the response.
Quantity *int32
noSmithyDocumentSerde
}
// A field-level encryption content type profile.
type ContentTypeProfile struct {
// The content type for a field-level encryption content type-profile mapping.
//
// This member is required.
ContentType *string
// The format for a field-level encryption content type-profile mapping.
//
// This member is required.
Format Format
// The profile ID for a field-level encryption content type-profile mapping.
ProfileId *string
noSmithyDocumentSerde
}
// The configuration for a field-level encryption content type-profile mapping.
type ContentTypeProfileConfig struct {
// The setting in a field-level encryption content type-profile mapping that
// specifies what to do when an unknown content type is provided for the profile.
// If true, content is forwarded without being encrypted when the content type is
// unknown. If false (the default), an error is returned when the content type is
// unknown.
//
// This member is required.
ForwardWhenContentTypeIsUnknown *bool
// The configuration for a field-level encryption content type-profile.
ContentTypeProfiles *ContentTypeProfiles
noSmithyDocumentSerde
}
// Field-level encryption content type-profile.
type ContentTypeProfiles struct {
// The number of field-level encryption content type-profile mappings.
//
// This member is required.
Quantity *int32
// Items in a field-level encryption content type-profile mapping.
Items []ContentTypeProfile
noSmithyDocumentSerde
}
// A continuous deployment policy.
type ContinuousDeploymentPolicy struct {
// Contains the configuration for a continuous deployment policy.
//
// This member is required.
ContinuousDeploymentPolicyConfig *ContinuousDeploymentPolicyConfig
// The identifier of the continuous deployment policy.
//
// This member is required.
Id *string
// The date and time the continuous deployment policy was last modified.
//
// This member is required.
LastModifiedTime *time.Time
noSmithyDocumentSerde
}
// Contains the configuration for a continuous deployment policy.
type ContinuousDeploymentPolicyConfig struct {
// A Boolean that indicates whether this continuous deployment policy is enabled
// (in effect). When this value is true , this policy is enabled and in effect.
// When this value is false , this policy is not enabled and has no effect.
//
// This member is required.
Enabled *bool
// The CloudFront domain name of the staging distribution. For example:
// d111111abcdef8.cloudfront.net .
//
// This member is required.
StagingDistributionDnsNames *StagingDistributionDnsNames
// Contains the parameters for routing production traffic from your primary to
// staging distributions.
TrafficConfig *TrafficConfig
noSmithyDocumentSerde
}
// Contains a list of continuous deployment policies.
type ContinuousDeploymentPolicyList struct {
// The maximum number of continuous deployment policies that were specified in
// your request.
//
// This member is required.
MaxItems *int32
// The total number of continuous deployment policies in your Amazon Web Services
// account, regardless of the MaxItems value.
//
// This member is required.
Quantity *int32
// A list of continuous deployment policy items.
Items []ContinuousDeploymentPolicySummary
// Indicates the next page of continuous deployment policies. To get the next page
// of the list, use this value in the Marker field of your request.
NextMarker *string
noSmithyDocumentSerde
}
// A summary of the information about your continuous deployment policies.
type ContinuousDeploymentPolicySummary struct {
// The continuous deployment policy.
//
// This member is required.
ContinuousDeploymentPolicy *ContinuousDeploymentPolicy
noSmithyDocumentSerde
}
// This configuration determines which HTTP requests are sent to the staging
// distribution. If the HTTP request contains a header and value that matches what
// you specify here, the request is sent to the staging distribution. Otherwise the
// request is sent to the primary distribution.
type ContinuousDeploymentSingleHeaderConfig struct {
// The request header name that you want CloudFront to send to your staging
// distribution. The header must contain the prefix aws-cf-cd- .
//
// This member is required.
Header *string
// The request header value.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// Contains the percentage of traffic to send to a staging distribution.
type ContinuousDeploymentSingleWeightConfig struct {
// The percentage of traffic to send to a staging distribution, expressed as a
// decimal number between 0 and .15.
//
// This member is required.
Weight *float32
// Session stickiness provides the ability to define multiple requests from a
// single viewer as a single session. This prevents the potentially inconsistent
// experience of sending some of a given user's requests to your staging
// distribution, while others are sent to your primary distribution. Define the
// session duration using TTL values.
SessionStickinessConfig *SessionStickinessConfig
noSmithyDocumentSerde
}
// Contains a list of cookie names.
type CookieNames struct {
// The number of cookie names in the Items list.
//
// This member is required.
Quantity *int32
// A list of cookie names.
Items []string
noSmithyDocumentSerde
}
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. If you want to include cookies in the
// cache key, use CookiesConfig in a cache policy. See CachePolicy . If you want to
// send cookies to the origin but not include them in the cache key, use
// CookiesConfig in an origin request policy. See OriginRequestPolicy . A complex
// type that specifies whether you want CloudFront to forward cookies to the origin
// and, if so, which ones. For more information about forwarding cookies to the
// origin, see Caching Content Based on Cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Cookies.html)
// in the Amazon CloudFront Developer Guide.
type CookiePreference struct {
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. If you want to include cookies in the
// cache key, use a cache policy. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// in the Amazon CloudFront Developer Guide. If you want to send cookies to the
// origin but not include them in the cache key, use origin request policy. For
// more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// in the Amazon CloudFront Developer Guide. Specifies which cookies to forward to
// the origin for this cache behavior: all, none, or the list of cookies specified
// in the WhitelistedNames complex type. Amazon S3 doesn't process cookies. When
// the cache behavior is forwarding requests to an Amazon S3 origin, specify none
// for the Forward element.
//
// This member is required.
Forward ItemSelection
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. If you want to include cookies in the
// cache key, use a cache policy. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// in the Amazon CloudFront Developer Guide. If you want to send cookies to the
// origin but not include them in the cache key, use an origin request policy. For
// more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// in the Amazon CloudFront Developer Guide. Required if you specify whitelist for
// the value of Forward . A complex type that specifies how many different cookies
// you want CloudFront to forward to the origin for this cache behavior and, if you
// want to forward selected cookies, the names of those cookies. If you specify all
// or none for the value of Forward , omit WhitelistedNames . If you change the
// value of Forward from whitelist to all or none and you don't delete the
// WhitelistedNames element and its child elements, CloudFront deletes them
// automatically. For the current limit on the number of cookie names that you can
// whitelist for each cache behavior, see CloudFront Limits (https://docs.aws.amazon.com/general/latest/gr/xrefaws_service_limits.html#limits_cloudfront)
// in the Amazon Web Services General Reference.
WhitelistedNames *CookieNames
noSmithyDocumentSerde
}
// A complex type that controls:
// - Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with
// custom error messages before returning the response to the viewer.
// - How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
//
// For more information about custom error pages, see Customizing Error Responses (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)
// in the Amazon CloudFront Developer Guide.
type CustomErrorResponse struct {
// The HTTP status code for which you want to specify a custom error page and/or a
// caching duration.
//
// This member is required.
ErrorCode *int32
// The minimum amount of time, in seconds, that you want CloudFront to cache the
// HTTP status code specified in ErrorCode . When this time period has elapsed,
// CloudFront queries your origin to see whether the problem that caused the error
// has been resolved and the requested object is now available. For more
// information, see Customizing Error Responses (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)
// in the Amazon CloudFront Developer Guide.
ErrorCachingMinTTL *int64
// The HTTP status code that you want CloudFront to return to the viewer along
// with the custom error page. There are a variety of reasons that you might want
// CloudFront to return a status code different from the status code that your
// origin returned to CloudFront, for example:
// - Some Internet devices (some firewalls and corporate proxies, for example)
// intercept HTTP 4xx and 5xx and prevent the response from being returned to the
// viewer. If you substitute 200 , the response typically won't be intercepted.
// - If you don't care about distinguishing among different client errors or
// server errors, you can specify 400 or 500 as the ResponseCode for all 4xx or
// 5xx errors.
// - You might want to return a 200 status code (OK) and static website so your
// customers don't know that your website is down.
// If you specify a value for ResponseCode , you must also specify a value for
// ResponsePagePath .
ResponseCode *string
// The path to the custom error page that you want CloudFront to return to a
// viewer when your origin returns the HTTP status code specified by ErrorCode ,
// for example, /4xx-errors/403-forbidden.html . If you want to store your objects
// and your custom error pages in different locations, your distribution must
// include a cache behavior for which the following is true:
// - The value of PathPattern matches the path to your custom error messages. For
// example, suppose you saved custom error pages for 4xx errors in an Amazon S3
// bucket in a directory named /4xx-errors . Your distribution must include a
// cache behavior for which the path pattern routes requests for your custom error
// pages to that location, for example, /4xx-errors/* .
// - The value of TargetOriginId specifies the value of the ID element for the
// origin that contains your custom error pages.
// If you specify a value for ResponsePagePath , you must also specify a value for
// ResponseCode . We recommend that you store custom error pages in an Amazon S3
// bucket. If you store custom error pages on an HTTP server and the server starts
// to return 5xx errors, CloudFront can't get the files that you want to return to
// viewers because the origin server is unavailable.
ResponsePagePath *string
noSmithyDocumentSerde
}
// A complex type that controls:
// - Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with
// custom error messages before returning the response to the viewer.
// - How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
//
// For more information about custom error pages, see Customizing Error Responses (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)
// in the Amazon CloudFront Developer Guide.
type CustomErrorResponses struct {
// The number of HTTP status codes for which you want to specify a custom error
// page and/or a caching duration. If Quantity is 0 , you can omit Items .
//
// This member is required.
Quantity *int32
// A complex type that contains a CustomErrorResponse element for each HTTP status
// code for which you want to specify a custom error page and/or a caching
// duration.
Items []CustomErrorResponse
noSmithyDocumentSerde
}
// A complex type that contains the list of Custom Headers for each origin.
type CustomHeaders struct {
// The number of custom headers, if any, for this distribution.
//
// This member is required.
Quantity *int32
// Optional: A list that contains one OriginCustomHeader element for each custom
// header that you want CloudFront to forward to the origin. If Quantity is 0 ,
// omit Items .
Items []OriginCustomHeader
noSmithyDocumentSerde
}
// A custom origin. A custom origin is any origin that is not an Amazon S3 bucket,
// with one exception. An Amazon S3 bucket that is configured with static website
// hosting (https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html) is
// a custom origin.
type CustomOriginConfig struct {
// The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP
// port that the origin listens on.
//
// This member is required.
HTTPPort *int32
// The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS
// port that the origin listens on.
//
// This member is required.
HTTPSPort *int32
// Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the
// origin. Valid values are:
// - http-only – CloudFront always uses HTTP to connect to the origin.
// - match-viewer – CloudFront connects to the origin using the same protocol
// that the viewer used to connect to CloudFront.
// - https-only – CloudFront always uses HTTPS to connect to the origin.
//
// This member is required.
OriginProtocolPolicy OriginProtocolPolicy
// Specifies how long, in seconds, CloudFront persists its connection to the
// origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the
// default (if you don't specify otherwise) is 5 seconds. For more information, see
// Origin Keep-alive Timeout (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginKeepaliveTimeout)
// in the Amazon CloudFront Developer Guide.
OriginKeepaliveTimeout *int32
// Specifies how long, in seconds, CloudFront waits for a response from the
// origin. This is also known as the origin response timeout. The minimum timeout
// is 1 second, the maximum is 60 seconds, and the default (if you don't specify
// otherwise) is 30 seconds. For more information, see Origin Response Timeout (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginResponseTimeout)
// in the Amazon CloudFront Developer Guide.
OriginReadTimeout *int32
// Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to
// your origin over HTTPS. Valid values include SSLv3 , TLSv1 , TLSv1.1 , and
// TLSv1.2 . For more information, see Minimum Origin SSL Protocol (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginSSLProtocols)
// in the Amazon CloudFront Developer Guide.
OriginSslProtocols *OriginSslProtocols
noSmithyDocumentSerde
}
// A complex type that describes the default cache behavior if you don't specify a
// CacheBehavior element or if request URLs don't match any of the values of
// PathPattern in CacheBehavior elements. You must create exactly one default
// cache behavior.
type DefaultCacheBehavior struct {
// The value of ID for the origin that you want CloudFront to route requests to
// when they use the default cache behavior.
//
// This member is required.
TargetOriginId *string
// The protocol that viewers can use to access the files in the origin specified
// by TargetOriginId when a request matches the path pattern in PathPattern . You
// can specify the following options:
// - allow-all : Viewers can use HTTP or HTTPS.
// - redirect-to-https : If a viewer submits an HTTP request, CloudFront returns
// an HTTP status code of 301 (Moved Permanently) to the viewer along with the
// HTTPS URL. The viewer then resubmits the request using the new URL.
// - https-only : If a viewer sends an HTTP request, CloudFront returns an HTTP
// status code of 403 (Forbidden).
// For more information about requiring the HTTPS protocol, see Requiring HTTPS
// Between Viewers and CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https-viewers-to-cloudfront.html)
// in the Amazon CloudFront Developer Guide. The only way to guarantee that viewers
// retrieve an object that was fetched from the origin using HTTPS is never to use
// any other protocol to fetch the object. If you have recently changed from HTTP
// to HTTPS, we recommend that you clear your objects' cache because cached objects
// are protocol agnostic. That means that an edge location will return an object
// from the cache regardless of whether the current request protocol matches the
// protocol used previously. For more information, see Managing Cache Expiration (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
ViewerProtocolPolicy ViewerProtocolPolicy
// A complex type that controls which HTTP methods CloudFront processes and
// forwards to your Amazon S3 bucket or your custom origin. There are three
// choices:
// - CloudFront forwards only GET and HEAD requests.
// - CloudFront forwards only GET , HEAD , and OPTIONS requests.
// - CloudFront forwards GET, HEAD, OPTIONS, PUT, PATCH, POST , and DELETE
// requests.
// If you pick the third choice, you may need to restrict access to your Amazon S3
// bucket or to your custom origin so users can't perform operations that you don't
// want them to. For example, you might not want users to have permissions to
// delete objects from your origin.
AllowedMethods *AllowedMethods
// The unique identifier of the cache policy that is attached to the default cache
// behavior. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. A DefaultCacheBehavior must include
// either a CachePolicyId or ForwardedValues . We recommend that you use a
// CachePolicyId .
CachePolicyId *string
// Whether you want CloudFront to automatically compress certain files for this
// cache behavior. If so, specify true ; if not, specify false . For more
// information, see Serving Compressed Files (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/ServingCompressedFiles.html)
// in the Amazon CloudFront Developer Guide.
Compress *bool
// This field is deprecated. We recommend that you use the DefaultTTL field in a
// cache policy instead of this field. For more information, see Creating cache
// policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. The default amount of time that you
// want objects to stay in CloudFront caches before CloudFront forwards another
// request to your origin to determine whether the object has been updated. The
// value that you specify applies only when your origin does not add HTTP headers
// such as Cache-Control max-age , Cache-Control s-maxage , and Expires to
// objects. For more information, see Managing How Long Content Stays in an Edge
// Cache (Expiration) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide.
//
// Deprecated: This member has been deprecated.
DefaultTTL *int64
// The value of ID for the field-level encryption configuration that you want
// CloudFront to use for encrypting specific fields of data for the default cache
// behavior.
FieldLevelEncryptionId *string
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. For more information, see Working with
// policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/working-with-policies.html)
// in the Amazon CloudFront Developer Guide. If you want to include values in the
// cache key, use a cache policy. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. If you want to send values to the
// origin but not include them in the cache key, use an origin request policy. For
// more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// or Using the managed origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-origin-request-policies.html)
// in the Amazon CloudFront Developer Guide. A DefaultCacheBehavior must include
// either a CachePolicyId or ForwardedValues . We recommend that you use a
// CachePolicyId . A complex type that specifies how CloudFront handles query
// strings, cookies, and HTTP headers.
//
// Deprecated: This member has been deprecated.
ForwardedValues *ForwardedValues
// A list of CloudFront functions that are associated with this cache behavior.
// CloudFront functions must be published to the LIVE stage to associate them with
// a cache behavior.
FunctionAssociations *FunctionAssociations
// A complex type that contains zero or more Lambda@Edge function associations for
// a cache behavior.
LambdaFunctionAssociations *LambdaFunctionAssociations
// This field is deprecated. We recommend that you use the MaxTTL field in a cache
// policy instead of this field. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. The maximum amount of time that you
// want objects to stay in CloudFront caches before CloudFront forwards another
// request to your origin to determine whether the object has been updated. The
// value that you specify applies only when your origin adds HTTP headers such as
// Cache-Control max-age , Cache-Control s-maxage , and Expires to objects. For
// more information, see Managing How Long Content Stays in an Edge Cache
// (Expiration) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide.
//
// Deprecated: This member has been deprecated.
MaxTTL *int64
// This field is deprecated. We recommend that you use the MinTTL field in a cache
// policy instead of this field. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// or Using the managed cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html)
// in the Amazon CloudFront Developer Guide. The minimum amount of time that you
// want objects to stay in CloudFront caches before CloudFront forwards another
// request to your origin to determine whether the object has been updated. For
// more information, see Managing How Long Content Stays in an Edge Cache
// (Expiration) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html)
// in the Amazon CloudFront Developer Guide. You must specify 0 for MinTTL if you
// configure CloudFront to forward all headers to your origin (under Headers , if
// you specify 1 for Quantity and * for Name ).
//
// Deprecated: This member has been deprecated.
MinTTL *int64
// The unique identifier of the origin request policy that is attached to the
// default cache behavior. For more information, see Creating origin request
// policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// or Using the managed origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-origin-request-policies.html)
// in the Amazon CloudFront Developer Guide.
OriginRequestPolicyId *string
// The Amazon Resource Name (ARN) of the real-time log configuration that is
// attached to this cache behavior. For more information, see Real-time logs (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html)
// in the Amazon CloudFront Developer Guide.
RealtimeLogConfigArn *string
// The identifier for a response headers policy.
ResponseHeadersPolicyId *string
// Indicates whether you want to distribute media files in the Microsoft Smooth
// Streaming format using the origin that is associated with this cache behavior.
// If so, specify true ; if not, specify false . If you specify true for
// SmoothStreaming , you can still distribute other content using this cache
// behavior if the content matches the value of PathPattern .
SmoothStreaming *bool
// A list of key groups that CloudFront can use to validate signed URLs or signed
// cookies. When a cache behavior contains trusted key groups, CloudFront requires
// signed URLs or signed cookies for all requests that match the cache behavior.
// The URLs or cookies must be signed with a private key whose corresponding public
// key is in the key group. The signed URL or cookie contains information about
// which public key CloudFront should use to verify the signature. For more
// information, see Serving private content (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// in the Amazon CloudFront Developer Guide.
TrustedKeyGroups *TrustedKeyGroups
// We recommend using TrustedKeyGroups instead of TrustedSigners . A list of Amazon
// Web Services account IDs whose public keys CloudFront can use to validate signed
// URLs or signed cookies. When a cache behavior contains trusted signers,
// CloudFront requires signed URLs or signed cookies for all requests that match
// the cache behavior. The URLs or cookies must be signed with the private key of a
// CloudFront key pair in a trusted signer's Amazon Web Services account. The
// signed URL or cookie contains information about which public key CloudFront
// should use to verify the signature. For more information, see Serving private
// content (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// in the Amazon CloudFront Developer Guide.
TrustedSigners *TrustedSigners
noSmithyDocumentSerde
}
// A distribution tells CloudFront where you want content to be delivered from,
// and the details about how to track and manage content delivery.
type Distribution struct {
// The distribution's Amazon Resource Name (ARN).
//
// This member is required.
ARN *string
// The distribution's configuration.
//
// This member is required.
DistributionConfig *DistributionConfig
// The distribution's CloudFront domain name. For example:
// d111111abcdef8.cloudfront.net .
//
// This member is required.
DomainName *string
// The distribution's identifier. For example: E1U5RQF7T870K0 .
//
// This member is required.
Id *string
// The number of invalidation batches currently in progress.
//
// This member is required.
InProgressInvalidationBatches *int32
// The date and time when the distribution was last modified.
//
// This member is required.
LastModifiedTime *time.Time
// The distribution's status. When the status is Deployed , the distribution's
// information is fully propagated to all CloudFront edge locations.
//
// This member is required.
Status *string
// This field contains a list of key groups and the public keys in each key group
// that CloudFront can use to verify the signatures of signed URLs or signed
// cookies.
ActiveTrustedKeyGroups *ActiveTrustedKeyGroups
// We recommend using TrustedKeyGroups instead of TrustedSigners . This field
// contains a list of Amazon Web Services account IDs and the active CloudFront key
// pairs in each account that CloudFront can use to verify the signatures of signed
// URLs or signed cookies.
ActiveTrustedSigners *ActiveTrustedSigners
// Amazon Web Services services in China customers must file for an Internet
// Content Provider (ICP) recordal if they want to serve content publicly on an
// alternate domain name, also known as a CNAME, that they've added to CloudFront.
// AliasICPRecordal provides the ICP recordal status for CNAMEs associated with
// distributions. For more information about ICP recordals, see Signup, Accounts,
// and Credentials (https://docs.amazonaws.cn/en_us/aws/latest/userguide/accounts-and-credentials.html)
// in Getting Started with Amazon Web Services services in China.
AliasICPRecordals []AliasICPRecordal
noSmithyDocumentSerde
}
// A distribution configuration.
type DistributionConfig struct {
// A unique value (for example, a date-time stamp) that ensures that the request
// can't be replayed. If the value of CallerReference is new (regardless of the
// content of the DistributionConfig object), CloudFront creates a new
// distribution. If CallerReference is a value that you already sent in a previous
// request to create a distribution, CloudFront returns a DistributionAlreadyExists
// error.
//
// This member is required.
CallerReference *string
// A comment to describe the distribution. The comment cannot be longer than 128
// characters.
//
// This member is required.
Comment *string
// A complex type that describes the default cache behavior if you don't specify a
// CacheBehavior element or if files don't match any of the values of PathPattern
// in CacheBehavior elements. You must create exactly one default cache behavior.
//
// This member is required.
DefaultCacheBehavior *DefaultCacheBehavior
// From this field, you can enable or disable the selected distribution.
//
// This member is required.
Enabled *bool
// A complex type that contains information about origins for this distribution.
//
// This member is required.
Origins *Origins
// A complex type that contains information about CNAMEs (alternate domain names),
// if any, for this distribution.
Aliases *Aliases
// A complex type that contains zero or more CacheBehavior elements.
CacheBehaviors *CacheBehaviors
// The identifier of a continuous deployment policy. For more information, see
// CreateContinuousDeploymentPolicy .
ContinuousDeploymentPolicyId *string
// A complex type that controls the following:
// - Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with
// custom error messages before returning the response to the viewer.
// - How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
// For more information about custom error pages, see Customizing Error Responses (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)
// in the Amazon CloudFront Developer Guide.
CustomErrorResponses *CustomErrorResponses
// The object that you want CloudFront to request from your origin (for example,
// index.html ) when a viewer requests the root URL for your distribution (
// https://www.example.com ) instead of an object in your distribution (
// https://www.example.com/product-description.html ). Specifying a default root
// object avoids exposing the contents of your distribution. Specify only the
// object name, for example, index.html . Don't add a / before the object name. If
// you don't want to specify a default root object when you create a distribution,
// include an empty DefaultRootObject element. To delete the default root object
// from an existing distribution, update the distribution configuration and include
// an empty DefaultRootObject element. To replace the default root object, update
// the distribution configuration and specify the new object. For more information
// about the default root object, see Creating a Default Root Object (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DefaultRootObject.html)
// in the Amazon CloudFront Developer Guide.
DefaultRootObject *string
// (Optional) Specify the maximum HTTP version(s) that you want viewers to use to
// communicate with CloudFront. The default value for new web distributions is
// http2 . Viewers that don't support HTTP/2 automatically use an earlier HTTP
// version. For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2
// or later, and must support Server Name Indication (SNI). For viewers and
// CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name
// Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the
// viewer to switch networks without losing connection. For more information about
// connection migration, see Connection Migration (https://www.rfc-editor.org/rfc/rfc9000.html#name-connection-migration)
// at RFC 9000. For more information about supported TLSv1.3 ciphers, see
// Supported protocols and ciphers between viewers and CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/secure-connections-supported-viewer-protocols-ciphers.html)
// .
HttpVersion HttpVersion
// If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for
// your distribution, specify true . If you specify false , CloudFront responds to
// IPv6 DNS requests with the DNS response code NOERROR and with no IP addresses.
// This allows viewers to submit a second request, for an IPv4 address for your
// distribution. In general, you should enable IPv6 if you have users on IPv6
// networks who want to access your content. However, if you're using signed URLs
// or signed cookies to restrict access to your content, and if you're using a
// custom policy that includes the IpAddress parameter to restrict the IP
// addresses that can access your content, don't enable IPv6. If you want to
// restrict access to some content by IP address and not restrict access to other
// content (or restrict access but not by IP address), you can create two
// distributions. For more information, see Creating a Signed URL Using a Custom
// Policy (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-creating-signed-url-custom-policy.html)
// in the Amazon CloudFront Developer Guide. If you're using an Route 53 Amazon Web
// Services Integration alias resource record set to route traffic to your
// CloudFront distribution, you need to create a second alias resource record set
// when both of the following are true:
// - You enable IPv6 for the distribution
// - You're using alternate domain names in the URLs for your objects
// For more information, see Routing Traffic to an Amazon CloudFront Web
// Distribution by Using Your Domain Name (https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-to-cloudfront-distribution.html)
// in the Route 53 Amazon Web Services Integration Developer Guide. If you created
// a CNAME resource record set, either with Route 53 Amazon Web Services
// Integration or with another DNS service, you don't need to make any changes. A
// CNAME record will route traffic to your distribution regardless of the IP
// address format of the viewer request.
IsIPV6Enabled *bool
// A complex type that controls whether access logs are written for the
// distribution. For more information about logging, see Access Logs (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/AccessLogs.html)
// in the Amazon CloudFront Developer Guide.
Logging *LoggingConfig
// A complex type that contains information about origin groups for this
// distribution.
OriginGroups *OriginGroups
// The price class that corresponds with the maximum price that you want to pay
// for CloudFront service. If you specify PriceClass_All , CloudFront responds to
// requests for your objects from all CloudFront edge locations. If you specify a
// price class other than PriceClass_All , CloudFront serves your objects from the
// CloudFront edge location that has the lowest latency among the edge locations in
// your price class. Viewers who are in or near regions that are excluded from your
// specified price class may encounter slower performance. For more information
// about price classes, see Choosing the Price Class for a CloudFront Distribution (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PriceClass.html)
// in the Amazon CloudFront Developer Guide. For information about CloudFront
// pricing, including how price classes (such as Price Class 100) map to CloudFront
// regions, see Amazon CloudFront Pricing (http://aws.amazon.com/cloudfront/pricing/)
// .
PriceClass PriceClass
// A complex type that identifies ways in which you want to restrict distribution
// of your content.
Restrictions *Restrictions
// A Boolean that indicates whether this is a staging distribution. When this
// value is true , this is a staging distribution. When this value is false , this
// is not a staging distribution.
Staging *bool
// A complex type that determines the distribution's SSL/TLS configuration for
// communicating with viewers.
ViewerCertificate *ViewerCertificate
// A unique identifier that specifies the WAF web ACL, if any, to associate with
// this distribution. To specify a web ACL created using the latest version of WAF,
// use the ACL ARN, for example
// arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a
// . To specify a web ACL created using WAF Classic, use the ACL ID, for example
// 473e64fd-f30b-4765-81a0-62ad96dd167a . WAF is a web application firewall that
// lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront,
// and lets you control access to your content. Based on conditions that you
// specify, such as the IP addresses that requests originate from or the values of
// query strings, CloudFront responds to requests either with the requested content
// or with an HTTP 403 status code (Forbidden). You can also configure CloudFront
// to return a custom error page when a request is blocked. For more information
// about WAF, see the WAF Developer Guide (https://docs.aws.amazon.com/waf/latest/developerguide/what-is-aws-waf.html)
// .
WebACLId *string
noSmithyDocumentSerde
}
// A distribution Configuration and a list of tags to be associated with the
// distribution.
type DistributionConfigWithTags struct {
// A distribution configuration.
//
// This member is required.
DistributionConfig *DistributionConfig
// A complex type that contains zero or more Tag elements.
//
// This member is required.
Tags *Tags
noSmithyDocumentSerde
}
// A list of distribution IDs.
type DistributionIdList struct {
// A flag that indicates whether more distribution IDs remain to be listed. If
// your results were truncated, you can make a subsequent request using the Marker
// request field to retrieve more distribution IDs in the list.
//
// This member is required.
IsTruncated *bool
// The value provided in the Marker request field.
//
// This member is required.
Marker *string
// The maximum number of distribution IDs requested.
//
// This member is required.
MaxItems *int32
// The total number of distribution IDs returned in the response.
//
// This member is required.
Quantity *int32
// Contains the distribution IDs in the list.
Items []string
// Contains the value that you should use in the Marker field of a subsequent
// request to continue listing distribution IDs where you left off.
NextMarker *string
noSmithyDocumentSerde
}
// A distribution list.
type DistributionList struct {
// A flag that indicates whether more distributions remain to be listed. If your
// results were truncated, you can make a follow-up pagination request using the
// Marker request parameter to retrieve more distributions in the list.
//
// This member is required.
IsTruncated *bool
// The value you provided for the Marker request parameter.
//
// This member is required.
Marker *string
// The value you provided for the MaxItems request parameter.
//
// This member is required.
MaxItems *int32
// The number of distributions that were created by the current Amazon Web
// Services account.
//
// This member is required.
Quantity *int32
// A complex type that contains one DistributionSummary element for each
// distribution that was created by the current Amazon Web Services account.
Items []DistributionSummary
// If IsTruncated is true , this element is present and contains the value you can
// use for the Marker request parameter to continue listing your distributions
// where they left off.
NextMarker *string
noSmithyDocumentSerde
}
// A summary of the information about a CloudFront distribution.
type DistributionSummary struct {
// The ARN (Amazon Resource Name) for the distribution. For example:
// arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5 , where
// 123456789012 is your Amazon Web Services account ID.
//
// This member is required.
ARN *string
// A complex type that contains information about CNAMEs (alternate domain names),
// if any, for this distribution.
//
// This member is required.
Aliases *Aliases
// A complex type that contains zero or more CacheBehavior elements.
//
// This member is required.
CacheBehaviors *CacheBehaviors
// The comment originally specified when this distribution was created.
//
// This member is required.
Comment *string
// A complex type that contains zero or more CustomErrorResponses elements.
//
// This member is required.
CustomErrorResponses *CustomErrorResponses
// A complex type that describes the default cache behavior if you don't specify a
// CacheBehavior element or if files don't match any of the values of PathPattern
// in CacheBehavior elements. You must create exactly one default cache behavior.
//
// This member is required.
DefaultCacheBehavior *DefaultCacheBehavior
// The domain name that corresponds to the distribution, for example,
// d111111abcdef8.cloudfront.net .
//
// This member is required.
DomainName *string
// Whether the distribution is enabled to accept user requests for content.
//
// This member is required.
Enabled *bool
// Specify the maximum HTTP version that you want viewers to use to communicate
// with CloudFront. The default value for new web distributions is http2 . Viewers
// that don't support HTTP/2 will automatically use an earlier version.
//
// This member is required.
HttpVersion HttpVersion
// The identifier for the distribution. For example: EDFDVBD632BHDS5 .
//
// This member is required.
Id *string
// Whether CloudFront responds to IPv6 DNS requests with an IPv6 address for your
// distribution.
//
// This member is required.
IsIPV6Enabled *bool
// The date and time the distribution was last modified.
//
// This member is required.
LastModifiedTime *time.Time
// A complex type that contains information about origins for this distribution.
//
// This member is required.
Origins *Origins
// A complex type that contains information about price class for this streaming
// distribution.
//
// This member is required.
PriceClass PriceClass
// A complex type that identifies ways in which you want to restrict distribution
// of your content.
//
// This member is required.
Restrictions *Restrictions
// Whether the primary distribution has a staging distribution enabled.
//
// This member is required.
Staging *bool
// The current status of the distribution. When the status is Deployed , the
// distribution's information is propagated to all CloudFront edge locations.
//
// This member is required.
Status *string
// A complex type that determines the distribution's SSL/TLS configuration for
// communicating with viewers.
//
// This member is required.
ViewerCertificate *ViewerCertificate
// The Web ACL Id (if any) associated with the distribution.
//
// This member is required.
WebACLId *string
// Amazon Web Services services in China customers must file for an Internet
// Content Provider (ICP) recordal if they want to serve content publicly on an
// alternate domain name, also known as a CNAME, that they've added to CloudFront.
// AliasICPRecordal provides the ICP recordal status for CNAMEs associated with
// distributions. For more information about ICP recordals, see Signup, Accounts,
// and Credentials (https://docs.amazonaws.cn/en_us/aws/latest/userguide/accounts-and-credentials.html)
// in Getting Started with Amazon Web Services services in China.
AliasICPRecordals []AliasICPRecordal
// A complex type that contains information about origin groups for this
// distribution.
OriginGroups *OriginGroups
noSmithyDocumentSerde
}
// Complex data type for field-level encryption profiles that includes all of the
// encryption entities.
type EncryptionEntities struct {
// Number of field pattern items in a field-level encryption content type-profile
// mapping.
//
// This member is required.
Quantity *int32
// An array of field patterns in a field-level encryption content type-profile
// mapping.
Items []EncryptionEntity
noSmithyDocumentSerde
}
// Complex data type for field-level encryption profiles that includes the
// encryption key and field pattern specifications.
type EncryptionEntity struct {
// Field patterns in a field-level encryption content type profile specify the
// fields that you want to be encrypted. You can provide the full field name, or
// any beginning characters followed by a wildcard (*). You can't overlap field
// patterns. For example, you can't have both ABC* and AB*. Note that field
// patterns are case-sensitive.
//
// This member is required.
FieldPatterns *FieldPatterns
// The provider associated with the public key being used for encryption. This
// value must also be provided with the private key for applications to be able to
// decrypt data.
//
// This member is required.
ProviderId *string
// The public key associated with a set of field-level encryption patterns, to be
// used when encrypting the fields that match the patterns.
//
// This member is required.
PublicKeyId *string
noSmithyDocumentSerde
}
// Contains information about the Amazon Kinesis data stream where you are sending
// real-time log data in a real-time log configuration.
type EndPoint struct {
// The type of data stream where you are sending real-time log data. The only
// valid value is Kinesis .
//
// This member is required.
StreamType *string
// Contains information about the Amazon Kinesis data stream where you are sending
// real-time log data.
KinesisStreamConfig *KinesisStreamConfig
noSmithyDocumentSerde
}
// A complex data type that includes the profile configurations and other options
// specified for field-level encryption.
type FieldLevelEncryption struct {
// A complex data type that includes the profile configurations specified for
// field-level encryption.
//
// This member is required.
FieldLevelEncryptionConfig *FieldLevelEncryptionConfig
// The configuration ID for a field-level encryption configuration which includes
// a set of profiles that specify certain selected data fields to be encrypted by
// specific public keys.
//
// This member is required.
Id *string
// The last time the field-level encryption configuration was changed.
//
// This member is required.
LastModifiedTime *time.Time
noSmithyDocumentSerde
}
// A complex data type that includes the profile configurations specified for
// field-level encryption.
type FieldLevelEncryptionConfig struct {
// A unique number that ensures the request can't be replayed.
//
// This member is required.
CallerReference *string
// An optional comment about the configuration. The comment cannot be longer than
// 128 characters.
Comment *string
// A complex data type that specifies when to forward content if a content type
// isn't recognized and profiles to use as by default in a request if a query
// argument doesn't specify a profile to use.
ContentTypeProfileConfig *ContentTypeProfileConfig
// A complex data type that specifies when to forward content if a profile isn't
// found and the profile that can be provided as a query argument in a request.
QueryArgProfileConfig *QueryArgProfileConfig
noSmithyDocumentSerde
}
// List of field-level encryption configurations.
type FieldLevelEncryptionList struct {
// The maximum number of elements you want in the response body.
//
// This member is required.
MaxItems *int32
// The number of field-level encryption items.
//
// This member is required.
Quantity *int32
// An array of field-level encryption items.
Items []FieldLevelEncryptionSummary
// If there are more elements to be listed, this element is present and contains
// the value that you can use for the Marker request parameter to continue listing
// your configurations where you left off.
NextMarker *string
noSmithyDocumentSerde
}
// A complex data type for field-level encryption profiles.
type FieldLevelEncryptionProfile struct {
// A complex data type that includes the profile name and the encryption entities
// for the field-level encryption profile.
//
// This member is required.
FieldLevelEncryptionProfileConfig *FieldLevelEncryptionProfileConfig
// The ID for a field-level encryption profile configuration which includes a set
// of profiles that specify certain selected data fields to be encrypted by
// specific public keys.
//
// This member is required.
Id *string
// The last time the field-level encryption profile was updated.
//
// This member is required.
LastModifiedTime *time.Time
noSmithyDocumentSerde
}
// A complex data type of profiles for the field-level encryption.
type FieldLevelEncryptionProfileConfig struct {
// A unique number that ensures that the request can't be replayed.
//
// This member is required.
CallerReference *string
// A complex data type of encryption entities for the field-level encryption
// profile that include the public key ID, provider, and field patterns for
// specifying which fields to encrypt with this key.
//
// This member is required.
EncryptionEntities *EncryptionEntities
// Profile name for the field-level encryption profile.
//
// This member is required.
Name *string
// An optional comment for the field-level encryption profile. The comment cannot
// be longer than 128 characters.
Comment *string
noSmithyDocumentSerde
}
// List of field-level encryption profiles.
type FieldLevelEncryptionProfileList struct {
// The maximum number of field-level encryption profiles you want in the response
// body.
//
// This member is required.
MaxItems *int32
// The number of field-level encryption profiles.
//
// This member is required.
Quantity *int32
// The field-level encryption profile items.
Items []FieldLevelEncryptionProfileSummary
// If there are more elements to be listed, this element is present and contains
// the value that you can use for the Marker request parameter to continue listing
// your profiles where you left off.
NextMarker *string
noSmithyDocumentSerde
}
// The field-level encryption profile summary.
type FieldLevelEncryptionProfileSummary struct {
// A complex data type of encryption entities for the field-level encryption
// profile that include the public key ID, provider, and field patterns for
// specifying which fields to encrypt with this key.
//
// This member is required.
EncryptionEntities *EncryptionEntities
// ID for the field-level encryption profile summary.
//
// This member is required.
Id *string
// The time when the field-level encryption profile summary was last updated.
//
// This member is required.
LastModifiedTime *time.Time
// Name for the field-level encryption profile summary.
//
// This member is required.
Name *string
// An optional comment for the field-level encryption profile summary. The comment
// cannot be longer than 128 characters.
Comment *string
noSmithyDocumentSerde
}
// A summary of a field-level encryption item.
type FieldLevelEncryptionSummary struct {
// The unique ID of a field-level encryption item.
//
// This member is required.
Id *string
// The last time that the summary of field-level encryption items was modified.
//
// This member is required.
LastModifiedTime *time.Time
// An optional comment about the field-level encryption item. The comment cannot
// be longer than 128 characters.
Comment *string
// A summary of a content type-profile mapping.
ContentTypeProfileConfig *ContentTypeProfileConfig
// A summary of a query argument-profile mapping.
QueryArgProfileConfig *QueryArgProfileConfig
noSmithyDocumentSerde
}
// A complex data type that includes the field patterns to match for field-level
// encryption.
type FieldPatterns struct {
// The number of field-level encryption field patterns.
//
// This member is required.
Quantity *int32
// An array of the field-level encryption field patterns.
Items []string
noSmithyDocumentSerde
}
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. If you want to include values in the cache
// key, use a cache policy. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// in the Amazon CloudFront Developer Guide. If you want to send values to the
// origin but not include them in the cache key, use an origin request policy. For
// more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// in the Amazon CloudFront Developer Guide. A complex type that specifies how
// CloudFront handles query strings, cookies, and HTTP headers.
type ForwardedValues struct {
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. If you want to include cookies in the
// cache key, use a cache policy. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// in the Amazon CloudFront Developer Guide. If you want to send cookies to the
// origin but not include them in the cache key, use an origin request policy. For
// more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// in the Amazon CloudFront Developer Guide. A complex type that specifies whether
// you want CloudFront to forward cookies to the origin and, if so, which ones. For
// more information about forwarding cookies to the origin, see How CloudFront
// Forwards, Caches, and Logs Cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Cookies.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
Cookies *CookiePreference
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. If you want to include query strings in
// the cache key, use a cache policy. For more information, see Creating cache
// policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// in the Amazon CloudFront Developer Guide. If you want to send query strings to
// the origin but not include them in the cache key, use an origin request policy.
// For more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// in the Amazon CloudFront Developer Guide. Indicates whether you want CloudFront
// to forward query strings to the origin that is associated with this cache
// behavior and cache based on the query string parameters. CloudFront behavior
// depends on the value of QueryString and on the values that you specify for
// QueryStringCacheKeys , if any: If you specify true for QueryString and you
// don't specify any values for QueryStringCacheKeys , CloudFront forwards all
// query string parameters to the origin and caches based on all query string
// parameters. Depending on how many query string parameters and values you have,
// this can adversely affect performance because CloudFront must forward more
// requests to the origin. If you specify true for QueryString and you specify one
// or more values for QueryStringCacheKeys , CloudFront forwards all query string
// parameters to the origin, but it only caches based on the query string
// parameters that you specify. If you specify false for QueryString , CloudFront
// doesn't forward any query string parameters to the origin, and doesn't cache
// based on query string parameters. For more information, see Configuring
// CloudFront to Cache Based on Query String Parameters (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/QueryStringParameters.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
QueryString *bool
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. If you want to include headers in the
// cache key, use a cache policy. For more information, see Creating cache policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// in the Amazon CloudFront Developer Guide. If you want to send headers to the
// origin but not include them in the cache key, use an origin request policy. For
// more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// in the Amazon CloudFront Developer Guide. A complex type that specifies the
// Headers , if any, that you want CloudFront to forward to the origin for this
// cache behavior (whitelisted headers). For the headers that you specify,
// CloudFront also caches separate versions of a specified object that is based on
// the header values in viewer requests. For more information, see Caching Content
// Based on Request Headers (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/header-caching.html)
// in the Amazon CloudFront Developer Guide.
Headers *Headers
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. If you want to include query strings in
// the cache key, use a cache policy. For more information, see Creating cache
// policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy)
// in the Amazon CloudFront Developer Guide. If you want to send query strings to
// the origin but not include them in the cache key, use an origin request policy.
// For more information, see Creating origin request policies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy)
// in the Amazon CloudFront Developer Guide. A complex type that contains
// information about the query string parameters that you want CloudFront to use
// for caching for this cache behavior.
QueryStringCacheKeys *QueryStringCacheKeys
noSmithyDocumentSerde
}
// A CloudFront function that is associated with a cache behavior in a CloudFront
// distribution.
type FunctionAssociation struct {
// The event type of the function, either viewer-request or viewer-response . You
// cannot use origin-facing event types ( origin-request and origin-response ) with
// a CloudFront function.
//
// This member is required.
EventType EventType
// The Amazon Resource Name (ARN) of the function.
//
// This member is required.
FunctionARN *string
noSmithyDocumentSerde
}
// A list of CloudFront functions that are associated with a cache behavior in a
// CloudFront distribution. CloudFront functions must be published to the LIVE
// stage to associate them with a cache behavior.
type FunctionAssociations struct {
// The number of CloudFront functions in the list.
//
// This member is required.
Quantity *int32
// The CloudFront functions that are associated with a cache behavior in a
// CloudFront distribution. CloudFront functions must be published to the LIVE
// stage to associate them with a cache behavior.
Items []FunctionAssociation
noSmithyDocumentSerde
}
// Contains configuration information about a CloudFront function.
type FunctionConfig struct {
// A comment to describe the function.
//
// This member is required.
Comment *string
// The function's runtime environment version.
//
// This member is required.
Runtime FunctionRuntime
// The configuration for the Key Value Store associations.
KeyValueStoreAssociations *KeyValueStoreAssociations
noSmithyDocumentSerde
}
// A list of CloudFront functions.
type FunctionList struct {
// The maximum number of functions requested.
//
// This member is required.
MaxItems *int32
// The number of functions returned in the response.
//
// This member is required.
Quantity *int32
// Contains the functions in the list.
Items []FunctionSummary
// If there are more items in the list than are in this response, this element is
// present. It contains the value that you should use in the Marker field of a
// subsequent request to continue listing functions where you left off.
NextMarker *string
noSmithyDocumentSerde
}
// Contains metadata about a CloudFront function.
type FunctionMetadata struct {
// The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the
// function.
//
// This member is required.
FunctionARN *string
// The date and time when the function was most recently updated.
//
// This member is required.
LastModifiedTime *time.Time
// The date and time when the function was created.
CreatedTime *time.Time
// The stage that the function is in, either DEVELOPMENT or LIVE . When a function
// is in the DEVELOPMENT stage, you can test the function with TestFunction , and
// update it with UpdateFunction . When a function is in the LIVE stage, you can
// attach the function to a distribution's cache behavior, using the function's
// ARN.
Stage FunctionStage
noSmithyDocumentSerde
}
// Contains configuration information and metadata about a CloudFront function.
type FunctionSummary struct {
// Contains configuration information about a CloudFront function.
//
// This member is required.
FunctionConfig *FunctionConfig
// Contains metadata about a CloudFront function.
//
// This member is required.
FunctionMetadata *FunctionMetadata
// The name of the CloudFront function.
//
// This member is required.
Name *string
// The status of the CloudFront function.
Status *string
noSmithyDocumentSerde
}
// A complex type that controls the countries in which your content is
// distributed. CloudFront determines the location of your users using MaxMind
// GeoIP databases.
type GeoRestriction struct {
// When geo restriction is enabled , this is the number of countries in your
// whitelist or blacklist . Otherwise, when it is not enabled, Quantity is 0 , and
// you can omit Items .
//
// This member is required.
Quantity *int32
// The method that you want to use to restrict distribution of your content by
// country:
// - none : No geo restriction is enabled, meaning access to content is not
// restricted by client geo location.
// - blacklist : The Location elements specify the countries in which you don't
// want CloudFront to distribute your content.
// - whitelist : The Location elements specify the countries in which you want
// CloudFront to distribute your content.
//
// This member is required.
RestrictionType GeoRestrictionType
// A complex type that contains a Location element for each country in which you
// want CloudFront either to distribute your content ( whitelist ) or not
// distribute your content ( blacklist ). The Location element is a two-letter,
// uppercase country code for a country that you want to include in your blacklist
// or whitelist . Include one Location element for each country. CloudFront and
// MaxMind both use ISO 3166 country codes. For the current list of countries and
// the corresponding codes, see ISO 3166-1-alpha-2 code on the International
// Organization for Standardization website. You can also refer to the country list
// on the CloudFront console, which includes both country names and codes.
Items []string
noSmithyDocumentSerde
}
// Contains a list of HTTP header names.
type Headers struct {
// The number of header names in the Items list.
//
// This member is required.
Quantity *int32
// A list of HTTP header names.
Items []string
noSmithyDocumentSerde
}
// The import source for the Key Value Store.
type ImportSource struct {
// The Amazon Resource Name (ARN) of the import source for the Key Value Store.
//
// This member is required.
SourceARN *string
// The source type of the import source for the Key Value Store.
//
// This member is required.
SourceType ImportSourceType
noSmithyDocumentSerde
}
// An invalidation.
type Invalidation struct {
// The date and time the invalidation request was first made.
//
// This member is required.
CreateTime *time.Time
// The identifier for the invalidation request. For example: IDFDVBD632BHDS5 .
//
// This member is required.
Id *string
// The current invalidation information for the batch request.
//
// This member is required.
InvalidationBatch *InvalidationBatch
// The status of the invalidation request. When the invalidation batch is
// finished, the status is Completed .
//
// This member is required.
Status *string
noSmithyDocumentSerde
}
// An invalidation batch.
type InvalidationBatch struct {
// A value that you specify to uniquely identify an invalidation request.
// CloudFront uses the value to prevent you from accidentally resubmitting an
// identical request. Whenever you create a new invalidation request, you must
// specify a new value for CallerReference and change other values in the request
// as applicable. One way to ensure that the value of CallerReference is unique is
// to use a timestamp , for example, 20120301090000 . If you make a second
// invalidation request with the same value for CallerReference , and if the rest
// of the request is the same, CloudFront doesn't create a new invalidation
// request. Instead, CloudFront returns information about the invalidation request
// that you previously created with the same CallerReference . If CallerReference
// is a value you already sent in a previous invalidation batch request but the
// content of any Path is different from the original request, CloudFront returns
// an InvalidationBatchAlreadyExists error.
//
// This member is required.
CallerReference *string
// A complex type that contains information about the objects that you want to
// invalidate. For more information, see Specifying the Objects to Invalidate (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#invalidation-specifying-objects)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
Paths *Paths
noSmithyDocumentSerde
}
// The InvalidationList complex type describes the list of invalidation objects.
// For more information about invalidation, see Invalidating Objects (Web
// Distributions Only) (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html)
// in the Amazon CloudFront Developer Guide.
type InvalidationList struct {
// A flag that indicates whether more invalidation batch requests remain to be
// listed. If your results were truncated, you can make a follow-up pagination
// request using the Marker request parameter to retrieve more invalidation
// batches in the list.
//
// This member is required.
IsTruncated *bool
// The value that you provided for the Marker request parameter.
//
// This member is required.
Marker *string
// The value that you provided for the MaxItems request parameter.
//
// This member is required.
MaxItems *int32
// The number of invalidation batches that were created by the current Amazon Web
// Services account.
//
// This member is required.
Quantity *int32
// A complex type that contains one InvalidationSummary element for each
// invalidation batch created by the current Amazon Web Services account.
Items []InvalidationSummary
// If IsTruncated is true , this element is present and contains the value that you
// can use for the Marker request parameter to continue listing your invalidation
// batches where they left off.
NextMarker *string
noSmithyDocumentSerde
}
// A summary of an invalidation request.
type InvalidationSummary struct {
// The time that an invalidation request was created.
//
// This member is required.
CreateTime *time.Time
// The unique ID for an invalidation request.
//
// This member is required.
Id *string
// The status of an invalidation request.
//
// This member is required.
Status *string
noSmithyDocumentSerde
}
// A key group. A key group contains a list of public keys that you can use with
// CloudFront signed URLs and signed cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// .
type KeyGroup struct {
// The identifier for the key group.
//
// This member is required.
Id *string
// The key group configuration.
//
// This member is required.
KeyGroupConfig *KeyGroupConfig
// The date and time when the key group was last modified.
//
// This member is required.
LastModifiedTime *time.Time
noSmithyDocumentSerde
}
// A key group configuration. A key group contains a list of public keys that you
// can use with CloudFront signed URLs and signed cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// .
type KeyGroupConfig struct {
// A list of the identifiers of the public keys in the key group.
//
// This member is required.
Items []string
// A name to identify the key group.
//
// This member is required.
Name *string
// A comment to describe the key group. The comment cannot be longer than 128
// characters.
Comment *string
noSmithyDocumentSerde
}
// A list of key groups.
type KeyGroupList struct {
// The maximum number of key groups requested.
//
// This member is required.
MaxItems *int32
// The number of key groups returned in the response.
//
// This member is required.
Quantity *int32
// A list of key groups.
Items []KeyGroupSummary
// If there are more items in the list than are in this response, this element is
// present. It contains the value that you should use in the Marker field of a
// subsequent request to continue listing key groups.
NextMarker *string
noSmithyDocumentSerde
}
// Contains information about a key group.
type KeyGroupSummary struct {
// A key group.
//
// This member is required.
KeyGroup *KeyGroup
noSmithyDocumentSerde
}
// A list of CloudFront key pair identifiers.
type KeyPairIds struct {
// The number of key pair identifiers in the list.
//
// This member is required.
Quantity *int32
// A list of CloudFront key pair identifiers.
Items []string
noSmithyDocumentSerde
}
// The Key Value Store. Use this to separate data from function code, allowing you
// to update data without having to publish a new version of a function. The Key
// Value Store holds keys and their corresponding values.
type KeyValueStore struct {
// The Amazon Resource Name (ARN) of the Key Value Store.
//
// This member is required.
ARN *string
// A comment for the Key Value Store.
//
// This member is required.
Comment *string
// The unique Id for the Key Value Store.
//
// This member is required.
Id *string
// The last-modified time of the Key Value Store.
//
// This member is required.
LastModifiedTime *time.Time
// The name of the Key Value Store.
//
// This member is required.
Name *string
// The status of the Key Value Store.
Status *string
noSmithyDocumentSerde
}
// The Key Value Store association.
type KeyValueStoreAssociation struct {
// The Amazon Resource Name (ARN) of the Key Value Store association.
//
// This member is required.
KeyValueStoreARN *string
noSmithyDocumentSerde
}
// The Key Value Store associations.
type KeyValueStoreAssociations struct {
// The quantity of Key Value Store associations.
//
// This member is required.
Quantity *int32
// The items of the Key Value Store association.
Items []KeyValueStoreAssociation
noSmithyDocumentSerde
}
// The Key Value Store list.
type KeyValueStoreList struct {
// The maximum number of items in the Key Value Store list.
//
// This member is required.
MaxItems *int32
// The quantity of the Key Value Store list.
//
// This member is required.
Quantity *int32
// The items of the Key Value Store list.
Items []KeyValueStore
// The next marker associated with the Key Value Store list.
NextMarker *string
noSmithyDocumentSerde
}
// A list of identifiers for the public keys that CloudFront can use to verify the
// signatures of signed URLs and signed cookies.
type KGKeyPairIds struct {
// The identifier of the key group that contains the public keys.
KeyGroupId *string
// A list of CloudFront key pair identifiers.
KeyPairIds *KeyPairIds
noSmithyDocumentSerde
}
// Contains information about the Amazon Kinesis data stream where you are sending
// real-time log data.
type KinesisStreamConfig struct {
// The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role
// that CloudFront can use to send real-time log data to your Kinesis data stream.
// For more information the IAM role, see Real-time log configuration IAM role (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html#understand-real-time-log-config-iam-role)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
RoleARN *string
// The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending
// real-time log data.
//
// This member is required.
StreamARN *string
noSmithyDocumentSerde
}
// A complex type that contains a Lambda@Edge function association.
type LambdaFunctionAssociation struct {
// Specifies the event type that triggers a Lambda@Edge function invocation. You
// can specify the following values:
// - viewer-request : The function executes when CloudFront receives a request
// from a viewer and before it checks to see whether the requested object is in the
// edge cache.
// - origin-request : The function executes only when CloudFront sends a request
// to your origin. When the requested object is in the edge cache, the function
// doesn't execute.
// - origin-response : The function executes after CloudFront receives a response
// from the origin and before it caches the object in the response. When the
// requested object is in the edge cache, the function doesn't execute.
// - viewer-response : The function executes before CloudFront returns the
// requested object to the viewer. The function executes regardless of whether the
// object was already in the edge cache. If the origin returns an HTTP status code
// other than HTTP 200 (OK), the function doesn't execute.
//
// This member is required.
EventType EventType
// The ARN of the Lambda@Edge function. You must specify the ARN of a function
// version; you can't specify an alias or $LATEST.
//
// This member is required.
LambdaFunctionARN *string
// A flag that allows a Lambda@Edge function to have read access to the body
// content. For more information, see Accessing the Request Body by Choosing the
// Include Body Option (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/lambda-include-body-access.html)
// in the Amazon CloudFront Developer Guide.
IncludeBody *bool
noSmithyDocumentSerde
}
// A complex type that specifies a list of Lambda@Edge functions associations for
// a cache behavior. If you want to invoke one or more Lambda@Edge functions
// triggered by requests that match the PathPattern of the cache behavior, specify
// the applicable values for Quantity and Items . Note that there can be up to 4
// LambdaFunctionAssociation items in this list (one for each possible value of
// EventType ) and each EventType can be associated with only one function. If you
// don't want to invoke any Lambda@Edge functions for the requests that match
// PathPattern , specify 0 for Quantity and omit Items .
type LambdaFunctionAssociations struct {
// The number of Lambda@Edge function associations for this cache behavior.
//
// This member is required.
Quantity *int32
// Optional: A complex type that contains LambdaFunctionAssociation items for this
// cache behavior. If Quantity is 0 , you can omit Items .
Items []LambdaFunctionAssociation
noSmithyDocumentSerde
}
// A complex type that controls whether access logs are written for the
// distribution.
type LoggingConfig struct {
// The Amazon S3 bucket to store the access logs in, for example,
// myawslogbucket.s3.amazonaws.com .
//
// This member is required.
Bucket *string
// Specifies whether you want CloudFront to save access logs to an Amazon S3
// bucket. If you don't want to enable logging when you create a distribution or if
// you want to disable logging for an existing distribution, specify false for
// Enabled , and specify empty Bucket and Prefix elements. If you specify false
// for Enabled but you specify values for Bucket , prefix , and IncludeCookies ,
// the values are automatically deleted.
//
// This member is required.
Enabled *bool
// Specifies whether you want CloudFront to include cookies in access logs,
// specify true for IncludeCookies . If you choose to include cookies in logs,
// CloudFront logs all cookies regardless of how you configure the cache behaviors
// for this distribution. If you don't want to include cookies when you create a
// distribution or if you want to disable include cookies for an existing
// distribution, specify false for IncludeCookies .
//
// This member is required.
IncludeCookies *bool
// An optional string that you want CloudFront to prefix to the access log
// filenames for this distribution, for example, myprefix/ . If you want to enable
// logging, but you don't want to specify a prefix, you still must include an empty
// Prefix element in the Logging element.
//
// This member is required.
Prefix *string
noSmithyDocumentSerde
}
// A monitoring subscription. This structure contains information about whether
// additional CloudWatch metrics are enabled for a given CloudFront distribution.
type MonitoringSubscription struct {
// A subscription configuration for additional CloudWatch metrics.
RealtimeMetricsSubscriptionConfig *RealtimeMetricsSubscriptionConfig
noSmithyDocumentSerde
}
// An origin. An origin is the location where content is stored, and from which
// CloudFront gets content to serve to viewers. To specify an origin:
// - Use S3OriginConfig to specify an Amazon S3 bucket that is not configured
// with static website hosting.
// - Use CustomOriginConfig to specify all other kinds of origins, including:
// - An Amazon S3 bucket that is configured with static website hosting
// - An Elastic Load Balancing load balancer
// - An Elemental MediaPackage endpoint
// - An Elemental MediaStore container
// - Any other HTTP server, running on an Amazon EC2 instance or any other kind
// of host
//
// For the current maximum number of origins that you can specify per
// distribution, see General Quotas on Web Distributions (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html#limits-web-distributions)
// in the Amazon CloudFront Developer Guide (quotas were formerly referred to as
// limits).
type Origin struct {
// The domain name for the origin. For more information, see Origin Domain Name (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesDomainName)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
DomainName *string
// A unique identifier for the origin. This value must be unique within the
// distribution. Use this value to specify the TargetOriginId in a CacheBehavior
// or DefaultCacheBehavior .
//
// This member is required.
Id *string
// The number of times that CloudFront attempts to connect to the origin. The
// minimum number is 1, the maximum is 3, and the default (if you don't specify
// otherwise) is 3. For a custom origin (including an Amazon S3 bucket that's
// configured with static website hosting), this value also specifies the number of
// times that CloudFront attempts to get a response from the origin, in the case of
// an Origin Response Timeout (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginResponseTimeout)
// . For more information, see Origin Connection Attempts (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#origin-connection-attempts)
// in the Amazon CloudFront Developer Guide.
ConnectionAttempts *int32
// The number of seconds that CloudFront waits when trying to establish a
// connection to the origin. The minimum timeout is 1 second, the maximum is 10
// seconds, and the default (if you don't specify otherwise) is 10 seconds. For
// more information, see Origin Connection Timeout (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#origin-connection-timeout)
// in the Amazon CloudFront Developer Guide.
ConnectionTimeout *int32
// A list of HTTP header names and values that CloudFront adds to the requests
// that it sends to the origin. For more information, see Adding Custom Headers to
// Origin Requests (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/add-origin-custom-headers.html)
// in the Amazon CloudFront Developer Guide.
CustomHeaders *CustomHeaders
// Use this type to specify an origin that is not an Amazon S3 bucket, with one
// exception. If the Amazon S3 bucket is configured with static website hosting,
// use this type. If the Amazon S3 bucket is not configured with static website
// hosting, use the S3OriginConfig type instead.
CustomOriginConfig *CustomOriginConfig
// The unique identifier of an origin access control for this origin. For more
// information, see Restricting access to an Amazon S3 origin (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html)
// in the Amazon CloudFront Developer Guide.
OriginAccessControlId *string
// An optional path that CloudFront appends to the origin domain name when
// CloudFront requests content from the origin. For more information, see Origin
// Path (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginPath)
// in the Amazon CloudFront Developer Guide.
OriginPath *string
// CloudFront Origin Shield. Using Origin Shield can help reduce the load on your
// origin. For more information, see Using Origin Shield (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html)
// in the Amazon CloudFront Developer Guide.
OriginShield *OriginShield
// Use this type to specify an origin that is an Amazon S3 bucket that is not
// configured with static website hosting. To specify any other type of origin,
// including an Amazon S3 bucket that is configured with static website hosting,
// use the CustomOriginConfig type instead.
S3OriginConfig *S3OriginConfig
noSmithyDocumentSerde
}
// A CloudFront origin access control, including its unique identifier.
type OriginAccessControl struct {
// The unique identifier of the origin access control.
//
// This member is required.
Id *string
// The origin access control.
OriginAccessControlConfig *OriginAccessControlConfig
noSmithyDocumentSerde
}
// A CloudFront origin access control configuration.
type OriginAccessControlConfig struct {
// A name to identify the origin access control.
//
// This member is required.
Name *string
// The type of origin that this origin access control is for.
//
// This member is required.
OriginAccessControlOriginType OriginAccessControlOriginTypes
// Specifies which requests CloudFront signs (adds authentication information to).
// Specify always for the most common use case. For more information, see origin
// access control advanced settings (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html#oac-advanced-settings)
// in the Amazon CloudFront Developer Guide. This field can have one of the
// following values:
// - always – CloudFront signs all origin requests, overwriting the Authorization
// header from the viewer request if one exists.
// - never – CloudFront doesn't sign any origin requests. This value turns off
// origin access control for all origins in all distributions that use this origin
// access control.
// - no-override – If the viewer request doesn't contain the Authorization
// header, then CloudFront signs the origin request. If the viewer request contains
// the Authorization header, then CloudFront doesn't sign the origin request and
// instead passes along the Authorization header from the viewer request.
// WARNING: To pass along the Authorization header from the viewer request, you
// must add the Authorization header to a cache policy (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html)
// for all cache behaviors that use origins associated with this origin access
// control.
//
// This member is required.
SigningBehavior OriginAccessControlSigningBehaviors
// The signing protocol of the origin access control, which determines how
// CloudFront signs (authenticates) requests. The only valid value is sigv4 .
//
// This member is required.
SigningProtocol OriginAccessControlSigningProtocols
// A description of the origin access control.
Description *string
noSmithyDocumentSerde
}
// A list of CloudFront origin access controls.
type OriginAccessControlList struct {
// If there are more items in the list than are in this response, this value is
// true .
//
// This member is required.
IsTruncated *bool
// The value of the Marker field that was provided in the request.
//
// This member is required.
Marker *string
// The maximum number of origin access controls requested.
//
// This member is required.
MaxItems *int32
// The number of origin access controls returned in the response.
//
// This member is required.
Quantity *int32
// Contains the origin access controls in the list.
Items []OriginAccessControlSummary
// If there are more items in the list than are in this response, this element is
// present. It contains the value to use in the Marker field of another request to
// continue listing origin access controls.
NextMarker *string
noSmithyDocumentSerde
}
// A CloudFront origin access control.
type OriginAccessControlSummary struct {
// A description of the origin access control.
//
// This member is required.
Description *string
// The unique identifier of the origin access control.
//
// This member is required.
Id *string
// A unique name that identifies the origin access control.
//
// This member is required.
Name *string
// The type of origin that this origin access control is for.
//
// This member is required.
OriginAccessControlOriginType OriginAccessControlOriginTypes
// A value that specifies which requests CloudFront signs (adds authentication
// information to). This field can have one of the following values:
// - never – CloudFront doesn't sign any origin requests.
// - always – CloudFront signs all origin requests, overwriting the Authorization
// header from the viewer request if necessary.
// - no-override – If the viewer request doesn't contain the Authorization
// header, CloudFront signs the origin request. If the viewer request contains the
// Authorization header, CloudFront doesn't sign the origin request, but instead
// passes along the Authorization header that it received in the viewer request.
//
// This member is required.
SigningBehavior OriginAccessControlSigningBehaviors
// The signing protocol of the origin access control. The signing protocol
// determines how CloudFront signs (authenticates) requests. The only valid value
// is sigv4 .
//
// This member is required.
SigningProtocol OriginAccessControlSigningProtocols
noSmithyDocumentSerde
}
// A complex type that contains HeaderName and HeaderValue elements, if any, for
// this distribution.
type OriginCustomHeader struct {
// The name of a header that you want CloudFront to send to your origin. For more
// information, see Adding Custom Headers to Origin Requests (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/forward-custom-headers.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
HeaderName *string
// The value for the header that you specified in the HeaderName field.
//
// This member is required.
HeaderValue *string
noSmithyDocumentSerde
}
// An origin group includes two origins (a primary origin and a second origin to
// failover to) and a failover criteria that you specify. You create an origin
// group to support origin failover in CloudFront. When you create or update a
// distribution, you can specify the origin group instead of a single origin, and
// CloudFront will failover from the primary origin to the second origin under the
// failover conditions that you've chosen.
type OriginGroup struct {
// A complex type that contains information about the failover criteria for an
// origin group.
//
// This member is required.
FailoverCriteria *OriginGroupFailoverCriteria
// The origin group's ID.
//
// This member is required.
Id *string
// A complex type that contains information about the origins in an origin group.
//
// This member is required.
Members *OriginGroupMembers
noSmithyDocumentSerde
}
// A complex data type that includes information about the failover criteria for
// an origin group, including the status codes for which CloudFront will failover
// from the primary origin to the second origin.
type OriginGroupFailoverCriteria struct {
// The status codes that, when returned from the primary origin, will trigger
// CloudFront to failover to the second origin.
//
// This member is required.
StatusCodes *StatusCodes
noSmithyDocumentSerde
}
// An origin in an origin group.
type OriginGroupMember struct {
// The ID for an origin in an origin group.
//
// This member is required.
OriginId *string
noSmithyDocumentSerde
}
// A complex data type for the origins included in an origin group.
type OriginGroupMembers struct {
// Items (origins) in an origin group.
//
// This member is required.
Items []OriginGroupMember
// The number of origins in an origin group.
//
// This member is required.
Quantity *int32
noSmithyDocumentSerde
}
// A complex data type for the origin groups specified for a distribution.
type OriginGroups struct {
// The number of origin groups.
//
// This member is required.
Quantity *int32
// The items (origin groups) in a distribution.
Items []OriginGroup
noSmithyDocumentSerde
}
// An origin request policy. When it's attached to a cache behavior, the origin
// request policy determines the values that CloudFront includes in requests that
// it sends to the origin. Each request that CloudFront sends to the origin
// includes the following:
// - The request body and the URL path (without the domain name) from the viewer
// request.
// - The headers that CloudFront automatically includes in every origin request,
// including Host , User-Agent , and X-Amz-Cf-Id .
// - All HTTP headers, cookies, and URL query strings that are specified in the
// cache policy or the origin request policy. These can include items from the
// viewer request and, in the case of headers, additional ones that are added by
// CloudFront.
//
// CloudFront sends a request when it can't find an object in its cache that
// matches the request. If you want to send values to the origin and also include
// them in the cache key, use CachePolicy .
type OriginRequestPolicy struct {
// The unique identifier for the origin request policy.
//
// This member is required.
Id *string
// The date and time when the origin request policy was last modified.
//
// This member is required.
LastModifiedTime *time.Time
// The origin request policy configuration.
//
// This member is required.
OriginRequestPolicyConfig *OriginRequestPolicyConfig
noSmithyDocumentSerde
}
// An origin request policy configuration. This configuration determines the
// values that CloudFront includes in requests that it sends to the origin. Each
// request that CloudFront sends to the origin includes the following:
// - The request body and the URL path (without the domain name) from the viewer
// request.
// - The headers that CloudFront automatically includes in every origin request,
// including Host , User-Agent , and X-Amz-Cf-Id .
// - All HTTP headers, cookies, and URL query strings that are specified in the
// cache policy or the origin request policy. These can include items from the
// viewer request and, in the case of headers, additional ones that are added by
// CloudFront.
//
// CloudFront sends a request when it can't find an object in its cache that
// matches the request. If you want to send values to the origin and also include
// them in the cache key, use CachePolicy .
type OriginRequestPolicyConfig struct {
// The cookies from viewer requests to include in origin requests.
//
// This member is required.
CookiesConfig *OriginRequestPolicyCookiesConfig
// The HTTP headers to include in origin requests. These can include headers from
// viewer requests and additional headers added by CloudFront.
//
// This member is required.
HeadersConfig *OriginRequestPolicyHeadersConfig
// A unique name to identify the origin request policy.
//
// This member is required.
Name *string
// The URL query strings from viewer requests to include in origin requests.
//
// This member is required.
QueryStringsConfig *OriginRequestPolicyQueryStringsConfig
// A comment to describe the origin request policy. The comment cannot be longer
// than 128 characters.
Comment *string
noSmithyDocumentSerde
}
// An object that determines whether any cookies in viewer requests (and if so,
// which cookies) are included in requests that CloudFront sends to the origin.
type OriginRequestPolicyCookiesConfig struct {
// Determines whether cookies in viewer requests are included in requests that
// CloudFront sends to the origin. Valid values are:
// - none – No cookies in viewer requests are included in requests that
// CloudFront sends to the origin. Even when this field is set to none , any
// cookies that are listed in a CachePolicy are included in origin requests.
// - whitelist – Only the cookies in viewer requests that are listed in the
// CookieNames type are included in requests that CloudFront sends to the origin.
// - all – All cookies in viewer requests are included in requests that
// CloudFront sends to the origin.
// - allExcept – All cookies in viewer requests are included in requests that
// CloudFront sends to the origin, except for those listed in the CookieNames
// type, which are not included.
//
// This member is required.
CookieBehavior OriginRequestPolicyCookieBehavior
// Contains a list of cookie names.
Cookies *CookieNames
noSmithyDocumentSerde
}
// An object that determines whether any HTTP headers (and if so, which headers)
// are included in requests that CloudFront sends to the origin.
type OriginRequestPolicyHeadersConfig struct {
// Determines whether any HTTP headers are included in requests that CloudFront
// sends to the origin. Valid values are:
// - none – No HTTP headers in viewer requests are included in requests that
// CloudFront sends to the origin. Even when this field is set to none , any
// headers that are listed in a CachePolicy are included in origin requests.
// - whitelist – Only the HTTP headers that are listed in the Headers type are
// included in requests that CloudFront sends to the origin.
// - allViewer – All HTTP headers in viewer requests are included in requests
// that CloudFront sends to the origin.
// - allViewerAndWhitelistCloudFront – All HTTP headers in viewer requests and
// the additional CloudFront headers that are listed in the Headers type are
// included in requests that CloudFront sends to the origin. The additional headers
// are added by CloudFront.
// - allExcept – All HTTP headers in viewer requests are included in requests
// that CloudFront sends to the origin, except for those listed in the Headers
// type, which are not included.
//
// This member is required.
HeaderBehavior OriginRequestPolicyHeaderBehavior
// Contains a list of HTTP header names.
Headers *Headers
noSmithyDocumentSerde
}
// A list of origin request policies.
type OriginRequestPolicyList struct {
// The maximum number of origin request policies requested.
//
// This member is required.
MaxItems *int32
// The total number of origin request policies returned in the response.
//
// This member is required.
Quantity *int32
// Contains the origin request policies in the list.
Items []OriginRequestPolicySummary
// If there are more items in the list than are in this response, this element is
// present. It contains the value that you should use in the Marker field of a
// subsequent request to continue listing origin request policies where you left
// off.
NextMarker *string
noSmithyDocumentSerde
}
// An object that determines whether any URL query strings in viewer requests (and
// if so, which query strings) are included in requests that CloudFront sends to
// the origin.
type OriginRequestPolicyQueryStringsConfig struct {
// Determines whether any URL query strings in viewer requests are included in
// requests that CloudFront sends to the origin. Valid values are:
// - none – No query strings in viewer requests are included in requests that
// CloudFront sends to the origin. Even when this field is set to none , any
// query strings that are listed in a CachePolicy are included in origin
// requests.
// - whitelist – Only the query strings in viewer requests that are listed in the
// QueryStringNames type are included in requests that CloudFront sends to the
// origin.
// - all – All query strings in viewer requests are included in requests that
// CloudFront sends to the origin.
// - allExcept – All query strings in viewer requests are included in requests
// that CloudFront sends to the origin, except for those listed in the
// QueryStringNames type, which are not included.
//
// This member is required.
QueryStringBehavior OriginRequestPolicyQueryStringBehavior
// Contains the specific query strings in viewer requests that either are or are
// not included in requests that CloudFront sends to the origin. The behavior
// depends on whether the QueryStringBehavior field in the
// OriginRequestPolicyQueryStringsConfig type is set to whitelist (the listed
// query strings are included) or allExcept (the listed query strings are not
// included, but all other query strings are).
QueryStrings *QueryStringNames
noSmithyDocumentSerde
}
// Contains an origin request policy.
type OriginRequestPolicySummary struct {
// The origin request policy.
//
// This member is required.
OriginRequestPolicy *OriginRequestPolicy
// The type of origin request policy, either managed (created by Amazon Web
// Services) or custom (created in this Amazon Web Services account).
//
// This member is required.
Type OriginRequestPolicyType
noSmithyDocumentSerde
}
// Contains information about the origins for this distribution.
type Origins struct {
// A list of origins.
//
// This member is required.
Items []Origin
// The number of origins for this distribution.
//
// This member is required.
Quantity *int32
noSmithyDocumentSerde
}
// CloudFront Origin Shield. Using Origin Shield can help reduce the load on your
// origin. For more information, see Using Origin Shield (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html)
// in the Amazon CloudFront Developer Guide.
type OriginShield struct {
// A flag that specifies whether Origin Shield is enabled. When it's enabled,
// CloudFront routes all requests through Origin Shield, which can help protect
// your origin. When it's disabled, CloudFront might send requests directly to your
// origin from multiple edge locations or regional edge caches.
//
// This member is required.
Enabled *bool
// The Amazon Web Services Region for Origin Shield. Specify the Amazon Web
// Services Region that has the lowest latency to your origin. To specify a region,
// use the region code, not the region name. For example, specify the US East
// (Ohio) region as us-east-2 . When you enable CloudFront Origin Shield, you must
// specify the Amazon Web Services Region for Origin Shield. For the list of Amazon
// Web Services Regions that you can specify, and for help choosing the best Region
// for your origin, see Choosing the Amazon Web Services Region for Origin Shield (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html#choose-origin-shield-region)
// in the Amazon CloudFront Developer Guide.
OriginShieldRegion *string
noSmithyDocumentSerde
}
// A complex type that contains information about the SSL/TLS protocols that
// CloudFront can use when establishing an HTTPS connection with your origin.
type OriginSslProtocols struct {
// A list that contains allowed SSL/TLS protocols for this distribution.
//
// This member is required.
Items []SslProtocol
// The number of SSL/TLS protocols that you want to allow CloudFront to use when
// establishing an HTTPS connection with this origin.
//
// This member is required.
Quantity *int32
noSmithyDocumentSerde
}
// This object determines the values that CloudFront includes in the cache key.
// These values can include HTTP headers, cookies, and URL query strings.
// CloudFront uses the cache key to find an object in its cache that it can return
// to the viewer. The headers, cookies, and query strings that are included in the
// cache key are also included in requests that CloudFront sends to the origin.
// CloudFront sends a request when it can't find an object in its cache that
// matches the request's cache key. If you want to send values to the origin but
// not include them in the cache key, use OriginRequestPolicy .
type ParametersInCacheKeyAndForwardedToOrigin struct {
// An object that determines whether any cookies in viewer requests (and if so,
// which cookies) are included in the cache key and in requests that CloudFront
// sends to the origin.
//
// This member is required.
CookiesConfig *CachePolicyCookiesConfig
// A flag that can affect whether the Accept-Encoding HTTP header is included in
// the cache key and included in requests that CloudFront sends to the origin. This
// field is related to the EnableAcceptEncodingBrotli field. If one or both of
// these fields is true and the viewer request includes the Accept-Encoding
// header, then CloudFront does the following:
// - Normalizes the value of the viewer's Accept-Encoding header
// - Includes the normalized header in the cache key
// - Includes the normalized header in the request to the origin, if a request
// is necessary
// For more information, see Compression support (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-policy-compressed-objects)
// in the Amazon CloudFront Developer Guide. If you set this value to true , and
// this cache behavior also has an origin request policy attached, do not include
// the Accept-Encoding header in the origin request policy. CloudFront always
// includes the Accept-Encoding header in origin requests when the value of this
// field is true , so including this header in an origin request policy has no
// effect. If both of these fields are false , then CloudFront treats the
// Accept-Encoding header the same as any other HTTP header in the viewer request.
// By default, it's not included in the cache key and it's not included in origin
// requests. In this case, you can manually add Accept-Encoding to the headers
// whitelist like any other HTTP header.
//
// This member is required.
EnableAcceptEncodingGzip *bool
// An object that determines whether any HTTP headers (and if so, which headers)
// are included in the cache key and in requests that CloudFront sends to the
// origin.
//
// This member is required.
HeadersConfig *CachePolicyHeadersConfig
// An object that determines whether any URL query strings in viewer requests (and
// if so, which query strings) are included in the cache key and in requests that
// CloudFront sends to the origin.
//
// This member is required.
QueryStringsConfig *CachePolicyQueryStringsConfig
// A flag that can affect whether the Accept-Encoding HTTP header is included in
// the cache key and included in requests that CloudFront sends to the origin. This
// field is related to the EnableAcceptEncodingGzip field. If one or both of these
// fields is true and the viewer request includes the Accept-Encoding header, then
// CloudFront does the following:
// - Normalizes the value of the viewer's Accept-Encoding header
// - Includes the normalized header in the cache key
// - Includes the normalized header in the request to the origin, if a request
// is necessary
// For more information, see Compression support (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-policy-compressed-objects)
// in the Amazon CloudFront Developer Guide. If you set this value to true , and
// this cache behavior also has an origin request policy attached, do not include
// the Accept-Encoding header in the origin request policy. CloudFront always
// includes the Accept-Encoding header in origin requests when the value of this
// field is true , so including this header in an origin request policy has no
// effect. If both of these fields are false , then CloudFront treats the
// Accept-Encoding header the same as any other HTTP header in the viewer request.
// By default, it's not included in the cache key and it's not included in origin
// requests. In this case, you can manually add Accept-Encoding to the headers
// whitelist like any other HTTP header.
EnableAcceptEncodingBrotli *bool
noSmithyDocumentSerde
}
// A complex type that contains information about the objects that you want to
// invalidate. For more information, see Specifying the Objects to Invalidate (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html#invalidation-specifying-objects)
// in the Amazon CloudFront Developer Guide.
type Paths struct {
// The number of invalidation paths specified for the objects that you want to
// invalidate.
//
// This member is required.
Quantity *int32
// A complex type that contains a list of the paths that you want to invalidate.
Items []string
noSmithyDocumentSerde
}
// A public key that you can use with signed URLs and signed cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// , or with field-level encryption (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html)
// .
type PublicKey struct {
// The date and time when the public key was uploaded.
//
// This member is required.
CreatedTime *time.Time
// The identifier of the public key.
//
// This member is required.
Id *string
// Configuration information about a public key that you can use with signed URLs
// and signed cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// , or with field-level encryption (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html)
// .
//
// This member is required.
PublicKeyConfig *PublicKeyConfig
noSmithyDocumentSerde
}
// Configuration information about a public key that you can use with signed URLs
// and signed cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// , or with field-level encryption (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html)
// .
type PublicKeyConfig struct {
// A string included in the request to help make sure that the request can't be
// replayed.
//
// This member is required.
CallerReference *string
// The public key that you can use with signed URLs and signed cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// , or with field-level encryption (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html)
// .
//
// This member is required.
EncodedKey *string
// A name to help identify the public key.
//
// This member is required.
Name *string
// A comment to describe the public key. The comment cannot be longer than 128
// characters.
Comment *string
noSmithyDocumentSerde
}
// A list of public keys that you can use with signed URLs and signed cookies (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// , or with field-level encryption (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html)
// .
type PublicKeyList struct {
// The maximum number of public keys you want in the response.
//
// This member is required.
MaxItems *int32
// The number of public keys in the list.
//
// This member is required.
Quantity *int32
// A list of public keys.
Items []PublicKeySummary
// If there are more elements to be listed, this element is present and contains
// the value that you can use for the Marker request parameter to continue listing
// your public keys where you left off.
NextMarker *string
noSmithyDocumentSerde
}
// Contains information about a public key.
type PublicKeySummary struct {
// The date and time when the public key was uploaded.
//
// This member is required.
CreatedTime *time.Time
// The public key.
//
// This member is required.
EncodedKey *string
// The identifier of the public key.
//
// This member is required.
Id *string
// A name to help identify the public key.
//
// This member is required.
Name *string
// A comment to describe the public key. The comment cannot be longer than 128
// characters.
Comment *string
noSmithyDocumentSerde
}
// Query argument-profile mapping for field-level encryption.
type QueryArgProfile struct {
// ID of profile to use for field-level encryption query argument-profile mapping
//
// This member is required.
ProfileId *string
// Query argument for field-level encryption query argument-profile mapping.
//
// This member is required.
QueryArg *string
noSmithyDocumentSerde
}
// Configuration for query argument-profile mapping for field-level encryption.
type QueryArgProfileConfig struct {
// Flag to set if you want a request to be forwarded to the origin even if the
// profile specified by the field-level encryption query argument, fle-profile, is
// unknown.
//
// This member is required.
ForwardWhenQueryArgProfileIsUnknown *bool
// Profiles specified for query argument-profile mapping for field-level
// encryption.
QueryArgProfiles *QueryArgProfiles
noSmithyDocumentSerde
}
// Query argument-profile mapping for field-level encryption.
type QueryArgProfiles struct {
// Number of profiles for query argument-profile mapping for field-level
// encryption.
//
// This member is required.
Quantity *int32
// Number of items for query argument-profile mapping for field-level encryption.
Items []QueryArgProfile
noSmithyDocumentSerde
}
// This field is deprecated. We recommend that you use a cache policy or an origin
// request policy instead of this field. If you want to include query strings in
// the cache key, use QueryStringsConfig in a cache policy. See CachePolicy . If
// you want to send query strings to the origin but not include them in the cache
// key, use QueryStringsConfig in an origin request policy. See OriginRequestPolicy
// . A complex type that contains information about the query string parameters
// that you want CloudFront to use for caching for a cache behavior.
type QueryStringCacheKeys struct {
// The number of whitelisted query string parameters for a cache behavior.
//
// This member is required.
Quantity *int32
// A list that contains the query string parameters that you want CloudFront to
// use as a basis for caching for a cache behavior. If Quantity is 0, you can omit
// Items .
Items []string
noSmithyDocumentSerde
}
// Contains a list of query string names.
type QueryStringNames struct {
// The number of query string names in the Items list.
//
// This member is required.
Quantity *int32
// A list of query string names.
Items []string
noSmithyDocumentSerde
}
// A real-time log configuration.
type RealtimeLogConfig struct {
// The Amazon Resource Name (ARN) of this real-time log configuration.
//
// This member is required.
ARN *string
// Contains information about the Amazon Kinesis data stream where you are sending
// real-time log data for this real-time log configuration.
//
// This member is required.
EndPoints []EndPoint
// A list of fields that are included in each real-time log record. In an API
// response, the fields are provided in the same order in which they are sent to
// the Amazon Kinesis data stream. For more information about fields, see
// Real-time log configuration fields (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html#understand-real-time-log-config-fields)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
Fields []string
// The unique name of this real-time log configuration.
//
// This member is required.
Name *string
// The sampling rate for this real-time log configuration. The sampling rate
// determines the percentage of viewer requests that are represented in the
// real-time log data. The sampling rate is an integer between 1 and 100,
// inclusive.
//
// This member is required.
SamplingRate *int64
noSmithyDocumentSerde
}
// A list of real-time log configurations.
type RealtimeLogConfigs struct {
// A flag that indicates whether there are more real-time log configurations than
// are contained in this list.
//
// This member is required.
IsTruncated *bool
// This parameter indicates where this list of real-time log configurations
// begins. This list includes real-time log configurations that occur after the
// marker.
//
// This member is required.
Marker *string
// The maximum number of real-time log configurations requested.
//
// This member is required.
MaxItems *int32
// Contains the list of real-time log configurations.
Items []RealtimeLogConfig
// If there are more items in the list than are in this response, this element is
// present. It contains the value that you should use in the Marker field of a
// subsequent request to continue listing real-time log configurations where you
// left off.
NextMarker *string
noSmithyDocumentSerde
}
// A subscription configuration for additional CloudWatch metrics.
type RealtimeMetricsSubscriptionConfig struct {
// A flag that indicates whether additional CloudWatch metrics are enabled for a
// given CloudFront distribution.
//
// This member is required.
RealtimeMetricsSubscriptionStatus RealtimeMetricsSubscriptionStatus
noSmithyDocumentSerde
}
// A response headers policy. A response headers policy contains information about
// a set of HTTP response headers. After you create a response headers policy, you
// can use its ID to attach it to one or more cache behaviors in a CloudFront
// distribution. When it's attached to a cache behavior, the response headers
// policy affects the HTTP headers that CloudFront includes in HTTP responses to
// requests that match the cache behavior. CloudFront adds or removes response
// headers according to the configuration of the response headers policy. For more
// information, see Adding or removing HTTP headers in CloudFront responses (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/modifying-response-headers.html)
// in the Amazon CloudFront Developer Guide.
type ResponseHeadersPolicy struct {
// The identifier for the response headers policy.
//
// This member is required.
Id *string
// The date and time when the response headers policy was last modified.
//
// This member is required.
LastModifiedTime *time.Time
// A response headers policy configuration.
//
// This member is required.
ResponseHeadersPolicyConfig *ResponseHeadersPolicyConfig
noSmithyDocumentSerde
}
// A list of HTTP header names that CloudFront includes as values for the
// Access-Control-Allow-Headers HTTP response header. For more information about
// the Access-Control-Allow-Headers HTTP response header, see
// Access-Control-Allow-Headers (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers)
// in the MDN Web Docs.
type ResponseHeadersPolicyAccessControlAllowHeaders struct {
// The list of HTTP header names. You can specify * to allow all headers.
//
// This member is required.
Items []string
// The number of HTTP header names in the list.
//
// This member is required.
Quantity *int32
noSmithyDocumentSerde
}
// A list of HTTP methods that CloudFront includes as values for the
// Access-Control-Allow-Methods HTTP response header. For more information about
// the Access-Control-Allow-Methods HTTP response header, see
// Access-Control-Allow-Methods (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Methods)
// in the MDN Web Docs.
type ResponseHeadersPolicyAccessControlAllowMethods struct {
// The list of HTTP methods. Valid values are:
// - GET
// - DELETE
// - HEAD
// - OPTIONS
// - PATCH
// - POST
// - PUT
// - ALL
// ALL is a special value that includes all of the listed HTTP methods.
//
// This member is required.
Items []ResponseHeadersPolicyAccessControlAllowMethodsValues
// The number of HTTP methods in the list.
//
// This member is required.
Quantity *int32
noSmithyDocumentSerde
}
// A list of origins (domain names) that CloudFront can use as the value for the
// Access-Control-Allow-Origin HTTP response header. For more information about the
// Access-Control-Allow-Origin HTTP response header, see
// Access-Control-Allow-Origin (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin)
// in the MDN Web Docs.
type ResponseHeadersPolicyAccessControlAllowOrigins struct {
// The list of origins (domain names). You can specify * to allow all origins.
//
// This member is required.
Items []string
// The number of origins in the list.
//
// This member is required.
Quantity *int32
noSmithyDocumentSerde
}
// A list of HTTP headers that CloudFront includes as values for the
// Access-Control-Expose-Headers HTTP response header. For more information about
// the Access-Control-Expose-Headers HTTP response header, see
// Access-Control-Expose-Headers (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers)
// in the MDN Web Docs.
type ResponseHeadersPolicyAccessControlExposeHeaders struct {
// The number of HTTP headers in the list.
//
// This member is required.
Quantity *int32
// The list of HTTP headers. You can specify * to expose all headers.
Items []string
noSmithyDocumentSerde
}
// A response headers policy configuration. A response headers policy
// configuration contains metadata about the response headers policy, and
// configurations for sets of HTTP response headers.
type ResponseHeadersPolicyConfig struct {
// A name to identify the response headers policy. The name must be unique for
// response headers policies in this Amazon Web Services account.
//
// This member is required.
Name *string
// A comment to describe the response headers policy. The comment cannot be longer
// than 128 characters.
Comment *string
// A configuration for a set of HTTP response headers that are used for
// cross-origin resource sharing (CORS).
CorsConfig *ResponseHeadersPolicyCorsConfig
// A configuration for a set of custom HTTP response headers.
CustomHeadersConfig *ResponseHeadersPolicyCustomHeadersConfig
// A configuration for a set of HTTP headers to remove from the HTTP response.
RemoveHeadersConfig *ResponseHeadersPolicyRemoveHeadersConfig
// A configuration for a set of security-related HTTP response headers.
SecurityHeadersConfig *ResponseHeadersPolicySecurityHeadersConfig
// A configuration for enabling the Server-Timing header in HTTP responses sent
// from CloudFront.
ServerTimingHeadersConfig *ResponseHeadersPolicyServerTimingHeadersConfig
noSmithyDocumentSerde
}
// The policy directives and their values that CloudFront includes as values for
// the Content-Security-Policy HTTP response header. For more information about
// the Content-Security-Policy HTTP response header, see Content-Security-Policy (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy)
// in the MDN Web Docs.
type ResponseHeadersPolicyContentSecurityPolicy struct {
// The policy directives and their values that CloudFront includes as values for
// the Content-Security-Policy HTTP response header.
//
// This member is required.
ContentSecurityPolicy *string
// A Boolean that determines whether CloudFront overrides the
// Content-Security-Policy HTTP response header received from the origin with the
// one specified in this response headers policy.
//
// This member is required.
Override *bool
noSmithyDocumentSerde
}
// Determines whether CloudFront includes the X-Content-Type-Options HTTP response
// header with its value set to nosniff . For more information about the
// X-Content-Type-Options HTTP response header, see X-Content-Type-Options (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options)
// in the MDN Web Docs.
type ResponseHeadersPolicyContentTypeOptions struct {
// A Boolean that determines whether CloudFront overrides the
// X-Content-Type-Options HTTP response header received from the origin with the
// one specified in this response headers policy.
//
// This member is required.
Override *bool
noSmithyDocumentSerde
}
// A configuration for a set of HTTP response headers that are used for
// cross-origin resource sharing (CORS). CloudFront adds these headers to HTTP
// responses that it sends for CORS requests that match a cache behavior associated
// with this response headers policy. For more information about CORS, see
// Cross-Origin Resource Sharing (CORS) (https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)
// in the MDN Web Docs.
type ResponseHeadersPolicyCorsConfig struct {
// A Boolean that CloudFront uses as the value for the
// Access-Control-Allow-Credentials HTTP response header. For more information
// about the Access-Control-Allow-Credentials HTTP response header, see
// Access-Control-Allow-Credentials (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Credentials)
// in the MDN Web Docs.
//
// This member is required.
AccessControlAllowCredentials *bool
// A list of HTTP header names that CloudFront includes as values for the
// Access-Control-Allow-Headers HTTP response header. For more information about
// the Access-Control-Allow-Headers HTTP response header, see
// Access-Control-Allow-Headers (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers)
// in the MDN Web Docs.
//
// This member is required.
AccessControlAllowHeaders *ResponseHeadersPolicyAccessControlAllowHeaders
// A list of HTTP methods that CloudFront includes as values for the
// Access-Control-Allow-Methods HTTP response header. For more information about
// the Access-Control-Allow-Methods HTTP response header, see
// Access-Control-Allow-Methods (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Methods)
// in the MDN Web Docs.
//
// This member is required.
AccessControlAllowMethods *ResponseHeadersPolicyAccessControlAllowMethods
// A list of origins (domain names) that CloudFront can use as the value for the
// Access-Control-Allow-Origin HTTP response header. For more information about the
// Access-Control-Allow-Origin HTTP response header, see
// Access-Control-Allow-Origin (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin)
// in the MDN Web Docs.
//
// This member is required.
AccessControlAllowOrigins *ResponseHeadersPolicyAccessControlAllowOrigins
// A Boolean that determines whether CloudFront overrides HTTP response headers
// received from the origin with the ones specified in this response headers
// policy.
//
// This member is required.
OriginOverride *bool
// A list of HTTP headers that CloudFront includes as values for the
// Access-Control-Expose-Headers HTTP response header. For more information about
// the Access-Control-Expose-Headers HTTP response header, see
// Access-Control-Expose-Headers (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers)
// in the MDN Web Docs.
AccessControlExposeHeaders *ResponseHeadersPolicyAccessControlExposeHeaders
// A number that CloudFront uses as the value for the Access-Control-Max-Age HTTP
// response header. For more information about the Access-Control-Max-Age HTTP
// response header, see Access-Control-Max-Age (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Max-Age)
// in the MDN Web Docs.
AccessControlMaxAgeSec *int32
noSmithyDocumentSerde
}
// An HTTP response header name and its value. CloudFront includes this header in
// HTTP responses that it sends for requests that match a cache behavior that's
// associated with this response headers policy.
type ResponseHeadersPolicyCustomHeader struct {
// The HTTP response header name.
//
// This member is required.
Header *string
// A Boolean that determines whether CloudFront overrides a response header with
// the same name received from the origin with the header specified here.
//
// This member is required.
Override *bool
// The value for the HTTP response header.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// A list of HTTP response header names and their values. CloudFront includes
// these headers in HTTP responses that it sends for requests that match a cache
// behavior that's associated with this response headers policy.
type ResponseHeadersPolicyCustomHeadersConfig struct {
// The number of HTTP response headers in the list.
//
// This member is required.
Quantity *int32
// The list of HTTP response headers and their values.
Items []ResponseHeadersPolicyCustomHeader
noSmithyDocumentSerde
}
// Determines whether CloudFront includes the X-Frame-Options HTTP response header
// and the header's value. For more information about the X-Frame-Options HTTP
// response header, see X-Frame-Options (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options)
// in the MDN Web Docs.
type ResponseHeadersPolicyFrameOptions struct {
// The value of the X-Frame-Options HTTP response header. Valid values are DENY
// and SAMEORIGIN . For more information about these values, see X-Frame-Options (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options)
// in the MDN Web Docs.
//
// This member is required.
FrameOption FrameOptionsList
// A Boolean that determines whether CloudFront overrides the X-Frame-Options HTTP
// response header received from the origin with the one specified in this response
// headers policy.
//
// This member is required.
Override *bool
noSmithyDocumentSerde
}
// A list of response headers policies.
type ResponseHeadersPolicyList struct {
// The maximum number of response headers policies requested.
//
// This member is required.
MaxItems *int32
// The number of response headers policies returned.
//
// This member is required.
Quantity *int32
// The response headers policies in the list.
Items []ResponseHeadersPolicySummary
// If there are more items in the list than are in this response, this element is
// present. It contains the value that you should use in the Marker field of a
// subsequent request to continue listing response headers policies where you left
// off.
NextMarker *string
noSmithyDocumentSerde
}
// Determines whether CloudFront includes the Referrer-Policy HTTP response header
// and the header's value. For more information about the Referrer-Policy HTTP
// response header, see Referrer-Policy (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy)
// in the MDN Web Docs.
type ResponseHeadersPolicyReferrerPolicy struct {
// A Boolean that determines whether CloudFront overrides the Referrer-Policy HTTP
// response header received from the origin with the one specified in this response
// headers policy.
//
// This member is required.
Override *bool
// The value of the Referrer-Policy HTTP response header. Valid values are:
// - no-referrer
// - no-referrer-when-downgrade
// - origin
// - origin-when-cross-origin
// - same-origin
// - strict-origin
// - strict-origin-when-cross-origin
// - unsafe-url
// For more information about these values, see Referrer-Policy (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy)
// in the MDN Web Docs.
//
// This member is required.
ReferrerPolicy ReferrerPolicyList
noSmithyDocumentSerde
}
// The name of an HTTP header that CloudFront removes from HTTP responses to
// requests that match the cache behavior that this response headers policy is
// attached to.
type ResponseHeadersPolicyRemoveHeader struct {
// The HTTP header name.
//
// This member is required.
Header *string
noSmithyDocumentSerde
}
// A list of HTTP header names that CloudFront removes from HTTP responses to
// requests that match the cache behavior that this response headers policy is
// attached to.
type ResponseHeadersPolicyRemoveHeadersConfig struct {
// The number of HTTP header names in the list.
//
// This member is required.
Quantity *int32
// The list of HTTP header names.
Items []ResponseHeadersPolicyRemoveHeader
noSmithyDocumentSerde
}
// A configuration for a set of security-related HTTP response headers. CloudFront
// adds these headers to HTTP responses that it sends for requests that match a
// cache behavior associated with this response headers policy.
type ResponseHeadersPolicySecurityHeadersConfig struct {
// The policy directives and their values that CloudFront includes as values for
// the Content-Security-Policy HTTP response header. For more information about
// the Content-Security-Policy HTTP response header, see Content-Security-Policy (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy)
// in the MDN Web Docs.
ContentSecurityPolicy *ResponseHeadersPolicyContentSecurityPolicy
// Determines whether CloudFront includes the X-Content-Type-Options HTTP response
// header with its value set to nosniff . For more information about the
// X-Content-Type-Options HTTP response header, see X-Content-Type-Options (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options)
// in the MDN Web Docs.
ContentTypeOptions *ResponseHeadersPolicyContentTypeOptions
// Determines whether CloudFront includes the X-Frame-Options HTTP response header
// and the header's value. For more information about the X-Frame-Options HTTP
// response header, see X-Frame-Options (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options)
// in the MDN Web Docs.
FrameOptions *ResponseHeadersPolicyFrameOptions
// Determines whether CloudFront includes the Referrer-Policy HTTP response header
// and the header's value. For more information about the Referrer-Policy HTTP
// response header, see Referrer-Policy (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy)
// in the MDN Web Docs.
ReferrerPolicy *ResponseHeadersPolicyReferrerPolicy
// Determines whether CloudFront includes the Strict-Transport-Security HTTP
// response header and the header's value. For more information about the
// Strict-Transport-Security HTTP response header, see Strict-Transport-Security (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security)
// in the MDN Web Docs.
StrictTransportSecurity *ResponseHeadersPolicyStrictTransportSecurity
// Determines whether CloudFront includes the X-XSS-Protection HTTP response
// header and the header's value. For more information about the X-XSS-Protection
// HTTP response header, see X-XSS-Protection (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection)
// in the MDN Web Docs.
XSSProtection *ResponseHeadersPolicyXSSProtection
noSmithyDocumentSerde
}
// A configuration for enabling the Server-Timing header in HTTP responses sent
// from CloudFront. CloudFront adds this header to HTTP responses that it sends in
// response to requests that match a cache behavior that's associated with this
// response headers policy. You can use the Server-Timing header to view metrics
// that can help you gain insights about the behavior and performance of
// CloudFront. For example, you can see which cache layer served a cache hit, or
// the first byte latency from the origin when there was a cache miss. You can use
// the metrics in the Server-Timing header to troubleshoot issues or test the
// efficiency of your CloudFront configuration. For more information, see
// Server-Timing header (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/understanding-response-headers-policies.html#server-timing-header)
// in the Amazon CloudFront Developer Guide.
type ResponseHeadersPolicyServerTimingHeadersConfig struct {
// A Boolean that determines whether CloudFront adds the Server-Timing header to
// HTTP responses that it sends in response to requests that match a cache behavior
// that's associated with this response headers policy.
//
// This member is required.
Enabled *bool
// A number 0–100 (inclusive) that specifies the percentage of responses that you
// want CloudFront to add the Server-Timing header to. When you set the sampling
// rate to 100, CloudFront adds the Server-Timing header to the HTTP response for
// every request that matches the cache behavior that this response headers policy
// is attached to. When you set it to 50, CloudFront adds the header to 50% of the
// responses for requests that match the cache behavior. You can set the sampling
// rate to any number 0–100 with up to four decimal places.
SamplingRate *float64
noSmithyDocumentSerde
}
// Determines whether CloudFront includes the Strict-Transport-Security HTTP
// response header and the header's value. For more information about the
// Strict-Transport-Security HTTP response header, see Strict-Transport-Security (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security)
// in the MDN Web Docs.
type ResponseHeadersPolicyStrictTransportSecurity struct {
// A number that CloudFront uses as the value for the max-age directive in the
// Strict-Transport-Security HTTP response header.
//
// This member is required.
AccessControlMaxAgeSec *int32
// A Boolean that determines whether CloudFront overrides the
// Strict-Transport-Security HTTP response header received from the origin with the
// one specified in this response headers policy.
//
// This member is required.
Override *bool
// A Boolean that determines whether CloudFront includes the includeSubDomains
// directive in the Strict-Transport-Security HTTP response header.
IncludeSubdomains *bool
// A Boolean that determines whether CloudFront includes the preload directive in
// the Strict-Transport-Security HTTP response header.
Preload *bool
noSmithyDocumentSerde
}
// Contains a response headers policy.
type ResponseHeadersPolicySummary struct {
// The response headers policy.
//
// This member is required.
ResponseHeadersPolicy *ResponseHeadersPolicy
// The type of response headers policy, either managed (created by Amazon Web
// Services) or custom (created in this Amazon Web Services account).
//
// This member is required.
Type ResponseHeadersPolicyType
noSmithyDocumentSerde
}
// Determines whether CloudFront includes the X-XSS-Protection HTTP response
// header and the header's value. For more information about the X-XSS-Protection
// HTTP response header, see X-XSS-Protection (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection)
// in the MDN Web Docs.
type ResponseHeadersPolicyXSSProtection struct {
// A Boolean that determines whether CloudFront overrides the X-XSS-Protection
// HTTP response header received from the origin with the one specified in this
// response headers policy.
//
// This member is required.
Override *bool
// A Boolean that determines the value of the X-XSS-Protection HTTP response
// header. When this setting is true , the value of the X-XSS-Protection header is
// 1 . When this setting is false , the value of the X-XSS-Protection header is 0 .
// For more information about these settings, see X-XSS-Protection (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection)
// in the MDN Web Docs.
//
// This member is required.
Protection *bool
// A Boolean that determines whether CloudFront includes the mode=block directive
// in the X-XSS-Protection header. For more information about this directive, see
// X-XSS-Protection (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection)
// in the MDN Web Docs.
ModeBlock *bool
// A reporting URI, which CloudFront uses as the value of the report directive in
// the X-XSS-Protection header. You cannot specify a ReportUri when ModeBlock is
// true . For more information about using a reporting URL, see X-XSS-Protection (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection)
// in the MDN Web Docs.
ReportUri *string
noSmithyDocumentSerde
}
// A complex type that identifies ways in which you want to restrict distribution
// of your content.
type Restrictions struct {
// A complex type that controls the countries in which your content is
// distributed. CloudFront determines the location of your users using MaxMind
// GeoIP databases.
//
// This member is required.
GeoRestriction *GeoRestriction
noSmithyDocumentSerde
}
// A complex type that contains information about the Amazon S3 bucket from which
// you want CloudFront to get your media files for distribution.
type S3Origin struct {
// The DNS name of the Amazon S3 origin.
//
// This member is required.
DomainName *string
// The CloudFront origin access identity to associate with the distribution. Use
// an origin access identity to configure the distribution so that end users can
// only access objects in an Amazon S3 bucket through CloudFront. If you want end
// users to be able to access objects using either the CloudFront URL or the Amazon
// S3 URL, specify an empty OriginAccessIdentity element. To delete the origin
// access identity from an existing distribution, update the distribution
// configuration and include an empty OriginAccessIdentity element. To replace the
// origin access identity, update the distribution configuration and specify the
// new origin access identity. For more information, see Using an Origin Access
// Identity to Restrict Access to Your Amazon S3 Content (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
OriginAccessIdentity *string
noSmithyDocumentSerde
}
// A complex type that contains information about the Amazon S3 origin. If the
// origin is a custom origin or an S3 bucket that is configured as a website
// endpoint, use the CustomOriginConfig element instead.
type S3OriginConfig struct {
// The CloudFront origin access identity to associate with the origin. Use an
// origin access identity to configure the origin so that viewers can only access
// objects in an Amazon S3 bucket through CloudFront. The format of the value is:
// origin-access-identity/cloudfront/ID-of-origin-access-identity where
// ID-of-origin-access-identity is the value that CloudFront returned in the ID
// element when you created the origin access identity. If you want viewers to be
// able to access objects using either the CloudFront URL or the Amazon S3 URL,
// specify an empty OriginAccessIdentity element. To delete the origin access
// identity from an existing distribution, update the distribution configuration
// and include an empty OriginAccessIdentity element. To replace the origin access
// identity, update the distribution configuration and specify the new origin
// access identity. For more information about the origin access identity, see
// Serving Private Content through CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
OriginAccessIdentity *string
noSmithyDocumentSerde
}
// Session stickiness provides the ability to define multiple requests from a
// single viewer as a single session. This prevents the potentially inconsistent
// experience of sending some of a given user's requests to your staging
// distribution, while others are sent to your primary distribution. Define the
// session duration using TTL values.
type SessionStickinessConfig struct {
// The amount of time after which you want sessions to cease if no requests are
// received. Allowed values are 300–3600 seconds (5–60 minutes). The value must be
// less than or equal to MaximumTTL .
//
// This member is required.
IdleTTL *int32
// The maximum amount of time to consider requests from the viewer as being part
// of the same session. Allowed values are 300–3600 seconds (5–60 minutes). The
// value must be less than or equal to IdleTTL .
//
// This member is required.
MaximumTTL *int32
noSmithyDocumentSerde
}
// A list of Amazon Web Services accounts and the active CloudFront key pairs in
// each account that CloudFront can use to verify the signatures of signed URLs and
// signed cookies.
type Signer struct {
// An Amazon Web Services account number that contains active CloudFront key pairs
// that CloudFront can use to verify the signatures of signed URLs and signed
// cookies. If the Amazon Web Services account that owns the key pairs is the same
// account that owns the CloudFront distribution, the value of this field is self .
AwsAccountNumber *string
// A list of CloudFront key pair identifiers.
KeyPairIds *KeyPairIds
noSmithyDocumentSerde
}
// The CloudFront domain name of the staging distribution.
type StagingDistributionDnsNames struct {
// The number of CloudFront domain names in your staging distribution.
//
// This member is required.
Quantity *int32
// The CloudFront domain name of the staging distribution.
Items []string
noSmithyDocumentSerde
}
// A complex data type for the status codes that you specify that, when returned
// by a primary origin, trigger CloudFront to failover to a second origin.
type StatusCodes struct {
// The items (status codes) for an origin group.
//
// This member is required.
Items []int32
// The number of status codes.
//
// This member is required.
Quantity *int32
noSmithyDocumentSerde
}
// A streaming distribution tells CloudFront where you want RTMP content to be
// delivered from, and the details about how to track and manage content delivery.
type StreamingDistribution struct {
// The ARN (Amazon Resource Name) for the distribution. For example:
// arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5 , where
// 123456789012 is your Amazon Web Services account ID.
//
// This member is required.
ARN *string
// A complex type that lists the Amazon Web Services accounts, if any, that you
// included in the TrustedSigners complex type for this distribution. These are
// the accounts that you want to allow to create signed URLs for private content.
// The Signer complex type lists the Amazon Web Services account number of the
// trusted signer or self if the signer is the Amazon Web Services account that
// created the distribution. The Signer element also includes the IDs of any
// active CloudFront key pairs that are associated with the trusted signer's Amazon
// Web Services account. If no KeyPairId element appears for a Signer , that signer
// can't create signed URLs. For more information, see Serving Private Content
// through CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
ActiveTrustedSigners *ActiveTrustedSigners
// The domain name that corresponds to the streaming distribution, for example,
// s5c39gqb8ow64r.cloudfront.net .
//
// This member is required.
DomainName *string
// The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE .
//
// This member is required.
Id *string
// The current status of the RTMP distribution. When the status is Deployed , the
// distribution's information is propagated to all CloudFront edge locations.
//
// This member is required.
Status *string
// The current configuration information for the RTMP distribution.
//
// This member is required.
StreamingDistributionConfig *StreamingDistributionConfig
// The date and time that the distribution was last modified.
LastModifiedTime *time.Time
noSmithyDocumentSerde
}
// The RTMP distribution's configuration information.
type StreamingDistributionConfig struct {
// A unique value (for example, a date-time stamp) that ensures that the request
// can't be replayed. If the value of CallerReference is new (regardless of the
// content of the StreamingDistributionConfig object), CloudFront creates a new
// distribution. If CallerReference is a value that you already sent in a previous
// request to create a distribution, CloudFront returns a DistributionAlreadyExists
// error.
//
// This member is required.
CallerReference *string
// Any comments you want to include about the streaming distribution.
//
// This member is required.
Comment *string
// Whether the streaming distribution is enabled to accept user requests for
// content.
//
// This member is required.
Enabled *bool
// A complex type that contains information about the Amazon S3 bucket from which
// you want CloudFront to get your media files for distribution.
//
// This member is required.
S3Origin *S3Origin
// A complex type that specifies any Amazon Web Services accounts that you want to
// permit to create signed URLs for private content. If you want the distribution
// to use signed URLs, include this element; if you want the distribution to use
// public URLs, remove this element. For more information, see Serving Private
// Content through CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
TrustedSigners *TrustedSigners
// A complex type that contains information about CNAMEs (alternate domain names),
// if any, for this streaming distribution.
Aliases *Aliases
// A complex type that controls whether access logs are written for the streaming
// distribution.
Logging *StreamingLoggingConfig
// A complex type that contains information about price class for this streaming
// distribution.
PriceClass PriceClass
noSmithyDocumentSerde
}
// A streaming distribution Configuration and a list of tags to be associated with
// the streaming distribution.
type StreamingDistributionConfigWithTags struct {
// A streaming distribution Configuration.
//
// This member is required.
StreamingDistributionConfig *StreamingDistributionConfig
// A complex type that contains zero or more Tag elements.
//
// This member is required.
Tags *Tags
noSmithyDocumentSerde
}
// A streaming distribution list.
type StreamingDistributionList struct {
// A flag that indicates whether more streaming distributions remain to be listed.
// If your results were truncated, you can make a follow-up pagination request
// using the Marker request parameter to retrieve more distributions in the list.
//
// This member is required.
IsTruncated *bool
// The value you provided for the Marker request parameter.
//
// This member is required.
Marker *string
// The value you provided for the MaxItems request parameter.
//
// This member is required.
MaxItems *int32
// The number of streaming distributions that were created by the current Amazon
// Web Services account.
//
// This member is required.
Quantity *int32
// A complex type that contains one StreamingDistributionSummary element for each
// distribution that was created by the current Amazon Web Services account.
Items []StreamingDistributionSummary
// If IsTruncated is true , this element is present and contains the value you can
// use for the Marker request parameter to continue listing your RTMP
// distributions where they left off.
NextMarker *string
noSmithyDocumentSerde
}
// A summary of the information for a CloudFront streaming distribution.
type StreamingDistributionSummary struct {
// The ARN (Amazon Resource Name) for the streaming distribution. For example:
// arn:aws:cloudfront::123456789012:streaming-distribution/EDFDVBD632BHDS5 , where
// 123456789012 is your Amazon Web Services account ID.
//
// This member is required.
ARN *string
// A complex type that contains information about CNAMEs (alternate domain names),
// if any, for this streaming distribution.
//
// This member is required.
Aliases *Aliases
// The comment originally specified when this distribution was created.
//
// This member is required.
Comment *string
// The domain name corresponding to the distribution, for example,
// d111111abcdef8.cloudfront.net .
//
// This member is required.
DomainName *string
// Whether the distribution is enabled to accept end user requests for content.
//
// This member is required.
Enabled *bool
// The identifier for the distribution, for example, EDFDVBD632BHDS5 .
//
// This member is required.
Id *string
// The date and time the distribution was last modified.
//
// This member is required.
LastModifiedTime *time.Time
// A complex type that contains information about price class for this streaming
// distribution.
//
// This member is required.
PriceClass PriceClass
// A complex type that contains information about the Amazon S3 bucket from which
// you want CloudFront to get your media files for distribution.
//
// This member is required.
S3Origin *S3Origin
// Indicates the current status of the distribution. When the status is Deployed ,
// the distribution's information is fully propagated throughout the Amazon
// CloudFront system.
//
// This member is required.
Status *string
// A complex type that specifies the Amazon Web Services accounts, if any, that
// you want to allow to create signed URLs for private content. If you want to
// require signed URLs in requests for objects in the target origin that match the
// PathPattern for this cache behavior, specify true for Enabled , and specify the
// applicable values for Quantity and Items .If you don't want to require signed
// URLs in requests for objects that match PathPattern , specify false for Enabled
// and 0 for Quantity . Omit Items . To add, change, or remove one or more trusted
// signers, change Enabled to true (if it's currently false ), change Quantity as
// applicable, and specify all of the trusted signers that you want to include in
// the updated distribution. For more information, see Serving Private Content
// through CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html)
// in the Amazon CloudFront Developer Guide.
//
// This member is required.
TrustedSigners *TrustedSigners
noSmithyDocumentSerde
}
// A complex type that controls whether access logs are written for this streaming
// distribution.
type StreamingLoggingConfig struct {
// The Amazon S3 bucket to store the access logs in, for example,
// myawslogbucket.s3.amazonaws.com .
//
// This member is required.
Bucket *string
// Specifies whether you want CloudFront to save access logs to an Amazon S3
// bucket. If you don't want to enable logging when you create a streaming
// distribution or if you want to disable logging for an existing streaming
// distribution, specify false for Enabled , and specify empty Bucket and Prefix
// elements. If you specify false for Enabled but you specify values for Bucket
// and Prefix , the values are automatically deleted.
//
// This member is required.
Enabled *bool
// An optional string that you want CloudFront to prefix to the access log
// filenames for this streaming distribution, for example, myprefix/ . If you want
// to enable logging, but you don't want to specify a prefix, you still must
// include an empty Prefix element in the Logging element.
//
// This member is required.
Prefix *string
noSmithyDocumentSerde
}
// A complex type that contains Tag key and Tag value.
type Tag struct {
// A string that contains Tag key. The string length should be between 1 and 128
// characters. Valid characters include a-z , A-Z , 0-9 , space, and the special
// characters _ - . : / = + @ .
//
// This member is required.
Key *string
// A string that contains an optional Tag value. The string length should be
// between 0 and 256 characters. Valid characters include a-z , A-Z , 0-9 , space,
// and the special characters _ - . : / = + @ .
Value *string
noSmithyDocumentSerde
}
// A complex type that contains zero or more Tag elements.
type TagKeys struct {
// A complex type that contains Tag key elements.
Items []string
noSmithyDocumentSerde
}
// A complex type that contains zero or more Tag elements.
type Tags struct {
// A complex type that contains Tag elements.
Items []Tag
noSmithyDocumentSerde
}
// Contains the result of testing a CloudFront function with TestFunction .
type TestResult struct {
// The amount of time that the function took to run as a percentage of the maximum
// allowed time. For example, a compute utilization of 35 means that the function
// completed in 35% of the maximum allowed time.
ComputeUtilization *string
// If the result of testing the function was an error, this field contains the
// error message.
FunctionErrorMessage *string
// Contains the log lines that the function wrote (if any) when running the test.
FunctionExecutionLogs []string
// The event object returned by the function. For more information about the
// structure of the event object, see Event object structure (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/functions-event-structure.html)
// in the Amazon CloudFront Developer Guide.
FunctionOutput *string
// Contains configuration information and metadata about the CloudFront function
// that was tested.
FunctionSummary *FunctionSummary
noSmithyDocumentSerde
}
// The traffic configuration of your continuous deployment.
type TrafficConfig struct {
// The type of traffic configuration.
//
// This member is required.
Type ContinuousDeploymentPolicyType
// Determines which HTTP requests are sent to the staging distribution.
SingleHeaderConfig *ContinuousDeploymentSingleHeaderConfig
// Contains the percentage of traffic to send to the staging distribution.
SingleWeightConfig *ContinuousDeploymentSingleWeightConfig
noSmithyDocumentSerde
}
// A list of key groups whose public keys CloudFront can use to verify the
// signatures of signed URLs and signed cookies.
type TrustedKeyGroups struct {
// This field is true if any of the key groups in the list have public keys that
// CloudFront can use to verify the signatures of signed URLs and signed cookies.
// If not, this field is false .
//
// This member is required.
Enabled *bool
// The number of key groups in the list.
//
// This member is required.
Quantity *int32
// A list of key groups identifiers.
Items []string
noSmithyDocumentSerde
}
// A list of Amazon Web Services accounts whose public keys CloudFront can use to
// verify the signatures of signed URLs and signed cookies.
type TrustedSigners struct {
// This field is true if any of the Amazon Web Services accounts in the list are
// configured as trusted signers. If not, this field is false .
//
// This member is required.
Enabled *bool
// The number of Amazon Web Services accounts in the list.
//
// This member is required.
Quantity *int32
// A list of Amazon Web Services account identifiers.
Items []string
noSmithyDocumentSerde
}
// A complex type that determines the distribution's SSL/TLS configuration for
// communicating with viewers. If the distribution doesn't use Aliases (also known
// as alternate domain names or CNAMEs)—that is, if the distribution uses the
// CloudFront domain name such as d111111abcdef8.cloudfront.net —set
// CloudFrontDefaultCertificate to true and leave all other fields empty. If the
// distribution uses Aliases (alternate domain names or CNAMEs), use the fields in
// this type to specify the following settings:
// - Which viewers the distribution accepts HTTPS connections from: only viewers
// that support server name indication (SNI) (https://en.wikipedia.org/wiki/Server_Name_Indication)
// (recommended), or all viewers including those that don't support SNI.
// - To accept HTTPS connections from only viewers that support SNI, set
// SSLSupportMethod to sni-only . This is recommended. Most browsers and clients
// support SNI.
// - To accept HTTPS connections from all viewers, including those that don't
// support SNI, set SSLSupportMethod to vip . This is not recommended, and
// results in additional monthly charges from CloudFront.
// - The minimum SSL/TLS protocol version that the distribution can use to
// communicate with viewers. To specify a minimum version, choose a value for
// MinimumProtocolVersion . For more information, see Security Policy (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValues-security-policy)
// in the Amazon CloudFront Developer Guide.
// - The location of the SSL/TLS certificate, Certificate Manager (ACM) (https://docs.aws.amazon.com/acm/latest/userguide/acm-overview.html)
// (recommended) or Identity and Access Management (IAM) (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html)
// . You specify the location by setting a value in one of the following fields
// (not both):
// - ACMCertificateArn
// - IAMCertificateId
//
// All distributions support HTTPS connections from viewers. To require viewers to
// use HTTPS only, or to redirect them from HTTP to HTTPS, use ViewerProtocolPolicy
// in the CacheBehavior or DefaultCacheBehavior . To specify how CloudFront should
// use SSL/TLS to communicate with your custom origin, use CustomOriginConfig . For
// more information, see Using HTTPS with CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https.html)
// and Using Alternate Domain Names and HTTPS (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https-alternate-domain-names.html)
// in the Amazon CloudFront Developer Guide.
type ViewerCertificate struct {
// If the distribution uses Aliases (alternate domain names or CNAMEs) and the
// SSL/TLS certificate is stored in Certificate Manager (ACM) (https://docs.aws.amazon.com/acm/latest/userguide/acm-overview.html)
// , provide the Amazon Resource Name (ARN) of the ACM certificate. CloudFront only
// supports ACM certificates in the US East (N. Virginia) Region ( us-east-1 ). If
// you specify an ACM certificate ARN, you must also specify values for
// MinimumProtocolVersion and SSLSupportMethod .
ACMCertificateArn *string
// This field is deprecated. Use one of the following fields instead:
// - ACMCertificateArn
// - IAMCertificateId
// - CloudFrontDefaultCertificate
//
// Deprecated: This member has been deprecated.
Certificate *string
// This field is deprecated. Use one of the following fields instead:
// - ACMCertificateArn
// - IAMCertificateId
// - CloudFrontDefaultCertificate
//
// Deprecated: This member has been deprecated.
CertificateSource CertificateSource
// If the distribution uses the CloudFront domain name such as
// d111111abcdef8.cloudfront.net , set this field to true . If the distribution
// uses Aliases (alternate domain names or CNAMEs), set this field to false and
// specify values for the following fields:
// - ACMCertificateArn or IAMCertificateId (specify a value for one, not both)
// - MinimumProtocolVersion
// - SSLSupportMethod
CloudFrontDefaultCertificate *bool
// If the distribution uses Aliases (alternate domain names or CNAMEs) and the
// SSL/TLS certificate is stored in Identity and Access Management (IAM) (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html)
// , provide the ID of the IAM certificate. If you specify an IAM certificate ID,
// you must also specify values for MinimumProtocolVersion and SSLSupportMethod .
IAMCertificateId *string
// If the distribution uses Aliases (alternate domain names or CNAMEs), specify
// the security policy that you want CloudFront to use for HTTPS connections with
// viewers. The security policy determines two settings:
// - The minimum SSL/TLS protocol that CloudFront can use to communicate with
// viewers.
// - The ciphers that CloudFront can use to encrypt the content that it returns
// to viewers.
// For more information, see Security Policy (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValues-security-policy)
// and Supported Protocols and Ciphers Between Viewers and CloudFront (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/secure-connections-supported-viewer-protocols-ciphers.html#secure-connections-supported-ciphers)
// in the Amazon CloudFront Developer Guide. On the CloudFront console, this
// setting is called Security Policy. When you're using SNI only (you set
// SSLSupportMethod to sni-only ), you must specify TLSv1 or higher. If the
// distribution uses the CloudFront domain name such as
// d111111abcdef8.cloudfront.net (you set CloudFrontDefaultCertificate to true ),
// CloudFront automatically sets the security policy to TLSv1 regardless of the
// value that you set here.
MinimumProtocolVersion MinimumProtocolVersion
// If the distribution uses Aliases (alternate domain names or CNAMEs), specify
// which viewers the distribution accepts HTTPS connections from.
// - sni-only – The distribution accepts HTTPS connections from only viewers that
// support server name indication (SNI) (https://en.wikipedia.org/wiki/Server_Name_Indication)
// . This is recommended. Most browsers and clients support SNI.
// - vip – The distribution accepts HTTPS connections from all viewers including
// those that don't support SNI. This is not recommended, and results in additional
// monthly charges from CloudFront.
// - static-ip - Do not specify this value unless your distribution has been
// enabled for this feature by the CloudFront team. If you have a use case that
// requires static IP addresses for a distribution, contact CloudFront through the
// Amazon Web Services Support Center (https://console.aws.amazon.com/support/home)
// .
// If the distribution uses the CloudFront domain name such as
// d111111abcdef8.cloudfront.net , don't set a value for this field.
SSLSupportMethod SSLSupportMethod
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|