1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
#[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 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 AddApplicationCloudWatchLoggingOptionRequest {
    #[doc="<p>The Amazon Kinesis Analytics application name.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Provide the CloudWatch log stream ARN and the IAM role ARN. Note: To write application messages to CloudWatch, the IAM role used must have the <code>PutLogEvents</code> policy action enabled. </p>"]
    #[serde(rename="CloudWatchLoggingOption")]
    pub cloud_watch_logging_option: CloudWatchLoggingOption,
    #[doc="<p>The version ID of the Amazon Kinesis Analytics application.</p>"]
    #[serde(rename="CurrentApplicationVersionId")]
    pub current_application_version_id: ApplicationVersionId,
}

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

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct AddApplicationInputRequest {
    #[doc="<p>Name of your existing Amazon Kinesis Analytics application to which you want to add the streaming source.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Current version of your Amazon Kinesis Analytics application. You can use the <a>DescribeApplication</a> operation to find the current application version.</p>"]
    #[serde(rename="CurrentApplicationVersionId")]
    pub current_application_version_id: ApplicationVersionId,
    #[doc="<p/>"]
    #[serde(rename="Input")]
    pub input: Input,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct AddApplicationInputResponse;

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct AddApplicationOutputRequest {
    #[doc="<p>Name of the application to which you want to add the output configuration.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Version of the application to which you want add the output configuration. You can use the <a>DescribeApplication</a> operation to get the current application version. If the version specified is not the current version, the <code>ConcurrentModificationException</code> is returned. </p>"]
    #[serde(rename="CurrentApplicationVersionId")]
    pub current_application_version_id: ApplicationVersionId,
    #[doc="<p>An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream), and record the formation to use when writing to the destination.</p>"]
    #[serde(rename="Output")]
    pub output: Output,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct AddApplicationOutputResponse;

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct AddApplicationReferenceDataSourceRequest {
    #[doc="<p>Name of an existing application.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Version of the application for which you are adding the reference data source. You can use the <a>DescribeApplication</a> operation to get the current application version. If the version specified is not the current version, the <code>ConcurrentModificationException</code> is returned.</p>"]
    #[serde(rename="CurrentApplicationVersionId")]
    pub current_application_version_id: ApplicationVersionId,
    #[doc="<p>The reference data source can be an object in your Amazon S3 bucket. Amazon Kinesis Analytics reads the object and copies the data into the in-application table that is created. You provide an S3 bucket, object key name, and the resulting in-application table that is created. You must also provide an IAM role with the necessary permissions that Amazon Kinesis Analytics can assume to read the object from your S3 bucket on your behalf.</p>"]
    #[serde(rename="ReferenceDataSource")]
    pub reference_data_source: ReferenceDataSource,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct AddApplicationReferenceDataSourceResponse;

pub type ApplicationCode = String;
pub type ApplicationDescription = String;
#[doc="<p>Provides a description of the application, including the application Amazon Resource Name (ARN), status, latest version, and input and output configuration.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct ApplicationDetail {
    #[doc="<p>ARN of the application.</p>"]
    #[serde(rename="ApplicationARN")]
    pub application_arn: ResourceARN,
    #[doc="<p>Returns the application code that you provided to perform data analysis on any of the in-application streams in your application.</p>"]
    #[serde(rename="ApplicationCode")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub application_code: Option<ApplicationCode>,
    #[doc="<p>Description of the application.</p>"]
    #[serde(rename="ApplicationDescription")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub application_description: Option<ApplicationDescription>,
    #[doc="<p>Name of the application.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Status of the application.</p>"]
    #[serde(rename="ApplicationStatus")]
    pub application_status: ApplicationStatus,
    #[doc="<p>Provides the current application version.</p>"]
    #[serde(rename="ApplicationVersionId")]
    pub application_version_id: ApplicationVersionId,
    #[doc="<p>Describes the CloudWatch log streams configured to receive application messages. For more information about using CloudWatch log streams with Amazon Kinesis Analytics applications, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html\">Monitoring Configuration Errors</a>. </p>"]
    #[serde(rename="CloudWatchLoggingOptionDescriptions")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub cloud_watch_logging_option_descriptions: Option<CloudWatchLoggingOptionDescriptions>,
    #[doc="<p>Timestamp when the application version was created.</p>"]
    #[serde(rename="CreateTimestamp")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub create_timestamp: Option<Timestamp>,
    #[doc="<p>Describes the application input configuration. For more information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. </p>"]
    #[serde(rename="InputDescriptions")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_descriptions: Option<InputDescriptions>,
    #[doc="<p>Timestamp when the application was last updated.</p>"]
    #[serde(rename="LastUpdateTimestamp")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub last_update_timestamp: Option<Timestamp>,
    #[doc="<p>Describes the application output configuration. For more information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html\">Configuring Application Output</a>. </p>"]
    #[serde(rename="OutputDescriptions")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub output_descriptions: Option<OutputDescriptions>,
    #[doc="<p>Describes reference data sources configured for the application. For more information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. </p>"]
    #[serde(rename="ReferenceDataSourceDescriptions")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub reference_data_source_descriptions: Option<ReferenceDataSourceDescriptions>,
}

pub type ApplicationName = String;
pub type ApplicationStatus = String;
pub type ApplicationSummaries = Vec<ApplicationSummary>;
#[doc="<p>Provides application summary information, including the application Amazon Resource Name (ARN), name, and status.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct ApplicationSummary {
    #[doc="<p>ARN of the application.</p>"]
    #[serde(rename="ApplicationARN")]
    pub application_arn: ResourceARN,
    #[doc="<p>Name of the application.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Status of the application.</p>"]
    #[serde(rename="ApplicationStatus")]
    pub application_status: ApplicationStatus,
}

#[doc="<p>Describes updates to apply to an existing Amazon Kinesis Analytics application.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct ApplicationUpdate {
    #[doc="<p>Describes application code updates.</p>"]
    #[serde(rename="ApplicationCodeUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub application_code_update: Option<ApplicationCode>,
    #[doc="<p>Describes application CloudWatch logging option updates.</p>"]
    #[serde(rename="CloudWatchLoggingOptionUpdates")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub cloud_watch_logging_option_updates: Option<CloudWatchLoggingOptionUpdates>,
    #[doc="<p>Describes application input configuration updates.</p>"]
    #[serde(rename="InputUpdates")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_updates: Option<InputUpdates>,
    #[doc="<p>Describes application output configuration updates.</p>"]
    #[serde(rename="OutputUpdates")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub output_updates: Option<OutputUpdates>,
    #[doc="<p>Describes application reference data source updates.</p>"]
    #[serde(rename="ReferenceDataSourceUpdates")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub reference_data_source_updates: Option<ReferenceDataSourceUpdates>,
}

pub type ApplicationVersionId = i64;
pub type BooleanObject = bool;
pub type BucketARN = String;
#[doc="<p>Provides additional mapping information when the record format uses delimiters, such as CSV. For example, the following sample records use CSV format, where the records use the <i>'\\n'</i> as the row delimiter and a comma (\",\") as the column delimiter: </p> <p> <code>\"name1\", \"address1\" </code> </p> <p> <code>\"name2, \"address2\"</code> </p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct CSVMappingParameters {
    #[doc="<p>Column delimiter. For example, in a CSV format, a comma (\",\") is the typical column delimiter.</p>"]
    #[serde(rename="RecordColumnDelimiter")]
    pub record_column_delimiter: RecordColumnDelimiter,
    #[doc="<p>Row delimiter. For example, in a CSV format, <i>'\\n'</i> is the typical row delimiter.</p>"]
    #[serde(rename="RecordRowDelimiter")]
    pub record_row_delimiter: RecordRowDelimiter,
}

#[doc="<p>Provides a description of CloudWatch logging options, including the log stream ARN and the role ARN.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct CloudWatchLoggingOption {
    #[doc="<p>ARN of the CloudWatch log to receive application messages.</p>"]
    #[serde(rename="LogStreamARN")]
    pub log_stream_arn: LogStreamARN,
    #[doc="<p>IAM ARN of the role to use to send application messages. Note: To write application messages to CloudWatch, the IAM role used must have the <code>PutLogEvents</code> policy action enabled.</p>"]
    #[serde(rename="RoleARN")]
    pub role_arn: RoleARN,
}

#[doc="<p>Description of the CloudWatch logging option.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct CloudWatchLoggingOptionDescription {
    #[doc="<p>ID of the CloudWatch logging option description.</p>"]
    #[serde(rename="CloudWatchLoggingOptionId")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub cloud_watch_logging_option_id: Option<Id>,
    #[doc="<p>ARN of the CloudWatch log to receive application messages.</p>"]
    #[serde(rename="LogStreamARN")]
    pub log_stream_arn: LogStreamARN,
    #[doc="<p>IAM ARN of the role to use to send application messages. Note: To write application messages to CloudWatch, the IAM role used must have the <code>PutLogEvents</code> policy action enabled.</p>"]
    #[serde(rename="RoleARN")]
    pub role_arn: RoleARN,
}

pub type CloudWatchLoggingOptionDescriptions = Vec<CloudWatchLoggingOptionDescription>;
#[doc="<p>Describes CloudWatch logging option updates.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct CloudWatchLoggingOptionUpdate {
    #[doc="<p>ID of the CloudWatch logging option to update</p>"]
    #[serde(rename="CloudWatchLoggingOptionId")]
    pub cloud_watch_logging_option_id: Id,
    #[doc="<p>ARN of the CloudWatch log to receive application messages.</p>"]
    #[serde(rename="LogStreamARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub log_stream_arn_update: Option<LogStreamARN>,
    #[doc="<p>IAM ARN of the role to use to send application messages. Note: To write application messages to CloudWatch, the IAM role used must have the <code>PutLogEvents</code> policy action enabled.</p>"]
    #[serde(rename="RoleARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub role_arn_update: Option<RoleARN>,
}

pub type CloudWatchLoggingOptionUpdates = Vec<CloudWatchLoggingOptionUpdate>;
pub type CloudWatchLoggingOptions = Vec<CloudWatchLoggingOption>;
#[doc="<p>TBD</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct CreateApplicationRequest {
    #[doc="<p>One or more SQL statements that read input data, transform it, and generate output. For example, you can write a SQL statement that reads data from one in-application stream, generates a running average of the number of advertisement clicks by vendor, and insert resulting rows in another in-application stream using pumps. For more inforamtion about the typical pattern, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-app-code.html\">Application Code</a>. </p> <p>You can provide such series of SQL statements, where output of one statement can be used as the input for the next statement. You store intermediate results by creating in-application streams and pumps.</p> <p>Note that the application code must create the streams with names specified in the <code>Outputs</code>. For example, if your <code>Outputs</code> defines output streams named <code>ExampleOutputStream1</code> and <code>ExampleOutputStream2</code>, then your application code must create these streams. </p>"]
    #[serde(rename="ApplicationCode")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub application_code: Option<ApplicationCode>,
    #[doc="<p>Summary description of the application.</p>"]
    #[serde(rename="ApplicationDescription")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub application_description: Option<ApplicationDescription>,
    #[doc="<p>Name of your Amazon Kinesis Analytics application (for example, <code>sample-app</code>).</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Use this parameter to configure a CloudWatch log stream to monitor application configuration errors. For more information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html\">Monitoring Configuration Errors</a>.</p>"]
    #[serde(rename="CloudWatchLoggingOptions")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>,
    #[doc="<p>Use this parameter to configure the application input.</p> <p>You can configure your application to receive input from a single streaming source. In this configuration, you map this streaming source to an in-application stream that is created. Your application code can then query the in-application stream like a table (you can think of it as a constantly updating table).</p> <p>For the streaming source, you provide its Amazon Resource Name (ARN) and format of data on the stream (for example, JSON, CSV, etc). You also must provide an IAM role that Amazon Kinesis Analytics can assume to read this stream on your behalf.</p> <p>To create the in-application stream, you need to specify a schema to transform your data into a schematized version used in SQL. In the schema, you provide the necessary mapping of the data elements in the streaming source to record columns in the in-app stream.</p>"]
    #[serde(rename="Inputs")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub inputs: Option<Inputs>,
    #[doc="<p>You can configure application output to write data from any of the in-application streams to up to five destinations.</p> <p>These destinations can be Amazon Kinesis streams, Amazon Kinesis Firehose delivery streams, or both.</p> <p>In the configuration, you specify the in-application stream name, the destination stream Amazon Resource Name (ARN), and the format to use when writing data. You must also provide an IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf.</p> <p>In the output configuration, you also provide the output stream Amazon Resource Name (ARN) and the format of data in the stream (for example, JSON, CSV). You also must provide an IAM role that Amazon Kinesis Analytics can assume to write to this stream on your behalf.</p>"]
    #[serde(rename="Outputs")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub outputs: Option<Outputs>,
}

