1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729
// ================================================================= // // * WARNING * // // This file is generated! // // Changes made to this file will be overwritten. If changes are // required to the generated code, the service_crategen project // must be updated to generate the changes. // // ================================================================= use std::error::Error; use std::fmt; #[allow(warnings)] use futures::future; use futures::Future; use rusoto_core::credential::ProvideAwsCredentials; use rusoto_core::region; use rusoto_core::request::{BufferedHttpResponse, DispatchSignedRequest}; use rusoto_core::{Client, RusotoError, RusotoFuture}; use rusoto_core::proto; use rusoto_core::signature::SignedRequest; use serde_json; #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct BatchDeleteBuildsInput { /// <p>The IDs of the builds to delete.</p> #[serde(rename = "ids")] pub ids: Vec<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BatchDeleteBuildsOutput { /// <p>The IDs of the builds that were successfully deleted.</p> #[serde(rename = "buildsDeleted")] #[serde(skip_serializing_if = "Option::is_none")] pub builds_deleted: Option<Vec<String>>, /// <p>Information about any builds that could not be successfully deleted.</p> #[serde(rename = "buildsNotDeleted")] #[serde(skip_serializing_if = "Option::is_none")] pub builds_not_deleted: Option<Vec<BuildNotDeleted>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct BatchGetBuildsInput { /// <p>The IDs of the builds.</p> #[serde(rename = "ids")] pub ids: Vec<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BatchGetBuildsOutput { /// <p>Information about the requested builds.</p> #[serde(rename = "builds")] #[serde(skip_serializing_if = "Option::is_none")] pub builds: Option<Vec<Build>>, /// <p>The IDs of builds for which information could not be found.</p> #[serde(rename = "buildsNotFound")] #[serde(skip_serializing_if = "Option::is_none")] pub builds_not_found: Option<Vec<String>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct BatchGetProjectsInput { /// <p>The names of the build projects.</p> #[serde(rename = "names")] pub names: Vec<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BatchGetProjectsOutput { /// <p>Information about the requested build projects.</p> #[serde(rename = "projects")] #[serde(skip_serializing_if = "Option::is_none")] pub projects: Option<Vec<Project>>, /// <p>The names of build projects for which information could not be found.</p> #[serde(rename = "projectsNotFound")] #[serde(skip_serializing_if = "Option::is_none")] pub projects_not_found: Option<Vec<String>>, } /// <p>Information about a build.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Build { /// <p>The Amazon Resource Name (ARN) of the build.</p> #[serde(rename = "arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p>Information about the output artifacts for the build.</p> #[serde(rename = "artifacts")] #[serde(skip_serializing_if = "Option::is_none")] pub artifacts: Option<BuildArtifacts>, /// <p>Whether the build is complete. True if complete; otherwise, false.</p> #[serde(rename = "buildComplete")] #[serde(skip_serializing_if = "Option::is_none")] pub build_complete: Option<bool>, /// <p><p>The current status of the build. Valid values include:</p> <ul> <li> <p> <code>FAILED</code>: The build failed.</p> </li> <li> <p> <code>FAULT</code>: The build faulted.</p> </li> <li> <p> <code>IN<em>PROGRESS</code>: The build is still in progress.</p> </li> <li> <p> <code>STOPPED</code>: The build stopped.</p> </li> <li> <p> <code>SUCCEEDED</code>: The build succeeded.</p> </li> <li> <p> <code>TIMED</em>OUT</code>: The build timed out.</p> </li> </ul></p> #[serde(rename = "buildStatus")] #[serde(skip_serializing_if = "Option::is_none")] pub build_status: Option<String>, /// <p>Information about the cache for the build.</p> #[serde(rename = "cache")] #[serde(skip_serializing_if = "Option::is_none")] pub cache: Option<ProjectCache>, /// <p>The current build phase.</p> #[serde(rename = "currentPhase")] #[serde(skip_serializing_if = "Option::is_none")] pub current_phase: Option<String>, /// <p>The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.</p> <note> <p> You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. </p> </note> <p>You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format <code>alias/<i>alias-name</i> </code>).</p> #[serde(rename = "encryptionKey")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_key: Option<String>, /// <p>When the build process ended, expressed in Unix time format.</p> #[serde(rename = "endTime")] #[serde(skip_serializing_if = "Option::is_none")] pub end_time: Option<f64>, /// <p>Information about the build environment for this build.</p> #[serde(rename = "environment")] #[serde(skip_serializing_if = "Option::is_none")] pub environment: Option<ProjectEnvironment>, /// <p>The unique ID for the build.</p> #[serde(rename = "id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p><p>The entity that started the build. Valid values include:</p> <ul> <li> <p>If AWS CodePipeline started the build, the pipeline's name (for example, <code>codepipeline/my-demo-pipeline</code>).</p> </li> <li> <p>If an AWS Identity and Access Management (IAM) user started the build, the user's name (for example, <code>MyUserName</code>).</p> </li> <li> <p>If the Jenkins plugin for AWS CodeBuild started the build, the string <code>CodeBuild-Jenkins-Plugin</code>.</p> </li> </ul></p> #[serde(rename = "initiator")] #[serde(skip_serializing_if = "Option::is_none")] pub initiator: Option<String>, /// <p>Information about the build's logs in Amazon CloudWatch Logs.</p> #[serde(rename = "logs")] #[serde(skip_serializing_if = "Option::is_none")] pub logs: Option<LogsLocation>, /// <p>Describes a network interface.</p> #[serde(rename = "networkInterface")] #[serde(skip_serializing_if = "Option::is_none")] pub network_interface: Option<NetworkInterface>, /// <p>Information about all previous build phases that are complete and information about any current build phase that is not yet complete.</p> #[serde(rename = "phases")] #[serde(skip_serializing_if = "Option::is_none")] pub phases: Option<Vec<BuildPhase>>, /// <p>The name of the AWS CodeBuild project.</p> #[serde(rename = "projectName")] #[serde(skip_serializing_if = "Option::is_none")] pub project_name: Option<String>, /// <p> The number of minutes a build is allowed to be queued before it times out. </p> #[serde(rename = "queuedTimeoutInMinutes")] #[serde(skip_serializing_if = "Option::is_none")] pub queued_timeout_in_minutes: Option<i64>, /// <p><p> An identifier for the version of this build's source code. </p> <ul> <li> <p> For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the commit ID. </p> </li> <li> <p> For AWS CodePipeline, the source revision provided by AWS CodePipeline. </p> </li> <li> <p> For Amazon Simple Storage Service (Amazon S3), this does not apply. </p> </li> </ul></p> #[serde(rename = "resolvedSourceVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub resolved_source_version: Option<String>, /// <p> An array of <code>ProjectArtifacts</code> objects. </p> #[serde(rename = "secondaryArtifacts")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_artifacts: Option<Vec<BuildArtifacts>>, /// <p><p> An array of <code>ProjectSourceVersion</code> objects. Each <code>ProjectSourceVersion</code> must be one of: </p> <ul> <li> <p>For AWS CodeCommit: the commit ID to use.</p> </li> <li> <p>For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format <code>pr/pull-request-ID</code> (for example, <code>pr/25</code>). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.</p> </li> <li> <p>For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.</p> </li> <li> <p>For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.</p> </li> </ul></p> #[serde(rename = "secondarySourceVersions")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_source_versions: Option<Vec<ProjectSourceVersion>>, /// <p> An array of <code>ProjectSource</code> objects. </p> #[serde(rename = "secondarySources")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_sources: Option<Vec<ProjectSource>>, /// <p>The name of a service role used for this build.</p> #[serde(rename = "serviceRole")] #[serde(skip_serializing_if = "Option::is_none")] pub service_role: Option<String>, /// <p>Information about the source code to be built.</p> #[serde(rename = "source")] #[serde(skip_serializing_if = "Option::is_none")] pub source: Option<ProjectSource>, /// <p>Any version identifier for the version of the source code to be built.</p> #[serde(rename = "sourceVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub source_version: Option<String>, /// <p>When the build process started, expressed in Unix time format.</p> #[serde(rename = "startTime")] #[serde(skip_serializing_if = "Option::is_none")] pub start_time: Option<f64>, /// <p>How long, in minutes, for AWS CodeBuild to wait before timing out this build if it does not get marked as completed.</p> #[serde(rename = "timeoutInMinutes")] #[serde(skip_serializing_if = "Option::is_none")] pub timeout_in_minutes: Option<i64>, /// <p>If your AWS CodeBuild project accesses resources in an Amazon VPC, you provide this parameter that identifies the VPC ID and the list of security group IDs and subnet IDs. The security groups and subnets must belong to the same VPC. You must provide at least one security group and one subnet ID.</p> #[serde(rename = "vpcConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub vpc_config: Option<VpcConfig>, } /// <p>Information about build output artifacts.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BuildArtifacts { /// <p> An identifier for this artifact definition. </p> #[serde(rename = "artifactIdentifier")] #[serde(skip_serializing_if = "Option::is_none")] pub artifact_identifier: Option<String>, /// <p> Information that tells you if encryption for build artifacts is disabled. </p> #[serde(rename = "encryptionDisabled")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_disabled: Option<bool>, /// <p>Information about the location of the build artifacts.</p> #[serde(rename = "location")] #[serde(skip_serializing_if = "Option::is_none")] pub location: Option<String>, /// <p><p>The MD5 hash of the build artifact.</p> <p>You can use this hash along with a checksum tool to confirm file integrity and authenticity.</p> <note> <p>This value is available only if the build project's <code>packaging</code> value is set to <code>ZIP</code>.</p> </note></p> #[serde(rename = "md5sum")] #[serde(skip_serializing_if = "Option::is_none")] pub md_5sum: Option<String>, /// <p> If this flag is set, a name specified in the build spec file overrides the artifact name. The name specified in a build spec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique. </p> #[serde(rename = "overrideArtifactName")] #[serde(skip_serializing_if = "Option::is_none")] pub override_artifact_name: Option<bool>, /// <p><p>The SHA-256 hash of the build artifact.</p> <p>You can use this hash along with a checksum tool to confirm file integrity and authenticity.</p> <note> <p>This value is available only if the build project's <code>packaging</code> value is set to <code>ZIP</code>.</p> </note></p> #[serde(rename = "sha256sum")] #[serde(skip_serializing_if = "Option::is_none")] pub sha_25_6sum: Option<String>, } /// <p>Information about a build that could not be successfully deleted.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BuildNotDeleted { /// <p>The ID of the build that could not be successfully deleted.</p> #[serde(rename = "id")] #[serde(skip_serializing_if = "Option::is_none")] pub id: Option<String>, /// <p>Additional information about the build that could not be successfully deleted.</p> #[serde(rename = "statusCode")] #[serde(skip_serializing_if = "Option::is_none")] pub status_code: Option<String>, } /// <p>Information about a stage for a build.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct BuildPhase { /// <p>Additional information about a build phase, especially to help troubleshoot a failed build.</p> #[serde(rename = "contexts")] #[serde(skip_serializing_if = "Option::is_none")] pub contexts: Option<Vec<PhaseContext>>, /// <p>How long, in seconds, between the starting and ending times of the build's phase.</p> #[serde(rename = "durationInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub duration_in_seconds: Option<i64>, /// <p>When the build phase ended, expressed in Unix time format.</p> #[serde(rename = "endTime")] #[serde(skip_serializing_if = "Option::is_none")] pub end_time: Option<f64>, /// <p><p>The current status of the build phase. Valid values include:</p> <ul> <li> <p> <code>FAILED</code>: The build phase failed.</p> </li> <li> <p> <code>FAULT</code>: The build phase faulted.</p> </li> <li> <p> <code>IN<em>PROGRESS</code>: The build phase is still in progress.</p> </li> <li> <p> <code>QUEUED</code>: The build has been submitted and is queued behind other submitted builds.</p> </li> <li> <p> <code>STOPPED</code>: The build phase stopped.</p> </li> <li> <p> <code>SUCCEEDED</code>: The build phase succeeded.</p> </li> <li> <p> <code>TIMED</em>OUT</code>: The build phase timed out.</p> </li> </ul></p> #[serde(rename = "phaseStatus")] #[serde(skip_serializing_if = "Option::is_none")] pub phase_status: Option<String>, /// <p><p>The name of the build phase. Valid values include:</p> <ul> <li> <p> <code>BUILD</code>: Core build activities typically occur in this build phase.</p> </li> <li> <p> <code>COMPLETED</code>: The build has been completed.</p> </li> <li> <p> <code>DOWNLOAD<em>SOURCE</code>: Source code is being downloaded in this build phase.</p> </li> <li> <p> <code>FINALIZING</code>: The build process is completing in this build phase.</p> </li> <li> <p> <code>INSTALL</code>: Installation activities typically occur in this build phase.</p> </li> <li> <p> <code>POST</em>BUILD</code>: Post-build activities typically occur in this build phase.</p> </li> <li> <p> <code>PRE<em>BUILD</code>: Pre-build activities typically occur in this build phase.</p> </li> <li> <p> <code>PROVISIONING</code>: The build environment is being set up.</p> </li> <li> <p> <code>QUEUED</code>: The build has been submitted and is queued behind other submitted builds.</p> </li> <li> <p> <code>SUBMITTED</code>: The build has been submitted.</p> </li> <li> <p> <code>UPLOAD</em>ARTIFACTS</code>: Build output artifacts are being uploaded to the output location.</p> </li> </ul></p> #[serde(rename = "phaseType")] #[serde(skip_serializing_if = "Option::is_none")] pub phase_type: Option<String>, /// <p>When the build phase started, expressed in Unix time format.</p> #[serde(rename = "startTime")] #[serde(skip_serializing_if = "Option::is_none")] pub start_time: Option<f64>, } /// <p> Information about Amazon CloudWatch Logs for a build project. </p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct CloudWatchLogsConfig { /// <p> The group name of the logs in Amazon CloudWatch Logs. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html">Working with Log Groups and Log Streams</a>. </p> #[serde(rename = "groupName")] #[serde(skip_serializing_if = "Option::is_none")] pub group_name: Option<String>, /// <p><p>The current status of the logs in Amazon CloudWatch Logs for a build project. Valid values are:</p> <ul> <li> <p> <code>ENABLED</code>: Amazon CloudWatch Logs are enabled for this build project.</p> </li> <li> <p> <code>DISABLED</code>: Amazon CloudWatch Logs are not enabled for this build project.</p> </li> </ul></p> #[serde(rename = "status")] pub status: String, /// <p> The prefix of the stream name of the Amazon CloudWatch Logs. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html">Working with Log Groups and Log Streams</a>. </p> #[serde(rename = "streamName")] #[serde(skip_serializing_if = "Option::is_none")] pub stream_name: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateProjectInput { /// <p>Information about the build output artifacts for the build project.</p> #[serde(rename = "artifacts")] pub artifacts: ProjectArtifacts, /// <p>Set this to true to generate a publicly accessible URL for your project's build badge.</p> #[serde(rename = "badgeEnabled")] #[serde(skip_serializing_if = "Option::is_none")] pub badge_enabled: Option<bool>, /// <p>Stores recently used information so that it can be quickly accessed at a later time.</p> #[serde(rename = "cache")] #[serde(skip_serializing_if = "Option::is_none")] pub cache: Option<ProjectCache>, /// <p>A description that makes the build project easy to identify.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.</p> <note> <p> You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. </p> </note> <p>You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format <code>alias/<i>alias-name</i> </code>).</p> #[serde(rename = "encryptionKey")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_key: Option<String>, /// <p>Information about the build environment for the build project.</p> #[serde(rename = "environment")] pub environment: ProjectEnvironment, /// <p> Information about logs for the build project. These can be logs in Amazon CloudWatch Logs, logs uploaded to a specified S3 bucket, or both. </p> #[serde(rename = "logsConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub logs_config: Option<LogsConfig>, /// <p>The name of the build project.</p> #[serde(rename = "name")] pub name: String, /// <p> The number of minutes a build is allowed to be queued before it times out. </p> #[serde(rename = "queuedTimeoutInMinutes")] #[serde(skip_serializing_if = "Option::is_none")] pub queued_timeout_in_minutes: Option<i64>, /// <p> An array of <code>ProjectArtifacts</code> objects. </p> #[serde(rename = "secondaryArtifacts")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_artifacts: Option<Vec<ProjectArtifacts>>, /// <p> An array of <code>ProjectSource</code> objects. </p> #[serde(rename = "secondarySources")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_sources: Option<Vec<ProjectSource>>, /// <p>The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.</p> #[serde(rename = "serviceRole")] pub service_role: String, /// <p>Information about the build input source code for the build project.</p> #[serde(rename = "source")] pub source: ProjectSource, /// <p>A set of tags for this build project.</p> <p>These tags are available for use by AWS services that support AWS CodeBuild build project tags.</p> #[serde(rename = "tags")] #[serde(skip_serializing_if = "Option::is_none")] pub tags: Option<Vec<Tag>>, /// <p>How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before it times out any build that has not been marked as completed. The default is 60 minutes.</p> #[serde(rename = "timeoutInMinutes")] #[serde(skip_serializing_if = "Option::is_none")] pub timeout_in_minutes: Option<i64>, /// <p>VpcConfig enables AWS CodeBuild to access resources in an Amazon VPC.</p> #[serde(rename = "vpcConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub vpc_config: Option<VpcConfig>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateProjectOutput { /// <p>Information about the build project that was created.</p> #[serde(rename = "project")] #[serde(skip_serializing_if = "Option::is_none")] pub project: Option<Project>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateWebhookInput { /// <p><p>A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If <code>branchFilter</code> is empty, then all branches are built.</p> <note> <p> It is recommended that you use <code>filterGroups</code> instead of <code>branchFilter</code>. </p> </note></p> #[serde(rename = "branchFilter")] #[serde(skip_serializing_if = "Option::is_none")] pub branch_filter: Option<String>, /// <p> An array of arrays of <code>WebhookFilter</code> objects used to determine which webhooks are triggered. At least one <code>WebhookFilter</code> in the array must specify <code>EVENT</code> as its <code>type</code>. </p> <p> For a build to be triggered, at least one filter group in the <code>filterGroups</code> array must pass. For a filter group to pass, each of its filters must pass. </p> #[serde(rename = "filterGroups")] #[serde(skip_serializing_if = "Option::is_none")] pub filter_groups: Option<Vec<Vec<WebhookFilter>>>, /// <p>The name of the AWS CodeBuild project.</p> #[serde(rename = "projectName")] pub project_name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateWebhookOutput { /// <p>Information about a webhook that connects repository events to a build project in AWS CodeBuild.</p> #[serde(rename = "webhook")] #[serde(skip_serializing_if = "Option::is_none")] pub webhook: Option<Webhook>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteProjectInput { /// <p>The name of the build project.</p> #[serde(rename = "name")] pub name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeleteProjectOutput {} #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteSourceCredentialsInput { /// <p> The Amazon Resource Name (ARN) of the token.</p> #[serde(rename = "arn")] pub arn: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeleteSourceCredentialsOutput { /// <p> The Amazon Resource Name (ARN) of the token. </p> #[serde(rename = "arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteWebhookInput { /// <p>The name of the AWS CodeBuild project.</p> #[serde(rename = "projectName")] pub project_name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeleteWebhookOutput {} /// <p>Information about a Docker image that is managed by AWS CodeBuild.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct EnvironmentImage { /// <p>The description of the Docker image.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The name of the Docker image.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>A list of environment image versions.</p> #[serde(rename = "versions")] #[serde(skip_serializing_if = "Option::is_none")] pub versions: Option<Vec<String>>, } /// <p>A set of Docker images that are related by programming language and are managed by AWS CodeBuild.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct EnvironmentLanguage { /// <p>The list of Docker images that are related by the specified programming language.</p> #[serde(rename = "images")] #[serde(skip_serializing_if = "Option::is_none")] pub images: Option<Vec<EnvironmentImage>>, /// <p>The programming language for the Docker images.</p> #[serde(rename = "language")] #[serde(skip_serializing_if = "Option::is_none")] pub language: Option<String>, } /// <p>A set of Docker images that are related by platform and are managed by AWS CodeBuild.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct EnvironmentPlatform { /// <p>The list of programming languages that are available for the specified platform.</p> #[serde(rename = "languages")] #[serde(skip_serializing_if = "Option::is_none")] pub languages: Option<Vec<EnvironmentLanguage>>, /// <p>The platform's name.</p> #[serde(rename = "platform")] #[serde(skip_serializing_if = "Option::is_none")] pub platform: Option<String>, } /// <p>Information about an environment variable for a build project or a build.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct EnvironmentVariable { /// <p>The name or key of the environment variable.</p> #[serde(rename = "name")] pub name: String, /// <p><p>The type of environment variable. Valid values include:</p> <ul> <li> <p> <code>PARAMETER_STORE</code>: An environment variable stored in Amazon EC2 Systems Manager Parameter Store.</p> </li> <li> <p> <code>PLAINTEXT</code>: An environment variable in plaintext format.</p> </li> </ul></p> #[serde(rename = "type")] #[serde(skip_serializing_if = "Option::is_none")] pub type_: Option<String>, /// <p><p>The value of the environment variable.</p> <important> <p>We strongly discourage the use of environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. Environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI).</p> </important></p> #[serde(rename = "value")] pub value: String, } /// <p> Information about the Git submodules configuration for an AWS CodeBuild build project. </p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct GitSubmodulesConfig { /// <p> Set to true to fetch Git submodules for your AWS CodeBuild build project. </p> #[serde(rename = "fetchSubmodules")] pub fetch_submodules: bool, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ImportSourceCredentialsInput { /// <p> The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the AWS CodeBuild console. </p> #[serde(rename = "authType")] pub auth_type: String, /// <p> The source provider used for this project. </p> #[serde(rename = "serverType")] pub server_type: String, /// <p> For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is the app password. </p> #[serde(rename = "token")] pub token: String, /// <p> The Bitbucket username when the <code>authType</code> is BASIC_AUTH. This parameter is not valid for other types of source providers or connections. </p> #[serde(rename = "username")] #[serde(skip_serializing_if = "Option::is_none")] pub username: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ImportSourceCredentialsOutput { /// <p> The Amazon Resource Name (ARN) of the token. </p> #[serde(rename = "arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct InvalidateProjectCacheInput { /// <p>The name of the AWS CodeBuild build project that the cache is reset for.</p> #[serde(rename = "projectName")] pub project_name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct InvalidateProjectCacheOutput {} #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListBuildsForProjectInput { /// <p>During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>The name of the AWS CodeBuild project.</p> #[serde(rename = "projectName")] pub project_name: String, /// <p><p>The order to list build IDs. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the build IDs in ascending order by build ID.</p> </li> <li> <p> <code>DESCENDING</code>: List the build IDs in descending order by build ID.</p> </li> </ul></p> #[serde(rename = "sortOrder")] #[serde(skip_serializing_if = "Option::is_none")] pub sort_order: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListBuildsForProjectOutput { /// <p>A list of build IDs for the specified build project, with each build ID representing a single build.</p> #[serde(rename = "ids")] #[serde(skip_serializing_if = "Option::is_none")] pub ids: Option<Vec<String>>, /// <p>If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListBuildsInput { /// <p>During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p><p>The order to list build IDs. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the build IDs in ascending order by build ID.</p> </li> <li> <p> <code>DESCENDING</code>: List the build IDs in descending order by build ID.</p> </li> </ul></p> #[serde(rename = "sortOrder")] #[serde(skip_serializing_if = "Option::is_none")] pub sort_order: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListBuildsOutput { /// <p>A list of build IDs, with each build ID representing a single build.</p> #[serde(rename = "ids")] #[serde(skip_serializing_if = "Option::is_none")] pub ids: Option<Vec<String>>, /// <p>If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListCuratedEnvironmentImagesInput {} #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListCuratedEnvironmentImagesOutput { /// <p>Information about supported platforms for Docker images that are managed by AWS CodeBuild.</p> #[serde(rename = "platforms")] #[serde(skip_serializing_if = "Option::is_none")] pub platforms: Option<Vec<EnvironmentPlatform>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListProjectsInput { /// <p>During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>The criterion to be used to list build project names. Valid values include:</p> <ul> <li> <p> <code>CREATED_TIME</code>: List based on when each build project was created.</p> </li> <li> <p> <code>LAST_MODIFIED_TIME</code>: List based on when information about each build project was last changed.</p> </li> <li> <p> <code>NAME</code>: List based on each build project's name.</p> </li> </ul> <p>Use <code>sortOrder</code> to specify in what order to list the build project names based on the preceding criteria.</p> #[serde(rename = "sortBy")] #[serde(skip_serializing_if = "Option::is_none")] pub sort_by: Option<String>, /// <p>The order in which to list build projects. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List in ascending order.</p> </li> <li> <p> <code>DESCENDING</code>: List in descending order.</p> </li> </ul> <p>Use <code>sortBy</code> to specify the criterion to be used to list build project names.</p> #[serde(rename = "sortOrder")] #[serde(skip_serializing_if = "Option::is_none")] pub sort_order: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListProjectsOutput { /// <p>If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call.</p> #[serde(rename = "nextToken")] #[serde(skip_serializing_if = "Option::is_none")] pub next_token: Option<String>, /// <p>The list of build project names, with each build project name representing a single build project.</p> #[serde(rename = "projects")] #[serde(skip_serializing_if = "Option::is_none")] pub projects: Option<Vec<String>>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListSourceCredentialsInput {} #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListSourceCredentialsOutput { /// <p> A list of <code>SourceCredentialsInfo</code> objects. Each <code>SourceCredentialsInfo</code> object includes the authentication type, token ARN, and type of source provider for one set of credentials. </p> #[serde(rename = "sourceCredentialsInfos")] #[serde(skip_serializing_if = "Option::is_none")] pub source_credentials_infos: Option<Vec<SourceCredentialsInfo>>, } /// <p> Information about logs for a build project. These can be logs in Amazon CloudWatch Logs, built in a specified S3 bucket, or both. </p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct LogsConfig { /// <p> Information about Amazon CloudWatch Logs for a build project. Amazon CloudWatch Logs are enabled by default. </p> #[serde(rename = "cloudWatchLogs")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs: Option<CloudWatchLogsConfig>, /// <p> Information about logs built to an S3 bucket for a build project. S3 logs are not enabled by default. </p> #[serde(rename = "s3Logs")] #[serde(skip_serializing_if = "Option::is_none")] pub s_3_logs: Option<S3LogsConfig>, } /// <p>Information about build logs in Amazon CloudWatch Logs.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct LogsLocation { /// <p> Information about Amazon CloudWatch Logs for a build project. </p> #[serde(rename = "cloudWatchLogs")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logs: Option<CloudWatchLogsConfig>, /// <p>The URL to an individual build log in Amazon CloudWatch Logs.</p> #[serde(rename = "deepLink")] #[serde(skip_serializing_if = "Option::is_none")] pub deep_link: Option<String>, /// <p>The name of the Amazon CloudWatch Logs group for the build logs.</p> #[serde(rename = "groupName")] #[serde(skip_serializing_if = "Option::is_none")] pub group_name: Option<String>, /// <p> The URL to a build log in an S3 bucket. </p> #[serde(rename = "s3DeepLink")] #[serde(skip_serializing_if = "Option::is_none")] pub s_3_deep_link: Option<String>, /// <p> Information about S3 logs for a build project. </p> #[serde(rename = "s3Logs")] #[serde(skip_serializing_if = "Option::is_none")] pub s_3_logs: Option<S3LogsConfig>, /// <p>The name of the Amazon CloudWatch Logs stream for the build logs.</p> #[serde(rename = "streamName")] #[serde(skip_serializing_if = "Option::is_none")] pub stream_name: Option<String>, } /// <p>Describes a network interface.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct NetworkInterface { /// <p>The ID of the network interface.</p> #[serde(rename = "networkInterfaceId")] #[serde(skip_serializing_if = "Option::is_none")] pub network_interface_id: Option<String>, /// <p>The ID of the subnet.</p> #[serde(rename = "subnetId")] #[serde(skip_serializing_if = "Option::is_none")] pub subnet_id: Option<String>, } /// <p>Additional information about a build phase that has an error. You can use this information for troubleshooting.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PhaseContext { /// <p>An explanation of the build phase's context. This might include a command ID and an exit code.</p> #[serde(rename = "message")] #[serde(skip_serializing_if = "Option::is_none")] pub message: Option<String>, /// <p>The status code for the context of the build phase.</p> #[serde(rename = "statusCode")] #[serde(skip_serializing_if = "Option::is_none")] pub status_code: Option<String>, } /// <p>Information about a build project.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Project { /// <p>The Amazon Resource Name (ARN) of the build project.</p> #[serde(rename = "arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p>Information about the build output artifacts for the build project.</p> #[serde(rename = "artifacts")] #[serde(skip_serializing_if = "Option::is_none")] pub artifacts: Option<ProjectArtifacts>, /// <p>Information about the build badge for the build project.</p> #[serde(rename = "badge")] #[serde(skip_serializing_if = "Option::is_none")] pub badge: Option<ProjectBadge>, /// <p>Information about the cache for the build project.</p> #[serde(rename = "cache")] #[serde(skip_serializing_if = "Option::is_none")] pub cache: Option<ProjectCache>, /// <p>When the build project was created, expressed in Unix time format.</p> #[serde(rename = "created")] #[serde(skip_serializing_if = "Option::is_none")] pub created: Option<f64>, /// <p>A description that makes the build project easy to identify.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.</p> <note> <p> You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. </p> </note> <p>You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format <code>alias/<i>alias-name</i> </code>).</p> #[serde(rename = "encryptionKey")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_key: Option<String>, /// <p>Information about the build environment for this build project.</p> #[serde(rename = "environment")] #[serde(skip_serializing_if = "Option::is_none")] pub environment: Option<ProjectEnvironment>, /// <p>When the build project's settings were last modified, expressed in Unix time format.</p> #[serde(rename = "lastModified")] #[serde(skip_serializing_if = "Option::is_none")] pub last_modified: Option<f64>, /// <p> Information about logs for the build project. A project can create logs in Amazon CloudWatch Logs, an S3 bucket, or both. </p> #[serde(rename = "logsConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub logs_config: Option<LogsConfig>, /// <p>The name of the build project.</p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p> The number of minutes a build is allowed to be queued before it times out. </p> #[serde(rename = "queuedTimeoutInMinutes")] #[serde(skip_serializing_if = "Option::is_none")] pub queued_timeout_in_minutes: Option<i64>, /// <p> An array of <code>ProjectArtifacts</code> objects. </p> #[serde(rename = "secondaryArtifacts")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_artifacts: Option<Vec<ProjectArtifacts>>, /// <p> An array of <code>ProjectSource</code> objects. </p> #[serde(rename = "secondarySources")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_sources: Option<Vec<ProjectSource>>, /// <p>The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.</p> #[serde(rename = "serviceRole")] #[serde(skip_serializing_if = "Option::is_none")] pub service_role: Option<String>, /// <p>Information about the build input source code for this build project.</p> #[serde(rename = "source")] #[serde(skip_serializing_if = "Option::is_none")] pub source: Option<ProjectSource>, /// <p>The tags for this build project.</p> <p>These tags are available for use by AWS services that support AWS CodeBuild build project tags.</p> #[serde(rename = "tags")] #[serde(skip_serializing_if = "Option::is_none")] pub tags: Option<Vec<Tag>>, /// <p>How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed. The default is 60 minutes.</p> #[serde(rename = "timeoutInMinutes")] #[serde(skip_serializing_if = "Option::is_none")] pub timeout_in_minutes: Option<i64>, /// <p>Information about the VPC configuration that AWS CodeBuild accesses.</p> #[serde(rename = "vpcConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub vpc_config: Option<VpcConfig>, /// <p>Information about a webhook that connects repository events to a build project in AWS CodeBuild.</p> #[serde(rename = "webhook")] #[serde(skip_serializing_if = "Option::is_none")] pub webhook: Option<Webhook>, } /// <p>Information about the build output artifacts for the build project.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ProjectArtifacts { /// <p> An identifier for this artifact definition. </p> #[serde(rename = "artifactIdentifier")] #[serde(skip_serializing_if = "Option::is_none")] pub artifact_identifier: Option<String>, /// <p> Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown. </p> #[serde(rename = "encryptionDisabled")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_disabled: Option<bool>, /// <p><p>Information about the build output artifact location:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO_ARTIFACTS</code>, this value is ignored if specified, because no build output is produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, this is the name of the output bucket.</p> </li> </ul></p> #[serde(rename = "location")] #[serde(skip_serializing_if = "Option::is_none")] pub location: Option<String>, /// <p><p>Along with <code>path</code> and <code>namespaceType</code>, the pattern that AWS CodeBuild uses to name and store the output artifact:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO<em>ARTIFACTS</code>, this value is ignored if specified, because no build output is produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.</p> </li> </ul> <p>For example:</p> <ul> <li> <p> If <code>path</code> is set to <code>MyArtifacts</code>, <code>namespaceType</code> is set to <code>BUILD</em>ID</code>, and <code>name</code> is set to <code>MyArtifact.zip</code>, then the output artifact is stored in <code>MyArtifacts/<i>build-ID</i>/MyArtifact.zip</code>. </p> </li> <li> <p> If <code>path</code> is empty, <code>namespaceType</code> is set to <code>NONE</code>, and <code>name</code> is set to "<code>/</code>", the output artifact is stored in the root of the output bucket. </p> </li> <li> <p> If <code>path</code> is set to <code>MyArtifacts</code>, <code>namespaceType</code> is set to <code>BUILD_ID</code>, and <code>name</code> is set to "<code>/</code>", the output artifact is stored in <code>MyArtifacts/<i>build-ID</i> </code>. </p> </li> </ul></p> #[serde(rename = "name")] #[serde(skip_serializing_if = "Option::is_none")] pub name: Option<String>, /// <p>Along with <code>path</code> and <code>name</code>, the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO_ARTIFACTS</code>, this value is ignored if specified, because no build output is produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, valid values include:</p> <ul> <li> <p> <code>BUILD_ID</code>: Include the build ID in the location of the build output artifact.</p> </li> <li> <p> <code>NONE</code>: Do not include the build ID. This is the default if <code>namespaceType</code> is not specified.</p> </li> </ul> </li> </ul> <p>For example, if <code>path</code> is set to <code>MyArtifacts</code>, <code>namespaceType</code> is set to <code>BUILD_ID</code>, and <code>name</code> is set to <code>MyArtifact.zip</code>, the output artifact is stored in <code>MyArtifacts/<i>build-ID</i>/MyArtifact.zip</code>.</p> #[serde(rename = "namespaceType")] #[serde(skip_serializing_if = "Option::is_none")] pub namespace_type: Option<String>, /// <p> If this flag is set, a name specified in the build spec file overrides the artifact name. The name specified in a build spec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique. </p> #[serde(rename = "overrideArtifactName")] #[serde(skip_serializing_if = "Option::is_none")] pub override_artifact_name: Option<bool>, /// <p><p>The type of build output artifact to create:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO_ARTIFACTS</code>, this value is ignored if specified, because no build output is produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, valid values include:</p> <ul> <li> <p> <code>NONE</code>: AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if <code>packaging</code> is not specified.</p> </li> <li> <p> <code>ZIP</code>: AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.</p> </li> </ul> </li> </ul></p> #[serde(rename = "packaging")] #[serde(skip_serializing_if = "Option::is_none")] pub packaging: Option<String>, /// <p>Along with <code>namespaceType</code> and <code>name</code>, the pattern that AWS CodeBuild uses to name and store the output artifact:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO_ARTIFACTS</code>, this value is ignored if specified, because no build output is produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, this is the path to the output artifact. If <code>path</code> is not specified, <code>path</code> is not used.</p> </li> </ul> <p>For example, if <code>path</code> is set to <code>MyArtifacts</code>, <code>namespaceType</code> is set to <code>NONE</code>, and <code>name</code> is set to <code>MyArtifact.zip</code>, the output artifact is stored in the output bucket at <code>MyArtifacts/MyArtifact.zip</code>.</p> #[serde(rename = "path")] #[serde(skip_serializing_if = "Option::is_none")] pub path: Option<String>, /// <p><p>The type of build output artifact. Valid values include:</p> <ul> <li> <p> <code>CODEPIPELINE</code>: The build project has build output generated through AWS CodePipeline.</p> </li> <li> <p> <code>NO_ARTIFACTS</code>: The build project does not produce any build output.</p> </li> <li> <p> <code>S3</code>: The build project stores build output in Amazon Simple Storage Service (Amazon S3).</p> </li> </ul></p> #[serde(rename = "type")] pub type_: String, } /// <p>Information about the build badge for the build project.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ProjectBadge { /// <p>Set this to true to generate a publicly accessible URL for your project's build badge.</p> #[serde(rename = "badgeEnabled")] #[serde(skip_serializing_if = "Option::is_none")] pub badge_enabled: Option<bool>, /// <p>The publicly-accessible URL through which you can access the build badge for your project. </p> <p>The publicly accessible URL through which you can access the build badge for your project. </p> #[serde(rename = "badgeRequestUrl")] #[serde(skip_serializing_if = "Option::is_none")] pub badge_request_url: Option<String>, } /// <p>Information about the cache for the build project.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ProjectCache { /// <p><p>Information about the cache location: </p> <ul> <li> <p> <code>NO_CACHE</code> or <code>LOCAL</code>: This value is ignored.</p> </li> <li> <p> <code>S3</code>: This is the S3 bucket name/prefix.</p> </li> </ul></p> #[serde(rename = "location")] #[serde(skip_serializing_if = "Option::is_none")] pub location: Option<String>, /// <p><p> If you use a <code>LOCAL</code> cache, the local cache mode. You can use one or more local cache modes at the same time. </p> <ul> <li> <p> <code>LOCAL<em>SOURCE</em>CACHE</code> mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored. </p> </li> <li> <p> <code>LOCAL<em>DOCKER</em>LAYER<em>CACHE</code> mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network. </p> <note> <ul> <li> <p> You can use a Docker layer cache in the Linux enviornment only. </p> </li> <li> <p> The <code>privileged</code> flag must be set so that your project has the required Docker permissions. </p> </li> <li> <p> You should consider the security implications before you use a Docker layer cache. </p> </li> </ul> </note> </li> </ul> <ul> <li> <p> <code>LOCAL</em>CUSTOM_CACHE</code> mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache: </p> <ul> <li> <p> Only directories can be specified for caching. You cannot specify individual files. </p> </li> <li> <p> Symlinks are used to reference cached directories. </p> </li> <li> <p> Cached directories are linked to your build before it downloads its project sources. Cached items are overriden if a source item has the same name. Directories are specified using cache paths in the buildspec file. </p> </li> </ul> </li> </ul></p> #[serde(rename = "modes")] #[serde(skip_serializing_if = "Option::is_none")] pub modes: Option<Vec<String>>, /// <p><p>The type of cache used by the build project. Valid values include:</p> <ul> <li> <p> <code>NO_CACHE</code>: The build project does not use any cache.</p> </li> <li> <p> <code>S3</code>: The build project reads and writes from and to S3.</p> </li> <li> <p> <code>LOCAL</code>: The build project stores a cache locally on a build host that is only available to that build host.</p> </li> </ul></p> #[serde(rename = "type")] pub type_: String, } /// <p>Information about the build environment of the build project.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ProjectEnvironment { /// <p>The certificate to use with this build project.</p> #[serde(rename = "certificate")] #[serde(skip_serializing_if = "Option::is_none")] pub certificate: Option<String>, /// <p><p>Information about the compute resources the build project uses. Available values include:</p> <ul> <li> <p> <code>BUILD<em>GENERAL1</em>SMALL</code>: Use up to 3 GB memory and 2 vCPUs for builds.</p> </li> <li> <p> <code>BUILD<em>GENERAL1</em>MEDIUM</code>: Use up to 7 GB memory and 4 vCPUs for builds.</p> </li> <li> <p> <code>BUILD<em>GENERAL1</em>LARGE</code>: Use up to 15 GB memory and 8 vCPUs for builds.</p> </li> </ul></p> #[serde(rename = "computeType")] pub compute_type: String, /// <p>A set of environment variables to make available to builds for this build project.</p> #[serde(rename = "environmentVariables")] #[serde(skip_serializing_if = "Option::is_none")] pub environment_variables: Option<Vec<EnvironmentVariable>>, /// <p><p>The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:</p> <ul> <li> <p>For an image tag: <code>registry/repository:tag</code>. For example, to specify an image with the tag "latest," use <code>registry/repository:latest</code>.</p> </li> <li> <p>For an image digest: <code>registry/repository@digest</code>. For example, to specify an image with the digest "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf," use <code>registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf</code>.</p> </li> </ul></p> #[serde(rename = "image")] pub image: String, /// <p> The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values: </p> <ul> <li> <p> <code>CODEBUILD</code> specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal. </p> </li> <li> <p> <code>SERVICE_ROLE</code> specifies that AWS CodeBuild uses your build project's service role. </p> </li> </ul> <p> When you use a cross-account or private registry image, you must use SERVICE_ROLE credentials. When you use an AWS CodeBuild curated image, you must use CODEBUILD credentials. </p> #[serde(rename = "imagePullCredentialsType")] #[serde(skip_serializing_if = "Option::is_none")] pub image_pull_credentials_type: Option<String>, /// <p>Enables running the Docker daemon inside a Docker container. Set to true only if the build project is be used to build Docker images, and the specified build environment image is not provided by AWS CodeBuild with Docker support. Otherwise, all associated builds that attempt to interact with the Docker daemon fail. You must also start the Docker daemon so that builds can interact with it. One way to do this is to initialize the Docker daemon during the install phase of your build spec by running the following build commands. (Do not run these commands if the specified build environment image is provided by AWS CodeBuild with Docker support.)</p> <p>If the operating system's base image is Ubuntu Linux:</p> <p> <code>- nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay& - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"</code> </p> <p>If the operating system's base image is Alpine Linux, add the <code>-t</code> argument to <code>timeout</code>:</p> <p> <code>- nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay& - timeout 15 -t sh -c "until docker info; do echo .; sleep 1; done"</code> </p> #[serde(rename = "privilegedMode")] #[serde(skip_serializing_if = "Option::is_none")] pub privileged_mode: Option<bool>, /// <p> The credentials for access to a private registry.</p> #[serde(rename = "registryCredential")] #[serde(skip_serializing_if = "Option::is_none")] pub registry_credential: Option<RegistryCredential>, /// <p>The type of build environment to use for related builds.</p> #[serde(rename = "type")] pub type_: String, } /// <p>Information about the build input source code for the build project.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ProjectSource { /// <p>Information about the authorization settings for AWS CodeBuild to access the source code to be built.</p> <p>This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.</p> #[serde(rename = "auth")] #[serde(skip_serializing_if = "Option::is_none")] pub auth: Option<SourceAuth>, /// <p>The build spec declaration to use for the builds in this build project.</p> <p>If this value is not specified, a build spec must be included along with the source code to be built.</p> #[serde(rename = "buildspec")] #[serde(skip_serializing_if = "Option::is_none")] pub buildspec: Option<String>, /// <p>Information about the Git clone depth for the build project.</p> #[serde(rename = "gitCloneDepth")] #[serde(skip_serializing_if = "Option::is_none")] pub git_clone_depth: Option<i64>, /// <p> Information about the Git submodules configuration for the build project. </p> #[serde(rename = "gitSubmodulesConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub git_submodules_config: Option<GitSubmodulesConfig>, /// <p>Enable this flag to ignore SSL warnings while connecting to the project source code.</p> #[serde(rename = "insecureSsl")] #[serde(skip_serializing_if = "Option::is_none")] pub insecure_ssl: Option<bool>, /// <p><p>Information about the location of the source code to be built. Valid values include:</p> <ul> <li> <p>For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, <code>location</code> should not be specified. If it is specified, AWS CodePipeline ignores it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.</p> </li> <li> <p>For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the build spec (for example, <code>https://git-codecommit.<i>region-ID</i>.amazonaws.com/v1/repos/<i>repo-name</i> </code>).</p> </li> <li> <p>For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, one of the following. </p> <ul> <li> <p> The path to the ZIP file that contains the source code (for example, <code> <i>bucket-name</i>/<i>path</i>/<i>to</i>/<i>object-name</i>.zip</code>). </p> </li> <li> <p> The path to the folder that contains the source code (for example, <code> <i>bucket-name</i>/<i>path</i>/<i>to</i>/<i>source-code</i>/<i>folder</i>/</code>). </p> </li> </ul> </li> <li> <p>For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the build spec. You must connect your AWS account to your GitHub account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub <b>Authorize application</b> page, for <b>Organization access</b>, choose <b>Request access</b> next to each repository you want to allow AWS CodeBuild to have access to, and then choose <b>Authorize application</b>. (After you have connected to your GitHub account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the <code>source</code> object, set the <code>auth</code> object's <code>type</code> value to <code>OAUTH</code>.</p> </li> <li> <p>For source code in a Bitbucket repository, the HTTPS clone URL to the repository that contains the source and the build spec. You must connect your AWS account to your Bitbucket account. Use the AWS CodeBuild console to start creating a build project. When you use the console to connect (or reconnect) with Bitbucket, on the Bitbucket <b>Confirm access to your account</b> page, choose <b>Grant access</b>. (After you have connected to your Bitbucket account, you do not need to finish creating the build project. You can leave the AWS CodeBuild console.) To instruct AWS CodeBuild to use this connection, in the <code>source</code> object, set the <code>auth</code> object's <code>type</code> value to <code>OAUTH</code>.</p> </li> </ul></p> #[serde(rename = "location")] #[serde(skip_serializing_if = "Option::is_none")] pub location: Option<String>, /// <p> Set to true to report the status of a build's start and finish to your source provider. This option is valid only when your source provider is GitHub, GitHub Enterprise, or Bitbucket. If this is set and you use a different source provider, an invalidInputException is thrown. </p> #[serde(rename = "reportBuildStatus")] #[serde(skip_serializing_if = "Option::is_none")] pub report_build_status: Option<bool>, /// <p> An identifier for this project source. </p> #[serde(rename = "sourceIdentifier")] #[serde(skip_serializing_if = "Option::is_none")] pub source_identifier: Option<String>, /// <p><p>The type of repository that contains the source code to be built. Valid values include:</p> <ul> <li> <p> <code>BITBUCKET</code>: The source code is in a Bitbucket repository.</p> </li> <li> <p> <code>CODECOMMIT</code>: The source code is in an AWS CodeCommit repository.</p> </li> <li> <p> <code>CODEPIPELINE</code>: The source code settings are specified in the source action of a pipeline in AWS CodePipeline.</p> </li> <li> <p> <code>GITHUB</code>: The source code is in a GitHub repository.</p> </li> <li> <p> <code>NO_SOURCE</code>: The project does not have input source code.</p> </li> <li> <p> <code>S3</code>: The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.</p> </li> </ul></p> #[serde(rename = "type")] pub type_: String, } /// <p>A source identifier and its corresponding version.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ProjectSourceVersion { /// <p>An identifier for a source in the build project.</p> #[serde(rename = "sourceIdentifier")] pub source_identifier: String, /// <p><p>The source version for the corresponding source identifier. If specified, must be one of:</p> <ul> <li> <p>For AWS CodeCommit: the commit ID to use.</p> </li> <li> <p>For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format <code>pr/pull-request-ID</code> (for example, <code>pr/25</code>). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.</p> </li> <li> <p>For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.</p> </li> <li> <p>For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.</p> </li> </ul></p> #[serde(rename = "sourceVersion")] pub source_version: String, } /// <p> Information about credentials that provide access to a private Docker registry. When this is set: </p> <ul> <li> <p> <code>imagePullCredentialsType</code> must be set to <code>SERVICE_ROLE</code>. </p> </li> <li> <p> images cannot be curated or an Amazon ECR image.</p> </li> </ul> <p> For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/sample-private-registry.html">Private Registry with AWS Secrets Manager Sample for AWS CodeBuild</a>. </p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct RegistryCredential { /// <p><p> The Amazon Resource Name (ARN) or name of credentials created using AWS Secrets Manager. </p> <note> <p> The <code>credential</code> can use the name of the credentials only if they exist in your current region. </p> </note></p> #[serde(rename = "credential")] pub credential: String, /// <p> The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for AWS Secrets Manager. </p> #[serde(rename = "credentialProvider")] pub credential_provider: String, } /// <p> Information about S3 logs for a build project. </p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct S3LogsConfig { /// <p> Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted. </p> #[serde(rename = "encryptionDisabled")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_disabled: Option<bool>, /// <p> The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is <code>my-bucket</code>, and your path prefix is <code>build-log</code>, then acceptable formats are <code>my-bucket/build-log</code> or <code>arn:aws:s3:::my-bucket/build-log</code>. </p> #[serde(rename = "location")] #[serde(skip_serializing_if = "Option::is_none")] pub location: Option<String>, /// <p><p>The current status of the S3 build logs. Valid values are:</p> <ul> <li> <p> <code>ENABLED</code>: S3 build logs are enabled for this build project.</p> </li> <li> <p> <code>DISABLED</code>: S3 build logs are not enabled for this build project.</p> </li> </ul></p> #[serde(rename = "status")] pub status: String, } /// <p>Information about the authorization settings for AWS CodeBuild to access the source code to be built.</p> <p>This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct SourceAuth { /// <p>The resource value that applies to the specified authorization type.</p> #[serde(rename = "resource")] #[serde(skip_serializing_if = "Option::is_none")] pub resource: Option<String>, /// <p><note> <p> This data type is deprecated and is no longer accurate or used. </p> </note> <p>The authorization type to use. The only valid value is <code>OAUTH</code>, which represents the OAuth authorization type.</p></p> #[serde(rename = "type")] pub type_: String, } /// <p> Information about the credentials for a GitHub, GitHub Enterprise, or Bitbucket repository. </p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct SourceCredentialsInfo { /// <p> The Amazon Resource Name (ARN) of the token. </p> #[serde(rename = "arn")] #[serde(skip_serializing_if = "Option::is_none")] pub arn: Option<String>, /// <p> The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, or PERSONAL_ACCESS_TOKEN. </p> #[serde(rename = "authType")] #[serde(skip_serializing_if = "Option::is_none")] pub auth_type: Option<String>, /// <p> The type of source provider. The valid options are GITHUB, GITHUB_ENTERPRISE, or BITBUCKET. </p> #[serde(rename = "serverType")] #[serde(skip_serializing_if = "Option::is_none")] pub server_type: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct StartBuildInput { /// <p>Build output artifact settings that override, for this build only, the latest ones already defined in the build project.</p> #[serde(rename = "artifactsOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub artifacts_override: Option<ProjectArtifacts>, /// <p>A build spec declaration that overrides, for this build only, the latest one already defined in the build project.</p> #[serde(rename = "buildspecOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub buildspec_override: Option<String>, /// <p>A ProjectCache object specified for this build that overrides the one defined in the build project.</p> #[serde(rename = "cacheOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub cache_override: Option<ProjectCache>, /// <p>The name of a certificate for this build that overrides the one specified in the build project.</p> #[serde(rename = "certificateOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub certificate_override: Option<String>, /// <p>The name of a compute type for this build that overrides the one specified in the build project.</p> #[serde(rename = "computeTypeOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub compute_type_override: Option<String>, /// <p>A container type for this build that overrides the one specified in the build project.</p> #[serde(rename = "environmentTypeOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub environment_type_override: Option<String>, /// <p>A set of environment variables that overrides, for this build only, the latest ones already defined in the build project.</p> #[serde(rename = "environmentVariablesOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub environment_variables_override: Option<Vec<EnvironmentVariable>>, /// <p>The user-defined depth of history, with a minimum value of 0, that overrides, for this build only, any previous depth of history defined in the build project.</p> #[serde(rename = "gitCloneDepthOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub git_clone_depth_override: Option<i64>, /// <p> Information about the Git submodules configuration for this build of an AWS CodeBuild build project. </p> #[serde(rename = "gitSubmodulesConfigOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub git_submodules_config_override: Option<GitSubmodulesConfig>, /// <p>A unique, case sensitive identifier you provide to ensure the idempotency of the StartBuild request. The token is included in the StartBuild request and is valid for 12 hours. If you repeat the StartBuild request with the same token, but change a parameter, AWS CodeBuild returns a parameter mismatch error. </p> #[serde(rename = "idempotencyToken")] #[serde(skip_serializing_if = "Option::is_none")] pub idempotency_token: Option<String>, /// <p>The name of an image for this build that overrides the one specified in the build project.</p> #[serde(rename = "imageOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub image_override: Option<String>, /// <p> The type of credentials AWS CodeBuild uses to pull images in your build. There are two valid values: </p> <ul> <li> <p> <code>CODEBUILD</code> specifies that AWS CodeBuild uses its own credentials. This requires that you modify your ECR repository policy to trust AWS CodeBuild's service principal.</p> </li> <li> <p> <code>SERVICE_ROLE</code> specifies that AWS CodeBuild uses your build project's service role. </p> </li> </ul> <p> When using a cross-account or private registry image, you must use SERVICE_ROLE credentials. When using an AWS CodeBuild curated image, you must use CODEBUILD credentials. </p> #[serde(rename = "imagePullCredentialsTypeOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub image_pull_credentials_type_override: Option<String>, /// <p>Enable this flag to override the insecure SSL setting that is specified in the build project. The insecure SSL setting determines whether to ignore SSL warnings while connecting to the project source code. This override applies only if the build's source is GitHub Enterprise.</p> #[serde(rename = "insecureSslOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub insecure_ssl_override: Option<bool>, /// <p> Log settings for this build that override the log settings defined in the build project. </p> #[serde(rename = "logsConfigOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub logs_config_override: Option<LogsConfig>, /// <p>Enable this flag to override privileged mode in the build project.</p> #[serde(rename = "privilegedModeOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub privileged_mode_override: Option<bool>, /// <p>The name of the AWS CodeBuild build project to start running a build.</p> #[serde(rename = "projectName")] pub project_name: String, /// <p> The number of minutes a build is allowed to be queued before it times out. </p> #[serde(rename = "queuedTimeoutInMinutesOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub queued_timeout_in_minutes_override: Option<i64>, /// <p> The credentials for access to a private registry. </p> #[serde(rename = "registryCredentialOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub registry_credential_override: Option<RegistryCredential>, /// <p> Set to true to report to your source provider the status of a build's start and completion. If you use this option with a source provider other than GitHub, GitHub Enterprise, or Bitbucket, an invalidInputException is thrown. </p> #[serde(rename = "reportBuildStatusOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub report_build_status_override: Option<bool>, /// <p> An array of <code>ProjectArtifacts</code> objects. </p> #[serde(rename = "secondaryArtifactsOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_artifacts_override: Option<Vec<ProjectArtifacts>>, /// <p> An array of <code>ProjectSource</code> objects. </p> #[serde(rename = "secondarySourcesOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_sources_override: Option<Vec<ProjectSource>>, /// <p> An array of <code>ProjectSourceVersion</code> objects that specify one or more versions of the project's secondary sources to be used for this build only. </p> #[serde(rename = "secondarySourcesVersionOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_sources_version_override: Option<Vec<ProjectSourceVersion>>, /// <p>The name of a service role for this build that overrides the one specified in the build project.</p> #[serde(rename = "serviceRoleOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub service_role_override: Option<String>, /// <p>An authorization type for this build that overrides the one defined in the build project. This override applies only if the build project's source is BitBucket or GitHub.</p> #[serde(rename = "sourceAuthOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub source_auth_override: Option<SourceAuth>, /// <p>A location that overrides, for this build, the source location for the one defined in the build project.</p> #[serde(rename = "sourceLocationOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub source_location_override: Option<String>, /// <p>A source input type, for this build, that overrides the source input defined in the build project.</p> #[serde(rename = "sourceTypeOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub source_type_override: Option<String>, /// <p><p>A version of the build input to be built, for this build only. If not specified, the latest version is used. If specified, must be one of:</p> <ul> <li> <p>For AWS CodeCommit: the commit ID to use.</p> </li> <li> <p>For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format <code>pr/pull-request-ID</code> (for example <code>pr/25</code>). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.</p> </li> <li> <p>For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.</p> </li> <li> <p>For Amazon Simple Storage Service (Amazon S3): the version ID of the object that represents the build input ZIP file to use.</p> </li> </ul></p> #[serde(rename = "sourceVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub source_version: Option<String>, /// <p>The number of build timeout minutes, from 5 to 480 (8 hours), that overrides, for this build only, the latest setting already defined in the build project.</p> #[serde(rename = "timeoutInMinutesOverride")] #[serde(skip_serializing_if = "Option::is_none")] pub timeout_in_minutes_override: Option<i64>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct StartBuildOutput { /// <p>Information about the build to be run.</p> #[serde(rename = "build")] #[serde(skip_serializing_if = "Option::is_none")] pub build: Option<Build>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct StopBuildInput { /// <p>The ID of the build.</p> #[serde(rename = "id")] pub id: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct StopBuildOutput { /// <p>Information about the build.</p> #[serde(rename = "build")] #[serde(skip_serializing_if = "Option::is_none")] pub build: Option<Build>, } /// <p>A tag, consisting of a key and a value.</p> <p>This tag is available for use by AWS services that support tags in AWS CodeBuild.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Tag { /// <p>The tag's key.</p> #[serde(rename = "key")] #[serde(skip_serializing_if = "Option::is_none")] pub key: Option<String>, /// <p>The tag's value.</p> #[serde(rename = "value")] #[serde(skip_serializing_if = "Option::is_none")] pub value: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UpdateProjectInput { /// <p>Information to be changed about the build output artifacts for the build project.</p> #[serde(rename = "artifacts")] #[serde(skip_serializing_if = "Option::is_none")] pub artifacts: Option<ProjectArtifacts>, /// <p>Set this to true to generate a publicly accessible URL for your project's build badge.</p> #[serde(rename = "badgeEnabled")] #[serde(skip_serializing_if = "Option::is_none")] pub badge_enabled: Option<bool>, /// <p>Stores recently used information so that it can be quickly accessed at a later time.</p> #[serde(rename = "cache")] #[serde(skip_serializing_if = "Option::is_none")] pub cache: Option<ProjectCache>, /// <p>A new or replacement description of the build project.</p> #[serde(rename = "description")] #[serde(skip_serializing_if = "Option::is_none")] pub description: Option<String>, /// <p>The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.</p> <note> <p> You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key. </p> </note> <p>You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format <code>alias/<i>alias-name</i> </code>).</p> #[serde(rename = "encryptionKey")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_key: Option<String>, /// <p>Information to be changed about the build environment for the build project.</p> #[serde(rename = "environment")] #[serde(skip_serializing_if = "Option::is_none")] pub environment: Option<ProjectEnvironment>, /// <p> Information about logs for the build project. A project can create logs in Amazon CloudWatch Logs, logs in an S3 bucket, or both. </p> #[serde(rename = "logsConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub logs_config: Option<LogsConfig>, /// <p><p>The name of the build project.</p> <note> <p>You cannot change a build project's name.</p> </note></p> #[serde(rename = "name")] pub name: String, /// <p> The number of minutes a build is allowed to be queued before it times out. </p> #[serde(rename = "queuedTimeoutInMinutes")] #[serde(skip_serializing_if = "Option::is_none")] pub queued_timeout_in_minutes: Option<i64>, /// <p> An array of <code>ProjectSource</code> objects. </p> #[serde(rename = "secondaryArtifacts")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_artifacts: Option<Vec<ProjectArtifacts>>, /// <p> An array of <code>ProjectSource</code> objects. </p> #[serde(rename = "secondarySources")] #[serde(skip_serializing_if = "Option::is_none")] pub secondary_sources: Option<Vec<ProjectSource>>, /// <p>The replacement ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.</p> #[serde(rename = "serviceRole")] #[serde(skip_serializing_if = "Option::is_none")] pub service_role: Option<String>, /// <p>Information to be changed about the build input source code for the build project.</p> #[serde(rename = "source")] #[serde(skip_serializing_if = "Option::is_none")] pub source: Option<ProjectSource>, /// <p>The replacement set of tags for this build project.</p> <p>These tags are available for use by AWS services that support AWS CodeBuild build project tags.</p> #[serde(rename = "tags")] #[serde(skip_serializing_if = "Option::is_none")] pub tags: Option<Vec<Tag>>, /// <p>The replacement value in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed.</p> #[serde(rename = "timeoutInMinutes")] #[serde(skip_serializing_if = "Option::is_none")] pub timeout_in_minutes: Option<i64>, /// <p>VpcConfig enables AWS CodeBuild to access resources in an Amazon VPC.</p> #[serde(rename = "vpcConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub vpc_config: Option<VpcConfig>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UpdateProjectOutput { /// <p>Information about the build project that was changed.</p> #[serde(rename = "project")] #[serde(skip_serializing_if = "Option::is_none")] pub project: Option<Project>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UpdateWebhookInput { /// <p><p>A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If <code>branchFilter</code> is empty, then all branches are built.</p> <note> <p> It is recommended that you use <code>filterGroups</code> instead of <code>branchFilter</code>. </p> </note></p> #[serde(rename = "branchFilter")] #[serde(skip_serializing_if = "Option::is_none")] pub branch_filter: Option<String>, /// <p> An array of arrays of <code>WebhookFilter</code> objects used to determine if a webhook event can trigger a build. A filter group must pcontain at least one <code>EVENT</code> <code>WebhookFilter</code>. </p> #[serde(rename = "filterGroups")] #[serde(skip_serializing_if = "Option::is_none")] pub filter_groups: Option<Vec<Vec<WebhookFilter>>>, /// <p>The name of the AWS CodeBuild project.</p> #[serde(rename = "projectName")] pub project_name: String, /// <p> A boolean value that specifies whether the associated GitHub repository's secret token should be updated. If you use Bitbucket for your repository, <code>rotateSecret</code> is ignored. </p> #[serde(rename = "rotateSecret")] #[serde(skip_serializing_if = "Option::is_none")] pub rotate_secret: Option<bool>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UpdateWebhookOutput { /// <p> Information about a repository's webhook that is associated with a project in AWS CodeBuild. </p> #[serde(rename = "webhook")] #[serde(skip_serializing_if = "Option::is_none")] pub webhook: Option<Webhook>, } /// <p>Information about the VPC configuration that AWS CodeBuild accesses.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct VpcConfig { /// <p>A list of one or more security groups IDs in your Amazon VPC.</p> #[serde(rename = "securityGroupIds")] #[serde(skip_serializing_if = "Option::is_none")] pub security_group_ids: Option<Vec<String>>, /// <p>A list of one or more subnet IDs in your Amazon VPC.</p> #[serde(rename = "subnets")] #[serde(skip_serializing_if = "Option::is_none")] pub subnets: Option<Vec<String>>, /// <p>The ID of the Amazon VPC.</p> #[serde(rename = "vpcId")] #[serde(skip_serializing_if = "Option::is_none")] pub vpc_id: Option<String>, } /// <p>Information about a webhook that connects repository events to a build project in AWS CodeBuild.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct Webhook { /// <p><p>A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If <code>branchFilter</code> is empty, then all branches are built.</p> <note> <p> It is recommended that you use <code>filterGroups</code> instead of <code>branchFilter</code>. </p> </note></p> #[serde(rename = "branchFilter")] #[serde(skip_serializing_if = "Option::is_none")] pub branch_filter: Option<String>, /// <p> An array of arrays of <code>WebhookFilter</code> objects used to determine which webhooks are triggered. At least one <code>WebhookFilter</code> in the array must specify <code>EVENT</code> as its <code>type</code>. </p> <p> For a build to be triggered, at least one filter group in the <code>filterGroups</code> array must pass. For a filter group to pass, each of its filters must pass. </p> #[serde(rename = "filterGroups")] #[serde(skip_serializing_if = "Option::is_none")] pub filter_groups: Option<Vec<Vec<WebhookFilter>>>, /// <p> A timestamp that indicates the last time a repository's secret token was modified. </p> #[serde(rename = "lastModifiedSecret")] #[serde(skip_serializing_if = "Option::is_none")] pub last_modified_secret: Option<f64>, /// <p> The AWS CodeBuild endpoint where webhook events are sent.</p> #[serde(rename = "payloadUrl")] #[serde(skip_serializing_if = "Option::is_none")] pub payload_url: Option<String>, /// <p><p> The secret token of the associated repository. </p> <note> <p> A Bitbucket webhook does not support <code>secret</code>. </p> </note></p> #[serde(rename = "secret")] #[serde(skip_serializing_if = "Option::is_none")] pub secret: Option<String>, /// <p>The URL to the webhook.</p> #[serde(rename = "url")] #[serde(skip_serializing_if = "Option::is_none")] pub url: Option<String>, } /// <p> A filter used to determine which webhooks trigger a build. </p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct WebhookFilter { /// <p> Used to indicate that the <code>pattern</code> determines which webhook events do not trigger a build. If true, then a webhook event that does not match the <code>pattern</code> triggers a build. If false, then a webhook event that matches the <code>pattern</code> triggers a build. </p> #[serde(rename = "excludeMatchedPattern")] #[serde(skip_serializing_if = "Option::is_none")] pub exclude_matched_pattern: Option<bool>, /// <p> For a <code>WebHookFilter</code> that uses <code>EVENT</code> type, a comma-separated string that specifies one or more events. For example, the webhook filter <code>PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED</code> allows all push, pull request created, and pull request updated events to trigger a build. </p> <p> For a <code>WebHookFilter</code> that uses any of the other filter types, a regular expression pattern. For example, a <code>WebHookFilter</code> that uses <code>HEAD_REF</code> for its <code>type</code> and the pattern <code>^refs/heads/</code> triggers a build when the head reference is a branch with a reference name <code>refs/heads/branch-name</code>. </p> #[serde(rename = "pattern")] pub pattern: String, /// <p><p> The type of webhook filter. There are five webhook filter types: <code>EVENT</code>, <code>ACTOR<em>ACCOUNT</em>ID</code>, <code>HEAD<em>REF</code>, <code>BASE</em>REF</code>, and <code>FILE<em>PATH</code>. </p> <dl> <dt> EVENT </dt> <dd> <p> A webhook event triggers a build when the provided <code>pattern</code> matches one of four event types: <code>PUSH</code>, <code>PULL</em>REQUEST<em>CREATED</code>, <code>PULL</em>REQUEST<em>UPDATED</code>, and <code>PULL</em>REQUEST<em>REOPENED</code>. The <code>EVENT</code> patterns are specified as a comma-separated string. For example, <code>PUSH, PULL</em>REQUEST<em>CREATED, PULL</em>REQUEST<em>UPDATED</code> filters all push, pull request created, and pull request updated events. </p> <note> <p> The <code>PULL</em>REQUEST<em>REOPENED</code> works with GitHub and GitHub Enterprise only. </p> </note> </dd> <dt> ACTOR</em>ACCOUNT<em>ID </dt> <dd> <p> A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression <code>pattern</code>. </p> </dd> <dt> HEAD</em>REF </dt> <dd> <p> A webhook event triggers a build when the head reference matches the regular expression <code>pattern</code>. For example, <code>refs/heads/branch-name</code> and <code>refs/tags/tag-name</code>. </p> <p> Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events. </p> </dd> <dt> BASE<em>REF </dt> <dd> <p> A webhook event triggers a build when the base reference matches the regular expression <code>pattern</code>. For example, <code>refs/heads/branch-name</code>. </p> <note> <p> Works with pull request events only. </p> </note> </dd> <dt> FILE</em>PATH </dt> <dd> <p> A webhook triggers a build when the path of a changed file matches the regular expression <code>pattern</code>. </p> <note> <p> Works with GitHub and GitHub Enterprise push events only. </p> </note> </dd> </dl></p> #[serde(rename = "type")] pub type_: String, } /// Errors returned by BatchDeleteBuilds #[derive(Debug, PartialEq)] pub enum BatchDeleteBuildsError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), } impl BatchDeleteBuildsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<BatchDeleteBuildsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(BatchDeleteBuildsError::InvalidInput(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for BatchDeleteBuildsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for BatchDeleteBuildsError { fn description(&self) -> &str { match *self { BatchDeleteBuildsError::InvalidInput(ref cause) => cause, } } } /// Errors returned by BatchGetBuilds #[derive(Debug, PartialEq)] pub enum BatchGetBuildsError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), } impl BatchGetBuildsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<BatchGetBuildsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(BatchGetBuildsError::InvalidInput(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for BatchGetBuildsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for BatchGetBuildsError { fn description(&self) -> &str { match *self { BatchGetBuildsError::InvalidInput(ref cause) => cause, } } } /// Errors returned by BatchGetProjects #[derive(Debug, PartialEq)] pub enum BatchGetProjectsError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), } impl BatchGetProjectsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<BatchGetProjectsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(BatchGetProjectsError::InvalidInput(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for BatchGetProjectsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for BatchGetProjectsError { fn description(&self) -> &str { match *self { BatchGetProjectsError::InvalidInput(ref cause) => cause, } } } /// Errors returned by CreateProject #[derive(Debug, PartialEq)] pub enum CreateProjectError { /// <p>An AWS service limit was exceeded for the calling AWS account.</p> AccountLimitExceeded(String), /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>The specified AWS resource cannot be created, because an AWS resource with the same settings already exists.</p> ResourceAlreadyExists(String), } impl CreateProjectError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateProjectError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "AccountLimitExceededException" => { return RusotoError::Service(CreateProjectError::AccountLimitExceeded(err.msg)) } "InvalidInputException" => { return RusotoError::Service(CreateProjectError::InvalidInput(err.msg)) } "ResourceAlreadyExistsException" => { return RusotoError::Service(CreateProjectError::ResourceAlreadyExists(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateProjectError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateProjectError { fn description(&self) -> &str { match *self { CreateProjectError::AccountLimitExceeded(ref cause) => cause, CreateProjectError::InvalidInput(ref cause) => cause, CreateProjectError::ResourceAlreadyExists(ref cause) => cause, } } } /// Errors returned by CreateWebhook #[derive(Debug, PartialEq)] pub enum CreateWebhookError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>There was a problem with the underlying OAuth provider.</p> OAuthProvider(String), /// <p>The specified AWS resource cannot be created, because an AWS resource with the same settings already exists.</p> ResourceAlreadyExists(String), /// <p>The specified AWS resource cannot be found.</p> ResourceNotFound(String), } impl CreateWebhookError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateWebhookError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(CreateWebhookError::InvalidInput(err.msg)) } "OAuthProviderException" => { return RusotoError::Service(CreateWebhookError::OAuthProvider(err.msg)) } "ResourceAlreadyExistsException" => { return RusotoError::Service(CreateWebhookError::ResourceAlreadyExists(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(CreateWebhookError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateWebhookError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateWebhookError { fn description(&self) -> &str { match *self { CreateWebhookError::InvalidInput(ref cause) => cause, CreateWebhookError::OAuthProvider(ref cause) => cause, CreateWebhookError::ResourceAlreadyExists(ref cause) => cause, CreateWebhookError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by DeleteProject #[derive(Debug, PartialEq)] pub enum DeleteProjectError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), } impl DeleteProjectError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteProjectError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(DeleteProjectError::InvalidInput(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteProjectError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteProjectError { fn description(&self) -> &str { match *self { DeleteProjectError::InvalidInput(ref cause) => cause, } } } /// Errors returned by DeleteSourceCredentials #[derive(Debug, PartialEq)] pub enum DeleteSourceCredentialsError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>The specified AWS resource cannot be found.</p> ResourceNotFound(String), } impl DeleteSourceCredentialsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteSourceCredentialsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(DeleteSourceCredentialsError::InvalidInput( err.msg, )) } "ResourceNotFoundException" => { return RusotoError::Service(DeleteSourceCredentialsError::ResourceNotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteSourceCredentialsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteSourceCredentialsError { fn description(&self) -> &str { match *self { DeleteSourceCredentialsError::InvalidInput(ref cause) => cause, DeleteSourceCredentialsError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by DeleteWebhook #[derive(Debug, PartialEq)] pub enum DeleteWebhookError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>There was a problem with the underlying OAuth provider.</p> OAuthProvider(String), /// <p>The specified AWS resource cannot be found.</p> ResourceNotFound(String), } impl DeleteWebhookError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteWebhookError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(DeleteWebhookError::InvalidInput(err.msg)) } "OAuthProviderException" => { return RusotoError::Service(DeleteWebhookError::OAuthProvider(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(DeleteWebhookError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteWebhookError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteWebhookError { fn description(&self) -> &str { match *self { DeleteWebhookError::InvalidInput(ref cause) => cause, DeleteWebhookError::OAuthProvider(ref cause) => cause, DeleteWebhookError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by ImportSourceCredentials #[derive(Debug, PartialEq)] pub enum ImportSourceCredentialsError { /// <p>An AWS service limit was exceeded for the calling AWS account.</p> AccountLimitExceeded(String), /// <p>The input value that was provided is not valid.</p> InvalidInput(String), } impl ImportSourceCredentialsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ImportSourceCredentialsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "AccountLimitExceededException" => { return RusotoError::Service( ImportSourceCredentialsError::AccountLimitExceeded(err.msg), ) } "InvalidInputException" => { return RusotoError::Service(ImportSourceCredentialsError::InvalidInput( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ImportSourceCredentialsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ImportSourceCredentialsError { fn description(&self) -> &str { match *self { ImportSourceCredentialsError::AccountLimitExceeded(ref cause) => cause, ImportSourceCredentialsError::InvalidInput(ref cause) => cause, } } } /// Errors returned by InvalidateProjectCache #[derive(Debug, PartialEq)] pub enum InvalidateProjectCacheError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>The specified AWS resource cannot be found.</p> ResourceNotFound(String), } impl InvalidateProjectCacheError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<InvalidateProjectCacheError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(InvalidateProjectCacheError::InvalidInput(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(InvalidateProjectCacheError::ResourceNotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for InvalidateProjectCacheError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for InvalidateProjectCacheError { fn description(&self) -> &str { match *self { InvalidateProjectCacheError::InvalidInput(ref cause) => cause, InvalidateProjectCacheError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by ListBuilds #[derive(Debug, PartialEq)] pub enum ListBuildsError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), } impl ListBuildsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListBuildsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(ListBuildsError::InvalidInput(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListBuildsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListBuildsError { fn description(&self) -> &str { match *self { ListBuildsError::InvalidInput(ref cause) => cause, } } } /// Errors returned by ListBuildsForProject #[derive(Debug, PartialEq)] pub enum ListBuildsForProjectError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>The specified AWS resource cannot be found.</p> ResourceNotFound(String), } impl ListBuildsForProjectError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListBuildsForProjectError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(ListBuildsForProjectError::InvalidInput(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(ListBuildsForProjectError::ResourceNotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListBuildsForProjectError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListBuildsForProjectError { fn description(&self) -> &str { match *self { ListBuildsForProjectError::InvalidInput(ref cause) => cause, ListBuildsForProjectError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by ListCuratedEnvironmentImages #[derive(Debug, PartialEq)] pub enum ListCuratedEnvironmentImagesError {} impl ListCuratedEnvironmentImagesError { pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListCuratedEnvironmentImagesError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListCuratedEnvironmentImagesError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListCuratedEnvironmentImagesError { fn description(&self) -> &str { match *self {} } } /// Errors returned by ListProjects #[derive(Debug, PartialEq)] pub enum ListProjectsError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), } impl ListProjectsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListProjectsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(ListProjectsError::InvalidInput(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListProjectsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListProjectsError { fn description(&self) -> &str { match *self { ListProjectsError::InvalidInput(ref cause) => cause, } } } /// Errors returned by ListSourceCredentials #[derive(Debug, PartialEq)] pub enum ListSourceCredentialsError {} impl ListSourceCredentialsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListSourceCredentialsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListSourceCredentialsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListSourceCredentialsError { fn description(&self) -> &str { match *self {} } } /// Errors returned by StartBuild #[derive(Debug, PartialEq)] pub enum StartBuildError { /// <p>An AWS service limit was exceeded for the calling AWS account.</p> AccountLimitExceeded(String), /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>The specified AWS resource cannot be found.</p> ResourceNotFound(String), } impl StartBuildError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<StartBuildError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "AccountLimitExceededException" => { return RusotoError::Service(StartBuildError::AccountLimitExceeded(err.msg)) } "InvalidInputException" => { return RusotoError::Service(StartBuildError::InvalidInput(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(StartBuildError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for StartBuildError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for StartBuildError { fn description(&self) -> &str { match *self { StartBuildError::AccountLimitExceeded(ref cause) => cause, StartBuildError::InvalidInput(ref cause) => cause, StartBuildError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by StopBuild #[derive(Debug, PartialEq)] pub enum StopBuildError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>The specified AWS resource cannot be found.</p> ResourceNotFound(String), } impl StopBuildError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<StopBuildError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(StopBuildError::InvalidInput(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(StopBuildError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for StopBuildError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for StopBuildError { fn description(&self) -> &str { match *self { StopBuildError::InvalidInput(ref cause) => cause, StopBuildError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by UpdateProject #[derive(Debug, PartialEq)] pub enum UpdateProjectError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>The specified AWS resource cannot be found.</p> ResourceNotFound(String), } impl UpdateProjectError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateProjectError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(UpdateProjectError::InvalidInput(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(UpdateProjectError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UpdateProjectError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UpdateProjectError { fn description(&self) -> &str { match *self { UpdateProjectError::InvalidInput(ref cause) => cause, UpdateProjectError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by UpdateWebhook #[derive(Debug, PartialEq)] pub enum UpdateWebhookError { /// <p>The input value that was provided is not valid.</p> InvalidInput(String), /// <p>There was a problem with the underlying OAuth provider.</p> OAuthProvider(String), /// <p>The specified AWS resource cannot be found.</p> ResourceNotFound(String), } impl UpdateWebhookError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateWebhookError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidInputException" => { return RusotoError::Service(UpdateWebhookError::InvalidInput(err.msg)) } "OAuthProviderException" => { return RusotoError::Service(UpdateWebhookError::OAuthProvider(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(UpdateWebhookError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UpdateWebhookError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UpdateWebhookError { fn description(&self) -> &str { match *self { UpdateWebhookError::InvalidInput(ref cause) => cause, UpdateWebhookError::OAuthProvider(ref cause) => cause, UpdateWebhookError::ResourceNotFound(ref cause) => cause, } } } /// Trait representing the capabilities of the AWS CodeBuild API. AWS CodeBuild clients implement this trait. pub trait CodeBuild { /// <p>Deletes one or more builds.</p> fn batch_delete_builds( &self, input: BatchDeleteBuildsInput, ) -> RusotoFuture<BatchDeleteBuildsOutput, BatchDeleteBuildsError>; /// <p>Gets information about builds.</p> fn batch_get_builds( &self, input: BatchGetBuildsInput, ) -> RusotoFuture<BatchGetBuildsOutput, BatchGetBuildsError>; /// <p>Gets information about build projects.</p> fn batch_get_projects( &self, input: BatchGetProjectsInput, ) -> RusotoFuture<BatchGetProjectsOutput, BatchGetProjectsError>; /// <p>Creates a build project.</p> fn create_project( &self, input: CreateProjectInput, ) -> RusotoFuture<CreateProjectOutput, CreateProjectError>; /// <p><p>For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, enables AWS CodeBuild to start rebuilding the source code every time a code change is pushed to the repository.</p> <important> <p>If you enable webhooks for an AWS CodeBuild project, and the project is used as a build step in AWS CodePipeline, then two identical builds are created for each commit. One build is triggered through webhooks, and one through AWS CodePipeline. Because billing is on a per-build basis, you are billed for both builds. Therefore, if you are using AWS CodePipeline, we recommend that you disable webhooks in AWS CodeBuild. In the AWS CodeBuild console, clear the Webhook box. For more information, see step 5 in <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/change-project.html#change-project-console">Change a Build Project's Settings</a>.</p> </important></p> fn create_webhook( &self, input: CreateWebhookInput, ) -> RusotoFuture<CreateWebhookOutput, CreateWebhookError>; /// <p>Deletes a build project.</p> fn delete_project( &self, input: DeleteProjectInput, ) -> RusotoFuture<DeleteProjectOutput, DeleteProjectError>; /// <p> Deletes a set of GitHub, GitHub Enterprise, or Bitbucket source credentials. </p> fn delete_source_credentials( &self, input: DeleteSourceCredentialsInput, ) -> RusotoFuture<DeleteSourceCredentialsOutput, DeleteSourceCredentialsError>; /// <p>For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, stops AWS CodeBuild from rebuilding the source code every time a code change is pushed to the repository.</p> fn delete_webhook( &self, input: DeleteWebhookInput, ) -> RusotoFuture<DeleteWebhookOutput, DeleteWebhookError>; /// <p> Imports the source repository credentials for an AWS CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository. </p> fn import_source_credentials( &self, input: ImportSourceCredentialsInput, ) -> RusotoFuture<ImportSourceCredentialsOutput, ImportSourceCredentialsError>; /// <p>Resets the cache for a project.</p> fn invalidate_project_cache( &self, input: InvalidateProjectCacheInput, ) -> RusotoFuture<InvalidateProjectCacheOutput, InvalidateProjectCacheError>; /// <p>Gets a list of build IDs, with each build ID representing a single build.</p> fn list_builds( &self, input: ListBuildsInput, ) -> RusotoFuture<ListBuildsOutput, ListBuildsError>; /// <p>Gets a list of build IDs for the specified build project, with each build ID representing a single build.</p> fn list_builds_for_project( &self, input: ListBuildsForProjectInput, ) -> RusotoFuture<ListBuildsForProjectOutput, ListBuildsForProjectError>; /// <p>Gets information about Docker images that are managed by AWS CodeBuild.</p> fn list_curated_environment_images( &self, ) -> RusotoFuture<ListCuratedEnvironmentImagesOutput, ListCuratedEnvironmentImagesError>; /// <p>Gets a list of build project names, with each build project name representing a single build project.</p> fn list_projects( &self, input: ListProjectsInput, ) -> RusotoFuture<ListProjectsOutput, ListProjectsError>; /// <p> Returns a list of <code>SourceCredentialsInfo</code> objects. </p> fn list_source_credentials( &self, ) -> RusotoFuture<ListSourceCredentialsOutput, ListSourceCredentialsError>; /// <p>Starts running a build.</p> fn start_build( &self, input: StartBuildInput, ) -> RusotoFuture<StartBuildOutput, StartBuildError>; /// <p>Attempts to stop running a build.</p> fn stop_build(&self, input: StopBuildInput) -> RusotoFuture<StopBuildOutput, StopBuildError>; /// <p>Changes the settings of a build project.</p> fn update_project( &self, input: UpdateProjectInput, ) -> RusotoFuture<UpdateProjectOutput, UpdateProjectError>; /// <p><p> Updates the webhook associated with an AWS CodeBuild build project. </p> <note> <p> If you use Bitbucket for your repository, <code>rotateSecret</code> is ignored. </p> </note></p> fn update_webhook( &self, input: UpdateWebhookInput, ) -> RusotoFuture<UpdateWebhookOutput, UpdateWebhookError>; } /// A client for the AWS CodeBuild API. #[derive(Clone)] pub struct CodeBuildClient { client: Client, region: region::Region, } impl CodeBuildClient { /// 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) -> CodeBuildClient { CodeBuildClient { client: Client::shared(), region, } } pub fn new_with<P, D>( request_dispatcher: D, credentials_provider: P, region: region::Region, ) -> CodeBuildClient where P: ProvideAwsCredentials + Send + Sync + 'static, P::Future: Send, D: DispatchSignedRequest + Send + Sync + 'static, D::Future: Send, { CodeBuildClient { client: Client::new_with(credentials_provider, request_dispatcher), region, } } } impl CodeBuild for CodeBuildClient { /// <p>Deletes one or more builds.</p> fn batch_delete_builds( &self, input: BatchDeleteBuildsInput, ) -> RusotoFuture<BatchDeleteBuildsOutput, BatchDeleteBuildsError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.BatchDeleteBuilds"); 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::<BatchDeleteBuildsOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(BatchDeleteBuildsError::from_response(response))), ) } }) } /// <p>Gets information about builds.</p> fn batch_get_builds( &self, input: BatchGetBuildsInput, ) -> RusotoFuture<BatchGetBuildsOutput, BatchGetBuildsError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.BatchGetBuilds"); 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::<BatchGetBuildsOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(BatchGetBuildsError::from_response(response))), ) } }) } /// <p>Gets information about build projects.</p> fn batch_get_projects( &self, input: BatchGetProjectsInput, ) -> RusotoFuture<BatchGetProjectsOutput, BatchGetProjectsError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.BatchGetProjects"); 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::<BatchGetProjectsOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(BatchGetProjectsError::from_response(response))), ) } }) } /// <p>Creates a build project.</p> fn create_project( &self, input: CreateProjectInput, ) -> RusotoFuture<CreateProjectOutput, CreateProjectError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.CreateProject"); 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::<CreateProjectOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(CreateProjectError::from_response(response))), ) } }) } /// <p><p>For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, enables AWS CodeBuild to start rebuilding the source code every time a code change is pushed to the repository.</p> <important> <p>If you enable webhooks for an AWS CodeBuild project, and the project is used as a build step in AWS CodePipeline, then two identical builds are created for each commit. One build is triggered through webhooks, and one through AWS CodePipeline. Because billing is on a per-build basis, you are billed for both builds. Therefore, if you are using AWS CodePipeline, we recommend that you disable webhooks in AWS CodeBuild. In the AWS CodeBuild console, clear the Webhook box. For more information, see step 5 in <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/change-project.html#change-project-console">Change a Build Project's Settings</a>.</p> </important></p> fn create_webhook( &self, input: CreateWebhookInput, ) -> RusotoFuture<CreateWebhookOutput, CreateWebhookError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.CreateWebhook"); 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::<CreateWebhookOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(CreateWebhookError::from_response(response))), ) } }) } /// <p>Deletes a build project.</p> fn delete_project( &self, input: DeleteProjectInput, ) -> RusotoFuture<DeleteProjectOutput, DeleteProjectError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.DeleteProject"); 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::<DeleteProjectOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteProjectError::from_response(response))), ) } }) } /// <p> Deletes a set of GitHub, GitHub Enterprise, or Bitbucket source credentials. </p> fn delete_source_credentials( &self, input: DeleteSourceCredentialsInput, ) -> RusotoFuture<DeleteSourceCredentialsOutput, DeleteSourceCredentialsError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.DeleteSourceCredentials"); 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::<DeleteSourceCredentialsOutput, _>() })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(DeleteSourceCredentialsError::from_response(response)) })) } }) } /// <p>For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository, stops AWS CodeBuild from rebuilding the source code every time a code change is pushed to the repository.</p> fn delete_webhook( &self, input: DeleteWebhookInput, ) -> RusotoFuture<DeleteWebhookOutput, DeleteWebhookError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.DeleteWebhook"); 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::<DeleteWebhookOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(DeleteWebhookError::from_response(response))), ) } }) } /// <p> Imports the source repository credentials for an AWS CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository. </p> fn import_source_credentials( &self, input: ImportSourceCredentialsInput, ) -> RusotoFuture<ImportSourceCredentialsOutput, ImportSourceCredentialsError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.ImportSourceCredentials"); 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::<ImportSourceCredentialsOutput, _>() })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(ImportSourceCredentialsError::from_response(response)) })) } }) } /// <p>Resets the cache for a project.</p> fn invalidate_project_cache( &self, input: InvalidateProjectCacheInput, ) -> RusotoFuture<InvalidateProjectCacheOutput, InvalidateProjectCacheError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.InvalidateProjectCache"); 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::<InvalidateProjectCacheOutput, _>() })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(InvalidateProjectCacheError::from_response(response)) }), ) } }) } /// <p>Gets a list of build IDs, with each build ID representing a single build.</p> fn list_builds( &self, input: ListBuildsInput, ) -> RusotoFuture<ListBuildsOutput, ListBuildsError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.ListBuilds"); 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::<ListBuildsOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListBuildsError::from_response(response))), ) } }) } /// <p>Gets a list of build IDs for the specified build project, with each build ID representing a single build.</p> fn list_builds_for_project( &self, input: ListBuildsForProjectInput, ) -> RusotoFuture<ListBuildsForProjectOutput, ListBuildsForProjectError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.ListBuildsForProject"); 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::<ListBuildsForProjectOutput, _>() })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(ListBuildsForProjectError::from_response(response)) }), ) } }) } /// <p>Gets information about Docker images that are managed by AWS CodeBuild.</p> fn list_curated_environment_images( &self, ) -> RusotoFuture<ListCuratedEnvironmentImagesOutput, ListCuratedEnvironmentImagesError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "CodeBuild_20161006.ListCuratedEnvironmentImages", ); request.set_payload(Some(bytes::Bytes::from_static(b"{}"))); 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::<ListCuratedEnvironmentImagesOutput, _>() })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(ListCuratedEnvironmentImagesError::from_response(response)) })) } }) } /// <p>Gets a list of build project names, with each build project name representing a single build project.</p> fn list_projects( &self, input: ListProjectsInput, ) -> RusotoFuture<ListProjectsOutput, ListProjectsError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.ListProjects"); 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::<ListProjectsOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(ListProjectsError::from_response(response))), ) } }) } /// <p> Returns a list of <code>SourceCredentialsInfo</code> objects. </p> fn list_source_credentials( &self, ) -> RusotoFuture<ListSourceCredentialsOutput, ListSourceCredentialsError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.ListSourceCredentials"); request.set_payload(Some(bytes::Bytes::from_static(b"{}"))); 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::<ListSourceCredentialsOutput, _>() })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(ListSourceCredentialsError::from_response(response)) }), ) } }) } /// <p>Starts running a build.</p> fn start_build( &self, input: StartBuildInput, ) -> RusotoFuture<StartBuildOutput, StartBuildError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.StartBuild"); 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::<StartBuildOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(StartBuildError::from_response(response))), ) } }) } /// <p>Attempts to stop running a build.</p> fn stop_build(&self, input: StopBuildInput) -> RusotoFuture<StopBuildOutput, StopBuildError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.StopBuild"); 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::<StopBuildOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(StopBuildError::from_response(response))), ) } }) } /// <p>Changes the settings of a build project.</p> fn update_project( &self, input: UpdateProjectInput, ) -> RusotoFuture<UpdateProjectOutput, UpdateProjectError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.UpdateProject"); 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::<UpdateProjectOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(UpdateProjectError::from_response(response))), ) } }) } /// <p><p> Updates the webhook associated with an AWS CodeBuild build project. </p> <note> <p> If you use Bitbucket for your repository, <code>rotateSecret</code> is ignored. </p> </note></p> fn update_webhook( &self, input: UpdateWebhookInput, ) -> RusotoFuture<UpdateWebhookOutput, UpdateWebhookError> { let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "CodeBuild_20161006.UpdateWebhook"); 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::<UpdateWebhookOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(UpdateWebhookError::from_response(response))), ) } }) } }