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
// ================================================================= // // * WARNING * // // This file is generated! // // Changes made to this file will be overwritten. If changes are // required to the generated code, the service_crategen project // must be updated to generate the changes. // // ================================================================= use std::error::Error; use std::fmt; #[allow(warnings)] use futures::future; use futures::Future; use rusoto_core::credential::ProvideAwsCredentials; use rusoto_core::region; use rusoto_core::request::{BufferedHttpResponse, DispatchSignedRequest}; use rusoto_core::{Client, RusotoError, RusotoFuture}; use rusoto_core::proto; use rusoto_core::signature::SignedRequest; use serde_json; /// <p>Describes hints for the buffering to perform before delivering data to the destination. These options are treated as hints, and therefore Kinesis Data Firehose might choose to use different values when it is optimal.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct BufferingHints { /// <p>Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.</p> #[serde(rename = "IntervalInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub interval_in_seconds: Option<i64>, /// <p>Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.</p> <p>We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.</p> #[serde(rename = "SizeInMBs")] #[serde(skip_serializing_if = "Option::is_none")] pub size_in_m_bs: Option<i64>, } /// <p>Describes the Amazon CloudWatch logging options for your delivery stream.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct CloudWatchLoggingOptions { /// <p>Enables or disables CloudWatch logging.</p> #[serde(rename = "Enabled")] #[serde(skip_serializing_if = "Option::is_none")] pub enabled: Option<bool>, /// <p>The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.</p> #[serde(rename = "LogGroupName")] #[serde(skip_serializing_if = "Option::is_none")] pub log_group_name: Option<String>, /// <p>The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.</p> #[serde(rename = "LogStreamName")] #[serde(skip_serializing_if = "Option::is_none")] pub log_stream_name: Option<String>, } /// <p>Describes a <code>COPY</code> command for Amazon Redshift.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct CopyCommand { /// <p>Optional parameters to use with the Amazon Redshift <code>COPY</code> command. For more information, see the "Optional Parameters" section of <a href="http://docs.aws.amazon.com/redshift/latest/dg/r_COPY.html">Amazon Redshift COPY command</a>. Some possible examples that would apply to Kinesis Data Firehose are as follows:</p> <p> <code>delimiter '\t' lzop;</code> - fields are delimited with "\t" (TAB character) and compressed using lzop.</p> <p> <code>delimiter '|'</code> - fields are delimited with "|" (this is the default delimiter).</p> <p> <code>delimiter '|' escape</code> - the delimiter should be escaped.</p> <p> <code>fixedwidth 'venueid:3,venuename:25,venuecity:12,venuestate:2,venueseats:6'</code> - fields are fixed width in the source, with each width specified after every column in the table.</p> <p> <code>JSON 's3://mybucket/jsonpaths.txt'</code> - data is in JSON format, and the path specified is the format of the data.</p> <p>For more examples, see <a href="http://docs.aws.amazon.com/redshift/latest/dg/r_COPY_command_examples.html">Amazon Redshift COPY command examples</a>.</p> #[serde(rename = "CopyOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub copy_options: Option<String>, /// <p>A comma-separated list of column names.</p> #[serde(rename = "DataTableColumns")] #[serde(skip_serializing_if = "Option::is_none")] pub data_table_columns: Option<String>, /// <p>The name of the target table. The table must already exist in the database.</p> #[serde(rename = "DataTableName")] pub data_table_name: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct CreateDeliveryStreamInput { /// <p>The name of the delivery stream. This name must be unique per AWS account in the same AWS Region. If the delivery streams are in different accounts or different Regions, you can have multiple delivery streams with the same name.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, /// <p><p>The delivery stream type. This parameter can be one of the following values:</p> <ul> <li> <p> <code>DirectPut</code>: Provider applications access the delivery stream directly.</p> </li> <li> <p> <code>KinesisStreamAsSource</code>: The delivery stream uses a Kinesis data stream as a source.</p> </li> </ul></p> #[serde(rename = "DeliveryStreamType")] #[serde(skip_serializing_if = "Option::is_none")] pub delivery_stream_type: Option<String>, /// <p>The destination in Amazon ES. You can specify only one destination.</p> #[serde(rename = "ElasticsearchDestinationConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub elasticsearch_destination_configuration: Option<ElasticsearchDestinationConfiguration>, /// <p>The destination in Amazon S3. You can specify only one destination.</p> #[serde(rename = "ExtendedS3DestinationConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub extended_s3_destination_configuration: Option<ExtendedS3DestinationConfiguration>, /// <p>When a Kinesis data stream is used as the source for the delivery stream, a <a>KinesisStreamSourceConfiguration</a> containing the Kinesis data stream Amazon Resource Name (ARN) and the role ARN for the source stream.</p> #[serde(rename = "KinesisStreamSourceConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub kinesis_stream_source_configuration: Option<KinesisStreamSourceConfiguration>, /// <p>The destination in Amazon Redshift. You can specify only one destination.</p> #[serde(rename = "RedshiftDestinationConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub redshift_destination_configuration: Option<RedshiftDestinationConfiguration>, /// <p>The destination in Splunk. You can specify only one destination.</p> #[serde(rename = "SplunkDestinationConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub splunk_destination_configuration: Option<SplunkDestinationConfiguration>, /// <p>A set of tags to assign to the delivery stream. A tag is a key-value pair that you can define and assign to AWS resources. Tags are metadata. For example, you can add friendly names and descriptions or other types of information that can help you distinguish the delivery stream. For more information about tags, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation Tags</a> in the AWS Billing and Cost Management User Guide.</p> <p>You can specify up to 50 tags when creating a delivery stream.</p> #[serde(rename = "Tags")] #[serde(skip_serializing_if = "Option::is_none")] pub tags: Option<Vec<Tag>>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct CreateDeliveryStreamOutput { /// <p>The ARN of the delivery stream.</p> #[serde(rename = "DeliveryStreamARN")] #[serde(skip_serializing_if = "Option::is_none")] pub delivery_stream_arn: Option<String>, } /// <p>Specifies that you want Kinesis Data Firehose to convert data from the JSON format to the Parquet or ORC format before writing it to Amazon S3. Kinesis Data Firehose uses the serializer and deserializer that you specify, in addition to the column information from the AWS Glue table, to deserialize your input data from JSON and then serialize it to the Parquet or ORC format. For more information, see <a href="https://docs.aws.amazon.com/firehose/latest/dev/record-format-conversion.html">Kinesis Data Firehose Record Format Conversion</a>.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct DataFormatConversionConfiguration { /// <p>Defaults to <code>true</code>. Set it to <code>false</code> if you want to disable format conversion while preserving the configuration details.</p> #[serde(rename = "Enabled")] #[serde(skip_serializing_if = "Option::is_none")] pub enabled: Option<bool>, /// <p>Specifies the deserializer that you want Kinesis Data Firehose to use to convert the format of your data from JSON.</p> #[serde(rename = "InputFormatConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub input_format_configuration: Option<InputFormatConfiguration>, /// <p>Specifies the serializer that you want Kinesis Data Firehose to use to convert the format of your data to the Parquet or ORC format.</p> #[serde(rename = "OutputFormatConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub output_format_configuration: Option<OutputFormatConfiguration>, /// <p>Specifies the AWS Glue Data Catalog table that contains the column information.</p> #[serde(rename = "SchemaConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub schema_configuration: Option<SchemaConfiguration>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DeleteDeliveryStreamInput { /// <p>The name of the delivery stream.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeleteDeliveryStreamOutput {} /// <p>Contains information about a delivery stream.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeliveryStreamDescription { /// <p>The date and time that the delivery stream was created.</p> #[serde(rename = "CreateTimestamp")] #[serde(skip_serializing_if = "Option::is_none")] pub create_timestamp: Option<f64>, /// <p>The Amazon Resource Name (ARN) of the delivery stream. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "DeliveryStreamARN")] pub delivery_stream_arn: String, /// <p>Indicates the server-side encryption (SSE) status for the delivery stream.</p> #[serde(rename = "DeliveryStreamEncryptionConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub delivery_stream_encryption_configuration: Option<DeliveryStreamEncryptionConfiguration>, /// <p>The name of the delivery stream.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, /// <p>The status of the delivery stream.</p> #[serde(rename = "DeliveryStreamStatus")] pub delivery_stream_status: String, /// <p><p>The delivery stream type. This can be one of the following values:</p> <ul> <li> <p> <code>DirectPut</code>: Provider applications access the delivery stream directly.</p> </li> <li> <p> <code>KinesisStreamAsSource</code>: The delivery stream uses a Kinesis data stream as a source.</p> </li> </ul></p> #[serde(rename = "DeliveryStreamType")] pub delivery_stream_type: String, /// <p>The destinations.</p> #[serde(rename = "Destinations")] pub destinations: Vec<DestinationDescription>, /// <p>Indicates whether there are more destinations available to list.</p> #[serde(rename = "HasMoreDestinations")] pub has_more_destinations: bool, /// <p>The date and time that the delivery stream was last updated.</p> #[serde(rename = "LastUpdateTimestamp")] #[serde(skip_serializing_if = "Option::is_none")] pub last_update_timestamp: Option<f64>, /// <p>If the <code>DeliveryStreamType</code> parameter is <code>KinesisStreamAsSource</code>, a <a>SourceDescription</a> object describing the source Kinesis data stream.</p> #[serde(rename = "Source")] #[serde(skip_serializing_if = "Option::is_none")] pub source: Option<SourceDescription>, /// <p>Each time the destination is updated for a delivery stream, the version ID is changed, and the current version ID is required when updating the destination. This is so that the service knows it is applying the changes to the correct version of the delivery stream.</p> #[serde(rename = "VersionId")] pub version_id: String, } /// <p>Indicates the server-side encryption (SSE) status for the delivery stream.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DeliveryStreamEncryptionConfiguration { /// <p>For a full description of the different values of this status, see <a>StartDeliveryStreamEncryption</a> and <a>StopDeliveryStreamEncryption</a>.</p> #[serde(rename = "Status")] #[serde(skip_serializing_if = "Option::is_none")] pub status: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct DescribeDeliveryStreamInput { /// <p>The name of the delivery stream.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, /// <p>The ID of the destination to start returning the destination information. Kinesis Data Firehose supports one destination per delivery stream.</p> #[serde(rename = "ExclusiveStartDestinationId")] #[serde(skip_serializing_if = "Option::is_none")] pub exclusive_start_destination_id: Option<String>, /// <p>The limit on the number of destinations to return. You can have one destination per delivery stream.</p> #[serde(rename = "Limit")] #[serde(skip_serializing_if = "Option::is_none")] pub limit: Option<i64>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DescribeDeliveryStreamOutput { /// <p>Information about the delivery stream.</p> #[serde(rename = "DeliveryStreamDescription")] pub delivery_stream_description: DeliveryStreamDescription, } /// <p>The deserializer you want Kinesis Data Firehose to use for converting the input data from JSON. Kinesis Data Firehose then serializes the data to its final format using the <a>Serializer</a>. Kinesis Data Firehose supports two types of deserializers: the <a href="https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-JSON">Apache Hive JSON SerDe</a> and the <a href="https://github.com/rcongiu/Hive-JSON-Serde">OpenX JSON SerDe</a>.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Deserializer { /// <p>The native Hive / HCatalog JsonSerDe. Used by Kinesis Data Firehose for deserializing data, which means converting it from the JSON format in preparation for serializing it to the Parquet or ORC format. This is one of two deserializers you can choose, depending on which one offers the functionality you need. The other option is the OpenX SerDe.</p> #[serde(rename = "HiveJsonSerDe")] #[serde(skip_serializing_if = "Option::is_none")] pub hive_json_ser_de: Option<HiveJsonSerDe>, /// <p>The OpenX SerDe. Used by Kinesis Data Firehose for deserializing data, which means converting it from the JSON format in preparation for serializing it to the Parquet or ORC format. This is one of two deserializers you can choose, depending on which one offers the functionality you need. The other option is the native Hive / HCatalog JsonSerDe.</p> #[serde(rename = "OpenXJsonSerDe")] #[serde(skip_serializing_if = "Option::is_none")] pub open_x_json_ser_de: Option<OpenXJsonSerDe>, } /// <p>Describes the destination for a delivery stream.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct DestinationDescription { /// <p>The ID of the destination.</p> #[serde(rename = "DestinationId")] pub destination_id: String, /// <p>The destination in Amazon ES.</p> #[serde(rename = "ElasticsearchDestinationDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub elasticsearch_destination_description: Option<ElasticsearchDestinationDescription>, /// <p>The destination in Amazon S3.</p> #[serde(rename = "ExtendedS3DestinationDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub extended_s3_destination_description: Option<ExtendedS3DestinationDescription>, /// <p>The destination in Amazon Redshift.</p> #[serde(rename = "RedshiftDestinationDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub redshift_destination_description: Option<RedshiftDestinationDescription>, /// <p>[Deprecated] The destination in Amazon S3.</p> #[serde(rename = "S3DestinationDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_destination_description: Option<S3DestinationDescription>, /// <p>The destination in Splunk.</p> #[serde(rename = "SplunkDestinationDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub splunk_destination_description: Option<SplunkDestinationDescription>, } /// <p>Describes the buffering to perform before delivering data to the Amazon ES destination.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ElasticsearchBufferingHints { /// <p>Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300 (5 minutes).</p> #[serde(rename = "IntervalInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub interval_in_seconds: Option<i64>, /// <p>Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.</p> <p>We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.</p> #[serde(rename = "SizeInMBs")] #[serde(skip_serializing_if = "Option::is_none")] pub size_in_m_bs: Option<i64>, } /// <p>Describes the configuration of a destination in Amazon ES.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ElasticsearchDestinationConfiguration { /// <p>The buffering options. If no value is specified, the default values for <code>ElasticsearchBufferingHints</code> are used.</p> #[serde(rename = "BufferingHints")] #[serde(skip_serializing_if = "Option::is_none")] pub buffering_hints: Option<ElasticsearchBufferingHints>, /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The ARN of the Amazon ES domain. The IAM role must have permissions for <code>DescribeElasticsearchDomain</code>, <code>DescribeElasticsearchDomains</code>, and <code>DescribeElasticsearchDomainConfig</code> after assuming the role specified in <b>RoleARN</b>. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "DomainARN")] pub domain_arn: String, /// <p>The Elasticsearch index name.</p> #[serde(rename = "IndexName")] pub index_name: String, /// <p>The Elasticsearch index rotation period. Index rotation appends a timestamp to the <code>IndexName</code> to facilitate the expiration of old data. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#es-index-rotation">Index Rotation for the Amazon ES Destination</a>. The default value is <code>OneDay</code>.</p> #[serde(rename = "IndexRotationPeriod")] #[serde(skip_serializing_if = "Option::is_none")] pub index_rotation_period: Option<String>, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon ES. The default value is 300 (5 minutes).</p> #[serde(rename = "RetryOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub retry_options: Option<ElasticsearchRetryOptions>, /// <p>The Amazon Resource Name (ARN) of the IAM role to be assumed by Kinesis Data Firehose for calling the Amazon ES Configuration API and for indexing documents. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/controlling-access.html#using-iam-s3">Grant Kinesis Data Firehose Access to an Amazon S3 Destination</a> and <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] pub role_arn: String, /// <p>Defines how documents should be delivered to Amazon S3. When it is set to <code>FailedDocumentsOnly</code>, Kinesis Data Firehose writes any documents that could not be indexed to the configured Amazon S3 destination, with <code>elasticsearch-failed/</code> appended to the key prefix. When set to <code>AllDocuments</code>, Kinesis Data Firehose delivers all incoming records to Amazon S3, and also writes failed documents with <code>elasticsearch-failed/</code> appended to the prefix. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#es-s3-backup">Amazon S3 Backup for the Amazon ES Destination</a>. Default value is <code>FailedDocumentsOnly</code>.</p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, /// <p>The configuration for the backup Amazon S3 location.</p> #[serde(rename = "S3Configuration")] pub s3_configuration: S3DestinationConfiguration, /// <p>The Elasticsearch type name. For Elasticsearch 6.x, there can be only one type per index. If you try to specify a new type for an existing index that already has another type, Kinesis Data Firehose returns an error during run time.</p> #[serde(rename = "TypeName")] pub type_name: String, } /// <p>The destination description in Amazon ES.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ElasticsearchDestinationDescription { /// <p>The buffering options.</p> #[serde(rename = "BufferingHints")] #[serde(skip_serializing_if = "Option::is_none")] pub buffering_hints: Option<ElasticsearchBufferingHints>, /// <p>The Amazon CloudWatch logging options.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The ARN of the Amazon ES domain. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "DomainARN")] #[serde(skip_serializing_if = "Option::is_none")] pub domain_arn: Option<String>, /// <p>The Elasticsearch index name.</p> #[serde(rename = "IndexName")] #[serde(skip_serializing_if = "Option::is_none")] pub index_name: Option<String>, /// <p>The Elasticsearch index rotation period</p> #[serde(rename = "IndexRotationPeriod")] #[serde(skip_serializing_if = "Option::is_none")] pub index_rotation_period: Option<String>, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The Amazon ES retry options.</p> #[serde(rename = "RetryOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub retry_options: Option<ElasticsearchRetryOptions>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] #[serde(skip_serializing_if = "Option::is_none")] pub role_arn: Option<String>, /// <p>The Amazon S3 backup mode.</p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, /// <p>The Amazon S3 destination.</p> #[serde(rename = "S3DestinationDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_destination_description: Option<S3DestinationDescription>, /// <p>The Elasticsearch type name.</p> #[serde(rename = "TypeName")] #[serde(skip_serializing_if = "Option::is_none")] pub type_name: Option<String>, } /// <p>Describes an update for a destination in Amazon ES.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ElasticsearchDestinationUpdate { /// <p>The buffering options. If no value is specified, <code>ElasticsearchBufferingHints</code> object default values are used. </p> #[serde(rename = "BufferingHints")] #[serde(skip_serializing_if = "Option::is_none")] pub buffering_hints: Option<ElasticsearchBufferingHints>, /// <p>The CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The ARN of the Amazon ES domain. The IAM role must have permissions for <code>DescribeElasticsearchDomain</code>, <code>DescribeElasticsearchDomains</code>, and <code>DescribeElasticsearchDomainConfig</code> after assuming the IAM role specified in <code>RoleARN</code>. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "DomainARN")] #[serde(skip_serializing_if = "Option::is_none")] pub domain_arn: Option<String>, /// <p>The Elasticsearch index name.</p> #[serde(rename = "IndexName")] #[serde(skip_serializing_if = "Option::is_none")] pub index_name: Option<String>, /// <p>The Elasticsearch index rotation period. Index rotation appends a timestamp to <code>IndexName</code> to facilitate the expiration of old data. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#es-index-rotation">Index Rotation for the Amazon ES Destination</a>. Default value is <code>OneDay</code>.</p> #[serde(rename = "IndexRotationPeriod")] #[serde(skip_serializing_if = "Option::is_none")] pub index_rotation_period: Option<String>, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon ES. The default value is 300 (5 minutes).</p> #[serde(rename = "RetryOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub retry_options: Option<ElasticsearchRetryOptions>, /// <p>The Amazon Resource Name (ARN) of the IAM role to be assumed by Kinesis Data Firehose for calling the Amazon ES Configuration API and for indexing documents. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/controlling-access.html#using-iam-s3">Grant Kinesis Data Firehose Access to an Amazon S3 Destination</a> and <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] #[serde(skip_serializing_if = "Option::is_none")] pub role_arn: Option<String>, /// <p>The Amazon S3 destination.</p> #[serde(rename = "S3Update")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_update: Option<S3DestinationUpdate>, /// <p>The Elasticsearch type name. For Elasticsearch 6.x, there can be only one type per index. If you try to specify a new type for an existing index that already has another type, Kinesis Data Firehose returns an error during runtime.</p> #[serde(rename = "TypeName")] #[serde(skip_serializing_if = "Option::is_none")] pub type_name: Option<String>, } /// <p>Configures retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon ES.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ElasticsearchRetryOptions { /// <p>After an initial failure to deliver to Amazon ES, the total amount of time during which Kinesis Data Firehose retries delivery (including the first attempt). After this time has elapsed, the failed documents are written to Amazon S3. Default value is 300 seconds (5 minutes). A value of 0 (zero) results in no retries.</p> #[serde(rename = "DurationInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub duration_in_seconds: Option<i64>, } /// <p>Describes the encryption for a destination in Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct EncryptionConfiguration { /// <p>The encryption key.</p> #[serde(rename = "KMSEncryptionConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub kms_encryption_config: Option<KMSEncryptionConfig>, /// <p>Specifically override existing encryption information to ensure that no encryption is used.</p> #[serde(rename = "NoEncryptionConfig")] #[serde(skip_serializing_if = "Option::is_none")] pub no_encryption_config: Option<String>, } /// <p>Describes the configuration of a destination in Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ExtendedS3DestinationConfiguration { /// <p>The ARN of the S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "BucketARN")] pub bucket_arn: String, /// <p>The buffering option.</p> #[serde(rename = "BufferingHints")] #[serde(skip_serializing_if = "Option::is_none")] pub buffering_hints: Option<BufferingHints>, /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The compression format. If no value is specified, the default is UNCOMPRESSED.</p> #[serde(rename = "CompressionFormat")] #[serde(skip_serializing_if = "Option::is_none")] pub compression_format: Option<String>, /// <p>The serializer, deserializer, and schema for converting data from the JSON format to the Parquet or ORC format before writing it to Amazon S3.</p> #[serde(rename = "DataFormatConversionConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub data_format_conversion_configuration: Option<DataFormatConversionConfiguration>, /// <p>The encryption configuration. If no value is specified, the default is no encryption.</p> #[serde(rename = "EncryptionConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_configuration: Option<EncryptionConfiguration>, /// <p>A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3. This prefix appears immediately following the bucket name. </p> #[serde(rename = "ErrorOutputPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub error_output_prefix: Option<String>, /// <p>The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered Amazon S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name">Amazon S3 Object Name Format</a> in the <i>Amazon Kinesis Data Firehose Developer Guide</i>.</p> #[serde(rename = "Prefix")] #[serde(skip_serializing_if = "Option::is_none")] pub prefix: Option<String>, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] pub role_arn: String, /// <p>The configuration for backup in Amazon S3.</p> #[serde(rename = "S3BackupConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_configuration: Option<S3DestinationConfiguration>, /// <p>The Amazon S3 backup mode.</p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, } /// <p>Describes a destination in Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ExtendedS3DestinationDescription { /// <p>The ARN of the S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "BucketARN")] pub bucket_arn: String, /// <p>The buffering option.</p> #[serde(rename = "BufferingHints")] pub buffering_hints: BufferingHints, /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The compression format. If no value is specified, the default is <code>UNCOMPRESSED</code>.</p> #[serde(rename = "CompressionFormat")] pub compression_format: String, /// <p>The serializer, deserializer, and schema for converting data from the JSON format to the Parquet or ORC format before writing it to Amazon S3.</p> #[serde(rename = "DataFormatConversionConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub data_format_conversion_configuration: Option<DataFormatConversionConfiguration>, /// <p>The encryption configuration. If no value is specified, the default is no encryption.</p> #[serde(rename = "EncryptionConfiguration")] pub encryption_configuration: EncryptionConfiguration, /// <p>A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3. This prefix appears immediately following the bucket name.</p> #[serde(rename = "ErrorOutputPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub error_output_prefix: Option<String>, /// <p>The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered Amazon S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name">Amazon S3 Object Name Format</a> in the <i>Amazon Kinesis Data Firehose Developer Guide</i>.</p> #[serde(rename = "Prefix")] #[serde(skip_serializing_if = "Option::is_none")] pub prefix: Option<String>, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] pub role_arn: String, /// <p>The configuration for backup in Amazon S3.</p> #[serde(rename = "S3BackupDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_description: Option<S3DestinationDescription>, /// <p>The Amazon S3 backup mode.</p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, } /// <p>Describes an update for a destination in Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ExtendedS3DestinationUpdate { /// <p>The ARN of the S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "BucketARN")] #[serde(skip_serializing_if = "Option::is_none")] pub bucket_arn: Option<String>, /// <p>The buffering option.</p> #[serde(rename = "BufferingHints")] #[serde(skip_serializing_if = "Option::is_none")] pub buffering_hints: Option<BufferingHints>, /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The compression format. If no value is specified, the default is <code>UNCOMPRESSED</code>. </p> #[serde(rename = "CompressionFormat")] #[serde(skip_serializing_if = "Option::is_none")] pub compression_format: Option<String>, /// <p>The serializer, deserializer, and schema for converting data from the JSON format to the Parquet or ORC format before writing it to Amazon S3.</p> #[serde(rename = "DataFormatConversionConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub data_format_conversion_configuration: Option<DataFormatConversionConfiguration>, /// <p>The encryption configuration. If no value is specified, the default is no encryption.</p> #[serde(rename = "EncryptionConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_configuration: Option<EncryptionConfiguration>, /// <p>A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3. This prefix appears immediately following the bucket name.</p> #[serde(rename = "ErrorOutputPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub error_output_prefix: Option<String>, /// <p>The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered Amazon S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name">Amazon S3 Object Name Format</a> in the <i>Amazon Kinesis Data Firehose Developer Guide</i>.</p> #[serde(rename = "Prefix")] #[serde(skip_serializing_if = "Option::is_none")] pub prefix: Option<String>, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] #[serde(skip_serializing_if = "Option::is_none")] pub role_arn: Option<String>, /// <p>Enables or disables Amazon S3 backup mode.</p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, /// <p>The Amazon S3 destination for backup.</p> #[serde(rename = "S3BackupUpdate")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_update: Option<S3DestinationUpdate>, } /// <p>The native Hive / HCatalog JsonSerDe. Used by Kinesis Data Firehose for deserializing data, which means converting it from the JSON format in preparation for serializing it to the Parquet or ORC format. This is one of two deserializers you can choose, depending on which one offers the functionality you need. The other option is the OpenX SerDe.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct HiveJsonSerDe { /// <p>Indicates how you want Kinesis Data Firehose to parse the date and timestamps that may be present in your input data JSON. To specify these format strings, follow the pattern syntax of JodaTime's DateTimeFormat format strings. For more information, see <a href="https://www.joda.org/joda-time/apidocs/org/joda/time/format/DateTimeFormat.html">Class DateTimeFormat</a>. You can also use the special value <code>millis</code> to parse timestamps in epoch milliseconds. If you don't specify a format, Kinesis Data Firehose uses <code>java.sql.Timestamp::valueOf</code> by default.</p> #[serde(rename = "TimestampFormats")] #[serde(skip_serializing_if = "Option::is_none")] pub timestamp_formats: Option<Vec<String>>, } /// <p>Specifies the deserializer you want to use to convert the format of the input data.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct InputFormatConfiguration { /// <p>Specifies which deserializer to use. You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. If both are non-null, the server rejects the request.</p> #[serde(rename = "Deserializer")] #[serde(skip_serializing_if = "Option::is_none")] pub deserializer: Option<Deserializer>, } /// <p>Describes an encryption key for a destination in Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct KMSEncryptionConfig { /// <p>The Amazon Resource Name (ARN) of the encryption key. Must belong to the same AWS Region as the destination Amazon S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "AWSKMSKeyARN")] pub awskms_key_arn: String, } /// <p>The stream and role Amazon Resource Names (ARNs) for a Kinesis data stream used as the source for a delivery stream.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct KinesisStreamSourceConfiguration { /// <p>The ARN of the source Kinesis data stream. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kinesis-streams">Amazon Kinesis Data Streams ARN Format</a>.</p> #[serde(rename = "KinesisStreamARN")] pub kinesis_stream_arn: String, /// <p>The ARN of the role that provides access to the source Kinesis data stream. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-iam">AWS Identity and Access Management (IAM) ARN Format</a>.</p> #[serde(rename = "RoleARN")] pub role_arn: String, } /// <p>Details about a Kinesis data stream used as the source for a Kinesis Data Firehose delivery stream.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct KinesisStreamSourceDescription { /// <p>Kinesis Data Firehose starts retrieving records from the Kinesis data stream starting with this timestamp.</p> #[serde(rename = "DeliveryStartTimestamp")] #[serde(skip_serializing_if = "Option::is_none")] pub delivery_start_timestamp: Option<f64>, /// <p>The Amazon Resource Name (ARN) of the source Kinesis data stream. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kinesis-streams">Amazon Kinesis Data Streams ARN Format</a>.</p> #[serde(rename = "KinesisStreamARN")] #[serde(skip_serializing_if = "Option::is_none")] pub kinesis_stream_arn: Option<String>, /// <p>The ARN of the role used by the source Kinesis data stream. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-iam">AWS Identity and Access Management (IAM) ARN Format</a>.</p> #[serde(rename = "RoleARN")] #[serde(skip_serializing_if = "Option::is_none")] pub role_arn: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListDeliveryStreamsInput { /// <p>The delivery stream type. This can be one of the following values:</p> <ul> <li> <p> <code>DirectPut</code>: Provider applications access the delivery stream directly.</p> </li> <li> <p> <code>KinesisStreamAsSource</code>: The delivery stream uses a Kinesis data stream as a source.</p> </li> </ul> <p>This parameter is optional. If this parameter is omitted, delivery streams of all types are returned.</p> #[serde(rename = "DeliveryStreamType")] #[serde(skip_serializing_if = "Option::is_none")] pub delivery_stream_type: Option<String>, /// <p>The list of delivery streams returned by this call to <code>ListDeliveryStreams</code> will start with the delivery stream whose name comes alphabetically immediately after the name you specify in <code>ExclusiveStartDeliveryStreamName</code>.</p> #[serde(rename = "ExclusiveStartDeliveryStreamName")] #[serde(skip_serializing_if = "Option::is_none")] pub exclusive_start_delivery_stream_name: Option<String>, /// <p>The maximum number of delivery streams to list. The default value is 10.</p> #[serde(rename = "Limit")] #[serde(skip_serializing_if = "Option::is_none")] pub limit: Option<i64>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListDeliveryStreamsOutput { /// <p>The names of the delivery streams.</p> #[serde(rename = "DeliveryStreamNames")] pub delivery_stream_names: Vec<String>, /// <p>Indicates whether there are more delivery streams available to list.</p> #[serde(rename = "HasMoreDeliveryStreams")] pub has_more_delivery_streams: bool, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct ListTagsForDeliveryStreamInput { /// <p>The name of the delivery stream whose tags you want to list.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, /// <p>The key to use as the starting point for the list of tags. If you set this parameter, <code>ListTagsForDeliveryStream</code> gets all tags that occur after <code>ExclusiveStartTagKey</code>.</p> #[serde(rename = "ExclusiveStartTagKey")] #[serde(skip_serializing_if = "Option::is_none")] pub exclusive_start_tag_key: Option<String>, /// <p>The number of tags to return. If this number is less than the total number of tags associated with the delivery stream, <code>HasMoreTags</code> is set to <code>true</code> in the response. To list additional tags, set <code>ExclusiveStartTagKey</code> to the last key in the response. </p> #[serde(rename = "Limit")] #[serde(skip_serializing_if = "Option::is_none")] pub limit: Option<i64>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct ListTagsForDeliveryStreamOutput { /// <p>If this is <code>true</code> in the response, more tags are available. To list the remaining tags, set <code>ExclusiveStartTagKey</code> to the key of the last tag returned and call <code>ListTagsForDeliveryStream</code> again.</p> #[serde(rename = "HasMoreTags")] pub has_more_tags: bool, /// <p>A list of tags associated with <code>DeliveryStreamName</code>, starting with the first tag after <code>ExclusiveStartTagKey</code> and up to the specified <code>Limit</code>.</p> #[serde(rename = "Tags")] pub tags: Vec<Tag>, } /// <p>The OpenX SerDe. Used by Kinesis Data Firehose for deserializing data, which means converting it from the JSON format in preparation for serializing it to the Parquet or ORC format. This is one of two deserializers you can choose, depending on which one offers the functionality you need. The other option is the native Hive / HCatalog JsonSerDe.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct OpenXJsonSerDe { /// <p>When set to <code>true</code>, which is the default, Kinesis Data Firehose converts JSON keys to lowercase before deserializing them.</p> #[serde(rename = "CaseInsensitive")] #[serde(skip_serializing_if = "Option::is_none")] pub case_insensitive: Option<bool>, /// <p>Maps column names to JSON keys that aren't identical to the column names. This is useful when the JSON contains keys that are Hive keywords. For example, <code>timestamp</code> is a Hive keyword. If you have a JSON key named <code>timestamp</code>, set this parameter to <code>{"ts": "timestamp"}</code> to map this key to a column named <code>ts</code>.</p> #[serde(rename = "ColumnToJsonKeyMappings")] #[serde(skip_serializing_if = "Option::is_none")] pub column_to_json_key_mappings: Option<::std::collections::HashMap<String, String>>, /// <p>When set to <code>true</code>, specifies that the names of the keys include dots and that you want Kinesis Data Firehose to replace them with underscores. This is useful because Apache Hive does not allow dots in column names. For example, if the JSON contains a key whose name is "a.b", you can define the column name to be "a_b" when using this option.</p> <p>The default is <code>false</code>.</p> #[serde(rename = "ConvertDotsInJsonKeysToUnderscores")] #[serde(skip_serializing_if = "Option::is_none")] pub convert_dots_in_json_keys_to_underscores: Option<bool>, } /// <p>A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see <a href="https://orc.apache.org/docs/">Apache ORC</a>.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct OrcSerDe { /// <p>The Hadoop Distributed File System (HDFS) block size. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 256 MiB and the minimum is 64 MiB. Kinesis Data Firehose uses this value for padding calculations.</p> #[serde(rename = "BlockSizeBytes")] #[serde(skip_serializing_if = "Option::is_none")] pub block_size_bytes: Option<i64>, /// <p>The column names for which you want Kinesis Data Firehose to create bloom filters. The default is <code>null</code>.</p> #[serde(rename = "BloomFilterColumns")] #[serde(skip_serializing_if = "Option::is_none")] pub bloom_filter_columns: Option<Vec<String>>, /// <p>The Bloom filter false positive probability (FPP). The lower the FPP, the bigger the Bloom filter. The default value is 0.05, the minimum is 0, and the maximum is 1.</p> #[serde(rename = "BloomFilterFalsePositiveProbability")] #[serde(skip_serializing_if = "Option::is_none")] pub bloom_filter_false_positive_probability: Option<f64>, /// <p>The compression code to use over data blocks. The default is <code>SNAPPY</code>.</p> #[serde(rename = "Compression")] #[serde(skip_serializing_if = "Option::is_none")] pub compression: Option<String>, /// <p>Represents the fraction of the total number of non-null rows. To turn off dictionary encoding, set this fraction to a number that is less than the number of distinct keys in a dictionary. To always use dictionary encoding, set this threshold to 1.</p> #[serde(rename = "DictionaryKeyThreshold")] #[serde(skip_serializing_if = "Option::is_none")] pub dictionary_key_threshold: Option<f64>, /// <p>Set this to <code>true</code> to indicate that you want stripes to be padded to the HDFS block boundaries. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is <code>false</code>.</p> #[serde(rename = "EnablePadding")] #[serde(skip_serializing_if = "Option::is_none")] pub enable_padding: Option<bool>, /// <p>The version of the file to write. The possible values are <code>V0_11</code> and <code>V0_12</code>. The default is <code>V0_12</code>.</p> #[serde(rename = "FormatVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub format_version: Option<String>, /// <p>A number between 0 and 1 that defines the tolerance for block padding as a decimal fraction of stripe size. The default value is 0.05, which means 5 percent of stripe size.</p> <p>For the default values of 64 MiB ORC stripes and 256 MiB HDFS blocks, the default block padding tolerance of 5 percent reserves a maximum of 3.2 MiB for padding within the 256 MiB block. In such a case, if the available size within the block is more than 3.2 MiB, a new, smaller stripe is inserted to fit within that space. This ensures that no stripe crosses block boundaries and causes remote reads within a node-local task.</p> <p>Kinesis Data Firehose ignores this parameter when <a>OrcSerDe$EnablePadding</a> is <code>false</code>.</p> #[serde(rename = "PaddingTolerance")] #[serde(skip_serializing_if = "Option::is_none")] pub padding_tolerance: Option<f64>, /// <p>The number of rows between index entries. The default is 10,000 and the minimum is 1,000.</p> #[serde(rename = "RowIndexStride")] #[serde(skip_serializing_if = "Option::is_none")] pub row_index_stride: Option<i64>, /// <p>The number of bytes in each stripe. The default is 64 MiB and the minimum is 8 MiB.</p> #[serde(rename = "StripeSizeBytes")] #[serde(skip_serializing_if = "Option::is_none")] pub stripe_size_bytes: Option<i64>, } /// <p>Specifies the serializer that you want Kinesis Data Firehose to use to convert the format of your data before it writes it to Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct OutputFormatConfiguration { /// <p>Specifies which serializer to use. You can choose either the ORC SerDe or the Parquet SerDe. If both are non-null, the server rejects the request.</p> #[serde(rename = "Serializer")] #[serde(skip_serializing_if = "Option::is_none")] pub serializer: Option<Serializer>, } /// <p>A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see <a href="https://parquet.apache.org/documentation/latest/">Apache Parquet</a>.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ParquetSerDe { /// <p>The Hadoop Distributed File System (HDFS) block size. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 256 MiB and the minimum is 64 MiB. Kinesis Data Firehose uses this value for padding calculations.</p> #[serde(rename = "BlockSizeBytes")] #[serde(skip_serializing_if = "Option::is_none")] pub block_size_bytes: Option<i64>, /// <p>The compression code to use over data blocks. The possible values are <code>UNCOMPRESSED</code>, <code>SNAPPY</code>, and <code>GZIP</code>, with the default being <code>SNAPPY</code>. Use <code>SNAPPY</code> for higher decompression speed. Use <code>GZIP</code> if the compression ration is more important than speed.</p> #[serde(rename = "Compression")] #[serde(skip_serializing_if = "Option::is_none")] pub compression: Option<String>, /// <p>Indicates whether to enable dictionary compression.</p> #[serde(rename = "EnableDictionaryCompression")] #[serde(skip_serializing_if = "Option::is_none")] pub enable_dictionary_compression: Option<bool>, /// <p>The maximum amount of padding to apply. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 0.</p> #[serde(rename = "MaxPaddingBytes")] #[serde(skip_serializing_if = "Option::is_none")] pub max_padding_bytes: Option<i64>, /// <p>The Parquet page size. Column chunks are divided into pages. A page is conceptually an indivisible unit (in terms of compression and encoding). The minimum value is 64 KiB and the default is 1 MiB.</p> #[serde(rename = "PageSizeBytes")] #[serde(skip_serializing_if = "Option::is_none")] pub page_size_bytes: Option<i64>, /// <p>Indicates the version of row format to output. The possible values are <code>V1</code> and <code>V2</code>. The default is <code>V1</code>.</p> #[serde(rename = "WriterVersion")] #[serde(skip_serializing_if = "Option::is_none")] pub writer_version: Option<String>, } /// <p>Describes a data processing configuration.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ProcessingConfiguration { /// <p>Enables or disables data processing.</p> #[serde(rename = "Enabled")] #[serde(skip_serializing_if = "Option::is_none")] pub enabled: Option<bool>, /// <p>The data processors.</p> #[serde(rename = "Processors")] #[serde(skip_serializing_if = "Option::is_none")] pub processors: Option<Vec<Processor>>, } /// <p>Describes a data processor.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Processor { /// <p>The processor parameters.</p> #[serde(rename = "Parameters")] #[serde(skip_serializing_if = "Option::is_none")] pub parameters: Option<Vec<ProcessorParameter>>, /// <p>The type of processor.</p> #[serde(rename = "Type")] pub type_: String, } /// <p>Describes the processor parameter.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct ProcessorParameter { /// <p>The name of the parameter.</p> #[serde(rename = "ParameterName")] pub parameter_name: String, /// <p>The parameter value.</p> #[serde(rename = "ParameterValue")] pub parameter_value: String, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct PutRecordBatchInput { /// <p>The name of the delivery stream.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, /// <p>One or more records.</p> #[serde(rename = "Records")] pub records: Vec<Record>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PutRecordBatchOutput { /// <p>Indicates whether server-side encryption (SSE) was enabled during this operation.</p> #[serde(rename = "Encrypted")] #[serde(skip_serializing_if = "Option::is_none")] pub encrypted: Option<bool>, /// <p>The number of records that might have failed processing. This number might be greater than 0 even if the <a>PutRecordBatch</a> call succeeds. Check <code>FailedPutCount</code> to determine whether there are records that you need to resend.</p> #[serde(rename = "FailedPutCount")] pub failed_put_count: i64, /// <p>The results array. For each record, the index of the response element is the same as the index used in the request array.</p> #[serde(rename = "RequestResponses")] pub request_responses: Vec<PutRecordBatchResponseEntry>, } /// <p>Contains the result for an individual record from a <a>PutRecordBatch</a> request. If the record is successfully added to your delivery stream, it receives a record ID. If the record fails to be added to your delivery stream, the result includes an error code and an error message.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PutRecordBatchResponseEntry { /// <p>The error code for an individual record result.</p> #[serde(rename = "ErrorCode")] #[serde(skip_serializing_if = "Option::is_none")] pub error_code: Option<String>, /// <p>The error message for an individual record result.</p> #[serde(rename = "ErrorMessage")] #[serde(skip_serializing_if = "Option::is_none")] pub error_message: Option<String>, /// <p>The ID of the record.</p> #[serde(rename = "RecordId")] #[serde(skip_serializing_if = "Option::is_none")] pub record_id: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct PutRecordInput { /// <p>The name of the delivery stream.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, /// <p>The record.</p> #[serde(rename = "Record")] pub record: Record, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct PutRecordOutput { /// <p>Indicates whether server-side encryption (SSE) was enabled during this operation.</p> #[serde(rename = "Encrypted")] #[serde(skip_serializing_if = "Option::is_none")] pub encrypted: Option<bool>, /// <p>The ID of the record.</p> #[serde(rename = "RecordId")] pub record_id: String, } /// <p>The unit of data in a delivery stream.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct Record { /// <p>The data blob, which is base64-encoded when the blob is serialized. The maximum size of the data blob, before base64-encoding, is 1,000 KiB.</p> #[serde(rename = "Data")] #[serde( deserialize_with = "::rusoto_core::serialization::SerdeBlob::deserialize_blob", serialize_with = "::rusoto_core::serialization::SerdeBlob::serialize_blob", default )] pub data: bytes::Bytes, } /// <p>Describes the configuration of a destination in Amazon Redshift.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct RedshiftDestinationConfiguration { /// <p>The CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The database connection string.</p> #[serde(rename = "ClusterJDBCURL")] pub cluster_jdbcurl: String, /// <p>The <code>COPY</code> command.</p> #[serde(rename = "CopyCommand")] pub copy_command: CopyCommand, /// <p>The user password.</p> #[serde(rename = "Password")] pub password: String, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).</p> #[serde(rename = "RetryOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub retry_options: Option<RedshiftRetryOptions>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] pub role_arn: String, /// <p>The configuration for backup in Amazon S3.</p> #[serde(rename = "S3BackupConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_configuration: Option<S3DestinationConfiguration>, /// <p>The Amazon S3 backup mode.</p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, /// <p>The configuration for the intermediate Amazon S3 location from which Amazon Redshift obtains data. Restrictions are described in the topic for <a>CreateDeliveryStream</a>.</p> <p>The compression formats <code>SNAPPY</code> or <code>ZIP</code> cannot be specified in <code>RedshiftDestinationConfiguration.S3Configuration</code> because the Amazon Redshift <code>COPY</code> operation that reads from the S3 bucket doesn't support these compression formats.</p> #[serde(rename = "S3Configuration")] pub s3_configuration: S3DestinationConfiguration, /// <p>The name of the user.</p> #[serde(rename = "Username")] pub username: String, } /// <p>Describes a destination in Amazon Redshift.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct RedshiftDestinationDescription { /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The database connection string.</p> #[serde(rename = "ClusterJDBCURL")] pub cluster_jdbcurl: String, /// <p>The <code>COPY</code> command.</p> #[serde(rename = "CopyCommand")] pub copy_command: CopyCommand, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).</p> #[serde(rename = "RetryOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub retry_options: Option<RedshiftRetryOptions>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] pub role_arn: String, /// <p>The configuration for backup in Amazon S3.</p> #[serde(rename = "S3BackupDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_description: Option<S3DestinationDescription>, /// <p>The Amazon S3 backup mode.</p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, /// <p>The Amazon S3 destination.</p> #[serde(rename = "S3DestinationDescription")] pub s3_destination_description: S3DestinationDescription, /// <p>The name of the user.</p> #[serde(rename = "Username")] pub username: String, } /// <p>Describes an update for a destination in Amazon Redshift.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct RedshiftDestinationUpdate { /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The database connection string.</p> #[serde(rename = "ClusterJDBCURL")] #[serde(skip_serializing_if = "Option::is_none")] pub cluster_jdbcurl: Option<String>, /// <p>The <code>COPY</code> command.</p> #[serde(rename = "CopyCommand")] #[serde(skip_serializing_if = "Option::is_none")] pub copy_command: Option<CopyCommand>, /// <p>The user password.</p> #[serde(rename = "Password")] #[serde(skip_serializing_if = "Option::is_none")] pub password: Option<String>, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).</p> #[serde(rename = "RetryOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub retry_options: Option<RedshiftRetryOptions>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] #[serde(skip_serializing_if = "Option::is_none")] pub role_arn: Option<String>, /// <p>The Amazon S3 backup mode.</p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, /// <p>The Amazon S3 destination for backup.</p> #[serde(rename = "S3BackupUpdate")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_update: Option<S3DestinationUpdate>, /// <p>The Amazon S3 destination.</p> <p>The compression formats <code>SNAPPY</code> or <code>ZIP</code> cannot be specified in <code>RedshiftDestinationUpdate.S3Update</code> because the Amazon Redshift <code>COPY</code> operation that reads from the S3 bucket doesn't support these compression formats.</p> #[serde(rename = "S3Update")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_update: Option<S3DestinationUpdate>, /// <p>The name of the user.</p> #[serde(rename = "Username")] #[serde(skip_serializing_if = "Option::is_none")] pub username: Option<String>, } /// <p>Configures retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct RedshiftRetryOptions { /// <p>The length of time during which Kinesis Data Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Kinesis Data Firehose does not retry if the value of <code>DurationInSeconds</code> is 0 (zero) or if the first delivery attempt takes longer than the current value.</p> #[serde(rename = "DurationInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub duration_in_seconds: Option<i64>, } /// <p>Describes the configuration of a destination in Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct S3DestinationConfiguration { /// <p>The ARN of the S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "BucketARN")] pub bucket_arn: String, /// <p>The buffering option. If no value is specified, <code>BufferingHints</code> object default values are used.</p> #[serde(rename = "BufferingHints")] #[serde(skip_serializing_if = "Option::is_none")] pub buffering_hints: Option<BufferingHints>, /// <p>The CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The compression format. If no value is specified, the default is <code>UNCOMPRESSED</code>.</p> <p>The compression formats <code>SNAPPY</code> or <code>ZIP</code> cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift <code>COPY</code> operation that reads from the S3 bucket.</p> #[serde(rename = "CompressionFormat")] #[serde(skip_serializing_if = "Option::is_none")] pub compression_format: Option<String>, /// <p>The encryption configuration. If no value is specified, the default is no encryption.</p> #[serde(rename = "EncryptionConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_configuration: Option<EncryptionConfiguration>, /// <p>A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3. This prefix appears immediately following the bucket name.</p> #[serde(rename = "ErrorOutputPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub error_output_prefix: Option<String>, /// <p>The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered Amazon S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name">Amazon S3 Object Name Format</a> in the <i>Amazon Kinesis Data Firehose Developer Guide</i>.</p> #[serde(rename = "Prefix")] #[serde(skip_serializing_if = "Option::is_none")] pub prefix: Option<String>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] pub role_arn: String, } /// <p>Describes a destination in Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct S3DestinationDescription { /// <p>The ARN of the S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "BucketARN")] pub bucket_arn: String, /// <p>The buffering option. If no value is specified, <code>BufferingHints</code> object default values are used.</p> #[serde(rename = "BufferingHints")] pub buffering_hints: BufferingHints, /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The compression format. If no value is specified, the default is <code>UNCOMPRESSED</code>.</p> #[serde(rename = "CompressionFormat")] pub compression_format: String, /// <p>The encryption configuration. If no value is specified, the default is no encryption.</p> #[serde(rename = "EncryptionConfiguration")] pub encryption_configuration: EncryptionConfiguration, /// <p>A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3. This prefix appears immediately following the bucket name.</p> #[serde(rename = "ErrorOutputPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub error_output_prefix: Option<String>, /// <p>The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered Amazon S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name">Amazon S3 Object Name Format</a> in the <i>Amazon Kinesis Data Firehose Developer Guide</i>.</p> #[serde(rename = "Prefix")] #[serde(skip_serializing_if = "Option::is_none")] pub prefix: Option<String>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] pub role_arn: String, } /// <p>Describes an update for a destination in Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct S3DestinationUpdate { /// <p>The ARN of the S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "BucketARN")] #[serde(skip_serializing_if = "Option::is_none")] pub bucket_arn: Option<String>, /// <p>The buffering option. If no value is specified, <code>BufferingHints</code> object default values are used.</p> #[serde(rename = "BufferingHints")] #[serde(skip_serializing_if = "Option::is_none")] pub buffering_hints: Option<BufferingHints>, /// <p>The CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The compression format. If no value is specified, the default is <code>UNCOMPRESSED</code>.</p> <p>The compression formats <code>SNAPPY</code> or <code>ZIP</code> cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift <code>COPY</code> operation that reads from the S3 bucket.</p> #[serde(rename = "CompressionFormat")] #[serde(skip_serializing_if = "Option::is_none")] pub compression_format: Option<String>, /// <p>The encryption configuration. If no value is specified, the default is no encryption.</p> #[serde(rename = "EncryptionConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub encryption_configuration: Option<EncryptionConfiguration>, /// <p>A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3. This prefix appears immediately following the bucket name.</p> #[serde(rename = "ErrorOutputPrefix")] #[serde(skip_serializing_if = "Option::is_none")] pub error_output_prefix: Option<String>, /// <p>The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered Amazon S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name">Amazon S3 Object Name Format</a> in the <i>Amazon Kinesis Data Firehose Developer Guide</i>.</p> #[serde(rename = "Prefix")] #[serde(skip_serializing_if = "Option::is_none")] pub prefix: Option<String>, /// <p>The Amazon Resource Name (ARN) of the AWS credentials. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>.</p> #[serde(rename = "RoleARN")] #[serde(skip_serializing_if = "Option::is_none")] pub role_arn: Option<String>, } /// <p>Specifies the schema to which you want Kinesis Data Firehose to configure your data before it writes it to Amazon S3.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct SchemaConfiguration { /// <p>The ID of the AWS Glue Data Catalog. If you don't supply this, the AWS account ID is used by default.</p> #[serde(rename = "CatalogId")] #[serde(skip_serializing_if = "Option::is_none")] pub catalog_id: Option<String>, /// <p>Specifies the name of the AWS Glue database that contains the schema for the output data.</p> #[serde(rename = "DatabaseName")] #[serde(skip_serializing_if = "Option::is_none")] pub database_name: Option<String>, /// <p>If you don't specify an AWS Region, the default is the current Region.</p> #[serde(rename = "Region")] #[serde(skip_serializing_if = "Option::is_none")] pub region: Option<String>, /// <p>The role that Kinesis Data Firehose can use to access AWS Glue. This role must be in the same account you use for Kinesis Data Firehose. Cross-account roles aren't allowed.</p> #[serde(rename = "RoleARN")] #[serde(skip_serializing_if = "Option::is_none")] pub role_arn: Option<String>, /// <p>Specifies the AWS Glue table that contains the column information that constitutes your data schema.</p> #[serde(rename = "TableName")] #[serde(skip_serializing_if = "Option::is_none")] pub table_name: Option<String>, /// <p>Specifies the table version for the output data schema. If you don't specify this version ID, or if you set it to <code>LATEST</code>, Kinesis Data Firehose uses the most recent version. This means that any updates to the table are automatically picked up.</p> #[serde(rename = "VersionId")] #[serde(skip_serializing_if = "Option::is_none")] pub version_id: Option<String>, } /// <p>The serializer that you want Kinesis Data Firehose to use to convert data to the target format before writing it to Amazon S3. Kinesis Data Firehose supports two types of serializers: the <a href="https://hive.apache.org/javadocs/r1.2.2/api/org/apache/hadoop/hive/ql/io/orc/OrcSerde.html">ORC SerDe</a> and the <a href="https://hive.apache.org/javadocs/r1.2.2/api/org/apache/hadoop/hive/ql/io/parquet/serde/ParquetHiveSerDe.html">Parquet SerDe</a>.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Serializer { /// <p>A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see <a href="https://orc.apache.org/docs/">Apache ORC</a>.</p> #[serde(rename = "OrcSerDe")] #[serde(skip_serializing_if = "Option::is_none")] pub orc_ser_de: Option<OrcSerDe>, /// <p>A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see <a href="https://parquet.apache.org/documentation/latest/">Apache Parquet</a>.</p> #[serde(rename = "ParquetSerDe")] #[serde(skip_serializing_if = "Option::is_none")] pub parquet_ser_de: Option<ParquetSerDe>, } /// <p>Details about a Kinesis data stream used as the source for a Kinesis Data Firehose delivery stream.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct SourceDescription { /// <p>The <a>KinesisStreamSourceDescription</a> value for the source Kinesis data stream.</p> #[serde(rename = "KinesisStreamSourceDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub kinesis_stream_source_description: Option<KinesisStreamSourceDescription>, } /// <p>Describes the configuration of a destination in Splunk.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct SplunkDestinationConfiguration { /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The amount of time that Kinesis Data Firehose waits to receive an acknowledgment from Splunk after it sends it data. At the end of the timeout period, Kinesis Data Firehose either tries to send the data again or considers it an error, based on your retry settings.</p> #[serde(rename = "HECAcknowledgmentTimeoutInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub hec_acknowledgment_timeout_in_seconds: Option<i64>, /// <p>The HTTP Event Collector (HEC) endpoint to which Kinesis Data Firehose sends your data.</p> #[serde(rename = "HECEndpoint")] pub hec_endpoint: String, /// <p>This type can be either "Raw" or "Event."</p> #[serde(rename = "HECEndpointType")] pub hec_endpoint_type: String, /// <p>This is a GUID that you obtain from your Splunk cluster when you create a new HEC endpoint.</p> #[serde(rename = "HECToken")] pub hec_token: String, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The retry behavior in case Kinesis Data Firehose is unable to deliver data to Splunk, or if it doesn't receive an acknowledgment of receipt from Splunk.</p> #[serde(rename = "RetryOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub retry_options: Option<SplunkRetryOptions>, /// <p>Defines how documents should be delivered to Amazon S3. When set to <code>FailedDocumentsOnly</code>, Kinesis Data Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to <code>AllDocuments</code>, Kinesis Data Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. Default value is <code>FailedDocumentsOnly</code>. </p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, /// <p>The configuration for the backup Amazon S3 location.</p> #[serde(rename = "S3Configuration")] pub s3_configuration: S3DestinationConfiguration, } /// <p>Describes a destination in Splunk.</p> #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct SplunkDestinationDescription { /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The amount of time that Kinesis Data Firehose waits to receive an acknowledgment from Splunk after it sends it data. At the end of the timeout period, Kinesis Data Firehose either tries to send the data again or considers it an error, based on your retry settings.</p> #[serde(rename = "HECAcknowledgmentTimeoutInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub hec_acknowledgment_timeout_in_seconds: Option<i64>, /// <p>The HTTP Event Collector (HEC) endpoint to which Kinesis Data Firehose sends your data.</p> #[serde(rename = "HECEndpoint")] #[serde(skip_serializing_if = "Option::is_none")] pub hec_endpoint: Option<String>, /// <p>This type can be either "Raw" or "Event."</p> #[serde(rename = "HECEndpointType")] #[serde(skip_serializing_if = "Option::is_none")] pub hec_endpoint_type: Option<String>, /// <p>A GUID you obtain from your Splunk cluster when you create a new HEC endpoint.</p> #[serde(rename = "HECToken")] #[serde(skip_serializing_if = "Option::is_none")] pub hec_token: Option<String>, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The retry behavior in case Kinesis Data Firehose is unable to deliver data to Splunk or if it doesn't receive an acknowledgment of receipt from Splunk.</p> #[serde(rename = "RetryOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub retry_options: Option<SplunkRetryOptions>, /// <p>Defines how documents should be delivered to Amazon S3. When set to <code>FailedDocumentsOnly</code>, Kinesis Data Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to <code>AllDocuments</code>, Kinesis Data Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. Default value is <code>FailedDocumentsOnly</code>. </p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, /// <p>The Amazon S3 destination.></p> #[serde(rename = "S3DestinationDescription")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_destination_description: Option<S3DestinationDescription>, } /// <p>Describes an update for a destination in Splunk.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct SplunkDestinationUpdate { /// <p>The Amazon CloudWatch logging options for your delivery stream.</p> #[serde(rename = "CloudWatchLoggingOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>, /// <p>The amount of time that Kinesis Data Firehose waits to receive an acknowledgment from Splunk after it sends data. At the end of the timeout period, Kinesis Data Firehose either tries to send the data again or considers it an error, based on your retry settings.</p> #[serde(rename = "HECAcknowledgmentTimeoutInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub hec_acknowledgment_timeout_in_seconds: Option<i64>, /// <p>The HTTP Event Collector (HEC) endpoint to which Kinesis Data Firehose sends your data.</p> #[serde(rename = "HECEndpoint")] #[serde(skip_serializing_if = "Option::is_none")] pub hec_endpoint: Option<String>, /// <p>This type can be either "Raw" or "Event."</p> #[serde(rename = "HECEndpointType")] #[serde(skip_serializing_if = "Option::is_none")] pub hec_endpoint_type: Option<String>, /// <p>A GUID that you obtain from your Splunk cluster when you create a new HEC endpoint.</p> #[serde(rename = "HECToken")] #[serde(skip_serializing_if = "Option::is_none")] pub hec_token: Option<String>, /// <p>The data processing configuration.</p> #[serde(rename = "ProcessingConfiguration")] #[serde(skip_serializing_if = "Option::is_none")] pub processing_configuration: Option<ProcessingConfiguration>, /// <p>The retry behavior in case Kinesis Data Firehose is unable to deliver data to Splunk or if it doesn't receive an acknowledgment of receipt from Splunk.</p> #[serde(rename = "RetryOptions")] #[serde(skip_serializing_if = "Option::is_none")] pub retry_options: Option<SplunkRetryOptions>, /// <p>Defines how documents should be delivered to Amazon S3. When set to <code>FailedDocumentsOnly</code>, Kinesis Data Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to <code>AllDocuments</code>, Kinesis Data Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. Default value is <code>FailedDocumentsOnly</code>. </p> #[serde(rename = "S3BackupMode")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_backup_mode: Option<String>, /// <p>Your update to the configuration of the backup Amazon S3 location.</p> #[serde(rename = "S3Update")] #[serde(skip_serializing_if = "Option::is_none")] pub s3_update: Option<S3DestinationUpdate>, } /// <p>Configures retry behavior in case Kinesis Data Firehose is unable to deliver documents to Splunk, or if it doesn't receive an acknowledgment from Splunk.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct SplunkRetryOptions { /// <p>The total amount of time that Kinesis Data Firehose spends on retries. This duration starts after the initial attempt to send data to Splunk fails. It doesn't include the periods during which Kinesis Data Firehose waits for acknowledgment from Splunk after each attempt.</p> #[serde(rename = "DurationInSeconds")] #[serde(skip_serializing_if = "Option::is_none")] pub duration_in_seconds: Option<i64>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct StartDeliveryStreamEncryptionInput { /// <p>The name of the delivery stream for which you want to enable server-side encryption (SSE).</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct StartDeliveryStreamEncryptionOutput {} #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct StopDeliveryStreamEncryptionInput { /// <p>The name of the delivery stream for which you want to disable server-side encryption (SSE).</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct StopDeliveryStreamEncryptionOutput {} /// <p>Metadata that you can assign to a delivery stream, consisting of a key-value pair.</p> #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct Tag { /// <p>A unique identifier for the tag. Maximum length: 128 characters. Valid characters: Unicode letters, digits, white space, _ . / = + - % @</p> #[serde(rename = "Key")] pub key: String, /// <p>An optional string, which you can use to describe or define the tag. Maximum length: 256 characters. Valid characters: Unicode letters, digits, white space, _ . / = + - % @</p> #[serde(rename = "Value")] #[serde(skip_serializing_if = "Option::is_none")] pub value: Option<String>, } #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct TagDeliveryStreamInput { /// <p>The name of the delivery stream to which you want to add the tags.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, /// <p>A set of key-value pairs to use to create the tags.</p> #[serde(rename = "Tags")] pub tags: Vec<Tag>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct TagDeliveryStreamOutput {} #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UntagDeliveryStreamInput { /// <p>The name of the delivery stream.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, /// <p>A list of tag keys. Each corresponding tag is removed from the delivery stream.</p> #[serde(rename = "TagKeys")] pub tag_keys: Vec<String>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UntagDeliveryStreamOutput {} #[derive(Default, Debug, Clone, PartialEq, Serialize)] pub struct UpdateDestinationInput { /// <p>Obtain this value from the <code>VersionId</code> result of <a>DeliveryStreamDescription</a>. This value is required, and helps the service perform conditional operations. For example, if there is an interleaving update and this value is null, then the update destination fails. After the update is successful, the <code>VersionId</code> value is updated. The service then performs a merge of the old configuration with the new configuration.</p> #[serde(rename = "CurrentDeliveryStreamVersionId")] pub current_delivery_stream_version_id: String, /// <p>The name of the delivery stream.</p> #[serde(rename = "DeliveryStreamName")] pub delivery_stream_name: String, /// <p>The ID of the destination.</p> #[serde(rename = "DestinationId")] pub destination_id: String, /// <p>Describes an update for a destination in Amazon ES.</p> #[serde(rename = "ElasticsearchDestinationUpdate")] #[serde(skip_serializing_if = "Option::is_none")] pub elasticsearch_destination_update: Option<ElasticsearchDestinationUpdate>, /// <p>Describes an update for a destination in Amazon S3.</p> #[serde(rename = "ExtendedS3DestinationUpdate")] #[serde(skip_serializing_if = "Option::is_none")] pub extended_s3_destination_update: Option<ExtendedS3DestinationUpdate>, /// <p>Describes an update for a destination in Amazon Redshift.</p> #[serde(rename = "RedshiftDestinationUpdate")] #[serde(skip_serializing_if = "Option::is_none")] pub redshift_destination_update: Option<RedshiftDestinationUpdate>, /// <p>Describes an update for a destination in Splunk.</p> #[serde(rename = "SplunkDestinationUpdate")] #[serde(skip_serializing_if = "Option::is_none")] pub splunk_destination_update: Option<SplunkDestinationUpdate>, } #[derive(Default, Debug, Clone, PartialEq, Deserialize)] #[cfg_attr(test, derive(Serialize))] pub struct UpdateDestinationOutput {} /// Errors returned by CreateDeliveryStream #[derive(Debug, PartialEq)] pub enum CreateDeliveryStreamError { /// <p>The specified input parameter has a value that is not valid.</p> InvalidArgument(String), /// <p>You have already reached the limit for a requested resource.</p> LimitExceeded(String), /// <p>The resource is already in use and not available for this operation.</p> ResourceInUse(String), } impl CreateDeliveryStreamError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateDeliveryStreamError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidArgumentException" => { return RusotoError::Service(CreateDeliveryStreamError::InvalidArgument( err.msg, )) } "LimitExceededException" => { return RusotoError::Service(CreateDeliveryStreamError::LimitExceeded(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(CreateDeliveryStreamError::ResourceInUse(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for CreateDeliveryStreamError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for CreateDeliveryStreamError { fn description(&self) -> &str { match *self { CreateDeliveryStreamError::InvalidArgument(ref cause) => cause, CreateDeliveryStreamError::LimitExceeded(ref cause) => cause, CreateDeliveryStreamError::ResourceInUse(ref cause) => cause, } } } /// Errors returned by DeleteDeliveryStream #[derive(Debug, PartialEq)] pub enum DeleteDeliveryStreamError { /// <p>The resource is already in use and not available for this operation.</p> ResourceInUse(String), /// <p>The specified resource could not be found.</p> ResourceNotFound(String), } impl DeleteDeliveryStreamError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteDeliveryStreamError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "ResourceInUseException" => { return RusotoError::Service(DeleteDeliveryStreamError::ResourceInUse(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(DeleteDeliveryStreamError::ResourceNotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DeleteDeliveryStreamError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DeleteDeliveryStreamError { fn description(&self) -> &str { match *self { DeleteDeliveryStreamError::ResourceInUse(ref cause) => cause, DeleteDeliveryStreamError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by DescribeDeliveryStream #[derive(Debug, PartialEq)] pub enum DescribeDeliveryStreamError { /// <p>The specified resource could not be found.</p> ResourceNotFound(String), } impl DescribeDeliveryStreamError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DescribeDeliveryStreamError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "ResourceNotFoundException" => { return RusotoError::Service(DescribeDeliveryStreamError::ResourceNotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for DescribeDeliveryStreamError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for DescribeDeliveryStreamError { fn description(&self) -> &str { match *self { DescribeDeliveryStreamError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by ListDeliveryStreams #[derive(Debug, PartialEq)] pub enum ListDeliveryStreamsError {} impl ListDeliveryStreamsError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListDeliveryStreamsError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListDeliveryStreamsError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListDeliveryStreamsError { fn description(&self) -> &str { match *self {} } } /// Errors returned by ListTagsForDeliveryStream #[derive(Debug, PartialEq)] pub enum ListTagsForDeliveryStreamError { /// <p>The specified input parameter has a value that is not valid.</p> InvalidArgument(String), /// <p>You have already reached the limit for a requested resource.</p> LimitExceeded(String), /// <p>The specified resource could not be found.</p> ResourceNotFound(String), } impl ListTagsForDeliveryStreamError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<ListTagsForDeliveryStreamError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidArgumentException" => { return RusotoError::Service(ListTagsForDeliveryStreamError::InvalidArgument( err.msg, )) } "LimitExceededException" => { return RusotoError::Service(ListTagsForDeliveryStreamError::LimitExceeded( err.msg, )) } "ResourceNotFoundException" => { return RusotoError::Service(ListTagsForDeliveryStreamError::ResourceNotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for ListTagsForDeliveryStreamError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for ListTagsForDeliveryStreamError { fn description(&self) -> &str { match *self { ListTagsForDeliveryStreamError::InvalidArgument(ref cause) => cause, ListTagsForDeliveryStreamError::LimitExceeded(ref cause) => cause, ListTagsForDeliveryStreamError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by PutRecord #[derive(Debug, PartialEq)] pub enum PutRecordError { /// <p>The specified input parameter has a value that is not valid.</p> InvalidArgument(String), /// <p>The specified resource could not be found.</p> ResourceNotFound(String), /// <p>The service is unavailable. Back off and retry the operation. If you continue to see the exception, throughput limits for the delivery stream may have been exceeded. For more information about limits and how to request an increase, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/limits.html">Amazon Kinesis Data Firehose Limits</a>.</p> ServiceUnavailable(String), } impl PutRecordError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<PutRecordError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidArgumentException" => { return RusotoError::Service(PutRecordError::InvalidArgument(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(PutRecordError::ResourceNotFound(err.msg)) } "ServiceUnavailableException" => { return RusotoError::Service(PutRecordError::ServiceUnavailable(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for PutRecordError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for PutRecordError { fn description(&self) -> &str { match *self { PutRecordError::InvalidArgument(ref cause) => cause, PutRecordError::ResourceNotFound(ref cause) => cause, PutRecordError::ServiceUnavailable(ref cause) => cause, } } } /// Errors returned by PutRecordBatch #[derive(Debug, PartialEq)] pub enum PutRecordBatchError { /// <p>The specified input parameter has a value that is not valid.</p> InvalidArgument(String), /// <p>The specified resource could not be found.</p> ResourceNotFound(String), /// <p>The service is unavailable. Back off and retry the operation. If you continue to see the exception, throughput limits for the delivery stream may have been exceeded. For more information about limits and how to request an increase, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/limits.html">Amazon Kinesis Data Firehose Limits</a>.</p> ServiceUnavailable(String), } impl PutRecordBatchError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<PutRecordBatchError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidArgumentException" => { return RusotoError::Service(PutRecordBatchError::InvalidArgument(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(PutRecordBatchError::ResourceNotFound(err.msg)) } "ServiceUnavailableException" => { return RusotoError::Service(PutRecordBatchError::ServiceUnavailable(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for PutRecordBatchError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for PutRecordBatchError { fn description(&self) -> &str { match *self { PutRecordBatchError::InvalidArgument(ref cause) => cause, PutRecordBatchError::ResourceNotFound(ref cause) => cause, PutRecordBatchError::ServiceUnavailable(ref cause) => cause, } } } /// Errors returned by StartDeliveryStreamEncryption #[derive(Debug, PartialEq)] pub enum StartDeliveryStreamEncryptionError { /// <p>The specified input parameter has a value that is not valid.</p> InvalidArgument(String), /// <p>You have already reached the limit for a requested resource.</p> LimitExceeded(String), /// <p>The resource is already in use and not available for this operation.</p> ResourceInUse(String), /// <p>The specified resource could not be found.</p> ResourceNotFound(String), } impl StartDeliveryStreamEncryptionError { pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StartDeliveryStreamEncryptionError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidArgumentException" => { return RusotoError::Service( StartDeliveryStreamEncryptionError::InvalidArgument(err.msg), ) } "LimitExceededException" => { return RusotoError::Service(StartDeliveryStreamEncryptionError::LimitExceeded( err.msg, )) } "ResourceInUseException" => { return RusotoError::Service(StartDeliveryStreamEncryptionError::ResourceInUse( err.msg, )) } "ResourceNotFoundException" => { return RusotoError::Service( StartDeliveryStreamEncryptionError::ResourceNotFound(err.msg), ) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for StartDeliveryStreamEncryptionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for StartDeliveryStreamEncryptionError { fn description(&self) -> &str { match *self { StartDeliveryStreamEncryptionError::InvalidArgument(ref cause) => cause, StartDeliveryStreamEncryptionError::LimitExceeded(ref cause) => cause, StartDeliveryStreamEncryptionError::ResourceInUse(ref cause) => cause, StartDeliveryStreamEncryptionError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by StopDeliveryStreamEncryption #[derive(Debug, PartialEq)] pub enum StopDeliveryStreamEncryptionError { /// <p>The specified input parameter has a value that is not valid.</p> InvalidArgument(String), /// <p>You have already reached the limit for a requested resource.</p> LimitExceeded(String), /// <p>The resource is already in use and not available for this operation.</p> ResourceInUse(String), /// <p>The specified resource could not be found.</p> ResourceNotFound(String), } impl StopDeliveryStreamEncryptionError { pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StopDeliveryStreamEncryptionError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidArgumentException" => { return RusotoError::Service( StopDeliveryStreamEncryptionError::InvalidArgument(err.msg), ) } "LimitExceededException" => { return RusotoError::Service(StopDeliveryStreamEncryptionError::LimitExceeded( err.msg, )) } "ResourceInUseException" => { return RusotoError::Service(StopDeliveryStreamEncryptionError::ResourceInUse( err.msg, )) } "ResourceNotFoundException" => { return RusotoError::Service( StopDeliveryStreamEncryptionError::ResourceNotFound(err.msg), ) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for StopDeliveryStreamEncryptionError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for StopDeliveryStreamEncryptionError { fn description(&self) -> &str { match *self { StopDeliveryStreamEncryptionError::InvalidArgument(ref cause) => cause, StopDeliveryStreamEncryptionError::LimitExceeded(ref cause) => cause, StopDeliveryStreamEncryptionError::ResourceInUse(ref cause) => cause, StopDeliveryStreamEncryptionError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by TagDeliveryStream #[derive(Debug, PartialEq)] pub enum TagDeliveryStreamError { /// <p>The specified input parameter has a value that is not valid.</p> InvalidArgument(String), /// <p>You have already reached the limit for a requested resource.</p> LimitExceeded(String), /// <p>The resource is already in use and not available for this operation.</p> ResourceInUse(String), /// <p>The specified resource could not be found.</p> ResourceNotFound(String), } impl TagDeliveryStreamError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<TagDeliveryStreamError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidArgumentException" => { return RusotoError::Service(TagDeliveryStreamError::InvalidArgument(err.msg)) } "LimitExceededException" => { return RusotoError::Service(TagDeliveryStreamError::LimitExceeded(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(TagDeliveryStreamError::ResourceInUse(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(TagDeliveryStreamError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for TagDeliveryStreamError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for TagDeliveryStreamError { fn description(&self) -> &str { match *self { TagDeliveryStreamError::InvalidArgument(ref cause) => cause, TagDeliveryStreamError::LimitExceeded(ref cause) => cause, TagDeliveryStreamError::ResourceInUse(ref cause) => cause, TagDeliveryStreamError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by UntagDeliveryStream #[derive(Debug, PartialEq)] pub enum UntagDeliveryStreamError { /// <p>The specified input parameter has a value that is not valid.</p> InvalidArgument(String), /// <p>You have already reached the limit for a requested resource.</p> LimitExceeded(String), /// <p>The resource is already in use and not available for this operation.</p> ResourceInUse(String), /// <p>The specified resource could not be found.</p> ResourceNotFound(String), } impl UntagDeliveryStreamError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UntagDeliveryStreamError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "InvalidArgumentException" => { return RusotoError::Service(UntagDeliveryStreamError::InvalidArgument(err.msg)) } "LimitExceededException" => { return RusotoError::Service(UntagDeliveryStreamError::LimitExceeded(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(UntagDeliveryStreamError::ResourceInUse(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(UntagDeliveryStreamError::ResourceNotFound( err.msg, )) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UntagDeliveryStreamError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UntagDeliveryStreamError { fn description(&self) -> &str { match *self { UntagDeliveryStreamError::InvalidArgument(ref cause) => cause, UntagDeliveryStreamError::LimitExceeded(ref cause) => cause, UntagDeliveryStreamError::ResourceInUse(ref cause) => cause, UntagDeliveryStreamError::ResourceNotFound(ref cause) => cause, } } } /// Errors returned by UpdateDestination #[derive(Debug, PartialEq)] pub enum UpdateDestinationError { /// <p>Another modification has already happened. Fetch <code>VersionId</code> again and use it to update the destination.</p> ConcurrentModification(String), /// <p>The specified input parameter has a value that is not valid.</p> InvalidArgument(String), /// <p>The resource is already in use and not available for this operation.</p> ResourceInUse(String), /// <p>The specified resource could not be found.</p> ResourceNotFound(String), } impl UpdateDestinationError { pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateDestinationError> { if let Some(err) = proto::json::Error::parse(&res) { match err.typ.as_str() { "ConcurrentModificationException" => { return RusotoError::Service(UpdateDestinationError::ConcurrentModification( err.msg, )) } "InvalidArgumentException" => { return RusotoError::Service(UpdateDestinationError::InvalidArgument(err.msg)) } "ResourceInUseException" => { return RusotoError::Service(UpdateDestinationError::ResourceInUse(err.msg)) } "ResourceNotFoundException" => { return RusotoError::Service(UpdateDestinationError::ResourceNotFound(err.msg)) } "ValidationException" => return RusotoError::Validation(err.msg), _ => {} } } return RusotoError::Unknown(res); } } impl fmt::Display for UpdateDestinationError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.description()) } } impl Error for UpdateDestinationError { fn description(&self) -> &str { match *self { UpdateDestinationError::ConcurrentModification(ref cause) => cause, UpdateDestinationError::InvalidArgument(ref cause) => cause, UpdateDestinationError::ResourceInUse(ref cause) => cause, UpdateDestinationError::ResourceNotFound(ref cause) => cause, } } } /// Trait representing the capabilities of the Firehose API. Firehose clients implement this trait. pub trait KinesisFirehose { /// <p>Creates a Kinesis Data Firehose delivery stream.</p> <p>By default, you can create up to 50 delivery streams per AWS Region.</p> <p>This is an asynchronous operation that immediately returns. The initial status of the delivery stream is <code>CREATING</code>. After the delivery stream is created, its status is <code>ACTIVE</code> and it now accepts data. Attempts to send data to a delivery stream that is not in the <code>ACTIVE</code> state cause an exception. To check the state of a delivery stream, use <a>DescribeDeliveryStream</a>.</p> <p>A Kinesis Data Firehose delivery stream can be configured to receive records directly from providers using <a>PutRecord</a> or <a>PutRecordBatch</a>, or it can be configured to use an existing Kinesis stream as its source. To specify a Kinesis data stream as input, set the <code>DeliveryStreamType</code> parameter to <code>KinesisStreamAsSource</code>, and provide the Kinesis stream Amazon Resource Name (ARN) and role ARN in the <code>KinesisStreamSourceConfiguration</code> parameter.</p> <p>A delivery stream is configured with a single destination: Amazon S3, Amazon ES, Amazon Redshift, or Splunk. You must specify only one of the following destination configuration parameters: <code>ExtendedS3DestinationConfiguration</code>, <code>S3DestinationConfiguration</code>, <code>ElasticsearchDestinationConfiguration</code>, <code>RedshiftDestinationConfiguration</code>, or <code>SplunkDestinationConfiguration</code>.</p> <p>When you specify <code>S3DestinationConfiguration</code>, you can also provide the following optional values: BufferingHints, <code>EncryptionConfiguration</code>, and <code>CompressionFormat</code>. By default, if no <code>BufferingHints</code> value is provided, Kinesis Data Firehose buffers data up to 5 MB or for 5 minutes, whichever condition is satisfied first. <code>BufferingHints</code> is a hint, so there are some cases where the service cannot adhere to these conditions strictly. For example, record boundaries might be such that the size is a little over or under the configured buffering size. By default, no encryption is performed. We strongly recommend that you enable encryption to ensure secure data storage in Amazon S3.</p> <p>A few notes about Amazon Redshift as a destination:</p> <ul> <li> <p>An Amazon Redshift destination requires an S3 bucket as intermediate location. Kinesis Data Firehose first delivers data to Amazon S3 and then uses <code>COPY</code> syntax to load data into an Amazon Redshift table. This is specified in the <code>RedshiftDestinationConfiguration.S3Configuration</code> parameter.</p> </li> <li> <p>The compression formats <code>SNAPPY</code> or <code>ZIP</code> cannot be specified in <code>RedshiftDestinationConfiguration.S3Configuration</code> because the Amazon Redshift <code>COPY</code> operation that reads from the S3 bucket doesn't support these compression formats.</p> </li> <li> <p>We strongly recommend that you use the user name and password you provide exclusively with Kinesis Data Firehose, and that the permissions for the account are restricted for Amazon Redshift <code>INSERT</code> permissions.</p> </li> </ul> <p>Kinesis Data Firehose assumes the IAM role that is configured as part of the destination. The role should allow the Kinesis Data Firehose principal to assume the role, and the role should have permissions that allow the service to deliver the data. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/controlling-access.html#using-iam-s3">Grant Kinesis Data Firehose Access to an Amazon S3 Destination</a> in the <i>Amazon Kinesis Data Firehose Developer Guide</i>.</p> fn create_delivery_stream( &self, input: CreateDeliveryStreamInput, ) -> RusotoFuture<CreateDeliveryStreamOutput, CreateDeliveryStreamError>; /// <p>Deletes a delivery stream and its data.</p> <p>You can delete a delivery stream only if it is in <code>ACTIVE</code> or <code>DELETING</code> state, and not in the <code>CREATING</code> state. While the deletion request is in process, the delivery stream is in the <code>DELETING</code> state.</p> <p>To check the state of a delivery stream, use <a>DescribeDeliveryStream</a>.</p> <p>While the delivery stream is <code>DELETING</code> state, the service might continue to accept the records, but it doesn't make any guarantees with respect to delivering the data. Therefore, as a best practice, you should first stop any applications that are sending records before deleting a delivery stream.</p> fn delete_delivery_stream( &self, input: DeleteDeliveryStreamInput, ) -> RusotoFuture<DeleteDeliveryStreamOutput, DeleteDeliveryStreamError>; /// <p>Describes the specified delivery stream and gets the status. For example, after your delivery stream is created, call <code>DescribeDeliveryStream</code> to see whether the delivery stream is <code>ACTIVE</code> and therefore ready for data to be sent to it.</p> fn describe_delivery_stream( &self, input: DescribeDeliveryStreamInput, ) -> RusotoFuture<DescribeDeliveryStreamOutput, DescribeDeliveryStreamError>; /// <p>Lists your delivery streams in alphabetical order of their names.</p> <p>The number of delivery streams might be too large to return using a single call to <code>ListDeliveryStreams</code>. You can limit the number of delivery streams returned, using the <code>Limit</code> parameter. To determine whether there are more delivery streams to list, check the value of <code>HasMoreDeliveryStreams</code> in the output. If there are more delivery streams to list, you can request them by calling this operation again and setting the <code>ExclusiveStartDeliveryStreamName</code> parameter to the name of the last delivery stream returned in the last call.</p> fn list_delivery_streams( &self, input: ListDeliveryStreamsInput, ) -> RusotoFuture<ListDeliveryStreamsOutput, ListDeliveryStreamsError>; /// <p>Lists the tags for the specified delivery stream. This operation has a limit of five transactions per second per account. </p> fn list_tags_for_delivery_stream( &self, input: ListTagsForDeliveryStreamInput, ) -> RusotoFuture<ListTagsForDeliveryStreamOutput, ListTagsForDeliveryStreamError>; /// <p><p>Writes a single data record into an Amazon Kinesis Data Firehose delivery stream. To write multiple data records into a delivery stream, use <a>PutRecordBatch</a>. Applications using these operations are referred to as producers.</p> <p>By default, each delivery stream can take in up to 2,000 transactions per second, 5,000 records per second, or 5 MB per second. If you use <a>PutRecord</a> and <a>PutRecordBatch</a>, the limits are an aggregate across these two operations for each delivery stream. For more information about limits and how to request an increase, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/limits.html">Amazon Kinesis Data Firehose Limits</a>. </p> <p>You must specify the name of the delivery stream and the data record when using <a>PutRecord</a>. The data record consists of a data blob that can be up to 1,000 KB in size, and any kind of data. For example, it can be a segment from a log file, geographic location data, website clickstream data, and so on.</p> <p>Kinesis Data Firehose buffers records before delivering them to the destination. To disambiguate the data blobs at the destination, a common solution is to use delimiters in the data, such as a newline (<code>\n</code>) or some other character unique within the data. This allows the consumer application to parse individual data items when reading the data from the destination.</p> <p>The <code>PutRecord</code> operation returns a <code>RecordId</code>, which is a unique string assigned to each record. Producer applications can use this ID for purposes such as auditability and investigation.</p> <p>If the <code>PutRecord</code> operation throws a <code>ServiceUnavailableException</code>, back off and retry. If the exception persists, it is possible that the throughput limits have been exceeded for the delivery stream. </p> <p>Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they are added to a delivery stream as it tries to send the records to the destination. If the destination is unreachable for more than 24 hours, the data is no longer available.</p> <important> <p>Don't concatenate two or more base64 strings to form the data fields of your records. Instead, concatenate the raw data, then perform base64 encoding.</p> </important></p> fn put_record(&self, input: PutRecordInput) -> RusotoFuture<PutRecordOutput, PutRecordError>; /// <p><p>Writes multiple data records into a delivery stream in a single call, which can achieve higher throughput per producer than when writing single records. To write single data records into a delivery stream, use <a>PutRecord</a>. Applications using these operations are referred to as producers.</p> <p>By default, each delivery stream can take in up to 2,000 transactions per second, 5,000 records per second, or 5 MB per second. If you use <a>PutRecord</a> and <a>PutRecordBatch</a>, the limits are an aggregate across these two operations for each delivery stream. For more information about limits, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/limits.html">Amazon Kinesis Data Firehose Limits</a>.</p> <p>Each <a>PutRecordBatch</a> request supports up to 500 records. Each record in the request can be as large as 1,000 KB (before 64-bit encoding), up to a limit of 4 MB for the entire request. These limits cannot be changed.</p> <p>You must specify the name of the delivery stream and the data record when using <a>PutRecord</a>. The data record consists of a data blob that can be up to 1,000 KB in size, and any kind of data. For example, it could be a segment from a log file, geographic location data, website clickstream data, and so on.</p> <p>Kinesis Data Firehose buffers records before delivering them to the destination. To disambiguate the data blobs at the destination, a common solution is to use delimiters in the data, such as a newline (<code>\n</code>) or some other character unique within the data. This allows the consumer application to parse individual data items when reading the data from the destination.</p> <p>The <a>PutRecordBatch</a> response includes a count of failed records, <code>FailedPutCount</code>, and an array of responses, <code>RequestResponses</code>. Even if the <a>PutRecordBatch</a> call succeeds, the value of <code>FailedPutCount</code> may be greater than 0, indicating that there are records for which the operation didn't succeed. Each entry in the <code>RequestResponses</code> array provides additional information about the processed record. It directly correlates with a record in the request array using the same ordering, from the top to the bottom. The response array always includes the same number of records as the request array. <code>RequestResponses</code> includes both successfully and unsuccessfully processed records. Kinesis Data Firehose tries to process all records in each <a>PutRecordBatch</a> request. A single record failure does not stop the processing of subsequent records. </p> <p>A successfully processed record includes a <code>RecordId</code> value, which is unique for the record. An unsuccessfully processed record includes <code>ErrorCode</code> and <code>ErrorMessage</code> values. <code>ErrorCode</code> reflects the type of error, and is one of the following values: <code>ServiceUnavailableException</code> or <code>InternalFailure</code>. <code>ErrorMessage</code> provides more detailed information about the error.</p> <p>If there is an internal server error or a timeout, the write might have completed or it might have failed. If <code>FailedPutCount</code> is greater than 0, retry the request, resending only those records that might have failed processing. This minimizes the possible duplicate records and also reduces the total bytes sent (and corresponding charges). We recommend that you handle any duplicates at the destination.</p> <p>If <a>PutRecordBatch</a> throws <code>ServiceUnavailableException</code>, back off and retry. If the exception persists, it is possible that the throughput limits have been exceeded for the delivery stream.</p> <p>Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they are added to a delivery stream as it attempts to send the records to the destination. If the destination is unreachable for more than 24 hours, the data is no longer available.</p> <important> <p>Don't concatenate two or more base64 strings to form the data fields of your records. Instead, concatenate the raw data, then perform base64 encoding.</p> </important></p> fn put_record_batch( &self, input: PutRecordBatchInput, ) -> RusotoFuture<PutRecordBatchOutput, PutRecordBatchError>; /// <p>Enables server-side encryption (SSE) for the delivery stream. </p> <p>This operation is asynchronous. It returns immediately. When you invoke it, Kinesis Data Firehose first sets the status of the stream to <code>ENABLING</code>, and then to <code>ENABLED</code>. You can continue to read and write data to your stream while its status is <code>ENABLING</code>, but the data is not encrypted. It can take up to 5 seconds after the encryption status changes to <code>ENABLED</code> before all records written to the delivery stream are encrypted. To find out whether a record or a batch of records was encrypted, check the response elements <a>PutRecordOutput$Encrypted</a> and <a>PutRecordBatchOutput$Encrypted</a>, respectively.</p> <p>To check the encryption state of a delivery stream, use <a>DescribeDeliveryStream</a>.</p> <p>You can only enable SSE for a delivery stream that uses <code>DirectPut</code> as its source. </p> <p>The <code>StartDeliveryStreamEncryption</code> and <code>StopDeliveryStreamEncryption</code> operations have a combined limit of 25 calls per delivery stream per 24 hours. For example, you reach the limit if you call <code>StartDeliveryStreamEncryption</code> 13 times and <code>StopDeliveryStreamEncryption</code> 12 times for the same delivery stream in a 24-hour period.</p> fn start_delivery_stream_encryption( &self, input: StartDeliveryStreamEncryptionInput, ) -> RusotoFuture<StartDeliveryStreamEncryptionOutput, StartDeliveryStreamEncryptionError>; /// <p>Disables server-side encryption (SSE) for the delivery stream. </p> <p>This operation is asynchronous. It returns immediately. When you invoke it, Kinesis Data Firehose first sets the status of the stream to <code>DISABLING</code>, and then to <code>DISABLED</code>. You can continue to read and write data to your stream while its status is <code>DISABLING</code>. It can take up to 5 seconds after the encryption status changes to <code>DISABLED</code> before all records written to the delivery stream are no longer subject to encryption. To find out whether a record or a batch of records was encrypted, check the response elements <a>PutRecordOutput$Encrypted</a> and <a>PutRecordBatchOutput$Encrypted</a>, respectively.</p> <p>To check the encryption state of a delivery stream, use <a>DescribeDeliveryStream</a>. </p> <p>The <code>StartDeliveryStreamEncryption</code> and <code>StopDeliveryStreamEncryption</code> operations have a combined limit of 25 calls per delivery stream per 24 hours. For example, you reach the limit if you call <code>StartDeliveryStreamEncryption</code> 13 times and <code>StopDeliveryStreamEncryption</code> 12 times for the same delivery stream in a 24-hour period.</p> fn stop_delivery_stream_encryption( &self, input: StopDeliveryStreamEncryptionInput, ) -> RusotoFuture<StopDeliveryStreamEncryptionOutput, StopDeliveryStreamEncryptionError>; /// <p>Adds or updates tags for the specified delivery stream. A tag is a key-value pair that you can define and assign to AWS resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. Tags are metadata. For example, you can add friendly names and descriptions or other types of information that can help you distinguish the delivery stream. For more information about tags, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation Tags</a> in the <i>AWS Billing and Cost Management User Guide</i>. </p> <p>Each delivery stream can have up to 50 tags. </p> <p>This operation has a limit of five transactions per second per account. </p> fn tag_delivery_stream( &self, input: TagDeliveryStreamInput, ) -> RusotoFuture<TagDeliveryStreamOutput, TagDeliveryStreamError>; /// <p>Removes tags from the specified delivery stream. Removed tags are deleted, and you can't recover them after this operation successfully completes.</p> <p>If you specify a tag that doesn't exist, the operation ignores it.</p> <p>This operation has a limit of five transactions per second per account. </p> fn untag_delivery_stream( &self, input: UntagDeliveryStreamInput, ) -> RusotoFuture<UntagDeliveryStreamOutput, UntagDeliveryStreamError>; /// <p>Updates the specified destination of the specified delivery stream.</p> <p>Use this operation to change the destination type (for example, to replace the Amazon S3 destination with Amazon Redshift) or change the parameters associated with a destination (for example, to change the bucket name of the Amazon S3 destination). The update might not occur immediately. The target delivery stream remains active while the configurations are updated, so data writes to the delivery stream can continue during this process. The updated configurations are usually effective within a few minutes.</p> <p>Switching between Amazon ES and other services is not supported. For an Amazon ES destination, you can only update to another Amazon ES destination.</p> <p>If the destination type is the same, Kinesis Data Firehose merges the configuration parameters specified with the destination configuration that already exists on the delivery stream. If any of the parameters are not specified in the call, the existing values are retained. For example, in the Amazon S3 destination, if <a>EncryptionConfiguration</a> is not specified, then the existing <code>EncryptionConfiguration</code> is maintained on the destination.</p> <p>If the destination type is not the same, for example, changing the destination from Amazon S3 to Amazon Redshift, Kinesis Data Firehose does not merge any parameters. In this case, all parameters must be specified.</p> <p>Kinesis Data Firehose uses <code>CurrentDeliveryStreamVersionId</code> to avoid race conditions and conflicting merges. This is a required field, and the service updates the configuration only if the existing configuration has a version ID that matches. After the update is applied successfully, the version ID is updated, and can be retrieved using <a>DescribeDeliveryStream</a>. Use the new version ID to set <code>CurrentDeliveryStreamVersionId</code> in the next call.</p> fn update_destination( &self, input: UpdateDestinationInput, ) -> RusotoFuture<UpdateDestinationOutput, UpdateDestinationError>; } /// A client for the Firehose API. #[derive(Clone)] pub struct KinesisFirehoseClient { client: Client, region: region::Region, } impl KinesisFirehoseClient { /// Creates a client backed by the default tokio event loop. /// /// The client will use the default credentials provider and tls client. pub fn new(region: region::Region) -> KinesisFirehoseClient { KinesisFirehoseClient { client: Client::shared(), region, } } pub fn new_with<P, D>( request_dispatcher: D, credentials_provider: P, region: region::Region, ) -> KinesisFirehoseClient where P: ProvideAwsCredentials + Send + Sync + 'static, P::Future: Send, D: DispatchSignedRequest + Send + Sync + 'static, D::Future: Send, { KinesisFirehoseClient { client: Client::new_with(credentials_provider, request_dispatcher), region, } } } impl KinesisFirehose for KinesisFirehoseClient { /// <p>Creates a Kinesis Data Firehose delivery stream.</p> <p>By default, you can create up to 50 delivery streams per AWS Region.</p> <p>This is an asynchronous operation that immediately returns. The initial status of the delivery stream is <code>CREATING</code>. After the delivery stream is created, its status is <code>ACTIVE</code> and it now accepts data. Attempts to send data to a delivery stream that is not in the <code>ACTIVE</code> state cause an exception. To check the state of a delivery stream, use <a>DescribeDeliveryStream</a>.</p> <p>A Kinesis Data Firehose delivery stream can be configured to receive records directly from providers using <a>PutRecord</a> or <a>PutRecordBatch</a>, or it can be configured to use an existing Kinesis stream as its source. To specify a Kinesis data stream as input, set the <code>DeliveryStreamType</code> parameter to <code>KinesisStreamAsSource</code>, and provide the Kinesis stream Amazon Resource Name (ARN) and role ARN in the <code>KinesisStreamSourceConfiguration</code> parameter.</p> <p>A delivery stream is configured with a single destination: Amazon S3, Amazon ES, Amazon Redshift, or Splunk. You must specify only one of the following destination configuration parameters: <code>ExtendedS3DestinationConfiguration</code>, <code>S3DestinationConfiguration</code>, <code>ElasticsearchDestinationConfiguration</code>, <code>RedshiftDestinationConfiguration</code>, or <code>SplunkDestinationConfiguration</code>.</p> <p>When you specify <code>S3DestinationConfiguration</code>, you can also provide the following optional values: BufferingHints, <code>EncryptionConfiguration</code>, and <code>CompressionFormat</code>. By default, if no <code>BufferingHints</code> value is provided, Kinesis Data Firehose buffers data up to 5 MB or for 5 minutes, whichever condition is satisfied first. <code>BufferingHints</code> is a hint, so there are some cases where the service cannot adhere to these conditions strictly. For example, record boundaries might be such that the size is a little over or under the configured buffering size. By default, no encryption is performed. We strongly recommend that you enable encryption to ensure secure data storage in Amazon S3.</p> <p>A few notes about Amazon Redshift as a destination:</p> <ul> <li> <p>An Amazon Redshift destination requires an S3 bucket as intermediate location. Kinesis Data Firehose first delivers data to Amazon S3 and then uses <code>COPY</code> syntax to load data into an Amazon Redshift table. This is specified in the <code>RedshiftDestinationConfiguration.S3Configuration</code> parameter.</p> </li> <li> <p>The compression formats <code>SNAPPY</code> or <code>ZIP</code> cannot be specified in <code>RedshiftDestinationConfiguration.S3Configuration</code> because the Amazon Redshift <code>COPY</code> operation that reads from the S3 bucket doesn't support these compression formats.</p> </li> <li> <p>We strongly recommend that you use the user name and password you provide exclusively with Kinesis Data Firehose, and that the permissions for the account are restricted for Amazon Redshift <code>INSERT</code> permissions.</p> </li> </ul> <p>Kinesis Data Firehose assumes the IAM role that is configured as part of the destination. The role should allow the Kinesis Data Firehose principal to assume the role, and the role should have permissions that allow the service to deliver the data. For more information, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/controlling-access.html#using-iam-s3">Grant Kinesis Data Firehose Access to an Amazon S3 Destination</a> in the <i>Amazon Kinesis Data Firehose Developer Guide</i>.</p> fn create_delivery_stream( &self, input: CreateDeliveryStreamInput, ) -> RusotoFuture<CreateDeliveryStreamOutput, CreateDeliveryStreamError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Firehose_20150804.CreateDeliveryStream"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<CreateDeliveryStreamOutput, _>() })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(CreateDeliveryStreamError::from_response(response)) }), ) } }) } /// <p>Deletes a delivery stream and its data.</p> <p>You can delete a delivery stream only if it is in <code>ACTIVE</code> or <code>DELETING</code> state, and not in the <code>CREATING</code> state. While the deletion request is in process, the delivery stream is in the <code>DELETING</code> state.</p> <p>To check the state of a delivery stream, use <a>DescribeDeliveryStream</a>.</p> <p>While the delivery stream is <code>DELETING</code> state, the service might continue to accept the records, but it doesn't make any guarantees with respect to delivering the data. Therefore, as a best practice, you should first stop any applications that are sending records before deleting a delivery stream.</p> fn delete_delivery_stream( &self, input: DeleteDeliveryStreamInput, ) -> RusotoFuture<DeleteDeliveryStreamOutput, DeleteDeliveryStreamError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Firehose_20150804.DeleteDeliveryStream"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<DeleteDeliveryStreamOutput, _>() })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(DeleteDeliveryStreamError::from_response(response)) }), ) } }) } /// <p>Describes the specified delivery stream and gets the status. For example, after your delivery stream is created, call <code>DescribeDeliveryStream</code> to see whether the delivery stream is <code>ACTIVE</code> and therefore ready for data to be sent to it.</p> fn describe_delivery_stream( &self, input: DescribeDeliveryStreamInput, ) -> RusotoFuture<DescribeDeliveryStreamOutput, DescribeDeliveryStreamError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Firehose_20150804.DescribeDeliveryStream"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<DescribeDeliveryStreamOutput, _>() })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(DescribeDeliveryStreamError::from_response(response)) }), ) } }) } /// <p>Lists your delivery streams in alphabetical order of their names.</p> <p>The number of delivery streams might be too large to return using a single call to <code>ListDeliveryStreams</code>. You can limit the number of delivery streams returned, using the <code>Limit</code> parameter. To determine whether there are more delivery streams to list, check the value of <code>HasMoreDeliveryStreams</code> in the output. If there are more delivery streams to list, you can request them by calling this operation again and setting the <code>ExclusiveStartDeliveryStreamName</code> parameter to the name of the last delivery stream returned in the last call.</p> fn list_delivery_streams( &self, input: ListDeliveryStreamsInput, ) -> RusotoFuture<ListDeliveryStreamsOutput, ListDeliveryStreamsError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Firehose_20150804.ListDeliveryStreams"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<ListDeliveryStreamsOutput, _>() })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(ListDeliveryStreamsError::from_response(response)) }), ) } }) } /// <p>Lists the tags for the specified delivery stream. This operation has a limit of five transactions per second per account. </p> fn list_tags_for_delivery_stream( &self, input: ListTagsForDeliveryStreamInput, ) -> RusotoFuture<ListTagsForDeliveryStreamOutput, ListTagsForDeliveryStreamError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Firehose_20150804.ListTagsForDeliveryStream", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<ListTagsForDeliveryStreamOutput, _>() })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(ListTagsForDeliveryStreamError::from_response(response)) })) } }) } /// <p><p>Writes a single data record into an Amazon Kinesis Data Firehose delivery stream. To write multiple data records into a delivery stream, use <a>PutRecordBatch</a>. Applications using these operations are referred to as producers.</p> <p>By default, each delivery stream can take in up to 2,000 transactions per second, 5,000 records per second, or 5 MB per second. If you use <a>PutRecord</a> and <a>PutRecordBatch</a>, the limits are an aggregate across these two operations for each delivery stream. For more information about limits and how to request an increase, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/limits.html">Amazon Kinesis Data Firehose Limits</a>. </p> <p>You must specify the name of the delivery stream and the data record when using <a>PutRecord</a>. The data record consists of a data blob that can be up to 1,000 KB in size, and any kind of data. For example, it can be a segment from a log file, geographic location data, website clickstream data, and so on.</p> <p>Kinesis Data Firehose buffers records before delivering them to the destination. To disambiguate the data blobs at the destination, a common solution is to use delimiters in the data, such as a newline (<code>\n</code>) or some other character unique within the data. This allows the consumer application to parse individual data items when reading the data from the destination.</p> <p>The <code>PutRecord</code> operation returns a <code>RecordId</code>, which is a unique string assigned to each record. Producer applications can use this ID for purposes such as auditability and investigation.</p> <p>If the <code>PutRecord</code> operation throws a <code>ServiceUnavailableException</code>, back off and retry. If the exception persists, it is possible that the throughput limits have been exceeded for the delivery stream. </p> <p>Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they are added to a delivery stream as it tries to send the records to the destination. If the destination is unreachable for more than 24 hours, the data is no longer available.</p> <important> <p>Don't concatenate two or more base64 strings to form the data fields of your records. Instead, concatenate the raw data, then perform base64 encoding.</p> </important></p> fn put_record(&self, input: PutRecordInput) -> RusotoFuture<PutRecordOutput, PutRecordError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Firehose_20150804.PutRecord"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response).deserialize::<PutRecordOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(PutRecordError::from_response(response))), ) } }) } /// <p><p>Writes multiple data records into a delivery stream in a single call, which can achieve higher throughput per producer than when writing single records. To write single data records into a delivery stream, use <a>PutRecord</a>. Applications using these operations are referred to as producers.</p> <p>By default, each delivery stream can take in up to 2,000 transactions per second, 5,000 records per second, or 5 MB per second. If you use <a>PutRecord</a> and <a>PutRecordBatch</a>, the limits are an aggregate across these two operations for each delivery stream. For more information about limits, see <a href="http://docs.aws.amazon.com/firehose/latest/dev/limits.html">Amazon Kinesis Data Firehose Limits</a>.</p> <p>Each <a>PutRecordBatch</a> request supports up to 500 records. Each record in the request can be as large as 1,000 KB (before 64-bit encoding), up to a limit of 4 MB for the entire request. These limits cannot be changed.</p> <p>You must specify the name of the delivery stream and the data record when using <a>PutRecord</a>. The data record consists of a data blob that can be up to 1,000 KB in size, and any kind of data. For example, it could be a segment from a log file, geographic location data, website clickstream data, and so on.</p> <p>Kinesis Data Firehose buffers records before delivering them to the destination. To disambiguate the data blobs at the destination, a common solution is to use delimiters in the data, such as a newline (<code>\n</code>) or some other character unique within the data. This allows the consumer application to parse individual data items when reading the data from the destination.</p> <p>The <a>PutRecordBatch</a> response includes a count of failed records, <code>FailedPutCount</code>, and an array of responses, <code>RequestResponses</code>. Even if the <a>PutRecordBatch</a> call succeeds, the value of <code>FailedPutCount</code> may be greater than 0, indicating that there are records for which the operation didn't succeed. Each entry in the <code>RequestResponses</code> array provides additional information about the processed record. It directly correlates with a record in the request array using the same ordering, from the top to the bottom. The response array always includes the same number of records as the request array. <code>RequestResponses</code> includes both successfully and unsuccessfully processed records. Kinesis Data Firehose tries to process all records in each <a>PutRecordBatch</a> request. A single record failure does not stop the processing of subsequent records. </p> <p>A successfully processed record includes a <code>RecordId</code> value, which is unique for the record. An unsuccessfully processed record includes <code>ErrorCode</code> and <code>ErrorMessage</code> values. <code>ErrorCode</code> reflects the type of error, and is one of the following values: <code>ServiceUnavailableException</code> or <code>InternalFailure</code>. <code>ErrorMessage</code> provides more detailed information about the error.</p> <p>If there is an internal server error or a timeout, the write might have completed or it might have failed. If <code>FailedPutCount</code> is greater than 0, retry the request, resending only those records that might have failed processing. This minimizes the possible duplicate records and also reduces the total bytes sent (and corresponding charges). We recommend that you handle any duplicates at the destination.</p> <p>If <a>PutRecordBatch</a> throws <code>ServiceUnavailableException</code>, back off and retry. If the exception persists, it is possible that the throughput limits have been exceeded for the delivery stream.</p> <p>Data records sent to Kinesis Data Firehose are stored for 24 hours from the time they are added to a delivery stream as it attempts to send the records to the destination. If the destination is unreachable for more than 24 hours, the data is no longer available.</p> <important> <p>Don't concatenate two or more base64 strings to form the data fields of your records. Instead, concatenate the raw data, then perform base64 encoding.</p> </important></p> fn put_record_batch( &self, input: PutRecordBatchInput, ) -> RusotoFuture<PutRecordBatchOutput, PutRecordBatchError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Firehose_20150804.PutRecordBatch"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<PutRecordBatchOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(PutRecordBatchError::from_response(response))), ) } }) } /// <p>Enables server-side encryption (SSE) for the delivery stream. </p> <p>This operation is asynchronous. It returns immediately. When you invoke it, Kinesis Data Firehose first sets the status of the stream to <code>ENABLING</code>, and then to <code>ENABLED</code>. You can continue to read and write data to your stream while its status is <code>ENABLING</code>, but the data is not encrypted. It can take up to 5 seconds after the encryption status changes to <code>ENABLED</code> before all records written to the delivery stream are encrypted. To find out whether a record or a batch of records was encrypted, check the response elements <a>PutRecordOutput$Encrypted</a> and <a>PutRecordBatchOutput$Encrypted</a>, respectively.</p> <p>To check the encryption state of a delivery stream, use <a>DescribeDeliveryStream</a>.</p> <p>You can only enable SSE for a delivery stream that uses <code>DirectPut</code> as its source. </p> <p>The <code>StartDeliveryStreamEncryption</code> and <code>StopDeliveryStreamEncryption</code> operations have a combined limit of 25 calls per delivery stream per 24 hours. For example, you reach the limit if you call <code>StartDeliveryStreamEncryption</code> 13 times and <code>StopDeliveryStreamEncryption</code> 12 times for the same delivery stream in a 24-hour period.</p> fn start_delivery_stream_encryption( &self, input: StartDeliveryStreamEncryptionInput, ) -> RusotoFuture<StartDeliveryStreamEncryptionOutput, StartDeliveryStreamEncryptionError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Firehose_20150804.StartDeliveryStreamEncryption", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<StartDeliveryStreamEncryptionOutput, _>() })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(StartDeliveryStreamEncryptionError::from_response(response)) })) } }) } /// <p>Disables server-side encryption (SSE) for the delivery stream. </p> <p>This operation is asynchronous. It returns immediately. When you invoke it, Kinesis Data Firehose first sets the status of the stream to <code>DISABLING</code>, and then to <code>DISABLED</code>. You can continue to read and write data to your stream while its status is <code>DISABLING</code>. It can take up to 5 seconds after the encryption status changes to <code>DISABLED</code> before all records written to the delivery stream are no longer subject to encryption. To find out whether a record or a batch of records was encrypted, check the response elements <a>PutRecordOutput$Encrypted</a> and <a>PutRecordBatchOutput$Encrypted</a>, respectively.</p> <p>To check the encryption state of a delivery stream, use <a>DescribeDeliveryStream</a>. </p> <p>The <code>StartDeliveryStreamEncryption</code> and <code>StopDeliveryStreamEncryption</code> operations have a combined limit of 25 calls per delivery stream per 24 hours. For example, you reach the limit if you call <code>StartDeliveryStreamEncryption</code> 13 times and <code>StopDeliveryStreamEncryption</code> 12 times for the same delivery stream in a 24-hour period.</p> fn stop_delivery_stream_encryption( &self, input: StopDeliveryStreamEncryptionInput, ) -> RusotoFuture<StopDeliveryStreamEncryptionOutput, StopDeliveryStreamEncryptionError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header( "x-amz-target", "Firehose_20150804.StopDeliveryStreamEncryption", ); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<StopDeliveryStreamEncryptionOutput, _>() })) } else { Box::new(response.buffer().from_err().and_then(|response| { Err(StopDeliveryStreamEncryptionError::from_response(response)) })) } }) } /// <p>Adds or updates tags for the specified delivery stream. A tag is a key-value pair that you can define and assign to AWS resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. Tags are metadata. For example, you can add friendly names and descriptions or other types of information that can help you distinguish the delivery stream. For more information about tags, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation Tags</a> in the <i>AWS Billing and Cost Management User Guide</i>. </p> <p>Each delivery stream can have up to 50 tags. </p> <p>This operation has a limit of five transactions per second per account. </p> fn tag_delivery_stream( &self, input: TagDeliveryStreamInput, ) -> RusotoFuture<TagDeliveryStreamOutput, TagDeliveryStreamError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Firehose_20150804.TagDeliveryStream"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<TagDeliveryStreamOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(TagDeliveryStreamError::from_response(response))), ) } }) } /// <p>Removes tags from the specified delivery stream. Removed tags are deleted, and you can't recover them after this operation successfully completes.</p> <p>If you specify a tag that doesn't exist, the operation ignores it.</p> <p>This operation has a limit of five transactions per second per account. </p> fn untag_delivery_stream( &self, input: UntagDeliveryStreamInput, ) -> RusotoFuture<UntagDeliveryStreamOutput, UntagDeliveryStreamError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Firehose_20150804.UntagDeliveryStream"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<UntagDeliveryStreamOutput, _>() })) } else { Box::new( response.buffer().from_err().and_then(|response| { Err(UntagDeliveryStreamError::from_response(response)) }), ) } }) } /// <p>Updates the specified destination of the specified delivery stream.</p> <p>Use this operation to change the destination type (for example, to replace the Amazon S3 destination with Amazon Redshift) or change the parameters associated with a destination (for example, to change the bucket name of the Amazon S3 destination). The update might not occur immediately. The target delivery stream remains active while the configurations are updated, so data writes to the delivery stream can continue during this process. The updated configurations are usually effective within a few minutes.</p> <p>Switching between Amazon ES and other services is not supported. For an Amazon ES destination, you can only update to another Amazon ES destination.</p> <p>If the destination type is the same, Kinesis Data Firehose merges the configuration parameters specified with the destination configuration that already exists on the delivery stream. If any of the parameters are not specified in the call, the existing values are retained. For example, in the Amazon S3 destination, if <a>EncryptionConfiguration</a> is not specified, then the existing <code>EncryptionConfiguration</code> is maintained on the destination.</p> <p>If the destination type is not the same, for example, changing the destination from Amazon S3 to Amazon Redshift, Kinesis Data Firehose does not merge any parameters. In this case, all parameters must be specified.</p> <p>Kinesis Data Firehose uses <code>CurrentDeliveryStreamVersionId</code> to avoid race conditions and conflicting merges. This is a required field, and the service updates the configuration only if the existing configuration has a version ID that matches. After the update is applied successfully, the version ID is updated, and can be retrieved using <a>DescribeDeliveryStream</a>. Use the new version ID to set <code>CurrentDeliveryStreamVersionId</code> in the next call.</p> fn update_destination( &self, input: UpdateDestinationInput, ) -> RusotoFuture<UpdateDestinationOutput, UpdateDestinationError> { let mut request = SignedRequest::new("POST", "firehose", &self.region, "/"); request.set_content_type("application/x-amz-json-1.1".to_owned()); request.add_header("x-amz-target", "Firehose_20150804.UpdateDestination"); let encoded = serde_json::to_string(&input).unwrap(); request.set_payload(Some(encoded)); self.client.sign_and_dispatch(request, |response| { if response.status.is_success() { Box::new(response.buffer().from_err().and_then(|response| { proto::json::ResponsePayload::new(&response) .deserialize::<UpdateDestinationOutput, _>() })) } else { Box::new( response .buffer() .from_err() .and_then(|response| Err(UpdateDestinationError::from_response(response))), ) } }) } }