#[doc="<p>TBD</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct CreateApplicationResponse {
    #[doc="<p>In response to your <code>CreateApplication</code> request, Amazon Kinesis Analytics returns a response with a summary of the application it created, including the application Amazon Resource Name (ARN), name, and status.</p>"]
    #[serde(rename="ApplicationSummary")]
    pub application_summary: ApplicationSummary,
}

#[derive(Default,Debug,Clone,Serialize)]
pub struct DeleteApplicationCloudWatchLoggingOptionRequest {
    #[doc="<p>The Amazon Kinesis Analytics application name.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>The <code>CloudWatchLoggingOptionId</code> of the CloudWatch logging option to delete. You can use the <a>DescribeApplication</a> operation to get the <code>CloudWatchLoggingOptionId</code>. </p>"]
    #[serde(rename="CloudWatchLoggingOptionId")]
    pub cloud_watch_logging_option_id: Id,
    #[doc="<p>The version ID of the Amazon Kinesis Analytics application.</p>"]
    #[serde(rename="CurrentApplicationVersionId")]
    pub current_application_version_id: ApplicationVersionId,
}

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

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct DeleteApplicationOutputRequest {
    #[doc="<p>Amazon Kinesis Analytics application name.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Amazon Kinesis Analytics application version. You can use the <a>DescribeApplication</a> operation to get the current application version. If the version specified is not the current version, the <code>ConcurrentModificationException</code> is returned. </p>"]
    #[serde(rename="CurrentApplicationVersionId")]
    pub current_application_version_id: ApplicationVersionId,
    #[doc="<p>The ID of the configuration to delete. Each output configuration that is added to the application, either when the application is created or later using the <a>AddApplicationOutput</a> operation, has a unique ID. You need to provide the ID to uniquely identify the output configuration that you want to delete from the application configuration. You can use the <a>DescribeApplication</a> operation to get the specific <code>OutputId</code>. </p>"]
    #[serde(rename="OutputId")]
    pub output_id: Id,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct DeleteApplicationOutputResponse;

#[derive(Default,Debug,Clone,Serialize)]
pub struct DeleteApplicationReferenceDataSourceRequest {
    #[doc="<p>Name of an existing application.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Version of the application. You can use the <a>DescribeApplication</a> operation to get the current application version. If the version specified is not the current version, the <code>ConcurrentModificationException</code> is returned.</p>"]
    #[serde(rename="CurrentApplicationVersionId")]
    pub current_application_version_id: ApplicationVersionId,
    #[doc="<p>ID of the reference data source. When you add a reference data source to your application using the <a>AddApplicationReferenceDataSource</a>, Amazon Kinesis Analytics assigns an ID. You can use the <a>DescribeApplication</a> operation to get the reference ID. </p>"]
    #[serde(rename="ReferenceId")]
    pub reference_id: Id,
}

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

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct DeleteApplicationRequest {
    #[doc="<p>Name of the Amazon Kinesis Analytics application to delete.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p> You can use the <code>DescribeApplication</code> operation to get this value. </p>"]
    #[serde(rename="CreateTimestamp")]
    pub create_timestamp: Timestamp,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct DeleteApplicationResponse;

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct DescribeApplicationRequest {
    #[doc="<p>Name of the application.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct DescribeApplicationResponse {
    #[doc="<p>Provides a description of the application, such as the application Amazon Resource Name (ARN), status, latest version, and input and output configuration details.</p>"]
    #[serde(rename="ApplicationDetail")]
    pub application_detail: ApplicationDetail,
}

#[doc="<p>Describes the data format when records are written to the destination. For more information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html\">Configuring Application Output</a>. </p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct DestinationSchema {
    #[doc="<p>Specifies the format of the records on the output stream.</p>"]
    #[serde(rename="RecordFormatType")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub record_format_type: Option<RecordFormatType>,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct DiscoverInputSchemaRequest {
    #[doc="<p>Point at which you want Amazon Kinesis Analytics to start reading records from the specified streaming source discovery purposes.</p>"]
    #[serde(rename="InputStartingPositionConfiguration")]
    pub input_starting_position_configuration: InputStartingPositionConfiguration,
    #[doc="<p>Amazon Resource Name (ARN) of the streaming source.</p>"]
    #[serde(rename="ResourceARN")]
    pub resource_arn: ResourceARN,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf.</p>"]
    #[serde(rename="RoleARN")]
    pub role_arn: RoleARN,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct DiscoverInputSchemaResponse {
    #[doc="<p>Schema inferred from the streaming source. It identifies the format of the data in the streaming source and how each data element maps to corresponding columns in the in-application stream that you can create.</p>"]
    #[serde(rename="InputSchema")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_schema: Option<SourceSchema>,
    #[doc="<p>An array of elements, where each element corresponds to a row in a stream record (a stream record can have more than one row).</p>"]
    #[serde(rename="ParsedInputRecords")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub parsed_input_records: Option<ParsedInputRecords>,
    #[doc="<p>Raw stream data that was sampled to infer the schema.</p>"]
    #[serde(rename="RawInputRecords")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub raw_input_records: Option<RawInputRecords>,
}

pub type ErrorMessage = String;
pub type FileKey = String;
pub type Id = String;
pub type InAppStreamName = String;
pub type InAppStreamNames = Vec<InAppStreamName>;
pub type InAppTableName = String;
#[doc="<p>When you configure the application input, you specify the streaming source, the in-application stream name that is created, and the mapping between the two. For more information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. </p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct Input {
    #[doc="<p>Describes the number of in-application streams to create. </p> <p>Data from your source will be routed to these in-application input streams.</p> <p> (see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>.</p>"]
    #[serde(rename="InputParallelism")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_parallelism: Option<InputParallelism>,
    #[doc="<p>Describes the format of the data in the streaming source, and how each data element maps to corresponding columns in the in-application stream that is being created.</p> <p>Also used to describe the format of the reference data source.</p>"]
    #[serde(rename="InputSchema")]
    pub input_schema: SourceSchema,
    #[doc="<p>If the streaming source is an Amazon Kinesis Firehose delivery stream, identifies the Firehose delivery stream's ARN and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.</p>"]
    #[serde(rename="KinesisFirehoseInput")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_firehose_input: Option<KinesisFirehoseInput>,
    #[doc="<p>If the streaming source is an Amazon Kinesis stream, identifies the stream's Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.</p>"]
    #[serde(rename="KinesisStreamsInput")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_streams_input: Option<KinesisStreamsInput>,
    #[doc="<p>Name prefix to use when creating in-application stream. Suppose you specify a prefix \"MyInApplicationStream\". Amazon Kinesis Analytics will then create one or more (as per the <code>InputParallelism</code> count you specified) in-application streams with names \"MyInApplicationStream_001\", \"MyInApplicationStream_002\" and so on. </p>"]
    #[serde(rename="NamePrefix")]
    pub name_prefix: InAppStreamName,
}

#[doc="<p>When you start your application, you provide this configuration, which identifies the input source and the point in the input source at which you want the application to start processing records.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct InputConfiguration {
    #[doc="<p>Input source ID. You can get this ID by calling the <a>DescribeApplication</a> operation.</p>"]
    #[serde(rename="Id")]
    pub id: Id,
    #[doc="<p>Point at which you want the application to start processing records from the streaming source.</p>"]
    #[serde(rename="InputStartingPositionConfiguration")]
    pub input_starting_position_configuration: InputStartingPositionConfiguration,
}

pub type InputConfigurations = Vec<InputConfiguration>;
#[doc="<p>Describes the application input configuration. For more information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. </p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct InputDescription {
    #[doc="<p>Returns the in-application stream names that are mapped to the stream source.</p>"]
    #[serde(rename="InAppStreamNames")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub in_app_stream_names: Option<InAppStreamNames>,
    #[doc="<p>Input ID associated with the application input. This is the ID that Amazon Kinesis Analytics assigns to each input configuration you add to your application. </p>"]
    #[serde(rename="InputId")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_id: Option<Id>,
    #[doc="<p>Describes the configured parallelism (number of in-application streams mapped to the streaming source).</p>"]
    #[serde(rename="InputParallelism")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_parallelism: Option<InputParallelism>,
    #[serde(rename="InputSchema")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_schema: Option<SourceSchema>,
    #[doc="<p>Point at which the application is configured to read from the input stream.</p>"]
    #[serde(rename="InputStartingPositionConfiguration")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_starting_position_configuration: Option<InputStartingPositionConfiguration>,
    #[doc="<p>If an Amazon Kinesis Firehose delivery stream is configured as a streaming source, provides the Firehose delivery stream's Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.</p>"]
    #[serde(rename="KinesisFirehoseInputDescription")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_firehose_input_description: Option<KinesisFirehoseInputDescription>,
    #[doc="<p>If an Amazon Kinesis stream is configured as streaming source, provides Amazon Kinesis stream's ARN and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.</p>"]
    #[serde(rename="KinesisStreamsInputDescription")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_streams_input_description: Option<KinesisStreamsInputDescription>,
    #[doc="<p>In-application name prefix.</p>"]
    #[serde(rename="NamePrefix")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub name_prefix: Option<InAppStreamName>,
}

pub type InputDescriptions = Vec<InputDescription>;
#[doc="<p>Describes the number of in-application streams to create for a given streaming source. For information about parallelism, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. </p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct InputParallelism {
    #[doc="<p>Number of in-application streams to create. For more information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html\">Limits</a>. </p>"]
    #[serde(rename="Count")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub count: Option<InputParallelismCount>,
}

pub type InputParallelismCount = i64;
#[doc="<p>Provides updates to the parallelism count.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct InputParallelismUpdate {
    #[doc="<p>Number of in-application streams to create for the specified streaming source.</p>"]
    #[serde(rename="CountUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub count_update: Option<InputParallelismCount>,
}

#[doc="<p> Describes updates for the application's input schema. </p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct InputSchemaUpdate {
    #[doc="<p>A list of <code>RecordColumn</code> objects. Each object describes the mapping of the streaming source element to the corresponding column in the in-application stream. </p>"]
    #[serde(rename="RecordColumnUpdates")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub record_column_updates: Option<RecordColumns>,
    #[doc="<p>Specifies the encoding of the records in the streaming source. For example, UTF-8.</p>"]
    #[serde(rename="RecordEncodingUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub record_encoding_update: Option<RecordEncoding>,
    #[doc="<p>Specifies the format of the records on the streaming source.</p>"]
    #[serde(rename="RecordFormatUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub record_format_update: Option<RecordFormat>,
}

pub type InputStartingPosition = String;
#[doc="<p>Describes the point at which the application reads from the streaming source.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct InputStartingPositionConfiguration {
    #[doc="<p>The starting position on the stream.</p> <ul> <li> <p> <code>NOW</code> - Start reading just after the most recent record in the stream, start at the request timestamp that the customer issued.</p> </li> <li> <p> <code>TRIM_HORIZON</code> - Start reading at the last untrimmed record in the stream, which is the oldest record available in the stream. This option is not available for an Amazon Kinesis Firehose delivery stream.</p> </li> <li> <p> <code>LAST_STOPPED_POINT</code> - Resume reading from where the application last stopped reading.</p> </li> </ul>"]
    #[serde(rename="InputStartingPosition")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_starting_position: Option<InputStartingPosition>,
}

