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
// ================================================================= // // * 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; /// <p>Specifies the tags to add to a trail.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct AddTagsRequest { /// <p>Specifies the ARN of the trail to which one or more tags will be added. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "ResourceId")] pub resource_id: String, /// <p>Contains a list of CloudTrail tags, up to a limit of 50</p> #[serde(rename = "TagsList")] #[serde(skip_serializing_if = "Option::is_none")] pub tags_list: Option<Vec<Tag>>, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct AddTagsResponse {} /// <p>Specifies the settings for each trail.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateTrailRequest { /// <p>Specifies a log group name using an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered. Not required unless you specify CloudWatchLogsRoleArn.</p> #[serde(rename = "CloudWatchLogsLogGroupArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_log_group_arn: Option<String>, /// <p>Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.</p> #[serde(rename = "CloudWatchLogsRoleArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_role_arn: Option<String>, /// <p><p>Specifies whether log file integrity validation is enabled. The default is false.</p> <note> <p>When you disable log file integrity validation, the chain of digest files is broken after one hour. CloudTrail will not create digest files for log files that were delivered during a period in which log file integrity validation was disabled. For example, if you enable log file integrity validation at noon on January 1, disable it at noon on January 2, and re-enable it at noon on January 10, digest files will not be created for the log files delivered from noon on January 2 to noon on January 10. The same applies whenever you stop CloudTrail logging or delete a trail.</p> </note></p> #[serde(rename = "EnableLogFileValidation")] #[serde(skip_serializing_if = "Option::is_none")] pub enable_log_file_validation: Option<bool>, /// <p>Specifies whether the trail is publishing events from global services such as IAM to the log files.</p> #[serde(rename = "IncludeGlobalServiceEvents")] #[serde(skip_serializing_if = "Option::is_none")] pub include_global_service_events: Option<bool>, /// <p>Specifies whether the trail is created in the current region or in all regions. The default is false.</p> #[serde(rename = "IsMultiRegionTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_multi_region_trail: Option<bool>, /// <p>Specifies whether the trail is created for all accounts in an organization in AWS Organizations, or only for the current AWS account. The default is false, and cannot be true unless the call is made on behalf of an AWS account that is the master account for an organization in AWS Organizations.</p> #[serde(rename = "IsOrganizationTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_organization_trail: Option<bool>, /// <p><p>Specifies the KMS key ID to use to encrypt the logs delivered by CloudTrail. The value can be an alias name prefixed by "alias/", a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.</p> <p>Examples:</p> <ul> <li> <p>alias/MyAliasName</p> </li> <li> <p>arn:aws:kms:us-east-2:123456789012:alias/MyAliasName</p> </li> <li> <p>arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012</p> </li> <li> <p>12345678-1234-1234-1234-123456789012</p> </li> </ul></p> #[serde(rename = "KmsKeyId")] #[serde(skip_serializing_if = "Option::is_none")] pub kms_key_id: Option<String>, /// <p><p>Specifies the name of the trail. The name must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> #[serde(rename = "Name")] pub name: String, /// <p>Specifies the name of the Amazon S3 bucket designated for publishing log files. See <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/create_trail_naming_policy.html">Amazon S3 Bucket Naming Requirements</a>.</p> #[serde(rename = "S3BucketName")] pub s3_bucket_name: String, /// <p>Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery. For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-find-log-files.html">Finding Your CloudTrail Log Files</a>. The maximum length is 200 characters.</p> #[serde(rename = "S3KeyPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_key_prefix: Option<String>, /// <p>Specifies the name of the Amazon SNS topic defined for notification of log file delivery. The maximum length is 256 characters.</p> #[serde(rename = "SnsTopicName")] #[serde(skip_serializing_if = "Option::is_none")] pub sns_topic_name: Option<String>, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateTrailResponse { /// <p>Specifies the Amazon Resource Name (ARN) of the log group to which CloudTrail logs will be delivered.</p> #[serde(rename = "CloudWatchLogsLogGroupArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_log_group_arn: Option<String>, /// <p>Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.</p> #[serde(rename = "CloudWatchLogsRoleArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_role_arn: Option<String>, /// <p>Specifies whether the trail is publishing events from global services such as IAM to the log files.</p> #[serde(rename = "IncludeGlobalServiceEvents")] #[serde(skip_serializing_if = "Option::is_none")] pub include_global_service_events: Option<bool>, /// <p>Specifies whether the trail exists in one region or in all regions.</p> #[serde(rename = "IsMultiRegionTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_multi_region_trail: Option<bool>, /// <p>Specifies whether the trail is an organization trail.</p> #[serde(rename = "IsOrganizationTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_organization_trail: Option<bool>, /// <p>Specifies the KMS key ID that encrypts the logs delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the format:</p> <p> <code>arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012</code> </p> #[serde(rename = "KmsKeyId")] #[serde(skip_serializing_if = "Option::is_none")] pub kms_key_id: Option<String>, /// <p>Specifies whether log file integrity validation is enabled.</p> #[serde(rename = "LogFileValidationEnabled")] #[serde(skip_serializing_if = "Option::is_none")] pub log_file_validation_enabled: Option<bool>, /// <p>Specifies the name of the trail.</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>Specifies the name of the Amazon S3 bucket designated for publishing log files.</p> #[serde(rename = "S3BucketName")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_bucket_name: Option<String>, /// <p>Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery. For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-find-log-files.html">Finding Your CloudTrail Log Files</a>.</p> #[serde(rename = "S3KeyPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_key_prefix: Option<String>, /// <p>Specifies the ARN of the Amazon SNS topic that CloudTrail uses to send notifications when log files are delivered. The format of a topic ARN is:</p> <p> <code>arn:aws:sns:us-east-2:123456789012:MyTopic</code> </p> #[serde(rename = "SnsTopicARN")] #[serde(skip_serializing_if = "Option::is_none")] pub sns_topic_arn: Option<String>, /// <p>Specifies the ARN of the trail that was created. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "TrailARN")] #[serde(skip_serializing_if = "Option::is_none")] pub trail_arn: Option<String>, } /// <p><p>The Amazon S3 buckets or AWS Lambda functions that you specify in your event selectors for your trail to log data events. Data events provide insight into the resource operations performed on or within a resource itself. These are also known as data plane operations. You can specify up to 250 data resources for a trail.</p> <note> <p>The total number of allowed data resources is 250. This number can be distributed between 1 and 5 event selectors, but the total cannot exceed 250 across all selectors.</p> </note> <p>The following example demonstrates how logging works when you configure logging of all data events for an S3 bucket named <code>bucket-1</code>. In this example, the CloudTrail user spcified an empty prefix, and the option to log both <code>Read</code> and <code>Write</code> data events.</p> <ol> <li> <p>A user uploads an image file to <code>bucket-1</code>.</p> </li> <li> <p>The <code>PutObject</code> API operation is an Amazon S3 object-level API. It is recorded as a data event in CloudTrail. Because the CloudTrail user specified an S3 bucket with an empty prefix, events that occur on any object in that bucket are logged. The trail processes and logs the event.</p> </li> <li> <p>A user uploads an object to an Amazon S3 bucket named <code>arn:aws:s3:::bucket-2</code>.</p> </li> <li> <p>The <code>PutObject</code> API operation occurred for an object in an S3 bucket that the CloudTrail user didn't specify for the trail. The trail doesn’t log the event.</p> </li> </ol> <p>The following example demonstrates how logging works when you configure logging of AWS Lambda data events for a Lambda function named <i>MyLambdaFunction</i>, but not for all AWS Lambda functions.</p> <ol> <li> <p>A user runs a script that includes a call to the <i>MyLambdaFunction</i> function and the <i>MyOtherLambdaFunction</i> function.</p> </li> <li> <p>The <code>Invoke</code> API operation on <i>MyLambdaFunction</i> is an AWS Lambda API. It is recorded as a data event in CloudTrail. Because the CloudTrail user specified logging data events for <i>MyLambdaFunction</i>, any invocations of that function are logged. The trail processes and logs the event. </p> </li> <li> <p>The <code>Invoke</code> API operation on <i>MyOtherLambdaFunction</i> is an AWS Lambda API. Because the CloudTrail user did not specify logging data events for all Lambda functions, the <code>Invoke</code> operation for <i>MyOtherLambdaFunction</i> does not match the function specified for the trail. The trail doesn’t log the event. </p> </li> </ol></p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct DataResource { /// <p>The resource type in which you want to log data events. You can specify <code>AWS::S3::Object</code> or <code>AWS::Lambda::Function</code> resources.</p> #[serde(rename = "Type")] #[serde(skip_serializing_if = "Option::is_none")] pub type_: Option<String>, /// <p><p>An array of Amazon Resource Name (ARN) strings or partial ARN strings for the specified objects.</p> <ul> <li> <p>To log data events for all objects in all S3 buckets in your AWS account, specify the prefix as <code>arn:aws:s3:::</code>. </p> <note> <p>This will also enable logging of data event activity performed by any user or role in your AWS account, even if that activity is performed on a bucket that belongs to another AWS account. </p> </note> </li> <li> <p>To log data events for all objects in all S3 buckets that include <i>my-bucket</i> in their names, specify the prefix as <code>aws:s3:::my-bucket</code>. The trail logs data events for all objects in all buckets whose name contains a match for <i>my-bucket</i>. </p> </li> <li> <p>To log data events for all objects in an S3 bucket, specify the bucket and an empty object prefix such as <code>arn:aws:s3:::bucket-1/</code>. The trail logs data events for all objects in this S3 bucket.</p> </li> <li> <p>To log data events for specific objects, specify the S3 bucket and object prefix such as <code>arn:aws:s3:::bucket-1/example-images</code>. The trail logs data events for objects in this S3 bucket that match the prefix.</p> </li> <li> <p>To log data events for all functions in your AWS account, specify the prefix as <code>arn:aws:lambda</code>.</p> <note> <p>This will also enable logging of <code>Invoke</code> activity performed by any user or role in your AWS account, even if that activity is performed on a function that belongs to another AWS account. </p> </note> </li> <li> <p>To log data eents for a specific Lambda function, specify the function ARN.</p> <note> <p>Lambda function ARNs are exact. Unlike S3, you cannot use matching. For example, if you specify a function ARN <i>arn:aws:lambda:us-west-2:111111111111:function:helloworld</i>, data events will only be logged for <i>arn:aws:lambda:us-west-2:111111111111:function:helloworld</i>. They will not be logged for <i>arn:aws:lambda:us-west-2:111111111111:function:helloworld2</i>.</p> </note> </li> </ul></p> #[serde(rename = "Values")] #[serde(skip_serializing_if = "Option::is_none")] pub values: Option<Vec<String>>, } /// <p>The request that specifies the name of a trail to delete.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteTrailRequest { /// <p>Specifies the name or the CloudTrail ARN of the trail to be deleted. The format of a trail ARN is: <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "Name")] pub name: String, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeleteTrailResponse {} /// <p>Returns information about the trail.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DescribeTrailsRequest { /// <p>Specifies whether to include shadow trails in the response. A shadow trail is the replication in a region of a trail that was created in a different region, or in the case of an organization trail, the replication of an organization trail in member accounts. If you do not include shadow trails, organization trails in a member account and region replication trails will not be returned. The default is true.</p> #[serde(rename = "includeShadowTrails")] #[serde(skip_serializing_if = "Option::is_none")] pub include_shadow_trails: Option<bool>, /// <p><p>Specifies a list of trail names, trail ARNs, or both, of the trails to describe. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> <p>If an empty list is specified, information for the trail in the current region is returned.</p> <ul> <li> <p>If an empty list is specified and <code>IncludeShadowTrails</code> is false, then information for all trails in the current region is returned.</p> </li> <li> <p>If an empty list is specified and IncludeShadowTrails is null or true, then information for all trails in the current region and any associated shadow trails in other regions is returned.</p> </li> </ul> <note> <p>If one or more trail names are specified, information is returned only if the names match the names of trails belonging only to the current region. To return information about a trail in another region, you must specify its trail ARN.</p> </note></p> #[serde(rename = "trailNameList")] #[serde(skip_serializing_if = "Option::is_none")] pub trail_name_list: Option<Vec<String>>, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DescribeTrailsResponse { /// <p>The list of trail objects.</p> #[serde(rename = "trailList")] #[serde(skip_serializing_if = "Option::is_none")] pub trail_list: Option<Vec<Trail>>, } /// <p>Contains information about an event that was returned by a lookup request. The result includes a representation of a CloudTrail event.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Event { /// <p>The AWS access key ID that was used to sign the request. If the request was made with temporary security credentials, this is the access key ID of the temporary credentials.</p> #[serde(rename = "AccessKeyId")] #[serde(skip_serializing_if = "Option::is_none")] pub access_key_id: Option<String>, /// <p>A JSON string that contains a representation of the event returned.</p> #[serde(rename = "CloudTrailEvent")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_trail_event: Option<String>, /// <p>The CloudTrail ID of the event returned.</p> #[serde(rename = "EventId")] #[serde(skip_serializing_if = "Option::is_none")] pub event_id: Option<String>, /// <p>The name of the event returned.</p> #[serde(rename = "EventName")] #[serde(skip_serializing_if = "Option::is_none")] pub event_name: Option<String>, /// <p>The AWS service that the request was made to.</p> #[serde(rename = "EventSource")] #[serde(skip_serializing_if = "Option::is_none")] pub event_source: Option<String>, /// <p>The date and time of the event returned.</p> #[serde(rename = "EventTime")] #[serde(skip_serializing_if = "Option::is_none")] pub event_time: Option<f64>, /// <p>Information about whether the event is a write event or a read event. </p> #[serde(rename = "ReadOnly")] #[serde(skip_serializing_if = "Option::is_none")] pub read_only: Option<String>, /// <p>A list of resources referenced by the event returned.</p> #[serde(rename = "Resources")] #[serde(skip_serializing_if = "Option::is_none")] pub resources: Option<Vec<Resource>>, /// <p>A user name or role name of the requester that called the API in the event returned.</p> #[serde(rename = "Username")] #[serde(skip_serializing_if = "Option::is_none")] pub username: Option<String>, } /// <p>Use event selectors to further specify the management and data event settings for your trail. By default, trails created without specific event selectors will be configured to log all read and write management events, and no data events. When an event occurs in your account, CloudTrail evaluates the event selector for all trails. For each trail, if the event matches any event selector, the trail processes and logs the event. If the event doesn't match any event selector, the trail doesn't log the event.</p> <p>You can configure up to five event selectors for a trail.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct EventSelector { /// <p>CloudTrail supports data event logging for Amazon S3 objects and AWS Lambda functions. You can specify up to 250 resources for an individual event selector, but the total number of data resources cannot exceed 250 across all event selectors in a trail. This limit does not apply if you configure resource logging for all data events. </p> <p>For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html#logging-data-events">Data Events</a> and <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html">Limits in AWS CloudTrail</a> in the <i>AWS CloudTrail User Guide</i>.</p> #[serde(rename = "DataResources")] #[serde(skip_serializing_if = "Option::is_none")] pub data_resources: Option<Vec<DataResource>>, /// <p>Specify if you want your event selector to include management events for your trail.</p> <p> For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html#logging-management-events">Management Events</a> in the <i>AWS CloudTrail User Guide</i>.</p> <p>By default, the value is <code>true</code>.</p> #[serde(rename = "IncludeManagementEvents")] #[serde(skip_serializing_if = "Option::is_none")] pub include_management_events: Option<bool>, /// <p>Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2 <code>GetConsoleOutput</code> is a read-only API operation and <code>RunInstances</code> is a write-only API operation.</p> <p> By default, the value is <code>All</code>.</p> #[serde(rename = "ReadWriteType")] #[serde(skip_serializing_if = "Option::is_none")] pub read_write_type: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetEventSelectorsRequest { /// <p>Specifies the name of the trail or trail ARN. If you specify a trail name, the string must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-_namespace</code> and <code>my--namespace</code> are not valid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul> <p>If you specify a trail ARN, it must be in the format:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "TrailName")] pub trail_name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetEventSelectorsResponse { /// <p>The event selectors that are configured for the trail.</p> #[serde(rename = "EventSelectors")] #[serde(skip_serializing_if = "Option::is_none")] pub event_selectors: Option<Vec<EventSelector>>, /// <p>The specified trail ARN that has the event selectors.</p> #[serde(rename = "TrailARN")] #[serde(skip_serializing_if = "Option::is_none")] pub trail_arn: Option<String>, } /// <p>The name of a trail about which you want the current status.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct GetTrailStatusRequest { /// <p>Specifies the name or the CloudTrail ARN of the trail for which you are requesting status. To get the status of a shadow trail (a replication of the trail in another region), you must specify its ARN. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "Name")] pub name: String, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct GetTrailStatusResponse { /// <p>Whether the CloudTrail is currently logging AWS API calls.</p> #[serde(rename = "IsLogging")] #[serde(skip_serializing_if = "Option::is_none")] pub is_logging: Option<bool>, /// <p>Displays any CloudWatch Logs error that CloudTrail encountered when attempting to deliver logs to CloudWatch Logs.</p> #[serde(rename = "LatestCloudWatchLogsDeliveryError")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_cloud_watch_logs_delivery_error: Option<String>, /// <p>Displays the most recent date and time when CloudTrail delivered logs to CloudWatch Logs.</p> #[serde(rename = "LatestCloudWatchLogsDeliveryTime")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_cloud_watch_logs_delivery_time: Option<f64>, /// <p>This field is deprecated.</p> #[serde(rename = "LatestDeliveryAttemptSucceeded")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_delivery_attempt_succeeded: Option<String>, /// <p>This field is deprecated.</p> #[serde(rename = "LatestDeliveryAttemptTime")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_delivery_attempt_time: Option<String>, /// <p><p>Displays any Amazon S3 error that CloudTrail encountered when attempting to deliver log files to the designated bucket. For more information see the topic <a href="http://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html">Error Responses</a> in the Amazon S3 API Reference. </p> <note> <p>This error occurs only when there is a problem with the destination S3 bucket and will not occur for timeouts. To resolve the issue, create a new bucket and call <code>UpdateTrail</code> to specify the new bucket, or fix the existing objects so that CloudTrail can again write to the bucket.</p> </note></p> #[serde(rename = "LatestDeliveryError")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_delivery_error: Option<String>, /// <p>Specifies the date and time that CloudTrail last delivered log files to an account's Amazon S3 bucket.</p> #[serde(rename = "LatestDeliveryTime")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_delivery_time: Option<f64>, /// <p><p>Displays any Amazon S3 error that CloudTrail encountered when attempting to deliver a digest file to the designated bucket. For more information see the topic <a href="http://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html">Error Responses</a> in the Amazon S3 API Reference. </p> <note> <p>This error occurs only when there is a problem with the destination S3 bucket and will not occur for timeouts. To resolve the issue, create a new bucket and call <code>UpdateTrail</code> to specify the new bucket, or fix the existing objects so that CloudTrail can again write to the bucket.</p> </note></p> #[serde(rename = "LatestDigestDeliveryError")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_digest_delivery_error: Option<String>, /// <p>Specifies the date and time that CloudTrail last delivered a digest file to an account's Amazon S3 bucket.</p> #[serde(rename = "LatestDigestDeliveryTime")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_digest_delivery_time: Option<f64>, /// <p>This field is deprecated.</p> #[serde(rename = "LatestNotificationAttemptSucceeded")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_notification_attempt_succeeded: Option<String>, /// <p>This field is deprecated.</p> #[serde(rename = "LatestNotificationAttemptTime")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_notification_attempt_time: Option<String>, /// <p>Displays any Amazon SNS error that CloudTrail encountered when attempting to send a notification. For more information about Amazon SNS errors, see the <a href="http://docs.aws.amazon.com/sns/latest/dg/welcome.html">Amazon SNS Developer Guide</a>. </p> #[serde(rename = "LatestNotificationError")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_notification_error: Option<String>, /// <p>Specifies the date and time of the most recent Amazon SNS notification that CloudTrail has written a new log file to an account's Amazon S3 bucket.</p> #[serde(rename = "LatestNotificationTime")] #[serde(skip_serializing_if = "Option::is_none")] pub latest_notification_time: Option<f64>, /// <p>Specifies the most recent date and time when CloudTrail started recording API calls for an AWS account.</p> #[serde(rename = "StartLoggingTime")] #[serde(skip_serializing_if = "Option::is_none")] pub start_logging_time: Option<f64>, /// <p>Specifies the most recent date and time when CloudTrail stopped recording API calls for an AWS account.</p> #[serde(rename = "StopLoggingTime")] #[serde(skip_serializing_if = "Option::is_none")] pub stop_logging_time: Option<f64>, /// <p>This field is deprecated.</p> #[serde(rename = "TimeLoggingStarted")] #[serde(skip_serializing_if = "Option::is_none")] pub time_logging_started: Option<String>, /// <p>This field is deprecated.</p> #[serde(rename = "TimeLoggingStopped")] #[serde(skip_serializing_if = "Option::is_none")] pub time_logging_stopped: Option<String>, } /// <p>Requests the public keys for a specified time range.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListPublicKeysRequest { /// <p>Optionally specifies, in UTC, the end of the time range to look up public keys for CloudTrail digest files. If not specified, the current time is used.</p> #[serde(rename = "EndTime")] #[serde(skip_serializing_if = "Option::is_none")] pub end_time: Option<f64>, /// <p>Reserved for future use.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>Optionally specifies, in UTC, the start of the time range to look up public keys for CloudTrail digest files. If not specified, the current time is used, and the current public key is returned.</p> #[serde(rename = "StartTime")] #[serde(skip_serializing_if = "Option::is_none")] pub start_time: Option<f64>, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListPublicKeysResponse { /// <p>Reserved for future use.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p><p>Contains an array of PublicKey objects.</p> <note> <p>The returned public keys may have validity time ranges that overlap.</p> </note></p> #[serde(rename = "PublicKeyList")] #[serde(skip_serializing_if = "Option::is_none")] pub public_key_list: Option<Vec<PublicKey>>, } /// <p>Specifies a list of trail tags to return.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListTagsRequest { /// <p>Reserved for future use.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>Specifies a list of trail ARNs whose tags will be listed. The list has a limit of 20 ARNs. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "ResourceIdList")] pub resource_id_list: Vec<String>, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListTagsResponse { /// <p>Reserved for future use.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>A list of resource tags.</p> #[serde(rename = "ResourceTagList")] #[serde(skip_serializing_if = "Option::is_none")] pub resource_tag_list: Option<Vec<ResourceTag>>, } /// <p>Specifies an attribute and value that filter the events returned.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct LookupAttribute { /// <p>Specifies an attribute on which to filter the events returned.</p> #[serde(rename = "AttributeKey")] pub attribute_key: String, /// <p>Specifies a value for the specified AttributeKey.</p> #[serde(rename = "AttributeValue")] pub attribute_value: String, } /// <p>Contains a request for LookupEvents.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct LookupEventsRequest { /// <p>Specifies that only events that occur before or at the specified time are returned. If the specified end time is before the specified start time, an error is returned.</p> #[serde(rename = "EndTime")] #[serde(skip_serializing_if = "Option::is_none")] pub end_time: Option<f64>, /// <p>Contains a list of lookup attributes. Currently the list can contain only one item.</p> #[serde(rename = "LookupAttributes")] #[serde(skip_serializing_if = "Option::is_none")] pub lookup_attributes: Option<Vec<LookupAttribute>>, /// <p>The number of events to return. Possible values are 1 through 50. The default is 50.</p> #[serde(rename = "MaxResults")] #[serde(skip_serializing_if = "Option::is_none")] pub max_results: Option<i64>, /// <p>The token to use to get the next page of results after a previous API call. This token must be passed in with the same parameters that were specified in the the original call. For example, if the original call specified an AttributeKey of 'Username' with a value of 'root', the call with NextToken should include those same parameters.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>Specifies that only events that occur after or at the specified time are returned. If the specified start time is after the specified end time, an error is returned.</p> #[serde(rename = "StartTime")] #[serde(skip_serializing_if = "Option::is_none")] pub start_time: Option<f64>, } /// <p>Contains a response to a LookupEvents action.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct LookupEventsResponse { /// <p>A list of events returned based on the lookup attributes specified and the CloudTrail event. The events list is sorted by time. The most recent event is listed first.</p> #[serde(rename = "Events")] #[serde(skip_serializing_if = "Option::is_none")] pub events: Option<Vec<Event>>, /// <p>The token to use to get the next page of results after a previous API call. If the token does not appear, there are no more results to return. The token must be passed in with the same parameters as the previous call. For example, if the original call specified an AttributeKey of 'Username' with a value of 'root', the call with NextToken should include those same parameters.</p> #[serde(rename = "NextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } /// <p>Contains information about a returned public key.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PublicKey { /// <p>The fingerprint of the public key.</p> #[serde(rename = "Fingerprint")] #[serde(skip_serializing_if = "Option::is_none")] pub fingerprint: Option<String>, /// <p>The ending time of validity of the public key.</p> #[serde(rename = "ValidityEndTime")] #[serde(skip_serializing_if = "Option::is_none")] pub validity_end_time: Option<f64>, /// <p>The starting time of validity of the public key.</p> #[serde(rename = "ValidityStartTime")] #[serde(skip_serializing_if = "Option::is_none")] pub validity_start_time: Option<f64>, /// <p>The DER encoded public key value in PKCS#1 format.</p> #[serde(rename = "Value")] #[serde( deserialize_with = "::rusoto_core::serialization::SerdeBlob::deserialize_blob", serialize_with = "::rusoto_core::serialization::SerdeBlob::serialize_blob", default )] #[serde(skip_serializing_if = "Option::is_none")] pub value: Option<bytes::Bytes>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct PutEventSelectorsRequest { /// <p>Specifies the settings for your event selectors. You can configure up to five event selectors for a trail.</p> #[serde(rename = "EventSelectors")] pub event_selectors: Vec<EventSelector>, /// <p>Specifies the name of the trail or trail ARN. If you specify a trail name, the string must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-_namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul> <p>If you specify a trail ARN, it must be in the format:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "TrailName")] pub trail_name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PutEventSelectorsResponse { /// <p>Specifies the event selectors configured for your trail.</p> #[serde(rename = "EventSelectors")] #[serde(skip_serializing_if = "Option::is_none")] pub event_selectors: Option<Vec<EventSelector>>, /// <p>Specifies the ARN of the trail that was updated with event selectors. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "TrailARN")] #[serde(skip_serializing_if = "Option::is_none")] pub trail_arn: Option<String>, } /// <p>Specifies the tags to remove from a trail.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct RemoveTagsRequest { /// <p>Specifies the ARN of the trail from which tags should be removed. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "ResourceId")] pub resource_id: String, /// <p>Specifies a list of tags to be removed.</p> #[serde(rename = "TagsList")] #[serde(skip_serializing_if = "Option::is_none")] pub tags_list: Option<Vec<Tag>>, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct RemoveTagsResponse {} /// <p>Specifies the type and name of a resource referenced by an event.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Resource { /// <p>The name of the resource referenced by the event returned. These are user-created names whose values will depend on the environment. For example, the resource name might be "auto-scaling-test-group" for an Auto Scaling Group or "i-1234567" for an EC2 Instance.</p> #[serde(rename = "ResourceName")] #[serde(skip_serializing_if = "Option::is_none")] pub resource_name: Option<String>, /// <p>The type of a resource referenced by the event returned. When the resource type cannot be determined, null is returned. Some examples of resource types are: <b>Instance</b> for EC2, <b>Trail</b> for CloudTrail, <b>DBInstance</b> for RDS, and <b>AccessKey</b> for IAM. For a list of resource types supported for event lookup, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/lookup_supported_resourcetypes.html">Resource Types Supported for Event Lookup</a>.</p> #[serde(rename = "ResourceType")] #[serde(skip_serializing_if = "Option::is_none")] pub resource_type: Option<String>, } /// <p>A resource tag.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ResourceTag { /// <p>Specifies the ARN of the resource.</p> #[serde(rename = "ResourceId")] #[serde(skip_serializing_if = "Option::is_none")] pub resource_id: Option<String>, /// <p>A list of tags.</p> #[serde(rename = "TagsList")] #[serde(skip_serializing_if = "Option::is_none")] pub tags_list: Option<Vec<Tag>>, } /// <p>The request to CloudTrail to start logging AWS API calls for an account.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct StartLoggingRequest { /// <p>Specifies the name or the CloudTrail ARN of the trail for which CloudTrail logs AWS API calls. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "Name")] pub name: String, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct StartLoggingResponse {} /// <p>Passes the request to CloudTrail to stop logging AWS API calls for the specified account.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct StopLoggingRequest { /// <p>Specifies the name or the CloudTrail ARN of the trail for which CloudTrail will stop logging AWS API calls. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "Name")] pub name: String, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct StopLoggingResponse {} /// <p>A custom key-value pair associated with a resource such as a CloudTrail trail.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Tag { /// <p>The key in a key-value pair. The key must be must be no longer than 128 Unicode characters. The key must be unique for the resource to which it applies.</p> #[serde(rename = "Key")] pub key: String, /// <p>The value in a key-value pair of a tag. The value must be no longer than 256 Unicode characters.</p> #[serde(rename = "Value")] #[serde(skip_serializing_if = "Option::is_none")] pub value: Option<String>, } /// <p>The settings for a trail.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Trail { /// <p>Specifies an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered.</p> #[serde(rename = "CloudWatchLogsLogGroupArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_log_group_arn: Option<String>, /// <p>Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.</p> #[serde(rename = "CloudWatchLogsRoleArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_role_arn: Option<String>, /// <p>Specifies if the trail has custom event selectors.</p> #[serde(rename = "HasCustomEventSelectors")] #[serde(skip_serializing_if = "Option::is_none")] pub has_custom_event_selectors: Option<bool>, /// <p>The region in which the trail was created.</p> #[serde(rename = "HomeRegion")] #[serde(skip_serializing_if = "Option::is_none")] pub home_region: Option<String>, /// <p>Set to <b>True</b> to include AWS API calls from AWS global services such as IAM. Otherwise, <b>False</b>.</p> #[serde(rename = "IncludeGlobalServiceEvents")] #[serde(skip_serializing_if = "Option::is_none")] pub include_global_service_events: Option<bool>, /// <p>Specifies whether the trail belongs only to one region or exists in all regions.</p> #[serde(rename = "IsMultiRegionTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_multi_region_trail: Option<bool>, /// <p>Specifies whether the trail is an organization trail.</p> #[serde(rename = "IsOrganizationTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_organization_trail: Option<bool>, /// <p>Specifies the KMS key ID that encrypts the logs delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the format:</p> <p> <code>arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012</code> </p> #[serde(rename = "KmsKeyId")] #[serde(skip_serializing_if = "Option::is_none")] pub kms_key_id: Option<String>, /// <p>Specifies whether log file validation is enabled.</p> #[serde(rename = "LogFileValidationEnabled")] #[serde(skip_serializing_if = "Option::is_none")] pub log_file_validation_enabled: Option<bool>, /// <p>Name of the trail set by calling <a>CreateTrail</a>. The maximum length is 128 characters.</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>Name of the Amazon S3 bucket into which CloudTrail delivers your trail files. See <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/create_trail_naming_policy.html">Amazon S3 Bucket Naming Requirements</a>.</p> #[serde(rename = "S3BucketName")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_bucket_name: Option<String>, /// <p>Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery. For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-find-log-files.html">Finding Your CloudTrail Log Files</a>.The maximum length is 200 characters.</p> #[serde(rename = "S3KeyPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_key_prefix: Option<String>, /// <p>Specifies the ARN of the Amazon SNS topic that CloudTrail uses to send notifications when log files are delivered. The format of a topic ARN is:</p> <p> <code>arn:aws:sns:us-east-2:123456789012:MyTopic</code> </p> #[serde(rename = "SnsTopicARN")] #[serde(skip_serializing_if = "Option::is_none")] pub sns_topic_arn: Option<String>, /// <p>Specifies the ARN of the trail. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "TrailARN")] #[serde(skip_serializing_if = "Option::is_none")] pub trail_arn: Option<String>, } /// <p>Specifies settings to update for the trail.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UpdateTrailRequest { /// <p>Specifies a log group name using an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered. Not required unless you specify CloudWatchLogsRoleArn.</p> #[serde(rename = "CloudWatchLogsLogGroupArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_log_group_arn: Option<String>, /// <p>Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.</p> #[serde(rename = "CloudWatchLogsRoleArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_role_arn: Option<String>, /// <p><p>Specifies whether log file validation is enabled. The default is false.</p> <note> <p>When you disable log file integrity validation, the chain of digest files is broken after one hour. CloudTrail will not create digest files for log files that were delivered during a period in which log file integrity validation was disabled. For example, if you enable log file integrity validation at noon on January 1, disable it at noon on January 2, and re-enable it at noon on January 10, digest files will not be created for the log files delivered from noon on January 2 to noon on January 10. The same applies whenever you stop CloudTrail logging or delete a trail.</p> </note></p> #[serde(rename = "EnableLogFileValidation")] #[serde(skip_serializing_if = "Option::is_none")] pub enable_log_file_validation: Option<bool>, /// <p>Specifies whether the trail is publishing events from global services such as IAM to the log files.</p> #[serde(rename = "IncludeGlobalServiceEvents")] #[serde(skip_serializing_if = "Option::is_none")] pub include_global_service_events: Option<bool>, /// <p>Specifies whether the trail applies only to the current region or to all regions. The default is false. If the trail exists only in the current region and this value is set to true, shadow trails (replications of the trail) will be created in the other regions. If the trail exists in all regions and this value is set to false, the trail will remain in the region where it was created, and its shadow trails in other regions will be deleted.</p> #[serde(rename = "IsMultiRegionTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_multi_region_trail: Option<bool>, /// <p>Specifies whether the trail is applied to all accounts in an organization in AWS Organizations, or only for the current AWS account. The default is false, and cannot be true unless the call is made on behalf of an AWS account that is the master account for an organization in AWS Organizations. If the trail is not an organization trail and this is set to true, the trail will be created in all AWS accounts that belong to the organization. If the trail is an organization trail and this is set to false, the trail will remain in the current AWS account but be deleted from all member accounts in the organization.</p> #[serde(rename = "IsOrganizationTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_organization_trail: Option<bool>, /// <p><p>Specifies the KMS key ID to use to encrypt the logs delivered by CloudTrail. The value can be an alias name prefixed by "alias/", a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.</p> <p>Examples:</p> <ul> <li> <p>alias/MyAliasName</p> </li> <li> <p>arn:aws:kms:us-east-2:123456789012:alias/MyAliasName</p> </li> <li> <p>arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012</p> </li> <li> <p>12345678-1234-1234-1234-123456789012</p> </li> </ul></p> #[serde(rename = "KmsKeyId")] #[serde(skip_serializing_if = "Option::is_none")] pub kms_key_id: Option<String>, /// <p>Specifies the name of the trail or trail ARN. If <code>Name</code> is a trail name, the string must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-_namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul> <p>If <code>Name</code> is a trail ARN, it must be in the format:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "Name")] pub name: String, /// <p>Specifies the name of the Amazon S3 bucket designated for publishing log files. See <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/create_trail_naming_policy.html">Amazon S3 Bucket Naming Requirements</a>.</p> #[serde(rename = "S3BucketName")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_bucket_name: Option<String>, /// <p>Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery. For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-find-log-files.html">Finding Your CloudTrail Log Files</a>. The maximum length is 200 characters.</p> #[serde(rename = "S3KeyPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_key_prefix: Option<String>, /// <p>Specifies the name of the Amazon SNS topic defined for notification of log file delivery. The maximum length is 256 characters.</p> #[serde(rename = "SnsTopicName")] #[serde(skip_serializing_if = "Option::is_none")] pub sns_topic_name: Option<String>, } /// <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UpdateTrailResponse { /// <p>Specifies the Amazon Resource Name (ARN) of the log group to which CloudTrail logs will be delivered.</p> #[serde(rename = "CloudWatchLogsLogGroupArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_log_group_arn: Option<String>, /// <p>Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.</p> #[serde(rename = "CloudWatchLogsRoleArn")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs_role_arn: Option<String>, /// <p>Specifies whether the trail is publishing events from global services such as IAM to the log files.</p> #[serde(rename = "IncludeGlobalServiceEvents")] #[serde(skip_serializing_if = "Option::is_none")] pub include_global_service_events: Option<bool>, /// <p>Specifies whether the trail exists in one region or in all regions.</p> #[serde(rename = "IsMultiRegionTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_multi_region_trail: Option<bool>, /// <p>Specifies whether the trail is an organization trail.</p> #[serde(rename = "IsOrganizationTrail")] #[serde(skip_serializing_if = "Option::is_none")] pub is_organization_trail: Option<bool>, /// <p>Specifies the KMS key ID that encrypts the logs delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the format:</p> <p> <code>arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012</code> </p> #[serde(rename = "KmsKeyId")] #[serde(skip_serializing_if = "Option::is_none")] pub kms_key_id: Option<String>, /// <p>Specifies whether log file integrity validation is enabled.</p> #[serde(rename = "LogFileValidationEnabled")] #[serde(skip_serializing_if = "Option::is_none")] pub log_file_validation_enabled: Option<bool>, /// <p>Specifies the name of the trail.</p> #[serde(rename = "Name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>Specifies the name of the Amazon S3 bucket designated for publishing log files.</p> #[serde(rename = "S3BucketName")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_bucket_name: Option<String>, /// <p>Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery. For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-find-log-files.html">Finding Your CloudTrail Log Files</a>.</p> #[serde(rename = "S3KeyPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_key_prefix: Option<String>, /// <p>Specifies the ARN of the Amazon SNS topic that CloudTrail uses to send notifications when log files are delivered. The format of a topic ARN is:</p> <p> <code>arn:aws:sns:us-east-2:123456789012:MyTopic</code> </p> #[serde(rename = "SnsTopicARN")] #[serde(skip_serializing_if = "Option::is_none")] pub sns_topic_arn: Option<String>, /// <p>Specifies the ARN of the trail that was updated. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> #[serde(rename = "TrailARN")] #[serde(skip_serializing_if = "Option::is_none")] pub trail_arn: Option<String>, } /// Errors returned by AddTags #[derive(Debug, PartialEq)] pub enum AddTagsError { /// <p>This exception is thrown when an operation is called with an invalid trail ARN. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> CloudTrailARNInvalid(String), /// <p>This exception is thrown when the key or value specified for the tag does not match the regular expression <code>^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$</code>.</p> InvalidTagParameter(String), /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when the AWS account making the request to create or update an organization trail is not the master account for an organization in AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> NotOrganizationMasterAccount(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the specified resource is not found.</p> ResourceNotFound(String), /// <p>This exception is thrown when the specified resource type is not supported by CloudTrail.</p> ResourceTypeNotSupported(String), /// <p>The number of tags per trail has exceeded the permitted amount. Currently, the limit is 50.</p> TagsLimitExceeded(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl AddTagsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<AddTagsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "CloudTrailARNInvalidException" => { return RusotoError::Service(AddTagsError::CloudTrailARNInvalid(err.msg)) } "InvalidTagParameterException" => { return RusotoError::Service(AddTagsError::InvalidTagParameter(err.msg)) } "InvalidTrailNameException" => { return RusotoError::Service(AddTagsError::InvalidTrailName(err.msg)) } "NotOrganizationMasterAccountException" => { return RusotoError::Service(AddTagsError::NotOrganizationMasterAccount( err.msg, )) } "OperationNotPermittedException" => { return RusotoError::Service(AddTagsError::OperationNotPermitted(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(AddTagsError::ResourceNotFound(err.msg)) } "ResourceTypeNotSupportedException" => { return RusotoError::Service(AddTagsError::ResourceTypeNotSupported(err.msg)) } "TagsLimitExceededException" => { return RusotoError::Service(AddTagsError::TagsLimitExceeded(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(AddTagsError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for AddTagsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for AddTagsError { fn description(&self) -> &str { match *self { AddTagsError::CloudTrailARNInvalid(ref cause) => cause, AddTagsError::InvalidTagParameter(ref cause) => cause, AddTagsError::InvalidTrailName(ref cause) => cause, AddTagsError::NotOrganizationMasterAccount(ref cause) => cause, AddTagsError::OperationNotPermitted(ref cause) => cause, AddTagsError::ResourceNotFound(ref cause) => cause, AddTagsError::ResourceTypeNotSupported(ref cause) => cause, AddTagsError::TagsLimitExceeded(ref cause) => cause, AddTagsError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by CreateTrail #[derive(Debug, PartialEq)] pub enum CreateTrailError { /// <p>This exception is thrown when trusted access has not been enabled between AWS CloudTrail and AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_integrate_services.html">Enabling Trusted Access with Other AWS Services</a> and <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>. </p> CloudTrailAccessNotEnabled(String), /// <p>Cannot set a CloudWatch Logs delivery for this region.</p> CloudWatchLogsDeliveryUnavailable(String), /// <p>This exception is thrown when the IAM user or role that is used to create the organization trail is lacking one or more required permissions for creating an organization trail in a required service. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> InsufficientDependencyServiceAccessPermission(String), /// <p>This exception is thrown when the policy on the S3 bucket or KMS key is not sufficient.</p> InsufficientEncryptionPolicy(String), /// <p>This exception is thrown when the policy on the S3 bucket is not sufficient.</p> InsufficientS3BucketPolicy(String), /// <p>This exception is thrown when the policy on the SNS topic is not sufficient.</p> InsufficientSnsTopicPolicy(String), /// <p>This exception is thrown when the provided CloudWatch log group is not valid.</p> InvalidCloudWatchLogsLogGroupArn(String), /// <p>This exception is thrown when the provided role is not valid.</p> InvalidCloudWatchLogsRoleArn(String), /// <p>This exception is thrown when the KMS key ARN is invalid.</p> InvalidKmsKeyId(String), /// <p>This exception is thrown when the combination of parameters provided is not valid.</p> InvalidParameterCombination(String), /// <p>This exception is thrown when the provided S3 bucket name is not valid.</p> InvalidS3BucketName(String), /// <p>This exception is thrown when the provided S3 prefix is not valid.</p> InvalidS3Prefix(String), /// <p>This exception is thrown when the provided SNS topic name is not valid.</p> InvalidSnsTopicName(String), /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when there is an issue with the specified KMS key and the trail can’t be updated.</p> Kms(String), /// <p>This exception is deprecated.</p> KmsKeyDisabled(String), /// <p>This exception is thrown when the KMS key does not exist, or when the S3 bucket and the KMS key are not in the same region.</p> KmsKeyNotFound(String), /// <p>This exception is thrown when the maximum number of trails is reached.</p> MaximumNumberOfTrailsExceeded(String), /// <p>This exception is thrown when the AWS account making the request to create or update an organization trail is not the master account for an organization in AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> NotOrganizationMasterAccount(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when AWS Organizations is not configured to support all features. All features must be enabled in AWS Organization to support creating an organization trail. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> OrganizationNotInAllFeaturesMode(String), /// <p>This exception is thrown when the request is made from an AWS account that is not a member of an organization. To make this request, sign in using the credentials of an account that belongs to an organization.</p> OrganizationsNotInUse(String), /// <p>This exception is thrown when the specified S3 bucket does not exist.</p> S3BucketDoesNotExist(String), /// <p>This exception is thrown when the specified trail already exists.</p> TrailAlreadyExists(String), /// <p>This exception is deprecated.</p> TrailNotProvided(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl CreateTrailError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateTrailError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "CloudTrailAccessNotEnabledException" => { return RusotoError::Service(CreateTrailError::CloudTrailAccessNotEnabled( err.msg, )) } "CloudWatchLogsDeliveryUnavailableException" => { return RusotoError::Service( CreateTrailError::CloudWatchLogsDeliveryUnavailable(err.msg), ) } "InsufficientDependencyServiceAccessPermissionException" => { return RusotoError::Service( CreateTrailError::InsufficientDependencyServiceAccessPermission(err.msg), ) } "InsufficientEncryptionPolicyException" => { return RusotoError::Service(CreateTrailError::InsufficientEncryptionPolicy( err.msg, )) } "InsufficientS3BucketPolicyException" => { return RusotoError::Service(CreateTrailError::InsufficientS3BucketPolicy( err.msg, )) } "InsufficientSnsTopicPolicyException" => { return RusotoError::Service(CreateTrailError::InsufficientSnsTopicPolicy( err.msg, )) } "InvalidCloudWatchLogsLogGroupArnException" => { return RusotoError::Service( CreateTrailError::InvalidCloudWatchLogsLogGroupArn(err.msg), ) } "InvalidCloudWatchLogsRoleArnException" => { return RusotoError::Service(CreateTrailError::InvalidCloudWatchLogsRoleArn( err.msg, )) } "InvalidKmsKeyIdException" => { return RusotoError::Service(CreateTrailError::InvalidKmsKeyId(err.msg)) } "InvalidParameterCombinationException" => { return RusotoError::Service(CreateTrailError::InvalidParameterCombination( err.msg, )) } "InvalidS3BucketNameException" => { return RusotoError::Service(CreateTrailError::InvalidS3BucketName(err.msg)) } "InvalidS3PrefixException" => { return RusotoError::Service(CreateTrailError::InvalidS3Prefix(err.msg)) } "InvalidSnsTopicNameException" => { return RusotoError::Service(CreateTrailError::InvalidSnsTopicName(err.msg)) } "InvalidTrailNameException" => { return RusotoError::Service(CreateTrailError::InvalidTrailName(err.msg)) } "KmsException" => return RusotoError::Service(CreateTrailError::Kms(err.msg)), "KmsKeyDisabledException" => { return RusotoError::Service(CreateTrailError::KmsKeyDisabled(err.msg)) } "KmsKeyNotFoundException" => { return RusotoError::Service(CreateTrailError::KmsKeyNotFound(err.msg)) } "MaximumNumberOfTrailsExceededException" => { return RusotoError::Service(CreateTrailError::MaximumNumberOfTrailsExceeded( err.msg, )) } "NotOrganizationMasterAccountException" => { return RusotoError::Service(CreateTrailError::NotOrganizationMasterAccount( err.msg, )) } "OperationNotPermittedException" => { return RusotoError::Service(CreateTrailError::OperationNotPermitted(err.msg)) } "OrganizationNotInAllFeaturesModeException" => { return RusotoError::Service( CreateTrailError::OrganizationNotInAllFeaturesMode(err.msg), ) } "OrganizationsNotInUseException" => { return RusotoError::Service(CreateTrailError::OrganizationsNotInUse(err.msg)) } "S3BucketDoesNotExistException" => { return RusotoError::Service(CreateTrailError::S3BucketDoesNotExist(err.msg)) } "TrailAlreadyExistsException" => { return RusotoError::Service(CreateTrailError::TrailAlreadyExists(err.msg)) } "TrailNotProvidedException" => { return RusotoError::Service(CreateTrailError::TrailNotProvided(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(CreateTrailError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateTrailError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateTrailError { fn description(&self) -> &str { match *self { CreateTrailError::CloudTrailAccessNotEnabled(ref cause) => cause, CreateTrailError::CloudWatchLogsDeliveryUnavailable(ref cause) => cause, CreateTrailError::InsufficientDependencyServiceAccessPermission(ref cause) => cause, CreateTrailError::InsufficientEncryptionPolicy(ref cause) => cause, CreateTrailError::InsufficientS3BucketPolicy(ref cause) => cause, CreateTrailError::InsufficientSnsTopicPolicy(ref cause) => cause, CreateTrailError::InvalidCloudWatchLogsLogGroupArn(ref cause) => cause, CreateTrailError::InvalidCloudWatchLogsRoleArn(ref cause) => cause, CreateTrailError::InvalidKmsKeyId(ref cause) => cause, CreateTrailError::InvalidParameterCombination(ref cause) => cause, CreateTrailError::InvalidS3BucketName(ref cause) => cause, CreateTrailError::InvalidS3Prefix(ref cause) => cause, CreateTrailError::InvalidSnsTopicName(ref cause) => cause, CreateTrailError::InvalidTrailName(ref cause) => cause, CreateTrailError::Kms(ref cause) => cause, CreateTrailError::KmsKeyDisabled(ref cause) => cause, CreateTrailError::KmsKeyNotFound(ref cause) => cause, CreateTrailError::MaximumNumberOfTrailsExceeded(ref cause) => cause, CreateTrailError::NotOrganizationMasterAccount(ref cause) => cause, CreateTrailError::OperationNotPermitted(ref cause) => cause, CreateTrailError::OrganizationNotInAllFeaturesMode(ref cause) => cause, CreateTrailError::OrganizationsNotInUse(ref cause) => cause, CreateTrailError::S3BucketDoesNotExist(ref cause) => cause, CreateTrailError::TrailAlreadyExists(ref cause) => cause, CreateTrailError::TrailNotProvided(ref cause) => cause, CreateTrailError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by DeleteTrail #[derive(Debug, PartialEq)] pub enum DeleteTrailError { /// <p>This exception is thrown when the IAM user or role that is used to create the organization trail is lacking one or more required permissions for creating an organization trail in a required service. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> InsufficientDependencyServiceAccessPermission(String), /// <p>This exception is thrown when an operation is called on a trail from a region other than the region in which the trail was created.</p> InvalidHomeRegion(String), /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when the AWS account making the request to create or update an organization trail is not the master account for an organization in AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> NotOrganizationMasterAccount(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the trail with the given name is not found.</p> TrailNotFound(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl DeleteTrailError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteTrailError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InsufficientDependencyServiceAccessPermissionException" => { return RusotoError::Service( DeleteTrailError::InsufficientDependencyServiceAccessPermission(err.msg), ) } "InvalidHomeRegionException" => { return RusotoError::Service(DeleteTrailError::InvalidHomeRegion(err.msg)) } "InvalidTrailNameException" => { return RusotoError::Service(DeleteTrailError::InvalidTrailName(err.msg)) } "NotOrganizationMasterAccountException" => { return RusotoError::Service(DeleteTrailError::NotOrganizationMasterAccount( err.msg, )) } "OperationNotPermittedException" => { return RusotoError::Service(DeleteTrailError::OperationNotPermitted(err.msg)) } "TrailNotFoundException" => { return RusotoError::Service(DeleteTrailError::TrailNotFound(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(DeleteTrailError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteTrailError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteTrailError { fn description(&self) -> &str { match *self { DeleteTrailError::InsufficientDependencyServiceAccessPermission(ref cause) => cause, DeleteTrailError::InvalidHomeRegion(ref cause) => cause, DeleteTrailError::InvalidTrailName(ref cause) => cause, DeleteTrailError::NotOrganizationMasterAccount(ref cause) => cause, DeleteTrailError::OperationNotPermitted(ref cause) => cause, DeleteTrailError::TrailNotFound(ref cause) => cause, DeleteTrailError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by DescribeTrails #[derive(Debug, PartialEq)] pub enum DescribeTrailsError { /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl DescribeTrailsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DescribeTrailsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "OperationNotPermittedException" => { return RusotoError::Service(DescribeTrailsError::OperationNotPermitted( err.msg, )) } "UnsupportedOperationException" => { return RusotoError::Service(DescribeTrailsError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DescribeTrailsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DescribeTrailsError { fn description(&self) -> &str { match *self { DescribeTrailsError::OperationNotPermitted(ref cause) => cause, DescribeTrailsError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by GetEventSelectors #[derive(Debug, PartialEq)] pub enum GetEventSelectorsError { /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the trail with the given name is not found.</p> TrailNotFound(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl GetEventSelectorsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetEventSelectorsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidTrailNameException" => { return RusotoError::Service(GetEventSelectorsError::InvalidTrailName(err.msg)) } "OperationNotPermittedException" => { return RusotoError::Service(GetEventSelectorsError::OperationNotPermitted( err.msg, )) } "TrailNotFoundException" => { return RusotoError::Service(GetEventSelectorsError::TrailNotFound(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(GetEventSelectorsError::UnsupportedOperation( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetEventSelectorsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetEventSelectorsError { fn description(&self) -> &str { match *self { GetEventSelectorsError::InvalidTrailName(ref cause) => cause, GetEventSelectorsError::OperationNotPermitted(ref cause) => cause, GetEventSelectorsError::TrailNotFound(ref cause) => cause, GetEventSelectorsError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by GetTrailStatus #[derive(Debug, PartialEq)] pub enum GetTrailStatusError { /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when the trail with the given name is not found.</p> TrailNotFound(String), } impl GetTrailStatusError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetTrailStatusError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidTrailNameException" => { return RusotoError::Service(GetTrailStatusError::InvalidTrailName(err.msg)) } "TrailNotFoundException" => { return RusotoError::Service(GetTrailStatusError::TrailNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for GetTrailStatusError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for GetTrailStatusError { fn description(&self) -> &str { match *self { GetTrailStatusError::InvalidTrailName(ref cause) => cause, GetTrailStatusError::TrailNotFound(ref cause) => cause, } } } /// Errors returned by ListPublicKeys #[derive(Debug, PartialEq)] pub enum ListPublicKeysError { /// <p>Occurs if the timestamp values are invalid. Either the start time occurs after the end time or the time range is outside the range of possible values.</p> InvalidTimeRange(String), /// <p>Reserved for future use.</p> InvalidToken(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl ListPublicKeysError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListPublicKeysError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidTimeRangeException" => { return RusotoError::Service(ListPublicKeysError::InvalidTimeRange(err.msg)) } "InvalidTokenException" => { return RusotoError::Service(ListPublicKeysError::InvalidToken(err.msg)) } "OperationNotPermittedException" => { return RusotoError::Service(ListPublicKeysError::OperationNotPermitted( err.msg, )) } "UnsupportedOperationException" => { return RusotoError::Service(ListPublicKeysError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListPublicKeysError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListPublicKeysError { fn description(&self) -> &str { match *self { ListPublicKeysError::InvalidTimeRange(ref cause) => cause, ListPublicKeysError::InvalidToken(ref cause) => cause, ListPublicKeysError::OperationNotPermitted(ref cause) => cause, ListPublicKeysError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by ListTags #[derive(Debug, PartialEq)] pub enum ListTagsError { /// <p>This exception is thrown when an operation is called with an invalid trail ARN. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> CloudTrailARNInvalid(String), /// <p>Reserved for future use.</p> InvalidToken(String), /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the specified resource is not found.</p> ResourceNotFound(String), /// <p>This exception is thrown when the specified resource type is not supported by CloudTrail.</p> ResourceTypeNotSupported(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl ListTagsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListTagsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "CloudTrailARNInvalidException" => { return RusotoError::Service(ListTagsError::CloudTrailARNInvalid(err.msg)) } "InvalidTokenException" => { return RusotoError::Service(ListTagsError::InvalidToken(err.msg)) } "InvalidTrailNameException" => { return RusotoError::Service(ListTagsError::InvalidTrailName(err.msg)) } "OperationNotPermittedException" => { return RusotoError::Service(ListTagsError::OperationNotPermitted(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(ListTagsError::ResourceNotFound(err.msg)) } "ResourceTypeNotSupportedException" => { return RusotoError::Service(ListTagsError::ResourceTypeNotSupported(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(ListTagsError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListTagsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListTagsError { fn description(&self) -> &str { match *self { ListTagsError::CloudTrailARNInvalid(ref cause) => cause, ListTagsError::InvalidToken(ref cause) => cause, ListTagsError::InvalidTrailName(ref cause) => cause, ListTagsError::OperationNotPermitted(ref cause) => cause, ListTagsError::ResourceNotFound(ref cause) => cause, ListTagsError::ResourceTypeNotSupported(ref cause) => cause, ListTagsError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by LookupEvents #[derive(Debug, PartialEq)] pub enum LookupEventsError { /// <p>Occurs when an invalid lookup attribute is specified.</p> InvalidLookupAttributes(String), /// <p>This exception is thrown if the limit specified is invalid.</p> InvalidMaxResults(String), /// <p>Invalid token or token that was previously used in a request with different parameters. This exception is thrown if the token is invalid.</p> InvalidNextToken(String), /// <p>Occurs if the timestamp values are invalid. Either the start time occurs after the end time or the time range is outside the range of possible values.</p> InvalidTimeRange(String), } impl LookupEventsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<LookupEventsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidLookupAttributesException" => { return RusotoError::Service(LookupEventsError::InvalidLookupAttributes( err.msg, )) } "InvalidMaxResultsException" => { return RusotoError::Service(LookupEventsError::InvalidMaxResults(err.msg)) } "InvalidNextTokenException" => { return RusotoError::Service(LookupEventsError::InvalidNextToken(err.msg)) } "InvalidTimeRangeException" => { return RusotoError::Service(LookupEventsError::InvalidTimeRange(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for LookupEventsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for LookupEventsError { fn description(&self) -> &str { match *self { LookupEventsError::InvalidLookupAttributes(ref cause) => cause, LookupEventsError::InvalidMaxResults(ref cause) => cause, LookupEventsError::InvalidNextToken(ref cause) => cause, LookupEventsError::InvalidTimeRange(ref cause) => cause, } } } /// Errors returned by PutEventSelectors #[derive(Debug, PartialEq)] pub enum PutEventSelectorsError { /// <p>This exception is thrown when the IAM user or role that is used to create the organization trail is lacking one or more required permissions for creating an organization trail in a required service. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> InsufficientDependencyServiceAccessPermission(String), /// <p><p>This exception is thrown when the <code>PutEventSelectors</code> operation is called with a number of event selectors or data resources that is not valid. The combination of event selectors and data resources is not valid. A trail can have up to 5 event selectors. A trail is limited to 250 data resources. These data resources can be distributed across event selectors, but the overall total cannot exceed 250.</p> <p>You can:</p> <ul> <li> <p>Specify a valid number of event selectors (1 to 5) for a trail.</p> </li> <li> <p>Specify a valid number of data resources (1 to 250) for an event selector. The limit of number of resources on an individual event selector is configurable up to 250. However, this upper limit is allowed only if the total number of data resources does not exceed 250 across all event selectors for a trail.</p> </li> <li> <p>Specify a valid value for a parameter. For example, specifying the <code>ReadWriteType</code> parameter with a value of <code>read-only</code> is invalid.</p> </li> </ul></p> InvalidEventSelectors(String), /// <p>This exception is thrown when an operation is called on a trail from a region other than the region in which the trail was created.</p> InvalidHomeRegion(String), /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when the AWS account making the request to create or update an organization trail is not the master account for an organization in AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> NotOrganizationMasterAccount(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the trail with the given name is not found.</p> TrailNotFound(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl PutEventSelectorsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<PutEventSelectorsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InsufficientDependencyServiceAccessPermissionException" => { return RusotoError::Service( PutEventSelectorsError::InsufficientDependencyServiceAccessPermission( err.msg, ), ) } "InvalidEventSelectorsException" => { return RusotoError::Service(PutEventSelectorsError::InvalidEventSelectors( err.msg, )) } "InvalidHomeRegionException" => { return RusotoError::Service(PutEventSelectorsError::InvalidHomeRegion(err.msg)) } "InvalidTrailNameException" => { return RusotoError::Service(PutEventSelectorsError::InvalidTrailName(err.msg)) } "NotOrganizationMasterAccountException" => { return RusotoError::Service( PutEventSelectorsError::NotOrganizationMasterAccount(err.msg), ) } "OperationNotPermittedException" => { return RusotoError::Service(PutEventSelectorsError::OperationNotPermitted( err.msg, )) } "TrailNotFoundException" => { return RusotoError::Service(PutEventSelectorsError::TrailNotFound(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(PutEventSelectorsError::UnsupportedOperation( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for PutEventSelectorsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for PutEventSelectorsError { fn description(&self) -> &str { match *self { PutEventSelectorsError::InsufficientDependencyServiceAccessPermission(ref cause) => { cause } PutEventSelectorsError::InvalidEventSelectors(ref cause) => cause, PutEventSelectorsError::InvalidHomeRegion(ref cause) => cause, PutEventSelectorsError::InvalidTrailName(ref cause) => cause, PutEventSelectorsError::NotOrganizationMasterAccount(ref cause) => cause, PutEventSelectorsError::OperationNotPermitted(ref cause) => cause, PutEventSelectorsError::TrailNotFound(ref cause) => cause, PutEventSelectorsError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by RemoveTags #[derive(Debug, PartialEq)] pub enum RemoveTagsError { /// <p>This exception is thrown when an operation is called with an invalid trail ARN. The format of a trail ARN is:</p> <p> <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code> </p> CloudTrailARNInvalid(String), /// <p>This exception is thrown when the key or value specified for the tag does not match the regular expression <code>^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$</code>.</p> InvalidTagParameter(String), /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when the AWS account making the request to create or update an organization trail is not the master account for an organization in AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> NotOrganizationMasterAccount(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the specified resource is not found.</p> ResourceNotFound(String), /// <p>This exception is thrown when the specified resource type is not supported by CloudTrail.</p> ResourceTypeNotSupported(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl RemoveTagsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<RemoveTagsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "CloudTrailARNInvalidException" => { return RusotoError::Service(RemoveTagsError::CloudTrailARNInvalid(err.msg)) } "InvalidTagParameterException" => { return RusotoError::Service(RemoveTagsError::InvalidTagParameter(err.msg)) } "InvalidTrailNameException" => { return RusotoError::Service(RemoveTagsError::InvalidTrailName(err.msg)) } "NotOrganizationMasterAccountException" => { return RusotoError::Service(RemoveTagsError::NotOrganizationMasterAccount( err.msg, )) } "OperationNotPermittedException" => { return RusotoError::Service(RemoveTagsError::OperationNotPermitted(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(RemoveTagsError::ResourceNotFound(err.msg)) } "ResourceTypeNotSupportedException" => { return RusotoError::Service(RemoveTagsError::ResourceTypeNotSupported(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(RemoveTagsError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for RemoveTagsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for RemoveTagsError { fn description(&self) -> &str { match *self { RemoveTagsError::CloudTrailARNInvalid(ref cause) => cause, RemoveTagsError::InvalidTagParameter(ref cause) => cause, RemoveTagsError::InvalidTrailName(ref cause) => cause, RemoveTagsError::NotOrganizationMasterAccount(ref cause) => cause, RemoveTagsError::OperationNotPermitted(ref cause) => cause, RemoveTagsError::ResourceNotFound(ref cause) => cause, RemoveTagsError::ResourceTypeNotSupported(ref cause) => cause, RemoveTagsError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by StartLogging #[derive(Debug, PartialEq)] pub enum StartLoggingError { /// <p>This exception is thrown when the IAM user or role that is used to create the organization trail is lacking one or more required permissions for creating an organization trail in a required service. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> InsufficientDependencyServiceAccessPermission(String), /// <p>This exception is thrown when an operation is called on a trail from a region other than the region in which the trail was created.</p> InvalidHomeRegion(String), /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when the AWS account making the request to create or update an organization trail is not the master account for an organization in AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> NotOrganizationMasterAccount(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the trail with the given name is not found.</p> TrailNotFound(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl StartLoggingError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<StartLoggingError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InsufficientDependencyServiceAccessPermissionException" => { return RusotoError::Service( StartLoggingError::InsufficientDependencyServiceAccessPermission(err.msg), ) } "InvalidHomeRegionException" => { return RusotoError::Service(StartLoggingError::InvalidHomeRegion(err.msg)) } "InvalidTrailNameException" => { return RusotoError::Service(StartLoggingError::InvalidTrailName(err.msg)) } "NotOrganizationMasterAccountException" => { return RusotoError::Service(StartLoggingError::NotOrganizationMasterAccount( err.msg, )) } "OperationNotPermittedException" => { return RusotoError::Service(StartLoggingError::OperationNotPermitted(err.msg)) } "TrailNotFoundException" => { return RusotoError::Service(StartLoggingError::TrailNotFound(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(StartLoggingError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for StartLoggingError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for StartLoggingError { fn description(&self) -> &str { match *self { StartLoggingError::InsufficientDependencyServiceAccessPermission(ref cause) => cause, StartLoggingError::InvalidHomeRegion(ref cause) => cause, StartLoggingError::InvalidTrailName(ref cause) => cause, StartLoggingError::NotOrganizationMasterAccount(ref cause) => cause, StartLoggingError::OperationNotPermitted(ref cause) => cause, StartLoggingError::TrailNotFound(ref cause) => cause, StartLoggingError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by StopLogging #[derive(Debug, PartialEq)] pub enum StopLoggingError { /// <p>This exception is thrown when the IAM user or role that is used to create the organization trail is lacking one or more required permissions for creating an organization trail in a required service. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> InsufficientDependencyServiceAccessPermission(String), /// <p>This exception is thrown when an operation is called on a trail from a region other than the region in which the trail was created.</p> InvalidHomeRegion(String), /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when the AWS account making the request to create or update an organization trail is not the master account for an organization in AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> NotOrganizationMasterAccount(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when the trail with the given name is not found.</p> TrailNotFound(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl StopLoggingError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<StopLoggingError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InsufficientDependencyServiceAccessPermissionException" => { return RusotoError::Service( StopLoggingError::InsufficientDependencyServiceAccessPermission(err.msg), ) } "InvalidHomeRegionException" => { return RusotoError::Service(StopLoggingError::InvalidHomeRegion(err.msg)) } "InvalidTrailNameException" => { return RusotoError::Service(StopLoggingError::InvalidTrailName(err.msg)) } "NotOrganizationMasterAccountException" => { return RusotoError::Service(StopLoggingError::NotOrganizationMasterAccount( err.msg, )) } "OperationNotPermittedException" => { return RusotoError::Service(StopLoggingError::OperationNotPermitted(err.msg)) } "TrailNotFoundException" => { return RusotoError::Service(StopLoggingError::TrailNotFound(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(StopLoggingError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for StopLoggingError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for StopLoggingError { fn description(&self) -> &str { match *self { StopLoggingError::InsufficientDependencyServiceAccessPermission(ref cause) => cause, StopLoggingError::InvalidHomeRegion(ref cause) => cause, StopLoggingError::InvalidTrailName(ref cause) => cause, StopLoggingError::NotOrganizationMasterAccount(ref cause) => cause, StopLoggingError::OperationNotPermitted(ref cause) => cause, StopLoggingError::TrailNotFound(ref cause) => cause, StopLoggingError::UnsupportedOperation(ref cause) => cause, } } } /// Errors returned by UpdateTrail #[derive(Debug, PartialEq)] pub enum UpdateTrailError { /// <p>This exception is thrown when trusted access has not been enabled between AWS CloudTrail and AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_integrate_services.html">Enabling Trusted Access with Other AWS Services</a> and <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>. </p> CloudTrailAccessNotEnabled(String), /// <p>Cannot set a CloudWatch Logs delivery for this region.</p> CloudWatchLogsDeliveryUnavailable(String), /// <p>This exception is thrown when the IAM user or role that is used to create the organization trail is lacking one or more required permissions for creating an organization trail in a required service. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> InsufficientDependencyServiceAccessPermission(String), /// <p>This exception is thrown when the policy on the S3 bucket or KMS key is not sufficient.</p> InsufficientEncryptionPolicy(String), /// <p>This exception is thrown when the policy on the S3 bucket is not sufficient.</p> InsufficientS3BucketPolicy(String), /// <p>This exception is thrown when the policy on the SNS topic is not sufficient.</p> InsufficientSnsTopicPolicy(String), /// <p>This exception is thrown when the provided CloudWatch log group is not valid.</p> InvalidCloudWatchLogsLogGroupArn(String), /// <p>This exception is thrown when the provided role is not valid.</p> InvalidCloudWatchLogsRoleArn(String), /// <p>This exception is thrown when an operation is called on a trail from a region other than the region in which the trail was created.</p> InvalidHomeRegion(String), /// <p>This exception is thrown when the KMS key ARN is invalid.</p> InvalidKmsKeyId(String), /// <p>This exception is thrown when the combination of parameters provided is not valid.</p> InvalidParameterCombination(String), /// <p>This exception is thrown when the provided S3 bucket name is not valid.</p> InvalidS3BucketName(String), /// <p>This exception is thrown when the provided S3 prefix is not valid.</p> InvalidS3Prefix(String), /// <p>This exception is thrown when the provided SNS topic name is not valid.</p> InvalidSnsTopicName(String), /// <p><p>This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:</p> <ul> <li> <p>Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (<em>), or dashes (-)</p> </li> <li> <p>Start with a letter or number, and end with a letter or number</p> </li> <li> <p>Be between 3 and 128 characters</p> </li> <li> <p>Have no adjacent periods, underscores or dashes. Names like <code>my-</em>namespace</code> and <code>my--namespace</code> are invalid.</p> </li> <li> <p>Not be in IP address format (for example, 192.168.5.4)</p> </li> </ul></p> InvalidTrailName(String), /// <p>This exception is thrown when there is an issue with the specified KMS key and the trail can’t be updated.</p> Kms(String), /// <p>This exception is deprecated.</p> KmsKeyDisabled(String), /// <p>This exception is thrown when the KMS key does not exist, or when the S3 bucket and the KMS key are not in the same region.</p> KmsKeyNotFound(String), /// <p>This exception is thrown when the AWS account making the request to create or update an organization trail is not the master account for an organization in AWS Organizations. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> NotOrganizationMasterAccount(String), /// <p>This exception is thrown when the requested operation is not permitted.</p> OperationNotPermitted(String), /// <p>This exception is thrown when AWS Organizations is not configured to support all features. All features must be enabled in AWS Organization to support creating an organization trail. For more information, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/creating-an-organizational-trail-prepare.html">Prepare For Creating a Trail For Your Organization</a>.</p> OrganizationNotInAllFeaturesMode(String), /// <p>This exception is thrown when the request is made from an AWS account that is not a member of an organization. To make this request, sign in using the credentials of an account that belongs to an organization.</p> OrganizationsNotInUse(String), /// <p>This exception is thrown when the specified S3 bucket does not exist.</p> S3BucketDoesNotExist(String), /// <p>This exception is thrown when the trail with the given name is not found.</p> TrailNotFound(String), /// <p>This exception is deprecated.</p> TrailNotProvided(String), /// <p>This exception is thrown when the requested operation is not supported.</p> UnsupportedOperation(String), } impl UpdateTrailError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateTrailError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "CloudTrailAccessNotEnabledException" => { return RusotoError::Service(UpdateTrailError::CloudTrailAccessNotEnabled( err.msg, )) } "CloudWatchLogsDeliveryUnavailableException" => { return RusotoError::Service( UpdateTrailError::CloudWatchLogsDeliveryUnavailable(err.msg), ) } "InsufficientDependencyServiceAccessPermissionException" => { return RusotoError::Service( UpdateTrailError::InsufficientDependencyServiceAccessPermission(err.msg), ) } "InsufficientEncryptionPolicyException" => { return RusotoError::Service(UpdateTrailError::InsufficientEncryptionPolicy( err.msg, )) } "InsufficientS3BucketPolicyException" => { return RusotoError::Service(UpdateTrailError::InsufficientS3BucketPolicy( err.msg, )) } "InsufficientSnsTopicPolicyException" => { return RusotoError::Service(UpdateTrailError::InsufficientSnsTopicPolicy( err.msg, )) } "InvalidCloudWatchLogsLogGroupArnException" => { return RusotoError::Service( UpdateTrailError::InvalidCloudWatchLogsLogGroupArn(err.msg), ) } "InvalidCloudWatchLogsRoleArnException" => { return RusotoError::Service(UpdateTrailError::InvalidCloudWatchLogsRoleArn( err.msg, )) } "InvalidHomeRegionException" => { return RusotoError::Service(UpdateTrailError::InvalidHomeRegion(err.msg)) } "InvalidKmsKeyIdException" => { return RusotoError::Service(UpdateTrailError::InvalidKmsKeyId(err.msg)) } "InvalidParameterCombinationException" => { return RusotoError::Service(UpdateTrailError::InvalidParameterCombination( err.msg, )) } "InvalidS3BucketNameException" => { return RusotoError::Service(UpdateTrailError::InvalidS3BucketName(err.msg)) } "InvalidS3PrefixException" => { return RusotoError::Service(UpdateTrailError::InvalidS3Prefix(err.msg)) } "InvalidSnsTopicNameException" => { return RusotoError::Service(UpdateTrailError::InvalidSnsTopicName(err.msg)) } "InvalidTrailNameException" => { return RusotoError::Service(UpdateTrailError::InvalidTrailName(err.msg)) } "KmsException" => return RusotoError::Service(UpdateTrailError::Kms(err.msg)), "KmsKeyDisabledException" => { return RusotoError::Service(UpdateTrailError::KmsKeyDisabled(err.msg)) } "KmsKeyNotFoundException" => { return RusotoError::Service(UpdateTrailError::KmsKeyNotFound(err.msg)) } "NotOrganizationMasterAccountException" => { return RusotoError::Service(UpdateTrailError::NotOrganizationMasterAccount( err.msg, )) } "OperationNotPermittedException" => { return RusotoError::Service(UpdateTrailError::OperationNotPermitted(err.msg)) } "OrganizationNotInAllFeaturesModeException" => { return RusotoError::Service( UpdateTrailError::OrganizationNotInAllFeaturesMode(err.msg), ) } "OrganizationsNotInUseException" => { return RusotoError::Service(UpdateTrailError::OrganizationsNotInUse(err.msg)) } "S3BucketDoesNotExistException" => { return RusotoError::Service(UpdateTrailError::S3BucketDoesNotExist(err.msg)) } "TrailNotFoundException" => { return RusotoError::Service(UpdateTrailError::TrailNotFound(err.msg)) } "TrailNotProvidedException" => { return RusotoError::Service(UpdateTrailError::TrailNotProvided(err.msg)) } "UnsupportedOperationException" => { return RusotoError::Service(UpdateTrailError::UnsupportedOperation(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UpdateTrailError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UpdateTrailError { fn description(&self) -> &str { match *self { UpdateTrailError::CloudTrailAccessNotEnabled(ref cause) => cause, UpdateTrailError::CloudWatchLogsDeliveryUnavailable(ref cause) => cause, UpdateTrailError::InsufficientDependencyServiceAccessPermission(ref cause) => cause, UpdateTrailError::InsufficientEncryptionPolicy(ref cause) => cause, UpdateTrailError::InsufficientS3BucketPolicy(ref cause) => cause, UpdateTrailError::InsufficientSnsTopicPolicy(ref cause) => cause, UpdateTrailError::InvalidCloudWatchLogsLogGroupArn(ref cause) => cause, UpdateTrailError::InvalidCloudWatchLogsRoleArn(ref cause) => cause, UpdateTrailError::InvalidHomeRegion(ref cause) => cause, UpdateTrailError::InvalidKmsKeyId(ref cause) => cause, UpdateTrailError::InvalidParameterCombination(ref cause) => cause, UpdateTrailError::InvalidS3BucketName(ref cause) => cause, UpdateTrailError::InvalidS3Prefix(ref cause) => cause, UpdateTrailError::InvalidSnsTopicName(ref cause) => cause, UpdateTrailError::InvalidTrailName(ref cause) => cause, UpdateTrailError::Kms(ref cause) => cause, UpdateTrailError::KmsKeyDisabled(ref cause) => cause, UpdateTrailError::KmsKeyNotFound(ref cause) => cause, UpdateTrailError::NotOrganizationMasterAccount(ref cause) => cause, UpdateTrailError::OperationNotPermitted(ref cause) => cause, UpdateTrailError::OrganizationNotInAllFeaturesMode(ref cause) => cause, UpdateTrailError::OrganizationsNotInUse(ref cause) => cause, UpdateTrailError::S3BucketDoesNotExist(ref cause) => cause, UpdateTrailError::TrailNotFound(ref cause) => cause, UpdateTrailError::TrailNotProvided(ref cause) => cause, UpdateTrailError::UnsupportedOperation(ref cause) => cause, } } } /// Trait representing the capabilities of the CloudTrail API. CloudTrail clients implement this trait. pub trait CloudTrail { /// <p>Adds one or more tags to a trail, up to a limit of 50. Tags must be unique per trail. Overwrites an existing tag's value when a new value is specified for an existing tag key. If you specify a key without a value, the tag will be created with the specified key and a value of null. You can tag a trail that applies to all regions only from the region in which the trail was created (that is, from its home region).</p> fn add_tags(&self, input: AddTagsRequest) -> RusotoFuture<AddTagsResponse, AddTagsError>; /// <p>Creates a trail that specifies the settings for delivery of log data to an Amazon S3 bucket. A maximum of five trails can exist in a region, irrespective of the region in which they were created.</p> fn create_trail( &self, input: CreateTrailRequest, ) -> RusotoFuture<CreateTrailResponse, CreateTrailError>; /// <p>Deletes a trail. This operation must be called from the region in which the trail was created. <code>DeleteTrail</code> cannot be called on the shadow trails (replicated trails in other regions) of a trail that is enabled in all regions.</p> fn delete_trail( &self, input: DeleteTrailRequest, ) -> RusotoFuture<DeleteTrailResponse, DeleteTrailError>; /// <p>Retrieves settings for the trail associated with the current region for your account.</p> fn describe_trails( &self, input: DescribeTrailsRequest, ) -> RusotoFuture<DescribeTrailsResponse, DescribeTrailsError>; /// <p>Describes the settings for the event selectors that you configured for your trail. The information returned for your event selectors includes the following:</p> <ul> <li> <p>If your event selector includes read-only events, write-only events, or all events. This applies to both management events and data events.</p> </li> <li> <p>If your event selector includes management events.</p> </li> <li> <p>If your event selector includes data events, the Amazon S3 objects or AWS Lambda functions that you are logging for data events.</p> </li> </ul> <p>For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html">Logging Data and Management Events for Trails </a> in the <i>AWS CloudTrail User Guide</i>.</p> fn get_event_selectors( &self, input: GetEventSelectorsRequest, ) -> RusotoFuture<GetEventSelectorsResponse, GetEventSelectorsError>; /// <p>Returns a JSON-formatted list of information about the specified trail. Fields include information on delivery errors, Amazon SNS and Amazon S3 errors, and start and stop logging times for each trail. This operation returns trail status from a single region. To return trail status from all regions, you must call the operation on each region.</p> fn get_trail_status( &self, input: GetTrailStatusRequest, ) -> RusotoFuture<GetTrailStatusResponse, GetTrailStatusError>; /// <p><p>Returns all public keys whose private keys were used to sign the digest files within the specified time range. The public key is needed to validate digest files that were signed with its corresponding private key.</p> <note> <p>CloudTrail uses different private/public key pairs per region. Each digest file is signed with a private key unique to its region. Therefore, when you validate a digest file from a particular region, you must look in the same region for its corresponding public key.</p> </note></p> fn list_public_keys( &self, input: ListPublicKeysRequest, ) -> RusotoFuture<ListPublicKeysResponse, ListPublicKeysError>; /// <p>Lists the tags for the trail in the current region.</p> fn list_tags(&self, input: ListTagsRequest) -> RusotoFuture<ListTagsResponse, ListTagsError>; /// <p><p>Looks up <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-concepts.html#cloudtrail-concepts-management-events">management events</a> captured by CloudTrail. Events for a region can be looked up in that region during the last 90 days. Lookup supports the following attributes:</p> <ul> <li> <p>AWS access key</p> </li> <li> <p>Event ID</p> </li> <li> <p>Event name</p> </li> <li> <p>Event source</p> </li> <li> <p>Read only</p> </li> <li> <p>Resource name</p> </li> <li> <p>Resource type</p> </li> <li> <p>User name</p> </li> </ul> <p>All attributes are optional. The default number of results returned is 50, with a maximum of 50 possible. The response includes a token that you can use to get the next page of results.</p> <important> <p>The rate of lookup requests is limited to one per second per account. If this limit is exceeded, a throttling error occurs.</p> </important> <important> <p>Events that occurred during the selected time range will not be available for lookup if CloudTrail logging was not enabled when the events occurred.</p> </important></p> fn lookup_events( &self, input: LookupEventsRequest, ) -> RusotoFuture<LookupEventsResponse, LookupEventsError>; /// <p>Configures an event selector for your trail. Use event selectors to further specify the management and data event settings for your trail. By default, trails created without specific event selectors will be configured to log all read and write management events, and no data events. </p> <p>When an event occurs in your account, CloudTrail evaluates the event selectors in all trails. For each trail, if the event matches any event selector, the trail processes and logs the event. If the event doesn't match any event selector, the trail doesn't log the event. </p> <p>Example</p> <ol> <li> <p>You create an event selector for a trail and specify that you want write-only events.</p> </li> <li> <p>The EC2 <code>GetConsoleOutput</code> and <code>RunInstances</code> API operations occur in your account.</p> </li> <li> <p>CloudTrail evaluates whether the events match your event selectors.</p> </li> <li> <p>The <code>RunInstances</code> is a write-only event and it matches your event selector. The trail logs the event.</p> </li> <li> <p>The <code>GetConsoleOutput</code> is a read-only event but it doesn't match your event selector. The trail doesn't log the event. </p> </li> </ol> <p>The <code>PutEventSelectors</code> operation must be called from the region in which the trail was created; otherwise, an <code>InvalidHomeRegionException</code> is thrown.</p> <p>You can configure up to five event selectors for each trail. For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html">Logging Data and Management Events for Trails </a> and <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html">Limits in AWS CloudTrail</a> in the <i>AWS CloudTrail User Guide</i>.</p> fn put_event_selectors( &self, input: PutEventSelectorsRequest, ) -> RusotoFuture<PutEventSelectorsResponse, PutEventSelectorsError>; /// <p>Removes the specified tags from a trail.</p> fn remove_tags( &self, input: RemoveTagsRequest, ) -> RusotoFuture<RemoveTagsResponse, RemoveTagsError>; /// <p>Starts the recording of AWS API calls and log file delivery for a trail. For a trail that is enabled in all regions, this operation must be called from the region in which the trail was created. This operation cannot be called on the shadow trails (replicated trails in other regions) of a trail that is enabled in all regions.</p> fn start_logging( &self, input: StartLoggingRequest, ) -> RusotoFuture<StartLoggingResponse, StartLoggingError>; /// <p>Suspends the recording of AWS API calls and log file delivery for the specified trail. Under most circumstances, there is no need to use this action. You can update a trail without stopping it first. This action is the only way to stop recording. For a trail enabled in all regions, this operation must be called from the region in which the trail was created, or an <code>InvalidHomeRegionException</code> will occur. This operation cannot be called on the shadow trails (replicated trails in other regions) of a trail enabled in all regions.</p> fn stop_logging( &self, input: StopLoggingRequest, ) -> RusotoFuture<StopLoggingResponse, StopLoggingError>; /// <p>Updates the settings that specify delivery of log files. Changes to a trail do not require stopping the CloudTrail service. Use this action to designate an existing bucket for log delivery. If the existing bucket has previously been a target for CloudTrail log files, an IAM policy exists for the bucket. <code>UpdateTrail</code> must be called from the region in which the trail was created; otherwise, an <code>InvalidHomeRegionException</code> is thrown.</p> fn update_trail( &self, input: UpdateTrailRequest, ) -> RusotoFuture<UpdateTrailResponse, UpdateTrailError>; } /// A client for the CloudTrail API. #[derive(Clone)] pub struct CloudTrailClient { client: Client, region: region::Region, } impl CloudTrailClient { /// 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) -> CloudTrailClient { CloudTrailClient { client: Client::shared(), region, } } pub fn new_with<P, D>( request_dispatcher: D, credentials_provider: P, region: region::Region, ) -> CloudTrailClient where P: ProvideAwsCredentials + Send + Sync + 'static, P::Future: Send, D: DispatchSignedRequest + Send + Sync + 'static, D::Future: Send, { CloudTrailClient { client: Client::new_with(credentials_provider, request_dispatcher), region, } } } impl CloudTrail for CloudTrailClient { /// <p>Adds one or more tags to a trail, up to a limit of 50. Tags must be unique per trail. Overwrites an existing tag's value when a new value is specified for an existing tag key. If you specify a key without a value, the tag will be created with the specified key and a value of null. You can tag a trail that applies to all regions only from the region in which the trail was created (that is, from its home region).</p> fn add_tags(&self, input: AddTagsRequest) -> RusotoFuture<AddTagsResponse, AddTagsError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.AddTags", ); 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::<AddTagsResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(AddTagsError::from_response(response))), ) } }) } /// <p>Creates a trail that specifies the settings for delivery of log data to an Amazon S3 bucket. A maximum of five trails can exist in a region, irrespective of the region in which they were created.</p> fn create_trail( &self, input: CreateTrailRequest, ) -> RusotoFuture<CreateTrailResponse, CreateTrailError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.CreateTrail", ); 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::<CreateTrailResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(CreateTrailError::from_response(response))), ) } }) } /// <p>Deletes a trail. This operation must be called from the region in which the trail was created. <code>DeleteTrail</code> cannot be called on the shadow trails (replicated trails in other regions) of a trail that is enabled in all regions.</p> fn delete_trail( &self, input: DeleteTrailRequest, ) -> RusotoFuture<DeleteTrailResponse, DeleteTrailError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.DeleteTrail", ); 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::<DeleteTrailResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteTrailError::from_response(response))), ) } }) } /// <p>Retrieves settings for the trail associated with the current region for your account.</p> fn describe_trails( &self, input: DescribeTrailsRequest, ) -> RusotoFuture<DescribeTrailsResponse, DescribeTrailsError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.DescribeTrails", ); 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::<DescribeTrailsResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DescribeTrailsError::from_response(response))), ) } }) } /// <p>Describes the settings for the event selectors that you configured for your trail. The information returned for your event selectors includes the following:</p> <ul> <li> <p>If your event selector includes read-only events, write-only events, or all events. This applies to both management events and data events.</p> </li> <li> <p>If your event selector includes management events.</p> </li> <li> <p>If your event selector includes data events, the Amazon S3 objects or AWS Lambda functions that you are logging for data events.</p> </li> </ul> <p>For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html">Logging Data and Management Events for Trails </a> in the <i>AWS CloudTrail User Guide</i>.</p> fn get_event_selectors( &self, input: GetEventSelectorsRequest, ) -> RusotoFuture<GetEventSelectorsResponse, GetEventSelectorsError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.GetEventSelectors", ); 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::<GetEventSelectorsResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetEventSelectorsError::from_response(response))), ) } }) } /// <p>Returns a JSON-formatted list of information about the specified trail. Fields include information on delivery errors, Amazon SNS and Amazon S3 errors, and start and stop logging times for each trail. This operation returns trail status from a single region. To return trail status from all regions, you must call the operation on each region.</p> fn get_trail_status( &self, input: GetTrailStatusRequest, ) -> RusotoFuture<GetTrailStatusResponse, GetTrailStatusError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.GetTrailStatus", ); 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::<GetTrailStatusResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(GetTrailStatusError::from_response(response))), ) } }) } /// <p><p>Returns all public keys whose private keys were used to sign the digest files within the specified time range. The public key is needed to validate digest files that were signed with its corresponding private key.</p> <note> <p>CloudTrail uses different private/public key pairs per region. Each digest file is signed with a private key unique to its region. Therefore, when you validate a digest file from a particular region, you must look in the same region for its corresponding public key.</p> </note></p> fn list_public_keys( &self, input: ListPublicKeysRequest, ) -> RusotoFuture<ListPublicKeysResponse, ListPublicKeysError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.ListPublicKeys", ); 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::<ListPublicKeysResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListPublicKeysError::from_response(response))), ) } }) } /// <p>Lists the tags for the trail in the current region.</p> fn list_tags(&self, input: ListTagsRequest) -> RusotoFuture<ListTagsResponse, ListTagsError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.ListTags", ); 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::<ListTagsResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListTagsError::from_response(response))), ) } }) } /// <p><p>Looks up <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-concepts.html#cloudtrail-concepts-management-events">management events</a> captured by CloudTrail. Events for a region can be looked up in that region during the last 90 days. Lookup supports the following attributes:</p> <ul> <li> <p>AWS access key</p> </li> <li> <p>Event ID</p> </li> <li> <p>Event name</p> </li> <li> <p>Event source</p> </li> <li> <p>Read only</p> </li> <li> <p>Resource name</p> </li> <li> <p>Resource type</p> </li> <li> <p>User name</p> </li> </ul> <p>All attributes are optional. The default number of results returned is 50, with a maximum of 50 possible. The response includes a token that you can use to get the next page of results.</p> <important> <p>The rate of lookup requests is limited to one per second per account. If this limit is exceeded, a throttling error occurs.</p> </important> <important> <p>Events that occurred during the selected time range will not be available for lookup if CloudTrail logging was not enabled when the events occurred.</p> </important></p> fn lookup_events( &self, input: LookupEventsRequest, ) -> RusotoFuture<LookupEventsResponse, LookupEventsError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.LookupEvents", ); 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::<LookupEventsResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(LookupEventsError::from_response(response))), ) } }) } /// <p>Configures an event selector for your trail. Use event selectors to further specify the management and data event settings for your trail. By default, trails created without specific event selectors will be configured to log all read and write management events, and no data events. </p> <p>When an event occurs in your account, CloudTrail evaluates the event selectors in all trails. For each trail, if the event matches any event selector, the trail processes and logs the event. If the event doesn't match any event selector, the trail doesn't log the event. </p> <p>Example</p> <ol> <li> <p>You create an event selector for a trail and specify that you want write-only events.</p> </li> <li> <p>The EC2 <code>GetConsoleOutput</code> and <code>RunInstances</code> API operations occur in your account.</p> </li> <li> <p>CloudTrail evaluates whether the events match your event selectors.</p> </li> <li> <p>The <code>RunInstances</code> is a write-only event and it matches your event selector. The trail logs the event.</p> </li> <li> <p>The <code>GetConsoleOutput</code> is a read-only event but it doesn't match your event selector. The trail doesn't log the event. </p> </li> </ol> <p>The <code>PutEventSelectors</code> operation must be called from the region in which the trail was created; otherwise, an <code>InvalidHomeRegionException</code> is thrown.</p> <p>You can configure up to five event selectors for each trail. For more information, see <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/logging-management-and-data-events-with-cloudtrail.html">Logging Data and Management Events for Trails </a> and <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/WhatIsCloudTrail-Limits.html">Limits in AWS CloudTrail</a> in the <i>AWS CloudTrail User Guide</i>.</p> fn put_event_selectors( &self, input: PutEventSelectorsRequest, ) -> RusotoFuture<PutEventSelectorsResponse, PutEventSelectorsError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.PutEventSelectors", ); 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::<PutEventSelectorsResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(PutEventSelectorsError::from_response(response))), ) } }) } /// <p>Removes the specified tags from a trail.</p> fn remove_tags( &self, input: RemoveTagsRequest, ) -> RusotoFuture<RemoveTagsResponse, RemoveTagsError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.RemoveTags", ); 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::<RemoveTagsResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(RemoveTagsError::from_response(response))), ) } }) } /// <p>Starts the recording of AWS API calls and log file delivery for a trail. For a trail that is enabled in all regions, this operation must be called from the region in which the trail was created. This operation cannot be called on the shadow trails (replicated trails in other regions) of a trail that is enabled in all regions.</p> fn start_logging( &self, input: StartLoggingRequest, ) -> RusotoFuture<StartLoggingResponse, StartLoggingError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.StartLogging", ); 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::<StartLoggingResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(StartLoggingError::from_response(response))), ) } }) } /// <p>Suspends the recording of AWS API calls and log file delivery for the specified trail. Under most circumstances, there is no need to use this action. You can update a trail without stopping it first. This action is the only way to stop recording. For a trail enabled in all regions, this operation must be called from the region in which the trail was created, or an <code>InvalidHomeRegionException</code> will occur. This operation cannot be called on the shadow trails (replicated trails in other regions) of a trail enabled in all regions.</p> fn stop_logging( &self, input: StopLoggingRequest, ) -> RusotoFuture<StopLoggingResponse, StopLoggingError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.StopLogging", ); 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::<StopLoggingResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(StopLoggingError::from_response(response))), ) } }) } /// <p>Updates the settings that specify delivery of log files. Changes to a trail do not require stopping the CloudTrail service. Use this action to designate an existing bucket for log delivery. If the existing bucket has previously been a target for CloudTrail log files, an IAM policy exists for the bucket. <code>UpdateTrail</code> must be called from the region in which the trail was created; otherwise, an <code>InvalidHomeRegionException</code> is thrown.</p> fn update_trail( &self, input: UpdateTrailRequest, ) -> RusotoFuture<UpdateTrailResponse, UpdateTrailError> { let mut request = SignedRequest::new("POST", "cloudtrail", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.UpdateTrail", ); 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::<UpdateTrailResponse, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(UpdateTrailError::from_response(response))), ) } }) } }