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

// =================================================================
//
//                           * WARNING *
//
//                    This file is generated!
//
//  Changes made to this file will be overwritten. If changes are
//  required to the generated code, the service_crategen project
//  must be updated to generate the changes.
//
// =================================================================

#[allow(warnings)]
use hyper::Client;
use hyper::status::StatusCode;
use rusoto_core::request::DispatchSignedRequest;
use rusoto_core::region;

use std::fmt;
use std::error::Error;
use std::io;
use std::io::Read;
use rusoto_core::request::HttpDispatchError;
use rusoto_core::credential::{CredentialsError, ProvideAwsCredentials};

use serde_json;
use rusoto_core::signature::SignedRequest;
use serde_json::Value as SerdeJsonValue;
use serde_json::from_str;
#[derive(Default,Debug,Clone,Serialize)]
pub struct BatchGetBuildsInput {
    #[doc="<p>The IDs of the builds.</p>"]
    #[serde(rename="ids")]
    pub ids: Vec<String>,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct BatchGetBuildsOutput {
    #[doc="<p>Information about the requested builds.</p>"]
    #[serde(rename="builds")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub builds: Option<Vec<Build>>,
    #[doc="<p>The IDs of builds for which information could not be found.</p>"]
    #[serde(rename="buildsNotFound")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub builds_not_found: Option<Vec<String>>,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct BatchGetProjectsInput {
    #[doc="<p>The names of the build projects.</p>"]
    #[serde(rename="names")]
    pub names: Vec<String>,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct BatchGetProjectsOutput {
    #[doc="<p>Information about the requested build projects.</p>"]
    #[serde(rename="projects")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub projects: Option<Vec<Project>>,
    #[doc="<p>The names of build projects for which information could not be found.</p>"]
    #[serde(rename="projectsNotFound")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub projects_not_found: Option<Vec<String>>,
}

#[doc="<p>Information about a build.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct Build {
    #[doc="<p>The Amazon Resource Name (ARN) of the build.</p>"]
    #[serde(rename="arn")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub arn: Option<String>,
    #[doc="<p>Information about the output artifacts for the build.</p>"]
    #[serde(rename="artifacts")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub artifacts: Option<BuildArtifacts>,
    #[doc="<p>Whether the build has finished. True if completed; otherwise, false.</p>"]
    #[serde(rename="buildComplete")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub build_complete: Option<bool>,
    #[doc="<p>The current status of the build. Valid values include:</p> <ul> <li> <p> <code>FAILED</code>: The build failed.</p> </li> <li> <p> <code>FAULT</code>: The build faulted.</p> </li> <li> <p> <code>IN_PROGRESS</code>: The build is still in progress.</p> </li> <li> <p> <code>STOPPED</code>: The build stopped.</p> </li> <li> <p> <code>SUCCEEDED</code>: The build succeeded.</p> </li> <li> <p> <code>TIMED_OUT</code>: The build timed out.</p> </li> </ul>"]
    #[serde(rename="buildStatus")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub build_status: Option<String>,
    #[doc="<p>The current build phase.</p>"]
    #[serde(rename="currentPhase")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub current_phase: Option<String>,
    #[doc="<p>When the build process ended, expressed in Unix time format.</p>"]
    #[serde(rename="endTime")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub end_time: Option<f64>,
    #[doc="<p>Information about the build environment for this build.</p>"]
    #[serde(rename="environment")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub environment: Option<ProjectEnvironment>,
    #[doc="<p>The unique ID for the build.</p>"]
    #[serde(rename="id")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub id: Option<String>,
    #[doc="<p>The entity that started the build. Valid values include:</p> <ul> <li> <p>If AWS CodePipeline started the build, the pipeline's name (for example, <code>codepipeline/my-demo-pipeline</code>).</p> </li> <li> <p>If an AWS Identity and Access Management (IAM) user started the build, the user's name (for example <code>MyUserName</code>).</p> </li> <li> <p>If the Jenkins plugin for AWS CodeBuild started the build, the string <code>CodeBuild-Jenkins-Plugin</code>.</p> </li> </ul>"]
    #[serde(rename="initiator")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub initiator: Option<String>,
    #[doc="<p>Information about the build's logs in Amazon CloudWatch Logs.</p>"]
    #[serde(rename="logs")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub logs: Option<LogsLocation>,
    #[doc="<p>Information about all previous build phases that are completed and information about any current build phase that is not yet complete.</p>"]
    #[serde(rename="phases")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub phases: Option<Vec<BuildPhase>>,
    #[doc="<p>The name of the build project.</p>"]
    #[serde(rename="projectName")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub project_name: Option<String>,
    #[doc="<p>Information about the source code to be built.</p>"]
    #[serde(rename="source")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub source: Option<ProjectSource>,
    #[doc="<p>Any version identifier for the version of the source code to be built.</p>"]
    #[serde(rename="sourceVersion")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub source_version: Option<String>,
    #[doc="<p>When the build process started, expressed in Unix time format.</p>"]
    #[serde(rename="startTime")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub start_time: Option<f64>,
    #[doc="<p>How long, in minutes, for AWS CodeBuild to wait before timing out this build if it does not get marked as completed.</p>"]
    #[serde(rename="timeoutInMinutes")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub timeout_in_minutes: Option<i64>,
}

#[doc="<p>Information about build output artifacts.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct BuildArtifacts {
    #[doc="<p>Information about the location of the build artifacts.</p>"]
    #[serde(rename="location")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub location: Option<String>,
    #[doc="<p>The MD5 hash of the build artifact.</p> <p>You can use this hash along with a checksum tool to confirm both file integrity and authenticity.</p> <note> <p>This value is available only if the build project's <code>packaging</code> value is set to <code>ZIP</code>.</p> </note>"]
    #[serde(rename="md5sum")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub md_5sum: Option<String>,
    #[doc="<p>The SHA-256 hash of the build artifact.</p> <p>You can use this hash along with a checksum tool to confirm both file integrity and authenticity.</p> <note> <p>This value is available only if the build project's <code>packaging</code> value is set to <code>ZIP</code>.</p> </note>"]
    #[serde(rename="sha256sum")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub sha_25_6sum: Option<String>,
}

