1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797
|
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package codepipeline provides a client for AWS CodePipeline.
package codepipeline
import (
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/private/protocol"
"github.com/aws/aws-sdk-go/private/protocol/jsonrpc"
)
const opAcknowledgeJob = "AcknowledgeJob"
// AcknowledgeJobRequest generates a request for the AcknowledgeJob operation.
func (c *CodePipeline) AcknowledgeJobRequest(input *AcknowledgeJobInput) (req *request.Request, output *AcknowledgeJobOutput) {
op := &request.Operation{
Name: opAcknowledgeJob,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &AcknowledgeJobInput{}
}
req = c.newRequest(op, input, output)
output = &AcknowledgeJobOutput{}
req.Data = output
return
}
// Returns information about a specified job and whether that job has been received
// by the job worker. Only used for custom actions.
func (c *CodePipeline) AcknowledgeJob(input *AcknowledgeJobInput) (*AcknowledgeJobOutput, error) {
req, out := c.AcknowledgeJobRequest(input)
err := req.Send()
return out, err
}
const opAcknowledgeThirdPartyJob = "AcknowledgeThirdPartyJob"
// AcknowledgeThirdPartyJobRequest generates a request for the AcknowledgeThirdPartyJob operation.
func (c *CodePipeline) AcknowledgeThirdPartyJobRequest(input *AcknowledgeThirdPartyJobInput) (req *request.Request, output *AcknowledgeThirdPartyJobOutput) {
op := &request.Operation{
Name: opAcknowledgeThirdPartyJob,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &AcknowledgeThirdPartyJobInput{}
}
req = c.newRequest(op, input, output)
output = &AcknowledgeThirdPartyJobOutput{}
req.Data = output
return
}
// Confirms a job worker has received the specified job. Only used for partner
// actions.
func (c *CodePipeline) AcknowledgeThirdPartyJob(input *AcknowledgeThirdPartyJobInput) (*AcknowledgeThirdPartyJobOutput, error) {
req, out := c.AcknowledgeThirdPartyJobRequest(input)
err := req.Send()
return out, err
}
const opCreateCustomActionType = "CreateCustomActionType"
// CreateCustomActionTypeRequest generates a request for the CreateCustomActionType operation.
func (c *CodePipeline) CreateCustomActionTypeRequest(input *CreateCustomActionTypeInput) (req *request.Request, output *CreateCustomActionTypeOutput) {
op := &request.Operation{
Name: opCreateCustomActionType,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateCustomActionTypeInput{}
}
req = c.newRequest(op, input, output)
output = &CreateCustomActionTypeOutput{}
req.Data = output
return
}
// Creates a new custom action that can be used in all pipelines associated
// with the AWS account. Only used for custom actions.
func (c *CodePipeline) CreateCustomActionType(input *CreateCustomActionTypeInput) (*CreateCustomActionTypeOutput, error) {
req, out := c.CreateCustomActionTypeRequest(input)
err := req.Send()
return out, err
}
const opCreatePipeline = "CreatePipeline"
// CreatePipelineRequest generates a request for the CreatePipeline operation.
func (c *CodePipeline) CreatePipelineRequest(input *CreatePipelineInput) (req *request.Request, output *CreatePipelineOutput) {
op := &request.Operation{
Name: opCreatePipeline,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreatePipelineInput{}
}
req = c.newRequest(op, input, output)
output = &CreatePipelineOutput{}
req.Data = output
return
}
// Creates a pipeline.
func (c *CodePipeline) CreatePipeline(input *CreatePipelineInput) (*CreatePipelineOutput, error) {
req, out := c.CreatePipelineRequest(input)
err := req.Send()
return out, err
}
const opDeleteCustomActionType = "DeleteCustomActionType"
// DeleteCustomActionTypeRequest generates a request for the DeleteCustomActionType operation.
func (c *CodePipeline) DeleteCustomActionTypeRequest(input *DeleteCustomActionTypeInput) (req *request.Request, output *DeleteCustomActionTypeOutput) {
op := &request.Operation{
Name: opDeleteCustomActionType,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteCustomActionTypeInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteCustomActionTypeOutput{}
req.Data = output
return
}
// Marks a custom action as deleted. PollForJobs for the custom action will
// fail after the action is marked for deletion. Only used for custom actions.
//
// You cannot recreate a custom action after it has been deleted unless you
// increase the version number of the action.
func (c *CodePipeline) DeleteCustomActionType(input *DeleteCustomActionTypeInput) (*DeleteCustomActionTypeOutput, error) {
req, out := c.DeleteCustomActionTypeRequest(input)
err := req.Send()
return out, err
}
const opDeletePipeline = "DeletePipeline"
// DeletePipelineRequest generates a request for the DeletePipeline operation.
func (c *CodePipeline) DeletePipelineRequest(input *DeletePipelineInput) (req *request.Request, output *DeletePipelineOutput) {
op := &request.Operation{
Name: opDeletePipeline,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeletePipelineInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeletePipelineOutput{}
req.Data = output
return
}
// Deletes the specified pipeline.
func (c *CodePipeline) DeletePipeline(input *DeletePipelineInput) (*DeletePipelineOutput, error) {
req, out := c.DeletePipelineRequest(input)
err := req.Send()
return out, err
}
const opDisableStageTransition = "DisableStageTransition"
// DisableStageTransitionRequest generates a request for the DisableStageTransition operation.
func (c *CodePipeline) DisableStageTransitionRequest(input *DisableStageTransitionInput) (req *request.Request, output *DisableStageTransitionOutput) {
op := &request.Operation{
Name: opDisableStageTransition,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DisableStageTransitionInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DisableStageTransitionOutput{}
req.Data = output
return
}
// Prevents artifacts in a pipeline from transitioning to the next stage in
// the pipeline.
func (c *CodePipeline) DisableStageTransition(input *DisableStageTransitionInput) (*DisableStageTransitionOutput, error) {
req, out := c.DisableStageTransitionRequest(input)
err := req.Send()
return out, err
}
const opEnableStageTransition = "EnableStageTransition"
// EnableStageTransitionRequest generates a request for the EnableStageTransition operation.
func (c *CodePipeline) EnableStageTransitionRequest(input *EnableStageTransitionInput) (req *request.Request, output *EnableStageTransitionOutput) {
op := &request.Operation{
Name: opEnableStageTransition,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &EnableStageTransitionInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &EnableStageTransitionOutput{}
req.Data = output
return
}
// Enables artifacts in a pipeline to transition to a stage in a pipeline.
func (c *CodePipeline) EnableStageTransition(input *EnableStageTransitionInput) (*EnableStageTransitionOutput, error) {
req, out := c.EnableStageTransitionRequest(input)
err := req.Send()
return out, err
}
const opGetJobDetails = "GetJobDetails"
// GetJobDetailsRequest generates a request for the GetJobDetails operation.
func (c *CodePipeline) GetJobDetailsRequest(input *GetJobDetailsInput) (req *request.Request, output *GetJobDetailsOutput) {
op := &request.Operation{
Name: opGetJobDetails,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetJobDetailsInput{}
}
req = c.newRequest(op, input, output)
output = &GetJobDetailsOutput{}
req.Data = output
return
}
// Returns information about a job. Only used for custom actions.
//
// When this API is called, AWS CodePipeline returns temporary credentials
// for the Amazon S3 bucket used to store artifacts for the pipeline, if the
// action requires access to that Amazon S3 bucket for input or output artifacts.
// Additionally, this API returns any secret values defined for the action.
func (c *CodePipeline) GetJobDetails(input *GetJobDetailsInput) (*GetJobDetailsOutput, error) {
req, out := c.GetJobDetailsRequest(input)
err := req.Send()
return out, err
}
const opGetPipeline = "GetPipeline"
// GetPipelineRequest generates a request for the GetPipeline operation.
func (c *CodePipeline) GetPipelineRequest(input *GetPipelineInput) (req *request.Request, output *GetPipelineOutput) {
op := &request.Operation{
Name: opGetPipeline,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetPipelineInput{}
}
req = c.newRequest(op, input, output)
output = &GetPipelineOutput{}
req.Data = output
return
}
// Returns the metadata, structure, stages, and actions of a pipeline. Can be
// used to return the entire structure of a pipeline in JSON format, which can
// then be modified and used to update the pipeline structure with UpdatePipeline.
func (c *CodePipeline) GetPipeline(input *GetPipelineInput) (*GetPipelineOutput, error) {
req, out := c.GetPipelineRequest(input)
err := req.Send()
return out, err
}
const opGetPipelineState = "GetPipelineState"
// GetPipelineStateRequest generates a request for the GetPipelineState operation.
func (c *CodePipeline) GetPipelineStateRequest(input *GetPipelineStateInput) (req *request.Request, output *GetPipelineStateOutput) {
op := &request.Operation{
Name: opGetPipelineState,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetPipelineStateInput{}
}
req = c.newRequest(op, input, output)
output = &GetPipelineStateOutput{}
req.Data = output
return
}
// Returns information about the state of a pipeline, including the stages,
// actions, and details about the last run of the pipeline.
func (c *CodePipeline) GetPipelineState(input *GetPipelineStateInput) (*GetPipelineStateOutput, error) {
req, out := c.GetPipelineStateRequest(input)
err := req.Send()
return out, err
}
const opGetThirdPartyJobDetails = "GetThirdPartyJobDetails"
// GetThirdPartyJobDetailsRequest generates a request for the GetThirdPartyJobDetails operation.
func (c *CodePipeline) GetThirdPartyJobDetailsRequest(input *GetThirdPartyJobDetailsInput) (req *request.Request, output *GetThirdPartyJobDetailsOutput) {
op := &request.Operation{
Name: opGetThirdPartyJobDetails,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetThirdPartyJobDetailsInput{}
}
req = c.newRequest(op, input, output)
output = &GetThirdPartyJobDetailsOutput{}
req.Data = output
return
}
// Requests the details of a job for a third party action. Only used for partner
// actions.
//
// When this API is called, AWS CodePipeline returns temporary credentials
// for the Amazon S3 bucket used to store artifacts for the pipeline, if the
// action requires access to that Amazon S3 bucket for input or output artifacts.
// Additionally, this API returns any secret values defined for the action.
func (c *CodePipeline) GetThirdPartyJobDetails(input *GetThirdPartyJobDetailsInput) (*GetThirdPartyJobDetailsOutput, error) {
req, out := c.GetThirdPartyJobDetailsRequest(input)
err := req.Send()
return out, err
}
const opListActionTypes = "ListActionTypes"
// ListActionTypesRequest generates a request for the ListActionTypes operation.
func (c *CodePipeline) ListActionTypesRequest(input *ListActionTypesInput) (req *request.Request, output *ListActionTypesOutput) {
op := &request.Operation{
Name: opListActionTypes,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListActionTypesInput{}
}
req = c.newRequest(op, input, output)
output = &ListActionTypesOutput{}
req.Data = output
return
}
// Gets a summary of all AWS CodePipeline action types associated with your
// account.
func (c *CodePipeline) ListActionTypes(input *ListActionTypesInput) (*ListActionTypesOutput, error) {
req, out := c.ListActionTypesRequest(input)
err := req.Send()
return out, err
}
const opListPipelines = "ListPipelines"
// ListPipelinesRequest generates a request for the ListPipelines operation.
func (c *CodePipeline) ListPipelinesRequest(input *ListPipelinesInput) (req *request.Request, output *ListPipelinesOutput) {
op := &request.Operation{
Name: opListPipelines,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListPipelinesInput{}
}
req = c.newRequest(op, input, output)
output = &ListPipelinesOutput{}
req.Data = output
return
}
// Gets a summary of all of the pipelines associated with your account.
func (c *CodePipeline) ListPipelines(input *ListPipelinesInput) (*ListPipelinesOutput, error) {
req, out := c.ListPipelinesRequest(input)
err := req.Send()
return out, err
}
const opPollForJobs = "PollForJobs"
// PollForJobsRequest generates a request for the PollForJobs operation.
func (c *CodePipeline) PollForJobsRequest(input *PollForJobsInput) (req *request.Request, output *PollForJobsOutput) {
op := &request.Operation{
Name: opPollForJobs,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PollForJobsInput{}
}
req = c.newRequest(op, input, output)
output = &PollForJobsOutput{}
req.Data = output
return
}
// Returns information about any jobs for AWS CodePipeline to act upon.
//
// When this API is called, AWS CodePipeline returns temporary credentials
// for the Amazon S3 bucket used to store artifacts for the pipeline, if the
// action requires access to that Amazon S3 bucket for input or output artifacts.
// Additionally, this API returns any secret values defined for the action.
func (c *CodePipeline) PollForJobs(input *PollForJobsInput) (*PollForJobsOutput, error) {
req, out := c.PollForJobsRequest(input)
err := req.Send()
return out, err
}
const opPollForThirdPartyJobs = "PollForThirdPartyJobs"
// PollForThirdPartyJobsRequest generates a request for the PollForThirdPartyJobs operation.
func (c *CodePipeline) PollForThirdPartyJobsRequest(input *PollForThirdPartyJobsInput) (req *request.Request, output *PollForThirdPartyJobsOutput) {
op := &request.Operation{
Name: opPollForThirdPartyJobs,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PollForThirdPartyJobsInput{}
}
req = c.newRequest(op, input, output)
output = &PollForThirdPartyJobsOutput{}
req.Data = output
return
}
// Determines whether there are any third party jobs for a job worker to act
// on. Only used for partner actions.
//
// When this API is called, AWS CodePipeline returns temporary credentials
// for the Amazon S3 bucket used to store artifacts for the pipeline, if the
// action requires access to that Amazon S3 bucket for input or output artifacts.
func (c *CodePipeline) PollForThirdPartyJobs(input *PollForThirdPartyJobsInput) (*PollForThirdPartyJobsOutput, error) {
req, out := c.PollForThirdPartyJobsRequest(input)
err := req.Send()
return out, err
}
const opPutActionRevision = "PutActionRevision"
// PutActionRevisionRequest generates a request for the PutActionRevision operation.
func (c *CodePipeline) PutActionRevisionRequest(input *PutActionRevisionInput) (req *request.Request, output *PutActionRevisionOutput) {
op := &request.Operation{
Name: opPutActionRevision,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutActionRevisionInput{}
}
req = c.newRequest(op, input, output)
output = &PutActionRevisionOutput{}
req.Data = output
return
}
// Provides information to AWS CodePipeline about new revisions to a source.
func (c *CodePipeline) PutActionRevision(input *PutActionRevisionInput) (*PutActionRevisionOutput, error) {
req, out := c.PutActionRevisionRequest(input)
err := req.Send()
return out, err
}
const opPutJobFailureResult = "PutJobFailureResult"
// PutJobFailureResultRequest generates a request for the PutJobFailureResult operation.
func (c *CodePipeline) PutJobFailureResultRequest(input *PutJobFailureResultInput) (req *request.Request, output *PutJobFailureResultOutput) {
op := &request.Operation{
Name: opPutJobFailureResult,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutJobFailureResultInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &PutJobFailureResultOutput{}
req.Data = output
return
}
// Represents the failure of a job as returned to the pipeline by a job worker.
// Only used for custom actions.
func (c *CodePipeline) PutJobFailureResult(input *PutJobFailureResultInput) (*PutJobFailureResultOutput, error) {
req, out := c.PutJobFailureResultRequest(input)
err := req.Send()
return out, err
}
const opPutJobSuccessResult = "PutJobSuccessResult"
// PutJobSuccessResultRequest generates a request for the PutJobSuccessResult operation.
func (c *CodePipeline) PutJobSuccessResultRequest(input *PutJobSuccessResultInput) (req *request.Request, output *PutJobSuccessResultOutput) {
op := &request.Operation{
Name: opPutJobSuccessResult,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutJobSuccessResultInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &PutJobSuccessResultOutput{}
req.Data = output
return
}
// Represents the success of a job as returned to the pipeline by a job worker.
// Only used for custom actions.
func (c *CodePipeline) PutJobSuccessResult(input *PutJobSuccessResultInput) (*PutJobSuccessResultOutput, error) {
req, out := c.PutJobSuccessResultRequest(input)
err := req.Send()
return out, err
}
const opPutThirdPartyJobFailureResult = "PutThirdPartyJobFailureResult"
// PutThirdPartyJobFailureResultRequest generates a request for the PutThirdPartyJobFailureResult operation.
func (c *CodePipeline) PutThirdPartyJobFailureResultRequest(input *PutThirdPartyJobFailureResultInput) (req *request.Request, output *PutThirdPartyJobFailureResultOutput) {
op := &request.Operation{
Name: opPutThirdPartyJobFailureResult,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutThirdPartyJobFailureResultInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &PutThirdPartyJobFailureResultOutput{}
req.Data = output
return
}
// Represents the failure of a third party job as returned to the pipeline by
// a job worker. Only used for partner actions.
func (c *CodePipeline) PutThirdPartyJobFailureResult(input *PutThirdPartyJobFailureResultInput) (*PutThirdPartyJobFailureResultOutput, error) {
req, out := c.PutThirdPartyJobFailureResultRequest(input)
err := req.Send()
return out, err
}
const opPutThirdPartyJobSuccessResult = "PutThirdPartyJobSuccessResult"
// PutThirdPartyJobSuccessResultRequest generates a request for the PutThirdPartyJobSuccessResult operation.
func (c *CodePipeline) PutThirdPartyJobSuccessResultRequest(input *PutThirdPartyJobSuccessResultInput) (req *request.Request, output *PutThirdPartyJobSuccessResultOutput) {
op := &request.Operation{
Name: opPutThirdPartyJobSuccessResult,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutThirdPartyJobSuccessResultInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &PutThirdPartyJobSuccessResultOutput{}
req.Data = output
return
}
// Represents the success of a third party job as returned to the pipeline by
// a job worker. Only used for partner actions.
func (c *CodePipeline) PutThirdPartyJobSuccessResult(input *PutThirdPartyJobSuccessResultInput) (*PutThirdPartyJobSuccessResultOutput, error) {
req, out := c.PutThirdPartyJobSuccessResultRequest(input)
err := req.Send()
return out, err
}
const opStartPipelineExecution = "StartPipelineExecution"
// StartPipelineExecutionRequest generates a request for the StartPipelineExecution operation.
func (c *CodePipeline) StartPipelineExecutionRequest(input *StartPipelineExecutionInput) (req *request.Request, output *StartPipelineExecutionOutput) {
op := &request.Operation{
Name: opStartPipelineExecution,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &StartPipelineExecutionInput{}
}
req = c.newRequest(op, input, output)
output = &StartPipelineExecutionOutput{}
req.Data = output
return
}
// Starts the specified pipeline. Specifically, it begins processing the latest
// commit to the source location specified as part of the pipeline.
func (c *CodePipeline) StartPipelineExecution(input *StartPipelineExecutionInput) (*StartPipelineExecutionOutput, error) {
req, out := c.StartPipelineExecutionRequest(input)
err := req.Send()
return out, err
}
const opUpdatePipeline = "UpdatePipeline"
// UpdatePipelineRequest generates a request for the UpdatePipeline operation.
func (c *CodePipeline) UpdatePipelineRequest(input *UpdatePipelineInput) (req *request.Request, output *UpdatePipelineOutput) {
op := &request.Operation{
Name: opUpdatePipeline,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdatePipelineInput{}
}
req = c.newRequest(op, input, output)
output = &UpdatePipelineOutput{}
req.Data = output
return
}
// Updates a specified pipeline with edits or changes to its structure. Use
// a JSON file with the pipeline structure in conjunction with UpdatePipeline
// to provide the full structure of the pipeline. Updating the pipeline increases
// the version number of the pipeline by 1.
func (c *CodePipeline) UpdatePipeline(input *UpdatePipelineInput) (*UpdatePipelineOutput, error) {
req, out := c.UpdatePipelineRequest(input)
err := req.Send()
return out, err
}
// Represents an AWS session credentials object. These credentials are temporary
// credentials that are issued by AWS Secure Token Service (STS). They can be
// used to access input and output artifacts in the Amazon S3 bucket used to
// store artifact for the pipeline in AWS CodePipeline.
type AWSSessionCredentials struct {
_ struct{} `type:"structure"`
// The access key for the session.
AccessKeyId *string `locationName:"accessKeyId" type:"string" required:"true"`
// The secret access key for the session.
SecretAccessKey *string `locationName:"secretAccessKey" type:"string" required:"true"`
// The token for the session.
SessionToken *string `locationName:"sessionToken" type:"string" required:"true"`
}
// String returns the string representation
func (s AWSSessionCredentials) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AWSSessionCredentials) GoString() string {
return s.String()
}
// Represents the input of an acknowledge job action.
type AcknowledgeJobInput struct {
_ struct{} `type:"structure"`
// The unique system-generated ID of the job for which you want to confirm receipt.
JobId *string `locationName:"jobId" type:"string" required:"true"`
// A system-generated random number that AWS CodePipeline uses to ensure that
// the job is being worked on by only one job worker. This number must be returned
// in the response.
Nonce *string `locationName:"nonce" type:"string" required:"true"`
}
// String returns the string representation
func (s AcknowledgeJobInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AcknowledgeJobInput) GoString() string {
return s.String()
}
// Represents the output of an acknowledge job action.
type AcknowledgeJobOutput struct {
_ struct{} `type:"structure"`
// Whether the job worker has received the specified job.
Status *string `locationName:"status" type:"string" enum:"JobStatus"`
}
// String returns the string representation
func (s AcknowledgeJobOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AcknowledgeJobOutput) GoString() string {
return s.String()
}
// Represents the input of an acknowledge third party job action.
type AcknowledgeThirdPartyJobInput struct {
_ struct{} `type:"structure"`
// The clientToken portion of the clientId and clientToken pair used to verify
// that the calling entity is allowed access to the job and its details.
ClientToken *string `locationName:"clientToken" type:"string" required:"true"`
// The unique system-generated ID of the job.
JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"`
// A system-generated random number that AWS CodePipeline uses to ensure that
// the job is being worked on by only one job worker. This number must be returned
// in the response.
Nonce *string `locationName:"nonce" type:"string" required:"true"`
}
// String returns the string representation
func (s AcknowledgeThirdPartyJobInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AcknowledgeThirdPartyJobInput) GoString() string {
return s.String()
}
// Represents the output of an acknowledge third party job action.
type AcknowledgeThirdPartyJobOutput struct {
_ struct{} `type:"structure"`
// The status information for the third party job, if any.
Status *string `locationName:"status" type:"string" enum:"JobStatus"`
}
// String returns the string representation
func (s AcknowledgeThirdPartyJobOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AcknowledgeThirdPartyJobOutput) GoString() string {
return s.String()
}
// Represents information about an action configuration.
type ActionConfiguration struct {
_ struct{} `type:"structure"`
// The configuration data for the action.
Configuration map[string]*string `locationName:"configuration" type:"map"`
}
// String returns the string representation
func (s ActionConfiguration) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionConfiguration) GoString() string {
return s.String()
}
// Represents information about an action configuration property.
type ActionConfigurationProperty struct {
_ struct{} `type:"structure"`
// The description of the action configuration property that will be displayed
// to users.
Description *string `locationName:"description" min:"1" type:"string"`
// Whether the configuration property is a key.
Key *bool `locationName:"key" type:"boolean" required:"true"`
// The name of the action configuration property.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
// Indicates that the proprety will be used in conjunction with PollForJobs.
// When creating a custom action, an action can have up to one queryable property.
// If it has one, that property must be both required and not secret.
//
// If you create a pipeline with a custom action type, and that custom action
// contains a queryable property, the value for that configuration property
// is subject to additional restrictions. The value must be less than or equal
// to twenty (20) characters. The value can contain only alphanumeric characters,
// underscores, and hyphens.
Queryable *bool `locationName:"queryable" type:"boolean"`
// Whether the configuration property is a required value.
Required *bool `locationName:"required" type:"boolean" required:"true"`
// Whether the configuration property is secret. Secrets are hidden from all
// calls except for GetJobDetails, GetThirdPartyJobDetails, PollForJobs, and
// PollForThirdPartyJobs.
//
// When updating a pipeline, passing * * * * * without changing any other values
// of the action will preserve the prior value of the secret.
Secret *bool `locationName:"secret" type:"boolean" required:"true"`
// The type of the configuration property.
Type *string `locationName:"type" type:"string" enum:"ActionConfigurationPropertyType"`
}
// String returns the string representation
func (s ActionConfigurationProperty) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionConfigurationProperty) GoString() string {
return s.String()
}
// Represents the context of an action within the stage of a pipeline to a job
// worker.
type ActionContext struct {
_ struct{} `type:"structure"`
// The name of the action within the context of a job.
Name *string `locationName:"name" min:"1" type:"string"`
}
// String returns the string representation
func (s ActionContext) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionContext) GoString() string {
return s.String()
}
// Represents information about an action declaration.
type ActionDeclaration struct {
_ struct{} `type:"structure"`
// The configuration information for the action type.
ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure" required:"true"`
// The action declaration's configuration.
Configuration map[string]*string `locationName:"configuration" type:"map"`
// The name or ID of the artifact consumed by the action, such as a test or
// build artifact.
InputArtifacts []*InputArtifact `locationName:"inputArtifacts" type:"list"`
// The action declaration's name.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
// The name or ID of the result of the action declaration, such as a test or
// build artifact.
OutputArtifacts []*OutputArtifact `locationName:"outputArtifacts" type:"list"`
// The ARN of the IAM service role that will perform the declared action. This
// is assumed through the roleArn for the pipeline.
RoleArn *string `locationName:"roleArn" type:"string"`
// The order in which actions are run.
RunOrder *int64 `locationName:"runOrder" min:"1" type:"integer"`
}
// String returns the string representation
func (s ActionDeclaration) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionDeclaration) GoString() string {
return s.String()
}
// Represents information about how an action runs.
type ActionExecution struct {
_ struct{} `type:"structure"`
// The details of an error returned by a URL external to AWS.
ErrorDetails *ErrorDetails `locationName:"errorDetails" type:"structure"`
// The external ID of the run of the action.
ExternalExecutionId *string `locationName:"externalExecutionId" type:"string"`
// The URL of a resource external to AWS that will be used when running the
// action, for example an external repository URL.
ExternalExecutionUrl *string `locationName:"externalExecutionUrl" min:"1" type:"string"`
// The last status change of the action.
LastStatusChange *time.Time `locationName:"lastStatusChange" type:"timestamp" timestampFormat:"unix"`
// A percentage of completeness of the action as it runs.
PercentComplete *int64 `locationName:"percentComplete" type:"integer"`
// The status of the action, or for a completed action, the last status of the
// action.
Status *string `locationName:"status" type:"string" enum:"ActionExecutionStatus"`
// A summary of the run of the action.
Summary *string `locationName:"summary" type:"string"`
}
// String returns the string representation
func (s ActionExecution) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionExecution) GoString() string {
return s.String()
}
// Represents information about the version (or revision) of an action.
type ActionRevision struct {
_ struct{} `type:"structure"`
// The date and time when the most recent version of the action was created,
// in timestamp format.
Created *time.Time `locationName:"created" type:"timestamp" timestampFormat:"unix" required:"true"`
// The unique identifier of the change that set the state to this revision,
// for example a deployment ID or timestamp.
RevisionChangeId *string `locationName:"revisionChangeId" type:"string"`
// The system-generated unique ID that identifies the revision number of the
// action.
RevisionId *string `locationName:"revisionId" type:"string" required:"true"`
}
// String returns the string representation
func (s ActionRevision) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionRevision) GoString() string {
return s.String()
}
// Represents information about the state of an action.
type ActionState struct {
_ struct{} `type:"structure"`
// The name of the action.
ActionName *string `locationName:"actionName" min:"1" type:"string"`
// Represents information about the version (or revision) of an action.
CurrentRevision *ActionRevision `locationName:"currentRevision" type:"structure"`
// A URL link for more information about the state of the action, such as a
// deployment group details page.
EntityUrl *string `locationName:"entityUrl" min:"1" type:"string"`
// Represents information about how an action runs.
LatestExecution *ActionExecution `locationName:"latestExecution" type:"structure"`
// A URL link for more information about the revision, such as a commit details
// page.
RevisionUrl *string `locationName:"revisionUrl" min:"1" type:"string"`
}
// String returns the string representation
func (s ActionState) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionState) GoString() string {
return s.String()
}
// Returns information about the details of an action type.
type ActionType struct {
_ struct{} `type:"structure"`
// The configuration properties for the action type.
ActionConfigurationProperties []*ActionConfigurationProperty `locationName:"actionConfigurationProperties" type:"list"`
// Represents information about an action type.
Id *ActionTypeId `locationName:"id" type:"structure" required:"true"`
// The details of the input artifact for the action, such as its commit ID.
InputArtifactDetails *ArtifactDetails `locationName:"inputArtifactDetails" type:"structure" required:"true"`
// The details of the output artifact of the action, such as its commit ID.
OutputArtifactDetails *ArtifactDetails `locationName:"outputArtifactDetails" type:"structure" required:"true"`
// The settings for the action type.
Settings *ActionTypeSettings `locationName:"settings" type:"structure"`
}
// String returns the string representation
func (s ActionType) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionType) GoString() string {
return s.String()
}
// Represents information about an action type.
type ActionTypeId struct {
_ struct{} `type:"structure"`
// A category defines what kind of action can be taken in the stage, and constrains
// the provider type for the action. Valid categories are limited to one of
// the values below.
Category *string `locationName:"category" type:"string" required:"true" enum:"ActionCategory"`
// The creator of the action being called.
Owner *string `locationName:"owner" type:"string" required:"true" enum:"ActionOwner"`
// The provider of the service being called by the action. Valid providers are
// determined by the action category. For example, an action in the Deploy category
// type might have a provider of AWS CodeDeploy, which would be specified as
// CodeDeploy.
Provider *string `locationName:"provider" min:"1" type:"string" required:"true"`
// A string that identifies the action type.
Version *string `locationName:"version" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s ActionTypeId) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionTypeId) GoString() string {
return s.String()
}
// Returns information about the settings for an action type.
type ActionTypeSettings struct {
_ struct{} `type:"structure"`
// The URL returned to the AWS CodePipeline console that provides a deep link
// to the resources of the external system, such as the configuration page for
// an AWS CodeDeploy deployment group. This link is provided as part of the
// action display within the pipeline.
EntityUrlTemplate *string `locationName:"entityUrlTemplate" min:"1" type:"string"`
// The URL returned to the AWS CodePipeline console that contains a link to
// the top-level landing page for the external system, such as console page
// for AWS CodeDeploy. This link is shown on the pipeline view page in the AWS
// CodePipeline console and provides a link to the execution entity of the external
// action.
ExecutionUrlTemplate *string `locationName:"executionUrlTemplate" min:"1" type:"string"`
// The URL returned to the AWS CodePipeline console that contains a link to
// the page where customers can update or change the configuration of the external
// action.
RevisionUrlTemplate *string `locationName:"revisionUrlTemplate" min:"1" type:"string"`
// The URL of a sign-up page where users can sign up for an external service
// and perform initial configuration of the action provided by that service.
ThirdPartyConfigurationUrl *string `locationName:"thirdPartyConfigurationUrl" min:"1" type:"string"`
}
// String returns the string representation
func (s ActionTypeSettings) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ActionTypeSettings) GoString() string {
return s.String()
}
// Represents information about an artifact that will be worked upon by actions
// in the pipeline.
type Artifact struct {
_ struct{} `type:"structure"`
// The location of an artifact.
Location *ArtifactLocation `locationName:"location" type:"structure"`
// The artifact's name.
Name *string `locationName:"name" min:"1" type:"string"`
// The artifact's revision ID. Depending on the type of object, this could be
// a commit ID (GitHub) or a revision ID (Amazon S3).
Revision *string `locationName:"revision" type:"string"`
}
// String returns the string representation
func (s Artifact) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Artifact) GoString() string {
return s.String()
}
// Returns information about the details of an artifact.
type ArtifactDetails struct {
_ struct{} `type:"structure"`
// The maximum number of artifacts allowed for the action type.
MaximumCount *int64 `locationName:"maximumCount" type:"integer" required:"true"`
// The minimum number of artifacts allowed for the action type.
MinimumCount *int64 `locationName:"minimumCount" type:"integer" required:"true"`
}
// String returns the string representation
func (s ArtifactDetails) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ArtifactDetails) GoString() string {
return s.String()
}
// Represents information about the location of an artifact.
type ArtifactLocation struct {
_ struct{} `type:"structure"`
// The Amazon S3 bucket that contains the artifact.
S3Location *S3ArtifactLocation `locationName:"s3Location" type:"structure"`
// The type of artifact in the location.
Type *string `locationName:"type" type:"string" enum:"ArtifactLocationType"`
}
// String returns the string representation
func (s ArtifactLocation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ArtifactLocation) GoString() string {
return s.String()
}
// The Amazon S3 location where artifacts are stored for the pipeline. If this
// Amazon S3 bucket is created manually, it must meet the requirements for AWS
// CodePipeline. For more information, see the Concepts.
type ArtifactStore struct {
_ struct{} `type:"structure"`
// The AWS Key Management Service (AWS KMS) key used to encrypt the data in
// the artifact store. If this is undefined, the default key for Amazon S3 is
// used.
EncryptionKey *EncryptionKey `locationName:"encryptionKey" type:"structure"`
// The location for storing the artifacts for a pipeline, such as an S3 bucket
// or folder.
Location *string `locationName:"location" min:"3" type:"string" required:"true"`
// The type of the artifact store, such as S3.
Type *string `locationName:"type" type:"string" required:"true" enum:"ArtifactStoreType"`
}
// String returns the string representation
func (s ArtifactStore) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ArtifactStore) GoString() string {
return s.String()
}
// Represents information about a gate declaration.
type BlockerDeclaration struct {
_ struct{} `type:"structure"`
// The name of the gate declaration.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
// The type of the gate declaration.
Type *string `locationName:"type" type:"string" required:"true" enum:"BlockerType"`
}
// String returns the string representation
func (s BlockerDeclaration) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s BlockerDeclaration) GoString() string {
return s.String()
}
// Represents the input of a create custom action operation.
type CreateCustomActionTypeInput struct {
_ struct{} `type:"structure"`
// The category of the custom action, such as a source action or a build action.
Category *string `locationName:"category" type:"string" required:"true" enum:"ActionCategory"`
// The configuration properties for the custom action.
ConfigurationProperties []*ActionConfigurationProperty `locationName:"configurationProperties" type:"list"`
// Returns information about the details of an artifact.
InputArtifactDetails *ArtifactDetails `locationName:"inputArtifactDetails" type:"structure" required:"true"`
// Returns information about the details of an artifact.
OutputArtifactDetails *ArtifactDetails `locationName:"outputArtifactDetails" type:"structure" required:"true"`
// The provider of the service used in the custom action, such as AWS CodeDeploy.
Provider *string `locationName:"provider" min:"1" type:"string" required:"true"`
// Returns information about the settings for an action type.
Settings *ActionTypeSettings `locationName:"settings" type:"structure"`
// The version number of the custom action.
//
// A newly-created custom action is always assigned a version number of 1.
// This is required.
Version *string `locationName:"version" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s CreateCustomActionTypeInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateCustomActionTypeInput) GoString() string {
return s.String()
}
// Represents the output of a create custom action operation.
type CreateCustomActionTypeOutput struct {
_ struct{} `type:"structure"`
// Returns information about the details of an action type.
ActionType *ActionType `locationName:"actionType" type:"structure" required:"true"`
}
// String returns the string representation
func (s CreateCustomActionTypeOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreateCustomActionTypeOutput) GoString() string {
return s.String()
}
// Represents the input of a create pipeline action.
type CreatePipelineInput struct {
_ struct{} `type:"structure"`
// Represents the structure of actions and stages to be performed in the pipeline.
Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure" required:"true"`
}
// String returns the string representation
func (s CreatePipelineInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePipelineInput) GoString() string {
return s.String()
}
// Represents the output of a create pipeline action.
type CreatePipelineOutput struct {
_ struct{} `type:"structure"`
// Represents the structure of actions and stages to be performed in the pipeline.
Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure"`
}
// String returns the string representation
func (s CreatePipelineOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CreatePipelineOutput) GoString() string {
return s.String()
}
// Represents information about a current revision.
type CurrentRevision struct {
_ struct{} `type:"structure"`
// The change identifier for the current revision.
ChangeIdentifier *string `locationName:"changeIdentifier" type:"string" required:"true"`
// The revision ID of the current version of an artifact.
Revision *string `locationName:"revision" type:"string" required:"true"`
}
// String returns the string representation
func (s CurrentRevision) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CurrentRevision) GoString() string {
return s.String()
}
// Represents the input of a delete custom action operation. The custom action
// will be marked as deleted.
type DeleteCustomActionTypeInput struct {
_ struct{} `type:"structure"`
// The category of the custom action that you want to delete, such as source
// or deploy.
Category *string `locationName:"category" type:"string" required:"true" enum:"ActionCategory"`
// The provider of the service used in the custom action, such as AWS CodeDeploy.
Provider *string `locationName:"provider" min:"1" type:"string" required:"true"`
// The version of the custom action to delete.
Version *string `locationName:"version" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteCustomActionTypeInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteCustomActionTypeInput) GoString() string {
return s.String()
}
type DeleteCustomActionTypeOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DeleteCustomActionTypeOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteCustomActionTypeOutput) GoString() string {
return s.String()
}
// Represents the input of a delete pipeline action.
type DeletePipelineInput struct {
_ struct{} `type:"structure"`
// The name of the pipeline to be deleted.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s DeletePipelineInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeletePipelineInput) GoString() string {
return s.String()
}
type DeletePipelineOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DeletePipelineOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeletePipelineOutput) GoString() string {
return s.String()
}
// Represents the input of a disable stage transition input action.
type DisableStageTransitionInput struct {
_ struct{} `type:"structure"`
// The name of the pipeline in which you want to disable the flow of artifacts
// from one stage to another.
PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`
// The reason given to the user why a stage is disabled, such as waiting for
// manual approval or manual tests. This message is displayed in the pipeline
// console UI.
Reason *string `locationName:"reason" min:"1" type:"string" required:"true"`
// The name of the stage where you want to disable the inbound or outbound transition
// of artifacts.
StageName *string `locationName:"stageName" min:"1" type:"string" required:"true"`
// Specifies whether artifacts will be prevented from transitioning into the
// stage and being processed by the actions in that stage (inbound), or prevented
// from transitioning from the stage after they have been processed by the actions
// in that stage (outbound).
TransitionType *string `locationName:"transitionType" type:"string" required:"true" enum:"StageTransitionType"`
}
// String returns the string representation
func (s DisableStageTransitionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DisableStageTransitionInput) GoString() string {
return s.String()
}
type DisableStageTransitionOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DisableStageTransitionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DisableStageTransitionOutput) GoString() string {
return s.String()
}
// Represents the input of an enable stage transition action.
type EnableStageTransitionInput struct {
_ struct{} `type:"structure"`
// The name of the pipeline in which you want to enable the flow of artifacts
// from one stage to another.
PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`
// The name of the stage where you want to enable the transition of artifacts,
// either into the stage (inbound) or from that stage to the next stage (outbound).
StageName *string `locationName:"stageName" min:"1" type:"string" required:"true"`
// Specifies whether artifacts will be allowed to enter the stage and be processed
// by the actions in that stage (inbound) or whether already-processed artifacts
// will be allowed to transition to the next stage (outbound).
TransitionType *string `locationName:"transitionType" type:"string" required:"true" enum:"StageTransitionType"`
}
// String returns the string representation
func (s EnableStageTransitionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EnableStageTransitionInput) GoString() string {
return s.String()
}
type EnableStageTransitionOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s EnableStageTransitionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EnableStageTransitionOutput) GoString() string {
return s.String()
}
// Represents information about the AWS Key Management Service (AWS KMS) key
// used to encrypt data in the artifact store.
type EncryptionKey struct {
_ struct{} `type:"structure"`
// The ID of the AWS KMS key.
Id *string `locationName:"id" min:"1" type:"string" required:"true"`
// The type of AWS KMS key, such as a customer master key.
Type *string `locationName:"type" type:"string" required:"true" enum:"EncryptionKeyType"`
}
// String returns the string representation
func (s EncryptionKey) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s EncryptionKey) GoString() string {
return s.String()
}
// Represents information about an error in AWS CodePipeline.
type ErrorDetails struct {
_ struct{} `type:"structure"`
// The system ID or error number code of the error.
Code *string `locationName:"code" type:"string"`
// The text of the error message.
Message *string `locationName:"message" type:"string"`
}
// String returns the string representation
func (s ErrorDetails) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ErrorDetails) GoString() string {
return s.String()
}
// The details of the actions taken and results produced on an artifact as it
// passes through stages in the pipeline.
type ExecutionDetails struct {
_ struct{} `type:"structure"`
// The system-generated unique ID of this action used to identify this job worker
// in any external systems, such as AWS CodeDeploy.
ExternalExecutionId *string `locationName:"externalExecutionId" type:"string"`
// The percentage of work completed on the action, represented on a scale of
// zero to one hundred percent.
PercentComplete *int64 `locationName:"percentComplete" type:"integer"`
// The summary of the current status of the actions.
Summary *string `locationName:"summary" type:"string"`
}
// String returns the string representation
func (s ExecutionDetails) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ExecutionDetails) GoString() string {
return s.String()
}
// Represents information about failure details.
type FailureDetails struct {
_ struct{} `type:"structure"`
// The external ID of the run of the action that failed.
ExternalExecutionId *string `locationName:"externalExecutionId" type:"string"`
// The message about the failure.
Message *string `locationName:"message" type:"string" required:"true"`
// The type of the failure.
Type *string `locationName:"type" type:"string" required:"true" enum:"FailureType"`
}
// String returns the string representation
func (s FailureDetails) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s FailureDetails) GoString() string {
return s.String()
}
// Represents the input of a get job details action.
type GetJobDetailsInput struct {
_ struct{} `type:"structure"`
// The unique system-generated ID for the job.
JobId *string `locationName:"jobId" type:"string" required:"true"`
}
// String returns the string representation
func (s GetJobDetailsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetJobDetailsInput) GoString() string {
return s.String()
}
// Represents the output of a get job details action.
type GetJobDetailsOutput struct {
_ struct{} `type:"structure"`
// The details of the job.
//
// If AWSSessionCredentials is used, a long-running job can call GetJobDetails
// again to obtain new credentials.
JobDetails *JobDetails `locationName:"jobDetails" type:"structure"`
}
// String returns the string representation
func (s GetJobDetailsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetJobDetailsOutput) GoString() string {
return s.String()
}
// Represents the input of a get pipeline action.
type GetPipelineInput struct {
_ struct{} `type:"structure"`
// The name of the pipeline for which you want to get information. Pipeline
// names must be unique under an Amazon Web Services (AWS) user account.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
// The version number of the pipeline. If you do not specify a version, defaults
// to the most current version.
Version *int64 `locationName:"version" min:"1" type:"integer"`
}
// String returns the string representation
func (s GetPipelineInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetPipelineInput) GoString() string {
return s.String()
}
// Represents the output of a get pipeline action.
type GetPipelineOutput struct {
_ struct{} `type:"structure"`
// Represents the structure of actions and stages to be performed in the pipeline.
Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure"`
}
// String returns the string representation
func (s GetPipelineOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetPipelineOutput) GoString() string {
return s.String()
}
// Represents the input of a get pipeline state action.
type GetPipelineStateInput struct {
_ struct{} `type:"structure"`
// The name of the pipeline about which you want to get information.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetPipelineStateInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetPipelineStateInput) GoString() string {
return s.String()
}
// Represents the output of a get pipeline state action.
type GetPipelineStateOutput struct {
_ struct{} `type:"structure"`
// The date and time the pipeline was created, in timestamp format.
Created *time.Time `locationName:"created" type:"timestamp" timestampFormat:"unix"`
// The name of the pipeline for which you want to get the state.
PipelineName *string `locationName:"pipelineName" min:"1" type:"string"`
// The version number of the pipeline.
//
// A newly-created pipeline is always assigned a version number of 1.
PipelineVersion *int64 `locationName:"pipelineVersion" min:"1" type:"integer"`
// A list of the pipeline stage output information, including stage name, state,
// most recent run details, whether the stage is disabled, and other data.
StageStates []*StageState `locationName:"stageStates" type:"list"`
// The date and time the pipeline was last updated, in timestamp format.
Updated *time.Time `locationName:"updated" type:"timestamp" timestampFormat:"unix"`
}
// String returns the string representation
func (s GetPipelineStateOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetPipelineStateOutput) GoString() string {
return s.String()
}
// Represents the input of a get third party job details action.
type GetThirdPartyJobDetailsInput struct {
_ struct{} `type:"structure"`
// The clientToken portion of the clientId and clientToken pair used to verify
// that the calling entity is allowed access to the job and its details.
ClientToken *string `locationName:"clientToken" type:"string" required:"true"`
// The unique system-generated ID used for identifying the job.
JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s GetThirdPartyJobDetailsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetThirdPartyJobDetailsInput) GoString() string {
return s.String()
}
// Represents the output of a get third party job details action.
type GetThirdPartyJobDetailsOutput struct {
_ struct{} `type:"structure"`
// The details of the job, including any protected values defined for the job.
JobDetails *ThirdPartyJobDetails `locationName:"jobDetails" type:"structure"`
}
// String returns the string representation
func (s GetThirdPartyJobDetailsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s GetThirdPartyJobDetailsOutput) GoString() string {
return s.String()
}
// Represents information about an artifact to be worked on, such as a test
// or build artifact.
type InputArtifact struct {
_ struct{} `type:"structure"`
// The name of the artifact to be worked on, for example, "My App".
//
// The input artifact of an action must exactly match the output artifact declared
// in a preceding action, but the input artifact does not have to be the next
// action in strict sequence from the action that provided the output artifact.
// Actions in parallel can declare different output artifacts, which are in
// turn consumed by different following actions.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s InputArtifact) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s InputArtifact) GoString() string {
return s.String()
}
// Represents information about a job.
type Job struct {
_ struct{} `type:"structure"`
// The ID of the AWS account to use when performing the job.
AccountId *string `locationName:"accountId" type:"string"`
// Additional data about a job.
Data *JobData `locationName:"data" type:"structure"`
// The unique system-generated ID of the job.
Id *string `locationName:"id" type:"string"`
// A system-generated random number that AWS CodePipeline uses to ensure that
// the job is being worked on by only one job worker. This number must be returned
// in the response.
Nonce *string `locationName:"nonce" type:"string"`
}
// String returns the string representation
func (s Job) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s Job) GoString() string {
return s.String()
}
// Represents additional information about a job required for a job worker to
// complete the job.
type JobData struct {
_ struct{} `type:"structure"`
// Represents information about an action configuration.
ActionConfiguration *ActionConfiguration `locationName:"actionConfiguration" type:"structure"`
// Represents information about an action type.
ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure"`
// Represents an AWS session credentials object. These credentials are temporary
// credentials that are issued by AWS Secure Token Service (STS). They can be
// used to access input and output artifacts in the Amazon S3 bucket used to
// store artifact for the pipeline in AWS CodePipeline.
ArtifactCredentials *AWSSessionCredentials `locationName:"artifactCredentials" type:"structure"`
// A system-generated token, such as a AWS CodeDeploy deployment ID, that a
// job requires in order to continue the job asynchronously.
ContinuationToken *string `locationName:"continuationToken" type:"string"`
// Represents information about the AWS Key Management Service (AWS KMS) key
// used to encrypt data in the artifact store.
EncryptionKey *EncryptionKey `locationName:"encryptionKey" type:"structure"`
// The artifact supplied to the job.
InputArtifacts []*Artifact `locationName:"inputArtifacts" type:"list"`
// The output of the job.
OutputArtifacts []*Artifact `locationName:"outputArtifacts" type:"list"`
// Represents information about a pipeline to a job worker.
PipelineContext *PipelineContext `locationName:"pipelineContext" type:"structure"`
}
// String returns the string representation
func (s JobData) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s JobData) GoString() string {
return s.String()
}
// Represents information about the details of a job.
type JobDetails struct {
_ struct{} `type:"structure"`
// The AWS account ID associated with the job.
AccountId *string `locationName:"accountId" type:"string"`
// Represents additional information about a job required for a job worker to
// complete the job.
Data *JobData `locationName:"data" type:"structure"`
// The unique system-generated ID of the job.
Id *string `locationName:"id" type:"string"`
}
// String returns the string representation
func (s JobDetails) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s JobDetails) GoString() string {
return s.String()
}
// Represents the input of a list action types action.
type ListActionTypesInput struct {
_ struct{} `type:"structure"`
// Filters the list of action types to those created by a specified entity.
ActionOwnerFilter *string `locationName:"actionOwnerFilter" type:"string" enum:"ActionOwner"`
// An identifier that was returned from the previous list action types call,
// which can be used to return the next set of action types in the list.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListActionTypesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListActionTypesInput) GoString() string {
return s.String()
}
// Represents the output of a list action types action.
type ListActionTypesOutput struct {
_ struct{} `type:"structure"`
// Provides details of the action types.
ActionTypes []*ActionType `locationName:"actionTypes" type:"list" required:"true"`
// If the amount of returned information is significantly large, an identifier
// is also returned which can be used in a subsequent list action types call
// to return the next set of action types in the list.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListActionTypesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListActionTypesOutput) GoString() string {
return s.String()
}
// Represents the input of a list pipelines action.
type ListPipelinesInput struct {
_ struct{} `type:"structure"`
// An identifier that was returned from the previous list pipelines call, which
// can be used to return the next set of pipelines in the list.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListPipelinesInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListPipelinesInput) GoString() string {
return s.String()
}
// Represents the output of a list pipelines action.
type ListPipelinesOutput struct {
_ struct{} `type:"structure"`
// If the amount of returned information is significantly large, an identifier
// is also returned which can be used in a subsequent list pipelines call to
// return the next set of pipelines in the list.
NextToken *string `locationName:"nextToken" type:"string"`
// The list of pipelines.
Pipelines []*PipelineSummary `locationName:"pipelines" type:"list"`
}
// String returns the string representation
func (s ListPipelinesOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ListPipelinesOutput) GoString() string {
return s.String()
}
// Represents information about the output of an action.
type OutputArtifact struct {
_ struct{} `type:"structure"`
// The name of the output of an artifact, such as "My App".
//
// The input artifact of an action must exactly match the output artifact declared
// in a preceding action, but the input artifact does not have to be the next
// action in strict sequence from the action that provided the output artifact.
// Actions in parallel can declare different output artifacts, which are in
// turn consumed by different following actions.
//
// Output artifact names must be unique within a pipeline.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s OutputArtifact) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s OutputArtifact) GoString() string {
return s.String()
}
// Represents information about a pipeline to a job worker.
type PipelineContext struct {
_ struct{} `type:"structure"`
// Represents the context of an action within the stage of a pipeline to a job
// worker.
Action *ActionContext `locationName:"action" type:"structure"`
// The name of the pipeline. This is a user-specified value. Pipeline names
// must be unique across all pipeline names under an Amazon Web Services account.
PipelineName *string `locationName:"pipelineName" min:"1" type:"string"`
// The stage of the pipeline.
Stage *StageContext `locationName:"stage" type:"structure"`
}
// String returns the string representation
func (s PipelineContext) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PipelineContext) GoString() string {
return s.String()
}
// Represents the structure of actions and stages to be performed in the pipeline.
type PipelineDeclaration struct {
_ struct{} `type:"structure"`
// The Amazon S3 location where artifacts are stored for the pipeline. If this
// Amazon S3 bucket is created manually, it must meet the requirements for AWS
// CodePipeline. For more information, see the Concepts.
ArtifactStore *ArtifactStore `locationName:"artifactStore" type:"structure" required:"true"`
// The name of the action to be performed.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
// The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform
// actions with no actionRoleArn, or to use to assume roles for actions with
// an actionRoleArn.
RoleArn *string `locationName:"roleArn" type:"string" required:"true"`
// The stage in which to perform the action.
Stages []*StageDeclaration `locationName:"stages" type:"list" required:"true"`
// The version number of the pipeline. A new pipeline always has a version number
// of 1. This number is automatically incremented when a pipeline is updated.
Version *int64 `locationName:"version" min:"1" type:"integer"`
}
// String returns the string representation
func (s PipelineDeclaration) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PipelineDeclaration) GoString() string {
return s.String()
}
// Returns a summary of a pipeline.
type PipelineSummary struct {
_ struct{} `type:"structure"`
// The date and time the pipeline was created, in timestamp format.
Created *time.Time `locationName:"created" type:"timestamp" timestampFormat:"unix"`
// The name of the pipeline.
Name *string `locationName:"name" min:"1" type:"string"`
// The date and time of the last update to the pipeline, in timestamp format.
Updated *time.Time `locationName:"updated" type:"timestamp" timestampFormat:"unix"`
// The version number of the pipeline.
Version *int64 `locationName:"version" min:"1" type:"integer"`
}
// String returns the string representation
func (s PipelineSummary) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PipelineSummary) GoString() string {
return s.String()
}
// Represents the input of a poll for jobs action.
type PollForJobsInput struct {
_ struct{} `type:"structure"`
// Represents information about an action type.
ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure" required:"true"`
// The maximum number of jobs to return in a poll for jobs call.
MaxBatchSize *int64 `locationName:"maxBatchSize" min:"1" type:"integer"`
// A map of property names and values. For an action type with no queryable
// properties, this value must be null or an empty map. For an action type with
// a queryable property, you must supply that property as a key in the map.
// Only jobs whose action configuration matches the mapped value will be returned.
QueryParam map[string]*string `locationName:"queryParam" type:"map"`
}
// String returns the string representation
func (s PollForJobsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PollForJobsInput) GoString() string {
return s.String()
}
// Represents the output of a poll for jobs action.
type PollForJobsOutput struct {
_ struct{} `type:"structure"`
// Information about the jobs to take action on.
Jobs []*Job `locationName:"jobs" type:"list"`
}
// String returns the string representation
func (s PollForJobsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PollForJobsOutput) GoString() string {
return s.String()
}
// Represents the input of a poll for third party jobs action.
type PollForThirdPartyJobsInput struct {
_ struct{} `type:"structure"`
// Represents information about an action type.
ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure" required:"true"`
// The maximum number of jobs to return in a poll for jobs call.
MaxBatchSize *int64 `locationName:"maxBatchSize" min:"1" type:"integer"`
}
// String returns the string representation
func (s PollForThirdPartyJobsInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PollForThirdPartyJobsInput) GoString() string {
return s.String()
}
// Represents the output of a poll for third party jobs action.
type PollForThirdPartyJobsOutput struct {
_ struct{} `type:"structure"`
// Information about the jobs to take action on.
Jobs []*ThirdPartyJob `locationName:"jobs" type:"list"`
}
// String returns the string representation
func (s PollForThirdPartyJobsOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PollForThirdPartyJobsOutput) GoString() string {
return s.String()
}
// Represents the input of a put action revision action.
type PutActionRevisionInput struct {
_ struct{} `type:"structure"`
// The name of the action that will process the revision.
ActionName *string `locationName:"actionName" min:"1" type:"string" required:"true"`
// Represents information about the version (or revision) of an action.
ActionRevision *ActionRevision `locationName:"actionRevision" type:"structure" required:"true"`
// The name of the pipeline that will start processing the revision to the source.
PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`
// The name of the stage that contains the action that will act upon the revision.
StageName *string `locationName:"stageName" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s PutActionRevisionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutActionRevisionInput) GoString() string {
return s.String()
}
// Represents the output of a put action revision action.
type PutActionRevisionOutput struct {
_ struct{} `type:"structure"`
// The new revision number or ID for the revision after the action completes.
NewRevision *bool `locationName:"newRevision" type:"boolean"`
// The ID of the current workflow state of the pipeline.
PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`
}
// String returns the string representation
func (s PutActionRevisionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutActionRevisionOutput) GoString() string {
return s.String()
}
// Represents the input of a put job failure result action.
type PutJobFailureResultInput struct {
_ struct{} `type:"structure"`
// The details about the failure of a job.
FailureDetails *FailureDetails `locationName:"failureDetails" type:"structure" required:"true"`
// The unique system-generated ID of the job that failed. This is the same ID
// returned from PollForJobs.
JobId *string `locationName:"jobId" type:"string" required:"true"`
}
// String returns the string representation
func (s PutJobFailureResultInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutJobFailureResultInput) GoString() string {
return s.String()
}
type PutJobFailureResultOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s PutJobFailureResultOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutJobFailureResultOutput) GoString() string {
return s.String()
}
// Represents the input of a put job success result action.
type PutJobSuccessResultInput struct {
_ struct{} `type:"structure"`
// A system-generated token, such as a AWS CodeDeploy deployment ID, that the
// successful job used to complete a job asynchronously.
ContinuationToken *string `locationName:"continuationToken" type:"string"`
// The ID of the current revision of the artifact successfully worked upon by
// the job.
CurrentRevision *CurrentRevision `locationName:"currentRevision" type:"structure"`
// The execution details of the successful job, such as the actions taken by
// the job worker.
ExecutionDetails *ExecutionDetails `locationName:"executionDetails" type:"structure"`
// The unique system-generated ID of the job that succeeded. This is the same
// ID returned from PollForJobs.
JobId *string `locationName:"jobId" type:"string" required:"true"`
}
// String returns the string representation
func (s PutJobSuccessResultInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutJobSuccessResultInput) GoString() string {
return s.String()
}
type PutJobSuccessResultOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s PutJobSuccessResultOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutJobSuccessResultOutput) GoString() string {
return s.String()
}
// Represents the input of a third party job failure result action.
type PutThirdPartyJobFailureResultInput struct {
_ struct{} `type:"structure"`
// The clientToken portion of the clientId and clientToken pair used to verify
// that the calling entity is allowed access to the job and its details.
ClientToken *string `locationName:"clientToken" type:"string" required:"true"`
// Represents information about failure details.
FailureDetails *FailureDetails `locationName:"failureDetails" type:"structure" required:"true"`
// The ID of the job that failed. This is the same ID returned from PollForThirdPartyJobs.
JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s PutThirdPartyJobFailureResultInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutThirdPartyJobFailureResultInput) GoString() string {
return s.String()
}
type PutThirdPartyJobFailureResultOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s PutThirdPartyJobFailureResultOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutThirdPartyJobFailureResultOutput) GoString() string {
return s.String()
}
// Represents the input of a put third party job success result action.
type PutThirdPartyJobSuccessResultInput struct {
_ struct{} `type:"structure"`
// The clientToken portion of the clientId and clientToken pair used to verify
// that the calling entity is allowed access to the job and its details.
ClientToken *string `locationName:"clientToken" type:"string" required:"true"`
// A system-generated token, such as a AWS CodeDeploy deployment ID, that a
// job uses in order to continue the job asynchronously.
ContinuationToken *string `locationName:"continuationToken" type:"string"`
// Represents information about a current revision.
CurrentRevision *CurrentRevision `locationName:"currentRevision" type:"structure"`
// The details of the actions taken and results produced on an artifact as it
// passes through stages in the pipeline.
ExecutionDetails *ExecutionDetails `locationName:"executionDetails" type:"structure"`
// The ID of the job that successfully completed. This is the same ID returned
// from PollForThirdPartyJobs.
JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s PutThirdPartyJobSuccessResultInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutThirdPartyJobSuccessResultInput) GoString() string {
return s.String()
}
type PutThirdPartyJobSuccessResultOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s PutThirdPartyJobSuccessResultOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s PutThirdPartyJobSuccessResultOutput) GoString() string {
return s.String()
}
// The location of the Amazon S3 bucket that contains a revision.
type S3ArtifactLocation struct {
_ struct{} `type:"structure"`
// The name of the Amazon S3 bucket.
BucketName *string `locationName:"bucketName" type:"string" required:"true"`
// The key of the object in the Amazon S3 bucket, which uniquely identifies
// the object in the bucket.
ObjectKey *string `locationName:"objectKey" type:"string" required:"true"`
}
// String returns the string representation
func (s S3ArtifactLocation) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s S3ArtifactLocation) GoString() string {
return s.String()
}
// Represents information about a stage to a job worker.
type StageContext struct {
_ struct{} `type:"structure"`
// The name of the stage.
Name *string `locationName:"name" min:"1" type:"string"`
}
// String returns the string representation
func (s StageContext) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s StageContext) GoString() string {
return s.String()
}
// Represents information about a stage and its definition.
type StageDeclaration struct {
_ struct{} `type:"structure"`
// The actions included in a stage.
Actions []*ActionDeclaration `locationName:"actions" type:"list" required:"true"`
// The gates included in a stage.
Blockers []*BlockerDeclaration `locationName:"blockers" type:"list"`
// The name of the stage.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s StageDeclaration) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s StageDeclaration) GoString() string {
return s.String()
}
// Represents information about the state of the stage.
type StageState struct {
_ struct{} `type:"structure"`
// The state of the stage.
ActionStates []*ActionState `locationName:"actionStates" type:"list"`
// The state of the inbound transition, which is either enabled or disabled.
InboundTransitionState *TransitionState `locationName:"inboundTransitionState" type:"structure"`
// The name of the stage.
StageName *string `locationName:"stageName" min:"1" type:"string"`
}
// String returns the string representation
func (s StageState) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s StageState) GoString() string {
return s.String()
}
// Represents the input of a start pipeline execution action.
type StartPipelineExecutionInput struct {
_ struct{} `type:"structure"`
// The name of the pipeline to start.
Name *string `locationName:"name" min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s StartPipelineExecutionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s StartPipelineExecutionInput) GoString() string {
return s.String()
}
// Represents the output of a start pipeline execution action.
type StartPipelineExecutionOutput struct {
_ struct{} `type:"structure"`
// The unique system-generated ID of the pipeline that was started.
PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`
}
// String returns the string representation
func (s StartPipelineExecutionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s StartPipelineExecutionOutput) GoString() string {
return s.String()
}
// A response to a PollForThirdPartyJobs request returned by AWS CodePipeline
// when there is a job to be worked upon by a partner action.
type ThirdPartyJob struct {
_ struct{} `type:"structure"`
// The clientToken portion of the clientId and clientToken pair used to verify
// that the calling entity is allowed access to the job and its details.
ClientId *string `locationName:"clientId" type:"string"`
// The identifier used to identify the job in AWS CodePipeline.
JobId *string `locationName:"jobId" type:"string"`
}
// String returns the string representation
func (s ThirdPartyJob) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ThirdPartyJob) GoString() string {
return s.String()
}
// Represents information about the job data for a partner action.
type ThirdPartyJobData struct {
_ struct{} `type:"structure"`
// Represents information about an action configuration.
ActionConfiguration *ActionConfiguration `locationName:"actionConfiguration" type:"structure"`
// Represents information about an action type.
ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure"`
// Represents an AWS session credentials object. These credentials are temporary
// credentials that are issued by AWS Secure Token Service (STS). They can be
// used to access input and output artifacts in the Amazon S3 bucket used to
// store artifact for the pipeline in AWS CodePipeline.
ArtifactCredentials *AWSSessionCredentials `locationName:"artifactCredentials" type:"structure"`
// A system-generated token, such as a AWS CodeDeploy deployment ID, that a
// job requires in order to continue the job asynchronously.
ContinuationToken *string `locationName:"continuationToken" type:"string"`
// The AWS Key Management Service (AWS KMS) key used to encrypt and decrypt
// data in the artifact store for the pipeline.
EncryptionKey *EncryptionKey `locationName:"encryptionKey" type:"structure"`
// The name of the artifact that will be worked upon by the action, if any.
// This name might be system-generated, such as "MyApp", or might be defined
// by the user when the action is created. The input artifact name must match
// the name of an output artifact generated by an action in an earlier action
// or stage of the pipeline.
InputArtifacts []*Artifact `locationName:"inputArtifacts" type:"list"`
// The name of the artifact that will be the result of the action, if any. This
// name might be system-generated, such as "MyBuiltApp", or might be defined
// by the user when the action is created.
OutputArtifacts []*Artifact `locationName:"outputArtifacts" type:"list"`
// Represents information about a pipeline to a job worker.
PipelineContext *PipelineContext `locationName:"pipelineContext" type:"structure"`
}
// String returns the string representation
func (s ThirdPartyJobData) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ThirdPartyJobData) GoString() string {
return s.String()
}
// The details of a job sent in response to a GetThirdPartyJobDetails request.
type ThirdPartyJobDetails struct {
_ struct{} `type:"structure"`
// The data to be returned by the third party job worker.
Data *ThirdPartyJobData `locationName:"data" type:"structure"`
// The identifier used to identify the job details in AWS CodePipeline.
Id *string `locationName:"id" min:"1" type:"string"`
// A system-generated random number that AWS CodePipeline uses to ensure that
// the job is being worked on by only one job worker. This number must be returned
// in the response.
Nonce *string `locationName:"nonce" type:"string"`
}
// String returns the string representation
func (s ThirdPartyJobDetails) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ThirdPartyJobDetails) GoString() string {
return s.String()
}
// Represents information about the state of transitions between one stage and
// another stage.
type TransitionState struct {
_ struct{} `type:"structure"`
// The user-specified reason why the transition between two stages of a pipeline
// was disabled.
DisabledReason *string `locationName:"disabledReason" min:"1" type:"string"`
// Whether the transition between stages is enabled (true) or disabled (false).
Enabled *bool `locationName:"enabled" type:"boolean"`
// The timestamp when the transition state was last changed.
LastChangedAt *time.Time `locationName:"lastChangedAt" type:"timestamp" timestampFormat:"unix"`
// The ID of the user who last changed the transition state.
LastChangedBy *string `locationName:"lastChangedBy" type:"string"`
}
// String returns the string representation
func (s TransitionState) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s TransitionState) GoString() string {
return s.String()
}
// Represents the input of an update pipeline action.
type UpdatePipelineInput struct {
_ struct{} `type:"structure"`
// The name of the pipeline to be updated.
Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure" required:"true"`
}
// String returns the string representation
func (s UpdatePipelineInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdatePipelineInput) GoString() string {
return s.String()
}
// Represents the output of an update pipeline action.
type UpdatePipelineOutput struct {
_ struct{} `type:"structure"`
// The structure of the updated pipeline.
Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure"`
}
// String returns the string representation
func (s UpdatePipelineOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s UpdatePipelineOutput) GoString() string {
return s.String()
}
const (
// @enum ActionCategory
ActionCategorySource = "Source"
// @enum ActionCategory
ActionCategoryBuild = "Build"
// @enum ActionCategory
ActionCategoryDeploy = "Deploy"
// @enum ActionCategory
ActionCategoryTest = "Test"
// @enum ActionCategory
ActionCategoryInvoke = "Invoke"
)
const (
// @enum ActionConfigurationPropertyType
ActionConfigurationPropertyTypeString = "String"
// @enum ActionConfigurationPropertyType
ActionConfigurationPropertyTypeNumber = "Number"
// @enum ActionConfigurationPropertyType
ActionConfigurationPropertyTypeBoolean = "Boolean"
)
const (
// @enum ActionExecutionStatus
ActionExecutionStatusInProgress = "InProgress"
// @enum ActionExecutionStatus
ActionExecutionStatusSucceeded = "Succeeded"
// @enum ActionExecutionStatus
ActionExecutionStatusFailed = "Failed"
)
const (
// @enum ActionOwner
ActionOwnerAws = "AWS"
// @enum ActionOwner
ActionOwnerThirdParty = "ThirdParty"
// @enum ActionOwner
ActionOwnerCustom = "Custom"
)
const (
// @enum ArtifactLocationType
ArtifactLocationTypeS3 = "S3"
)
const (
// @enum ArtifactStoreType
ArtifactStoreTypeS3 = "S3"
)
const (
// @enum BlockerType
BlockerTypeSchedule = "Schedule"
)
const (
// @enum EncryptionKeyType
EncryptionKeyTypeKms = "KMS"
)
const (
// @enum FailureType
FailureTypeJobFailed = "JobFailed"
// @enum FailureType
FailureTypeConfigurationError = "ConfigurationError"
// @enum FailureType
FailureTypePermissionError = "PermissionError"
// @enum FailureType
FailureTypeRevisionOutOfSync = "RevisionOutOfSync"
// @enum FailureType
FailureTypeRevisionUnavailable = "RevisionUnavailable"
// @enum FailureType
FailureTypeSystemUnavailable = "SystemUnavailable"
)
const (
// @enum JobStatus
JobStatusCreated = "Created"
// @enum JobStatus
JobStatusQueued = "Queued"
// @enum JobStatus
JobStatusDispatched = "Dispatched"
// @enum JobStatus
JobStatusInProgress = "InProgress"
// @enum JobStatus
JobStatusTimedOut = "TimedOut"
// @enum JobStatus
JobStatusSucceeded = "Succeeded"
// @enum JobStatus
JobStatusFailed = "Failed"
)
const (
// @enum StageTransitionType
StageTransitionTypeInbound = "Inbound"
// @enum StageTransitionType
StageTransitionTypeOutbound = "Outbound"
)
|