#[doc="<p>Describes updates to a specific input configuration (identified by the <code>InputId</code> of an application). </p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct InputUpdate {
    #[doc="<p>Input ID of the application input to be updated.</p>"]
    #[serde(rename="InputId")]
    pub input_id: Id,
    #[doc="<p>Describes the parallelism updates (the number in-application streams Amazon Kinesis Analytics creates for the specific streaming source).</p>"]
    #[serde(rename="InputParallelismUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_parallelism_update: Option<InputParallelismUpdate>,
    #[doc="<p>Describes the data format on the streaming source, and how record elements on the streaming source map to columns of the in-application stream that is created.</p>"]
    #[serde(rename="InputSchemaUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub input_schema_update: Option<InputSchemaUpdate>,
    #[doc="<p>If an Amazon Kinesis Firehose delivery stream is the streaming source to be updated, provides an updated stream Amazon Resource Name (ARN) and IAM role ARN.</p>"]
    #[serde(rename="KinesisFirehoseInputUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_firehose_input_update: Option<KinesisFirehoseInputUpdate>,
    #[doc="<p>If a Amazon Kinesis stream is the streaming source to be updated, provides an updated stream ARN and IAM role ARN.</p>"]
    #[serde(rename="KinesisStreamsInputUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_streams_input_update: Option<KinesisStreamsInputUpdate>,
    #[doc="<p>Name prefix for in-application streams that Amazon Kinesis Analytics creates for the specific streaming source.</p>"]
    #[serde(rename="NamePrefixUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub name_prefix_update: Option<InAppStreamName>,
}

pub type InputUpdates = Vec<InputUpdate>;
pub type Inputs = Vec<Input>;
#[doc="<p>Provides additional mapping information when JSON is the record format on the streaming source.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct JSONMappingParameters {
    #[doc="<p>Path to the top-level parent that contains the records.</p> <p>For example, consider the following JSON record:</p> <p>In the <code>RecordRowPath</code>, <code>\"$\"</code> refers to the root and path <code>\"$.vehicle.Model\"</code> refers to the specific <code>\"Model\"</code> key in the JSON.</p>"]
    #[serde(rename="RecordRowPath")]
    pub record_row_path: RecordRowPath,
}

#[doc="<p> Identifies an Amazon Kinesis Firehose delivery stream as the streaming source. You provide the Firehose delivery stream's Amazon Resource Name (ARN) and an IAM role ARN that enables Amazon Kinesis Analytics to access the stream on your behalf.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct KinesisFirehoseInput {
    #[doc="<p>ARN of the input Firehose delivery stream.</p>"]
    #[serde(rename="ResourceARN")]
    pub resource_arn: ResourceARN,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to make sure the role has necessary permissions to access the stream.</p>"]
    #[serde(rename="RoleARN")]
    pub role_arn: RoleARN,
}

#[doc="<p> Describes the Amazon Kinesis Firehose delivery stream that is configured as the streaming source in the application input configuration. </p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct KinesisFirehoseInputDescription {
    #[doc="<p>Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery stream.</p>"]
    #[serde(rename="ResourceARN")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub resource_arn: Option<ResourceARN>,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics assumes to access the stream.</p>"]
    #[serde(rename="RoleARN")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub role_arn: Option<RoleARN>,
}

#[doc="<p>When updating application input configuration, provides information about an Amazon Kinesis Firehose delivery stream as the streaming source.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct KinesisFirehoseInputUpdate {
    #[doc="<p>ARN of the input Amazon Kinesis Firehose delivery stream to read.</p>"]
    #[serde(rename="ResourceARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub resource_arn_update: Option<ResourceARN>,
    #[doc="<p>Amazon Resource Name (ARN) of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant necessary permissions to this role.</p>"]
    #[serde(rename="RoleARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub role_arn_update: Option<RoleARN>,
}

#[doc="<p>When configuring application output, identifies an Amazon Kinesis Firehose delivery stream as the destination. You provide the stream Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis Analytics to write to the stream on your behalf.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct KinesisFirehoseOutput {
    #[doc="<p>ARN of the destination Amazon Kinesis Firehose delivery stream to write to.</p>"]
    #[serde(rename="ResourceARN")]
    pub resource_arn: ResourceARN,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf. You need to grant the necessary permissions to this role.</p>"]
    #[serde(rename="RoleARN")]
    pub role_arn: RoleARN,
}

#[doc="<p> For an application output, describes the Amazon Kinesis Firehose delivery stream configured as its destination. </p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct KinesisFirehoseOutputDescription {
    #[doc="<p>Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery stream.</p>"]
    #[serde(rename="ResourceARN")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub resource_arn: Option<ResourceARN>,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream.</p>"]
    #[serde(rename="RoleARN")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub role_arn: Option<RoleARN>,
}

#[doc="<p> When updating an output configuration using the <a>UpdateApplication</a> operation, provides information about an Amazon Kinesis Firehose delivery stream configured as the destination. </p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct KinesisFirehoseOutputUpdate {
    #[doc="<p>Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery stream to write to.</p>"]
    #[serde(rename="ResourceARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub resource_arn_update: Option<ResourceARN>,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant necessary permissions to this role.</p>"]
    #[serde(rename="RoleARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub role_arn_update: Option<RoleARN>,
}

#[doc="<p> Identifies an Amazon Kinesis stream as the streaming source. You provide the stream's ARN and an IAM role ARN that enables Amazon Kinesis Analytics to access the stream on your behalf.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct KinesisStreamsInput {
    #[doc="<p>ARN of the input Amazon Kinesis stream to read.</p>"]
    #[serde(rename="ResourceARN")]
    pub resource_arn: ResourceARN,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant the necessary permissions to this role.</p>"]
    #[serde(rename="RoleARN")]
    pub role_arn: RoleARN,
}

#[doc="<p> Describes the Amazon Kinesis stream that is configured as the streaming source in the application input configuration. </p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct KinesisStreamsInputDescription {
    #[doc="<p>Amazon Resource Name (ARN) of the Amazon Kinesis stream.</p>"]
    #[serde(rename="ResourceARN")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub resource_arn: Option<ResourceARN>,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream.</p>"]
    #[serde(rename="RoleARN")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub role_arn: Option<RoleARN>,
}

#[doc="<p>When updating application input configuration, provides information about an Amazon Kinesis stream as the streaming source.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct KinesisStreamsInputUpdate {
    #[doc="<p>Amazon Resource Name (ARN) of the input Amazon Kinesis stream to read.</p>"]
    #[serde(rename="ResourceARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub resource_arn_update: Option<ResourceARN>,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant the necessary permissions to this role.</p>"]
    #[serde(rename="RoleARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub role_arn_update: Option<RoleARN>,
}

#[doc="<p>When configuring application output, identifies a Amazon Kinesis stream as the destination. You provide the stream Amazon Resource Name (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use to write to the stream on your behalf.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct KinesisStreamsOutput {
    #[doc="<p>ARN of the destination Amazon Kinesis stream to write to.</p>"]
    #[serde(rename="ResourceARN")]
    pub resource_arn: ResourceARN,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination stream on your behalf. You need to grant the necessary permissions to this role.</p>"]
    #[serde(rename="RoleARN")]
    pub role_arn: RoleARN,
}

#[doc="<p> For an application output, describes the Amazon Kinesis stream configured as its destination. </p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct KinesisStreamsOutputDescription {
    #[doc="<p>Amazon Resource Name (ARN) of the Amazon Kinesis stream.</p>"]
    #[serde(rename="ResourceARN")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub resource_arn: Option<ResourceARN>,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream.</p>"]
    #[serde(rename="RoleARN")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub role_arn: Option<RoleARN>,
}

#[doc="<p> When updating an output configuration using the <a>UpdateApplication</a> operation, provides information about an Amazon Kinesis stream configured as the destination. </p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct KinesisStreamsOutputUpdate {
    #[doc="<p>Amazon Resource Name (ARN) of the Amazon Kinesis stream where you want to write the output.</p>"]
    #[serde(rename="ResourceARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub resource_arn_update: Option<ResourceARN>,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant the necessary permissions to this role.</p>"]
    #[serde(rename="RoleARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub role_arn_update: Option<RoleARN>,
}

pub type ListApplicationsInputLimit = i64;
#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct ListApplicationsRequest {
    #[doc="<p>Name of the application to start the list with. When using pagination to retrieve the list, you don't need to specify this parameter in the first request. However, in subsequent requests, you add the last application name from the previous response to get the next page of applications.</p>"]
    #[serde(rename="ExclusiveStartApplicationName")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub exclusive_start_application_name: Option<ApplicationName>,
    #[doc="<p>Maximum number of applications to list.</p>"]
    #[serde(rename="Limit")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub limit: Option<ListApplicationsInputLimit>,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct ListApplicationsResponse {
    #[doc="<p>List of <code>ApplicationSummary</code> objects. </p>"]
    #[serde(rename="ApplicationSummaries")]
    pub application_summaries: ApplicationSummaries,
    #[doc="<p>Returns true if there are more applications to retrieve.</p>"]
    #[serde(rename="HasMoreApplications")]
    pub has_more_applications: BooleanObject,
}

pub type LogStreamARN = String;
#[doc="<p>When configuring application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct MappingParameters {
    #[doc="<p>Provides additional mapping information when the record format uses delimiters (for example, CSV).</p>"]
    #[serde(rename="CSVMappingParameters")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub csv_mapping_parameters: Option<CSVMappingParameters>,
    #[doc="<p>Provides additional mapping information when JSON is the record format on the streaming source.</p>"]
    #[serde(rename="JSONMappingParameters")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub json_mapping_parameters: Option<JSONMappingParameters>,
}

#[doc="<p> Describes application output configuration in which you identify an in-application stream and a destination where you want the in-application stream data to be written. The destination can be an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream. </p> <p/> <p>For limits on how many destinations an application can write and other limitations, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html\">Limits</a>. </p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct Output {
    #[serde(rename="DestinationSchema")]
    pub destination_schema: DestinationSchema,
    #[doc="<p>Identifies an Amazon Kinesis Firehose delivery stream as the destination.</p>"]
    #[serde(rename="KinesisFirehoseOutput")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_firehose_output: Option<KinesisFirehoseOutput>,
    #[doc="<p>Identifies an Amazon Kinesis stream as the destination.</p>"]
    #[serde(rename="KinesisStreamsOutput")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_streams_output: Option<KinesisStreamsOutput>,
    #[doc="<p>Name of the in-application stream.</p>"]
    #[serde(rename="Name")]
    pub name: InAppStreamName,
}

#[doc="<p>Describes the application output configuration, which includes the in-application stream name and the destination where the stream data is written. The destination can be an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream. </p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct OutputDescription {
    #[doc="<p>Data format used for writing data to the destination.</p>"]
    #[serde(rename="DestinationSchema")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub destination_schema: Option<DestinationSchema>,
    #[doc="<p>Describes the Amazon Kinesis Firehose delivery stream configured as the destination where output is written.</p>"]
    #[serde(rename="KinesisFirehoseOutputDescription")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_firehose_output_description: Option<KinesisFirehoseOutputDescription>,
    #[doc="<p>Describes Amazon Kinesis stream configured as the destination where output is written.</p>"]
    #[serde(rename="KinesisStreamsOutputDescription")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_streams_output_description: Option<KinesisStreamsOutputDescription>,
    #[doc="<p>Name of the in-application stream configured as output.</p>"]
    #[serde(rename="Name")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub name: Option<InAppStreamName>,
    #[doc="<p>A unique identifier for the output configuration.</p>"]
    #[serde(rename="OutputId")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub output_id: Option<Id>,
}

pub type OutputDescriptions = Vec<OutputDescription>;
#[doc="<p> Describes updates to the output configuration identified by the <code>OutputId</code>. </p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct OutputUpdate {
    #[serde(rename="DestinationSchemaUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub destination_schema_update: Option<DestinationSchema>,
    #[doc="<p>Describes a Amazon Kinesis Firehose delivery stream as the destination for the output.</p>"]
    #[serde(rename="KinesisFirehoseOutputUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_firehose_output_update: Option<KinesisFirehoseOutputUpdate>,
    #[doc="<p>Describes an Amazon Kinesis stream as the destination for the output.</p>"]
    #[serde(rename="KinesisStreamsOutputUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub kinesis_streams_output_update: Option<KinesisStreamsOutputUpdate>,
    #[doc="<p>If you want to specify a different in-application stream for this output configuration, use this field to specify the new in-application stream name.</p>"]
    #[serde(rename="NameUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub name_update: Option<InAppStreamName>,
    #[doc="<p>Identifies the specific output configuration that you want to update.</p>"]
    #[serde(rename="OutputId")]
    pub output_id: Id,
}

