AWS.Tools.Route53Domains.XML
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 |
<?xml version="1.0"?>
<doc> <assembly> <name>AWS.Tools.Route53Domains</name> </assembly> <members> <member name="T:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainAutoRenewCmdlet"> <summary> This operation disables automatic renewal of domain registration for the specified domain. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainAutoRenewCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to disable automatic renewal for.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainAutoRenewCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.DisableDomainAutoRenewResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainAutoRenewCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainAutoRenewCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainTransferLockCmdlet"> <summary> This operation removes the transfer lock on the domain (specifically the <code>clientTransferProhibited</code> 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. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainTransferLockCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to remove the transfer lock for.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainTransferLockCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'OperationId'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.DisableDomainTransferLockResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.DisableDomainTransferLockResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainTransferLockCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.DisableR53DDomainTransferLockCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainAutoRenewCmdlet"> <summary> 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. <para> The period during which you can renew a domain name varies by TLD. For a list of TLDs and their renewal policies, see <a href="http://wiki.gandi.net/en/domains/renew#renewal_restoration_and_deletion_times">"Renewal, restoration, and deletion times"</a> on the website for our registrar associate, Gandi. Amazon 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. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainAutoRenewCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to enable automatic renewal for.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainAutoRenewCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.EnableDomainAutoRenewResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainAutoRenewCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainAutoRenewCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainTransferLockCmdlet"> <summary> This operation sets the transfer lock on the domain (specifically the <code>clientTransferProhibited</code> 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. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainTransferLockCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to set the transfer lock for.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainTransferLockCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'OperationId'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.EnableDomainTransferLockResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.EnableDomainTransferLockResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainTransferLockCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.EnableR53DDomainTransferLockCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.GetR53DBillingRecordCmdlet"> <summary> Returns all the domain-related billing records for the current AWS account for a specified period<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DBillingRecordCmdlet.End"> <summary> <para> <para>The end date and time for the time period for which you want a list of billing records. Specify the date and time in Coordinated Universal time (UTC).</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DBillingRecordCmdlet.Start"> <summary> <para> <para>The beginning date and time for the time period for which you want a list of billing records. Specify the date and time in Coordinated Universal time (UTC).</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DBillingRecordCmdlet.Marker"> <summary> <para> <para>For an initial request for a list of billing records, omit this element. If the number of billing records that are associated with the current AWS account during the specified period is greater than the value that you specified for <code>MaxItems</code>, you can use <code>Marker</code> to return additional billing records. Get the value of <code>NextPageMarker</code> from the previous response, and submit another request that includes the value of <code>NextPageMarker</code> in the <code>Marker</code> element. </para><para>Constraints: The marker must match the value of <code>NextPageMarker</code> that was returned in the previous response.</para> </para> <para> <br/><b>Note:</b> This parameter is only used if you are manually controlling output pagination of the service API call. <br/>In order to manually control output pagination, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextPageMarker' for subsequent calls. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DBillingRecordCmdlet.MaxItem"> <summary> <para> <para>The number of billing records to be returned.</para><para>Default: 20</para> </para> <para> <br/><b>Note:</b> In AWSPowerShell and AWSPowerShell.NetCore this parameter is used to limit the total number of items returned by the cmdlet. <br/>In AWS.Tools this parameter is simply passed to the service to specify how many items should be returned by each service call. <br/>Pipe the output of this cmdlet into Select-Object -First to terminate retrieving data pages early and control the number of items returned. </para> <para>If a value for this parameter is not specified the cmdlet will use a default value of '<b>20</b>'.</para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DBillingRecordCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'BillingRecords'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.ViewBillingResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.ViewBillingResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DBillingRecordCmdlet.NoAutoIteration"> <summary> By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker as the start point. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.GetR53DContactReachabilityStatusCmdlet"> <summary> For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation returns information about whether the registrant contact has responded. <para> If you want us to resend the email, use the <code>ResendContactReachabilityEmail</code> operation. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DContactReachabilityStatusCmdlet.DomainName"> <summary> <para> <para>The name of the domain for which you want to know whether the registrant contact has confirmed that the email address is valid.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DContactReachabilityStatusCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is '*'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.GetContactReachabilityStatusResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.GetContactReachabilityStatusResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DContactReachabilityStatusCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainAuthCodeCmdlet"> <summary> This operation returns the AuthCode for the domain. To transfer a domain to another registrar, you provide this value to the new registrar. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainAuthCodeCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to get an authorization code for.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainAuthCodeCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'AuthCode'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.RetrieveDomainAuthCodeResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.RetrieveDomainAuthCodeResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainAuthCodeCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainDetailCmdlet"> <summary> This operation returns detailed information about a specified domain that is associated with the current AWS account. Contact information for the domain is also returned as part of the output. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainDetailCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to get detailed information about.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainDetailCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is '*'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.GetDomainDetailResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.GetDomainDetailResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainDetailCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainListCmdlet"> <summary> This operation returns all the domain names registered with Amazon Route 53 for the current AWS account.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainListCmdlet.Marker"> <summary> <para> <para>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 <code>MaxItems</code>, you can use <code>Marker</code> to return additional domains. Get the value of <code>NextPageMarker</code> from the previous response, and submit another request that includes the value of <code>NextPageMarker</code> in the <code>Marker</code> element.</para><para>Constraints: The marker must match the value specified in the previous request.</para> </para> <para> <br/><b>Note:</b> This parameter is only used if you are manually controlling output pagination of the service API call. <br/>In order to manually control output pagination, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextPageMarker' for subsequent calls. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainListCmdlet.MaxItem"> <summary> <para> <para>Number of domains to be returned.</para><para>Default: 20</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainListCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'Domains'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.ListDomainsResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.ListDomainsResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainListCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the MaxItem parameter. The -PassThru parameter is deprecated, use -Select '^MaxItem' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainListCmdlet.NoAutoIteration"> <summary> By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker as the start point. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainSuggestionCmdlet"> <summary> The GetDomainSuggestions operation returns a list of suggested domain names given a string, which can either be a domain name or simply a word or phrase (without spaces). </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainSuggestionCmdlet.DomainName"> <summary> <para> <para>A domain name that you want to use as the basis for a list of possible domain names. The domain name must contain a top-level domain (TLD), such as .com, that Amazon Route 53 supports. For a list of TLDs, see <a href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html">Domains that You Can Register with Amazon Route 53</a> in the <i>Amazon Route 53 Developer Guide</i>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainSuggestionCmdlet.OnlyAvailable"> <summary> <para> <para>If <code>OnlyAvailable</code> is <code>true</code>, Amazon Route 53 returns only domain names that are available. If <code>OnlyAvailable</code> is <code>false</code>, Amazon Route 53 returns domain names without checking whether they're available to be registered. To determine whether the domain is available, you can call <code>checkDomainAvailability</code> for each suggestion.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainSuggestionCmdlet.SuggestionCount"> <summary> <para> <para>The number of suggested domain names that you want Amazon Route 53 to return.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainSuggestionCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'SuggestionsList'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.GetDomainSuggestionsResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.GetDomainSuggestionsResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DDomainSuggestionCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationDetailCmdlet"> <summary> This operation returns the current status of an operation that is not completed. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationDetailCmdlet.OperationId"> <summary> <para> <para>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.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationDetailCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is '*'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.GetOperationDetailResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.GetOperationDetailResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationDetailCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the OperationId parameter. The -PassThru parameter is deprecated, use -Select '^OperationId' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationListCmdlet"> <summary> This operation returns the operation IDs of operations that are not yet complete.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationListCmdlet.SubmittedSince"> <summary> <para> <para>An optional parameter that lets you get information about all the operations that you submitted after a specified date and time. Specify the date and time in Coordinated Universal time (UTC).</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationListCmdlet.Marker"> <summary> <para> <para>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 <code>MaxItems</code>, you can use <code>Marker</code> to return additional operations. Get the value of <code>NextPageMarker</code> from the previous response, and submit another request that includes the value of <code>NextPageMarker</code> in the <code>Marker</code> element.</para> </para> <para> <br/><b>Note:</b> This parameter is only used if you are manually controlling output pagination of the service API call. <br/>In order to manually control output pagination, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextPageMarker' for subsequent calls. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationListCmdlet.MaxItem"> <summary> <para> <para>Number of domains to be returned.</para><para>Default: 20</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationListCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'Operations'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.ListOperationsResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.ListOperationsResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationListCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the MaxItem parameter. The -PassThru parameter is deprecated, use -Select '^MaxItem' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DOperationListCmdlet.NoAutoIteration"> <summary> By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker as the start point. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.GetR53DTagsForDomainCmdlet"> <summary> This operation returns all of the tags that are associated with the specified domain. <para> All tag operations are eventually consistent; subsequent operations might not immediately represent all issued operations. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DTagsForDomainCmdlet.DomainName"> <summary> <para> <para>The domain for which you want to get a list of tags.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DTagsForDomainCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'TagList'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.ListTagsForDomainResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.ListTagsForDomainResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.GetR53DTagsForDomainCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet"> <summary> This operation transfers a domain from another registrar to Amazon Route 53. When the transfer is complete, the domain is registered either with Amazon Registrar (for .com, .net, and .org domains) or with our registrar associate, Gandi (for all other TLDs). <para> For transfer requirements, a detailed procedure, and information about viewing the status of a domain transfer, see <a href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-to-route-53.html">Transferring Registration for a Domain to Amazon Route 53</a> in the <i>Amazon Route 53 Developer Guide</i>. </para><para> 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. </para><important><para> 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. </para></important><para> 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. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_AddressLine1"> <summary> <para> <para>First line of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_AddressLine1"> <summary> <para> <para>First line of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_AddressLine1"> <summary> <para> <para>First line of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_AddressLine2"> <summary> <para> <para>Second line of contact's address, if any.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_AddressLine2"> <summary> <para> <para>Second line of contact's address, if any.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_AddressLine2"> <summary> <para> <para>Second line of contact's address, if any.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AuthCode"> <summary> <para> <para>The authorization code for the domain. You get this value from the current registrar.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AutoRenew"> <summary> <para> <para>Indicates whether the domain will be automatically renewed (true) or not (false). Autorenewal only takes effect after the account is charged.</para><para>Default: true</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_City"> <summary> <para> <para>The city of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_City"> <summary> <para> <para>The city of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_City"> <summary> <para> <para>The city of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_ContactType"> <summary> <para> <para>Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than <code>PERSON</code>, you must enter an organization name, and you can't enable privacy protection for the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_ContactType"> <summary> <para> <para>Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than <code>PERSON</code>, you must enter an organization name, and you can't enable privacy protection for the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_ContactType"> <summary> <para> <para>Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than <code>PERSON</code>, you must enter an organization name, and you can't enable privacy protection for the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_CountryCode"> <summary> <para> <para>Code for the country of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_CountryCode"> <summary> <para> <para>Code for the country of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_CountryCode"> <summary> <para> <para>Code for the country of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to transfer to Amazon Route 53.</para><para>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.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.DurationInYears"> <summary> <para> <para>The number of years that you want to register the domain for. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain.</para><para>Default: 1</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_Email"> <summary> <para> <para>Email address of the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_Email"> <summary> <para> <para>Email address of the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_Email"> <summary> <para> <para>Email address of the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_ExtraParam"> <summary> <para> <para>A list of name-value pairs for parameters required by certain top-level domains.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_ExtraParam"> <summary> <para> <para>A list of name-value pairs for parameters required by certain top-level domains.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_ExtraParam"> <summary> <para> <para>A list of name-value pairs for parameters required by certain top-level domains.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_Fax"> <summary> <para> <para>Fax number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_Fax"> <summary> <para> <para>Fax number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_Fax"> <summary> <para> <para>Fax number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_FirstName"> <summary> <para> <para>First name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_FirstName"> <summary> <para> <para>First name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_FirstName"> <summary> <para> <para>First name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.IdnLangCode"> <summary> <para> <para>Reserved for future use.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_LastName"> <summary> <para> <para>Last name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_LastName"> <summary> <para> <para>Last name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_LastName"> <summary> <para> <para>Last name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.Nameserver"> <summary> <para> <para>Contains details for the host and glue IP addresses.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_OrganizationName"> <summary> <para> <para>Name of the organization for contact types other than <code>PERSON</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_OrganizationName"> <summary> <para> <para>Name of the organization for contact types other than <code>PERSON</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_OrganizationName"> <summary> <para> <para>Name of the organization for contact types other than <code>PERSON</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_PhoneNumber"> <summary> <para> <para>The phone number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_PhoneNumber"> <summary> <para> <para>The phone number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_PhoneNumber"> <summary> <para> <para>The phone number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.PrivacyProtectAdminContact"> <summary> <para> <para>Whether you want to conceal contact information from WHOIS queries. If you specify <code>true</code>, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify <code>false</code>, WHOIS queries return the information that you entered for the admin contact.</para><para>Default: <code>true</code></para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.PrivacyProtectRegistrantContact"> <summary> <para> <para>Whether you want to conceal contact information from WHOIS queries. If you specify <code>true</code>, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify <code>false</code>, WHOIS queries return the information that you entered for the registrant contact (domain owner).</para><para>Default: <code>true</code></para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.PrivacyProtectTechContact"> <summary> <para> <para>Whether you want to conceal contact information from WHOIS queries. If you specify <code>true</code>, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify <code>false</code>, WHOIS queries return the information that you entered for the technical contact.</para><para>Default: <code>true</code></para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_State"> <summary> <para> <para>The state or province of the contact's city.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_State"> <summary> <para> <para>The state or province of the contact's city.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_State"> <summary> <para> <para>The state or province of the contact's city.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.AdminContact_ZipCode"> <summary> <para> <para>The zip or postal code of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.RegistrantContact_ZipCode"> <summary> <para> <para>The zip or postal code of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.TechContact_ZipCode"> <summary> <para> <para>The zip or postal code of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'OperationId'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.TransferDomainResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.TransferDomainResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.InvokeR53DDomainTransferCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet"> <summary> This operation registers a domain. Domains are registered either by Amazon Registrar (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other domains). For some top-level domains (TLDs), this operation requires extra parameters. <para> When you register a domain, Amazon Route 53 does the following: </para><ul><li><para> 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. </para></li><li><para> 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. </para></li><li><para> Optionally enables privacy protection, so WHOIS queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you don't enable privacy protection, WHOIS queries return the information that you entered for the registrant, admin, and tech contacts. </para></li><li><para> 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. </para></li><li><para> Charges your AWS account an amount based on the top-level domain. For more information, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>. </para></li></ul> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_AddressLine1"> <summary> <para> <para>First line of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_AddressLine1"> <summary> <para> <para>First line of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_AddressLine1"> <summary> <para> <para>First line of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_AddressLine2"> <summary> <para> <para>Second line of contact's address, if any.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_AddressLine2"> <summary> <para> <para>Second line of contact's address, if any.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_AddressLine2"> <summary> <para> <para>Second line of contact's address, if any.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AutoRenew"> <summary> <para> <para>Indicates whether the domain will be automatically renewed (<code>true</code>) or not (<code>false</code>). Autorenewal only takes effect after the account is charged.</para><para>Default: <code>true</code></para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_City"> <summary> <para> <para>The city of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_City"> <summary> <para> <para>The city of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_City"> <summary> <para> <para>The city of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_ContactType"> <summary> <para> <para>Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than <code>PERSON</code>, you must enter an organization name, and you can't enable privacy protection for the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_ContactType"> <summary> <para> <para>Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than <code>PERSON</code>, you must enter an organization name, and you can't enable privacy protection for the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_ContactType"> <summary> <para> <para>Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than <code>PERSON</code>, you must enter an organization name, and you can't enable privacy protection for the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_CountryCode"> <summary> <para> <para>Code for the country of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_CountryCode"> <summary> <para> <para>Code for the country of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_CountryCode"> <summary> <para> <para>Code for the country of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.DomainName"> <summary> <para> <para>The domain name that you want to register.</para><para>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.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.DurationInYears"> <summary> <para> <para>The number of years that you want to register the domain for. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain. For the range of valid values for your domain, see <a href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html">Domains that You Can Register with Amazon Route 53</a> in the <i>Amazon Route 53 Developer Guide</i>.</para><para>Default: 1</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_Email"> <summary> <para> <para>Email address of the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_Email"> <summary> <para> <para>Email address of the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_Email"> <summary> <para> <para>Email address of the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_ExtraParam"> <summary> <para> <para>A list of name-value pairs for parameters required by certain top-level domains.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_ExtraParam"> <summary> <para> <para>A list of name-value pairs for parameters required by certain top-level domains.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_ExtraParam"> <summary> <para> <para>A list of name-value pairs for parameters required by certain top-level domains.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_Fax"> <summary> <para> <para>Fax number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_Fax"> <summary> <para> <para>Fax number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_Fax"> <summary> <para> <para>Fax number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_FirstName"> <summary> <para> <para>First name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_FirstName"> <summary> <para> <para>First name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_FirstName"> <summary> <para> <para>First name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.IdnLangCode"> <summary> <para> <para>Reserved for future use.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_LastName"> <summary> <para> <para>Last name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_LastName"> <summary> <para> <para>Last name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_LastName"> <summary> <para> <para>Last name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_OrganizationName"> <summary> <para> <para>Name of the organization for contact types other than <code>PERSON</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_OrganizationName"> <summary> <para> <para>Name of the organization for contact types other than <code>PERSON</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_OrganizationName"> <summary> <para> <para>Name of the organization for contact types other than <code>PERSON</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_PhoneNumber"> <summary> <para> <para>The phone number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_PhoneNumber"> <summary> <para> <para>The phone number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_PhoneNumber"> <summary> <para> <para>The phone number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.PrivacyProtectAdminContact"> <summary> <para> <para>Whether you want to conceal contact information from WHOIS queries. If you specify <code>true</code>, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify <code>false</code>, WHOIS queries return the information that you entered for the admin contact.</para><para>Default: <code>true</code></para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.PrivacyProtectRegistrantContact"> <summary> <para> <para>Whether you want to conceal contact information from WHOIS queries. If you specify <code>true</code>, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify <code>false</code>, WHOIS queries return the information that you entered for the registrant contact (the domain owner).</para><para>Default: <code>true</code></para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.PrivacyProtectTechContact"> <summary> <para> <para>Whether you want to conceal contact information from WHOIS queries. If you specify <code>true</code>, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify <code>false</code>, WHOIS queries return the information that you entered for the technical contact.</para><para>Default: <code>true</code></para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_State"> <summary> <para> <para>The state or province of the contact's city.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_State"> <summary> <para> <para>The state or province of the contact's city.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_State"> <summary> <para> <para>The state or province of the contact's city.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.AdminContact_ZipCode"> <summary> <para> <para>The zip or postal code of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.RegistrantContact_ZipCode"> <summary> <para> <para>The zip or postal code of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.TechContact_ZipCode"> <summary> <para> <para>The zip or postal code of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'OperationId'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.RegisterDomainResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.RegisterDomainResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RegisterR53DDomainCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.RemoveR53DTagsForDomainCmdlet"> <summary> This operation deletes the specified tags for a domain. <para> All tag operations are eventually consistent; subsequent operations might not immediately represent all issued operations. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RemoveR53DTagsForDomainCmdlet.DomainName"> <summary> <para> <para>The domain for which you want to delete one or more tags.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RemoveR53DTagsForDomainCmdlet.TagsToDelete"> <summary> <para> <para>A list of tag keys to delete.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RemoveR53DTagsForDomainCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.DeleteTagsForDomainResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RemoveR53DTagsForDomainCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.RemoveR53DTagsForDomainCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.SendR53DContactReachabilityEmailCmdlet"> <summary> For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation resends the confirmation email to the current email address for the registrant contact. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.SendR53DContactReachabilityEmailCmdlet.DomainName"> <summary> <para> <para>The name of the domain for which you want Amazon Route 53 to resend a confirmation email to the registrant contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.SendR53DContactReachabilityEmailCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is '*'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.ResendContactReachabilityEmailResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.ResendContactReachabilityEmailResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.SendR53DContactReachabilityEmailCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.SendR53DContactReachabilityEmailCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainAvailabilityCmdlet"> <summary> This operation checks the availability of one domain name. Note that if the availability status of a domain is pending, you must submit another request to determine the availability of the domain name. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainAvailabilityCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to get availability for.</para><para>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.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainAvailabilityCmdlet.IdnLangCode"> <summary> <para> <para>Reserved for future use.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainAvailabilityCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'Availability'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.CheckDomainAvailabilityResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.CheckDomainAvailabilityResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainAvailabilityCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainTransferabilityCmdlet"> <summary> Checks whether a domain name can be transferred to Amazon Route 53. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainTransferabilityCmdlet.AuthCode"> <summary> <para> <para>If the registrar for the top-level domain (TLD) requires an authorization code to transfer the domain, the code that you got from the current registrar for the domain.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainTransferabilityCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to transfer to Amazon Route 53.</para><para>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.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainTransferabilityCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'Transferability'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.CheckDomainTransferabilityResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.CheckDomainTransferabilityResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.TestR53DDomainTransferabilityCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet"> <summary> This operation updates the contact information for a particular domain. You must specify information for at least one contact: registrant, administrator, or technical. <para> 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. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_AddressLine1"> <summary> <para> <para>First line of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_AddressLine1"> <summary> <para> <para>First line of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_AddressLine1"> <summary> <para> <para>First line of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_AddressLine2"> <summary> <para> <para>Second line of contact's address, if any.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_AddressLine2"> <summary> <para> <para>Second line of contact's address, if any.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_AddressLine2"> <summary> <para> <para>Second line of contact's address, if any.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_City"> <summary> <para> <para>The city of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_City"> <summary> <para> <para>The city of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_City"> <summary> <para> <para>The city of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_ContactType"> <summary> <para> <para>Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than <code>PERSON</code>, you must enter an organization name, and you can't enable privacy protection for the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_ContactType"> <summary> <para> <para>Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than <code>PERSON</code>, you must enter an organization name, and you can't enable privacy protection for the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_ContactType"> <summary> <para> <para>Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than <code>PERSON</code>, you must enter an organization name, and you can't enable privacy protection for the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_CountryCode"> <summary> <para> <para>Code for the country of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_CountryCode"> <summary> <para> <para>Code for the country of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_CountryCode"> <summary> <para> <para>Code for the country of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to update contact information for.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_Email"> <summary> <para> <para>Email address of the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_Email"> <summary> <para> <para>Email address of the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_Email"> <summary> <para> <para>Email address of the contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_ExtraParam"> <summary> <para> <para>A list of name-value pairs for parameters required by certain top-level domains.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_ExtraParam"> <summary> <para> <para>A list of name-value pairs for parameters required by certain top-level domains.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_ExtraParam"> <summary> <para> <para>A list of name-value pairs for parameters required by certain top-level domains.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_Fax"> <summary> <para> <para>Fax number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_Fax"> <summary> <para> <para>Fax number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_Fax"> <summary> <para> <para>Fax number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_FirstName"> <summary> <para> <para>First name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_FirstName"> <summary> <para> <para>First name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_FirstName"> <summary> <para> <para>First name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_LastName"> <summary> <para> <para>Last name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_LastName"> <summary> <para> <para>Last name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_LastName"> <summary> <para> <para>Last name of contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_OrganizationName"> <summary> <para> <para>Name of the organization for contact types other than <code>PERSON</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_OrganizationName"> <summary> <para> <para>Name of the organization for contact types other than <code>PERSON</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_OrganizationName"> <summary> <para> <para>Name of the organization for contact types other than <code>PERSON</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_PhoneNumber"> <summary> <para> <para>The phone number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_PhoneNumber"> <summary> <para> <para>The phone number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_PhoneNumber"> <summary> <para> <para>The phone number of the contact.</para><para>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 <code>"+1.1234567890"</code>.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_State"> <summary> <para> <para>The state or province of the contact's city.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_State"> <summary> <para> <para>The state or province of the contact's city.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_State"> <summary> <para> <para>The state or province of the contact's city.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.AdminContact_ZipCode"> <summary> <para> <para>The zip or postal code of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.RegistrantContact_ZipCode"> <summary> <para> <para>The zip or postal code of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.TechContact_ZipCode"> <summary> <para> <para>The zip or postal code of the contact's address.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'OperationId'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.UpdateDomainContactResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.UpdateDomainContactResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactPrivacyCmdlet"> <summary> This operation updates the specified domain contact's privacy setting. When privacy protection is enabled, contact information such as email address is replaced either with contact information for Amazon Registrar (for .com, .net, and .org domains) or with contact information for our registrar associate, Gandi. <para> This operation affects only the contact information for the specified contact type (registrant, administrator, or tech). If the request succeeds, Amazon Route 53 returns an operation ID that you can use with <a>GetOperationDetail</a> to track the progress and completion of the action. If the request doesn't complete successfully, the domain registrant will be notified by email. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactPrivacyCmdlet.AdminPrivacy"> <summary> <para> <para>Whether you want to conceal contact information from WHOIS queries. If you specify <code>true</code>, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify <code>false</code>, WHOIS queries return the information that you entered for the admin contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactPrivacyCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to update the privacy setting for.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactPrivacyCmdlet.RegistrantPrivacy"> <summary> <para> <para>Whether you want to conceal contact information from WHOIS queries. If you specify <code>true</code>, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify <code>false</code>, WHOIS queries return the information that you entered for the registrant contact (domain owner).</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactPrivacyCmdlet.TechPrivacy"> <summary> <para> <para>Whether you want to conceal contact information from WHOIS queries. If you specify <code>true</code>, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you specify <code>false</code>, WHOIS queries return the information that you entered for the technical contact.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactPrivacyCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'OperationId'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.UpdateDomainContactPrivacyResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.UpdateDomainContactPrivacyResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactPrivacyCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainContactPrivacyCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainNameserverCmdlet"> <summary> 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. <para> 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. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainNameserverCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to change name servers for.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainNameserverCmdlet.Nameserver"> <summary> <para> <para>A list of new name servers for the domain.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainNameserverCmdlet.FIAuthKey"> <summary> <para> <para>The authorization key for .fi domains</para> </para> <para>This parameter is deprecated.</para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainNameserverCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'OperationId'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.UpdateDomainNameserversResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.UpdateDomainNameserversResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainNameserverCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainNameserverCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainRenewalCmdlet"> <summary> This operation renews a domain for the specified number of years. The cost of renewing your domain is billed to your AWS account. <para> We recommend that you renew your domain several weeks before the expiration date. Some TLD registries delete domains before the expiration date if you haven't renewed far enough in advance. For more information about renewing domain registration, see <a href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-renew.html">Renewing Registration for a Domain</a> in the Amazon Route 53 Developer Guide. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainRenewalCmdlet.CurrentExpiryYear"> <summary> <para> <para>The year when the registration for the domain is set to expire. This value must match the current expiration date for the domain.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainRenewalCmdlet.DomainName"> <summary> <para> <para>The name of the domain that you want to renew.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainRenewalCmdlet.DurationInYear"> <summary> <para> <para>The number of years that you want to renew the domain for. The maximum number of years depends on the top-level domain. For the range of valid values for your domain, see <a href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html">Domains that You Can Register with Amazon Route 53</a> in the <i>Amazon Route 53 Developer Guide</i>.</para><para>Default: 1</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainRenewalCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The default value is 'OperationId'. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.RenewDomainResponse). Specifying the name of a property of type Amazon.Route53Domains.Model.RenewDomainResponse will result in that property being returned. Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainRenewalCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DDomainRenewalCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> <member name="T:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DTagsForDomainCmdlet"> <summary> This operation adds or updates tags for a specified domain. <para> All tag operations are eventually consistent; subsequent operations might not immediately represent all issued operations. </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DTagsForDomainCmdlet.DomainName"> <summary> <para> <para>The domain for which you want to add or update tags.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DTagsForDomainCmdlet.TagsToUpdate"> <summary> <para> <para>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.</para> </para> </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DTagsForDomainCmdlet.Select"> <summary> Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default. Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Route53Domains.Model.UpdateTagsForDomainResponse). Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DTagsForDomainCmdlet.PassThru"> <summary> Changes the cmdlet behavior to return the value passed to the DomainName parameter. The -PassThru parameter is deprecated, use -Select '^DomainName' instead. This parameter will be removed in a future version. </summary> </member> <member name="P:Amazon.PowerShell.Cmdlets.R53D.UpdateR53DTagsForDomainCmdlet.Force"> <summary> This parameter overrides confirmation prompts to force the cmdlet to continue its operation. This parameter should always be used with caution. </summary> </member> </members> </doc> |