1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609
// ================================================================= // // * WARNING * // // This file is generated! // // Changes made to this file will be overwritten. If changes are // required to the generated code, the service_crategen project // must be updated to generate the changes. // // ================================================================= use std::error::Error; use std::fmt; #[allow(warnings)] use futures::future; use futures::Future; use rusoto_core::credential::ProvideAwsCredentials; use rusoto_core::region; use rusoto_core::request::{BufferedHttpResponse, DispatchSignedRequest}; use rusoto_core::{Client, RusotoError, RusotoFuture}; use rusoto_core::proto; use rusoto_core::signature::SignedRequest; use serde_json; #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateHttpNamespaceRequest { /// <p>A unique string that identifies the request and that allows failed <code>CreateHttpNamespace</code> requests to be retried without the risk of executing the operation twice. <code>CreatorRequestId</code> can be any unique string, for example, a date/time stamp.</p> #[serde(rename = "CreatorRequestId")] #[serde(skip_serializing_if = "Option::is_none")] pub creator_request_id: Option<String>, /// <p>A description for the namespace.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The name that you want to assign to this namespace.</p> #[serde(rename = "Name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateHttpNamespaceResponse { /// <p>A value that you can use to determine whether the request completed successfully. To get the status of the operation, see <a>GetOperation</a>.</p> #[serde(rename = "OperationId")] #[serde(skip_serializing_if = "Option::is_none")] pub operation_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreatePrivateDnsNamespaceRequest { /// <p>A unique string that identifies the request and that allows failed <code>CreatePrivateDnsNamespace</code> requests to be retried without the risk of executing the operation twice. <code>CreatorRequestId</code> can be any unique string, for example, a date/time stamp.</p> #[serde(rename = "CreatorRequestId")] #[serde(skip_serializing_if = "Option::is_none")] pub creator_request_id: Option<String>, /// <p>A description for the namespace.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The name that you want to assign to this namespace. When you create a private DNS namespace, AWS Cloud Map automatically creates an Amazon Route 53 private hosted zone that has the same name as the namespace.</p> #[serde(rename = "Name")] pub name: String, /// <p>The ID of the Amazon VPC that you want to associate the namespace with.</p> #[serde(rename = "Vpc")] pub vpc: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreatePrivateDnsNamespaceResponse { /// <p>A value that you can use to determine whether the request completed successfully. To get the status of the operation, see <a>GetOperation</a>.</p> #[serde(rename = "OperationId")] #[serde(skip_serializing_if = "Option::is_none")] pub operation_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreatePublicDnsNamespaceRequest { /// <p>A unique string that identifies the request and that allows failed <code>CreatePublicDnsNamespace</code> requests to be retried without the risk of executing the operation twice. <code>CreatorRequestId</code> can be any unique string, for example, a date/time stamp.</p> #[serde(rename = "CreatorRequestId")] #[serde(skip_serializing_if = "Option::is_none")] pub creator_request_id: Option<String>, /// <p>A description for the namespace.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The name that you want to assign to this namespace.</p> #[serde(rename = "Name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreatePublicDnsNamespaceResponse { /// <p>A value that you can use to determine whether the request completed successfully. To get the status of the operation, see <a>GetOperation</a>.</p> #[serde(rename = "OperationId")] #[serde(skip_serializing_if = "Option::is_none")] pub operation_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateServiceRequest { /// <p>A unique string that identifies the request and that allows failed <code>CreateService</code> requests to be retried without the risk of executing the operation twice. <code>CreatorRequestId</code> can be any unique string, for example, a date/time stamp.</p> #[serde(rename = "CreatorRequestId")] #[serde(skip_serializing_if = "Option::is_none")] pub creator_request_id: Option<String>, /// <p>A description for the service.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>A complex type that contains information about the Amazon Route 53 records that you want AWS Cloud Map to create when you register an instance. </p> #[serde(rename = "DnsConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub dns_config: Option<DnsConfig>, /// <p> <i>Public DNS namespaces only.</i> A complex type that contains settings for an optional Route 53 health check. If you specify settings for a health check, AWS Cloud Map associates the health check with all the Route 53 DNS records that you specify in <code>DnsConfig</code>.</p> <important> <p>If you specify a health check configuration, you can specify either <code>HealthCheckCustomConfig</code> or <code>HealthCheckConfig</code> but not both.</p> </important> <p>For information about the charges for health checks, see <a href="http://aws.amazon.com/cloud-map/pricing/">AWS Cloud Map Pricing</a>.</p> #[serde(rename = "HealthCheckConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub health_check_config: Option<HealthCheckConfig>, /// <p><p>A complex type that contains information about an optional custom health check.</p> <important> <p>If you specify a health check configuration, you can specify either <code>HealthCheckCustomConfig</code> or <code>HealthCheckConfig</code> but not both.</p> </important></p> #[serde(rename = "HealthCheckCustomConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub health_check_custom_config: Option<HealthCheckCustomConfig>, /// <p>The name that you want to assign to the service.</p> #[serde(rename = "Name")] pub name: String, /// <p>The ID of the namespace that you want to use to create the service.</p> #[serde(rename = "NamespaceId")] #[serde(skip_serializing_if = "Option::is_none")] pub namespace_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateServiceResponse { /// <p>A complex type that contains information about the new service.</p> #[serde(rename = "Service")] #[serde(skip_serializing_if = "Option::is_none")] pub service: Option<Service>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteNamespaceRequest { /// <p>The ID of the namespace that you want to delete.</p> #[serde(rename = "Id")] pub id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeleteNamespaceResponse { /// <p>A value that you can use to determine whether the request completed successfully. To get the status of the operation, see <a>GetOperation</a>.</p> #[serde(rename = "OperationId")] #[serde(skip_serializing_if = "Option::is_none")] pub operation_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteServiceRequest { /// <p>The ID of the service that you want to delete.</p> #[serde(rename = "Id")] pub id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeleteServiceResponse {} #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeregisterInstanceRequest { /// <p>The value that you specified for <code>Id</code> in the <a>RegisterInstance</a> request.</p> #[serde(rename = "InstanceId")] pub instance_id: String, /// <p>The ID of the service that the instance is associated with.</p> #[serde(rename = "ServiceId")] pub service_id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeregisterInstanceResponse { /// <p>A value that you can use to determine whether the request completed successfully. For more information, see <a>GetOperation</a>.</p> #[serde(rename = "OperationId")] #[serde(skip_serializing_if = "Option::is_none")] pub operation_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DiscoverInstancesRequest { /// <p>The health status of the instances that you want to discover.</p> #[serde(rename = "HealthStatus")] #[serde(skip_serializing_if = "Option::is_none")] pub health_status: Option<String>, /// <p>The maximum number of instances that you want Cloud Map to return in the response to a <code>DiscoverInstances</code> request. If you don't specify a value for <code>MaxResults</code>, Cloud Map returns up to 100 instances.</p> #[serde(rename = "MaxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>The name of the namespace that you specified when you registered the instance.</p> #[serde(rename = "NamespaceName")] pub namespace_name: String, /// <p>A string map that contains attributes with values that you can use to filter instances by any custom attribute that you specified when you registered the instance. Only instances that match all the specified key/value pairs will be returned.</p> #[serde(rename = "QueryParameters")] #[serde(skip_serializing_if = "Option::is_none")] pub query_parameters: Option<::std::collections::HashMap<String, String>>, /// <p>The name of the service that you specified when you registered the instance.</p> #[serde(rename = "ServiceName")] pub service_name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DiscoverInstancesResponse { /// <p>A complex type that contains one <code>HttpInstanceSummary</code> for each registered instance.</p> #[serde(rename = "Instances")] #[serde(skip_serializing_if = "Option::is_none")] pub instances: Option<Vec<HttpInstanceSummary>>, } /// <p>A complex type that contains information about the Amazon Route 53 DNS records that you want AWS Cloud Map to create when you register an instance.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct DnsConfig { /// <p>An array that contains one <code>DnsRecord</code> object for each Route 53 DNS record that you want AWS Cloud Map to create when you register an instance.</p> #[serde(rename = "DnsRecords")] pub dns_records: Vec<DnsRecord>, /// <p>The routing policy that you want to apply to all Route 53 DNS records that AWS Cloud Map creates when you register an instance and specify this service.</p> <note> <p>If you want to use this service to register instances that create alias records, specify <code>WEIGHTED</code> for the routing policy.</p> </note> <p>You can specify the following values:</p> <p> <b>MULTIVALUE</b> </p> <p>If you define a health check for the service and the health check is healthy, Route 53 returns the applicable value for up to eight instances.</p> <p>For example, suppose the service includes configurations for one A record and a health check, and you use the service to register 10 instances. Route 53 responds to DNS queries with IP addresses for up to eight healthy instances. If fewer than eight instances are healthy, Route 53 responds to every DNS query with the IP addresses for all of the healthy instances.</p> <p>If you don't define a health check for the service, Route 53 assumes that all instances are healthy and returns the values for up to eight instances.</p> <p>For more information about the multivalue routing policy, see <a href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html#routing-policy-multivalue">Multivalue Answer Routing</a> in the <i>Route 53 Developer Guide</i>.</p> <p> <b>WEIGHTED</b> </p> <p>Route 53 returns the applicable value from one randomly selected instance from among the instances that you registered using the same service. Currently, all records have the same weight, so you can't route more or less traffic to any instances.</p> <p>For example, suppose the service includes configurations for one A record and a health check, and you use the service to register 10 instances. Route 53 responds to DNS queries with the IP address for one randomly selected instance from among the healthy instances. If no instances are healthy, Route 53 responds to DNS queries as if all of the instances were healthy.</p> <p>If you don't define a health check for the service, Route 53 assumes that all instances are healthy and returns the applicable value for one randomly selected instance.</p> <p>For more information about the weighted routing policy, see <a href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html#routing-policy-weighted">Weighted Routing</a> in the <i>Route 53 Developer Guide</i>.</p> #[serde(rename = "RoutingPolicy")] #[serde(skip_serializing_if = "Option::is_none")] pub routing_policy: Option<String>, } /// <p>A complex type that contains information about changes to the Route 53 DNS records that AWS Cloud Map creates when you register an instance.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DnsConfigChange { /// <p>An array that contains one <code>DnsRecord</code> object for each Route 53 record that you want AWS Cloud Map to create when you register an instance.</p> #[serde(rename = "DnsRecords")] pub dns_records: Vec<DnsRecord>, } /// <p>A complex type that contains the ID for the Route 53 hosted zone that AWS Cloud Map creates when you create a namespace.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DnsProperties { /// <p>The ID for the Route 53 hosted zone that AWS Cloud Map creates when you create a namespace.</p> #[serde(rename = "HostedZoneId")] #[serde(skip_serializing_if = "Option::is_none")] pub hosted_zone_id: Option<String>, } /// <p>A complex type that contains information about the Route 53 DNS records that you want AWS Cloud Map to create when you register an instance.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct DnsRecord { /// <p><p>The amount of time, in seconds, that you want DNS resolvers to cache the settings for this record.</p> <note> <p>Alias records don't include a TTL because Route 53 uses the TTL for the AWS resource that an alias record routes traffic to. If you include the <code>AWS<em>ALIAS</em>DNS_NAME</code> attribute when you submit a <a>RegisterInstance</a> request, the <code>TTL</code> value is ignored. Always specify a TTL for the service; you can use a service to register instances that create either alias or non-alias records.</p> </note></p> #[serde(rename = "TTL")] pub ttl: i64, /// <p>The type of the resource, which indicates the type of value that Route 53 returns in response to DNS queries.</p> <p>Note the following:</p> <ul> <li> <p> <b>A, AAAA, and SRV records:</b> You can specify settings for a maximum of one A, one AAAA, and one SRV record. You can specify them in any combination.</p> </li> <li> <p> <b>CNAME records:</b> If you specify <code>CNAME</code> for <code>Type</code>, you can't define any other records. This is a limitation of DNS: you can't create a CNAME record and any other type of record that has the same name as a CNAME record.</p> </li> <li> <p> <b>Alias records:</b> If you want AWS Cloud Map to create a Route 53 alias record when you register an instance, specify <code>A</code> or <code>AAAA</code> for <code>Type</code>.</p> </li> <li> <p> <b>All records:</b> You specify settings other than <code>TTL</code> and <code>Type</code> when you register an instance.</p> </li> </ul> <p>The following values are supported:</p> <p> <b>A</b> </p> <p>Route 53 returns the IP address of the resource in IPv4 format, such as 192.0.2.44.</p> <p> <b>AAAA</b> </p> <p>Route 53 returns the IP address of the resource in IPv6 format, such as 2001:0db8:85a3:0000:0000:abcd:0001:2345.</p> <p> <b>CNAME</b> </p> <p>Route 53 returns the domain name of the resource, such as www.example.com. Note the following:</p> <ul> <li> <p>You specify the domain name that you want to route traffic to when you register an instance. For more information, see <a>RegisterInstanceRequest$Attributes</a>.</p> </li> <li> <p>You must specify <code>WEIGHTED</code> for the value of <code>RoutingPolicy</code>.</p> </li> <li> <p>You can't specify both <code>CNAME</code> for <code>Type</code> and settings for <code>HealthCheckConfig</code>. If you do, the request will fail with an <code>InvalidInput</code> error.</p> </li> </ul> <p> <b>SRV</b> </p> <p>Route 53 returns the value for an SRV record. The value for an SRV record uses the following values:</p> <p> <code>priority weight port service-hostname</code> </p> <p>Note the following about the values:</p> <ul> <li> <p>The values of <code>priority</code> and <code>weight</code> are both set to <code>1</code> and can't be changed. </p> </li> <li> <p>The value of <code>port</code> comes from the value that you specify for the <code>AWS_INSTANCE_PORT</code> attribute when you submit a <a>RegisterInstance</a> request. </p> </li> <li> <p>The value of <code>service-hostname</code> is a concatenation of the following values:</p> <ul> <li> <p>The value that you specify for <code>InstanceId</code> when you register an instance.</p> </li> <li> <p>The name of the service.</p> </li> <li> <p>The name of the namespace. </p> </li> </ul> <p>For example, if the value of <code>InstanceId</code> is <code>test</code>, the name of the service is <code>backend</code>, and the name of the namespace is <code>example.com</code>, the value of <code>service-hostname</code> is:</p> <p> <code>test.backend.example.com</code> </p> </li> </ul> <p>If you specify settings for an SRV record and if you specify values for <code>AWS_INSTANCE_IPV4</code>, <code>AWS_INSTANCE_IPV6</code>, or both in the <code>RegisterInstance</code> request, AWS Cloud Map automatically creates <code>A</code> and/or <code>AAAA</code> records that have the same name as the value of <code>service-hostname</code> in the SRV record. You can ignore these records.</p> #[serde(rename = "Type")] pub type_: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetInstanceRequest { /// <p>The ID of the instance that you want to get information about.</p> #[serde(rename = "InstanceId")] pub instance_id: String, /// <p>The ID of the service that the instance is associated with.</p> #[serde(rename = "ServiceId")] pub service_id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetInstanceResponse { /// <p>A complex type that contains information about a specified instance.</p> #[serde(rename = "Instance")] #[serde(skip_serializing_if = "Option::is_none")] pub instance: Option<Instance>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetInstancesHealthStatusRequest { /// <p><p>An array that contains the IDs of all the instances that you want to get the health status for.</p> <p>If you omit <code>Instances</code>, AWS Cloud Map returns the health status for all the instances that are associated with the specified service.</p> <note> <p>To get the IDs for the instances that you've registered by using a specified service, submit a <a>ListInstances</a> request.</p> </note></p> #[serde(rename = "Instances")] #[serde(skip_serializing_if = "Option::is_none")] pub instances: Option<Vec<String>>, /// <p>The maximum number of instances that you want AWS Cloud Map to return in the response to a <code>GetInstancesHealthStatus</code> request. If you don't specify a value for <code>MaxResults</code>, AWS Cloud Map returns up to 100 instances.</p> #[serde(rename = "MaxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>For the first <code>GetInstancesHealthStatus</code> request, omit this value.</p> <p>If more than <code>MaxResults</code> instances match the specified criteria, you can submit another <code>GetInstancesHealthStatus</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>The ID of the service that the instance is associated with.</p> #[serde(rename = "ServiceId")] pub service_id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetInstancesHealthStatusResponse { /// <p>If more than <code>MaxResults</code> instances match the specified criteria, you can submit another <code>GetInstancesHealthStatus</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>A complex type that contains the IDs and the health status of the instances that you specified in the <code>GetInstancesHealthStatus</code> request.</p> #[serde(rename = "Status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<::std::collections::HashMap<String, String>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetNamespaceRequest { /// <p>The ID of the namespace that you want to get information about.</p> #[serde(rename = "Id")] pub id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetNamespaceResponse { /// <p>A complex type that contains information about the specified namespace.</p> #[serde(rename = "Namespace")] #[serde(skip_serializing_if = "Option::is_none")] pub namespace: Option<Namespace>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetOperationRequest { /// <p>The ID of the operation that you want to get more information about.</p> #[serde(rename = "OperationId")] pub operation_id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetOperationResponse { /// <p>A complex type that contains information about the operation.</p> #[serde(rename = "Operation")] #[serde(skip_serializing_if = "Option::is_none")] pub operation: Option<Operation>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetServiceRequest { /// <p>The ID of the service that you want to get settings for.</p> #[serde(rename = "Id")] pub id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetServiceResponse { /// <p>A complex type that contains information about the service.</p> #[serde(rename = "Service")] #[serde(skip_serializing_if = "Option::is_none")] pub service: Option<Service>, } /// <p> <i>Public DNS namespaces only.</i> A complex type that contains settings for an optional health check. If you specify settings for a health check, AWS Cloud Map associates the health check with the records that you specify in <code>DnsConfig</code>.</p> <important> <p>If you specify a health check configuration, you can specify either <code>HealthCheckCustomConfig</code> or <code>HealthCheckConfig</code> but not both.</p> </important> <p>Health checks are basic Route 53 health checks that monitor an AWS endpoint. For information about pricing for health checks, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p> <p>Note the following about configuring health checks.</p> <p> <b>A and AAAA records</b> </p> <p>If <code>DnsConfig</code> includes configurations for both A and AAAA records, AWS Cloud Map creates a health check that uses the IPv4 address to check the health of the resource. If the endpoint that is specified by the IPv4 address is unhealthy, Route 53 considers both the A and AAAA records to be unhealthy. </p> <p> <b>CNAME records</b> </p> <p>You can't specify settings for <code>HealthCheckConfig</code> when the <code>DNSConfig</code> includes <code>CNAME</code> for the value of <code>Type</code>. If you do, the <code>CreateService</code> request will fail with an <code>InvalidInput</code> error.</p> <p> <b>Request interval</b> </p> <p>A Route 53 health checker in each health-checking region sends a health check request to an endpoint every 30 seconds. On average, your endpoint receives a health check request about every two seconds. However, health checkers don't coordinate with one another, so you'll sometimes see several requests per second followed by a few seconds with no health checks at all.</p> <p> <b>Health checking regions</b> </p> <p>Health checkers perform checks from all Route 53 health-checking regions. For a list of the current regions, see <a href="http://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-Regions">Regions</a>.</p> <p> <b>Alias records</b> </p> <p>When you register an instance, if you include the <code>AWS_ALIAS_DNS_NAME</code> attribute, AWS Cloud Map creates a Route 53 alias record. Note the following:</p> <ul> <li> <p>Route 53 automatically sets <code>EvaluateTargetHealth</code> to true for alias records. When <code>EvaluateTargetHealth</code> is true, the alias record inherits the health of the referenced AWS resource. such as an ELB load balancer. For more information, see <a href="http://docs.aws.amazon.com/Route53/latest/APIReference/API_AliasTarget.html#Route53-Type-AliasTarget-EvaluateTargetHealth">EvaluateTargetHealth</a>.</p> </li> <li> <p>If you include <code>HealthCheckConfig</code> and then use the service to register an instance that creates an alias record, Route 53 doesn't create the health check.</p> </li> </ul> <p> <b>Charges for health checks</b> </p> <p>Health checks are basic Route 53 health checks that monitor an AWS endpoint. For information about pricing for health checks, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct HealthCheckConfig { /// <p>The number of consecutive health checks that an endpoint must pass or fail for Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see <a href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html">How Route 53 Determines Whether an Endpoint Is Healthy</a> in the <i>Route 53 Developer Guide</i>.</p> #[serde(rename = "FailureThreshold")] #[serde(skip_serializing_if = "Option::is_none")] pub failure_threshold: Option<i64>, /// <p>The path that you want Route 53 to request when performing health checks. The path can be any value for which your endpoint will return an HTTP status code of 2xx or 3xx when the endpoint is healthy, such as the file <code>/docs/route53-health-check.html</code>. Route 53 automatically adds the DNS name for the service. If you don't specify a value for <code>ResourcePath</code>, the default value is <code>/</code>.</p> <p>If you specify <code>TCP</code> for <code>Type</code>, you must <i>not</i> specify a value for <code>ResourcePath</code>.</p> #[serde(rename = "ResourcePath")] #[serde(skip_serializing_if = "Option::is_none")] pub resource_path: Option<String>, /// <p>The type of health check that you want to create, which indicates how Route 53 determines whether an endpoint is healthy.</p> <important> <p>You can't change the value of <code>Type</code> after you create a health check.</p> </important> <p>You can create the following types of health checks:</p> <ul> <li> <p> <b>HTTP</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and waits for an HTTP status code of 200 or greater and less than 400.</p> </li> <li> <p> <b>HTTPS</b>: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTPS request and waits for an HTTP status code of 200 or greater and less than 400.</p> <important> <p>If you specify HTTPS for the value of <code>Type</code>, the endpoint must support TLS v1.0 or later.</p> </important> </li> <li> <p> <b>TCP</b>: Route 53 tries to establish a TCP connection.</p> <p>If you specify <code>TCP</code> for <code>Type</code>, don't specify a value for <code>ResourcePath</code>.</p> </li> </ul> <p>For more information, see <a href="http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html">How Route 53 Determines Whether an Endpoint Is Healthy</a> in the <i>Route 53 Developer Guide</i>.</p> #[serde(rename = "Type")] pub type_: String, } /// <p>A complex type that contains information about an optional custom health check. A custom health check, which requires that you use a third-party health checker to evaluate the health of your resources, is useful in the following circumstances:</p> <ul> <li> <p>You can't use a health check that is defined by <code>HealthCheckConfig</code> because the resource isn't available over the internet. For example, you can use a custom health check when the instance is in an Amazon VPC. (To check the health of resources in a VPC, the health checker must also be in the VPC.)</p> </li> <li> <p>You want to use a third-party health checker regardless of where your resources are.</p> </li> </ul> <important> <p>If you specify a health check configuration, you can specify either <code>HealthCheckCustomConfig</code> or <code>HealthCheckConfig</code> but not both.</p> </important> <p>To change the status of a custom health check, submit an <code>UpdateInstanceCustomHealthStatus</code> request. Cloud Map doesn't monitor the status of the resource, it just keeps a record of the status specified in the most recent <code>UpdateInstanceCustomHealthStatus</code> request.</p> <p>Here's how custom health checks work:</p> <ol> <li> <p>You create a service and specify a value for <code>FailureThreshold</code>. </p> <p>The failure threshold indicates the number of 30-second intervals you want AWS Cloud Map to wait between the time that your application sends an <a>UpdateInstanceCustomHealthStatus</a> request and the time that AWS Cloud Map stops routing internet traffic to the corresponding resource.</p> </li> <li> <p>You register an instance.</p> </li> <li> <p>You configure a third-party health checker to monitor the resource that is associated with the new instance. </p> <note> <p>AWS Cloud Map doesn't check the health of the resource directly. </p> </note> </li> <li> <p>The third-party health-checker determines that the resource is unhealthy and notifies your application.</p> </li> <li> <p>Your application submits an <code>UpdateInstanceCustomHealthStatus</code> request.</p> </li> <li> <p>AWS Cloud Map waits for (<code>FailureThreshold</code> x 30) seconds.</p> </li> <li> <p>If another <code>UpdateInstanceCustomHealthStatus</code> request doesn't arrive during that time to change the status back to healthy, AWS Cloud Map stops routing traffic to the resource.</p> </li> </ol> <p>Note the following about configuring custom health checks.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct HealthCheckCustomConfig { /// <p>The number of 30-second intervals that you want Cloud Map to wait after receiving an <code>UpdateInstanceCustomHealthStatus</code> request before it changes the health status of a service instance. For example, suppose you specify a value of <code>2</code> for <code>FailureTheshold</code>, and then your application sends an <code>UpdateInstanceCustomHealthStatus</code> request. Cloud Map waits for approximately 60 seconds (2 x 30) before changing the status of the service instance based on that request.</p> <p>Sending a second or subsequent <code>UpdateInstanceCustomHealthStatus</code> request with the same value before <code>FailureThreshold x 30</code> seconds has passed doesn't accelerate the change. Cloud Map still waits <code>FailureThreshold x 30</code> seconds after the first request to make the change.</p> #[serde(rename = "FailureThreshold")] #[serde(skip_serializing_if = "Option::is_none")] pub failure_threshold: Option<i64>, } /// <p>In a response to a <a>DiscoverInstance</a> request, <code>HttpInstanceSummary</code> contains information about one instance that matches the values that you specified in the request.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct HttpInstanceSummary { /// <p>If you included any attributes when you registered the instance, the values of those attributes.</p> #[serde(rename = "Attributes")] #[serde(skip_serializing_if = "Option::is_none")] pub attributes: Option<::std::collections::HashMap<String, String>>, /// <p>If you configured health checking in the service, the current health status of the service instance.</p> #[serde(rename = "HealthStatus")] #[serde(skip_serializing_if = "Option::is_none")] pub health_status: Option<String>, /// <p>The ID of an instance that matches the values that you specified in the request.</p> #[serde(rename = "InstanceId")] #[serde(skip_serializing_if = "Option::is_none")] pub instance_id: Option<String>, /// <p>The name of the namespace that you specified when you registered the instance.</p> #[serde(rename = "NamespaceName")] #[serde(skip_serializing_if = "Option::is_none")] pub namespace_name: Option<String>, /// <p>The name of the service that you specified when you registered the instance.</p> #[serde(rename = "ServiceName")] #[serde(skip_serializing_if = "Option::is_none")] pub service_name: Option<String>, } /// <p>A complex type that contains the name of an HTTP namespace.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct HttpProperties { /// <p>The name of an HTTP namespace.</p> #[serde(rename = "HttpName")] #[serde(skip_serializing_if = "Option::is_none")] pub http_name: Option<String>, } /// <p>A complex type that contains information about an instance that AWS Cloud Map creates when you submit a <code>RegisterInstance</code> request.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Instance { /// <p>A string map that contains the following information for the service that you specify in <code>ServiceId</code>:</p> <ul> <li> <p>The attributes that apply to the records that are defined in the service. </p> </li> <li> <p>For each attribute, the applicable value.</p> </li> </ul> <p>Supported attribute keys include the following:</p> <p> <b>AWS_ALIAS_DNS_NAME</b> </p> <p> <b/> </p> <p>If you want AWS Cloud Map to create a Route 53 alias record that routes traffic to an Elastic Load Balancing load balancer, specify the DNS name that is associated with the load balancer. For information about how to get the DNS name, see "DNSName" in the topic <a href="http://docs.aws.amazon.com/Route53/latest/APIReference/API_AliasTarget.html">AliasTarget</a>.</p> <p>Note the following:</p> <ul> <li> <p>The configuration for the service that is specified by <code>ServiceId</code> must include settings for an A record, an AAAA record, or both.</p> </li> <li> <p>In the service that is specified by <code>ServiceId</code>, the value of <code>RoutingPolicy</code> must be <code>WEIGHTED</code>.</p> </li> <li> <p>If the service that is specified by <code>ServiceId</code> includes <code>HealthCheckConfig</code> settings, AWS Cloud Map will create the health check, but it won't associate the health check with the alias record.</p> </li> <li> <p>Auto naming currently doesn't support creating alias records that route traffic to AWS resources other than ELB load balancers.</p> </li> <li> <p>If you specify a value for <code>AWS_ALIAS_DNS_NAME</code>, don't specify values for any of the <code>AWS_INSTANCE</code> attributes.</p> </li> </ul> <p> <b>AWS_INSTANCE_CNAME</b> </p> <p>If the service configuration includes a CNAME record, the domain name that you want Route 53 to return in response to DNS queries, for example, <code>example.com</code>.</p> <p>This value is required if the service specified by <code>ServiceId</code> includes settings for an CNAME record.</p> <p> <b>AWS_INSTANCE_IPV4</b> </p> <p>If the service configuration includes an A record, the IPv4 address that you want Route 53 to return in response to DNS queries, for example, <code>192.0.2.44</code>.</p> <p>This value is required if the service specified by <code>ServiceId</code> includes settings for an A record. If the service includes settings for an SRV record, you must specify a value for <code>AWS_INSTANCE_IPV4</code>, <code>AWS_INSTANCE_IPV6</code>, or both.</p> <p> <b>AWS_INSTANCE_IPV6</b> </p> <p>If the service configuration includes an AAAA record, the IPv6 address that you want Route 53 to return in response to DNS queries, for example, <code>2001:0db8:85a3:0000:0000:abcd:0001:2345</code>.</p> <p>This value is required if the service specified by <code>ServiceId</code> includes settings for an AAAA record. If the service includes settings for an SRV record, you must specify a value for <code>AWS_INSTANCE_IPV4</code>, <code>AWS_INSTANCE_IPV6</code>, or both.</p> <p> <b>AWS_INSTANCE_PORT</b> </p> <p>If the service includes an SRV record, the value that you want Route 53 to return for the port.</p> <p>If the service includes <code>HealthCheckConfig</code>, the port on the endpoint that you want Route 53 to send requests to. </p> <p>This value is required if you specified settings for an SRV record when you created the service.</p> #[serde(rename = "Attributes")] #[serde(skip_serializing_if = "Option::is_none")] pub attributes: Option<::std::collections::HashMap<String, String>>, /// <p>A unique string that identifies the request and that allows failed <code>RegisterInstance</code> requests to be retried without the risk of executing the operation twice. You must use a unique <code>CreatorRequestId</code> string every time you submit a <code>RegisterInstance</code> request if you're registering additional instances for the same namespace and service. <code>CreatorRequestId</code> can be any unique string, for example, a date/time stamp.</p> #[serde(rename = "CreatorRequestId")] #[serde(skip_serializing_if = "Option::is_none")] pub creator_request_id: Option<String>, /// <p><p>An identifier that you want to associate with the instance. Note the following:</p> <ul> <li> <p>If the service that is specified by <code>ServiceId</code> includes settings for an SRV record, the value of <code>InstanceId</code> is automatically included as part of the value for the SRV record. For more information, see <a>DnsRecord$Type</a>.</p> </li> <li> <p>You can use this value to update an existing instance.</p> </li> <li> <p>To register a new instance, you must specify a value that is unique among instances that you register by using the same service. </p> </li> <li> <p>If you specify an existing <code>InstanceId</code> and <code>ServiceId</code>, AWS Cloud Map updates the existing DNS records. If there's also an existing health check, AWS Cloud Map deletes the old health check and creates a new one. </p> <note> <p>The health check isn't deleted immediately, so it will still appear for a while if you submit a <code>ListHealthChecks</code> request, for example.</p> </note> </li> </ul></p> #[serde(rename = "Id")] pub id: String, } /// <p>A complex type that contains information about the instances that you registered by using a specified service.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct InstanceSummary { /// <p><p>A string map that contains the following information:</p> <ul> <li> <p>The attributes that are associate with the instance. </p> </li> <li> <p>For each attribute, the applicable value.</p> </li> </ul> <p>Supported attribute keys include the following:</p> <ul> <li> <p> <code>AWS<em>ALIAS</em>DNS<em>NAME</code>: For an alias record that routes traffic to an Elastic Load Balancing load balancer, the DNS name that is associated with the load balancer. </p> </li> <li> <p> <code>AWS</em>INSTANCE<em>CNAME</code>: For a CNAME record, the domain name that Route 53 returns in response to DNS queries, for example, <code>example.com</code>.</p> </li> <li> <p> <code>AWS</em>INSTANCE<em>IPV4</code>: For an A record, the IPv4 address that Route 53 returns in response to DNS queries, for example, <code>192.0.2.44</code>.</p> </li> <li> <p> <code>AWS</em>INSTANCE<em>IPV6</code>: For an AAAA record, the IPv6 address that Route 53 returns in response to DNS queries, for example, <code>2001:0db8:85a3:0000:0000:abcd:0001:2345</code>.</p> </li> <li> <p> <code>AWS</em>INSTANCE_PORT</code>: For an SRV record, the value that Route 53 returns for the port. In addition, if the service includes <code>HealthCheckConfig</code>, the port on the endpoint that Route 53 sends requests to.</p> </li> </ul></p> #[serde(rename = "Attributes")] #[serde(skip_serializing_if = "Option::is_none")] pub attributes: Option<::std::collections::HashMap<String, String>>, /// <p>The ID for an instance that you created by using a specified service.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListInstancesRequest { /// <p>The maximum number of instances that you want AWS Cloud Map to return in the response to a <code>ListInstances</code> request. If you don't specify a value for <code>MaxResults</code>, AWS Cloud Map returns up to 100 instances.</p> #[serde(rename = "MaxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>For the first <code>ListInstances</code> request, omit this value.</p> <p>If more than <code>MaxResults</code> instances match the specified criteria, you can submit another <code>ListInstances</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>The ID of the service that you want to list instances for.</p> #[serde(rename = "ServiceId")] pub service_id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListInstancesResponse { /// <p>Summary information about the instances that are associated with the specified service.</p> #[serde(rename = "Instances")] #[serde(skip_serializing_if = "Option::is_none")] pub instances: Option<Vec<InstanceSummary>>, /// <p>If more than <code>MaxResults</code> instances match the specified criteria, you can submit another <code>ListInstances</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListNamespacesRequest { /// <p>A complex type that contains specifications for the namespaces that you want to list.</p> <p>If you specify more than one filter, a namespace must match all filters to be returned by <code>ListNamespaces</code>.</p> #[serde(rename = "Filters")] #[serde(skip_serializing_if = "Option::is_none")] pub filters: Option<Vec<NamespaceFilter>>, /// <p>The maximum number of namespaces that you want AWS Cloud Map to return in the response to a <code>ListNamespaces</code> request. If you don't specify a value for <code>MaxResults</code>, AWS Cloud Map returns up to 100 namespaces.</p> #[serde(rename = "MaxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p><p>For the first <code>ListNamespaces</code> request, omit this value.</p> <p>If the response contains <code>NextToken</code>, submit another <code>ListNamespaces</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> <note> <p>AWS Cloud Map gets <code>MaxResults</code> namespaces and then filters them based on the specified criteria. It's possible that no namespaces in the first <code>MaxResults</code> namespaces matched the specified criteria but that subsequent groups of <code>MaxResults</code> namespaces do contain namespaces that match the criteria.</p> </note></p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListNamespacesResponse { /// <p>An array that contains one <code>NamespaceSummary</code> object for each namespace that matches the specified filter criteria.</p> #[serde(rename = "Namespaces")] #[serde(skip_serializing_if = "Option::is_none")] pub namespaces: Option<Vec<NamespaceSummary>>, /// <p><p>If the response contains <code>NextToken</code>, submit another <code>ListNamespaces</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> <note> <p>AWS Cloud Map gets <code>MaxResults</code> namespaces and then filters them based on the specified criteria. It's possible that no namespaces in the first <code>MaxResults</code> namespaces matched the specified criteria but that subsequent groups of <code>MaxResults</code> namespaces do contain namespaces that match the criteria.</p> </note></p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListOperationsRequest { /// <p>A complex type that contains specifications for the operations that you want to list, for example, operations that you started between a specified start date and end date.</p> <p>If you specify more than one filter, an operation must match all filters to be returned by <code>ListOperations</code>.</p> #[serde(rename = "Filters")] #[serde(skip_serializing_if = "Option::is_none")] pub filters: Option<Vec<OperationFilter>>, /// <p>The maximum number of items that you want AWS Cloud Map to return in the response to a <code>ListOperations</code> request. If you don't specify a value for <code>MaxResults</code>, AWS Cloud Map returns up to 100 operations.</p> #[serde(rename = "MaxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p><p>For the first <code>ListOperations</code> request, omit this value.</p> <p>If the response contains <code>NextToken</code>, submit another <code>ListOperations</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> <note> <p>AWS Cloud Map gets <code>MaxResults</code> operations and then filters them based on the specified criteria. It's possible that no operations in the first <code>MaxResults</code> operations matched the specified criteria but that subsequent groups of <code>MaxResults</code> operations do contain operations that match the criteria.</p> </note></p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListOperationsResponse { /// <p><p>If the response contains <code>NextToken</code>, submit another <code>ListOperations</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> <note> <p>AWS Cloud Map gets <code>MaxResults</code> operations and then filters them based on the specified criteria. It's possible that no operations in the first <code>MaxResults</code> operations matched the specified criteria but that subsequent groups of <code>MaxResults</code> operations do contain operations that match the criteria.</p> </note></p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>Summary information about the operations that match the specified criteria.</p> #[serde(rename = "Operations")] #[serde(skip_serializing_if = "Option::is_none")] pub operations: Option<Vec<OperationSummary>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListServicesRequest { /// <p>A complex type that contains specifications for the namespaces that you want to list services for. </p> <p>If you specify more than one filter, an operation must match all filters to be returned by <code>ListServices</code>.</p> #[serde(rename = "Filters")] #[serde(skip_serializing_if = "Option::is_none")] pub filters: Option<Vec<ServiceFilter>>, /// <p>The maximum number of services that you want AWS Cloud Map to return in the response to a <code>ListServices</code> request. If you don't specify a value for <code>MaxResults</code>, AWS Cloud Map returns up to 100 services.</p> #[serde(rename = "MaxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p><p>For the first <code>ListServices</code> request, omit this value.</p> <p>If the response contains <code>NextToken</code>, submit another <code>ListServices</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> <note> <p>AWS Cloud Map gets <code>MaxResults</code> services and then filters them based on the specified criteria. It's possible that no services in the first <code>MaxResults</code> services matched the specified criteria but that subsequent groups of <code>MaxResults</code> services do contain services that match the criteria.</p> </note></p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListServicesResponse { /// <p><p>If the response contains <code>NextToken</code>, submit another <code>ListServices</code> request to get the next group of results. Specify the value of <code>NextToken</code> from the previous response in the next request.</p> <note> <p>AWS Cloud Map gets <code>MaxResults</code> services and then filters them based on the specified criteria. It's possible that no services in the first <code>MaxResults</code> services matched the specified criteria but that subsequent groups of <code>MaxResults</code> services do contain services that match the criteria.</p> </note></p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>An array that contains one <code>ServiceSummary</code> object for each service that matches the specified filter criteria.</p> #[serde(rename = "Services")] #[serde(skip_serializing_if = "Option::is_none")] pub services: Option<Vec<ServiceSummary>>, } /// <p>A complex type that contains information about a specified namespace.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Namespace { /// <p>The Amazon Resource Name (ARN) that AWS Cloud Map assigns to the namespace when you create it.</p> #[serde(rename = "Arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p>The date that the namespace was created, in Unix date/time format and Coordinated Universal Time (UTC). The value of <code>CreateDate</code> is accurate to milliseconds. For example, the value <code>1516925490.087</code> represents Friday, January 26, 2018 12:11:30.087 AM.</p> #[serde(rename = "CreateDate")] #[serde(skip_serializing_if = "Option::is_none")] pub create_date: Option<f64>, /// <p>A unique string that identifies the request and that allows failed requests to be retried without the risk of executing an operation twice. </p> #[serde(rename = "CreatorRequestId")] #[serde(skip_serializing_if = "Option::is_none")] pub creator_request_id: Option<String>, /// <p>The description that you specify for the namespace when you create it.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The ID of a namespace.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p>The name of the namespace, such as <code>example.com</code>.</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>A complex type that contains information that's specific to the type of the namespace.</p> #[serde(rename = "Properties")] #[serde(skip_serializing_if = "Option::is_none")] pub properties: Option<NamespaceProperties>, /// <p>The number of services that are associated with the namespace.</p> #[serde(rename = "ServiceCount")] #[serde(skip_serializing_if = "Option::is_none")] pub service_count: Option<i64>, /// <p>The type of the namespace. Valid values are <code>DNS_PUBLIC</code> and <code>DNS_PRIVATE</code>.</p> #[serde(rename = "Type")] #[serde(skip_serializing_if = "Option::is_none")] pub type_: Option<String>, } /// <p>A complex type that identifies the namespaces that you want to list. You can choose to list public or private namespaces.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct NamespaceFilter { /// <p><p>The operator that you want to use to determine whether <code>ListNamespaces</code> returns a namespace. Valid values for <code>condition</code> include:</p> <ul> <li> <p> <code>EQ</code>: When you specify <code>EQ</code> for the condition, you can choose to list only public namespaces or private namespaces, but not both. <code>EQ</code> is the default condition and can be omitted.</p> </li> <li> <p> <code>IN</code>: When you specify <code>IN</code> for the condition, you can choose to list public namespaces, private namespaces, or both. </p> </li> <li> <p> <code>BETWEEN</code>: Not applicable</p> </li> </ul></p> #[serde(rename = "Condition")] #[serde(skip_serializing_if = "Option::is_none")] pub condition: Option<String>, /// <p>Specify <code>TYPE</code>.</p> #[serde(rename = "Name")] pub name: String, /// <p>If you specify <code>EQ</code> for <code>Condition</code>, specify either <code>DNS_PUBLIC</code> or <code>DNS_PRIVATE</code>.</p> <p>If you specify <code>IN</code> for <code>Condition</code>, you can specify <code>DNS_PUBLIC</code>, <code>DNS_PRIVATE</code>, or both.</p> #[serde(rename = "Values")] pub values: Vec<String>, } /// <p>A complex type that contains information that is specific to the namespace type.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct NamespaceProperties { /// <p>A complex type that contains the ID for the Route 53 hosted zone that AWS Cloud Map creates when you create a namespace.</p> #[serde(rename = "DnsProperties")] #[serde(skip_serializing_if = "Option::is_none")] pub dns_properties: Option<DnsProperties>, /// <p>A complex type that contains the name of an HTTP namespace.</p> #[serde(rename = "HttpProperties")] #[serde(skip_serializing_if = "Option::is_none")] pub http_properties: Option<HttpProperties>, } /// <p>A complex type that contains information about a namespace.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct NamespaceSummary { /// <p>The Amazon Resource Name (ARN) that AWS Cloud Map assigns to the namespace when you create it.</p> #[serde(rename = "Arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p>The date and time that the namespace was created.</p> #[serde(rename = "CreateDate")] #[serde(skip_serializing_if = "Option::is_none")] pub create_date: Option<f64>, /// <p>A description for the namespace.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The ID of the namespace.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p>The name of the namespace. When you create a namespace, AWS Cloud Map automatically creates a Route 53 hosted zone that has the same name as the namespace.</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, #[serde(rename = "Properties")] #[serde(skip_serializing_if = "Option::is_none")] pub properties: Option<NamespaceProperties>, /// <p>The number of services that were created using the namespace.</p> #[serde(rename = "ServiceCount")] #[serde(skip_serializing_if = "Option::is_none")] pub service_count: Option<i64>, /// <p>The type of the namespace, either public or private.</p> #[serde(rename = "Type")] #[serde(skip_serializing_if = "Option::is_none")] pub type_: Option<String>, } /// <p>A complex type that contains information about a specified operation.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Operation { /// <p>The date and time that the request was submitted, in Unix date/time format and Coordinated Universal Time (UTC). The value of <code>CreateDate</code> is accurate to milliseconds. For example, the value <code>1516925490.087</code> represents Friday, January 26, 2018 12:11:30.087 AM.</p> #[serde(rename = "CreateDate")] #[serde(skip_serializing_if = "Option::is_none")] pub create_date: Option<f64>, /// <p><p>The code associated with <code>ErrorMessage</code>. Values for <code>ErrorCode</code> include the following:</p> <ul> <li> <p> <code>ACCESS<em>DENIED</code> </p> </li> <li> <p> <code>CANNOT</em>CREATE<em>HOSTED</em>ZONE</code> </p> </li> <li> <p> <code>EXPIRED<em>TOKEN</code> </p> </li> <li> <p> <code>HOSTED</em>ZONE<em>NOT</em>FOUND</code> </p> </li> <li> <p> <code>INTERNAL<em>FAILURE</code> </p> </li> <li> <p> <code>INVALID</em>CHANGE<em>BATCH</code> </p> </li> <li> <p> <code>THROTTLED</em>REQUEST</code> </p> </li> </ul></p> #[serde(rename = "ErrorCode")] #[serde(skip_serializing_if = "Option::is_none")] pub error_code: Option<String>, /// <p>If the value of <code>Status</code> is <code>FAIL</code>, the reason that the operation failed.</p> #[serde(rename = "ErrorMessage")] #[serde(skip_serializing_if = "Option::is_none")] pub error_message: Option<String>, /// <p>The ID of the operation that you want to get information about.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p><p>The status of the operation. Values include the following:</p> <ul> <li> <p> <b>SUBMITTED</b>: This is the initial state immediately after you submit a request.</p> </li> <li> <p> <b>PENDING</b>: AWS Cloud Map is performing the operation.</p> </li> <li> <p> <b>SUCCESS</b>: The operation succeeded.</p> </li> <li> <p> <b>FAIL</b>: The operation failed. For the failure reason, see <code>ErrorMessage</code>.</p> </li> </ul></p> #[serde(rename = "Status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, /// <p><p>The name of the target entity that is associated with the operation:</p> <ul> <li> <p> <b>NAMESPACE</b>: The namespace ID is returned in the <code>ResourceId</code> property.</p> </li> <li> <p> <b>SERVICE</b>: The service ID is returned in the <code>ResourceId</code> property.</p> </li> <li> <p> <b>INSTANCE</b>: The instance ID is returned in the <code>ResourceId</code> property.</p> </li> </ul></p> #[serde(rename = "Targets")] #[serde(skip_serializing_if = "Option::is_none")] pub targets: Option<::std::collections::HashMap<String, String>>, /// <p>The name of the operation that is associated with the specified ID.</p> #[serde(rename = "Type")] #[serde(skip_serializing_if = "Option::is_none")] pub type_: Option<String>, /// <p>The date and time that the value of <code>Status</code> changed to the current value, in Unix date/time format and Coordinated Universal Time (UTC). The value of <code>UpdateDate</code> is accurate to milliseconds. For example, the value <code>1516925490.087</code> represents Friday, January 26, 2018 12:11:30.087 AM.</p> #[serde(rename = "UpdateDate")] #[serde(skip_serializing_if = "Option::is_none")] pub update_date: Option<f64>, } /// <p>A complex type that lets you select the operations that you want to list.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct OperationFilter { /// <p><p>The operator that you want to use to determine whether an operation matches the specified value. Valid values for condition include:</p> <ul> <li> <p> <code>EQ</code>: When you specify <code>EQ</code> for the condition, you can specify only one value. <code>EQ</code> is supported for <code>NAMESPACE<em>ID</code>, <code>SERVICE</em>ID</code>, <code>STATUS</code>, and <code>TYPE</code>. <code>EQ</code> is the default condition and can be omitted.</p> </li> <li> <p> <code>IN</code>: When you specify <code>IN</code> for the condition, you can specify a list of one or more values. <code>IN</code> is supported for <code>STATUS</code> and <code>TYPE</code>. An operation must match one of the specified values to be returned in the response.</p> </li> <li> <p> <code>BETWEEN</code>: Specify a start date and an end date in Unix date/time format and Coordinated Universal Time (UTC). The start date must be the first value. <code>BETWEEN</code> is supported for <code>UPDATE_DATE</code>. </p> </li> </ul></p> #[serde(rename = "Condition")] #[serde(skip_serializing_if = "Option::is_none")] pub condition: Option<String>, /// <p><p>Specify the operations that you want to get:</p> <ul> <li> <p> <b>NAMESPACE<em>ID</b>: Gets operations related to specified namespaces.</p> </li> <li> <p> <b>SERVICE</em>ID</b>: Gets operations related to specified services.</p> </li> <li> <p> <b>STATUS</b>: Gets operations based on the status of the operations: <code>SUBMITTED</code>, <code>PENDING</code>, <code>SUCCEED</code>, or <code>FAIL</code>.</p> </li> <li> <p> <b>TYPE</b>: Gets specified types of operation.</p> </li> <li> <p> <b>UPDATE_DATE</b>: Gets operations that changed status during a specified date/time range. </p> </li> </ul></p> #[serde(rename = "Name")] pub name: String, /// <p><p>Specify values that are applicable to the value that you specify for <code>Name</code>: </p> <ul> <li> <p> <b>NAMESPACE<em>ID</b>: Specify one namespace ID.</p> </li> <li> <p> <b>SERVICE</em>ID</b>: Specify one service ID.</p> </li> <li> <p> <b>STATUS</b>: Specify one or more statuses: <code>SUBMITTED</code>, <code>PENDING</code>, <code>SUCCEED</code>, or <code>FAIL</code>.</p> </li> <li> <p> <b>TYPE</b>: Specify one or more of the following types: <code>CREATE<em>NAMESPACE</code>, <code>DELETE</em>NAMESPACE</code>, <code>UPDATE<em>SERVICE</code>, <code>REGISTER</em>INSTANCE</code>, or <code>DEREGISTER<em>INSTANCE</code>.</p> </li> <li> <p> <b>UPDATE</em>DATE</b>: Specify a start date and an end date in Unix date/time format and Coordinated Universal Time (UTC). The start date must be the first value.</p> </li> </ul></p> #[serde(rename = "Values")] pub values: Vec<String>, } /// <p>A complex type that contains information about an operation that matches the criteria that you specified in a <a>ListOperations</a> request.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct OperationSummary { /// <p>The ID for an operation.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p><p>The status of the operation. Values include the following:</p> <ul> <li> <p> <b>SUBMITTED</b>: This is the initial state immediately after you submit a request.</p> </li> <li> <p> <b>PENDING</b>: AWS Cloud Map is performing the operation.</p> </li> <li> <p> <b>SUCCESS</b>: The operation succeeded.</p> </li> <li> <p> <b>FAIL</b>: The operation failed. For the failure reason, see <code>ErrorMessage</code>.</p> </li> </ul></p> #[serde(rename = "Status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct RegisterInstanceRequest { /// <p>A string map that contains the following information for the service that you specify in <code>ServiceId</code>:</p> <ul> <li> <p>The attributes that apply to the records that are defined in the service. </p> </li> <li> <p>For each attribute, the applicable value.</p> </li> </ul> <p>Supported attribute keys include the following:</p> <p> <b>AWS_ALIAS_DNS_NAME</b> </p> <p> <b/> </p> <p>If you want AWS Cloud Map to create an Amazon Route 53 alias record that routes traffic to an Elastic Load Balancing load balancer, specify the DNS name that is associated with the load balancer. For information about how to get the DNS name, see "DNSName" in the topic <a href="http://docs.aws.amazon.com/Route53/latest/APIReference/API_AliasTarget.html">AliasTarget</a> in the <i>Route 53 API Reference</i>.</p> <p>Note the following:</p> <ul> <li> <p>The configuration for the service that is specified by <code>ServiceId</code> must include settings for an A record, an AAAA record, or both.</p> </li> <li> <p>In the service that is specified by <code>ServiceId</code>, the value of <code>RoutingPolicy</code> must be <code>WEIGHTED</code>.</p> </li> <li> <p>If the service that is specified by <code>ServiceId</code> includes <code>HealthCheckConfig</code> settings, AWS Cloud Map will create the Route 53 health check, but it won't associate the health check with the alias record.</p> </li> <li> <p>Auto naming currently doesn't support creating alias records that route traffic to AWS resources other than ELB load balancers.</p> </li> <li> <p>If you specify a value for <code>AWS_ALIAS_DNS_NAME</code>, don't specify values for any of the <code>AWS_INSTANCE</code> attributes.</p> </li> </ul> <p> <b>AWS_INIT_HEALTH_STATUS</b> </p> <p>If the service configuration includes <code>HealthCheckCustomConfig</code>, you can optionally use <code>AWS_INIT_HEALTH_STATUS</code> to specify the initial status of the custom health check, <code>HEALTHY</code> or <code>UNHEALTHY</code>. If you don't specify a value for <code>AWS_INIT_HEALTH_STATUS</code>, the initial status is <code>HEALTHY</code>.</p> <p> <b>AWS_INSTANCE_CNAME</b> </p> <p>If the service configuration includes a CNAME record, the domain name that you want Route 53 to return in response to DNS queries, for example, <code>example.com</code>.</p> <p>This value is required if the service specified by <code>ServiceId</code> includes settings for an CNAME record.</p> <p> <b>AWS_INSTANCE_IPV4</b> </p> <p>If the service configuration includes an A record, the IPv4 address that you want Route 53 to return in response to DNS queries, for example, <code>192.0.2.44</code>.</p> <p>This value is required if the service specified by <code>ServiceId</code> includes settings for an A record. If the service includes settings for an SRV record, you must specify a value for <code>AWS_INSTANCE_IPV4</code>, <code>AWS_INSTANCE_IPV6</code>, or both.</p> <p> <b>AWS_INSTANCE_IPV6</b> </p> <p>If the service configuration includes an AAAA record, the IPv6 address that you want Route 53 to return in response to DNS queries, for example, <code>2001:0db8:85a3:0000:0000:abcd:0001:2345</code>.</p> <p>This value is required if the service specified by <code>ServiceId</code> includes settings for an AAAA record. If the service includes settings for an SRV record, you must specify a value for <code>AWS_INSTANCE_IPV4</code>, <code>AWS_INSTANCE_IPV6</code>, or both.</p> <p> <b>AWS_INSTANCE_PORT</b> </p> <p>If the service includes an SRV record, the value that you want Route 53 to return for the port.</p> <p>If the service includes <code>HealthCheckConfig</code>, the port on the endpoint that you want Route 53 to send requests to. </p> <p>This value is required if you specified settings for an SRV record when you created the service.</p> <p> <b>Custom attributes</b> </p> <p>You can add up to 30 custom attributes. For each key-value pair, the maximum length of the attribute name is 255 characters, and the maximum length of the attribute value is 1,024 characters. </p> #[serde(rename = "Attributes")] pub attributes: ::std::collections::HashMap<String, String>, /// <p>A unique string that identifies the request and that allows failed <code>RegisterInstance</code> requests to be retried without the risk of executing the operation twice. You must use a unique <code>CreatorRequestId</code> string every time you submit a <code>RegisterInstance</code> request if you're registering additional instances for the same namespace and service. <code>CreatorRequestId</code> can be any unique string, for example, a date/time stamp.</p> #[serde(rename = "CreatorRequestId")] #[serde(skip_serializing_if = "Option::is_none")] pub creator_request_id: Option<String>, /// <p><p>An identifier that you want to associate with the instance. Note the following:</p> <ul> <li> <p>If the service that is specified by <code>ServiceId</code> includes settings for an SRV record, the value of <code>InstanceId</code> is automatically included as part of the value for the SRV record. For more information, see <a>DnsRecord$Type</a>.</p> </li> <li> <p>You can use this value to update an existing instance.</p> </li> <li> <p>To register a new instance, you must specify a value that is unique among instances that you register by using the same service. </p> </li> <li> <p>If you specify an existing <code>InstanceId</code> and <code>ServiceId</code>, AWS Cloud Map updates the existing DNS records, if any. If there's also an existing health check, AWS Cloud Map deletes the old health check and creates a new one. </p> <note> <p>The health check isn't deleted immediately, so it will still appear for a while if you submit a <code>ListHealthChecks</code> request, for example.</p> </note> </li> </ul></p> #[serde(rename = "InstanceId")] pub instance_id: String, /// <p>The ID of the service that you want to use for settings for the instance.</p> #[serde(rename = "ServiceId")] pub service_id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct RegisterInstanceResponse { /// <p>A value that you can use to determine whether the request completed successfully. To get the status of the operation, see <a>GetOperation</a>.</p> #[serde(rename = "OperationId")] #[serde(skip_serializing_if = "Option::is_none")] pub operation_id: Option<String>, } /// <p>A complex type that contains information about the specified service.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Service { /// <p>The Amazon Resource Name (ARN) that AWS Cloud Map assigns to the service when you create it.</p> #[serde(rename = "Arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p>The date and time that the service was created, in Unix format and Coordinated Universal Time (UTC). The value of <code>CreateDate</code> is accurate to milliseconds. For example, the value <code>1516925490.087</code> represents Friday, January 26, 2018 12:11:30.087 AM.</p> #[serde(rename = "CreateDate")] #[serde(skip_serializing_if = "Option::is_none")] pub create_date: Option<f64>, /// <p>A unique string that identifies the request and that allows failed requests to be retried without the risk of executing the operation twice. <code>CreatorRequestId</code> can be any unique string, for example, a date/time stamp.</p> #[serde(rename = "CreatorRequestId")] #[serde(skip_serializing_if = "Option::is_none")] pub creator_request_id: Option<String>, /// <p>The description of the service.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>A complex type that contains information about the Route 53 DNS records that you want AWS Cloud Map to create when you register an instance.</p> #[serde(rename = "DnsConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub dns_config: Option<DnsConfig>, /// <p> <i>Public DNS namespaces only.</i> A complex type that contains settings for an optional health check. If you specify settings for a health check, AWS Cloud Map associates the health check with the records that you specify in <code>DnsConfig</code>.</p> <p>For information about the charges for health checks, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p> #[serde(rename = "HealthCheckConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub health_check_config: Option<HealthCheckConfig>, /// <p><p>A complex type that contains information about an optional custom health check.</p> <important> <p>If you specify a health check configuration, you can specify either <code>HealthCheckCustomConfig</code> or <code>HealthCheckConfig</code> but not both.</p> </important></p> #[serde(rename = "HealthCheckCustomConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub health_check_custom_config: Option<HealthCheckCustomConfig>, /// <p>The ID that AWS Cloud Map assigned to the service when you created it.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p>The number of instances that are currently associated with the service. Instances that were previously associated with the service but that have been deleted are not included in the count.</p> #[serde(rename = "InstanceCount")] #[serde(skip_serializing_if = "Option::is_none")] pub instance_count: Option<i64>, /// <p>The name of the service.</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>The ID of the namespace that was used to create the service.</p> #[serde(rename = "NamespaceId")] #[serde(skip_serializing_if = "Option::is_none")] pub namespace_id: Option<String>, } /// <p>A complex type that contains changes to an existing service.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ServiceChange { /// <p>A description for the service.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>A complex type that contains information about the Route 53 DNS records that you want AWS Cloud Map to create when you register an instance.</p> #[serde(rename = "DnsConfig")] pub dns_config: DnsConfigChange, #[serde(rename = "HealthCheckConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub health_check_config: Option<HealthCheckConfig>, } /// <p>A complex type that lets you specify the namespaces that you want to list services for.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ServiceFilter { /// <p><p>The operator that you want to use to determine whether a service is returned by <code>ListServices</code>. Valid values for <code>Condition</code> include the following:</p> <ul> <li> <p> <code>EQ</code>: When you specify <code>EQ</code>, specify one namespace ID for <code>Values</code>. <code>EQ</code> is the default condition and can be omitted.</p> </li> <li> <p> <code>IN</code>: When you specify <code>IN</code>, specify a list of the IDs for the namespaces that you want <code>ListServices</code> to return a list of services for.</p> </li> <li> <p> <code>BETWEEN</code>: Not applicable.</p> </li> </ul></p> #[serde(rename = "Condition")] #[serde(skip_serializing_if = "Option::is_none")] pub condition: Option<String>, /// <p>Specify <code>NAMESPACE_ID</code>.</p> #[serde(rename = "Name")] pub name: String, /// <p>The values that are applicable to the value that you specify for <code>Condition</code> to filter the list of services.</p> #[serde(rename = "Values")] pub values: Vec<String>, } /// <p>A complex type that contains information about a specified service.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ServiceSummary { /// <p>The Amazon Resource Name (ARN) that AWS Cloud Map assigns to the service when you create it.</p> #[serde(rename = "Arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p>The date and time that the service was created.</p> #[serde(rename = "CreateDate")] #[serde(skip_serializing_if = "Option::is_none")] pub create_date: Option<f64>, /// <p>The description that you specify when you create the service.</p> #[serde(rename = "Description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, #[serde(rename = "DnsConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub dns_config: Option<DnsConfig>, #[serde(rename = "HealthCheckConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub health_check_config: Option<HealthCheckConfig>, #[serde(rename = "HealthCheckCustomConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub health_check_custom_config: Option<HealthCheckCustomConfig>, /// <p>The ID that AWS Cloud Map assigned to the service when you created it.</p> #[serde(rename = "Id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p>The number of instances that are currently associated with the service. Instances that were previously associated with the service but that have been deleted are not included in the count.</p> #[serde(rename = "InstanceCount")] #[serde(skip_serializing_if = "Option::is_none")] pub instance_count: Option<i64>, /// <p>The name of the service.</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UpdateInstanceCustomHealthStatusRequest { /// <p>The ID of the instance that you want to change the health status for.</p> #[serde(rename = "InstanceId")] pub instance_id: String, /// <p>The ID of the service that includes the configuration for the custom health check that you want to change the status for.</p> #[serde(rename = "ServiceId")] pub service_id: String, /// <p>The new status of the instance, <code>HEALTHY</code> or <code>UNHEALTHY</code>.</p> #[serde(rename = "Status")] pub status: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UpdateServiceRequest { /// <p>The ID of the service that you want to update.</p> #[serde(rename = "Id")] pub id: String, /// <p>A complex type that contains the new settings for the service.</p> #[serde(rename = "Service")] pub service: ServiceChange, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UpdateServiceResponse { /// <p>A value that you can use to determine whether the request completed successfully. To get the status of the operation, see <a>GetOperation</a>.</p> #[serde(rename = "OperationId")] #[serde(skip_serializing_if = "Option::is_none")] pub operation_id: Option<String>, } /// Errors returned by CreateHttpNamespace #[derive(Debug, PartialEq)] pub enum CreateHttpNamespaceError { /// <p>The operation is already in progress.</p> DuplicateRequest(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>The namespace that you're trying to create already exists.</p> NamespaceAlreadyExists(String), /// <p>The resource can't be created because you've reached the limit on the number of resources.</p> ResourceLimitExceeded(String), } impl CreateHttpNamespaceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateHttpNamespaceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "DuplicateRequest" => { return RusotoError::Service(CreateHttpNamespaceError::DuplicateRequest( err.msg, )) } "InvalidInput" => { return RusotoError::Service(CreateHttpNamespaceError::InvalidInput(err.msg)) } "NamespaceAlreadyExists" => { return RusotoError::Service(CreateHttpNamespaceError::NamespaceAlreadyExists( err.msg, )) } "ResourceLimitExceeded" => { return RusotoError::Service(CreateHttpNamespaceError::ResourceLimitExceeded( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateHttpNamespaceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateHttpNamespaceError { fn description(&self) -> &str { match *self { CreateHttpNamespaceError::DuplicateRequest(ref cause) => cause, CreateHttpNamespaceError::InvalidInput(ref cause) => cause, CreateHttpNamespaceError::NamespaceAlreadyExists(ref cause) => cause, CreateHttpNamespaceError::ResourceLimitExceeded(ref cause) => cause, } } } /// Errors returned by CreatePrivateDnsNamespace #[derive(Debug, PartialEq)] pub enum CreatePrivateDnsNamespaceError { /// <p>The operation is already in progress.</p> DuplicateRequest(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>The namespace that you're trying to create already exists.</p> NamespaceAlreadyExists(String), /// <p>The resource can't be created because you've reached the limit on the number of resources.</p> ResourceLimitExceeded(String), } impl CreatePrivateDnsNamespaceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreatePrivateDnsNamespaceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "DuplicateRequest" => { return RusotoError::Service(CreatePrivateDnsNamespaceError::DuplicateRequest( err.msg, )) } "InvalidInput" => { return RusotoError::Service(CreatePrivateDnsNamespaceError::InvalidInput( err.msg, )) } "NamespaceAlreadyExists" => { return RusotoError::Service( CreatePrivateDnsNamespaceError::NamespaceAlreadyExists(err.msg), ) } "ResourceLimitExceeded" => { return RusotoError::Service( CreatePrivateDnsNamespaceError::ResourceLimitExceeded(err.msg), ) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreatePrivateDnsNamespaceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreatePrivateDnsNamespaceError { fn description(&self) -> &str { match *self { CreatePrivateDnsNamespaceError::DuplicateRequest(ref cause) => cause, CreatePrivateDnsNamespaceError::InvalidInput(ref cause) => cause, CreatePrivateDnsNamespaceError::NamespaceAlreadyExists(ref cause) => cause, CreatePrivateDnsNamespaceError::ResourceLimitExceeded(ref cause) => cause, } } } /// Errors returned by CreatePublicDnsNamespace #[derive(Debug, PartialEq)] pub enum CreatePublicDnsNamespaceError { /// <p>The operation is already in progress.</p> DuplicateRequest(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>The namespace that you're trying to create already exists.</p> NamespaceAlreadyExists(String), /// <p>The resource can't be created because you've reached the limit on the number of resources.</p> ResourceLimitExceeded(String), } impl CreatePublicDnsNamespaceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreatePublicDnsNamespaceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "DuplicateRequest" => { return RusotoError::Service(CreatePublicDnsNamespaceError::DuplicateRequest( err.msg, )) } "InvalidInput" => { return RusotoError::Service(CreatePublicDnsNamespaceError::InvalidInput( err.msg, )) } "NamespaceAlreadyExists" => { return RusotoError::Service( CreatePublicDnsNamespaceError::NamespaceAlreadyExists(err.msg), ) } "ResourceLimitExceeded" => { return RusotoError::Service( CreatePublicDnsNamespaceError::ResourceLimitExceeded(err.msg), ) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreatePublicDnsNamespaceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreatePublicDnsNamespaceError { fn description(&self) -> &str { match *self { CreatePublicDnsNamespaceError::DuplicateRequest(ref cause) => cause, CreatePublicDnsNamespaceError::InvalidInput(ref cause) => cause, CreatePublicDnsNamespaceError::NamespaceAlreadyExists(ref cause) => cause, CreatePublicDnsNamespaceError::ResourceLimitExceeded(ref cause) => cause, } } } /// Errors returned by CreateService #[derive(Debug, PartialEq)] pub enum CreateServiceError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No namespace exists with the specified ID.</p> NamespaceNotFound(String), /// <p>The resource can't be created because you've reached the limit on the number of resources.</p> ResourceLimitExceeded(String), /// <p>The service can't be created because a service with the same name already exists.</p> ServiceAlreadyExists(String), } impl CreateServiceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateServiceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(CreateServiceError::InvalidInput(err.msg)) } "NamespaceNotFound" => { return RusotoError::Service(CreateServiceError::NamespaceNotFound(err.msg)) } "ResourceLimitExceeded" => { return RusotoError::Service(CreateServiceError::ResourceLimitExceeded(err.msg)) } "ServiceAlreadyExists" => { return RusotoError::Service(CreateServiceError::ServiceAlreadyExists(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateServiceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateServiceError { fn description(&self) -> &str { match *self { CreateServiceError::InvalidInput(ref cause) => cause, CreateServiceError::NamespaceNotFound(ref cause) => cause, CreateServiceError::ResourceLimitExceeded(ref cause) => cause, CreateServiceError::ServiceAlreadyExists(ref cause) => cause, } } } /// Errors returned by DeleteNamespace #[derive(Debug, PartialEq)] pub enum DeleteNamespaceError { /// <p>The operation is already in progress.</p> DuplicateRequest(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No namespace exists with the specified ID.</p> NamespaceNotFound(String), /// <p>The specified resource can't be deleted because it contains other resources. For example, you can't delete a service that contains any instances.</p> ResourceInUse(String), } impl DeleteNamespaceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteNamespaceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "DuplicateRequest" => { return RusotoError::Service(DeleteNamespaceError::DuplicateRequest(err.msg)) } "InvalidInput" => { return RusotoError::Service(DeleteNamespaceError::InvalidInput(err.msg)) } "NamespaceNotFound" => { return RusotoError::Service(DeleteNamespaceError::NamespaceNotFound(err.msg)) } "ResourceInUse" => { return RusotoError::Service(DeleteNamespaceError::ResourceInUse(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteNamespaceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteNamespaceError { fn description(&self) -> &str { match *self { DeleteNamespaceError::DuplicateRequest(ref cause) => cause, DeleteNamespaceError::InvalidInput(ref cause) => cause, DeleteNamespaceError::NamespaceNotFound(ref cause) => cause, DeleteNamespaceError::ResourceInUse(ref cause) => cause, } } } /// Errors returned by DeleteService #[derive(Debug, PartialEq)] pub enum DeleteServiceError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>The specified resource can't be deleted because it contains other resources. For example, you can't delete a service that contains any instances.</p> ResourceInUse(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl DeleteServiceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteServiceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(DeleteServiceError::InvalidInput(err.msg)) } "ResourceInUse" => { return RusotoError::Service(DeleteServiceError::ResourceInUse(err.msg)) } "ServiceNotFound" => { return RusotoError::Service(DeleteServiceError::ServiceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteServiceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteServiceError { fn description(&self) -> &str { match *self { DeleteServiceError::InvalidInput(ref cause) => cause, DeleteServiceError::ResourceInUse(ref cause) => cause, DeleteServiceError::ServiceNotFound(ref cause) => cause, } } } /// Errors returned by DeregisterInstance #[derive(Debug, PartialEq)] pub enum DeregisterInstanceError { /// <p>The operation is already in progress.</p> DuplicateRequest(String), /// <p>No instance exists with the specified ID, or the instance was recently registered, and information about the instance hasn't propagated yet.</p> InstanceNotFound(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>The specified resource can't be deleted because it contains other resources. For example, you can't delete a service that contains any instances.</p> ResourceInUse(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl DeregisterInstanceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeregisterInstanceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "DuplicateRequest" => { return RusotoError::Service(DeregisterInstanceError::DuplicateRequest(err.msg)) } "InstanceNotFound" => { return RusotoError::Service(DeregisterInstanceError::InstanceNotFound(err.msg)) } "InvalidInput" => { return RusotoError::Service(DeregisterInstanceError::InvalidInput(err.msg)) } "ResourceInUse" => { return RusotoError::Service(DeregisterInstanceError::ResourceInUse(err.msg)) } "ServiceNotFound" => { return RusotoError::Service(DeregisterInstanceError::ServiceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeregisterInstanceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeregisterInstanceError { fn description(&self) -> &str { match *self { DeregisterInstanceError::DuplicateRequest(ref cause) => cause, DeregisterInstanceError::InstanceNotFound(ref cause) => cause, DeregisterInstanceError::InvalidInput(ref cause) => cause, DeregisterInstanceError::ResourceInUse(ref cause) => cause, DeregisterInstanceError::ServiceNotFound(ref cause) => cause, } } } /// Errors returned by DiscoverInstances #[derive(Debug, PartialEq)] pub enum DiscoverInstancesError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No namespace exists with the specified ID.</p> NamespaceNotFound(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl DiscoverInstancesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DiscoverInstancesError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(DiscoverInstancesError::InvalidInput(err.msg)) } "NamespaceNotFound" => { return RusotoError::Service(DiscoverInstancesError::NamespaceNotFound(err.msg)) } "ServiceNotFound" => { return RusotoError::Service(DiscoverInstancesError::ServiceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DiscoverInstancesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DiscoverInstancesError { fn description(&self) -> &str { match *self { DiscoverInstancesError::InvalidInput(ref cause) => cause, DiscoverInstancesError::NamespaceNotFound(ref cause) => cause, DiscoverInstancesError::ServiceNotFound(ref cause) => cause, } } } /// Errors returned by GetInstance #[derive(Debug, PartialEq)] pub enum GetInstanceError { /// <p>No instance exists with the specified ID, or the instance was recently registered, and information about the instance hasn't propagated yet.</p> InstanceNotFound(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl GetInstanceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetInstanceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InstanceNotFound" => { return RusotoError::Service(GetInstanceError::InstanceNotFound(err.msg)) } "InvalidInput" => { return RusotoError::Service(GetInstanceError::InvalidInput(err.msg)) } "ServiceNotFound" => { return RusotoError::Service(GetInstanceError::ServiceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetInstanceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetInstanceError { fn description(&self) -> &str { match *self { GetInstanceError::InstanceNotFound(ref cause) => cause, GetInstanceError::InvalidInput(ref cause) => cause, GetInstanceError::ServiceNotFound(ref cause) => cause, } } } /// Errors returned by GetInstancesHealthStatus #[derive(Debug, PartialEq)] pub enum GetInstancesHealthStatusError { /// <p>No instance exists with the specified ID, or the instance was recently registered, and information about the instance hasn't propagated yet.</p> InstanceNotFound(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl GetInstancesHealthStatusError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetInstancesHealthStatusError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InstanceNotFound" => { return RusotoError::Service(GetInstancesHealthStatusError::InstanceNotFound( err.msg, )) } "InvalidInput" => { return RusotoError::Service(GetInstancesHealthStatusError::InvalidInput( err.msg, )) } "ServiceNotFound" => { return RusotoError::Service(GetInstancesHealthStatusError::ServiceNotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetInstancesHealthStatusError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetInstancesHealthStatusError { fn description(&self) -> &str { match *self { GetInstancesHealthStatusError::InstanceNotFound(ref cause) => cause, GetInstancesHealthStatusError::InvalidInput(ref cause) => cause, GetInstancesHealthStatusError::ServiceNotFound(ref cause) => cause, } } } /// Errors returned by GetNamespace #[derive(Debug, PartialEq)] pub enum GetNamespaceError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No namespace exists with the specified ID.</p> NamespaceNotFound(String), } impl GetNamespaceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetNamespaceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(GetNamespaceError::InvalidInput(err.msg)) } "NamespaceNotFound" => { return RusotoError::Service(GetNamespaceError::NamespaceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetNamespaceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetNamespaceError { fn description(&self) -> &str { match *self { GetNamespaceError::InvalidInput(ref cause) => cause, GetNamespaceError::NamespaceNotFound(ref cause) => cause, } } } /// Errors returned by GetOperation #[derive(Debug, PartialEq)] pub enum GetOperationError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No operation exists with the specified ID.</p> OperationNotFound(String), } impl GetOperationError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetOperationError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(GetOperationError::InvalidInput(err.msg)) } "OperationNotFound" => { return RusotoError::Service(GetOperationError::OperationNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetOperationError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetOperationError { fn description(&self) -> &str { match *self { GetOperationError::InvalidInput(ref cause) => cause, GetOperationError::OperationNotFound(ref cause) => cause, } } } /// Errors returned by GetService #[derive(Debug, PartialEq)] pub enum GetServiceError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl GetServiceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetServiceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(GetServiceError::InvalidInput(err.msg)) } "ServiceNotFound" => { return RusotoError::Service(GetServiceError::ServiceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetServiceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetServiceError { fn description(&self) -> &str { match *self { GetServiceError::InvalidInput(ref cause) => cause, GetServiceError::ServiceNotFound(ref cause) => cause, } } } /// Errors returned by ListInstances #[derive(Debug, PartialEq)] pub enum ListInstancesError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl ListInstancesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListInstancesError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(ListInstancesError::InvalidInput(err.msg)) } "ServiceNotFound" => { return RusotoError::Service(ListInstancesError::ServiceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListInstancesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListInstancesError { fn description(&self) -> &str { match *self { ListInstancesError::InvalidInput(ref cause) => cause, ListInstancesError::ServiceNotFound(ref cause) => cause, } } } /// Errors returned by ListNamespaces #[derive(Debug, PartialEq)] pub enum ListNamespacesError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), } impl ListNamespacesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListNamespacesError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(ListNamespacesError::InvalidInput(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListNamespacesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListNamespacesError { fn description(&self) -> &str { match *self { ListNamespacesError::InvalidInput(ref cause) => cause, } } } /// Errors returned by ListOperations #[derive(Debug, PartialEq)] pub enum ListOperationsError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), } impl ListOperationsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListOperationsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(ListOperationsError::InvalidInput(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListOperationsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListOperationsError { fn description(&self) -> &str { match *self { ListOperationsError::InvalidInput(ref cause) => cause, } } } /// Errors returned by ListServices #[derive(Debug, PartialEq)] pub enum ListServicesError { /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), } impl ListServicesError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListServicesError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInput" => { return RusotoError::Service(ListServicesError::InvalidInput(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListServicesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListServicesError { fn description(&self) -> &str { match *self { ListServicesError::InvalidInput(ref cause) => cause, } } } /// Errors returned by RegisterInstance #[derive(Debug, PartialEq)] pub enum RegisterInstanceError { /// <p>The operation is already in progress.</p> DuplicateRequest(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>The specified resource can't be deleted because it contains other resources. For example, you can't delete a service that contains any instances.</p> ResourceInUse(String), /// <p>The resource can't be created because you've reached the limit on the number of resources.</p> ResourceLimitExceeded(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl RegisterInstanceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<RegisterInstanceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "DuplicateRequest" => { return RusotoError::Service(RegisterInstanceError::DuplicateRequest(err.msg)) } "InvalidInput" => { return RusotoError::Service(RegisterInstanceError::InvalidInput(err.msg)) } "ResourceInUse" => { return RusotoError::Service(RegisterInstanceError::ResourceInUse(err.msg)) } "ResourceLimitExceeded" => { return RusotoError::Service(RegisterInstanceError::ResourceLimitExceeded( err.msg, )) } "ServiceNotFound" => { return RusotoError::Service(RegisterInstanceError::ServiceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for RegisterInstanceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for RegisterInstanceError { fn description(&self) -> &str { match *self { RegisterInstanceError::DuplicateRequest(ref cause) => cause, RegisterInstanceError::InvalidInput(ref cause) => cause, RegisterInstanceError::ResourceInUse(ref cause) => cause, RegisterInstanceError::ResourceLimitExceeded(ref cause) => cause, RegisterInstanceError::ServiceNotFound(ref cause) => cause, } } } /// Errors returned by UpdateInstanceCustomHealthStatus #[derive(Debug, PartialEq)] pub enum UpdateInstanceCustomHealthStatusError { /// <p>The health check for the instance that is specified by <code>ServiceId</code> and <code>InstanceId</code> is not a custom health check. </p> CustomHealthNotFound(String), /// <p>No instance exists with the specified ID, or the instance was recently registered, and information about the instance hasn't propagated yet.</p> InstanceNotFound(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl UpdateInstanceCustomHealthStatusError { pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateInstanceCustomHealthStatusError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "CustomHealthNotFound" => { return RusotoError::Service( UpdateInstanceCustomHealthStatusError::CustomHealthNotFound(err.msg), ) } "InstanceNotFound" => { return RusotoError::Service( UpdateInstanceCustomHealthStatusError::InstanceNotFound(err.msg), ) } "InvalidInput" => { return RusotoError::Service( UpdateInstanceCustomHealthStatusError::InvalidInput(err.msg), ) } "ServiceNotFound" => { return RusotoError::Service( UpdateInstanceCustomHealthStatusError::ServiceNotFound(err.msg), ) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UpdateInstanceCustomHealthStatusError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UpdateInstanceCustomHealthStatusError { fn description(&self) -> &str { match *self { UpdateInstanceCustomHealthStatusError::CustomHealthNotFound(ref cause) => cause, UpdateInstanceCustomHealthStatusError::InstanceNotFound(ref cause) => cause, UpdateInstanceCustomHealthStatusError::InvalidInput(ref cause) => cause, UpdateInstanceCustomHealthStatusError::ServiceNotFound(ref cause) => cause, } } } /// Errors returned by UpdateService #[derive(Debug, PartialEq)] pub enum UpdateServiceError { /// <p>The operation is already in progress.</p> DuplicateRequest(String), /// <p>One or more specified values aren't valid. For example, a required value might be missing, a numeric value might be outside the allowed range, or a string value might exceed length constraints.</p> InvalidInput(String), /// <p>No service exists with the specified ID.</p> ServiceNotFound(String), } impl UpdateServiceError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateServiceError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "DuplicateRequest" => { return RusotoError::Service(UpdateServiceError::DuplicateRequest(err.msg)) } "InvalidInput" => { return RusotoError::Service(UpdateServiceError::InvalidInput(err.msg)) } "ServiceNotFound" => { return RusotoError::Service(UpdateServiceError::ServiceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UpdateServiceError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UpdateServiceError { fn description(&self) -> &str { match *self { UpdateServiceError::DuplicateRequest(ref cause) => cause, UpdateServiceError::InvalidInput(ref cause) => cause, UpdateServiceError::ServiceNotFound(ref cause) => cause, } } } /// Trait representing the capabilities of the ServiceDiscovery API. ServiceDiscovery clients implement this trait. pub trait ServiceDiscovery { /// <p>Creates an HTTP namespace. Service instances that you register using an HTTP namespace can be discovered using a <code>DiscoverInstances</code> request but can't be discovered using DNS. </p> <p>For the current limit on the number of namespaces that you can create using the same AWS account, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn create_http_namespace( &self, input: CreateHttpNamespaceRequest, ) -> RusotoFuture<CreateHttpNamespaceResponse, CreateHttpNamespaceError>; /// <p>Creates a private namespace based on DNS, which will be visible only inside a specified Amazon VPC. The namespace defines your service naming scheme. For example, if you name your namespace <code>example.com</code> and name your service <code>backend</code>, the resulting DNS name for the service will be <code>backend.example.com</code>. For the current limit on the number of namespaces that you can create using the same AWS account, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn create_private_dns_namespace( &self, input: CreatePrivateDnsNamespaceRequest, ) -> RusotoFuture<CreatePrivateDnsNamespaceResponse, CreatePrivateDnsNamespaceError>; /// <p>Creates a public namespace based on DNS, which will be visible on the internet. The namespace defines your service naming scheme. For example, if you name your namespace <code>example.com</code> and name your service <code>backend</code>, the resulting DNS name for the service will be <code>backend.example.com</code>. For the current limit on the number of namespaces that you can create using the same AWS account, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn create_public_dns_namespace( &self, input: CreatePublicDnsNamespaceRequest, ) -> RusotoFuture<CreatePublicDnsNamespaceResponse, CreatePublicDnsNamespaceError>; /// <p>Creates a service, which defines the configuration for the following entities:</p> <ul> <li> <p>For public and private DNS namespaces, one of the following combinations of DNS records in Amazon Route 53:</p> <ul> <li> <p>A</p> </li> <li> <p>AAAA</p> </li> <li> <p>A and AAAA</p> </li> <li> <p>SRV</p> </li> <li> <p>CNAME</p> </li> </ul> </li> <li> <p>Optionally, a health check</p> </li> </ul> <p>After you create the service, you can submit a <a>RegisterInstance</a> request, and AWS Cloud Map uses the values in the configuration to create the specified entities.</p> <p>For the current limit on the number of instances that you can register using the same namespace and using the same service, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn create_service( &self, input: CreateServiceRequest, ) -> RusotoFuture<CreateServiceResponse, CreateServiceError>; /// <p>Deletes a namespace from the current account. If the namespace still contains one or more services, the request fails.</p> fn delete_namespace( &self, input: DeleteNamespaceRequest, ) -> RusotoFuture<DeleteNamespaceResponse, DeleteNamespaceError>; /// <p>Deletes a specified service. If the service still contains one or more registered instances, the request fails.</p> fn delete_service( &self, input: DeleteServiceRequest, ) -> RusotoFuture<DeleteServiceResponse, DeleteServiceError>; /// <p>Deletes the Amazon Route 53 DNS records and health check, if any, that AWS Cloud Map created for the specified instance.</p> fn deregister_instance( &self, input: DeregisterInstanceRequest, ) -> RusotoFuture<DeregisterInstanceResponse, DeregisterInstanceError>; /// <p>Discovers registered instances for a specified namespace and service.</p> fn discover_instances( &self, input: DiscoverInstancesRequest, ) -> RusotoFuture<DiscoverInstancesResponse, DiscoverInstancesError>; /// <p>Gets information about a specified instance.</p> fn get_instance( &self, input: GetInstanceRequest, ) -> RusotoFuture<GetInstanceResponse, GetInstanceError>; /// <p><p>Gets the current health status (<code>Healthy</code>, <code>Unhealthy</code>, or <code>Unknown</code>) of one or more instances that are associated with a specified service.</p> <note> <p>There is a brief delay between when you register an instance and when the health status for the instance is available. </p> </note></p> fn get_instances_health_status( &self, input: GetInstancesHealthStatusRequest, ) -> RusotoFuture<GetInstancesHealthStatusResponse, GetInstancesHealthStatusError>; /// <p>Gets information about a namespace.</p> fn get_namespace( &self, input: GetNamespaceRequest, ) -> RusotoFuture<GetNamespaceResponse, GetNamespaceError>; /// <p><p>Gets information about any operation that returns an operation ID in the response, such as a <code>CreateService</code> request.</p> <note> <p>To get a list of operations that match specified criteria, see <a>ListOperations</a>.</p> </note></p> fn get_operation( &self, input: GetOperationRequest, ) -> RusotoFuture<GetOperationResponse, GetOperationError>; /// <p>Gets the settings for a specified service.</p> fn get_service( &self, input: GetServiceRequest, ) -> RusotoFuture<GetServiceResponse, GetServiceError>; /// <p>Lists summary information about the instances that you registered by using a specified service.</p> fn list_instances( &self, input: ListInstancesRequest, ) -> RusotoFuture<ListInstancesResponse, ListInstancesError>; /// <p>Lists summary information about the namespaces that were created by the current AWS account.</p> fn list_namespaces( &self, input: ListNamespacesRequest, ) -> RusotoFuture<ListNamespacesResponse, ListNamespacesError>; /// <p>Lists operations that match the criteria that you specify.</p> fn list_operations( &self, input: ListOperationsRequest, ) -> RusotoFuture<ListOperationsResponse, ListOperationsError>; /// <p>Lists summary information for all the services that are associated with one or more specified namespaces.</p> fn list_services( &self, input: ListServicesRequest, ) -> RusotoFuture<ListServicesResponse, ListServicesError>; /// <p>Creates or updates one or more records and, optionally, creates a health check based on the settings in a specified service. When you submit a <code>RegisterInstance</code> request, the following occurs:</p> <ul> <li> <p>For each DNS record that you define in the service that is specified by <code>ServiceId</code>, a record is created or updated in the hosted zone that is associated with the corresponding namespace.</p> </li> <li> <p>If the service includes <code>HealthCheckConfig</code>, a health check is created based on the settings in the health check configuration.</p> </li> <li> <p>The health check, if any, is associated with each of the new or updated records.</p> </li> </ul> <important> <p>One <code>RegisterInstance</code> request must complete before you can submit another request and specify the same service ID and instance ID.</p> </important> <p>For more information, see <a>CreateService</a>.</p> <p>When AWS Cloud Map receives a DNS query for the specified DNS name, it returns the applicable value:</p> <ul> <li> <p> <b>If the health check is healthy</b>: returns all the records</p> </li> <li> <p> <b>If the health check is unhealthy</b>: returns the applicable value for the last healthy instance</p> </li> <li> <p> <b>If you didn't specify a health check configuration</b>: returns all the records</p> </li> </ul> <p>For the current limit on the number of instances that you can register using the same namespace and using the same service, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn register_instance( &self, input: RegisterInstanceRequest, ) -> RusotoFuture<RegisterInstanceResponse, RegisterInstanceError>; /// <p>Submits a request to change the health status of a custom health check to healthy or unhealthy.</p> <p>You can use <code>UpdateInstanceCustomHealthStatus</code> to change the status only for custom health checks, which you define using <code>HealthCheckCustomConfig</code> when you create a service. You can't use it to change the status for Route 53 health checks, which you define using <code>HealthCheckConfig</code>.</p> <p>For more information, see <a>HealthCheckCustomConfig</a>.</p> fn update_instance_custom_health_status( &self, input: UpdateInstanceCustomHealthStatusRequest, ) -> RusotoFuture<(), UpdateInstanceCustomHealthStatusError>; /// <p>Submits a request to perform the following operations:</p> <ul> <li> <p>Add or delete <code>DnsRecords</code> configurations</p> </li> <li> <p>Update the TTL setting for existing <code>DnsRecords</code> configurations</p> </li> <li> <p>Add, update, or delete <code>HealthCheckConfig</code> for a specified service</p> </li> </ul> <p>For public and private DNS namespaces, you must specify all <code>DnsRecords</code> configurations (and, optionally, <code>HealthCheckConfig</code>) that you want to appear in the updated service. Any current configurations that don't appear in an <code>UpdateService</code> request are deleted.</p> <p>When you update the TTL setting for a service, AWS Cloud Map also updates the corresponding settings in all the records and health checks that were created by using the specified service.</p> fn update_service( &self, input: UpdateServiceRequest, ) -> RusotoFuture<UpdateServiceResponse, UpdateServiceError>; } /// A client for the ServiceDiscovery API. #[derive(Clone)] pub struct ServiceDiscoveryClient { client: Client, region: region::Region, } impl ServiceDiscoveryClient { /// Creates a client backed by the default tokio event loop. /// /// The client will use the default credentials provider and tls client. pub fn new(region: region::Region) -> ServiceDiscoveryClient { ServiceDiscoveryClient { client: Client::shared(), region, } } pub fn new_with<P, D>( request_dispatcher: D, credentials_provider: P, region: region::Region, ) -> ServiceDiscoveryClient where P: ProvideAwsCredentials + Send + Sync + 'static, P::Future: Send, D: DispatchSignedRequest + Send + Sync + 'static, D::Future: Send, { ServiceDiscoveryClient { client: Client::new_with(credentials_provider, request_dispatcher), region, } } } impl ServiceDiscovery for ServiceDiscoveryClient { /// <p>Creates an HTTP namespace. Service instances that you register using an HTTP namespace can be discovered using a <code>DiscoverInstances</code> request but can't be discovered using DNS. </p> <p>For the current limit on the number of namespaces that you can create using the same AWS account, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn create_http_namespace( &self, input: CreateHttpNamespaceRequest, ) -> RusotoFuture<CreateHttpNamespaceResponse, CreateHttpNamespaceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Route53AutoNaming_v20170314.CreateHttpNamespace", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<CreateHttpNamespaceResponse, _>() })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(CreateHttpNamespaceError::from_response(response)) }), ) } }) } /// <p>Creates a private namespace based on DNS, which will be visible only inside a specified Amazon VPC. The namespace defines your service naming scheme. For example, if you name your namespace <code>example.com</code> and name your service <code>backend</code>, the resulting DNS name for the service will be <code>backend.example.com</code>. For the current limit on the number of namespaces that you can create using the same AWS account, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn create_private_dns_namespace( &self, input: CreatePrivateDnsNamespaceRequest, ) -> RusotoFuture<CreatePrivateDnsNamespaceResponse, CreatePrivateDnsNamespaceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Route53AutoNaming_v20170314.CreatePrivateDnsNamespace", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<CreatePrivateDnsNamespaceResponse, _>() })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(CreatePrivateDnsNamespaceError::from_response(response)) })) } }) } /// <p>Creates a public namespace based on DNS, which will be visible on the internet. The namespace defines your service naming scheme. For example, if you name your namespace <code>example.com</code> and name your service <code>backend</code>, the resulting DNS name for the service will be <code>backend.example.com</code>. For the current limit on the number of namespaces that you can create using the same AWS account, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn create_public_dns_namespace( &self, input: CreatePublicDnsNamespaceRequest, ) -> RusotoFuture<CreatePublicDnsNamespaceResponse, CreatePublicDnsNamespaceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Route53AutoNaming_v20170314.CreatePublicDnsNamespace", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<CreatePublicDnsNamespaceResponse, _>() })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(CreatePublicDnsNamespaceError::from_response(response)) })) } }) } /// <p>Creates a service, which defines the configuration for the following entities:</p> <ul> <li> <p>For public and private DNS namespaces, one of the following combinations of DNS records in Amazon Route 53:</p> <ul> <li> <p>A</p> </li> <li> <p>AAAA</p> </li> <li> <p>A and AAAA</p> </li> <li> <p>SRV</p> </li> <li> <p>CNAME</p> </li> </ul> </li> <li> <p>Optionally, a health check</p> </li> </ul> <p>After you create the service, you can submit a <a>RegisterInstance</a> request, and AWS Cloud Map uses the values in the configuration to create the specified entities.</p> <p>For the current limit on the number of instances that you can register using the same namespace and using the same service, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn create_service( &self, input: CreateServiceRequest, ) -> RusotoFuture<CreateServiceResponse, CreateServiceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.CreateService"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<CreateServiceResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(CreateServiceError::from_response(response))), ) } }) } /// <p>Deletes a namespace from the current account. If the namespace still contains one or more services, the request fails.</p> fn delete_namespace( &self, input: DeleteNamespaceRequest, ) -> RusotoFuture<DeleteNamespaceResponse, DeleteNamespaceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Route53AutoNaming_v20170314.DeleteNamespace", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<DeleteNamespaceResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteNamespaceError::from_response(response))), ) } }) } /// <p>Deletes a specified service. If the service still contains one or more registered instances, the request fails.</p> fn delete_service( &self, input: DeleteServiceRequest, ) -> RusotoFuture<DeleteServiceResponse, DeleteServiceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.DeleteService"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<DeleteServiceResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteServiceError::from_response(response))), ) } }) } /// <p>Deletes the Amazon Route 53 DNS records and health check, if any, that AWS Cloud Map created for the specified instance.</p> fn deregister_instance( &self, input: DeregisterInstanceRequest, ) -> RusotoFuture<DeregisterInstanceResponse, DeregisterInstanceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Route53AutoNaming_v20170314.DeregisterInstance", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<DeregisterInstanceResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeregisterInstanceError::from_response(response))), ) } }) } /// <p>Discovers registered instances for a specified namespace and service.</p> fn discover_instances( &self, input: DiscoverInstancesRequest, ) -> RusotoFuture<DiscoverInstancesResponse, DiscoverInstancesError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Route53AutoNaming_v20170314.DiscoverInstances", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<DiscoverInstancesResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DiscoverInstancesError::from_response(response))), ) } }) } /// <p>Gets information about a specified instance.</p> fn get_instance( &self, input: GetInstanceRequest, ) -> RusotoFuture<GetInstanceResponse, GetInstanceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.GetInstance"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<GetInstanceResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetInstanceError::from_response(response))), ) } }) } /// <p><p>Gets the current health status (<code>Healthy</code>, <code>Unhealthy</code>, or <code>Unknown</code>) of one or more instances that are associated with a specified service.</p> <note> <p>There is a brief delay between when you register an instance and when the health status for the instance is available. </p> </note></p> fn get_instances_health_status( &self, input: GetInstancesHealthStatusRequest, ) -> RusotoFuture<GetInstancesHealthStatusResponse, GetInstancesHealthStatusError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Route53AutoNaming_v20170314.GetInstancesHealthStatus", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<GetInstancesHealthStatusResponse, _>() })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(GetInstancesHealthStatusError::from_response(response)) })) } }) } /// <p>Gets information about a namespace.</p> fn get_namespace( &self, input: GetNamespaceRequest, ) -> RusotoFuture<GetNamespaceResponse, GetNamespaceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.GetNamespace"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<GetNamespaceResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetNamespaceError::from_response(response))), ) } }) } /// <p><p>Gets information about any operation that returns an operation ID in the response, such as a <code>CreateService</code> request.</p> <note> <p>To get a list of operations that match specified criteria, see <a>ListOperations</a>.</p> </note></p> fn get_operation( &self, input: GetOperationRequest, ) -> RusotoFuture<GetOperationResponse, GetOperationError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.GetOperation"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<GetOperationResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetOperationError::from_response(response))), ) } }) } /// <p>Gets the settings for a specified service.</p> fn get_service( &self, input: GetServiceRequest, ) -> RusotoFuture<GetServiceResponse, GetServiceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.GetService"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<GetServiceResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetServiceError::from_response(response))), ) } }) } /// <p>Lists summary information about the instances that you registered by using a specified service.</p> fn list_instances( &self, input: ListInstancesRequest, ) -> RusotoFuture<ListInstancesResponse, ListInstancesError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.ListInstances"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<ListInstancesResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListInstancesError::from_response(response))), ) } }) } /// <p>Lists summary information about the namespaces that were created by the current AWS account.</p> fn list_namespaces( &self, input: ListNamespacesRequest, ) -> RusotoFuture<ListNamespacesResponse, ListNamespacesError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.ListNamespaces"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<ListNamespacesResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListNamespacesError::from_response(response))), ) } }) } /// <p>Lists operations that match the criteria that you specify.</p> fn list_operations( &self, input: ListOperationsRequest, ) -> RusotoFuture<ListOperationsResponse, ListOperationsError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.ListOperations"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<ListOperationsResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListOperationsError::from_response(response))), ) } }) } /// <p>Lists summary information for all the services that are associated with one or more specified namespaces.</p> fn list_services( &self, input: ListServicesRequest, ) -> RusotoFuture<ListServicesResponse, ListServicesError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.ListServices"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<ListServicesResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListServicesError::from_response(response))), ) } }) } /// <p>Creates or updates one or more records and, optionally, creates a health check based on the settings in a specified service. When you submit a <code>RegisterInstance</code> request, the following occurs:</p> <ul> <li> <p>For each DNS record that you define in the service that is specified by <code>ServiceId</code>, a record is created or updated in the hosted zone that is associated with the corresponding namespace.</p> </li> <li> <p>If the service includes <code>HealthCheckConfig</code>, a health check is created based on the settings in the health check configuration.</p> </li> <li> <p>The health check, if any, is associated with each of the new or updated records.</p> </li> </ul> <important> <p>One <code>RegisterInstance</code> request must complete before you can submit another request and specify the same service ID and instance ID.</p> </important> <p>For more information, see <a>CreateService</a>.</p> <p>When AWS Cloud Map receives a DNS query for the specified DNS name, it returns the applicable value:</p> <ul> <li> <p> <b>If the health check is healthy</b>: returns all the records</p> </li> <li> <p> <b>If the health check is unhealthy</b>: returns the applicable value for the last healthy instance</p> </li> <li> <p> <b>If you didn't specify a health check configuration</b>: returns all the records</p> </li> </ul> <p>For the current limit on the number of instances that you can register using the same namespace and using the same service, see <a href="http://docs.aws.amazon.com/cloud-map/latest/dg/cloud-map-limits.html">AWS Cloud Map Limits</a> in the <i>AWS Cloud Map Developer Guide</i>.</p> fn register_instance( &self, input: RegisterInstanceRequest, ) -> RusotoFuture<RegisterInstanceResponse, RegisterInstanceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Route53AutoNaming_v20170314.RegisterInstance", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<RegisterInstanceResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(RegisterInstanceError::from_response(response))), ) } }) } /// <p>Submits a request to change the health status of a custom health check to healthy or unhealthy.</p> <p>You can use <code>UpdateInstanceCustomHealthStatus</code> to change the status only for custom health checks, which you define using <code>HealthCheckCustomConfig</code> when you create a service. You can't use it to change the status for Route 53 health checks, which you define using <code>HealthCheckConfig</code>.</p> <p>For more information, see <a>HealthCheckCustomConfig</a>.</p> fn update_instance_custom_health_status( &self, input: UpdateInstanceCustomHealthStatusRequest, ) -> RusotoFuture<(), UpdateInstanceCustomHealthStatusError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Route53AutoNaming_v20170314.UpdateInstanceCustomHealthStatus", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(future::ok(::std::mem::drop(response))) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(UpdateInstanceCustomHealthStatusError::from_response( response, )) })) } }) } /// <p>Submits a request to perform the following operations:</p> <ul> <li> <p>Add or delete <code>DnsRecords</code> configurations</p> </li> <li> <p>Update the TTL setting for existing <code>DnsRecords</code> configurations</p> </li> <li> <p>Add, update, or delete <code>HealthCheckConfig</code> for a specified service</p> </li> </ul> <p>For public and private DNS namespaces, you must specify all <code>DnsRecords</code> configurations (and, optionally, <code>HealthCheckConfig</code>) that you want to appear in the updated service. Any current configurations that don't appear in an <code>UpdateService</code> request are deleted.</p> <p>When you update the TTL setting for a service, AWS Cloud Map also updates the corresponding settings in all the records and health checks that were created by using the specified service.</p> fn update_service( &self, input: UpdateServiceRequest, ) -> RusotoFuture<UpdateServiceResponse, UpdateServiceError> { let mut request = SignedRequest::new("POST", "servicediscovery", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Route53AutoNaming_v20170314.UpdateService"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<UpdateServiceResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(UpdateServiceError::from_response(response))), ) } }) } }