pub type OutputUpdates = Vec<OutputUpdate>;
pub type Outputs = Vec<Output>;
pub type ParsedInputRecord = Vec<ParsedInputRecordField>;
pub type ParsedInputRecordField = String;
pub type ParsedInputRecords = Vec<ParsedInputRecord>;
pub type RawInputRecord = String;
pub type RawInputRecords = Vec<RawInputRecord>;
#[doc="<p>Describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.</p> <p>Also used to describe the format of the reference data source.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct RecordColumn {
    #[doc="<p>Reference to the data element in the streaming input of the reference data source.</p>"]
    #[serde(rename="Mapping")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub mapping: Option<RecordColumnMapping>,
    #[doc="<p>Name of the column created in the in-application input stream or reference table.</p>"]
    #[serde(rename="Name")]
    pub name: RecordColumnName,
    #[doc="<p>Type of column created in the in-application input stream or reference table.</p>"]
    #[serde(rename="SqlType")]
    pub sql_type: RecordColumnSqlType,
}

pub type RecordColumnDelimiter = String;
pub type RecordColumnMapping = String;
pub type RecordColumnName = String;
pub type RecordColumnSqlType = String;
pub type RecordColumns = Vec<RecordColumn>;
pub type RecordEncoding = String;
#[doc="<p> Describes the record format and relevant mapping information that should be applied to schematize the records on the stream. </p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct RecordFormat {
    #[serde(rename="MappingParameters")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub mapping_parameters: Option<MappingParameters>,
    #[doc="<p>The type of record format.</p>"]
    #[serde(rename="RecordFormatType")]
    pub record_format_type: RecordFormatType,
}

pub type RecordFormatType = String;
pub type RecordRowDelimiter = String;
pub type RecordRowPath = String;
#[doc="<p>Describes the reference data source by providing the source information (S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct ReferenceDataSource {
    #[serde(rename="ReferenceSchema")]
    pub reference_schema: SourceSchema,
    #[serde(rename="S3ReferenceDataSource")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub s3_reference_data_source: Option<S3ReferenceDataSource>,
    #[doc="<p>Name of the in-application table to create.</p>"]
    #[serde(rename="TableName")]
    pub table_name: InAppTableName,
}

#[doc="<p>Describes the reference data source configured for an application.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct ReferenceDataSourceDescription {
    #[doc="<p>ID of the reference data source. This is the ID that Amazon Kinesis Analytics assigns when you add the reference data source to your application using the <a>AddApplicationReferenceDataSource</a> operation.</p>"]
    #[serde(rename="ReferenceId")]
    pub reference_id: Id,
    #[serde(rename="ReferenceSchema")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub reference_schema: Option<SourceSchema>,
    #[doc="<p>Provides the S3 bucket name, the object key name that contains the reference data. It also provides the Amazon Resource Name (ARN) of the IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object and populate the in-application reference table.</p>"]
    #[serde(rename="S3ReferenceDataSourceDescription")]
    pub s3_reference_data_source_description: S3ReferenceDataSourceDescription,
    #[doc="<p>The in-application table name created by the specific reference data source configuration.</p>"]
    #[serde(rename="TableName")]
    pub table_name: InAppTableName,
}

pub type ReferenceDataSourceDescriptions = Vec<ReferenceDataSourceDescription>;
#[doc="<p>When you update a reference data source configuration for an application, this object provides all the updated values (such as the source bucket name and object key name), the in-application table name that is created, and updated mapping information that maps the data in the Amazon S3 object to the in-application reference table that is created.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct ReferenceDataSourceUpdate {
    #[doc="<p>ID of the reference data source being updated. You can use the <a>DescribeApplication</a> operation to get this value.</p>"]
    #[serde(rename="ReferenceId")]
    pub reference_id: Id,
    #[serde(rename="ReferenceSchemaUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub reference_schema_update: Option<SourceSchema>,
    #[doc="<p>Describes the S3 bucket name, object key name, and IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object on your behalf and populate the in-application reference table.</p>"]
    #[serde(rename="S3ReferenceDataSourceUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub s3_reference_data_source_update: Option<S3ReferenceDataSourceUpdate>,
    #[doc="<p>In-application table name that is created by this update.</p>"]
    #[serde(rename="TableNameUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub table_name_update: Option<InAppTableName>,
}

pub type ReferenceDataSourceUpdates = Vec<ReferenceDataSourceUpdate>;
pub type ResourceARN = String;
pub type RoleARN = String;
#[doc="<p>Identifies the S3 bucket and object that contains the reference data. Also identifies the IAM role Amazon Kinesis Analytics can assume to read this object on your behalf.</p> <p>An Amazon Kinesis Analytics application loads reference data only once. If the data changes, you call the <a>UpdateApplication</a> operation to trigger reloading of data into your application.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct S3ReferenceDataSource {
    #[doc="<p>Amazon Resource Name (ARN) of the S3 bucket.</p>"]
    #[serde(rename="BucketARN")]
    pub bucket_arn: BucketARN,
    #[doc="<p>Object key name containing reference data.</p>"]
    #[serde(rename="FileKey")]
    pub file_key: FileKey,
    #[doc="<p>ARN of the IAM role that the service can assume to read data on your behalf. This role must have permission for the <code>s3:GetObject</code> action on the object and trust policy that allows Amazon Kinesis Analytics service principal to assume this role.</p>"]
    #[serde(rename="ReferenceRoleARN")]
    pub reference_role_arn: RoleARN,
}

#[doc="<p>Provides the bucket name and object key name that stores the reference data.</p>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct S3ReferenceDataSourceDescription {
    #[doc="<p>Amazon Resource Name (ARN) of the S3 bucket.</p>"]
    #[serde(rename="BucketARN")]
    pub bucket_arn: BucketARN,
    #[doc="<p>Amazon S3 object key name.</p>"]
    #[serde(rename="FileKey")]
    pub file_key: FileKey,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object on your behalf to populate the in-application reference table.</p>"]
    #[serde(rename="ReferenceRoleARN")]
    pub reference_role_arn: RoleARN,
}

#[doc="<p>Describes the S3 bucket name, object key name, and IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object on your behalf and populate the in-application reference table.</p>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct S3ReferenceDataSourceUpdate {
    #[doc="<p>Amazon Resource Name (ARN) of the S3 bucket.</p>"]
    #[serde(rename="BucketARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub bucket_arn_update: Option<BucketARN>,
    #[doc="<p>Object key name.</p>"]
    #[serde(rename="FileKeyUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub file_key_update: Option<FileKey>,
    #[doc="<p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the Amazon S3 object and populate the in-application.</p>"]
    #[serde(rename="ReferenceRoleARNUpdate")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub reference_role_arn_update: Option<RoleARN>,
}

#[doc="<p>Describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.</p>"]
#[derive(Default,Debug,Clone,Serialize,Deserialize)]
pub struct SourceSchema {
    #[doc="<p>A list of <code>RecordColumn</code> objects.</p>"]
    #[serde(rename="RecordColumns")]
    pub record_columns: RecordColumns,
    #[doc="<p>Specifies the encoding of the records in the streaming source. For example, UTF-8.</p>"]
    #[serde(rename="RecordEncoding")]
    #[serde(skip_serializing_if="Option::is_none")]
    pub record_encoding: Option<RecordEncoding>,
    #[doc="<p>Specifies the format of the records on the streaming source.</p>"]
    #[serde(rename="RecordFormat")]
    pub record_format: RecordFormat,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct StartApplicationRequest {
    #[doc="<p>Name of the application.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Identifies the specific input, by ID, that the application starts consuming. Amazon Kinesis Analytics starts reading the streaming source associated with the input. You can also specify where in the streaming source you want Amazon Kinesis Analytics to start reading.</p>"]
    #[serde(rename="InputConfigurations")]
    pub input_configurations: InputConfigurations,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct StartApplicationResponse;

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Serialize)]
pub struct StopApplicationRequest {
    #[doc="<p>Name of the running application to stop.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
}

#[doc="<p/>"]
#[derive(Default,Debug,Clone,Deserialize)]
pub struct StopApplicationResponse;

pub type Timestamp = f64;
#[derive(Default,Debug,Clone,Serialize)]
pub struct UpdateApplicationRequest {
    #[doc="<p>Name of the Amazon Kinesis Analytics application to update.</p>"]
    #[serde(rename="ApplicationName")]
    pub application_name: ApplicationName,
    #[doc="<p>Describes application updates.</p>"]
    #[serde(rename="ApplicationUpdate")]
    pub application_update: ApplicationUpdate,
    #[doc="<p>The current application version ID. You can use the <a>DescribeApplication</a> operation to get this value.</p>"]
    #[serde(rename="CurrentApplicationVersionId")]
    pub current_application_version_id: ApplicationVersionId,
}

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