#[doc="<p>Information about a stage for a build.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct BuildPhase {
    #[doc="<p>Additional information about a build phase, especially to help troubleshoot a failed build.</p>"]
    #[serde(rename="contexts")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub contexts: Option<Vec<PhaseContext>>,
    #[doc="<p>How long, in seconds, between the starting and ending times of the build's phase.</p>"]
    #[serde(rename="durationInSeconds")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub duration_in_seconds: Option<i64>,
    #[doc="<p>When the build phase ended, expressed in Unix time format.</p>"]
    #[serde(rename="endTime")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub end_time: Option<f64>,
    #[doc="<p>The current status of the build phase. Valid values include:</p> <ul> <li> <p> <code>FAILED</code>: The build phase failed.</p> </li> <li> <p> <code>FAULT</code>: The build phase faulted.</p> </li> <li> <p> <code>IN_PROGRESS</code>: The build phase is still in progress.</p> </li> <li> <p> <code>STOPPED</code>: The build phase stopped.</p> </li> <li> <p> <code>SUCCEEDED</code>: The build phase succeeded.</p> </li> <li> <p> <code>TIMED_OUT</code>: The build phase timed out.</p> </li> </ul>"]
    #[serde(rename="phaseStatus")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub phase_status: Option<String>,
    #[doc="<p>The name of the build phase. Valid values include:</p> <ul> <li> <p> <code>BUILD</code>: Core build activities typically occur in this build phase.</p> </li> <li> <p> <code>COMPLETED</code>: The build has been completed.</p> </li> <li> <p> <code>DOWNLOAD_SOURCE</code>: Source code is being downloaded in this build phase.</p> </li> <li> <p> <code>FINALIZING</code>: The build process is completing in this build phase.</p> </li> <li> <p> <code>INSTALL</code>: Installation activities typically occur in this build phase.</p> </li> <li> <p> <code>POST_BUILD</code>: Post-build activities typically occur in this build phase.</p> </li> <li> <p> <code>PRE_BUILD</code>: Pre-build activities typically occur in this build phase.</p> </li> <li> <p> <code>PROVISIONING</code>: The build environment is being set up.</p> </li> <li> <p> <code>SUBMITTED</code>: The build has been submitted.</p> </li> <li> <p> <code>UPLOAD_ARTIFACTS</code>: Build output artifacts are being uploaded to the output location.</p> </li> </ul>"]
    #[serde(rename="phaseType")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub phase_type: Option<String>,
    #[doc="<p>When the build phase started, expressed in Unix time format.</p>"]
    #[serde(rename="startTime")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub start_time: Option<f64>,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct CreateProjectInput {
    #[doc="<p>Information about the build output artifacts for the build project.</p>"]
    #[serde(rename="artifacts")]
    pub artifacts: ProjectArtifacts,
    #[doc="<p>A description that makes the build project easy to identify.</p>"]
    #[serde(rename="description")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub description: Option<String>,
    #[doc="<p>The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.</p> <p>You can specify either the CMK's Amazon Resource Name (ARN) or, if available, the CMK's alias (using the format <code>alias/<i>alias-name</i> </code>).</p>"]
    #[serde(rename="encryptionKey")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub encryption_key: Option<String>,
    #[doc="<p>Information about the build environment for the build project.</p>"]
    #[serde(rename="environment")]
    pub environment: ProjectEnvironment,
    #[doc="<p>The name of the build project.</p>"]
    #[serde(rename="name")]
    pub name: String,
    #[doc="<p>The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.</p>"]
    #[serde(rename="serviceRole")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub service_role: Option<String>,
    #[doc="<p>Information about the build input source code for the build project.</p>"]
    #[serde(rename="source")]
    pub source: ProjectSource,
    #[doc="<p>A set of tags for this build project.</p> <p>These tags are available for use by AWS services that support AWS CodeBuild build project tags.</p>"]
    #[serde(rename="tags")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub tags: Option<Vec<Tag>>,
    #[doc="<p>How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait until timing out any build that has not been marked as completed. The default is 60 minutes.</p>"]
    #[serde(rename="timeoutInMinutes")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub timeout_in_minutes: Option<i64>,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct CreateProjectOutput {
    #[doc="<p>Information about the build project that was created.</p>"]
    #[serde(rename="project")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub project: Option<Project>,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct DeleteProjectInput {
    #[doc="<p>The name of the build project.</p>"]
    #[serde(rename="name")]
    pub name: String,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct DeleteProjectOutput;

#[doc="<p>Information about a Docker image that is managed by AWS CodeBuild.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct EnvironmentImage {
    #[doc="<p>The description of the Docker image.</p>"]
    #[serde(rename="description")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub description: Option<String>,
    #[doc="<p>The name of the Docker image.</p>"]
    #[serde(rename="name")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub name: Option<String>,
}

#[doc="<p>A set of Docker images that are related by programming language and are managed by AWS CodeBuild.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct EnvironmentLanguage {
    #[doc="<p>The list of Docker images that are related by the specified programming language.</p>"]
    #[serde(rename="images")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub images: Option<Vec<EnvironmentImage>>,
    #[doc="<p>The programming language for the Docker images.</p>"]
    #[serde(rename="language")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub language: Option<String>,
}

#[doc="<p>A set of Docker images that are related by platform and are managed by AWS CodeBuild.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct EnvironmentPlatform {
    #[doc="<p>The list of programming languages that are available for the specified platform.</p>"]
    #[serde(rename="languages")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub languages: Option<Vec<EnvironmentLanguage>>,
    #[doc="<p>The platform's name.</p>"]
    #[serde(rename="platform")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub platform: Option<String>,
}

#[doc="<p>Information about an environment variable for a build project or a build.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct EnvironmentVariable {
    #[doc="<p>The name or key of the environment variable.</p>"]
    #[serde(rename="name")]
    pub name: String,
    #[doc="<p>The value of the environment variable.</p> <important> <p>We strongly discourage using environment variables to store sensitive values, especially AWS secret key IDs and secret access keys. Environment variables can be displayed in plain text using tools such as the AWS CodeBuild console and the AWS Command Line Interface (AWS CLI).</p> </important>"]
    #[serde(rename="value")]
    pub value: String,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct ListBuildsForProjectInput {
    #[doc="<p>During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p>"]
    #[serde(rename="nextToken")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub next_token: Option<String>,
    #[doc="<p>The name of the build project.</p>"]
    #[serde(rename="projectName")]
    pub project_name: String,
    #[doc="<p>The order to list build IDs. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the build IDs in ascending order by build ID.</p> </li> <li> <p> <code>DESCENDING</code>: List the build IDs in descending order by build ID.</p> </li> </ul>"]
    #[serde(rename="sortOrder")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub sort_order: Option<String>,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct ListBuildsForProjectOutput {
    #[doc="<p>A list of build IDs for the specified build project, with each build ID representing a single build.</p>"]
    #[serde(rename="ids")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub ids: Option<Vec<String>>,
    #[doc="<p>If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call.</p>"]
    #[serde(rename="nextToken")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub next_token: Option<String>,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct ListBuildsInput {
    #[doc="<p>During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p>"]
    #[serde(rename="nextToken")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub next_token: Option<String>,
    #[doc="<p>The order to list build IDs. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the build IDs in ascending order by build ID.</p> </li> <li> <p> <code>DESCENDING</code>: List the build IDs in descending order by build ID.</p> </li> </ul>"]
    #[serde(rename="sortOrder")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub sort_order: Option<String>,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct ListBuildsOutput {
    #[doc="<p>A list of build IDs, with each build ID representing a single build.</p>"]
    #[serde(rename="ids")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub ids: Option<Vec<String>>,
    #[doc="<p>If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call.</p>"]
    #[serde(rename="nextToken")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub next_token: Option<String>,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct ListCuratedEnvironmentImagesInput;

#[derive(Default,Debug,Clone,Deserialize)]
pub struct ListCuratedEnvironmentImagesOutput {
    #[doc="<p>Information about supported platforms for Docker images that are managed by AWS CodeBuild.</p>"]
    #[serde(rename="platforms")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub platforms: Option<Vec<EnvironmentPlatform>>,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct ListProjectsInput {
    #[doc="<p>During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p>"]
    #[serde(rename="nextToken")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub next_token: Option<String>,
    #[doc="<p>The criterion to be used to list build project names. Valid values include:</p> <ul> <li> <p> <code>CREATED_TIME</code>: List the build project names based on when each build project was created.</p> </li> <li> <p> <code>LAST_MODIFIED_TIME</code>: List the build project names based on when information about each build project was last changed.</p> </li> <li> <p> <code>NAME</code>: List the build project names based on each build project's name.</p> </li> </ul> <p>Use <code>sortOrder</code> to specify in what order to list the build project names based on the preceding criteria.</p>"]
    #[serde(rename="sortBy")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub sort_by: Option<String>,
    #[doc="<p>The order in which to list build projects. Valid values include:</p> <ul> <li> <p> <code>ASCENDING</code>: List the build project names in ascending order.</p> </li> <li> <p> <code>DESCENDING</code>: List the build project names in descending order.</p> </li> </ul> <p>Use <code>sortBy</code> to specify the criterion to be used to list build project names.</p>"]
    #[serde(rename="sortOrder")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub sort_order: Option<String>,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct ListProjectsOutput {
    #[doc="<p>If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a <i>next token</i>. To get the next batch of items in the list, call this operation again, adding the next token to the call.</p>"]
    #[serde(rename="nextToken")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub next_token: Option<String>,
    #[doc="<p>The list of build project names, with each build project name representing a single build project.</p>"]
    #[serde(rename="projects")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub projects: Option<Vec<String>>,
}

#[doc="<p>Information about build logs in Amazon CloudWatch Logs.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct LogsLocation {
    #[doc="<p>The URL to an individual build log in Amazon CloudWatch Logs.</p>"]
    #[serde(rename="deepLink")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub deep_link: Option<String>,
    #[doc="<p>The name of the Amazon CloudWatch Logs group for the build logs.</p>"]
    #[serde(rename="groupName")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub group_name: Option<String>,
    #[doc="<p>The name of the Amazon CloudWatch Logs stream for the build logs.</p>"]
    #[serde(rename="streamName")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub stream_name: Option<String>,
}

