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
|
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package route53domains provides a client for Amazon Route 53 Domains.
package route53domains
import (
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opCheckDomainAvailability = "CheckDomainAvailability"
// CheckDomainAvailabilityRequest generates a request for the CheckDomainAvailability operation.
func (c *Route53Domains) CheckDomainAvailabilityRequest(input *CheckDomainAvailabilityInput) (req *request.Request, output *CheckDomainAvailabilityOutput) {
op := &request.Operation{
Name: opCheckDomainAvailability,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CheckDomainAvailabilityInput{}
}
req = c.newRequest(op, input, output)
output = &CheckDomainAvailabilityOutput{}
req.Data = output
return
}
// This operation checks the availability of one domain name. You can access
// this API without authenticating. Note that if the availability status of
// a domain is pending, you must submit another request to determine the availability
// of the domain name.
func (c *Route53Domains) CheckDomainAvailability(input *CheckDomainAvailabilityInput) (*CheckDomainAvailabilityOutput, error) {
req, out := c.CheckDomainAvailabilityRequest(input)
err := req.Send()
return out, err
}
const opDeleteTagsForDomain = "DeleteTagsForDomain"
// DeleteTagsForDomainRequest generates a request for the DeleteTagsForDomain operation.
func (c *Route53Domains) DeleteTagsForDomainRequest(input *DeleteTagsForDomainInput) (req *request.Request, output *DeleteTagsForDomainOutput) {
op := &request.Operation{
Name: opDeleteTagsForDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteTagsForDomainInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteTagsForDomainOutput{}
req.Data = output
return
}
// This operation deletes the specified tags for a domain.
//
// All tag operations are eventually consistent; subsequent operations may
// not immediately represent all issued operations.
func (c *Route53Domains) DeleteTagsForDomain(input *DeleteTagsForDomainInput) (*DeleteTagsForDomainOutput, error) {
req, out := c.DeleteTagsForDomainRequest(input)
err := req.Send()
return out, err
}
const opDisableDomainAutoRenew = "DisableDomainAutoRenew"
// DisableDomainAutoRenewRequest generates a request for the DisableDomainAutoRenew operation.
func (c *Route53Domains) DisableDomainAutoRenewRequest(input *DisableDomainAutoRenewInput) (req *request.Request, output *DisableDomainAutoRenewOutput) {
op := &request.Operation{
Name: opDisableDomainAutoRenew,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DisableDomainAutoRenewInput{}
}
req = c.newRequest(op, input, output)
output = &DisableDomainAutoRenewOutput{}
req.Data = output
return
}
// This operation disables automatic renewal of domain registration for the
// specified domain.
//
// Caution! Amazon Route 53 doesn't have a manual renewal process, so if you
// disable automatic renewal, registration for the domain will not be renewed
// when the expiration date passes, and you will lose control of the domain
// name.
func (c *Route53Domains) DisableDomainAutoRenew(input *DisableDomainAutoRenewInput) (*DisableDomainAutoRenewOutput, error) {
req, out := c.DisableDomainAutoRenewRequest(input)
err := req.Send()
return out, err
}
const opDisableDomainTransferLock = "DisableDomainTransferLock"
// DisableDomainTransferLockRequest generates a request for the DisableDomainTransferLock operation.
func (c *Route53Domains) DisableDomainTransferLockRequest(input *DisableDomainTransferLockInput) (req *request.Request, output *DisableDomainTransferLockOutput) {
op := &request.Operation{
Name: opDisableDomainTransferLock,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DisableDomainTransferLockInput{}
}
req = c.newRequest(op, input, output)
output = &DisableDomainTransferLockOutput{}
req.Data = output
return
}
// This operation removes the transfer lock on the domain (specifically the
// clientTransferProhibited status) to allow domain transfers. We recommend
// you refrain from performing this action unless you intend to transfer the
// domain to a different registrar. Successful submission returns an operation
// ID that you can use to track the progress and completion of the action. If
// the request is not completed successfully, the domain registrant will be
// notified by email.
func (c *Route53Domains) DisableDomainTransferLock(input *DisableDomainTransferLockInput) (*DisableDomainTransferLockOutput, error) {
req, out := c.DisableDomainTransferLockRequest(input)
err := req.Send()
return out, err
}
const opEnableDomainAutoRenew = "EnableDomainAutoRenew"
// EnableDomainAutoRenewRequest generates a request for the EnableDomainAutoRenew operation.
func (c *Route53Domains) EnableDomainAutoRenewRequest(input *EnableDomainAutoRenewInput) (req *request.Request, output *EnableDomainAutoRenewOutput) {
op := &request.Operation{
Name: opEnableDomainAutoRenew,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &EnableDomainAutoRenewInput{}
}
req = c.newRequest(op, input, output)
output = &EnableDomainAutoRenewOutput{}
req.Data = output
return
}
// This operation configures Amazon Route 53 to automatically renew the specified
// domain before the domain registration expires. The cost of renewing your
// domain registration is billed to your AWS account.
//
// The period during which you can renew a domain name varies by TLD. For a
// list of TLDs and their renewal policies, see "Renewal, restoration, and deletion
// times" (http://wiki.gandi.net/en/domains/renew#renewal_restoration_and_deletion_times)
// on the website for our registrar partner, Gandi. Route 53 requires that you
// renew before the end of the renewal period that is listed on the Gandi website
// so we can complete processing before the deadline.
func (c *Route53Domains) EnableDomainAutoRenew(input *EnableDomainAutoRenewInput) (*EnableDomainAutoRenewOutput, error) {
req, out := c.EnableDomainAutoRenewRequest(input)
err := req.Send()
return out, err
}
const opEnableDomainTransferLock = "EnableDomainTransferLock"
// EnableDomainTransferLockRequest generates a request for the EnableDomainTransferLock operation.
func (c *Route53Domains) EnableDomainTransferLockRequest(input *EnableDomainTransferLockInput) (req *request.Request, output *EnableDomainTransferLockOutput) {
op := &request.Operation{
Name: opEnableDomainTransferLock,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &EnableDomainTransferLockInput{}
}
req = c.newRequest(op, input, output)
output = &EnableDomainTransferLockOutput{}
req.Data = output
return
}
// This operation sets the transfer lock on the domain (specifically the clientTransferProhibited
// status) to prevent domain transfers. Successful submission returns an operation
// ID that you can use to track the progress and completion of the action. If
// the request is not completed successfully, the domain registrant will be
// notified by email.
func (c *Route53Domains) EnableDomainTransferLock(input *EnableDomainTransferLockInput) (*EnableDomainTransferLockOutput, error) {
req, out := c.EnableDomainTransferLockRequest(input)
err := req.Send()
return out, err
}
const opGetDomainDetail = "GetDomainDetail"
// GetDomainDetailRequest generates a request for the GetDomainDetail operation.
func (c *Route53Domains) GetDomainDetailRequest(input *GetDomainDetailInput) (req *request.Request, output *GetDomainDetailOutput) {
op := &request.Operation{
Name: opGetDomainDetail,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetDomainDetailInput{}
}
req = c.newRequest(op, input, output)
output = &GetDomainDetailOutput{}
req.Data = output
return
}
// This operation returns detailed information about the domain. The domain's
// contact information is also returned as part of the output.
func (c *Route53Domains) GetDomainDetail(input *GetDomainDetailInput) (*GetDomainDetailOutput, error) {
req, out := c.GetDomainDetailRequest(input)
err := req.Send()
return out, err
}
const opGetOperationDetail = "GetOperationDetail"
// GetOperationDetailRequest generates a request for the GetOperationDetail operation.
func (c *Route53Domains) GetOperationDetailRequest(input *GetOperationDetailInput) (req *request.Request, output *GetOperationDetailOutput) {
op := &request.Operation{
Name: opGetOperationDetail,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetOperationDetailInput{}
}
req = c.newRequest(op, input, output)
output = &GetOperationDetailOutput{}
req.Data = output
return
}
// This operation returns the current status of an operation that is not completed.
func (c *Route53Domains) GetOperationDetail(input *GetOperationDetailInput) (*GetOperationDetailOutput, error) {
req, out := c.GetOperationDetailRequest(input)
err := req.Send()
return out, err
}
const opListDomains = "ListDomains"
// ListDomainsRequest generates a request for the ListDomains operation.
func (c *Route53Domains) ListDomainsRequest(input *ListDomainsInput) (req *request.Request, output *ListDomainsOutput) {
op := &request.Operation{
Name: opListDomains,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"Marker"},
OutputTokens: []string{"NextPageMarker"},
LimitToken: "MaxItems",
TruncationToken: "",
},
}
if input == nil {
input = &ListDomainsInput{}
}
req = c.newRequest(op, input, output)
output = &ListDomainsOutput{}
req.Data = output
return
}
// This operation returns all the domain names registered with Amazon Route
// 53 for the current AWS account.
func (c *Route53Domains) ListDomains(input *ListDomainsInput) (*ListDomainsOutput, error) {
req, out := c.ListDomainsRequest(input)
err := req.Send()
return out, err
}
func (c *Route53Domains) ListDomainsPages(input *ListDomainsInput, fn func(p *ListDomainsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListDomainsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListDomainsOutput), lastPage)
})
}
const opListOperations = "ListOperations"
// ListOperationsRequest generates a request for the ListOperations operation.
func (c *Route53Domains) ListOperationsRequest(input *ListOperationsInput) (req *request.Request, output *ListOperationsOutput) {
op := &request.Operation{
Name: opListOperations,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"Marker"},
OutputTokens: []string{"NextPageMarker"},
LimitToken: "MaxItems",
TruncationToken: "",
},
}
if input == nil {
input = &ListOperationsInput{}
}
req = c.newRequest(op, input, output)
output = &ListOperationsOutput{}
req.Data = output
return
}
// This operation returns the operation IDs of operations that are not yet complete.
func (c *Route53Domains) ListOperations(input *ListOperationsInput) (*ListOperationsOutput, error) {
req, out := c.ListOperationsRequest(input)
err := req.Send()
return out, err
}
func (c *Route53Domains) ListOperationsPages(input *ListOperationsInput, fn func(p *ListOperationsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListOperationsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListOperationsOutput), lastPage)
})
}
const opListTagsForDomain = "ListTagsForDomain"
// ListTagsForDomainRequest generates a request for the ListTagsForDomain operation.
func (c *Route53Domains) ListTagsForDomainRequest(input *ListTagsForDomainInput) (req *request.Request, output *ListTagsForDomainOutput) {
op := &request.Operation{
Name: opListTagsForDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListTagsForDomainInput{}
}
req = c.newRequest(op, input, output)
output = &ListTagsForDomainOutput{}
req.Data = output
return
}
// This operation returns all of the tags that are associated with the specified
// domain.
//
// All tag operations are eventually consistent; subsequent operations may
// not immediately represent all issued operations.
func (c *Route53Domains) ListTagsForDomain(input *ListTagsForDomainInput) (*ListTagsForDomainOutput, error) {
req, out := c.ListTagsForDomainRequest(input)
err := req.Send()
return out, err
}
const opRegisterDomain = "RegisterDomain"
// RegisterDomainRequest generates a request for the RegisterDomain operation.
func (c *Route53Domains) RegisterDomainRequest(input *RegisterDomainInput) (req *request.Request, output *RegisterDomainOutput) {
op := &request.Operation{
Name: opRegisterDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RegisterDomainInput{}
}
req = c.newRequest(op, input, output)
output = &RegisterDomainOutput{}
req.Data = output
return
}
// This operation registers a domain. Domains are registered by the AWS registrar
// partner, Gandi. For some top-level domains (TLDs), this operation requires
// extra parameters.
//
// When you register a domain, Amazon Route 53 does the following:
//
// Creates a Amazon Route 53 hosted zone that has the same name as the domain.
// Amazon Route 53 assigns four name servers to your hosted zone and automatically
// updates your domain registration with the names of these name servers. Enables
// autorenew, so your domain registration will renew automatically each year.
// We'll notify you in advance of the renewal date so you can choose whether
// to renew the registration. Optionally enables privacy protection, so WHOIS
// queries return contact information for our registrar partner, Gandi, instead
// of the information you entered for registrant, admin, and tech contacts.
// If registration is successful, returns an operation ID that you can use to
// track the progress and completion of the action. If the request is not completed
// successfully, the domain registrant is notified by email. Charges your AWS
// account an amount based on the top-level domain. For more information, see
// Amazon Route 53 Pricing (http://aws.amazon.com/route53/pricing/).
func (c *Route53Domains) RegisterDomain(input *RegisterDomainInput) (*RegisterDomainOutput, error) {
req, out := c.RegisterDomainRequest(input)
err := req.Send()
return out, err
}
const opRetrieveDomainAuthCode = "RetrieveDomainAuthCode"
// RetrieveDomainAuthCodeRequest generates a request for the RetrieveDomainAuthCode operation.
func (c *Route53Domains) RetrieveDomainAuthCodeRequest(input *RetrieveDomainAuthCodeInput) (req *request.Request, output *RetrieveDomainAuthCodeOutput) {
op := &request.Operation{
Name: opRetrieveDomainAuthCode,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RetrieveDomainAuthCodeInput{}
}
req = c.newRequest(op, input, output)
output = &RetrieveDomainAuthCodeOutput{}
req.Data = output
return
}
// This operation returns the AuthCode for the domain. To transfer a domain
// to another registrar, you provide this value to the new registrar.
func (c *Route53Domains) RetrieveDomainAuthCode(input *RetrieveDomainAuthCodeInput) (*RetrieveDomainAuthCodeOutput, error) {
req, out := c.RetrieveDomainAuthCodeRequest(input)
err := req.Send()
return out, err
}
const opTransferDomain = "TransferDomain"
// TransferDomainRequest generates a request for the TransferDomain operation.
func (c *Route53Domains) TransferDomainRequest(input *TransferDomainInput) (req *request.Request, output *TransferDomainOutput) {
op := &request.Operation{
Name: opTransferDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &TransferDomainInput{}
}
req = c.newRequest(op, input, output)
output = &TransferDomainOutput{}
req.Data = output
return
}
// This operation transfers a domain from another registrar to Amazon Route
// 53. When the transfer is complete, the domain is registered with the AWS
// registrar partner, Gandi.
//
// For transfer requirements, a detailed procedure, and information about viewing
// the status of a domain transfer, see Transferring Registration for a Domain
// to Amazon Route 53 (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-to-route-53.html)
// in the Amazon Route 53 Developer Guide.
//
// If the registrar for your domain is also the DNS service provider for the
// domain, we highly recommend that you consider transferring your DNS service
// to Amazon Route 53 or to another DNS service provider before you transfer
// your registration. Some registrars provide free DNS service when you purchase
// a domain registration. When you transfer the registration, the previous registrar
// will not renew your domain registration and could end your DNS service at
// any time.
//
// Caution! If the registrar for your domain is also the DNS service provider
// for the domain and you don't transfer DNS service to another provider, your
// website, email, and the web applications associated with the domain might
// become unavailable. If the transfer is successful, this method returns an
// operation ID that you can use to track the progress and completion of the
// action. If the transfer doesn't complete successfully, the domain registrant
// will be notified by email.
func (c *Route53Domains) TransferDomain(input *TransferDomainInput) (*TransferDomainOutput, error) {
req, out := c.TransferDomainRequest(input)
err := req.Send()
return out, err
}
const opUpdateDomainContact = "UpdateDomainContact"
// UpdateDomainContactRequest generates a request for the UpdateDomainContact operation.
func (c *Route53Domains) UpdateDomainContactRequest(input *UpdateDomainContactInput) (req *request.Request, output *UpdateDomainContactOutput) {
op := &request.Operation{
Name: opUpdateDomainContact,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateDomainContactInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateDomainContactOutput{}
req.Data = output
return
}
// This operation updates the contact information for a particular domain. Information
// for at least one contact (registrant, administrator, or technical) must be
// supplied for update.
//
// If the update is successful, this method returns an operation ID that you
// can use to track the progress and completion of the action. If the request
// is not completed successfully, the domain registrant will be notified by
// email.
func (c *Route53Domains) UpdateDomainContact(input *UpdateDomainContactInput) (*UpdateDomainContactOutput, error) {
req, out := c.UpdateDomainContactRequest(input)
err := req.Send()
return out, err
}
const opUpdateDomainContactPrivacy = "UpdateDomainContactPrivacy"
// UpdateDomainContactPrivacyRequest generates a request for the UpdateDomainContactPrivacy operation.
func (c *Route53Domains) UpdateDomainContactPrivacyRequest(input *UpdateDomainContactPrivacyInput) (req *request.Request, output *UpdateDomainContactPrivacyOutput) {
op := &request.Operation{
Name: opUpdateDomainContactPrivacy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateDomainContactPrivacyInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateDomainContactPrivacyOutput{}
req.Data = output
return
}
// This operation updates the specified domain contact's privacy setting. When
// the privacy option is enabled, personal information such as postal or email
// address is hidden from the results of a public WHOIS query. The privacy services
// are provided by the AWS registrar, Gandi. For more information, see the Gandi
// privacy features (http://www.gandi.net/domain/whois/?currency=USD&lang=en).
//
// This operation only affects the privacy of the specified contact type (registrant,
// administrator, or tech). Successful acceptance returns an operation ID that
// you can use with GetOperationDetail to track the progress and completion
// of the action. If the request is not completed successfully, the domain registrant
// will be notified by email.
func (c *Route53Domains) UpdateDomainContactPrivacy(input *UpdateDomainContactPrivacyInput) (*UpdateDomainContactPrivacyOutput, error) {
req, out := c.UpdateDomainContactPrivacyRequest(input)
err := req.Send()
return out, err
}
const opUpdateDomainNameservers = "UpdateDomainNameservers"
// UpdateDomainNameserversRequest generates a request for the UpdateDomainNameservers operation.
func (c *Route53Domains) UpdateDomainNameserversRequest(input *UpdateDomainNameserversInput) (req *request.Request, output *UpdateDomainNameserversOutput) {
op := &request.Operation{
Name: opUpdateDomainNameservers,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateDomainNameserversInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateDomainNameserversOutput{}
req.Data = output
return
}
// This operation replaces the current set of name servers for the domain with
// the specified set of name servers. If you use Amazon Route 53 as your DNS
// service, specify the four name servers in the delegation set for the hosted
// zone for the domain.
//
// If successful, this operation returns an operation ID that you can use to
// track the progress and completion of the action. If the request is not completed
// successfully, the domain registrant will be notified by email.
func (c *Route53Domains) UpdateDomainNameservers(input *UpdateDomainNameserversInput) (*UpdateDomainNameserversOutput, error) {
req, out := c.UpdateDomainNameserversRequest(input)
err := req.Send()
return out, err
}
const opUpdateTagsForDomain = "UpdateTagsForDomain"
// UpdateTagsForDomainRequest generates a request for the UpdateTagsForDomain operation.
func (c *Route53Domains) UpdateTagsForDomainRequest(input *UpdateTagsForDomainInput) (req *request.Request, output *UpdateTagsForDomainOutput) {
op := &request.Operation{
Name: opUpdateTagsForDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateTagsForDomainInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateTagsForDomainOutput{}
req.Data = output
return
}
// This operation adds or updates tags for a specified domain.
//
// All tag operations are eventually consistent; subsequent operations may
// not immediately represent all issued operations.
func (c *Route53Domains) UpdateTagsForDomain(input *UpdateTagsForDomainInput) (*UpdateTagsForDomainOutput, error) {
req, out := c.UpdateTagsForDomainRequest(input)
err := req.Send()
return out, err
}
// The CheckDomainAvailability request contains the following elements.
type CheckDomainAvailabilityInput struct {
_ struct{} `type:"structure"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// Reserved for future use.
IdnLangCode *string `type:"string"`
}
// String returns the string representation
func (s CheckDomainAvailabilityInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CheckDomainAvailabilityInput) GoString() string {
return s.String()
}
// The CheckDomainAvailability response includes the following elements.
type CheckDomainAvailabilityOutput struct {
_ struct{} `type:"structure"`
// Whether the domain name is available for registering.
//
// You can only register domains designated as AVAILABLE.
//
// Type: String
//
// Valid values:
//
// AVAILABLE – The domain name is available. AVAILABLE_RESERVED – The domain
// name is reserved under specific conditions. AVAILABLE_PREORDER – The domain
// name is available and can be preordered. UNAVAILABLE – The domain name is
// not available. UNAVAILABLE_PREMIUM – The domain name is not available. UNAVAILABLE_RESTRICTED
// – The domain name is forbidden. RESERVED – The domain name has been reserved
// for another person or organization. DONT_KNOW – The TLD registry didn't reply
// with a definitive answer about whether the domain name is available. Amazon
// Route 53 can return this response for a variety of reasons, for example,
// the registry is performing maintenance. Try again later.
Availability *string `type:"string" required:"true" enum:"DomainAvailability"`
}
// String returns the string representation
func (s CheckDomainAvailabilityOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CheckDomainAvailabilityOutput) GoString() string {
return s.String()
}
// ContactDetail includes the following elements.
type ContactDetail struct {
_ struct{} `type:"structure"`
// First line of the contact's address.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
AddressLine1 *string `type:"string"`
// Second line of contact's address, if any.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
AddressLine2 *string `type:"string"`
// The city of the contact's address.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
City *string `type:"string"`
// Indicates whether the contact is a person, company, association, or public
// organization. If you choose an option other than PERSON, you must enter an
// organization name, and you can't enable privacy protection for the contact.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Valid values: PERSON | COMPANY | ASSOCIATION | PUBLIC_BODY
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
ContactType *string `type:"string" enum:"ContactType"`
// Code for the country of the contact's address.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
CountryCode *string `type:"string" enum:"CountryCode"`
// Email address of the contact.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 254 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
Email *string `type:"string"`
// A list of name-value pairs for parameters required by certain top-level domains.
//
// Type: Complex
//
// Default: None
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Children: Name, Value
//
// Required: No
ExtraParams []*ExtraParam `type:"list"`
// Fax number of the contact.
//
// Type: String
//
// Default: None
//
// Constraints: Phone number must be specified in the format "+[country dialing
// code].[number including any area code]". For example, a US phone number might
// appear as "+1.1234567890".
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
Fax *string `type:"string"`
// First name of contact.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
FirstName *string `type:"string"`
// Last name of contact.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
LastName *string `type:"string"`
// Name of the organization for contact types other than PERSON.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters. Contact type must not be PERSON.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
OrganizationName *string `type:"string"`
// The phone number of the contact.
//
// Type: String
//
// Default: None
//
// Constraints: Phone number must be specified in the format "+[country dialing
// code].[number including any area code>]". For example, a US phone number
// might appear as "+1.1234567890".
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
PhoneNumber *string `type:"string"`
// The state or province of the contact's city.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
State *string `type:"string"`
// The zip or postal code of the contact's address.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
ZipCode *string `type:"string"`
}
// String returns the string representation
func (s ContactDetail) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ContactDetail) GoString() string {
return s.String()
}
// The DeleteTagsForDomainRequest includes the following elements.
type DeleteTagsForDomainInput struct {
_ struct{} `type:"structure"`
// The domain for which you want to delete one or more tags.
//
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're
// surrounded by letters, numbers, or other hyphens. You can't specify a hyphen
// at the beginning or end of a label. To specify an Internationalized Domain
// Name, you must convert the name to Punycode.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// A list of tag keys to delete.
//
// Type: A list that contains the keys of the tags that you want to delete.
//
// Default: None
//
// Required: No
//
// '>
TagsToDelete []*string `type:"list" required:"true"`
}
// String returns the string representation
func (s DeleteTagsForDomainInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteTagsForDomainInput) GoString() string {
return s.String()
}
type DeleteTagsForDomainOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DeleteTagsForDomainOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteTagsForDomainOutput) GoString() string {
return s.String()
}
type DisableDomainAutoRenewInput struct {
_ struct{} `type:"structure"`
DomainName *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DisableDomainAutoRenewInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DisableDomainAutoRenewInput) GoString() string {
return s.String()
}
type DisableDomainAutoRenewOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DisableDomainAutoRenewOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DisableDomainAutoRenewOutput) GoString() string {
return s.String()
}
// The DisableDomainTransferLock request includes the following element.
type DisableDomainTransferLockInput struct {
_ struct{} `type:"structure"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DisableDomainTransferLockInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DisableDomainTransferLockInput) GoString() string {
return s.String()
}
// The DisableDomainTransferLock response includes the following element.
type DisableDomainTransferLockOutput struct {
_ struct{} `type:"structure"`
// Identifier for tracking the progress of the request. To use this ID to query
// the operation status, use GetOperationDetail.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
OperationId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s DisableDomainTransferLockOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DisableDomainTransferLockOutput) GoString() string {
return s.String()
}
type DomainSummary struct {
_ struct{} `type:"structure"`
// Indicates whether the domain is automatically renewed upon expiration.
//
// Type: Boolean
//
// Valid values: True | False
AutoRenew *bool `type:"boolean"`
// The name of a domain.
//
// Type: String
DomainName *string `type:"string" required:"true"`
// Expiration date of the domain in Coordinated Universal Time (UTC).
//
// Type: Long
Expiry *time.Time `type:"timestamp" timestampFormat:"unix"`
// Indicates whether a domain is locked from unauthorized transfer to another
// party.
//
// Type: Boolean
//
// Valid values: True | False
TransferLock *bool `type:"boolean"`
}
// String returns the string representation
func (s DomainSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DomainSummary) GoString() string {
return s.String()
}
type EnableDomainAutoRenewInput struct {
_ struct{} `type:"structure"`
DomainName *string `type:"string" required:"true"`
}
// String returns the string representation
func (s EnableDomainAutoRenewInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EnableDomainAutoRenewInput) GoString() string {
return s.String()
}
type EnableDomainAutoRenewOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s EnableDomainAutoRenewOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EnableDomainAutoRenewOutput) GoString() string {
return s.String()
}
// The EnableDomainTransferLock request includes the following element.
type EnableDomainTransferLockInput struct {
_ struct{} `type:"structure"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
}
// String returns the string representation
func (s EnableDomainTransferLockInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EnableDomainTransferLockInput) GoString() string {
return s.String()
}
// The EnableDomainTransferLock response includes the following elements.
type EnableDomainTransferLockOutput struct {
_ struct{} `type:"structure"`
// Identifier for tracking the progress of the request. To use this ID to query
// the operation status, use GetOperationDetail.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
OperationId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s EnableDomainTransferLockOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EnableDomainTransferLockOutput) GoString() string {
return s.String()
}
// ExtraParam includes the following elements.
type ExtraParam struct {
_ struct{} `type:"structure"`
// Name of the additional parameter required by the top-level domain.
//
// Type: String
//
// Default: None
//
// Valid values: DUNS_NUMBER | BRAND_NUMBER | BIRTH_DEPARTMENT | BIRTH_DATE_IN_YYYY_MM_DD
// | BIRTH_COUNTRY | BIRTH_CITY | DOCUMENT_NUMBER | AU_ID_NUMBER | AU_ID_TYPE
// | CA_LEGAL_TYPE | ES_IDENTIFICATION | ES_IDENTIFICATION_TYPE | ES_LEGAL_FORM
// | FI_BUSINESS_NUMBER | FI_ID_NUMBER | IT_PIN | RU_PASSPORT_DATA | SE_ID_NUMBER
// | SG_ID_NUMBER | VAT_NUMBER
//
// Parent: ExtraParams
//
// Required: Yes
Name *string `type:"string" required:"true" enum:"ExtraParamName"`
// Values corresponding to the additional parameter names required by some top-level
// domains.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 2048 characters.
//
// Parent: ExtraParams
//
// Required: Yes
Value *string `type:"string" required:"true"`
}
// String returns the string representation
func (s ExtraParam) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ExtraParam) GoString() string {
return s.String()
}
// The GetDomainDetail request includes the following element.
type GetDomainDetailInput struct {
_ struct{} `type:"structure"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
}
// String returns the string representation
func (s GetDomainDetailInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetDomainDetailInput) GoString() string {
return s.String()
}
// The GetDomainDetail response includes the following elements.
type GetDomainDetailOutput struct {
_ struct{} `type:"structure"`
// Email address to contact to report incorrect contact information for a domain,
// to report that the domain is being used to send spam, to report that someone
// is cybersquatting on a domain name, or report some other type of abuse.
//
// Type: String
AbuseContactEmail *string `type:"string"`
// Phone number for reporting abuse.
//
// Type: String
AbuseContactPhone *string `type:"string"`
// Provides details about the domain administrative contact.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
AdminContact *ContactDetail `type:"structure" required:"true"`
// Specifies whether contact information for the admin contact is concealed
// from WHOIS queries. If the value is true, WHOIS ("who is") queries will return
// contact information for our registrar partner, Gandi, instead of the contact
// information that you enter.
//
// Type: Boolean
AdminPrivacy *bool `type:"boolean"`
// Specifies whether the domain registration is set to renew automatically.
//
// Type: Boolean
AutoRenew *bool `type:"boolean"`
// The date when the domain was created as found in the response to a WHOIS
// query. The date format is Unix time.
CreationDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// Reserved for future use.
DnsSec *string `type:"string"`
// The name of a domain.
//
// Type: String
DomainName *string `type:"string" required:"true"`
// The date when the registration for the domain is set to expire. The date
// format is Unix time.
ExpirationDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The name of the domain.
//
// Type: String
Nameservers []*Nameserver `type:"list" required:"true"`
// Provides details about the domain registrant.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
RegistrantContact *ContactDetail `type:"structure" required:"true"`
// Specifies whether contact information for the registrant contact is concealed
// from WHOIS queries. If the value is true, WHOIS ("who is") queries will return
// contact information for our registrar partner, Gandi, instead of the contact
// information that you enter.
//
// Type: Boolean
RegistrantPrivacy *bool `type:"boolean"`
// Name of the registrar of the domain as identified in the registry. Amazon
// Route 53 domains are registered by registrar Gandi. The value is "GANDI SAS".
//
// Type: String
RegistrarName *string `type:"string"`
// Web address of the registrar.
//
// Type: String
RegistrarUrl *string `type:"string"`
// Reserved for future use.
RegistryDomainId *string `type:"string"`
// Reseller of the domain. Domains registered or transferred using Amazon Route
// 53 domains will have "Amazon" as the reseller.
//
// Type: String
Reseller *string `type:"string"`
// An array of domain name status codes, also known as Extensible Provisioning
// Protocol (EPP) status codes.
//
// ICANN, the organization that maintains a central database of domain names,
// has developed a set of domain name status codes that tell you the status
// of a variety of operations on a domain name, for example, registering a domain
// name, transferring a domain name to another registrar, renewing the registration
// for a domain name, and so on. All registrars use this same set of status
// codes.
//
// For a current list of domain name status codes and an explanation of what
// each code means, go to the ICANN website (https://www.icann.org/) and search
// for epp status codes. (Search on the ICANN website; web searches sometimes
// return an old version of the document.)
//
// Type: Array of String
StatusList []*string `type:"list"`
// Provides details about the domain technical contact.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
TechContact *ContactDetail `type:"structure" required:"true"`
// Specifies whether contact information for the tech contact is concealed from
// WHOIS queries. If the value is true, WHOIS ("who is") queries will return
// contact information for our registrar partner, Gandi, instead of the contact
// information that you enter.
//
// Type: Boolean
TechPrivacy *bool `type:"boolean"`
// The last updated date of the domain as found in the response to a WHOIS query.
// The date format is Unix time.
UpdatedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The fully qualified name of the WHOIS server that can answer the WHOIS query
// for the domain.
//
// Type: String
WhoIsServer *string `type:"string"`
}
// String returns the string representation
func (s GetDomainDetailOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetDomainDetailOutput) GoString() string {
return s.String()
}
// The GetOperationDetail request includes the following element.
type GetOperationDetailInput struct {
_ struct{} `type:"structure"`
// The identifier for the operation for which you want to get the status. Amazon
// Route 53 returned the identifier in the response to the original request.
//
// Type: String
//
// Default: None
//
// Required: Yes
OperationId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s GetOperationDetailInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetOperationDetailInput) GoString() string {
return s.String()
}
// The GetOperationDetail response includes the following elements.
type GetOperationDetailOutput struct {
_ struct{} `type:"structure"`
// The name of a domain.
//
// Type: String
DomainName *string `type:"string"`
// Detailed information on the status including possible errors.
//
// Type: String
Message *string `type:"string"`
// The identifier for the operation.
//
// Type: String
OperationId *string `type:"string"`
// The current status of the requested operation in the system.
//
// Type: String
Status *string `type:"string" enum:"OperationStatus"`
// The date when the request was submitted.
SubmittedDate *time.Time `type:"timestamp" timestampFormat:"unix"`
// The type of operation that was requested.
//
// Type: String
Type *string `type:"string" enum:"OperationType"`
}
// String returns the string representation
func (s GetOperationDetailOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetOperationDetailOutput) GoString() string {
return s.String()
}
// The ListDomains request includes the following elements.
type ListDomainsInput struct {
_ struct{} `type:"structure"`
// For an initial request for a list of domains, omit this element. If the number
// of domains that are associated with the current AWS account is greater than
// the value that you specified for MaxItems, you can use Marker to return additional
// domains. Get the value of NextPageMarker from the previous response, and
// submit another request that includes the value of NextPageMarker in the Marker
// element.
//
// Type: String
//
// Default: None
//
// Constraints: The marker must match the value specified in the previous request.
//
// Required: No
Marker *string `type:"string"`
// Number of domains to be returned.
//
// Type: Integer
//
// Default: 20
//
// Constraints: A numeral between 1 and 100.
//
// Required: No
MaxItems *int64 `type:"integer"`
}
// String returns the string representation
func (s ListDomainsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListDomainsInput) GoString() string {
return s.String()
}
// The ListDomains response includes the following elements.
type ListDomainsOutput struct {
_ struct{} `type:"structure"`
// A summary of domains.
//
// Type: Complex type containing a list of domain summaries.
//
// Children: AutoRenew, DomainName, Expiry, TransferLock
Domains []*DomainSummary `type:"list" required:"true"`
// If there are more domains than you specified for MaxItems in the request,
// submit another request and include the value of NextPageMarker in the value
// of Marker.
//
// Type: String
//
// Parent: Operations
NextPageMarker *string `type:"string"`
}
// String returns the string representation
func (s ListDomainsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListDomainsOutput) GoString() string {
return s.String()
}
// The ListOperations request includes the following elements.
type ListOperationsInput struct {
_ struct{} `type:"structure"`
// For an initial request for a list of operations, omit this element. If the
// number of operations that are not yet complete is greater than the value
// that you specified for MaxItems, you can use Marker to return additional
// operations. Get the value of NextPageMarker from the previous response, and
// submit another request that includes the value of NextPageMarker in the Marker
// element.
//
// Type: String
//
// Default: None
//
// Required: No
Marker *string `type:"string"`
// Number of domains to be returned.
//
// Type: Integer
//
// Default: 20
//
// Constraints: A value between 1 and 100.
//
// Required: No
MaxItems *int64 `type:"integer"`
}
// String returns the string representation
func (s ListOperationsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListOperationsInput) GoString() string {
return s.String()
}
// The ListOperations response includes the following elements.
type ListOperationsOutput struct {
_ struct{} `type:"structure"`
// If there are more operations than you specified for MaxItems in the request,
// submit another request and include the value of NextPageMarker in the value
// of Marker.
//
// Type: String
//
// Parent: Operations
NextPageMarker *string `type:"string"`
// Lists summaries of the operations.
//
// Type: Complex type containing a list of operation summaries
//
// Children: OperationId, Status, SubmittedDate, Type
Operations []*OperationSummary `type:"list" required:"true"`
}
// String returns the string representation
func (s ListOperationsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListOperationsOutput) GoString() string {
return s.String()
}
// The ListTagsForDomainRequest includes the following elements.
type ListTagsForDomainInput struct {
_ struct{} `type:"structure"`
// The domain for which you want to get a list of tags.
DomainName *string `type:"string" required:"true"`
}
// String returns the string representation
func (s ListTagsForDomainInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListTagsForDomainInput) GoString() string {
return s.String()
}
// The ListTagsForDomain response includes the following elements.
type ListTagsForDomainOutput struct {
_ struct{} `type:"structure"`
// A list of the tags that are associated with the specified domain.
//
// Type: A complex type containing a list of tags
//
// Each tag includes the following elements.
//
// Key
//
// The key (name) of a tag.
//
// Type: String
//
// Value
//
// The value of a tag.
//
// Type: String
TagList []*Tag `type:"list" required:"true"`
}
// String returns the string representation
func (s ListTagsForDomainOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListTagsForDomainOutput) GoString() string {
return s.String()
}
// Nameserver includes the following elements.
type Nameserver struct {
_ struct{} `type:"structure"`
// Glue IP address of a name server entry. Glue IP addresses are required only
// when the name of the name server is a subdomain of the domain. For example,
// if your domain is example.com and the name server for the domain is ns.example.com,
// you need to specify the IP address for ns.example.com.
//
// Type: List of IP addresses.
//
// Constraints: The list can contain only one IPv4 and one IPv6 address.
//
// Parent: Nameservers
GlueIps []*string `type:"list"`
// The fully qualified host name of the name server.
//
// Type: String
//
// Constraint: Maximum 255 characterss
//
// Parent: Nameservers
Name *string `type:"string" required:"true"`
}
// String returns the string representation
func (s Nameserver) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Nameserver) GoString() string {
return s.String()
}
// OperationSummary includes the following elements.
type OperationSummary struct {
_ struct{} `type:"structure"`
// Identifier returned to track the requested action.
//
// Type: String
OperationId *string `type:"string" required:"true"`
// The current status of the requested operation in the system.
//
// Type: String
Status *string `type:"string" required:"true" enum:"OperationStatus"`
// The date when the request was submitted.
SubmittedDate *time.Time `type:"timestamp" timestampFormat:"unix" required:"true"`
// Type of the action requested.
//
// Type: String
//
// Valid values: REGISTER_DOMAIN | DELETE_DOMAIN | TRANSFER_IN_DOMAIN | UPDATE_DOMAIN_CONTACT
// | UPDATE_NAMESERVER | CHANGE_PRIVACY_PROTECTION | DOMAIN_LOCK
Type *string `type:"string" required:"true" enum:"OperationType"`
}
// String returns the string representation
func (s OperationSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s OperationSummary) GoString() string {
return s.String()
}
// The RegisterDomain request includes the following elements.
type RegisterDomainInput struct {
_ struct{} `type:"structure"`
// Provides detailed contact information.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
//
// Required: Yes
AdminContact *ContactDetail `type:"structure" required:"true"`
// Indicates whether the domain will be automatically renewed (true) or not
// (false). Autorenewal only takes effect after the account is charged.
//
// Type: Boolean
//
// Valid values: true | false
//
// Default: true
//
// Required: No
AutoRenew *bool `type:"boolean"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// The number of years the domain will be registered. Domains are registered
// for a minimum of one year. The maximum period depends on the top-level domain.
//
// Type: Integer
//
// Default: 1
//
// Valid values: Integer from 1 to 10
//
// Required: Yes
DurationInYears *int64 `min:"1" type:"integer" required:"true"`
// Reserved for future use.
IdnLangCode *string `type:"string"`
// Whether you want to conceal contact information from WHOIS queries. If you
// specify true, WHOIS ("who is") queries will return contact information for
// our registrar partner, Gandi, instead of the contact information that you
// enter.
//
// Type: Boolean
//
// Default: true
//
// Valid values: true | false
//
// Required: No
PrivacyProtectAdminContact *bool `type:"boolean"`
// Whether you want to conceal contact information from WHOIS queries. If you
// specify true, WHOIS ("who is") queries will return contact information for
// our registrar partner, Gandi, instead of the contact information that you
// enter.
//
// Type: Boolean
//
// Default: true
//
// Valid values: true | false
//
// Required: No
PrivacyProtectRegistrantContact *bool `type:"boolean"`
// Whether you want to conceal contact information from WHOIS queries. If you
// specify true, WHOIS ("who is") queries will return contact information for
// our registrar partner, Gandi, instead of the contact information that you
// enter.
//
// Type: Boolean
//
// Default: true
//
// Valid values: true | false
//
// Required: No
PrivacyProtectTechContact *bool `type:"boolean"`
// Provides detailed contact information.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
//
// Required: Yes
RegistrantContact *ContactDetail `type:"structure" required:"true"`
// Provides detailed contact information.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
//
// Required: Yes
TechContact *ContactDetail `type:"structure" required:"true"`
}
// String returns the string representation
func (s RegisterDomainInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterDomainInput) GoString() string {
return s.String()
}
// The RegisterDomain response includes the following element.
type RegisterDomainOutput struct {
_ struct{} `type:"structure"`
// Identifier for tracking the progress of the request. To use this ID to query
// the operation status, use GetOperationDetail.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
OperationId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s RegisterDomainOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RegisterDomainOutput) GoString() string {
return s.String()
}
// The RetrieveDomainAuthCode request includes the following element.
type RetrieveDomainAuthCodeInput struct {
_ struct{} `type:"structure"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
}
// String returns the string representation
func (s RetrieveDomainAuthCodeInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RetrieveDomainAuthCodeInput) GoString() string {
return s.String()
}
// The RetrieveDomainAuthCode response includes the following element.
type RetrieveDomainAuthCodeOutput struct {
_ struct{} `type:"structure"`
// The authorization code for the domain.
//
// Type: String
AuthCode *string `type:"string" required:"true"`
}
// String returns the string representation
func (s RetrieveDomainAuthCodeOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s RetrieveDomainAuthCodeOutput) GoString() string {
return s.String()
}
// Each tag includes the following elements.
type Tag struct {
_ struct{} `type:"structure"`
// The key (name) of a tag.
//
// Type: String
//
// Default: None
//
// Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@"
//
// Constraints: Each key can be 1-128 characters long.
//
// Required: Yes
Key *string `type:"string"`
// The value of a tag.
//
// Type: String
//
// Default: None
//
// Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@"
//
// Constraints: Each value can be 0-256 characters long.
//
// Required: Yes
Value *string `type:"string"`
}
// String returns the string representation
func (s Tag) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Tag) GoString() string {
return s.String()
}
// The TransferDomain request includes the following elements.
type TransferDomainInput struct {
_ struct{} `type:"structure"`
// Provides detailed contact information.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
//
// Required: Yes
AdminContact *ContactDetail `type:"structure" required:"true"`
// The authorization code for the domain. You get this value from the current
// registrar.
//
// Type: String
//
// Required: Yes
AuthCode *string `type:"string"`
// Indicates whether the domain will be automatically renewed (true) or not
// (false). Autorenewal only takes effect after the account is charged.
//
// Type: Boolean
//
// Valid values: true | false
//
// Default: true
//
// Required: No
AutoRenew *bool `type:"boolean"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// The number of years the domain will be registered. Domains are registered
// for a minimum of one year. The maximum period depends on the top-level domain.
//
// Type: Integer
//
// Default: 1
//
// Valid values: Integer from 1 to 10
//
// Required: Yes
DurationInYears *int64 `min:"1" type:"integer" required:"true"`
// Reserved for future use.
IdnLangCode *string `type:"string"`
// Contains details for the host and glue IP addresses.
//
// Type: Complex
//
// Children: GlueIps, Name
//
// Required: No
Nameservers []*Nameserver `type:"list"`
// Whether you want to conceal contact information from WHOIS queries. If you
// specify true, WHOIS ("who is") queries will return contact information for
// our registrar partner, Gandi, instead of the contact information that you
// enter.
//
// Type: Boolean
//
// Default: true
//
// Valid values: true | false
//
// Required: No
PrivacyProtectAdminContact *bool `type:"boolean"`
// Whether you want to conceal contact information from WHOIS queries. If you
// specify true, WHOIS ("who is") queries will return contact information for
// our registrar partner, Gandi, instead of the contact information that you
// enter.
//
// Type: Boolean
//
// Default: true
//
// Valid values: true | false
//
// Required: No
PrivacyProtectRegistrantContact *bool `type:"boolean"`
// Whether you want to conceal contact information from WHOIS queries. If you
// specify true, WHOIS ("who is") queries will return contact information for
// our registrar partner, Gandi, instead of the contact information that you
// enter.
//
// Type: Boolean
//
// Default: true
//
// Valid values: true | false
//
// Required: No
PrivacyProtectTechContact *bool `type:"boolean"`
// Provides detailed contact information.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
//
// Required: Yes
RegistrantContact *ContactDetail `type:"structure" required:"true"`
// Provides detailed contact information.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
//
// Required: Yes
TechContact *ContactDetail `type:"structure" required:"true"`
}
// String returns the string representation
func (s TransferDomainInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s TransferDomainInput) GoString() string {
return s.String()
}
// The TranserDomain response includes the following element.
type TransferDomainOutput struct {
_ struct{} `type:"structure"`
// Identifier for tracking the progress of the request. To use this ID to query
// the operation status, use GetOperationDetail.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
OperationId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s TransferDomainOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s TransferDomainOutput) GoString() string {
return s.String()
}
// The UpdateDomainContact request includes the following elements.
type UpdateDomainContactInput struct {
_ struct{} `type:"structure"`
// Provides detailed contact information.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
//
// Required: Yes
AdminContact *ContactDetail `type:"structure"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// Provides detailed contact information.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
//
// Required: Yes
RegistrantContact *ContactDetail `type:"structure"`
// Provides detailed contact information.
//
// Type: Complex
//
// Children: FirstName, MiddleName, LastName, ContactType, OrganizationName,
// AddressLine1, AddressLine2, City, State, CountryCode, ZipCode, PhoneNumber,
// Email, Fax, ExtraParams
//
// Required: Yes
TechContact *ContactDetail `type:"structure"`
}
// String returns the string representation
func (s UpdateDomainContactInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateDomainContactInput) GoString() string {
return s.String()
}
// The UpdateDomainContact response includes the following element.
type UpdateDomainContactOutput struct {
_ struct{} `type:"structure"`
// Identifier for tracking the progress of the request. To use this ID to query
// the operation status, use GetOperationDetail.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
OperationId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s UpdateDomainContactOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateDomainContactOutput) GoString() string {
return s.String()
}
// The UpdateDomainContactPrivacy request includes the following elements.
type UpdateDomainContactPrivacyInput struct {
_ struct{} `type:"structure"`
// Whether you want to conceal contact information from WHOIS queries. If you
// specify true, WHOIS ("who is") queries will return contact information for
// our registrar partner, Gandi, instead of the contact information that you
// enter.
//
// Type: Boolean
//
// Default: None
//
// Valid values: true | false
//
// Required: No
AdminPrivacy *bool `type:"boolean"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// Whether you want to conceal contact information from WHOIS queries. If you
// specify true, WHOIS ("who is") queries will return contact information for
// our registrar partner, Gandi, instead of the contact information that you
// enter.
//
// Type: Boolean
//
// Default: None
//
// Valid values: true | false
//
// Required: No
RegistrantPrivacy *bool `type:"boolean"`
// Whether you want to conceal contact information from WHOIS queries. If you
// specify true, WHOIS ("who is") queries will return contact information for
// our registrar partner, Gandi, instead of the contact information that you
// enter.
//
// Type: Boolean
//
// Default: None
//
// Valid values: true | false
//
// Required: No
TechPrivacy *bool `type:"boolean"`
}
// String returns the string representation
func (s UpdateDomainContactPrivacyInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateDomainContactPrivacyInput) GoString() string {
return s.String()
}
// The UpdateDomainContactPrivacy response includes the following element.
type UpdateDomainContactPrivacyOutput struct {
_ struct{} `type:"structure"`
// Identifier for tracking the progress of the request. To use this ID to query
// the operation status, use GetOperationDetail.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
OperationId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s UpdateDomainContactPrivacyOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateDomainContactPrivacyOutput) GoString() string {
return s.String()
}
// The UpdateDomainNameserver request includes the following elements.
type UpdateDomainNameserversInput struct {
_ struct{} `type:"structure"`
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// The authorization key for .fi domains
FIAuthKey *string `type:"string"`
// A list of new name servers for the domain.
//
// Type: Complex
//
// Children: Name, GlueIps
//
// Required: Yes
Nameservers []*Nameserver `type:"list" required:"true"`
}
// String returns the string representation
func (s UpdateDomainNameserversInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateDomainNameserversInput) GoString() string {
return s.String()
}
// The UpdateDomainNameservers response includes the following element.
type UpdateDomainNameserversOutput struct {
_ struct{} `type:"structure"`
// Identifier for tracking the progress of the request. To use this ID to query
// the operation status, use GetOperationDetail.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
OperationId *string `type:"string" required:"true"`
}
// String returns the string representation
func (s UpdateDomainNameserversOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateDomainNameserversOutput) GoString() string {
return s.String()
}
// The UpdateTagsForDomainRequest includes the following elements.
type UpdateTagsForDomainInput struct {
_ struct{} `type:"structure"`
// The domain for which you want to add or update tags.
//
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're
// surrounded by letters, numbers, or other hyphens. You can't specify a hyphen
// at the beginning or end of a label. To specify an Internationalized Domain
// Name, you must convert the name to Punycode.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// A list of the tag keys and values that you want to add or update. If you
// specify a key that already exists, the corresponding value will be replaced.
//
// Type: A complex type containing a list of tags
//
// Default: None
//
// Required: No
//
// '> Each tag includes the following elements:
//
// Key
//
// The key (name) of a tag.
//
// Type: String
//
// Default: None
//
// Valid values: Unicode characters including alphanumeric, space, and ".:/=+\-@"
//
// Constraints: Each key can be 1-128 characters long.
//
// Required: Yes
//
// Value
//
// The value of a tag.
//
// Type: String
//
// Default: None
//
// Valid values: Unicode characters including alphanumeric, space, and ".:/=+\-@"
//
// Constraints: Each value can be 0-256 characters long.
//
// Required: Yes
TagsToUpdate []*Tag `type:"list"`
}
// String returns the string representation
func (s UpdateTagsForDomainInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateTagsForDomainInput) GoString() string {
return s.String()
}
type UpdateTagsForDomainOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s UpdateTagsForDomainOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdateTagsForDomainOutput) GoString() string {
return s.String()
}
const (
// @enum ContactType
ContactTypePerson = "PERSON"
// @enum ContactType
ContactTypeCompany = "COMPANY"
// @enum ContactType
ContactTypeAssociation = "ASSOCIATION"
// @enum ContactType
ContactTypePublicBody = "PUBLIC_BODY"
// @enum ContactType
ContactTypeReseller = "RESELLER"
)
const (
// @enum CountryCode
CountryCodeAd = "AD"
// @enum CountryCode
CountryCodeAe = "AE"
// @enum CountryCode
CountryCodeAf = "AF"
// @enum CountryCode
CountryCodeAg = "AG"
// @enum CountryCode
CountryCodeAi = "AI"
// @enum CountryCode
CountryCodeAl = "AL"
// @enum CountryCode
CountryCodeAm = "AM"
// @enum CountryCode
CountryCodeAn = "AN"
// @enum CountryCode
CountryCodeAo = "AO"
// @enum CountryCode
CountryCodeAq = "AQ"
// @enum CountryCode
CountryCodeAr = "AR"
// @enum CountryCode
CountryCodeAs = "AS"
// @enum CountryCode
CountryCodeAt = "AT"
// @enum CountryCode
CountryCodeAu = "AU"
// @enum CountryCode
CountryCodeAw = "AW"
// @enum CountryCode
CountryCodeAz = "AZ"
// @enum CountryCode
CountryCodeBa = "BA"
// @enum CountryCode
CountryCodeBb = "BB"
// @enum CountryCode
CountryCodeBd = "BD"
// @enum CountryCode
CountryCodeBe = "BE"
// @enum CountryCode
CountryCodeBf = "BF"
// @enum CountryCode
CountryCodeBg = "BG"
// @enum CountryCode
CountryCodeBh = "BH"
// @enum CountryCode
CountryCodeBi = "BI"
// @enum CountryCode
CountryCodeBj = "BJ"
// @enum CountryCode
CountryCodeBl = "BL"
// @enum CountryCode
CountryCodeBm = "BM"
// @enum CountryCode
CountryCodeBn = "BN"
// @enum CountryCode
CountryCodeBo = "BO"
// @enum CountryCode
CountryCodeBr = "BR"
// @enum CountryCode
CountryCodeBs = "BS"
// @enum CountryCode
CountryCodeBt = "BT"
// @enum CountryCode
CountryCodeBw = "BW"
// @enum CountryCode
CountryCodeBy = "BY"
// @enum CountryCode
CountryCodeBz = "BZ"
// @enum CountryCode
CountryCodeCa = "CA"
// @enum CountryCode
CountryCodeCc = "CC"
// @enum CountryCode
CountryCodeCd = "CD"
// @enum CountryCode
CountryCodeCf = "CF"
// @enum CountryCode
CountryCodeCg = "CG"
// @enum CountryCode
CountryCodeCh = "CH"
// @enum CountryCode
CountryCodeCi = "CI"
// @enum CountryCode
CountryCodeCk = "CK"
// @enum CountryCode
CountryCodeCl = "CL"
// @enum CountryCode
CountryCodeCm = "CM"
// @enum CountryCode
CountryCodeCn = "CN"
// @enum CountryCode
CountryCodeCo = "CO"
// @enum CountryCode
CountryCodeCr = "CR"
// @enum CountryCode
CountryCodeCu = "CU"
// @enum CountryCode
CountryCodeCv = "CV"
// @enum CountryCode
CountryCodeCx = "CX"
// @enum CountryCode
CountryCodeCy = "CY"
// @enum CountryCode
CountryCodeCz = "CZ"
// @enum CountryCode
CountryCodeDe = "DE"
// @enum CountryCode
CountryCodeDj = "DJ"
// @enum CountryCode
CountryCodeDk = "DK"
// @enum CountryCode
CountryCodeDm = "DM"
// @enum CountryCode
CountryCodeDo = "DO"
// @enum CountryCode
CountryCodeDz = "DZ"
// @enum CountryCode
CountryCodeEc = "EC"
// @enum CountryCode
CountryCodeEe = "EE"
// @enum CountryCode
CountryCodeEg = "EG"
// @enum CountryCode
CountryCodeEr = "ER"
// @enum CountryCode
CountryCodeEs = "ES"
// @enum CountryCode
CountryCodeEt = "ET"
// @enum CountryCode
CountryCodeFi = "FI"
// @enum CountryCode
CountryCodeFj = "FJ"
// @enum CountryCode
CountryCodeFk = "FK"
// @enum CountryCode
CountryCodeFm = "FM"
// @enum CountryCode
CountryCodeFo = "FO"
// @enum CountryCode
CountryCodeFr = "FR"
// @enum CountryCode
CountryCodeGa = "GA"
// @enum CountryCode
CountryCodeGb = "GB"
// @enum CountryCode
CountryCodeGd = "GD"
// @enum CountryCode
CountryCodeGe = "GE"
// @enum CountryCode
CountryCodeGh = "GH"
// @enum CountryCode
CountryCodeGi = "GI"
// @enum CountryCode
CountryCodeGl = "GL"
// @enum CountryCode
CountryCodeGm = "GM"
// @enum CountryCode
CountryCodeGn = "GN"
// @enum CountryCode
CountryCodeGq = "GQ"
// @enum CountryCode
CountryCodeGr = "GR"
// @enum CountryCode
CountryCodeGt = "GT"
// @enum CountryCode
CountryCodeGu = "GU"
// @enum CountryCode
CountryCodeGw = "GW"
// @enum CountryCode
CountryCodeGy = "GY"
// @enum CountryCode
CountryCodeHk = "HK"
// @enum CountryCode
CountryCodeHn = "HN"
// @enum CountryCode
CountryCodeHr = "HR"
// @enum CountryCode
CountryCodeHt = "HT"
// @enum CountryCode
CountryCodeHu = "HU"
// @enum CountryCode
CountryCodeId = "ID"
// @enum CountryCode
CountryCodeIe = "IE"
// @enum CountryCode
CountryCodeIl = "IL"
// @enum CountryCode
CountryCodeIm = "IM"
// @enum CountryCode
CountryCodeIn = "IN"
// @enum CountryCode
CountryCodeIq = "IQ"
// @enum CountryCode
CountryCodeIr = "IR"
// @enum CountryCode
CountryCodeIs = "IS"
// @enum CountryCode
CountryCodeIt = "IT"
// @enum CountryCode
CountryCodeJm = "JM"
// @enum CountryCode
CountryCodeJo = "JO"
// @enum CountryCode
CountryCodeJp = "JP"
// @enum CountryCode
CountryCodeKe = "KE"
// @enum CountryCode
CountryCodeKg = "KG"
// @enum CountryCode
CountryCodeKh = "KH"
// @enum CountryCode
CountryCodeKi = "KI"
// @enum CountryCode
CountryCodeKm = "KM"
// @enum CountryCode
CountryCodeKn = "KN"
// @enum CountryCode
CountryCodeKp = "KP"
// @enum CountryCode
CountryCodeKr = "KR"
// @enum CountryCode
CountryCodeKw = "KW"
// @enum CountryCode
CountryCodeKy = "KY"
// @enum CountryCode
CountryCodeKz = "KZ"
// @enum CountryCode
CountryCodeLa = "LA"
// @enum CountryCode
CountryCodeLb = "LB"
// @enum CountryCode
CountryCodeLc = "LC"
// @enum CountryCode
CountryCodeLi = "LI"
// @enum CountryCode
CountryCodeLk = "LK"
// @enum CountryCode
CountryCodeLr = "LR"
// @enum CountryCode
CountryCodeLs = "LS"
// @enum CountryCode
CountryCodeLt = "LT"
// @enum CountryCode
CountryCodeLu = "LU"
// @enum CountryCode
CountryCodeLv = "LV"
// @enum CountryCode
CountryCodeLy = "LY"
// @enum CountryCode
CountryCodeMa = "MA"
// @enum CountryCode
CountryCodeMc = "MC"
// @enum CountryCode
CountryCodeMd = "MD"
// @enum CountryCode
CountryCodeMe = "ME"
// @enum CountryCode
CountryCodeMf = "MF"
// @enum CountryCode
CountryCodeMg = "MG"
// @enum CountryCode
CountryCodeMh = "MH"
// @enum CountryCode
CountryCodeMk = "MK"
// @enum CountryCode
CountryCodeMl = "ML"
// @enum CountryCode
CountryCodeMm = "MM"
// @enum CountryCode
CountryCodeMn = "MN"
// @enum CountryCode
CountryCodeMo = "MO"
// @enum CountryCode
CountryCodeMp = "MP"
// @enum CountryCode
CountryCodeMr = "MR"
// @enum CountryCode
CountryCodeMs = "MS"
// @enum CountryCode
CountryCodeMt = "MT"
// @enum CountryCode
CountryCodeMu = "MU"
// @enum CountryCode
CountryCodeMv = "MV"
// @enum CountryCode
CountryCodeMw = "MW"
// @enum CountryCode
CountryCodeMx = "MX"
// @enum CountryCode
CountryCodeMy = "MY"
// @enum CountryCode
CountryCodeMz = "MZ"
// @enum CountryCode
CountryCodeNa = "NA"
// @enum CountryCode
CountryCodeNc = "NC"
// @enum CountryCode
CountryCodeNe = "NE"
// @enum CountryCode
CountryCodeNg = "NG"
// @enum CountryCode
CountryCodeNi = "NI"
// @enum CountryCode
CountryCodeNl = "NL"
// @enum CountryCode
CountryCodeNo = "NO"
// @enum CountryCode
CountryCodeNp = "NP"
// @enum CountryCode
CountryCodeNr = "NR"
// @enum CountryCode
CountryCodeNu = "NU"
// @enum CountryCode
CountryCodeNz = "NZ"
// @enum CountryCode
CountryCodeOm = "OM"
// @enum CountryCode
CountryCodePa = "PA"
// @enum CountryCode
CountryCodePe = "PE"
// @enum CountryCode
CountryCodePf = "PF"
// @enum CountryCode
CountryCodePg = "PG"
// @enum CountryCode
CountryCodePh = "PH"
// @enum CountryCode
CountryCodePk = "PK"
// @enum CountryCode
CountryCodePl = "PL"
// @enum CountryCode
CountryCodePm = "PM"
// @enum CountryCode
CountryCodePn = "PN"
// @enum CountryCode
CountryCodePr = "PR"
// @enum CountryCode
CountryCodePt = "PT"
// @enum CountryCode
CountryCodePw = "PW"
// @enum CountryCode
CountryCodePy = "PY"
// @enum CountryCode
CountryCodeQa = "QA"
// @enum CountryCode
CountryCodeRo = "RO"
// @enum CountryCode
CountryCodeRs = "RS"
// @enum CountryCode
CountryCodeRu = "RU"
// @enum CountryCode
CountryCodeRw = "RW"
// @enum CountryCode
CountryCodeSa = "SA"
// @enum CountryCode
CountryCodeSb = "SB"
// @enum CountryCode
CountryCodeSc = "SC"
// @enum CountryCode
CountryCodeSd = "SD"
// @enum CountryCode
CountryCodeSe = "SE"
// @enum CountryCode
CountryCodeSg = "SG"
// @enum CountryCode
CountryCodeSh = "SH"
// @enum CountryCode
CountryCodeSi = "SI"
// @enum CountryCode
CountryCodeSk = "SK"
// @enum CountryCode
CountryCodeSl = "SL"
// @enum CountryCode
CountryCodeSm = "SM"
// @enum CountryCode
CountryCodeSn = "SN"
// @enum CountryCode
CountryCodeSo = "SO"
// @enum CountryCode
CountryCodeSr = "SR"
// @enum CountryCode
CountryCodeSt = "ST"
// @enum CountryCode
CountryCodeSv = "SV"
// @enum CountryCode
CountryCodeSy = "SY"
// @enum CountryCode
CountryCodeSz = "SZ"
// @enum CountryCode
CountryCodeTc = "TC"
// @enum CountryCode
CountryCodeTd = "TD"
// @enum CountryCode
CountryCodeTg = "TG"
// @enum CountryCode
CountryCodeTh = "TH"
// @enum CountryCode
CountryCodeTj = "TJ"
// @enum CountryCode
CountryCodeTk = "TK"
// @enum CountryCode
CountryCodeTl = "TL"
// @enum CountryCode
CountryCodeTm = "TM"
// @enum CountryCode
CountryCodeTn = "TN"
// @enum CountryCode
CountryCodeTo = "TO"
// @enum CountryCode
CountryCodeTr = "TR"
// @enum CountryCode
CountryCodeTt = "TT"
// @enum CountryCode
CountryCodeTv = "TV"
// @enum CountryCode
CountryCodeTw = "TW"
// @enum CountryCode
CountryCodeTz = "TZ"
// @enum CountryCode
CountryCodeUa = "UA"
// @enum CountryCode
CountryCodeUg = "UG"
// @enum CountryCode
CountryCodeUs = "US"
// @enum CountryCode
CountryCodeUy = "UY"
// @enum CountryCode
CountryCodeUz = "UZ"
// @enum CountryCode
CountryCodeVa = "VA"
// @enum CountryCode
CountryCodeVc = "VC"
// @enum CountryCode
CountryCodeVe = "VE"
// @enum CountryCode
CountryCodeVg = "VG"
// @enum CountryCode
CountryCodeVi = "VI"
// @enum CountryCode
CountryCodeVn = "VN"
// @enum CountryCode
CountryCodeVu = "VU"
// @enum CountryCode
CountryCodeWf = "WF"
// @enum CountryCode
CountryCodeWs = "WS"
// @enum CountryCode
CountryCodeYe = "YE"
// @enum CountryCode
CountryCodeYt = "YT"
// @enum CountryCode
CountryCodeZa = "ZA"
// @enum CountryCode
CountryCodeZm = "ZM"
// @enum CountryCode
CountryCodeZw = "ZW"
)
const (
// @enum DomainAvailability
DomainAvailabilityAvailable = "AVAILABLE"
// @enum DomainAvailability
DomainAvailabilityAvailableReserved = "AVAILABLE_RESERVED"
// @enum DomainAvailability
DomainAvailabilityAvailablePreorder = "AVAILABLE_PREORDER"
// @enum DomainAvailability
DomainAvailabilityUnavailable = "UNAVAILABLE"
// @enum DomainAvailability
DomainAvailabilityUnavailablePremium = "UNAVAILABLE_PREMIUM"
// @enum DomainAvailability
DomainAvailabilityUnavailableRestricted = "UNAVAILABLE_RESTRICTED"
// @enum DomainAvailability
DomainAvailabilityReserved = "RESERVED"
// @enum DomainAvailability
DomainAvailabilityDontKnow = "DONT_KNOW"
)
const (
// @enum ExtraParamName
ExtraParamNameDunsNumber = "DUNS_NUMBER"
// @enum ExtraParamName
ExtraParamNameBrandNumber = "BRAND_NUMBER"
// @enum ExtraParamName
ExtraParamNameBirthDepartment = "BIRTH_DEPARTMENT"
// @enum ExtraParamName
ExtraParamNameBirthDateInYyyyMmDd = "BIRTH_DATE_IN_YYYY_MM_DD"
// @enum ExtraParamName
ExtraParamNameBirthCountry = "BIRTH_COUNTRY"
// @enum ExtraParamName
ExtraParamNameBirthCity = "BIRTH_CITY"
// @enum ExtraParamName
ExtraParamNameDocumentNumber = "DOCUMENT_NUMBER"
// @enum ExtraParamName
ExtraParamNameAuIdNumber = "AU_ID_NUMBER"
// @enum ExtraParamName
ExtraParamNameAuIdType = "AU_ID_TYPE"
// @enum ExtraParamName
ExtraParamNameCaLegalType = "CA_LEGAL_TYPE"
// @enum ExtraParamName
ExtraParamNameEsIdentification = "ES_IDENTIFICATION"
// @enum ExtraParamName
ExtraParamNameEsIdentificationType = "ES_IDENTIFICATION_TYPE"
// @enum ExtraParamName
ExtraParamNameEsLegalForm = "ES_LEGAL_FORM"
// @enum ExtraParamName
ExtraParamNameFiBusinessNumber = "FI_BUSINESS_NUMBER"
// @enum ExtraParamName
ExtraParamNameFiIdNumber = "FI_ID_NUMBER"
// @enum ExtraParamName
ExtraParamNameItPin = "IT_PIN"
// @enum ExtraParamName
ExtraParamNameRuPassportData = "RU_PASSPORT_DATA"
// @enum ExtraParamName
ExtraParamNameSeIdNumber = "SE_ID_NUMBER"
// @enum ExtraParamName
ExtraParamNameSgIdNumber = "SG_ID_NUMBER"
// @enum ExtraParamName
ExtraParamNameVatNumber = "VAT_NUMBER"
)
const (
// @enum OperationStatus
OperationStatusSubmitted = "SUBMITTED"
// @enum OperationStatus
OperationStatusInProgress = "IN_PROGRESS"
// @enum OperationStatus
OperationStatusError = "ERROR"
// @enum OperationStatus
OperationStatusSuccessful = "SUCCESSFUL"
// @enum OperationStatus
OperationStatusFailed = "FAILED"
)
const (
// @enum OperationType
OperationTypeRegisterDomain = "REGISTER_DOMAIN"
// @enum OperationType
OperationTypeDeleteDomain = "DELETE_DOMAIN"
// @enum OperationType
OperationTypeTransferInDomain = "TRANSFER_IN_DOMAIN"
// @enum OperationType
OperationTypeUpdateDomainContact = "UPDATE_DOMAIN_CONTACT"
// @enum OperationType
OperationTypeUpdateNameserver = "UPDATE_NAMESERVER"
// @enum OperationType
OperationTypeChangePrivacyProtection = "CHANGE_PRIVACY_PROTECTION"
// @enum OperationType
OperationTypeDomainLock = "DOMAIN_LOCK"
)
|