/// Errors returned by AddApplicationCloudWatchLoggingOption
#[derive(Debug, PartialEq)]
pub enum AddApplicationCloudWatchLoggingOptionError {
    ///<p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
    ConcurrentModification(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 AddApplicationCloudWatchLoggingOptionError {
    pub fn from_body(body: &str) -> AddApplicationCloudWatchLoggingOptionError {
        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 {
                    "ConcurrentModificationException" => AddApplicationCloudWatchLoggingOptionError::ConcurrentModification(String::from(error_message)),
                    "InvalidArgumentException" => AddApplicationCloudWatchLoggingOptionError::InvalidArgument(String::from(error_message)),
                    "ResourceInUseException" => AddApplicationCloudWatchLoggingOptionError::ResourceInUse(String::from(error_message)),
                    "ResourceNotFoundException" => AddApplicationCloudWatchLoggingOptionError::ResourceNotFound(String::from(error_message)),
                    "ValidationException" => {
                        AddApplicationCloudWatchLoggingOptionError::Validation(error_message
                                                                                   .to_string())
                    }
                    _ => AddApplicationCloudWatchLoggingOptionError::Unknown(String::from(body)),
                }
            }
            Err(_) => AddApplicationCloudWatchLoggingOptionError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for AddApplicationCloudWatchLoggingOptionError {
    fn from(err: serde_json::error::Error) -> AddApplicationCloudWatchLoggingOptionError {
        AddApplicationCloudWatchLoggingOptionError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for AddApplicationCloudWatchLoggingOptionError {
    fn from(err: CredentialsError) -> AddApplicationCloudWatchLoggingOptionError {
        AddApplicationCloudWatchLoggingOptionError::Credentials(err)
    }
}
impl From<HttpDispatchError> for AddApplicationCloudWatchLoggingOptionError {
    fn from(err: HttpDispatchError) -> AddApplicationCloudWatchLoggingOptionError {
        AddApplicationCloudWatchLoggingOptionError::HttpDispatch(err)
    }
}
impl fmt::Display for AddApplicationCloudWatchLoggingOptionError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for AddApplicationCloudWatchLoggingOptionError {
    fn description(&self) -> &str {
        match *self {
            AddApplicationCloudWatchLoggingOptionError::ConcurrentModification(ref cause) => cause,
            AddApplicationCloudWatchLoggingOptionError::InvalidArgument(ref cause) => cause,
            AddApplicationCloudWatchLoggingOptionError::ResourceInUse(ref cause) => cause,
            AddApplicationCloudWatchLoggingOptionError::ResourceNotFound(ref cause) => cause,
            AddApplicationCloudWatchLoggingOptionError::Validation(ref cause) => cause,
            AddApplicationCloudWatchLoggingOptionError::Credentials(ref err) => err.description(),
            AddApplicationCloudWatchLoggingOptionError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            AddApplicationCloudWatchLoggingOptionError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by AddApplicationInput
#[derive(Debug, PartialEq)]
pub enum AddApplicationInputError {
    ///<p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
    ConcurrentModification(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 AddApplicationInputError {
    pub fn from_body(body: &str) -> AddApplicationInputError {
        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 {
                    "ConcurrentModificationException" => AddApplicationInputError::ConcurrentModification(String::from(error_message)),
                    "InvalidArgumentException" => {
                        AddApplicationInputError::InvalidArgument(String::from(error_message))
                    }
                    "ResourceInUseException" => {
                        AddApplicationInputError::ResourceInUse(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        AddApplicationInputError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        AddApplicationInputError::Validation(error_message.to_string())
                    }
                    _ => AddApplicationInputError::Unknown(String::from(body)),
                }
            }
            Err(_) => AddApplicationInputError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for AddApplicationInputError {
    fn from(err: serde_json::error::Error) -> AddApplicationInputError {
        AddApplicationInputError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for AddApplicationInputError {
    fn from(err: CredentialsError) -> AddApplicationInputError {
        AddApplicationInputError::Credentials(err)
    }
}
impl From<HttpDispatchError> for AddApplicationInputError {
    fn from(err: HttpDispatchError) -> AddApplicationInputError {
        AddApplicationInputError::HttpDispatch(err)
    }
}
impl fmt::Display for AddApplicationInputError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for AddApplicationInputError {
    fn description(&self) -> &str {
        match *self {
            AddApplicationInputError::ConcurrentModification(ref cause) => cause,
            AddApplicationInputError::InvalidArgument(ref cause) => cause,
            AddApplicationInputError::ResourceInUse(ref cause) => cause,
            AddApplicationInputError::ResourceNotFound(ref cause) => cause,
            AddApplicationInputError::Validation(ref cause) => cause,
            AddApplicationInputError::Credentials(ref err) => err.description(),
            AddApplicationInputError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            AddApplicationInputError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by AddApplicationOutput
#[derive(Debug, PartialEq)]
pub enum AddApplicationOutputError {
    ///<p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
    ConcurrentModification(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 AddApplicationOutputError {
    pub fn from_body(body: &str) -> AddApplicationOutputError {
        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 {
                    "ConcurrentModificationException" => AddApplicationOutputError::ConcurrentModification(String::from(error_message)),
                    "InvalidArgumentException" => {
                        AddApplicationOutputError::InvalidArgument(String::from(error_message))
                    }
                    "ResourceInUseException" => {
                        AddApplicationOutputError::ResourceInUse(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        AddApplicationOutputError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        AddApplicationOutputError::Validation(error_message.to_string())
                    }
                    _ => AddApplicationOutputError::Unknown(String::from(body)),
                }
            }
            Err(_) => AddApplicationOutputError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for AddApplicationOutputError {
    fn from(err: serde_json::error::Error) -> AddApplicationOutputError {
        AddApplicationOutputError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for AddApplicationOutputError {
    fn from(err: CredentialsError) -> AddApplicationOutputError {
        AddApplicationOutputError::Credentials(err)
    }
}
impl From<HttpDispatchError> for AddApplicationOutputError {
    fn from(err: HttpDispatchError) -> AddApplicationOutputError {
        AddApplicationOutputError::HttpDispatch(err)
    }
}
impl fmt::Display for AddApplicationOutputError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for AddApplicationOutputError {
    fn description(&self) -> &str {
        match *self {
            AddApplicationOutputError::ConcurrentModification(ref cause) => cause,
            AddApplicationOutputError::InvalidArgument(ref cause) => cause,
            AddApplicationOutputError::ResourceInUse(ref cause) => cause,
            AddApplicationOutputError::ResourceNotFound(ref cause) => cause,
            AddApplicationOutputError::Validation(ref cause) => cause,
            AddApplicationOutputError::Credentials(ref err) => err.description(),
            AddApplicationOutputError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            AddApplicationOutputError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by AddApplicationReferenceDataSource
#[derive(Debug, PartialEq)]
pub enum AddApplicationReferenceDataSourceError {
    ///<p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
    ConcurrentModification(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 AddApplicationReferenceDataSourceError {
    pub fn from_body(body: &str) -> AddApplicationReferenceDataSourceError {
        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 {
                    "ConcurrentModificationException" => AddApplicationReferenceDataSourceError::ConcurrentModification(String::from(error_message)),
                    "InvalidArgumentException" => AddApplicationReferenceDataSourceError::InvalidArgument(String::from(error_message)),
                    "ResourceInUseException" => AddApplicationReferenceDataSourceError::ResourceInUse(String::from(error_message)),
                    "ResourceNotFoundException" => AddApplicationReferenceDataSourceError::ResourceNotFound(String::from(error_message)),
                    "ValidationException" => {
                        AddApplicationReferenceDataSourceError::Validation(error_message
                                                                               .to_string())
                    }
                    _ => AddApplicationReferenceDataSourceError::Unknown(String::from(body)),
                }
            }
            Err(_) => AddApplicationReferenceDataSourceError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for AddApplicationReferenceDataSourceError {
    fn from(err: serde_json::error::Error) -> AddApplicationReferenceDataSourceError {
        AddApplicationReferenceDataSourceError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for AddApplicationReferenceDataSourceError {
    fn from(err: CredentialsError) -> AddApplicationReferenceDataSourceError {
        AddApplicationReferenceDataSourceError::Credentials(err)
    }
}
impl From<HttpDispatchError> for AddApplicationReferenceDataSourceError {
    fn from(err: HttpDispatchError) -> AddApplicationReferenceDataSourceError {
        AddApplicationReferenceDataSourceError::HttpDispatch(err)
    }
}
impl fmt::Display for AddApplicationReferenceDataSourceError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for AddApplicationReferenceDataSourceError {
    fn description(&self) -> &str {
        match *self {
            AddApplicationReferenceDataSourceError::ConcurrentModification(ref cause) => cause,
            AddApplicationReferenceDataSourceError::InvalidArgument(ref cause) => cause,
            AddApplicationReferenceDataSourceError::ResourceInUse(ref cause) => cause,
            AddApplicationReferenceDataSourceError::ResourceNotFound(ref cause) => cause,
            AddApplicationReferenceDataSourceError::Validation(ref cause) => cause,
            AddApplicationReferenceDataSourceError::Credentials(ref err) => err.description(),
            AddApplicationReferenceDataSourceError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            AddApplicationReferenceDataSourceError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by CreateApplication
#[derive(Debug, PartialEq)]
pub enum CreateApplicationError {
    ///<p>User-provided application code (query) is invalid. This can be a simple syntax error.</p>
    CodeValidation(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Exceeded the number of applications allowed.</p>
    LimitExceeded(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(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 CreateApplicationError {
    pub fn from_body(body: &str) -> CreateApplicationError {
        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 {
                    "CodeValidationException" => {
                        CreateApplicationError::CodeValidation(String::from(error_message))
                    }
                    "InvalidArgumentException" => {
                        CreateApplicationError::InvalidArgument(String::from(error_message))
                    }
                    "LimitExceededException" => {
                        CreateApplicationError::LimitExceeded(String::from(error_message))
                    }
                    "ResourceInUseException" => {
                        CreateApplicationError::ResourceInUse(String::from(error_message))
                    }
                    "ValidationException" => {
                        CreateApplicationError::Validation(error_message.to_string())
                    }
                    _ => CreateApplicationError::Unknown(String::from(body)),
                }
            }
            Err(_) => CreateApplicationError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for CreateApplicationError {
    fn from(err: serde_json::error::Error) -> CreateApplicationError {
        CreateApplicationError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for CreateApplicationError {
    fn from(err: CredentialsError) -> CreateApplicationError {
        CreateApplicationError::Credentials(err)
    }
}
impl From<HttpDispatchError> for CreateApplicationError {
    fn from(err: HttpDispatchError) -> CreateApplicationError {
        CreateApplicationError::HttpDispatch(err)
    }
}
impl fmt::Display for CreateApplicationError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for CreateApplicationError {
    fn description(&self) -> &str {
        match *self {
            CreateApplicationError::CodeValidation(ref cause) => cause,
            CreateApplicationError::InvalidArgument(ref cause) => cause,
            CreateApplicationError::LimitExceeded(ref cause) => cause,
            CreateApplicationError::ResourceInUse(ref cause) => cause,
            CreateApplicationError::Validation(ref cause) => cause,
            CreateApplicationError::Credentials(ref err) => err.description(),
            CreateApplicationError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            CreateApplicationError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by DeleteApplication
#[derive(Debug, PartialEq)]
pub enum DeleteApplicationError {
    ///<p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
    ConcurrentModification(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 DeleteApplicationError {
    pub fn from_body(body: &str) -> DeleteApplicationError {
        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 {
                    "ConcurrentModificationException" => {
                        DeleteApplicationError::ConcurrentModification(String::from(error_message))
                    }
                    "ResourceInUseException" => {
                        DeleteApplicationError::ResourceInUse(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        DeleteApplicationError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        DeleteApplicationError::Validation(error_message.to_string())
                    }
                    _ => DeleteApplicationError::Unknown(String::from(body)),
                }
            }
            Err(_) => DeleteApplicationError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for DeleteApplicationError {
    fn from(err: serde_json::error::Error) -> DeleteApplicationError {
        DeleteApplicationError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for DeleteApplicationError {
    fn from(err: CredentialsError) -> DeleteApplicationError {
        DeleteApplicationError::Credentials(err)
    }
}
impl From<HttpDispatchError> for DeleteApplicationError {
    fn from(err: HttpDispatchError) -> DeleteApplicationError {
        DeleteApplicationError::HttpDispatch(err)
    }
}
impl fmt::Display for DeleteApplicationError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DeleteApplicationError {
    fn description(&self) -> &str {
        match *self {
            DeleteApplicationError::ConcurrentModification(ref cause) => cause,
            DeleteApplicationError::ResourceInUse(ref cause) => cause,
            DeleteApplicationError::ResourceNotFound(ref cause) => cause,
            DeleteApplicationError::Validation(ref cause) => cause,
            DeleteApplicationError::Credentials(ref err) => err.description(),
            DeleteApplicationError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            DeleteApplicationError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by DeleteApplicationCloudWatchLoggingOption
#[derive(Debug, PartialEq)]
pub enum DeleteApplicationCloudWatchLoggingOptionError {
    ///<p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
    ConcurrentModification(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 DeleteApplicationCloudWatchLoggingOptionError {
    pub fn from_body(body: &str) -> DeleteApplicationCloudWatchLoggingOptionError {
        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 {
                    "ConcurrentModificationException" => DeleteApplicationCloudWatchLoggingOptionError::ConcurrentModification(String::from(error_message)),
                    "InvalidArgumentException" => DeleteApplicationCloudWatchLoggingOptionError::InvalidArgument(String::from(error_message)),
                    "ResourceInUseException" => DeleteApplicationCloudWatchLoggingOptionError::ResourceInUse(String::from(error_message)),
                    "ResourceNotFoundException" => DeleteApplicationCloudWatchLoggingOptionError::ResourceNotFound(String::from(error_message)),
                    "ValidationException" => DeleteApplicationCloudWatchLoggingOptionError::Validation(error_message.to_string()),
                    _ => DeleteApplicationCloudWatchLoggingOptionError::Unknown(String::from(body)),
                }
            }
            Err(_) => DeleteApplicationCloudWatchLoggingOptionError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for DeleteApplicationCloudWatchLoggingOptionError {
    fn from(err: serde_json::error::Error) -> DeleteApplicationCloudWatchLoggingOptionError {
        DeleteApplicationCloudWatchLoggingOptionError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for DeleteApplicationCloudWatchLoggingOptionError {
    fn from(err: CredentialsError) -> DeleteApplicationCloudWatchLoggingOptionError {
        DeleteApplicationCloudWatchLoggingOptionError::Credentials(err)
    }
}
impl From<HttpDispatchError> for DeleteApplicationCloudWatchLoggingOptionError {
    fn from(err: HttpDispatchError) -> DeleteApplicationCloudWatchLoggingOptionError {
        DeleteApplicationCloudWatchLoggingOptionError::HttpDispatch(err)
    }
}
impl fmt::Display for DeleteApplicationCloudWatchLoggingOptionError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DeleteApplicationCloudWatchLoggingOptionError {
    fn description(&self) -> &str {
        match *self {
            DeleteApplicationCloudWatchLoggingOptionError::ConcurrentModification(ref cause) => {
                cause
            }
            DeleteApplicationCloudWatchLoggingOptionError::InvalidArgument(ref cause) => cause,
            DeleteApplicationCloudWatchLoggingOptionError::ResourceInUse(ref cause) => cause,
            DeleteApplicationCloudWatchLoggingOptionError::ResourceNotFound(ref cause) => cause,
            DeleteApplicationCloudWatchLoggingOptionError::Validation(ref cause) => cause,
            DeleteApplicationCloudWatchLoggingOptionError::Credentials(ref err) => {
                err.description()
            }
            DeleteApplicationCloudWatchLoggingOptionError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            DeleteApplicationCloudWatchLoggingOptionError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by DeleteApplicationOutput
#[derive(Debug, PartialEq)]
pub enum DeleteApplicationOutputError {
    ///<p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
    ConcurrentModification(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 DeleteApplicationOutputError {
    pub fn from_body(body: &str) -> DeleteApplicationOutputError {
        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 {
                    "ConcurrentModificationException" => DeleteApplicationOutputError::ConcurrentModification(String::from(error_message)),
                    "InvalidArgumentException" => {
                        DeleteApplicationOutputError::InvalidArgument(String::from(error_message))
                    }
                    "ResourceInUseException" => {
                        DeleteApplicationOutputError::ResourceInUse(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        DeleteApplicationOutputError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        DeleteApplicationOutputError::Validation(error_message.to_string())
                    }
                    _ => DeleteApplicationOutputError::Unknown(String::from(body)),
                }
            }
            Err(_) => DeleteApplicationOutputError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for DeleteApplicationOutputError {
    fn from(err: serde_json::error::Error) -> DeleteApplicationOutputError {
        DeleteApplicationOutputError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for DeleteApplicationOutputError {
    fn from(err: CredentialsError) -> DeleteApplicationOutputError {
        DeleteApplicationOutputError::Credentials(err)
    }
}
impl From<HttpDispatchError> for DeleteApplicationOutputError {
    fn from(err: HttpDispatchError) -> DeleteApplicationOutputError {
        DeleteApplicationOutputError::HttpDispatch(err)
    }
}
impl fmt::Display for DeleteApplicationOutputError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DeleteApplicationOutputError {
    fn description(&self) -> &str {
        match *self {
            DeleteApplicationOutputError::ConcurrentModification(ref cause) => cause,
            DeleteApplicationOutputError::InvalidArgument(ref cause) => cause,
            DeleteApplicationOutputError::ResourceInUse(ref cause) => cause,
            DeleteApplicationOutputError::ResourceNotFound(ref cause) => cause,
            DeleteApplicationOutputError::Validation(ref cause) => cause,
            DeleteApplicationOutputError::Credentials(ref err) => err.description(),
            DeleteApplicationOutputError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            DeleteApplicationOutputError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by DeleteApplicationReferenceDataSource
#[derive(Debug, PartialEq)]
pub enum DeleteApplicationReferenceDataSourceError {
    ///<p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
    ConcurrentModification(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 DeleteApplicationReferenceDataSourceError {
    pub fn from_body(body: &str) -> DeleteApplicationReferenceDataSourceError {
        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 {
                    "ConcurrentModificationException" => DeleteApplicationReferenceDataSourceError::ConcurrentModification(String::from(error_message)),
                    "InvalidArgumentException" => DeleteApplicationReferenceDataSourceError::InvalidArgument(String::from(error_message)),
                    "ResourceInUseException" => DeleteApplicationReferenceDataSourceError::ResourceInUse(String::from(error_message)),
                    "ResourceNotFoundException" => DeleteApplicationReferenceDataSourceError::ResourceNotFound(String::from(error_message)),
                    "ValidationException" => {
                        DeleteApplicationReferenceDataSourceError::Validation(error_message
                                                                                  .to_string())
                    }
                    _ => DeleteApplicationReferenceDataSourceError::Unknown(String::from(body)),
                }
            }
            Err(_) => DeleteApplicationReferenceDataSourceError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for DeleteApplicationReferenceDataSourceError {
    fn from(err: serde_json::error::Error) -> DeleteApplicationReferenceDataSourceError {
        DeleteApplicationReferenceDataSourceError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for DeleteApplicationReferenceDataSourceError {
    fn from(err: CredentialsError) -> DeleteApplicationReferenceDataSourceError {
        DeleteApplicationReferenceDataSourceError::Credentials(err)
    }
}
impl From<HttpDispatchError> for DeleteApplicationReferenceDataSourceError {
    fn from(err: HttpDispatchError) -> DeleteApplicationReferenceDataSourceError {
        DeleteApplicationReferenceDataSourceError::HttpDispatch(err)
    }
}
impl fmt::Display for DeleteApplicationReferenceDataSourceError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DeleteApplicationReferenceDataSourceError {
    fn description(&self) -> &str {
        match *self {
            DeleteApplicationReferenceDataSourceError::ConcurrentModification(ref cause) => cause,
            DeleteApplicationReferenceDataSourceError::InvalidArgument(ref cause) => cause,
            DeleteApplicationReferenceDataSourceError::ResourceInUse(ref cause) => cause,
            DeleteApplicationReferenceDataSourceError::ResourceNotFound(ref cause) => cause,
            DeleteApplicationReferenceDataSourceError::Validation(ref cause) => cause,
            DeleteApplicationReferenceDataSourceError::Credentials(ref err) => err.description(),
            DeleteApplicationReferenceDataSourceError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            DeleteApplicationReferenceDataSourceError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by DescribeApplication
#[derive(Debug, PartialEq)]
pub enum DescribeApplicationError {
    ///<p>Specified application can't 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 DescribeApplicationError {
    pub fn from_body(body: &str) -> DescribeApplicationError {
        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 {
                    "ResourceNotFoundException" => {
                        DescribeApplicationError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        DescribeApplicationError::Validation(error_message.to_string())
                    }
                    _ => DescribeApplicationError::Unknown(String::from(body)),
                }
            }
            Err(_) => DescribeApplicationError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for DescribeApplicationError {
    fn from(err: serde_json::error::Error) -> DescribeApplicationError {
        DescribeApplicationError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for DescribeApplicationError {
    fn from(err: CredentialsError) -> DescribeApplicationError {
        DescribeApplicationError::Credentials(err)
    }
}
impl From<HttpDispatchError> for DescribeApplicationError {
    fn from(err: HttpDispatchError) -> DescribeApplicationError {
        DescribeApplicationError::HttpDispatch(err)
    }
}
impl fmt::Display for DescribeApplicationError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DescribeApplicationError {
    fn description(&self) -> &str {
        match *self {
            DescribeApplicationError::ResourceNotFound(ref cause) => cause,
            DescribeApplicationError::Validation(ref cause) => cause,
            DescribeApplicationError::Credentials(ref err) => err.description(),
            DescribeApplicationError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            DescribeApplicationError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by DiscoverInputSchema
#[derive(Debug, PartialEq)]
pub enum DiscoverInputSchemaError {
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Discovery failed to get a record from the streaming source because of the Amazon Kinesis Streams ProvisionedThroughputExceededException. For more information, see <a href="http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html">GetRecords</a> in the Amazon Kinesis Streams API Reference.</p>
    ResourceProvisionedThroughputExceeded(String),
    ///<p>Data format is not valid, Amazon Kinesis Analytics is not able to detect schema for the given streaming source.</p>
    UnableToDetectSchema(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 DiscoverInputSchemaError {
    pub fn from_body(body: &str) -> DiscoverInputSchemaError {
        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 {
                    "InvalidArgumentException" => {
                        DiscoverInputSchemaError::InvalidArgument(String::from(error_message))
                    }
                    "ResourceProvisionedThroughputExceededException" => DiscoverInputSchemaError::ResourceProvisionedThroughputExceeded(String::from(error_message)),
                    "UnableToDetectSchemaException" => {
                        DiscoverInputSchemaError::UnableToDetectSchema(String::from(error_message))
                    }
                    "ValidationException" => {
                        DiscoverInputSchemaError::Validation(error_message.to_string())
                    }
                    _ => DiscoverInputSchemaError::Unknown(String::from(body)),
                }
            }
            Err(_) => DiscoverInputSchemaError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for DiscoverInputSchemaError {
    fn from(err: serde_json::error::Error) -> DiscoverInputSchemaError {
        DiscoverInputSchemaError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for DiscoverInputSchemaError {
    fn from(err: CredentialsError) -> DiscoverInputSchemaError {
        DiscoverInputSchemaError::Credentials(err)
    }
}
impl From<HttpDispatchError> for DiscoverInputSchemaError {
    fn from(err: HttpDispatchError) -> DiscoverInputSchemaError {
        DiscoverInputSchemaError::HttpDispatch(err)
    }
}
impl fmt::Display for DiscoverInputSchemaError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for DiscoverInputSchemaError {
    fn description(&self) -> &str {
        match *self {
            DiscoverInputSchemaError::InvalidArgument(ref cause) => cause,
            DiscoverInputSchemaError::ResourceProvisionedThroughputExceeded(ref cause) => cause,
            DiscoverInputSchemaError::UnableToDetectSchema(ref cause) => cause,
            DiscoverInputSchemaError::Validation(ref cause) => cause,
            DiscoverInputSchemaError::Credentials(ref err) => err.description(),
            DiscoverInputSchemaError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            DiscoverInputSchemaError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by ListApplications
#[derive(Debug, PartialEq)]
pub enum ListApplicationsError {
    /// 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 ListApplicationsError {
    pub fn from_body(body: &str) -> ListApplicationsError {
        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" => {
                        ListApplicationsError::Validation(error_message.to_string())
                    }
                    _ => ListApplicationsError::Unknown(String::from(body)),
                }
            }
            Err(_) => ListApplicationsError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for ListApplicationsError {
    fn from(err: serde_json::error::Error) -> ListApplicationsError {
        ListApplicationsError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for ListApplicationsError {
    fn from(err: CredentialsError) -> ListApplicationsError {
        ListApplicationsError::Credentials(err)
    }
}
impl From<HttpDispatchError> for ListApplicationsError {
    fn from(err: HttpDispatchError) -> ListApplicationsError {
        ListApplicationsError::HttpDispatch(err)
    }
}
impl fmt::Display for ListApplicationsError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for ListApplicationsError {
    fn description(&self) -> &str {
        match *self {
            ListApplicationsError::Validation(ref cause) => cause,
            ListApplicationsError::Credentials(ref err) => err.description(),
            ListApplicationsError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            ListApplicationsError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by StartApplication
#[derive(Debug, PartialEq)]
pub enum StartApplicationError {
    ///<p>User-provided application configuration is not valid.</p>
    InvalidApplicationConfiguration(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 StartApplicationError {
    pub fn from_body(body: &str) -> StartApplicationError {
        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 {
                    "InvalidApplicationConfigurationException" => StartApplicationError::InvalidApplicationConfiguration(String::from(error_message)),
                    "InvalidArgumentException" => {
                        StartApplicationError::InvalidArgument(String::from(error_message))
                    }
                    "ResourceInUseException" => {
                        StartApplicationError::ResourceInUse(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        StartApplicationError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        StartApplicationError::Validation(error_message.to_string())
                    }
                    _ => StartApplicationError::Unknown(String::from(body)),
                }
            }
            Err(_) => StartApplicationError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for StartApplicationError {
    fn from(err: serde_json::error::Error) -> StartApplicationError {
        StartApplicationError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for StartApplicationError {
    fn from(err: CredentialsError) -> StartApplicationError {
        StartApplicationError::Credentials(err)
    }
}
impl From<HttpDispatchError> for StartApplicationError {
    fn from(err: HttpDispatchError) -> StartApplicationError {
        StartApplicationError::HttpDispatch(err)
    }
}
impl fmt::Display for StartApplicationError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for StartApplicationError {
    fn description(&self) -> &str {
        match *self {
            StartApplicationError::InvalidApplicationConfiguration(ref cause) => cause,
            StartApplicationError::InvalidArgument(ref cause) => cause,
            StartApplicationError::ResourceInUse(ref cause) => cause,
            StartApplicationError::ResourceNotFound(ref cause) => cause,
            StartApplicationError::Validation(ref cause) => cause,
            StartApplicationError::Credentials(ref err) => err.description(),
            StartApplicationError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            StartApplicationError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by StopApplication
#[derive(Debug, PartialEq)]
pub enum StopApplicationError {
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 StopApplicationError {
    pub fn from_body(body: &str) -> StopApplicationError {
        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 {
                    "ResourceInUseException" => {
                        StopApplicationError::ResourceInUse(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        StopApplicationError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        StopApplicationError::Validation(error_message.to_string())
                    }
                    _ => StopApplicationError::Unknown(String::from(body)),
                }
            }
            Err(_) => StopApplicationError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for StopApplicationError {
    fn from(err: serde_json::error::Error) -> StopApplicationError {
        StopApplicationError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for StopApplicationError {
    fn from(err: CredentialsError) -> StopApplicationError {
        StopApplicationError::Credentials(err)
    }
}
impl From<HttpDispatchError> for StopApplicationError {
    fn from(err: HttpDispatchError) -> StopApplicationError {
        StopApplicationError::HttpDispatch(err)
    }
}
impl fmt::Display for StopApplicationError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for StopApplicationError {
    fn description(&self) -> &str {
        match *self {
            StopApplicationError::ResourceInUse(ref cause) => cause,
            StopApplicationError::ResourceNotFound(ref cause) => cause,
            StopApplicationError::Validation(ref cause) => cause,
            StopApplicationError::Credentials(ref err) => err.description(),
            StopApplicationError::HttpDispatch(ref dispatch_error) => dispatch_error.description(),
            StopApplicationError::Unknown(ref cause) => cause,
        }
    }
}
/// Errors returned by UpdateApplication
#[derive(Debug, PartialEq)]
pub enum UpdateApplicationError {
    ///<p>User-provided application code (query) is invalid. This can be a simple syntax error.</p>
    CodeValidation(String),
    ///<p>Exception thrown as a result of concurrent modification to an application. For example, two individuals attempting to edit the same application at the same time.</p>
    ConcurrentModification(String),
    ///<p>Specified input parameter value is invalid.</p>
    InvalidArgument(String),
    ///<p>Application is not available for this operation.</p>
    ResourceInUse(String),
    ///<p>Specified application can't 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 UpdateApplicationError {
    pub fn from_body(body: &str) -> UpdateApplicationError {
        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 {
                    "CodeValidationException" => {
                        UpdateApplicationError::CodeValidation(String::from(error_message))
                    }
                    "ConcurrentModificationException" => {
                        UpdateApplicationError::ConcurrentModification(String::from(error_message))
                    }
                    "InvalidArgumentException" => {
                        UpdateApplicationError::InvalidArgument(String::from(error_message))
                    }
                    "ResourceInUseException" => {
                        UpdateApplicationError::ResourceInUse(String::from(error_message))
                    }
                    "ResourceNotFoundException" => {
                        UpdateApplicationError::ResourceNotFound(String::from(error_message))
                    }
                    "ValidationException" => {
                        UpdateApplicationError::Validation(error_message.to_string())
                    }
                    _ => UpdateApplicationError::Unknown(String::from(body)),
                }
            }
            Err(_) => UpdateApplicationError::Unknown(String::from(body)),
        }
    }
}

impl From<serde_json::error::Error> for UpdateApplicationError {
    fn from(err: serde_json::error::Error) -> UpdateApplicationError {
        UpdateApplicationError::Unknown(err.description().to_string())
    }
}
impl From<CredentialsError> for UpdateApplicationError {
    fn from(err: CredentialsError) -> UpdateApplicationError {
        UpdateApplicationError::Credentials(err)
    }
}
impl From<HttpDispatchError> for UpdateApplicationError {
    fn from(err: HttpDispatchError) -> UpdateApplicationError {
        UpdateApplicationError::HttpDispatch(err)
    }
}
impl fmt::Display for UpdateApplicationError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.description())
    }
}
impl Error for UpdateApplicationError {
    fn description(&self) -> &str {
        match *self {
            UpdateApplicationError::CodeValidation(ref cause) => cause,
            UpdateApplicationError::ConcurrentModification(ref cause) => cause,
            UpdateApplicationError::InvalidArgument(ref cause) => cause,
            UpdateApplicationError::ResourceInUse(ref cause) => cause,
            UpdateApplicationError::ResourceNotFound(ref cause) => cause,
            UpdateApplicationError::Validation(ref cause) => cause,
            UpdateApplicationError::Credentials(ref err) => err.description(),
            UpdateApplicationError::HttpDispatch(ref dispatch_error) => {
                dispatch_error.description()
            }
            UpdateApplicationError::Unknown(ref cause) => cause,
        }
    }
}
/// Trait representing the capabilities of the Kinesis Analytics API. Kinesis Analytics clients implement this trait.
pub trait KinesisAnalytics {
    #[doc="<p>Adds a CloudWatch log stream to monitor application configuration errors. For more information about using CloudWatch log streams with Amazon Kinesis Analytics applications, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html\">Monitoring Configuration Errors</a>.</p>"]
    fn add_application_cloud_watch_logging_option(&self, input: &AddApplicationCloudWatchLoggingOptionRequest)  -> Result<AddApplicationCloudWatchLoggingOptionResponse, AddApplicationCloudWatchLoggingOptionError>;


    #[doc="<p> Adds a streaming source to your Amazon Kinesis application. For conceptual information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. </p> <p>You can add a streaming source either when you create an application or you can use this operation to add a streaming source after you create an application. For more information, see <a>CreateApplication</a>.</p> <p>Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the <a>DescribeApplication</a> operation to find the current application version. </p> <p>This operation requires permissions to perform the <code>kinesisanalytics:AddApplicationInput</code> action.</p>"]
    fn add_application_input(&self,
                             input: &AddApplicationInputRequest)
                             -> Result<AddApplicationInputResponse, AddApplicationInputError>;


    #[doc="<p>Adds an external destination to your Amazon Kinesis Analytics application.</p> <p>If you want Amazon Kinesis Analytics to deliver data from an in-application stream within your application to an external destination (such as an Amazon Kinesis stream or a Firehose delivery stream), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination.</p> <p> You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors. For conceptual information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html\">Understanding Application Output (Destination)</a>. </p> <p> Note that any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the <a>DescribeApplication</a> operation to find the current application version.</p> <p>For the limits on the number of application inputs and outputs you can configure, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html\">Limits</a>.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:AddApplicationOutput</code> action.</p>"]
    fn add_application_output
        (&self,
         input: &AddApplicationOutputRequest)
         -> Result<AddApplicationOutputResponse, AddApplicationOutputError>;


    #[doc="<p>Adds a reference data source to an existing application.</p> <p>Amazon Kinesis Analytics reads reference data (that is, an Amazon S3 object) and creates an in-application table within your application. In the request, you provide the source (S3 bucket name and object key name), name of the in-application table to create, and the necessary mapping information that describes how data in Amazon S3 object maps to columns in the resulting in-application table.</p> <p> For conceptual information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. For the limits on data sources you can add to your application, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html\">Limits</a>. </p> <p> This operation requires permissions to perform the <code>kinesisanalytics:AddApplicationOutput</code> action. </p>"]
    fn add_application_reference_data_source
        (&self,
         input: &AddApplicationReferenceDataSourceRequest)
         -> Result<AddApplicationReferenceDataSourceResponse,
                   AddApplicationReferenceDataSourceError>;


    #[doc="<p> Creates an Amazon Kinesis Analytics application. You can configure each application with one streaming source as input, application code to process the input, and up to five streaming destinations where you want Amazon Kinesis Analytics to write the output data from your application. For an overview, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works.html\">How it Works</a>. </p> <p>In the input configuration, you map the streaming source to an in-application stream, which you can think of as a constantly updating table. In the mapping, you must provide a schema for the in-application stream and map each data column in the in-application stream to a data element in the streaming source.</p> <p>Your application code is one or more SQL statements that read input data, transform it, and generate output. Your application code can create one or more SQL artifacts like SQL streams or pumps.</p> <p>In the output configuration, you can configure the application to write data from in-application streams created in your applications to up to five streaming destinations.</p> <p> To read data from your source stream or write data to destination streams, Amazon Kinesis Analytics needs your permissions. You grant these permissions by creating IAM roles. This operation requires permissions to perform the <code>kinesisanalytics:CreateApplication</code> action. </p> <p> For introductory exercises to create an Amazon Kinesis Analytics application, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/getting-started.html\">Getting Started</a>. </p>"]
    fn create_application(&self,
                          input: &CreateApplicationRequest)
                          -> Result<CreateApplicationResponse, CreateApplicationError>;


    #[doc="<p>Deletes the specified application. Amazon Kinesis Analytics halts application execution and deletes the application, including any application artifacts (such as in-application streams, reference table, and application code).</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:DeleteApplication</code> action.</p>"]
    fn delete_application(&self,
                          input: &DeleteApplicationRequest)
                          -> Result<DeleteApplicationResponse, DeleteApplicationError>;


    #[doc="<p>Deletes a CloudWatch log stream from an application. For more information about using CloudWatch log streams with Amazon Kinesis Analytics applications, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html\">Monitoring Configuration Errors</a>.</p>"]
    fn delete_application_cloud_watch_logging_option(&self, input: &DeleteApplicationCloudWatchLoggingOptionRequest)  -> Result<DeleteApplicationCloudWatchLoggingOptionResponse, DeleteApplicationCloudWatchLoggingOptionError>;


    #[doc="<p>Deletes output destination configuration from your application configuration. Amazon Kinesis Analytics will no longer write data from the corresponding in-application stream to the external output destination.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:DeleteApplicationOutput</code> action.</p>"]
    fn delete_application_output
        (&self,
         input: &DeleteApplicationOutputRequest)
         -> Result<DeleteApplicationOutputResponse, DeleteApplicationOutputError>;


    #[doc="<p>Deletes a reference data source configuration from the specified application configuration.</p> <p>If the application is running, Amazon Kinesis Analytics immediately removes the in-application table that you created using the <a>AddApplicationReferenceDataSource</a> operation. </p> <p>This operation requires permissions to perform the <code>kinesisanalytics.DeleteApplicationReferenceDataSource</code> action.</p>"]
    fn delete_application_reference_data_source(&self, input: &DeleteApplicationReferenceDataSourceRequest)  -> Result<DeleteApplicationReferenceDataSourceResponse, DeleteApplicationReferenceDataSourceError>;


    #[doc="<p>Returns information about a specific Amazon Kinesis Analytics application.</p> <p>If you want to retrieve a list of all applications in your account, use the <a>ListApplications</a> operation.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:DescribeApplication</code> action. You can use <code>DescribeApplication</code> to get the current application versionId, which you need to call other operations such as <code>Update</code>. </p>"]
    fn describe_application(&self,
                            input: &DescribeApplicationRequest)
                            -> Result<DescribeApplicationResponse, DescribeApplicationError>;


    #[doc="<p>Infers a schema by evaluating sample records on the specified streaming source (Amazon Kinesis stream or Amazon Kinesis Firehose delivery stream). In the response, the operation returns the inferred schema and also the sample records that the operation used to infer the schema.</p> <p> You can use the inferred schema when configuring a streaming source for your application. For conceptual information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. Note that when you create an application using the Amazon Kinesis Analytics console, the console uses this operation to infer a schema and show it in the console user interface. </p> <p> This operation requires permissions to perform the <code>kinesisanalytics:DiscoverInputSchema</code> action. </p>"]
    fn discover_input_schema(&self,
                             input: &DiscoverInputSchemaRequest)
                             -> Result<DiscoverInputSchemaResponse, DiscoverInputSchemaError>;


    #[doc="<p>Returns a list of Amazon Kinesis Analytics applications in your account. For each application, the response includes the application name, Amazon Resource Name (ARN), and status. If the response returns the <code>HasMoreApplications</code> value as true, you can send another request by adding the <code>ExclusiveStartApplicationName</code> in the request body, and set the value of this to the last application name from the previous response. </p> <p>If you want detailed information about a specific application, use <a>DescribeApplication</a>.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:ListApplications</code> action.</p>"]
    fn list_applications(&self,
                         input: &ListApplicationsRequest)
                         -> Result<ListApplicationsResponse, ListApplicationsError>;


    #[doc="<p>Starts the specified Amazon Kinesis Analytics application. After creating an application, you must exclusively call this operation to start your application.</p> <p>After the application starts, it begins consuming the input data, processes it, and writes the output to the configured destination.</p> <p> The application status must be <code>READY</code> for you to start an application. You can get the application status in the console or using the <a>DescribeApplication</a> operation.</p> <p>After you start the application, you can stop the application from processing the input by calling the <a>StopApplication</a> operation.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:StartApplication</code> action.</p>"]
    fn start_application(&self,
                         input: &StartApplicationRequest)
                         -> Result<StartApplicationResponse, StartApplicationError>;


    #[doc="<p>Stops the application from processing input data. You can stop an application only if it is in the running state. You can use the <a>DescribeApplication</a> operation to find the application state. After the application is stopped, Amazon Kinesis Analytics stops reading data from the input, the application stops processing data, and there is no output written to the destination. </p> <p>This operation requires permissions to perform the <code>kinesisanalytics:StopApplication</code> action.</p>"]
    fn stop_application(&self,
                        input: &StopApplicationRequest)
                        -> Result<StopApplicationResponse, StopApplicationError>;


    #[doc="<p>Updates an existing Amazon Kinesis Analytics application. Using this API, you can update application code, input configuration, and output configuration. </p> <p>Note that Amazon Kinesis Analytics updates the <code>CurrentApplicationVersionId</code> each time you update your application. </p> <p>This operation requires permission for the <code>kinesisanalytics:UpdateApplication</code> action.</p>"]
    fn update_application(&self,
                          input: &UpdateApplicationRequest)
                          -> Result<UpdateApplicationResponse, UpdateApplicationError>;
}
/// A client for the Kinesis Analytics API.
pub struct KinesisAnalyticsClient<P, D>
    where P: ProvideAwsCredentials,
          D: DispatchSignedRequest
{
    credentials_provider: P,
    region: region::Region,
    dispatcher: D,
}

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

impl<P, D> KinesisAnalytics for KinesisAnalyticsClient<P, D>
    where P: ProvideAwsCredentials,
          D: DispatchSignedRequest
{
    #[doc="<p>Adds a CloudWatch log stream to monitor application configuration errors. For more information about using CloudWatch log streams with Amazon Kinesis Analytics applications, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html\">Monitoring Configuration Errors</a>.</p>"]
fn add_application_cloud_watch_logging_option(&self, input: &AddApplicationCloudWatchLoggingOptionRequest)  -> Result<AddApplicationCloudWatchLoggingOptionResponse, AddApplicationCloudWatchLoggingOptionError>{
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<AddApplicationCloudWatchLoggingOptionResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => Err(AddApplicationCloudWatchLoggingOptionError::from_body(String::from_utf8_lossy(&response.body).as_ref())),
        }
    }


    #[doc="<p> Adds a streaming source to your Amazon Kinesis application. For conceptual information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. </p> <p>You can add a streaming source either when you create an application or you can use this operation to add a streaming source after you create an application. For more information, see <a>CreateApplication</a>.</p> <p>Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the <a>DescribeApplication</a> operation to find the current application version. </p> <p>This operation requires permissions to perform the <code>kinesisanalytics:AddApplicationInput</code> action.</p>"]
    fn add_application_input(&self,
                             input: &AddApplicationInputRequest)
                             -> Result<AddApplicationInputResponse, AddApplicationInputError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<AddApplicationInputResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(AddApplicationInputError::from_body(String::from_utf8_lossy(&response.body)
                                                            .as_ref()))
            }
        }
    }


    #[doc="<p>Adds an external destination to your Amazon Kinesis Analytics application.</p> <p>If you want Amazon Kinesis Analytics to deliver data from an in-application stream within your application to an external destination (such as an Amazon Kinesis stream or a Firehose delivery stream), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination.</p> <p> You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors. For conceptual information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html\">Understanding Application Output (Destination)</a>. </p> <p> Note that any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the <a>DescribeApplication</a> operation to find the current application version.</p> <p>For the limits on the number of application inputs and outputs you can configure, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html\">Limits</a>.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:AddApplicationOutput</code> action.</p>"]
    fn add_application_output
        (&self,
         input: &AddApplicationOutputRequest)
         -> Result<AddApplicationOutputResponse, AddApplicationOutputError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<AddApplicationOutputResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(AddApplicationOutputError::from_body(String::from_utf8_lossy(&response.body)
                                                             .as_ref()))
            }
        }
    }


    #[doc="<p>Adds a reference data source to an existing application.</p> <p>Amazon Kinesis Analytics reads reference data (that is, an Amazon S3 object) and creates an in-application table within your application. In the request, you provide the source (S3 bucket name and object key name), name of the in-application table to create, and the necessary mapping information that describes how data in Amazon S3 object maps to columns in the resulting in-application table.</p> <p> For conceptual information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. For the limits on data sources you can add to your application, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html\">Limits</a>. </p> <p> This operation requires permissions to perform the <code>kinesisanalytics:AddApplicationOutput</code> action. </p>"]
    fn add_application_reference_data_source
        (&self,
         input: &AddApplicationReferenceDataSourceRequest)
         -> Result<AddApplicationReferenceDataSourceResponse,
                   AddApplicationReferenceDataSourceError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<AddApplicationReferenceDataSourceResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => Err(AddApplicationReferenceDataSourceError::from_body(String::from_utf8_lossy(&response.body).as_ref())),
        }
    }


    #[doc="<p> Creates an Amazon Kinesis Analytics application. You can configure each application with one streaming source as input, application code to process the input, and up to five streaming destinations where you want Amazon Kinesis Analytics to write the output data from your application. For an overview, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works.html\">How it Works</a>. </p> <p>In the input configuration, you map the streaming source to an in-application stream, which you can think of as a constantly updating table. In the mapping, you must provide a schema for the in-application stream and map each data column in the in-application stream to a data element in the streaming source.</p> <p>Your application code is one or more SQL statements that read input data, transform it, and generate output. Your application code can create one or more SQL artifacts like SQL streams or pumps.</p> <p>In the output configuration, you can configure the application to write data from in-application streams created in your applications to up to five streaming destinations.</p> <p> To read data from your source stream or write data to destination streams, Amazon Kinesis Analytics needs your permissions. You grant these permissions by creating IAM roles. This operation requires permissions to perform the <code>kinesisanalytics:CreateApplication</code> action. </p> <p> For introductory exercises to create an Amazon Kinesis Analytics application, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/getting-started.html\">Getting Started</a>. </p>"]
    fn create_application(&self,
                          input: &CreateApplicationRequest)
                          -> Result<CreateApplicationResponse, CreateApplicationError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<CreateApplicationResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(CreateApplicationError::from_body(String::from_utf8_lossy(&response.body)
                                                          .as_ref()))
            }
        }
    }


    #[doc="<p>Deletes the specified application. Amazon Kinesis Analytics halts application execution and deletes the application, including any application artifacts (such as in-application streams, reference table, and application code).</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:DeleteApplication</code> action.</p>"]
    fn delete_application(&self,
                          input: &DeleteApplicationRequest)
                          -> Result<DeleteApplicationResponse, DeleteApplicationError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<DeleteApplicationResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(DeleteApplicationError::from_body(String::from_utf8_lossy(&response.body)
                                                          .as_ref()))
            }
        }
    }


    #[doc="<p>Deletes a CloudWatch log stream from an application. For more information about using CloudWatch log streams with Amazon Kinesis Analytics applications, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/cloudwatch-monitor-configuration.html\">Monitoring Configuration Errors</a>.</p>"]
fn delete_application_cloud_watch_logging_option(&self, input: &DeleteApplicationCloudWatchLoggingOptionRequest)  -> Result<DeleteApplicationCloudWatchLoggingOptionResponse, DeleteApplicationCloudWatchLoggingOptionError>{
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<DeleteApplicationCloudWatchLoggingOptionResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => Err(DeleteApplicationCloudWatchLoggingOptionError::from_body(String::from_utf8_lossy(&response.body).as_ref())),
        }
    }


    #[doc="<p>Deletes output destination configuration from your application configuration. Amazon Kinesis Analytics will no longer write data from the corresponding in-application stream to the external output destination.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:DeleteApplicationOutput</code> action.</p>"]
    fn delete_application_output
        (&self,
         input: &DeleteApplicationOutputRequest)
         -> Result<DeleteApplicationOutputResponse, DeleteApplicationOutputError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<DeleteApplicationOutputResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => Err(DeleteApplicationOutputError::from_body(String::from_utf8_lossy(&response.body).as_ref())),
        }
    }


    #[doc="<p>Deletes a reference data source configuration from the specified application configuration.</p> <p>If the application is running, Amazon Kinesis Analytics immediately removes the in-application table that you created using the <a>AddApplicationReferenceDataSource</a> operation. </p> <p>This operation requires permissions to perform the <code>kinesisanalytics.DeleteApplicationReferenceDataSource</code> action.</p>"]
fn delete_application_reference_data_source(&self, input: &DeleteApplicationReferenceDataSourceRequest)  -> Result<DeleteApplicationReferenceDataSourceResponse, DeleteApplicationReferenceDataSourceError>{
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<DeleteApplicationReferenceDataSourceResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => Err(DeleteApplicationReferenceDataSourceError::from_body(String::from_utf8_lossy(&response.body).as_ref())),
        }
    }


    #[doc="<p>Returns information about a specific Amazon Kinesis Analytics application.</p> <p>If you want to retrieve a list of all applications in your account, use the <a>ListApplications</a> operation.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:DescribeApplication</code> action. You can use <code>DescribeApplication</code> to get the current application versionId, which you need to call other operations such as <code>Update</code>. </p>"]
    fn describe_application(&self,
                            input: &DescribeApplicationRequest)
                            -> Result<DescribeApplicationResponse, DescribeApplicationError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<DescribeApplicationResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(DescribeApplicationError::from_body(String::from_utf8_lossy(&response.body)
                                                            .as_ref()))
            }
        }
    }


    #[doc="<p>Infers a schema by evaluating sample records on the specified streaming source (Amazon Kinesis stream or Amazon Kinesis Firehose delivery stream). In the response, the operation returns the inferred schema and also the sample records that the operation used to infer the schema.</p> <p> You can use the inferred schema when configuring a streaming source for your application. For conceptual information, see <a href=\"http://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-input.html\">Configuring Application Input</a>. Note that when you create an application using the Amazon Kinesis Analytics console, the console uses this operation to infer a schema and show it in the console user interface. </p> <p> This operation requires permissions to perform the <code>kinesisanalytics:DiscoverInputSchema</code> action. </p>"]
    fn discover_input_schema(&self,
                             input: &DiscoverInputSchemaRequest)
                             -> Result<DiscoverInputSchemaResponse, DiscoverInputSchemaError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<DiscoverInputSchemaResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(DiscoverInputSchemaError::from_body(String::from_utf8_lossy(&response.body)
                                                            .as_ref()))
            }
        }
    }


    #[doc="<p>Returns a list of Amazon Kinesis Analytics applications in your account. For each application, the response includes the application name, Amazon Resource Name (ARN), and status. If the response returns the <code>HasMoreApplications</code> value as true, you can send another request by adding the <code>ExclusiveStartApplicationName</code> in the request body, and set the value of this to the last application name from the previous response. </p> <p>If you want detailed information about a specific application, use <a>DescribeApplication</a>.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:ListApplications</code> action.</p>"]
    fn list_applications(&self,
                         input: &ListApplicationsRequest)
                         -> Result<ListApplicationsResponse, ListApplicationsError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<ListApplicationsResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(ListApplicationsError::from_body(String::from_utf8_lossy(&response.body)
                                                         .as_ref()))
            }
        }
    }


    #[doc="<p>Starts the specified Amazon Kinesis Analytics application. After creating an application, you must exclusively call this operation to start your application.</p> <p>After the application starts, it begins consuming the input data, processes it, and writes the output to the configured destination.</p> <p> The application status must be <code>READY</code> for you to start an application. You can get the application status in the console or using the <a>DescribeApplication</a> operation.</p> <p>After you start the application, you can stop the application from processing the input by calling the <a>StopApplication</a> operation.</p> <p>This operation requires permissions to perform the <code>kinesisanalytics:StartApplication</code> action.</p>"]
    fn start_application(&self,
                         input: &StartApplicationRequest)
                         -> Result<StartApplicationResponse, StartApplicationError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<StartApplicationResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(StartApplicationError::from_body(String::from_utf8_lossy(&response.body)
                                                         .as_ref()))
            }
        }
    }


    #[doc="<p>Stops the application from processing input data. You can stop an application only if it is in the running state. You can use the <a>DescribeApplication</a> operation to find the application state. After the application is stopped, Amazon Kinesis Analytics stops reading data from the input, the application stops processing data, and there is no output written to the destination. </p> <p>This operation requires permissions to perform the <code>kinesisanalytics:StopApplication</code> action.</p>"]
    fn stop_application(&self,
                        input: &StopApplicationRequest)
                        -> Result<StopApplicationResponse, StopApplicationError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<StopApplicationResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(StopApplicationError::from_body(String::from_utf8_lossy(&response.body)
                                                        .as_ref()))
            }
        }
    }


    #[doc="<p>Updates an existing Amazon Kinesis Analytics application. Using this API, you can update application code, input configuration, and output configuration. </p> <p>Note that Amazon Kinesis Analytics updates the <code>CurrentApplicationVersionId</code> each time you update your application. </p> <p>This operation requires permission for the <code>kinesisanalytics:UpdateApplication</code> action.</p>"]
    fn update_application(&self,
                          input: &UpdateApplicationRequest)
                          -> Result<UpdateApplicationResponse, UpdateApplicationError> {
        let mut request = SignedRequest::new("POST", "kinesisanalytics", self.region, "/");

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

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

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

        match response.status {
            StatusCode::Ok => {
                            Ok(serde_json::from_str::<UpdateApplicationResponse>(String::from_utf8_lossy(&response.body).as_ref()).unwrap())
                        }
            _ => {
                Err(UpdateApplicationError::from_body(String::from_utf8_lossy(&response.body)
                                                          .as_ref()))
            }
        }
    }
}

#[cfg(test)]
mod protocol_tests {}