#[doc="<p>Additional information about a build phase that has an error. You can use this information to help troubleshoot a failed build.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct PhaseContext {
    #[doc="<p>An explanation of the build phase's context. This explanation might include a command ID and an exit code.</p>"]
    #[serde(rename="message")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub message: Option<String>,
    #[doc="<p>The status code for the context of the build phase.</p>"]
    #[serde(rename="statusCode")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub status_code: Option<String>,
}

#[doc="<p>Information about a build project.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct Project {
    #[doc="<p>The Amazon Resource Name (ARN) of the build project.</p>"]
    #[serde(rename="arn")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub arn: Option<String>,
    #[doc="<p>Information about the build output artifacts for the build project.</p>"]
    #[serde(rename="artifacts")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub artifacts: Option<ProjectArtifacts>,
    #[doc="<p>When the build project was created, expressed in Unix time format.</p>"]
    #[serde(rename="created")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub created: Option<f64>,
    #[doc="<p>A description that makes the build project easy to identify.</p>"]
    #[serde(rename="description")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub description: Option<String>,
    #[doc="<p>The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.</p> <p>This is expressed either as the CMK's Amazon Resource Name (ARN) or, if specified, the CMK's alias (using the format <code>alias/<i>alias-name</i> </code>).</p>"]
    #[serde(rename="encryptionKey")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub encryption_key: Option<String>,
    #[doc="<p>Information about the build environment for this build project.</p>"]
    #[serde(rename="environment")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub environment: Option<ProjectEnvironment>,
    #[doc="<p>When the build project's settings were last modified, expressed in Unix time format.</p>"]
    #[serde(rename="lastModified")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub last_modified: Option<f64>,
    #[doc="<p>The name of the build project.</p>"]
    #[serde(rename="name")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub name: Option<String>,
    #[doc="<p>The ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.</p>"]
    #[serde(rename="serviceRole")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub service_role: Option<String>,
    #[doc="<p>Information about the build input source code for this build project.</p>"]
    #[serde(rename="source")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub source: Option<ProjectSource>,
    #[doc="<p>The tags for this build project.</p> <p>These tags are available for use by AWS services that support AWS CodeBuild build project tags.</p>"]
    #[serde(rename="tags")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub tags: Option<Vec<Tag>>,
    #[doc="<p>How long, in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed. The default is 60 minutes.</p>"]
    #[serde(rename="timeoutInMinutes")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub timeout_in_minutes: Option<i64>,
}

#[doc="<p>Information about the build output artifacts for the build project.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct ProjectArtifacts {
    #[doc="<p>Information about the build output artifact location, as follows:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, then AWS CodePipeline will ignore this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO_ARTIFACTS</code>, then this value will be ignored if specified, because no build output will be produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, this is the name of the output bucket.</p> </li> </ul>"]
    #[serde(rename="location")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub location: Option<String>,
    #[doc="<p>Along with <code>path</code> and <code>namespaceType</code>, the pattern that AWS CodeBuild will use to name and store the output artifact, as follows:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, then AWS CodePipeline will ignore this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO_ARTIFACTS</code>, then this value will be ignored if specified, because no build output will be produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, this is the name of the output artifact object.</p> </li> </ul> <p>For example, if <code>path</code> is set to <code>MyArtifacts</code>, <code>namespaceType</code> is set to <code>BUILD_ID</code>, and <code>name</code> is set to <code>MyArtifact.zip</code>, then the output artifact would be stored in <code>MyArtifacts/<i>build-ID</i>/MyArtifact.zip</code>.</p>"]
    #[serde(rename="name")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub name: Option<String>,
    #[doc="<p>Along with <code>path</code> and <code>name</code>, the pattern that AWS CodeBuild will use to determine the name and location to store the output artifact, as follows:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, then AWS CodePipeline will ignore this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO_ARTIFACTS</code>, then this value will be ignored if specified, because no build output will be produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, then valid values include:</p> <ul> <li> <p> <code>BUILD_ID</code>: Include the build ID in the location of the build output artifact.</p> </li> <li> <p> <code>NONE</code>: Do not include the build ID. This is the default if <code>namespaceType</code> is not specified.</p> </li> </ul> </li> </ul> <p>For example, if <code>path</code> is set to <code>MyArtifacts</code>, <code>namespaceType</code> is set to <code>BUILD_ID</code>, and <code>name</code> is set to <code>MyArtifact.zip</code>, then the output artifact would be stored in <code>MyArtifacts/<i>build-ID</i>/MyArtifact.zip</code>.</p>"]
    #[serde(rename="namespaceType")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub namespace_type: Option<String>,
    #[doc="<p>The type of build output artifact to create, as follows:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, then AWS CodePipeline will ignore this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO_ARTIFACTS</code>, then this value will be ignored if specified, because no build output will be produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, valid values include:</p> <ul> <li> <p> <code>NONE</code>: AWS CodeBuild will create in the output bucket a folder containing the build output. This is the default if <code>packaging</code> is not specified.</p> </li> <li> <p> <code>ZIP</code>: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.</p> </li> </ul> </li> </ul>"]
    #[serde(rename="packaging")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub packaging: Option<String>,
    #[doc="<p>Along with <code>namespaceType</code> and <code>name</code>, the pattern that AWS CodeBuild will use to name and store the output artifact, as follows:</p> <ul> <li> <p>If <code>type</code> is set to <code>CODEPIPELINE</code>, then AWS CodePipeline will ignore this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.</p> </li> <li> <p>If <code>type</code> is set to <code>NO_ARTIFACTS</code>, then this value will be ignored if specified, because no build output will be produced.</p> </li> <li> <p>If <code>type</code> is set to <code>S3</code>, this is the path to the output artifact. If <code>path</code> is not specified, then <code>path</code> will not be used.</p> </li> </ul> <p>For example, if <code>path</code> is set to <code>MyArtifacts</code>, <code>namespaceType</code> is set to <code>NONE</code>, and <code>name</code> is set to <code>MyArtifact.zip</code>, then the output artifact would be stored in the output bucket at <code>MyArtifacts/MyArtifact.zip</code>.</p>"]
    #[serde(rename="path")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub path: Option<String>,
    #[doc="<p>The type of build output artifact. Valid values include:</p> <ul> <li> <p> <code>CODEPIPELINE</code>: The build project will have build output generated through AWS CodePipeline.</p> </li> <li> <p> <code>NO_ARTIFACTS</code>: The build project will not produce any build output.</p> </li> <li> <p> <code>S3</code>: The build project will store build output in Amazon Simple Storage Service (Amazon S3).</p> </li> </ul>"]
    #[serde(rename="type")]
    pub type_: String,
}

#[doc="<p>Information about the build environment of the build project.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct ProjectEnvironment {
    #[doc="<p>Information about the compute resources the build project will use. Available values include:</p> <ul> <li> <p> <code>BUILD_GENERAL1_SMALL</code>: Use up to 3 GB memory and 2 vCPUs for builds.</p> </li> <li> <p> <code>BUILD_GENERAL1_MEDIUM</code>: Use up to 7 GB memory and 4 vCPUs for builds.</p> </li> <li> <p> <code>BUILD_GENERAL1_LARGE</code>: Use up to 15 GB memory and 8 vCPUs for builds.</p> </li> </ul>"]
    #[serde(rename="computeType")]
    pub compute_type: String,
    #[doc="<p>A set of environment variables to make available to builds for this build project.</p>"]
    #[serde(rename="environmentVariables")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub environment_variables: Option<Vec<EnvironmentVariable>>,
    #[doc="<p>The ID of the Docker image to use for this build project.</p>"]
    #[serde(rename="image")]
    pub image: String,
    #[doc="<p>If set to true, enables running the Docker daemon inside a Docker container; otherwise, false or not specified (the default). This value must be set to true only if this build project will be used to build Docker images, and the specified build environment image is not one provided by AWS CodeBuild with Docker support. Otherwise, all associated builds that attempt to interact with the Docker daemon will fail. Note that you must also start the Docker daemon so that your builds can interact with it as needed. One way to do this is to initialize the Docker daemon in the install phase of your build spec by running the following build commands. (Do not run the following build commands if the specified build environment image is provided by AWS CodeBuild with Docker support.)</p> <p> <code>- nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=vfs&amp; - timeout -t 15 sh -c \"until docker info; do echo .; sleep 1; done\"</code> </p>"]
    #[serde(rename="privilegedMode")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub privileged_mode: Option<bool>,
    #[doc="<p>The type of build environment to use for related builds.</p>"]
    #[serde(rename="type")]
    pub type_: String,
}

#[doc="<p>Information about the build input source code for the build project.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct ProjectSource {
    #[doc="<p>Information about the authorization settings for AWS CodeBuild to access the source code to be built.</p> <p>This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly (unless the build project's source <code>type</code> value is <code>GITHUB</code>).</p>"]
    #[serde(rename="auth")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub auth: Option<SourceAuth>,
    #[doc="<p>The build spec declaration to use for the builds in this build project.</p> <p>If this value is not specified, a build spec must be included along with the source code to be built.</p>"]
    #[serde(rename="buildspec")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub buildspec: Option<String>,
    #[doc="<p>Information about the location of the source code to be built. Valid values include:</p> <ul> <li> <p>For source code settings that are specified in the source action of a pipeline in AWS CodePipeline, <code>location</code> should not be specified. If it is specified, AWS CodePipeline will ignore it. This is because AWS CodePipeline uses the settings in a pipeline's source action instead of this value.</p> </li> <li> <p>For source code in an AWS CodeCommit repository, the HTTPS clone URL to the repository that contains the source code and the build spec (for example, <code>https://git-codecommit.<i>region-ID</i>.amazonaws.com/v1/repos/<i>repo-name</i> </code>).</p> </li> <li> <p>For source code in an Amazon Simple Storage Service (Amazon S3) input bucket, the path to the ZIP file that contains the source code (for example, <code> <i>bucket-name</i>/<i>path</i>/<i>to</i>/<i>object-name</i>.zip</code>)</p> </li> <li> <p>For source code in a GitHub repository, the HTTPS clone URL to the repository that contains the source and the build spec. Also, you must connect your AWS account to your GitHub account. To do this, use the AWS CodeBuild console to begin creating a build project. When you use the console to connect (or reconnect) with GitHub, on the GitHub <b>Authorize application</b> page that displays, for <b>Organization access</b>, choose <b>Request access</b> next to each repository you want to allow AWS CodeBuild to have access to. Then choose <b>Authorize application</b>. (After you have connected to your GitHub account, you do not need to finish creating the build project, and you may then leave the AWS CodeBuild console.) To instruct AWS CodeBuild to then use this connection, in the <code>source</code> object, set the <code>auth</code> object's <code>type</code> value to <code>OAUTH</code>.</p> </li> </ul>"]
    #[serde(rename="location")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub location: Option<String>,
    #[doc="<p>The type of repository that contains the source code to be built. Valid values include:</p> <ul> <li> <p> <code>CODECOMMIT</code>: The source code is in an AWS CodeCommit repository.</p> </li> <li> <p> <code>CODEPIPELINE</code>: The source code settings are specified in the source action of a pipeline in AWS CodePipeline.</p> </li> <li> <p> <code>GITHUB</code>: The source code is in a GitHub repository.</p> </li> <li> <p> <code>S3</code>: The source code is in an Amazon Simple Storage Service (Amazon S3) input bucket.</p> </li> </ul>"]
    #[serde(rename="type")]
    pub type_: String,
}

#[doc="<p>Information about the authorization settings for AWS CodeBuild to access the source code to be built.</p> <p>This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly (unless the build project's source <code>type</code> value is <code>GITHUB</code>).</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct SourceAuth {
    #[doc="<p>The resource value that applies to the specified authorization type.</p>"]
    #[serde(rename="resource")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub resource: Option<String>,
    #[doc="<p>The authorization type to use. The only valid value is <code>OAUTH</code>, which represents the OAuth authorization type.</p>"]
    #[serde(rename="type")]
    pub type_: String,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct StartBuildInput {
    #[doc="<p>Build output artifact settings that override, for this build only, the latest ones already defined in the build project.</p>"]
    #[serde(rename="artifactsOverride")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub artifacts_override: Option<ProjectArtifacts>,
    #[doc="<p>A build spec declaration that overrides, for this build only, the latest one already defined in the build project.</p>"]
    #[serde(rename="buildspecOverride")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub buildspec_override: Option<String>,
    #[doc="<p>A set of environment variables that overrides, for this build only, the latest ones already defined in the build project.</p>"]
    #[serde(rename="environmentVariablesOverride")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub environment_variables_override: Option<Vec<EnvironmentVariable>>,
    #[doc="<p>The name of the build project to start running a build.</p>"]
    #[serde(rename="projectName")]
    pub project_name: String,
    #[doc="<p>A version of the build input to be built, for this build only. If not specified, the latest version will be used. If specified, must be one of:</p> <ul> <li> <p>For AWS CodeCommit or GitHub: the commit ID to use.</p> </li> <li> <p>For Amazon Simple Storage Service (Amazon S3): the version ID of the object representing the build input ZIP file to use.</p> </li> </ul>"]
    #[serde(rename="sourceVersion")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub source_version: Option<String>,
    #[doc="<p>The number of build timeout minutes, from 5 to 480 (8 hours), that overrides, for this build only, the latest setting already defined in the build project.</p>"]
    #[serde(rename="timeoutInMinutesOverride")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub timeout_in_minutes_override: Option<i64>,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct StartBuildOutput {
    #[doc="<p>Information about the build to be run.</p>"]
    #[serde(rename="build")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub build: Option<Build>,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct StopBuildInput {
    #[doc="<p>The ID of the build.</p>"]
    #[serde(rename="id")]
    pub id: String,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct StopBuildOutput {
    #[doc="<p>Information about the build.</p>"]
    #[serde(rename="build")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub build: Option<Build>,
}

#[doc="<p>A tag, consisting of a key and a value.</p> <p>This tag is available for use by AWS services that support tags in AWS CodeBuild.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct Tag {
    #[doc="<p>The tag's key.</p>"]
    #[serde(rename="key")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub key: Option<String>,
    #[doc="<p>The tag's value.</p>"]
    #[serde(rename="value")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub value: Option<String>,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct UpdateProjectInput {
    #[doc="<p>Information to be changed about the build output artifacts for the build project.</p>"]
    #[serde(rename="artifacts")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub artifacts: Option<ProjectArtifacts>,
    #[doc="<p>A new or replacement description of the build project.</p>"]
    #[serde(rename="description")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub description: Option<String>,
    #[doc="<p>The replacement AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build output artifacts.</p> <p>You can specify either the CMK's Amazon Resource Name (ARN) or, if available, the CMK's alias (using the format <code>alias/<i>alias-name</i> </code>).</p>"]
    #[serde(rename="encryptionKey")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub encryption_key: Option<String>,
    #[doc="<p>Information to be changed about the build environment for the build project.</p>"]
    #[serde(rename="environment")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub environment: Option<ProjectEnvironment>,
    #[doc="<p>The name of the build project.</p> <note> <p>You cannot change a build project's name.</p> </note>"]
    #[serde(rename="name")]
    pub name: String,
    #[doc="<p>The replacement ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.</p>"]
    #[serde(rename="serviceRole")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub service_role: Option<String>,
    #[doc="<p>Information to be changed about the build input source code for the build project.</p>"]
    #[serde(rename="source")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub source: Option<ProjectSource>,
    #[doc="<p>The replacement set of tags for this build project.</p> <p>These tags are available for use by AWS services that support AWS CodeBuild build project tags.</p>"]
    #[serde(rename="tags")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub tags: Option<Vec<Tag>>,
    #[doc="<p>The replacement value in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait before timing out any related build that did not get marked as completed.</p>"]
    #[serde(rename="timeoutInMinutes")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub timeout_in_minutes: Option<i64>,
}

#[derive(Default,Debug,Clone,Deserialize)]
pub struct UpdateProjectOutput {
    #[doc="<p>Information about the build project that was changed.</p>"]
    #[serde(rename="project")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub project: Option<Project>,
}

/// Errors returned by BatchGetBuilds
#[derive(Debug, PartialEq)]
pub enum BatchGetBuildsError {
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl BatchGetBuildsError {
    pub fn from_body(body: &str) -> BatchGetBuildsError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InvalidInputException" => {
                        BatchGetBuildsError::InvalidInput(String::from(error_message))
                    }
                    "ValidationException" => {
                        BatchGetBuildsError::Validation(error_message.to_string())
                    }
                    _ => BatchGetBuildsError::Unknown(String::from(body)),
                }
            }
            Err(_) => BatchGetBuildsError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for BatchGetBuildsError {
    fn from(err: serde_json::error::Error) -> BatchGetBuildsError {
        BatchGetBuildsError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for BatchGetBuildsError {
    fn from(err: CredentialsError) -> BatchGetBuildsError {
        BatchGetBuildsError::Credentials(err)
    }
}
impl From<HttpDispatchError> for BatchGetBuildsError {
    fn from(err: HttpDispatchError) -> BatchGetBuildsError {
        BatchGetBuildsError::HttpDispatch(err)
    }
}
impl From<io::Error> for BatchGetBuildsError {
    fn from(err: io::Error) -> BatchGetBuildsError {
        BatchGetBuildsError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for BatchGetBuildsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for BatchGetBuildsError {
    fn description(&self) -> &str {
        match *self {
            BatchGetBuildsError::InvalidInput(ref cause) => cause,
            BatchGetBuildsError::Validation(ref cause) => cause,
            BatchGetBuildsError::Credentials(ref err) => err.description(),
            BatchGetBuildsError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            BatchGetBuildsError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by BatchGetProjects
#[derive(Debug, PartialEq)]
pub enum BatchGetProjectsError {
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl BatchGetProjectsError {
    pub fn from_body(body: &str) -> BatchGetProjectsError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InvalidInputException" => {
                        BatchGetProjectsError::InvalidInput(String::from(error_message))
                    }
                    "ValidationException" => {
                        BatchGetProjectsError::Validation(error_message.to_string())
                    }
                    _ => BatchGetProjectsError::Unknown(String::from(body)),
                }
            }
            Err(_) => BatchGetProjectsError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for BatchGetProjectsError {
    fn from(err: serde_json::error::Error) -> BatchGetProjectsError {
        BatchGetProjectsError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for BatchGetProjectsError {
    fn from(err: CredentialsError) -> BatchGetProjectsError {
        BatchGetProjectsError::Credentials(err)
    }
}
impl From<HttpDispatchError> for BatchGetProjectsError {
    fn from(err: HttpDispatchError) -> BatchGetProjectsError {
        BatchGetProjectsError::HttpDispatch(err)
    }
}
impl From<io::Error> for BatchGetProjectsError {
    fn from(err: io::Error) -> BatchGetProjectsError {
        BatchGetProjectsError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for BatchGetProjectsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for BatchGetProjectsError {
    fn description(&self) -> &str {
        match *self {
            BatchGetProjectsError::InvalidInput(ref cause) => cause,
            BatchGetProjectsError::Validation(ref cause) => cause,
            BatchGetProjectsError::Credentials(ref err) => err.description(),
            BatchGetProjectsError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            BatchGetProjectsError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by CreateProject
#[derive(Debug, PartialEq)]
pub enum CreateProjectError {
    ///<p>An AWS service limit was exceeded for the calling AWS account.</p>
    AccountLimitExceeded(String),
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    ///<p>The specified AWS resource cannot be created, because an AWS resource with the same settings already exists.</p>
    ResourceAlreadyExists(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl CreateProjectError {
    pub fn from_body(body: &str) -> CreateProjectError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "AccountLimitExceededException" => {
                        CreateProjectError::AccountLimitExceeded(String::from(error_message))
                    }
                    "InvalidInputException" => {
                        CreateProjectError::InvalidInput(String::from(error_message))
                    }
                    "ResourceAlreadyExistsException" => {
                        CreateProjectError::ResourceAlreadyExists(String::from(error_message))
                    }
                    "ValidationException" => {
                        CreateProjectError::Validation(error_message.to_string())
                    }
                    _ => CreateProjectError::Unknown(String::from(body)),
                }
            }
            Err(_) => CreateProjectError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for CreateProjectError {
    fn from(err: serde_json::error::Error) -> CreateProjectError {
        CreateProjectError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for CreateProjectError {
    fn from(err: CredentialsError) -> CreateProjectError {
        CreateProjectError::Credentials(err)
    }
}
impl From<HttpDispatchError> for CreateProjectError {
    fn from(err: HttpDispatchError) -> CreateProjectError {
        CreateProjectError::HttpDispatch(err)
    }
}
impl From<io::Error> for CreateProjectError {
    fn from(err: io::Error) -> CreateProjectError {
        CreateProjectError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for CreateProjectError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for CreateProjectError {
    fn description(&self) -> &str {
        match *self {
            CreateProjectError::AccountLimitExceeded(ref cause) => cause,
            CreateProjectError::InvalidInput(ref cause) => cause,
            CreateProjectError::ResourceAlreadyExists(ref cause) => cause,
            CreateProjectError::Validation(ref cause) => cause,
            CreateProjectError::Credentials(ref err) => err.description(),
            CreateProjectError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            CreateProjectError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by DeleteProject
#[derive(Debug, PartialEq)]
pub enum DeleteProjectError {
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl DeleteProjectError {
    pub fn from_body(body: &str) -> DeleteProjectError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InvalidInputException" => {
                        DeleteProjectError::InvalidInput(String::from(error_message))
                    }
                    "ValidationException" => {
                        DeleteProjectError::Validation(error_message.to_string())
                    }
                    _ => DeleteProjectError::Unknown(String::from(body)),
                }
            }
            Err(_) => DeleteProjectError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for DeleteProjectError {
    fn from(err: serde_json::error::Error) -> DeleteProjectError {
        DeleteProjectError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for DeleteProjectError {
    fn from(err: CredentialsError) -> DeleteProjectError {
        DeleteProjectError::Credentials(err)
    }
}
impl From<HttpDispatchError> for DeleteProjectError {
    fn from(err: HttpDispatchError) -> DeleteProjectError {
        DeleteProjectError::HttpDispatch(err)
    }
}
impl From<io::Error> for DeleteProjectError {
    fn from(err: io::Error) -> DeleteProjectError {
        DeleteProjectError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for DeleteProjectError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DeleteProjectError {
    fn description(&self) -> &str {
        match *self {
            DeleteProjectError::InvalidInput(ref cause) => cause,
            DeleteProjectError::Validation(ref cause) => cause,
            DeleteProjectError::Credentials(ref err) => err.description(),
            DeleteProjectError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            DeleteProjectError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by ListBuilds
#[derive(Debug, PartialEq)]
pub enum ListBuildsError {
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl ListBuildsError {
    pub fn from_body(body: &str) -> ListBuildsError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InvalidInputException" => {
                        ListBuildsError::InvalidInput(String::from(error_message))
                    }
                    "ValidationException" => ListBuildsError::Validation(error_message.to_string()),
                    _ => ListBuildsError::Unknown(String::from(body)),
                }
            }
            Err(_) => ListBuildsError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for ListBuildsError {
    fn from(err: serde_json::error::Error) -> ListBuildsError {
        ListBuildsError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for ListBuildsError {
    fn from(err: CredentialsError) -> ListBuildsError {
        ListBuildsError::Credentials(err)
    }
}
impl From<HttpDispatchError> for ListBuildsError {
    fn from(err: HttpDispatchError) -> ListBuildsError {
        ListBuildsError::HttpDispatch(err)
    }
}
impl From<io::Error> for ListBuildsError {
    fn from(err: io::Error) -> ListBuildsError {
        ListBuildsError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for ListBuildsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListBuildsError {
    fn description(&self) -> &str {
        match *self {
            ListBuildsError::InvalidInput(ref cause) => cause,
            ListBuildsError::Validation(ref cause) => cause,
            ListBuildsError::Credentials(ref err) => err.description(),
            ListBuildsError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            ListBuildsError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by ListBuildsForProject
#[derive(Debug, PartialEq)]
pub enum ListBuildsForProjectError {
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    ///<p>The specified AWS resource cannot be found.</p>
    ResourceNotFound(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl ListBuildsForProjectError {
    pub fn from_body(body: &str) -> ListBuildsForProjectError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InvalidInputException" => {
                        ListBuildsForProjectError::InvalidInput(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        ListBuildsForProjectError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        ListBuildsForProjectError::Validation(error_message.to_string())
                    }
                    _ => ListBuildsForProjectError::Unknown(String::from(body)),
                }
            }
            Err(_) => ListBuildsForProjectError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for ListBuildsForProjectError {
    fn from(err: serde_json::error::Error) -> ListBuildsForProjectError {
        ListBuildsForProjectError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for ListBuildsForProjectError {
    fn from(err: CredentialsError) -> ListBuildsForProjectError {
        ListBuildsForProjectError::Credentials(err)
    }
}
impl From<HttpDispatchError> for ListBuildsForProjectError {
    fn from(err: HttpDispatchError) -> ListBuildsForProjectError {
        ListBuildsForProjectError::HttpDispatch(err)
    }
}
impl From<io::Error> for ListBuildsForProjectError {
    fn from(err: io::Error) -> ListBuildsForProjectError {
        ListBuildsForProjectError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for ListBuildsForProjectError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListBuildsForProjectError {
    fn description(&self) -> &str {
        match *self {
            ListBuildsForProjectError::InvalidInput(ref cause) => cause,
            ListBuildsForProjectError::ResourceNotFound(ref cause) => cause,
            ListBuildsForProjectError::Validation(ref cause) => cause,
            ListBuildsForProjectError::Credentials(ref err) => err.description(),
            ListBuildsForProjectError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            ListBuildsForProjectError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by ListCuratedEnvironmentImages
#[derive(Debug, PartialEq)]
pub enum ListCuratedEnvironmentImagesError {
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl ListCuratedEnvironmentImagesError {
    pub fn from_body(body: &str) -> ListCuratedEnvironmentImagesError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "ValidationException" => {
                        ListCuratedEnvironmentImagesError::Validation(error_message.to_string())
                    }
                    _ => ListCuratedEnvironmentImagesError::Unknown(String::from(body)),
                }
            }
            Err(_) => ListCuratedEnvironmentImagesError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for ListCuratedEnvironmentImagesError {
    fn from(err: serde_json::error::Error) -> ListCuratedEnvironmentImagesError {
        ListCuratedEnvironmentImagesError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for ListCuratedEnvironmentImagesError {
    fn from(err: CredentialsError) -> ListCuratedEnvironmentImagesError {
        ListCuratedEnvironmentImagesError::Credentials(err)
    }
}
impl From<HttpDispatchError> for ListCuratedEnvironmentImagesError {
    fn from(err: HttpDispatchError) -> ListCuratedEnvironmentImagesError {
        ListCuratedEnvironmentImagesError::HttpDispatch(err)
    }
}
impl From<io::Error> for ListCuratedEnvironmentImagesError {
    fn from(err: io::Error) -> ListCuratedEnvironmentImagesError {
        ListCuratedEnvironmentImagesError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for ListCuratedEnvironmentImagesError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListCuratedEnvironmentImagesError {
    fn description(&self) -> &str {
        match *self {
            ListCuratedEnvironmentImagesError::Validation(ref cause) => cause,
            ListCuratedEnvironmentImagesError::Credentials(ref err) => err.description(),
            ListCuratedEnvironmentImagesError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            ListCuratedEnvironmentImagesError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by ListProjects
#[derive(Debug, PartialEq)]
pub enum ListProjectsError {
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl ListProjectsError {
    pub fn from_body(body: &str) -> ListProjectsError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InvalidInputException" => {
                        ListProjectsError::InvalidInput(String::from(error_message))
                    }
                    "ValidationException" => {
                        ListProjectsError::Validation(error_message.to_string())
                    }
                    _ => ListProjectsError::Unknown(String::from(body)),
                }
            }
            Err(_) => ListProjectsError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for ListProjectsError {
    fn from(err: serde_json::error::Error) -> ListProjectsError {
        ListProjectsError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for ListProjectsError {
    fn from(err: CredentialsError) -> ListProjectsError {
        ListProjectsError::Credentials(err)
    }
}
impl From<HttpDispatchError> for ListProjectsError {
    fn from(err: HttpDispatchError) -> ListProjectsError {
        ListProjectsError::HttpDispatch(err)
    }
}
impl From<io::Error> for ListProjectsError {
    fn from(err: io::Error) -> ListProjectsError {
        ListProjectsError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for ListProjectsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListProjectsError {
    fn description(&self) -> &str {
        match *self {
            ListProjectsError::InvalidInput(ref cause) => cause,
            ListProjectsError::Validation(ref cause) => cause,
            ListProjectsError::Credentials(ref err) => err.description(),
            ListProjectsError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            ListProjectsError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by StartBuild
#[derive(Debug, PartialEq)]
pub enum StartBuildError {
    ///<p>An AWS service limit was exceeded for the calling AWS account.</p>
    AccountLimitExceeded(String),
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    ///<p>The specified AWS resource cannot be found.</p>
    ResourceNotFound(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl StartBuildError {
    pub fn from_body(body: &str) -> StartBuildError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "AccountLimitExceededException" => {
                        StartBuildError::AccountLimitExceeded(String::from(error_message))
                    }
                    "InvalidInputException" => {
                        StartBuildError::InvalidInput(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        StartBuildError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => StartBuildError::Validation(error_message.to_string()),
                    _ => StartBuildError::Unknown(String::from(body)),
                }
            }
            Err(_) => StartBuildError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for StartBuildError {
    fn from(err: serde_json::error::Error) -> StartBuildError {
        StartBuildError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for StartBuildError {
    fn from(err: CredentialsError) -> StartBuildError {
        StartBuildError::Credentials(err)
    }
}
impl From<HttpDispatchError> for StartBuildError {
    fn from(err: HttpDispatchError) -> StartBuildError {
        StartBuildError::HttpDispatch(err)
    }
}
impl From<io::Error> for StartBuildError {
    fn from(err: io::Error) -> StartBuildError {
        StartBuildError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for StartBuildError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for StartBuildError {
    fn description(&self) -> &str {
        match *self {
            StartBuildError::AccountLimitExceeded(ref cause) => cause,
            StartBuildError::InvalidInput(ref cause) => cause,
            StartBuildError::ResourceNotFound(ref cause) => cause,
            StartBuildError::Validation(ref cause) => cause,
            StartBuildError::Credentials(ref err) => err.description(),
            StartBuildError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            StartBuildError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by StopBuild
#[derive(Debug, PartialEq)]
pub enum StopBuildError {
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    ///<p>The specified AWS resource cannot be found.</p>
    ResourceNotFound(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl StopBuildError {
    pub fn from_body(body: &str) -> StopBuildError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InvalidInputException" => {
                        StopBuildError::InvalidInput(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        StopBuildError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => StopBuildError::Validation(error_message.to_string()),
                    _ => StopBuildError::Unknown(String::from(body)),
                }
            }
            Err(_) => StopBuildError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for StopBuildError {
    fn from(err: serde_json::error::Error) -> StopBuildError {
        StopBuildError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for StopBuildError {
    fn from(err: CredentialsError) -> StopBuildError {
        StopBuildError::Credentials(err)
    }
}
impl From<HttpDispatchError> for StopBuildError {
    fn from(err: HttpDispatchError) -> StopBuildError {
        StopBuildError::HttpDispatch(err)
    }
}
impl From<io::Error> for StopBuildError {
    fn from(err: io::Error) -> StopBuildError {
        StopBuildError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for StopBuildError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for StopBuildError {
    fn description(&self) -> &str {
        match *self {
            StopBuildError::InvalidInput(ref cause) => cause,
            StopBuildError::ResourceNotFound(ref cause) => cause,
            StopBuildError::Validation(ref cause) => cause,
            StopBuildError::Credentials(ref err) => err.description(),
            StopBuildError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            StopBuildError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by UpdateProject
#[derive(Debug, PartialEq)]
pub enum UpdateProjectError {
    ///<p>The input value that was provided is not valid.</p>
    InvalidInput(String),
    ///<p>The specified AWS resource cannot be found.</p>
    ResourceNotFound(String),
    /// An error occurred dispatching the HTTP request
    HttpDispatch(HttpDispatchError),
    /// An error was encountered with AWS credentials.
    Credentials(CredentialsError),
    /// A validation error occurred.  Details from AWS are provided.
    Validation(String),
    /// An unknown error occurred.  The raw HTTP response is provided.
    Unknown(String),
}


impl UpdateProjectError {
    pub fn from_body(body: &str) -> UpdateProjectError {
        match from_str::<SerdeJsonValue>(body) {
            Ok(json) => {
                let raw_error_type = json.get("__type")
                    .and_then(|e| e.as_str())
                    .unwrap_or("Unknown");
                let error_message = json.get("message").and_then(|m| m.as_str()).unwrap_or(body);

                let pieces: Vec<&str> = raw_error_type.split("#").collect();
                let error_type = pieces.last().expect("Expected error type");

                match *error_type {
                    "InvalidInputException" => {
                        UpdateProjectError::InvalidInput(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        UpdateProjectError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        UpdateProjectError::Validation(error_message.to_string())
                    }
                    _ => UpdateProjectError::Unknown(String::from(body)),
                }
            }
            Err(_) => UpdateProjectError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for UpdateProjectError {
    fn from(err: serde_json::error::Error) -> UpdateProjectError {
        UpdateProjectError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for UpdateProjectError {
    fn from(err: CredentialsError) -> UpdateProjectError {
        UpdateProjectError::Credentials(err)
    }
}
impl From<HttpDispatchError> for UpdateProjectError {
    fn from(err: HttpDispatchError) -> UpdateProjectError {
        UpdateProjectError::HttpDispatch(err)
    }
}
impl From<io::Error> for UpdateProjectError {
    fn from(err: io::Error) -> UpdateProjectError {
        UpdateProjectError::HttpDispatch(HttpDispatchError::from(err))
    }
}
impl fmt::Display for UpdateProjectError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for UpdateProjectError {
    fn description(&self) -> &str {
        match *self {
            UpdateProjectError::InvalidInput(ref cause) => cause,
            UpdateProjectError::ResourceNotFound(ref cause) => cause,
            UpdateProjectError::Validation(ref cause) => cause,
            UpdateProjectError::Credentials(ref err) => err.description(),
            UpdateProjectError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            UpdateProjectError::Unknown(ref cause) => cause,
        }
    }
}
/// Trait representing the capabilities of the AWS CodeBuild API. AWS CodeBuild clients implement this trait.
pub trait CodeBuild {
    #[doc="<p>Gets information about builds.</p>"]
    fn batch_get_builds(&self,
                        input: &BatchGetBuildsInput)
                        -> Result<BatchGetBuildsOutput, BatchGetBuildsError>;


    #[doc="<p>Gets information about build projects.</p>"]
    fn batch_get_projects(&self,
                          input: &BatchGetProjectsInput)
                          -> Result<BatchGetProjectsOutput, BatchGetProjectsError>;


    #[doc="<p>Creates a build project.</p>"]
    fn create_project(&self,
                      input: &CreateProjectInput)
                      -> Result<CreateProjectOutput, CreateProjectError>;


    #[doc="<p>Deletes a build project.</p>"]
    fn delete_project(&self,
                      input: &DeleteProjectInput)
                      -> Result<DeleteProjectOutput, DeleteProjectError>;


    #[doc="<p>Gets a list of build IDs, with each build ID representing a single build.</p>"]
    fn list_builds(&self, input: &ListBuildsInput) -> Result<ListBuildsOutput, ListBuildsError>;


    #[doc="<p>Gets a list of build IDs for the specified build project, with each build ID representing a single build.</p>"]
    fn list_builds_for_project(&self,
                               input: &ListBuildsForProjectInput)
                               -> Result<ListBuildsForProjectOutput, ListBuildsForProjectError>;


    #[doc="<p>Gets information about Docker images that are managed by AWS CodeBuild.</p>"]
    fn list_curated_environment_images
        (&self)
         -> Result<ListCuratedEnvironmentImagesOutput, ListCuratedEnvironmentImagesError>;


    #[doc="<p>Gets a list of build project names, with each build project name representing a single build project.</p>"]
    fn list_projects(&self,
                     input: &ListProjectsInput)
                     -> Result<ListProjectsOutput, ListProjectsError>;


    #[doc="<p>Starts running a build.</p>"]
    fn start_build(&self, input: &StartBuildInput) -> Result<StartBuildOutput, StartBuildError>;


    #[doc="<p>Attempts to stop running a build.</p>"]
    fn stop_build(&self, input: &StopBuildInput) -> Result<StopBuildOutput, StopBuildError>;


    #[doc="<p>Changes the settings of a build project.</p>"]
    fn update_project(&self,
                      input: &UpdateProjectInput)
                      -> Result<UpdateProjectOutput, UpdateProjectError>;
}
/// A client for the AWS CodeBuild API.
pub struct CodeBuildClient<P, D>
    where P: ProvideAwsCredentials,
          D: DispatchSignedRequest
{
    credentials_provider: P,
    region: region::Region,
    dispatcher: D,
}

impl<P, D> CodeBuildClient<P, D>
    where P: ProvideAwsCredentials,
          D: DispatchSignedRequest
{
    pub fn new(request_dispatcher: D, credentials_provider: P, region: region::Region) -> Self {
        CodeBuildClient {
            credentials_provider: credentials_provider,
            region: region,
            dispatcher: request_dispatcher,
        }
    }
}

impl<P, D> CodeBuild for CodeBuildClient<P, D>
    where P: ProvideAwsCredentials,
          D: DispatchSignedRequest
{
    #[doc="<p>Gets information about builds.</p>"]
    fn batch_get_builds(&self,
                        input: &BatchGetBuildsInput)
                        -> Result<BatchGetBuildsOutput, BatchGetBuildsError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.BatchGetBuilds");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<BatchGetBuildsOutput>(String::from_utf8_lossy(&body)
                                                                    .as_ref())
                           .unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(BatchGetBuildsError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }


    #[doc="<p>Gets information about build projects.</p>"]
    fn batch_get_projects(&self,
                          input: &BatchGetProjectsInput)
                          -> Result<BatchGetProjectsOutput, BatchGetProjectsError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.BatchGetProjects");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<BatchGetProjectsOutput>(String::from_utf8_lossy(&body)
                                                                      .as_ref())
                           .unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(BatchGetProjectsError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }


    #[doc="<p>Creates a build project.</p>"]
    fn create_project(&self,
                      input: &CreateProjectInput)
                      -> Result<CreateProjectOutput, CreateProjectError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.CreateProject");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<CreateProjectOutput>(String::from_utf8_lossy(&body)
                                                                   .as_ref())
                           .unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(CreateProjectError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }


    #[doc="<p>Deletes a build project.</p>"]
    fn delete_project(&self,
                      input: &DeleteProjectInput)
                      -> Result<DeleteProjectOutput, DeleteProjectError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.DeleteProject");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<DeleteProjectOutput>(String::from_utf8_lossy(&body)
                                                                   .as_ref())
                           .unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(DeleteProjectError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }


    #[doc="<p>Gets a list of build IDs, with each build ID representing a single build.</p>"]
    fn list_builds(&self, input: &ListBuildsInput) -> Result<ListBuildsOutput, ListBuildsError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.ListBuilds");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<ListBuildsOutput>(String::from_utf8_lossy(&body)
                                                                .as_ref())
                           .unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(ListBuildsError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }


    #[doc="<p>Gets a list of build IDs for the specified build project, with each build ID representing a single build.</p>"]
    fn list_builds_for_project(&self,
                               input: &ListBuildsForProjectInput)
                               -> Result<ListBuildsForProjectOutput, ListBuildsForProjectError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.ListBuildsForProject");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<ListBuildsForProjectOutput>(String::from_utf8_lossy(&body).as_ref()).unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(ListBuildsForProjectError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }


    #[doc="<p>Gets information about Docker images that are managed by AWS CodeBuild.</p>"]
    fn list_curated_environment_images
        (&self)
         -> Result<ListCuratedEnvironmentImagesOutput, ListCuratedEnvironmentImagesError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target",
                           "CodeBuild_20161006.ListCuratedEnvironmentImages");
        request.set_payload(Some(b"{}".to_vec()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<ListCuratedEnvironmentImagesOutput>(String::from_utf8_lossy(&body).as_ref()).unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(ListCuratedEnvironmentImagesError::from_body(String::from_utf8_lossy(&body)
                                                                     .as_ref()))
            }
        }
    }


    #[doc="<p>Gets a list of build project names, with each build project name representing a single build project.</p>"]
    fn list_projects(&self,
                     input: &ListProjectsInput)
                     -> Result<ListProjectsOutput, ListProjectsError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.ListProjects");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<ListProjectsOutput>(String::from_utf8_lossy(&body)
                                                                  .as_ref())
                           .unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(ListProjectsError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }


    #[doc="<p>Starts running a build.</p>"]
    fn start_build(&self, input: &StartBuildInput) -> Result<StartBuildOutput, StartBuildError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.StartBuild");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<StartBuildOutput>(String::from_utf8_lossy(&body)
                                                                .as_ref())
                           .unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(StartBuildError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }


    #[doc="<p>Attempts to stop running a build.</p>"]
    fn stop_build(&self, input: &StopBuildInput) -> Result<StopBuildOutput, StopBuildError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.StopBuild");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<StopBuildOutput>(String::from_utf8_lossy(&body).as_ref())
                       .unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(StopBuildError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }


    #[doc="<p>Changes the settings of a build project.</p>"]
    fn update_project(&self,
                      input: &UpdateProjectInput)
                      -> Result<UpdateProjectOutput, UpdateProjectError> {
        let mut request = SignedRequest::new("POST", "codebuild", &self.region, "/");

        request.set_content_type("application/x-amz-json-1.1".to_owned());
        request.add_header("x-amz-target", "CodeBuild_20161006.UpdateProject");
        let encoded = serde_json::to_string(input).unwrap();
        request.set_payload(Some(encoded.into_bytes()));

        request.sign(&try!(self.credentials_provider.credentials()));

        let mut response = try!(self.dispatcher.dispatch(&request));

        match response.status {
            StatusCode::Ok => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Ok(serde_json::from_str::<UpdateProjectOutput>(String::from_utf8_lossy(&body)
                                                                   .as_ref())
                           .unwrap())
            }
            _ => {
                let mut body: Vec<u8> = Vec::new();
                try!(response.body.read_to_end(&mut body));
                Err(UpdateProjectError::from_body(String::from_utf8_lossy(&body).as_ref()))
            }
        }
    }
}

#[cfg(test)]
mod protocol_tests {}