1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Describes the buffering to perform before delivering data to the Serverless
// offering for Amazon OpenSearch Service destination.
type AmazonOpenSearchServerlessBufferingHints struct {
// Buffer incoming data for the specified period of time, in seconds, before
// delivering it to the destination. The default value is 300 (5 minutes).
IntervalInSeconds *int32
// Buffer incoming data to the specified size, in MBs, before delivering it to the
// destination. The default value is 5. 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.
SizeInMBs *int32
noSmithyDocumentSerde
}
// Describes the configuration of a destination in the Serverless offering for
// Amazon OpenSearch Service.
type AmazonOpenSearchServerlessDestinationConfiguration struct {
// The Serverless offering for Amazon OpenSearch Service index name.
//
// This member is required.
IndexName *string
// The Amazon Resource Name (ARN) of the IAM role to be assumed by Kinesis Data
// Firehose for calling the Serverless offering for Amazon OpenSearch Service
// Configuration API and for indexing documents.
//
// This member is required.
RoleARN *string
// Describes the configuration of a destination in Amazon S3.
//
// This member is required.
S3Configuration *S3DestinationConfiguration
// The buffering options. If no value is specified, the default values for
// AmazonopensearchserviceBufferingHints are used.
BufferingHints *AmazonOpenSearchServerlessBufferingHints
// Describes the Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The endpoint to use when communicating with the collection in the Serverless
// offering for Amazon OpenSearch Service.
CollectionEndpoint *string
// Describes a data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The retry behavior in case Kinesis Data Firehose is unable to deliver documents
// to the Serverless offering for Amazon OpenSearch Service. The default value is
// 300 (5 minutes).
RetryOptions *AmazonOpenSearchServerlessRetryOptions
// Defines how documents should be delivered to Amazon S3. When it is set to
// FailedDocumentsOnly, Kinesis Data Firehose writes any documents that could not
// be indexed to the configured Amazon S3 destination, with
// AmazonOpenSearchService-failed/ appended to the key prefix. When set to
// AllDocuments, Kinesis Data Firehose delivers all incoming records to Amazon S3,
// and also writes failed documents with AmazonOpenSearchService-failed/ appended
// to the prefix.
S3BackupMode AmazonOpenSearchServerlessS3BackupMode
// The details of the VPC of the Amazon OpenSearch or Amazon OpenSearch Serverless
// destination.
VpcConfiguration *VpcConfiguration
noSmithyDocumentSerde
}
// The destination description in the Serverless offering for Amazon OpenSearch
// Service.
type AmazonOpenSearchServerlessDestinationDescription struct {
// The buffering options.
BufferingHints *AmazonOpenSearchServerlessBufferingHints
// Describes the Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The endpoint to use when communicating with the collection in the Serverless
// offering for Amazon OpenSearch Service.
CollectionEndpoint *string
// The Serverless offering for Amazon OpenSearch Service index name.
IndexName *string
// Describes a data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The Serverless offering for Amazon OpenSearch Service retry options.
RetryOptions *AmazonOpenSearchServerlessRetryOptions
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials.
RoleARN *string
// The Amazon S3 backup mode.
S3BackupMode AmazonOpenSearchServerlessS3BackupMode
// Describes a destination in Amazon S3.
S3DestinationDescription *S3DestinationDescription
// The details of the VPC of the Amazon ES destination.
VpcConfigurationDescription *VpcConfigurationDescription
noSmithyDocumentSerde
}
// Describes an update for a destination in the Serverless offering for Amazon
// OpenSearch Service.
type AmazonOpenSearchServerlessDestinationUpdate struct {
// The buffering options. If no value is specified, AmazonopensearchBufferingHints
// object default values are used.
BufferingHints *AmazonOpenSearchServerlessBufferingHints
// Describes the Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The endpoint to use when communicating with the collection in the Serverless
// offering for Amazon OpenSearch Service.
CollectionEndpoint *string
// The Serverless offering for Amazon OpenSearch Service index name.
IndexName *string
// Describes a data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The retry behavior in case Kinesis Data Firehose is unable to deliver documents
// to the Serverless offering for Amazon OpenSearch Service. The default value is
// 300 (5 minutes).
RetryOptions *AmazonOpenSearchServerlessRetryOptions
// The Amazon Resource Name (ARN) of the IAM role to be assumed by Kinesis Data
// Firehose for calling the Serverless offering for Amazon OpenSearch Service
// Configuration API and for indexing documents.
RoleARN *string
// Describes an update for a destination in Amazon S3.
S3Update *S3DestinationUpdate
noSmithyDocumentSerde
}
// Configures retry behavior in case Kinesis Data Firehose is unable to deliver
// documents to the Serverless offering for Amazon OpenSearch Service.
type AmazonOpenSearchServerlessRetryOptions struct {
// After an initial failure to deliver to the Serverless offering for Amazon
// OpenSearch Service, 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.
DurationInSeconds *int32
noSmithyDocumentSerde
}
// Describes the buffering to perform before delivering data to the Amazon
// OpenSearch Service destination.
type AmazonopensearchserviceBufferingHints struct {
// Buffer incoming data for the specified period of time, in seconds, before
// delivering it to the destination. The default value is 300 (5 minutes).
IntervalInSeconds *int32
// Buffer incoming data to the specified size, in MBs, before delivering it to the
// destination. The default value is 5. 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.
SizeInMBs *int32
noSmithyDocumentSerde
}
// Describes the configuration of a destination in Amazon OpenSearch Service
type AmazonopensearchserviceDestinationConfiguration struct {
// The ElasticsearAmazon OpenSearch Service index name.
//
// This member is required.
IndexName *string
// The Amazon Resource Name (ARN) of the IAM role to be assumed by Kinesis Data
// Firehose for calling the Amazon OpenSearch Service Configuration API and for
// indexing documents.
//
// This member is required.
RoleARN *string
// Describes the configuration of a destination in Amazon S3.
//
// This member is required.
S3Configuration *S3DestinationConfiguration
// The buffering options. If no value is specified, the default values for
// AmazonopensearchserviceBufferingHints are used.
BufferingHints *AmazonopensearchserviceBufferingHints
// Describes the Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The endpoint to use when communicating with the cluster. Specify either this
// ClusterEndpoint or the DomainARN field.
ClusterEndpoint *string
// Indicates the method for setting up document ID. The supported methods are
// Kinesis Data Firehose generated document ID and OpenSearch Service generated
// document ID.
DocumentIdOptions *DocumentIdOptions
// The ARN of the Amazon OpenSearch Service domain. The IAM role must have
// permissions for DescribeElasticsearchDomain, DescribeElasticsearchDomains, and
// DescribeElasticsearchDomainConfig after assuming the role specified in RoleARN.
DomainARN *string
// The Amazon OpenSearch Service index rotation period. Index rotation appends a
// timestamp to the IndexName to facilitate the expiration of old data.
IndexRotationPeriod AmazonopensearchserviceIndexRotationPeriod
// Describes a data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The retry behavior in case Kinesis Data Firehose is unable to deliver documents
// to Amazon OpenSearch Service. The default value is 300 (5 minutes).
RetryOptions *AmazonopensearchserviceRetryOptions
// Defines how documents should be delivered to Amazon S3. When it is set to
// FailedDocumentsOnly, Kinesis Data Firehose writes any documents that could not
// be indexed to the configured Amazon S3 destination, with
// AmazonOpenSearchService-failed/ appended to the key prefix. When set to
// AllDocuments, Kinesis Data Firehose delivers all incoming records to Amazon S3,
// and also writes failed documents with AmazonOpenSearchService-failed/ appended
// to the prefix.
S3BackupMode AmazonopensearchserviceS3BackupMode
// The Amazon OpenSearch Service 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.
TypeName *string
// The details of the VPC of the Amazon OpenSearch or Amazon OpenSearch Serverless
// destination.
VpcConfiguration *VpcConfiguration
noSmithyDocumentSerde
}
// The destination description in Amazon OpenSearch Service.
type AmazonopensearchserviceDestinationDescription struct {
// The buffering options.
BufferingHints *AmazonopensearchserviceBufferingHints
// Describes the Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The endpoint to use when communicating with the cluster. Kinesis Data Firehose
// uses either this ClusterEndpoint or the DomainARN field to send data to Amazon
// OpenSearch Service.
ClusterEndpoint *string
// Indicates the method for setting up document ID. The supported methods are
// Kinesis Data Firehose generated document ID and OpenSearch Service generated
// document ID.
DocumentIdOptions *DocumentIdOptions
// The ARN of the Amazon OpenSearch Service domain.
DomainARN *string
// The Amazon OpenSearch Service index name.
IndexName *string
// The Amazon OpenSearch Service index rotation period
IndexRotationPeriod AmazonopensearchserviceIndexRotationPeriod
// Describes a data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The Amazon OpenSearch Service retry options.
RetryOptions *AmazonopensearchserviceRetryOptions
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials.
RoleARN *string
// The Amazon S3 backup mode.
S3BackupMode AmazonopensearchserviceS3BackupMode
// Describes a destination in Amazon S3.
S3DestinationDescription *S3DestinationDescription
// The Amazon OpenSearch Service type name. This applies to Elasticsearch 6.x and
// lower versions. For Elasticsearch 7.x and OpenSearch Service 1.x, there's no
// value for TypeName.
TypeName *string
// The details of the VPC of the Amazon ES destination.
VpcConfigurationDescription *VpcConfigurationDescription
noSmithyDocumentSerde
}
// Describes an update for a destination in Amazon OpenSearch Service.
type AmazonopensearchserviceDestinationUpdate struct {
// The buffering options. If no value is specified, AmazonopensearchBufferingHints
// object default values are used.
BufferingHints *AmazonopensearchserviceBufferingHints
// Describes the Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The endpoint to use when communicating with the cluster. Specify either this
// ClusterEndpoint or the DomainARN field.
ClusterEndpoint *string
// Indicates the method for setting up document ID. The supported methods are
// Kinesis Data Firehose generated document ID and OpenSearch Service generated
// document ID.
DocumentIdOptions *DocumentIdOptions
// The ARN of the Amazon OpenSearch Service domain. The IAM role must have
// permissions for DescribeDomain, DescribeDomains, and DescribeDomainConfig after
// assuming the IAM role specified in RoleARN.
DomainARN *string
// The Amazon OpenSearch Service index name.
IndexName *string
// The Amazon OpenSearch Service index rotation period. Index rotation appends a
// timestamp to IndexName to facilitate the expiration of old data.
IndexRotationPeriod AmazonopensearchserviceIndexRotationPeriod
// Describes a data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The retry behavior in case Kinesis Data Firehose is unable to deliver documents
// to Amazon OpenSearch Service. The default value is 300 (5 minutes).
RetryOptions *AmazonopensearchserviceRetryOptions
// The Amazon Resource Name (ARN) of the IAM role to be assumed by Kinesis Data
// Firehose for calling the Amazon OpenSearch Service Configuration API and for
// indexing documents.
RoleARN *string
// Describes an update for a destination in Amazon S3.
S3Update *S3DestinationUpdate
// The Amazon OpenSearch Service 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. If you upgrade Elasticsearch from 6.x to 7.x and don’t update your
// delivery stream, Kinesis Data Firehose still delivers data to Elasticsearch with
// the old index name and type name. If you want to update your delivery stream
// with a new index name, provide an empty string for TypeName.
TypeName *string
noSmithyDocumentSerde
}
// Configures retry behavior in case Kinesis Data Firehose is unable to deliver
// documents to Amazon OpenSearch Service.
type AmazonopensearchserviceRetryOptions struct {
// After an initial failure to deliver to Amazon OpenSearch Service, 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.
DurationInSeconds *int32
noSmithyDocumentSerde
}
// The authentication configuration of the Amazon MSK cluster.
type AuthenticationConfiguration struct {
// The type of connectivity used to access the Amazon MSK cluster.
//
// This member is required.
Connectivity Connectivity
// The ARN of the role used to access the Amazon MSK cluster.
//
// This member is required.
RoleARN *string
noSmithyDocumentSerde
}
// 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. The SizeInMBs
// and IntervalInSeconds parameters are optional. However, if specify a value for
// one of them, you must also provide a value for the other.
type BufferingHints struct {
// Buffer incoming data for the specified period of time, in seconds, before
// delivering it to the destination. The default value is 300. This parameter is
// optional but if you specify a value for it, you must also specify a value for
// SizeInMBs , and vice versa.
IntervalInSeconds *int32
// Buffer incoming data to the specified size, in MiBs, before delivering it to
// the destination. The default value is 5. This parameter is optional but if you
// specify a value for it, you must also specify a value for IntervalInSeconds ,
// and vice versa. 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 MiB/sec, the value should be 10 MiB
// or higher.
SizeInMBs *int32
noSmithyDocumentSerde
}
// Describes the Amazon CloudWatch logging options for your delivery stream.
type CloudWatchLoggingOptions struct {
// Enables or disables CloudWatch logging.
Enabled *bool
// The CloudWatch group name for logging. This value is required if CloudWatch
// logging is enabled.
LogGroupName *string
// The CloudWatch log stream name for logging. This value is required if
// CloudWatch logging is enabled.
LogStreamName *string
noSmithyDocumentSerde
}
// Describes a COPY command for Amazon Redshift.
type CopyCommand struct {
// The name of the target table. The table must already exist in the database.
//
// This member is required.
DataTableName *string
// Optional parameters to use with the Amazon Redshift COPY command. For more
// information, see the "Optional Parameters" section of Amazon Redshift COPY
// command (https://docs.aws.amazon.com/redshift/latest/dg/r_COPY.html) . Some
// possible examples that would apply to Kinesis Data Firehose are as follows:
// delimiter '\t' lzop; - fields are delimited with "\t" (TAB character) and
// compressed using lzop. delimiter '|' - fields are delimited with "|" (this is
// the default delimiter). delimiter '|' escape - the delimiter should be escaped.
// fixedwidth 'venueid:3,venuename:25,venuecity:12,venuestate:2,venueseats:6' -
// fields are fixed width in the source, with each width specified after every
// column in the table. JSON 's3://mybucket/jsonpaths.txt' - data is in JSON
// format, and the path specified is the format of the data. For more examples, see
// Amazon Redshift COPY command examples (https://docs.aws.amazon.com/redshift/latest/dg/r_COPY_command_examples.html)
// .
CopyOptions *string
// A comma-separated list of column names.
DataTableColumns *string
noSmithyDocumentSerde
}
// 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 Amazon Web Services Glue table, to deserialize
// your input data from JSON and then serialize it to the Parquet or ORC format.
// For more information, see Kinesis Data Firehose Record Format Conversion (https://docs.aws.amazon.com/firehose/latest/dev/record-format-conversion.html)
// .
type DataFormatConversionConfiguration struct {
// Defaults to true . Set it to false if you want to disable format conversion
// while preserving the configuration details.
Enabled *bool
// Specifies the deserializer that you want Kinesis Data Firehose to use to
// convert the format of your data from JSON. This parameter is required if Enabled
// is set to true.
InputFormatConfiguration *InputFormatConfiguration
// Specifies the serializer that you want Kinesis Data Firehose to use to convert
// the format of your data to the Parquet or ORC format. This parameter is required
// if Enabled is set to true.
OutputFormatConfiguration *OutputFormatConfiguration
// Specifies the Amazon Web Services Glue Data Catalog table that contains the
// column information. This parameter is required if Enabled is set to true.
SchemaConfiguration *SchemaConfiguration
noSmithyDocumentSerde
}
// Contains information about a delivery stream.
type DeliveryStreamDescription struct {
// The Amazon Resource Name (ARN) of the delivery stream. For more information,
// see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
DeliveryStreamARN *string
// The name of the delivery stream.
//
// This member is required.
DeliveryStreamName *string
// The status of the delivery stream. If the status of a delivery stream is
// CREATING_FAILED , this status doesn't change, and you can't invoke
// CreateDeliveryStream again on it. However, you can invoke the
// DeleteDeliveryStream operation to delete it.
//
// This member is required.
DeliveryStreamStatus DeliveryStreamStatus
// The delivery stream type. This can be one of the following values:
// - DirectPut : Provider applications access the delivery stream directly.
// - KinesisStreamAsSource : The delivery stream uses a Kinesis data stream as a
// source.
//
// This member is required.
DeliveryStreamType DeliveryStreamType
// The destinations.
//
// This member is required.
Destinations []DestinationDescription
// Indicates whether there are more destinations available to list.
//
// This member is required.
HasMoreDestinations *bool
// 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.
//
// This member is required.
VersionId *string
// The date and time that the delivery stream was created.
CreateTimestamp *time.Time
// Indicates the server-side encryption (SSE) status for the delivery stream.
DeliveryStreamEncryptionConfiguration *DeliveryStreamEncryptionConfiguration
// Provides details in case one of the following operations fails due to an error
// related to KMS: CreateDeliveryStream , DeleteDeliveryStream ,
// StartDeliveryStreamEncryption , StopDeliveryStreamEncryption .
FailureDescription *FailureDescription
// The date and time that the delivery stream was last updated.
LastUpdateTimestamp *time.Time
// If the DeliveryStreamType parameter is KinesisStreamAsSource , a
// SourceDescription object describing the source Kinesis data stream.
Source *SourceDescription
noSmithyDocumentSerde
}
// Contains information about the server-side encryption (SSE) status for the
// delivery stream, the type customer master key (CMK) in use, if any, and the ARN
// of the CMK. You can get DeliveryStreamEncryptionConfiguration by invoking the
// DescribeDeliveryStream operation.
type DeliveryStreamEncryptionConfiguration struct {
// Provides details in case one of the following operations fails due to an error
// related to KMS: CreateDeliveryStream , DeleteDeliveryStream ,
// StartDeliveryStreamEncryption , StopDeliveryStreamEncryption .
FailureDescription *FailureDescription
// If KeyType is CUSTOMER_MANAGED_CMK , this field contains the ARN of the customer
// managed CMK. If KeyType is Amazon Web Services_OWNED_CMK ,
// DeliveryStreamEncryptionConfiguration doesn't contain a value for KeyARN .
KeyARN *string
// Indicates the type of customer master key (CMK) that is used for encryption.
// The default setting is Amazon Web Services_OWNED_CMK . For more information
// about CMKs, see Customer Master Keys (CMKs) (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#master_keys)
// .
KeyType KeyType
// This is the server-side encryption (SSE) status for the delivery stream. For a
// full description of the different values of this status, see
// StartDeliveryStreamEncryption and StopDeliveryStreamEncryption . If this status
// is ENABLING_FAILED or DISABLING_FAILED , it is the status of the most recent
// attempt to enable or disable SSE, respectively.
Status DeliveryStreamEncryptionStatus
noSmithyDocumentSerde
}
// Specifies the type and Amazon Resource Name (ARN) of the CMK to use for
// Server-Side Encryption (SSE).
type DeliveryStreamEncryptionConfigurationInput struct {
// Indicates the type of customer master key (CMK) to use for encryption. The
// default setting is Amazon Web Services_OWNED_CMK . For more information about
// CMKs, see Customer Master Keys (CMKs) (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#master_keys)
// . When you invoke CreateDeliveryStream or StartDeliveryStreamEncryption with
// KeyType set to CUSTOMER_MANAGED_CMK, Kinesis Data Firehose invokes the Amazon
// KMS operation CreateGrant (https://docs.aws.amazon.com/kms/latest/APIReference/API_CreateGrant.html)
// to create a grant that allows the Kinesis Data Firehose service to use the
// customer managed CMK to perform encryption and decryption. Kinesis Data Firehose
// manages that grant. When you invoke StartDeliveryStreamEncryption to change the
// CMK for a delivery stream that is encrypted with a customer managed CMK, Kinesis
// Data Firehose schedules the grant it had on the old CMK for retirement. You can
// use a CMK of type CUSTOMER_MANAGED_CMK to encrypt up to 500 delivery streams. If
// a CreateDeliveryStream or StartDeliveryStreamEncryption operation exceeds this
// limit, Kinesis Data Firehose throws a LimitExceededException . To encrypt your
// delivery stream, use symmetric CMKs. Kinesis Data Firehose doesn't support
// asymmetric CMKs. For information about symmetric and asymmetric CMKs, see About
// Symmetric and Asymmetric CMKs (https://docs.aws.amazon.com/kms/latest/developerguide/symm-asymm-concepts.html)
// in the Amazon Web Services Key Management Service developer guide.
//
// This member is required.
KeyType KeyType
// If you set KeyType to CUSTOMER_MANAGED_CMK , you must specify the Amazon
// Resource Name (ARN) of the CMK. If you set KeyType to Amazon Web
// Services_OWNED_CMK , Kinesis Data Firehose uses a service-account CMK.
KeyARN *string
noSmithyDocumentSerde
}
// 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 Serializer . Kinesis Data Firehose supports two types of
// deserializers: the Apache Hive JSON SerDe (https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-JSON)
// and the OpenX JSON SerDe (https://github.com/rcongiu/Hive-JSON-Serde) .
type Deserializer struct {
// 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.
HiveJsonSerDe *HiveJsonSerDe
// 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.
OpenXJsonSerDe *OpenXJsonSerDe
noSmithyDocumentSerde
}
// Describes the destination for a delivery stream.
type DestinationDescription struct {
// The ID of the destination.
//
// This member is required.
DestinationId *string
// The destination in the Serverless offering for Amazon OpenSearch Service.
AmazonOpenSearchServerlessDestinationDescription *AmazonOpenSearchServerlessDestinationDescription
// The destination in Amazon OpenSearch Service.
AmazonopensearchserviceDestinationDescription *AmazonopensearchserviceDestinationDescription
// The destination in Amazon ES.
ElasticsearchDestinationDescription *ElasticsearchDestinationDescription
// The destination in Amazon S3.
ExtendedS3DestinationDescription *ExtendedS3DestinationDescription
// Describes the specified HTTP endpoint destination.
HttpEndpointDestinationDescription *HttpEndpointDestinationDescription
// The destination in Amazon Redshift.
RedshiftDestinationDescription *RedshiftDestinationDescription
// [Deprecated] The destination in Amazon S3.
S3DestinationDescription *S3DestinationDescription
// The destination in Splunk.
SplunkDestinationDescription *SplunkDestinationDescription
noSmithyDocumentSerde
}
// Indicates the method for setting up document ID. The supported methods are
// Kinesis Data Firehose generated document ID and OpenSearch Service generated
// document ID.
type DocumentIdOptions struct {
// When the FIREHOSE_DEFAULT option is chosen, Kinesis Data Firehose generates a
// unique document ID for each record based on a unique internal identifier. The
// generated document ID is stable across multiple delivery attempts, which helps
// prevent the same record from being indexed multiple times with different
// document IDs. When the NO_DOCUMENT_ID option is chosen, Kinesis Data Firehose
// does not include any document IDs in the requests it sends to the Amazon
// OpenSearch Service. This causes the Amazon OpenSearch Service domain to generate
// document IDs. In case of multiple delivery attempts, this may cause the same
// record to be indexed more than once with different document IDs. This option
// enables write-heavy operations, such as the ingestion of logs and observability
// data, to consume less resources in the Amazon OpenSearch Service domain,
// resulting in improved performance.
//
// This member is required.
DefaultDocumentIdFormat DefaultDocumentIdFormat
noSmithyDocumentSerde
}
// The configuration of the dynamic partitioning mechanism that creates smaller
// data sets from the streaming data by partitioning it based on partition keys.
// Currently, dynamic partitioning is only supported for Amazon S3 destinations.
type DynamicPartitioningConfiguration struct {
// Specifies that the dynamic partitioning is enabled for this Kinesis Data
// Firehose delivery stream.
Enabled *bool
// The retry behavior in case Kinesis Data Firehose is unable to deliver data to
// an Amazon S3 prefix.
RetryOptions *RetryOptions
noSmithyDocumentSerde
}
// Describes the buffering to perform before delivering data to the Amazon ES
// destination.
type ElasticsearchBufferingHints struct {
// Buffer incoming data for the specified period of time, in seconds, before
// delivering it to the destination. The default value is 300 (5 minutes).
IntervalInSeconds *int32
// Buffer incoming data to the specified size, in MBs, before delivering it to the
// destination. The default value is 5. 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.
SizeInMBs *int32
noSmithyDocumentSerde
}
// Describes the configuration of a destination in Amazon ES.
type ElasticsearchDestinationConfiguration struct {
// The Elasticsearch index name.
//
// This member is required.
IndexName *string
// 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 Grant Kinesis Data Firehose Access to an Amazon S3
// Destination (https://docs.aws.amazon.com/firehose/latest/dev/controlling-access.html#using-iam-s3)
// and Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
RoleARN *string
// The configuration for the backup Amazon S3 location.
//
// This member is required.
S3Configuration *S3DestinationConfiguration
// The buffering options. If no value is specified, the default values for
// ElasticsearchBufferingHints are used.
BufferingHints *ElasticsearchBufferingHints
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The endpoint to use when communicating with the cluster. Specify either this
// ClusterEndpoint or the DomainARN field.
ClusterEndpoint *string
// Indicates the method for setting up document ID. The supported methods are
// Kinesis Data Firehose generated document ID and OpenSearch Service generated
// document ID.
DocumentIdOptions *DocumentIdOptions
// The ARN of the Amazon ES domain. The IAM role must have permissions for
// DescribeDomain , DescribeDomains , and DescribeDomainConfig after assuming the
// role specified in RoleARN. For more information, see Amazon Resource Names
// (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// . Specify either ClusterEndpoint or DomainARN .
DomainARN *string
// The Elasticsearch index rotation period. Index rotation appends a timestamp to
// the IndexName to facilitate the expiration of old data. For more information,
// see Index Rotation for the Amazon ES Destination (https://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#es-index-rotation)
// . The default value is OneDay .
IndexRotationPeriod ElasticsearchIndexRotationPeriod
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The retry behavior in case Kinesis Data Firehose is unable to deliver documents
// to Amazon ES. The default value is 300 (5 minutes).
RetryOptions *ElasticsearchRetryOptions
// Defines how documents should be delivered to Amazon S3. When it is set to
// FailedDocumentsOnly , Kinesis Data Firehose writes any documents that could not
// be indexed to the configured Amazon S3 destination, with
// AmazonOpenSearchService-failed/ appended to the key prefix. When set to
// AllDocuments , Kinesis Data Firehose delivers all incoming records to Amazon S3,
// and also writes failed documents with AmazonOpenSearchService-failed/ appended
// to the prefix. For more information, see Amazon S3 Backup for the Amazon ES
// Destination (https://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#es-s3-backup)
// . Default value is FailedDocumentsOnly . You can't change this backup mode after
// you create the delivery stream.
S3BackupMode ElasticsearchS3BackupMode
// 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. For
// Elasticsearch 7.x, don't specify a TypeName .
TypeName *string
// The details of the VPC of the Amazon destination.
VpcConfiguration *VpcConfiguration
noSmithyDocumentSerde
}
// The destination description in Amazon ES.
type ElasticsearchDestinationDescription struct {
// The buffering options.
BufferingHints *ElasticsearchBufferingHints
// The Amazon CloudWatch logging options.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The endpoint to use when communicating with the cluster. Kinesis Data Firehose
// uses either this ClusterEndpoint or the DomainARN field to send data to Amazon
// ES.
ClusterEndpoint *string
// Indicates the method for setting up document ID. The supported methods are
// Kinesis Data Firehose generated document ID and OpenSearch Service generated
// document ID.
DocumentIdOptions *DocumentIdOptions
// The ARN of the Amazon ES domain. For more information, see Amazon Resource
// Names (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// . Kinesis Data Firehose uses either ClusterEndpoint or DomainARN to send data
// to Amazon ES.
DomainARN *string
// The Elasticsearch index name.
IndexName *string
// The Elasticsearch index rotation period
IndexRotationPeriod ElasticsearchIndexRotationPeriod
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The Amazon ES retry options.
RetryOptions *ElasticsearchRetryOptions
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
RoleARN *string
// The Amazon S3 backup mode.
S3BackupMode ElasticsearchS3BackupMode
// The Amazon S3 destination.
S3DestinationDescription *S3DestinationDescription
// The Elasticsearch type name. This applies to Elasticsearch 6.x and lower
// versions. For Elasticsearch 7.x and OpenSearch Service 1.x, there's no value for
// TypeName .
TypeName *string
// The details of the VPC of the Amazon OpenSearch or the Amazon OpenSearch
// Serverless destination.
VpcConfigurationDescription *VpcConfigurationDescription
noSmithyDocumentSerde
}
// Describes an update for a destination in Amazon ES.
type ElasticsearchDestinationUpdate struct {
// The buffering options. If no value is specified, ElasticsearchBufferingHints
// object default values are used.
BufferingHints *ElasticsearchBufferingHints
// The CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The endpoint to use when communicating with the cluster. Specify either this
// ClusterEndpoint or the DomainARN field.
ClusterEndpoint *string
// Indicates the method for setting up document ID. The supported methods are
// Kinesis Data Firehose generated document ID and OpenSearch Service generated
// document ID.
DocumentIdOptions *DocumentIdOptions
// The ARN of the Amazon ES domain. The IAM role must have permissions for
// DescribeDomain , DescribeDomains , and DescribeDomainConfig after assuming the
// IAM role specified in RoleARN . For more information, see Amazon Resource Names
// (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// . Specify either ClusterEndpoint or DomainARN .
DomainARN *string
// The Elasticsearch index name.
IndexName *string
// The Elasticsearch index rotation period. Index rotation appends a timestamp to
// IndexName to facilitate the expiration of old data. For more information, see
// Index Rotation for the Amazon ES Destination (https://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#es-index-rotation)
// . Default value is OneDay .
IndexRotationPeriod ElasticsearchIndexRotationPeriod
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The retry behavior in case Kinesis Data Firehose is unable to deliver documents
// to Amazon ES. The default value is 300 (5 minutes).
RetryOptions *ElasticsearchRetryOptions
// 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 Grant Kinesis Data Firehose Access to an Amazon S3
// Destination (https://docs.aws.amazon.com/firehose/latest/dev/controlling-access.html#using-iam-s3)
// and Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
RoleARN *string
// The Amazon S3 destination.
S3Update *S3DestinationUpdate
// 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. If you
// upgrade Elasticsearch from 6.x to 7.x and don’t update your delivery stream,
// Kinesis Data Firehose still delivers data to Elasticsearch with the old index
// name and type name. If you want to update your delivery stream with a new index
// name, provide an empty string for TypeName .
TypeName *string
noSmithyDocumentSerde
}
// Configures retry behavior in case Kinesis Data Firehose is unable to deliver
// documents to Amazon ES.
type ElasticsearchRetryOptions struct {
// 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.
DurationInSeconds *int32
noSmithyDocumentSerde
}
// Describes the encryption for a destination in Amazon S3.
type EncryptionConfiguration struct {
// The encryption key.
KMSEncryptionConfig *KMSEncryptionConfig
// Specifically override existing encryption information to ensure that no
// encryption is used.
NoEncryptionConfig NoEncryptionConfig
noSmithyDocumentSerde
}
// Describes the configuration of a destination in Amazon S3.
type ExtendedS3DestinationConfiguration struct {
// The ARN of the S3 bucket. For more information, see Amazon Resource Names
// (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
BucketARN *string
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
RoleARN *string
// The buffering option.
BufferingHints *BufferingHints
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The compression format. If no value is specified, the default is UNCOMPRESSED.
CompressionFormat CompressionFormat
// The serializer, deserializer, and schema for converting data from the JSON
// format to the Parquet or ORC format before writing it to Amazon S3.
DataFormatConversionConfiguration *DataFormatConversionConfiguration
// The configuration of the dynamic partitioning mechanism that creates smaller
// data sets from the streaming data by partitioning it based on partition keys.
// Currently, dynamic partitioning is only supported for Amazon S3 destinations.
DynamicPartitioningConfiguration *DynamicPartitioningConfiguration
// The encryption configuration. If no value is specified, the default is no
// encryption.
EncryptionConfiguration *EncryptionConfiguration
// 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.
// For information about how to specify this prefix, see Custom Prefixes for
// Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
ErrorOutputPrefix *string
// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered
// Amazon S3 files. You can also specify a custom prefix, as described in Custom
// Prefixes for Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
Prefix *string
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The configuration for backup in Amazon S3.
S3BackupConfiguration *S3DestinationConfiguration
// The Amazon S3 backup mode. After you create a delivery stream, you can update
// it to enable Amazon S3 backup if it is disabled. If backup is enabled, you can't
// update the delivery stream to disable it.
S3BackupMode S3BackupMode
noSmithyDocumentSerde
}
// Describes a destination in Amazon S3.
type ExtendedS3DestinationDescription struct {
// The ARN of the S3 bucket. For more information, see Amazon Resource Names
// (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
BucketARN *string
// The buffering option.
//
// This member is required.
BufferingHints *BufferingHints
// The compression format. If no value is specified, the default is UNCOMPRESSED .
//
// This member is required.
CompressionFormat CompressionFormat
// The encryption configuration. If no value is specified, the default is no
// encryption.
//
// This member is required.
EncryptionConfiguration *EncryptionConfiguration
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
RoleARN *string
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The serializer, deserializer, and schema for converting data from the JSON
// format to the Parquet or ORC format before writing it to Amazon S3.
DataFormatConversionConfiguration *DataFormatConversionConfiguration
// The configuration of the dynamic partitioning mechanism that creates smaller
// data sets from the streaming data by partitioning it based on partition keys.
// Currently, dynamic partitioning is only supported for Amazon S3 destinations.
DynamicPartitioningConfiguration *DynamicPartitioningConfiguration
// 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.
// For information about how to specify this prefix, see Custom Prefixes for
// Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
ErrorOutputPrefix *string
// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered
// Amazon S3 files. You can also specify a custom prefix, as described in Custom
// Prefixes for Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
Prefix *string
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The configuration for backup in Amazon S3.
S3BackupDescription *S3DestinationDescription
// The Amazon S3 backup mode.
S3BackupMode S3BackupMode
noSmithyDocumentSerde
}
// Describes an update for a destination in Amazon S3.
type ExtendedS3DestinationUpdate struct {
// The ARN of the S3 bucket. For more information, see Amazon Resource Names
// (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
BucketARN *string
// The buffering option.
BufferingHints *BufferingHints
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The compression format. If no value is specified, the default is UNCOMPRESSED .
CompressionFormat CompressionFormat
// The serializer, deserializer, and schema for converting data from the JSON
// format to the Parquet or ORC format before writing it to Amazon S3.
DataFormatConversionConfiguration *DataFormatConversionConfiguration
// The configuration of the dynamic partitioning mechanism that creates smaller
// data sets from the streaming data by partitioning it based on partition keys.
// Currently, dynamic partitioning is only supported for Amazon S3 destinations.
DynamicPartitioningConfiguration *DynamicPartitioningConfiguration
// The encryption configuration. If no value is specified, the default is no
// encryption.
EncryptionConfiguration *EncryptionConfiguration
// 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.
// For information about how to specify this prefix, see Custom Prefixes for
// Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
ErrorOutputPrefix *string
// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered
// Amazon S3 files. You can also specify a custom prefix, as described in Custom
// Prefixes for Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
Prefix *string
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
RoleARN *string
// You can update a delivery stream to enable Amazon S3 backup if it is disabled.
// If backup is enabled, you can't update the delivery stream to disable it.
S3BackupMode S3BackupMode
// The Amazon S3 destination for backup.
S3BackupUpdate *S3DestinationUpdate
noSmithyDocumentSerde
}
// Provides details in case one of the following operations fails due to an error
// related to KMS: CreateDeliveryStream , DeleteDeliveryStream ,
// StartDeliveryStreamEncryption , StopDeliveryStreamEncryption .
type FailureDescription struct {
// A message providing details about the error that caused the failure.
//
// This member is required.
Details *string
// The type of error that caused the failure.
//
// This member is required.
Type DeliveryStreamFailureType
noSmithyDocumentSerde
}
// 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.
type HiveJsonSerDe struct {
// 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 Class DateTimeFormat (https://www.joda.org/joda-time/apidocs/org/joda/time/format/DateTimeFormat.html)
// . You can also use the special value millis to parse timestamps in epoch
// milliseconds. If you don't specify a format, Kinesis Data Firehose uses
// java.sql.Timestamp::valueOf by default.
TimestampFormats []string
noSmithyDocumentSerde
}
// Describes the buffering options that can be applied before data is delivered to
// the HTTP endpoint destination. Kinesis Data Firehose treats these options as
// hints, and it might choose to use more optimal values. The SizeInMBs and
// IntervalInSeconds parameters are optional. However, if specify a value for one
// of them, you must also provide a value for the other.
type HttpEndpointBufferingHints struct {
// Buffer incoming data for the specified period of time, in seconds, before
// delivering it to the destination. The default value is 300 (5 minutes).
IntervalInSeconds *int32
// Buffer incoming data to the specified size, in MBs, before delivering it to the
// destination. The default value is 5. 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.
SizeInMBs *int32
noSmithyDocumentSerde
}
// Describes the metadata that's delivered to the specified HTTP endpoint
// destination.
type HttpEndpointCommonAttribute struct {
// The name of the HTTP endpoint common attribute.
//
// This member is required.
AttributeName *string
// The value of the HTTP endpoint common attribute.
//
// This member is required.
AttributeValue *string
noSmithyDocumentSerde
}
// Describes the configuration of the HTTP endpoint to which Kinesis Firehose
// delivers data.
type HttpEndpointConfiguration struct {
// The URL of the HTTP endpoint selected as the destination. If you choose an HTTP
// endpoint as your destination, review and follow the instructions in the
// Appendix - HTTP Endpoint Delivery Request and Response Specifications (https://docs.aws.amazon.com/firehose/latest/dev/httpdeliveryrequestresponse.html)
// .
//
// This member is required.
Url *string
// The access key required for Kinesis Firehose to authenticate with the HTTP
// endpoint selected as the destination.
AccessKey *string
// The name of the HTTP endpoint selected as the destination.
Name *string
noSmithyDocumentSerde
}
// Describes the HTTP endpoint selected as the destination.
type HttpEndpointDescription struct {
// The name of the HTTP endpoint selected as the destination.
Name *string
// The URL of the HTTP endpoint selected as the destination.
Url *string
noSmithyDocumentSerde
}
// Describes the configuration of the HTTP endpoint destination.
type HttpEndpointDestinationConfiguration struct {
// The configuration of the HTTP endpoint selected as the destination.
//
// This member is required.
EndpointConfiguration *HttpEndpointConfiguration
// Describes the configuration of a destination in Amazon S3.
//
// This member is required.
S3Configuration *S3DestinationConfiguration
// The buffering options that can be used before data is delivered to the
// specified destination. Kinesis Data Firehose treats these options as hints, and
// it might choose to use more optimal values. The SizeInMBs and IntervalInSeconds
// parameters are optional. However, if you specify a value for one of them, you
// must also provide a value for the other.
BufferingHints *HttpEndpointBufferingHints
// Describes the Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// Describes a data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The configuration of the requeste sent to the HTTP endpoint specified as the
// destination.
RequestConfiguration *HttpEndpointRequestConfiguration
// Describes the retry behavior in case Kinesis Data Firehose is unable to deliver
// data to the specified HTTP endpoint destination, or if it doesn't receive a
// valid acknowledgment of receipt from the specified HTTP endpoint destination.
RetryOptions *HttpEndpointRetryOptions
// Kinesis Data Firehose uses this IAM role for all the permissions that the
// delivery stream needs.
RoleARN *string
// Describes the S3 bucket backup options for the data that Kinesis Data Firehose
// delivers to the HTTP endpoint destination. You can back up all documents (
// AllData ) or only the documents that Kinesis Data Firehose could not deliver to
// the specified HTTP endpoint destination ( FailedDataOnly ).
S3BackupMode HttpEndpointS3BackupMode
noSmithyDocumentSerde
}
// Describes the HTTP endpoint destination.
type HttpEndpointDestinationDescription struct {
// Describes buffering options that can be applied to the data before it is
// delivered to the HTTPS endpoint destination. Kinesis Data Firehose teats these
// options as hints, and it might choose to use more optimal values. The SizeInMBs
// and IntervalInSeconds parameters are optional. However, if specify a value for
// one of them, you must also provide a value for the other.
BufferingHints *HttpEndpointBufferingHints
// Describes the Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The configuration of the specified HTTP endpoint destination.
EndpointConfiguration *HttpEndpointDescription
// Describes a data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The configuration of request sent to the HTTP endpoint specified as the
// destination.
RequestConfiguration *HttpEndpointRequestConfiguration
// Describes the retry behavior in case Kinesis Data Firehose is unable to deliver
// data to the specified HTTP endpoint destination, or if it doesn't receive a
// valid acknowledgment of receipt from the specified HTTP endpoint destination.
RetryOptions *HttpEndpointRetryOptions
// Kinesis Data Firehose uses this IAM role for all the permissions that the
// delivery stream needs.
RoleARN *string
// Describes the S3 bucket backup options for the data that Kinesis Firehose
// delivers to the HTTP endpoint destination. You can back up all documents (
// AllData ) or only the documents that Kinesis Data Firehose could not deliver to
// the specified HTTP endpoint destination ( FailedDataOnly ).
S3BackupMode HttpEndpointS3BackupMode
// Describes a destination in Amazon S3.
S3DestinationDescription *S3DestinationDescription
noSmithyDocumentSerde
}
// Updates the specified HTTP endpoint destination.
type HttpEndpointDestinationUpdate struct {
// Describes buffering options that can be applied to the data before it is
// delivered to the HTTPS endpoint destination. Kinesis Data Firehose teats these
// options as hints, and it might choose to use more optimal values. The SizeInMBs
// and IntervalInSeconds parameters are optional. However, if specify a value for
// one of them, you must also provide a value for the other.
BufferingHints *HttpEndpointBufferingHints
// Describes the Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// Describes the configuration of the HTTP endpoint destination.
EndpointConfiguration *HttpEndpointConfiguration
// Describes a data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The configuration of the request sent to the HTTP endpoint specified as the
// destination.
RequestConfiguration *HttpEndpointRequestConfiguration
// Describes the retry behavior in case Kinesis Data Firehose is unable to deliver
// data to the specified HTTP endpoint destination, or if it doesn't receive a
// valid acknowledgment of receipt from the specified HTTP endpoint destination.
RetryOptions *HttpEndpointRetryOptions
// Kinesis Data Firehose uses this IAM role for all the permissions that the
// delivery stream needs.
RoleARN *string
// Describes the S3 bucket backup options for the data that Kinesis Firehose
// delivers to the HTTP endpoint destination. You can back up all documents (
// AllData ) or only the documents that Kinesis Data Firehose could not deliver to
// the specified HTTP endpoint destination ( FailedDataOnly ).
S3BackupMode HttpEndpointS3BackupMode
// Describes an update for a destination in Amazon S3.
S3Update *S3DestinationUpdate
noSmithyDocumentSerde
}
// The configuration of the HTTP endpoint request.
type HttpEndpointRequestConfiguration struct {
// Describes the metadata sent to the HTTP endpoint destination.
CommonAttributes []HttpEndpointCommonAttribute
// Kinesis Data Firehose uses the content encoding to compress the body of a
// request before sending the request to the destination. For more information, see
// Content-Encoding (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding)
// in MDN Web Docs, the official Mozilla documentation.
ContentEncoding ContentEncoding
noSmithyDocumentSerde
}
// Describes the retry behavior in case Kinesis Data Firehose is unable to deliver
// data to the specified HTTP endpoint destination, or if it doesn't receive a
// valid acknowledgment of receipt from the specified HTTP endpoint destination.
type HttpEndpointRetryOptions struct {
// The total amount of time that Kinesis Data Firehose spends on retries. This
// duration starts after the initial attempt to send data to the custom destination
// via HTTPS endpoint fails. It doesn't include the periods during which Kinesis
// Data Firehose waits for acknowledgment from the specified destination after each
// attempt.
DurationInSeconds *int32
noSmithyDocumentSerde
}
// Specifies the deserializer you want to use to convert the format of the input
// data. This parameter is required if Enabled is set to true.
type InputFormatConfiguration struct {
// 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.
Deserializer *Deserializer
noSmithyDocumentSerde
}
// The stream and role Amazon Resource Names (ARNs) for a Kinesis data stream used
// as the source for a delivery stream.
type KinesisStreamSourceConfiguration struct {
// The ARN of the source Kinesis data stream. For more information, see Amazon
// Kinesis Data Streams ARN Format (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kinesis-streams)
// .
//
// This member is required.
KinesisStreamARN *string
// The ARN of the role that provides access to the source Kinesis data stream. For
// more information, see Amazon Web Services Identity and Access Management (IAM)
// ARN Format (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-iam)
// .
//
// This member is required.
RoleARN *string
noSmithyDocumentSerde
}
// Details about a Kinesis data stream used as the source for a Kinesis Data
// Firehose delivery stream.
type KinesisStreamSourceDescription struct {
// Kinesis Data Firehose starts retrieving records from the Kinesis data stream
// starting with this timestamp.
DeliveryStartTimestamp *time.Time
// The Amazon Resource Name (ARN) of the source Kinesis data stream. For more
// information, see Amazon Kinesis Data Streams ARN Format (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kinesis-streams)
// .
KinesisStreamARN *string
// The ARN of the role used by the source Kinesis data stream. For more
// information, see Amazon Web Services Identity and Access Management (IAM) ARN
// Format (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-iam)
// .
RoleARN *string
noSmithyDocumentSerde
}
// Describes an encryption key for a destination in Amazon S3.
type KMSEncryptionConfig struct {
// The Amazon Resource Name (ARN) of the encryption key. Must belong to the same
// Amazon Web Services Region as the destination Amazon S3 bucket. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
AWSKMSKeyARN *string
noSmithyDocumentSerde
}
// The configuration for the Amazon MSK cluster to be used as the source for a
// delivery stream.
type MSKSourceConfiguration struct {
// The authentication configuration of the Amazon MSK cluster.
//
// This member is required.
AuthenticationConfiguration *AuthenticationConfiguration
// The ARN of the Amazon MSK cluster.
//
// This member is required.
MSKClusterARN *string
// The topic name within the Amazon MSK cluster.
//
// This member is required.
TopicName *string
noSmithyDocumentSerde
}
// Details about the Amazon MSK cluster used as the source for a Kinesis Data
// Firehose delivery stream.
type MSKSourceDescription struct {
// The authentication configuration of the Amazon MSK cluster.
AuthenticationConfiguration *AuthenticationConfiguration
// Kinesis Data Firehose starts retrieving records from the topic within the
// Amazon MSK cluster starting with this timestamp.
DeliveryStartTimestamp *time.Time
// The ARN of the Amazon MSK cluster.
MSKClusterARN *string
// The topic name within the Amazon MSK cluster.
TopicName *string
noSmithyDocumentSerde
}
// 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.
type OpenXJsonSerDe struct {
// When set to true , which is the default, Kinesis Data Firehose converts JSON
// keys to lowercase before deserializing them.
CaseInsensitive *bool
// 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,
// timestamp is a Hive keyword. If you have a JSON key named timestamp , set this
// parameter to {"ts": "timestamp"} to map this key to a column named ts .
ColumnToJsonKeyMappings map[string]string
// When set to true , 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. The default is false .
ConvertDotsInJsonKeysToUnderscores *bool
noSmithyDocumentSerde
}
// A serializer to use for converting data to the ORC format before storing it in
// Amazon S3. For more information, see Apache ORC (https://orc.apache.org/docs/) .
type OrcSerDe struct {
// 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.
BlockSizeBytes *int32
// The column names for which you want Kinesis Data Firehose to create bloom
// filters. The default is null .
BloomFilterColumns []string
// 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.
BloomFilterFalsePositiveProbability *float64
// The compression code to use over data blocks. The default is SNAPPY .
Compression OrcCompression
// 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.
DictionaryKeyThreshold *float64
// Set this to true 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 false .
EnablePadding *bool
// The version of the file to write. The possible values are V0_11 and V0_12 . The
// default is V0_12 .
FormatVersion OrcFormatVersion
// 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. 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. Kinesis Data
// Firehose ignores this parameter when OrcSerDe$EnablePadding is false .
PaddingTolerance *float64
// The number of rows between index entries. The default is 10,000 and the minimum
// is 1,000.
RowIndexStride *int32
// The number of bytes in each stripe. The default is 64 MiB and the minimum is 8
// MiB.
StripeSizeBytes *int32
noSmithyDocumentSerde
}
// 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. This parameter is
// required if Enabled is set to true.
type OutputFormatConfiguration struct {
// 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.
Serializer *Serializer
noSmithyDocumentSerde
}
// A serializer to use for converting data to the Parquet format before storing it
// in Amazon S3. For more information, see Apache Parquet (https://parquet.apache.org/documentation/latest/)
// .
type ParquetSerDe struct {
// 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.
BlockSizeBytes *int32
// The compression code to use over data blocks. The possible values are
// UNCOMPRESSED , SNAPPY , and GZIP , with the default being SNAPPY . Use SNAPPY
// for higher decompression speed. Use GZIP if the compression ratio is more
// important than speed.
Compression ParquetCompression
// Indicates whether to enable dictionary compression.
EnableDictionaryCompression *bool
// 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.
MaxPaddingBytes *int32
// 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.
PageSizeBytes *int32
// Indicates the version of row format to output. The possible values are V1 and V2
// . The default is V1 .
WriterVersion ParquetWriterVersion
noSmithyDocumentSerde
}
// Describes a data processing configuration.
type ProcessingConfiguration struct {
// Enables or disables data processing.
Enabled *bool
// The data processors.
Processors []Processor
noSmithyDocumentSerde
}
// Describes a data processor.
type Processor struct {
// The type of processor.
//
// This member is required.
Type ProcessorType
// The processor parameters.
Parameters []ProcessorParameter
noSmithyDocumentSerde
}
// Describes the processor parameter.
type ProcessorParameter struct {
// The name of the parameter. Currently the following default values are
// supported: 3 for NumberOfRetries and 60 for the BufferIntervalInSeconds . The
// BufferSizeInMBs ranges between 0.2 MB and up to 3MB. The default buffering hint
// is 1MB for all destinations, except Splunk. For Splunk, the default buffering
// hint is 256 KB.
//
// This member is required.
ParameterName ProcessorParameterName
// The parameter value.
//
// This member is required.
ParameterValue *string
noSmithyDocumentSerde
}
// Contains the result for an individual record from a PutRecordBatch 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.
type PutRecordBatchResponseEntry struct {
// The error code for an individual record result.
ErrorCode *string
// The error message for an individual record result.
ErrorMessage *string
// The ID of the record.
RecordId *string
noSmithyDocumentSerde
}
// The unit of data in a delivery stream.
type Record struct {
// 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.
//
// This member is required.
Data []byte
noSmithyDocumentSerde
}
// Describes the configuration of a destination in Amazon Redshift.
type RedshiftDestinationConfiguration struct {
// The database connection string.
//
// This member is required.
ClusterJDBCURL *string
// The COPY command.
//
// This member is required.
CopyCommand *CopyCommand
// The user password.
//
// This member is required.
Password *string
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
RoleARN *string
// The configuration for the intermediate Amazon S3 location from which Amazon
// Redshift obtains data. Restrictions are described in the topic for
// CreateDeliveryStream . The compression formats SNAPPY or ZIP cannot be
// specified in RedshiftDestinationConfiguration.S3Configuration because the
// Amazon Redshift COPY operation that reads from the S3 bucket doesn't support
// these compression formats.
//
// This member is required.
S3Configuration *S3DestinationConfiguration
// The name of the user.
//
// This member is required.
Username *string
// The CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The retry behavior in case Kinesis Data Firehose is unable to deliver documents
// to Amazon Redshift. Default value is 3600 (60 minutes).
RetryOptions *RedshiftRetryOptions
// The configuration for backup in Amazon S3.
S3BackupConfiguration *S3DestinationConfiguration
// The Amazon S3 backup mode. After you create a delivery stream, you can update
// it to enable Amazon S3 backup if it is disabled. If backup is enabled, you can't
// update the delivery stream to disable it.
S3BackupMode RedshiftS3BackupMode
noSmithyDocumentSerde
}
// Describes a destination in Amazon Redshift.
type RedshiftDestinationDescription struct {
// The database connection string.
//
// This member is required.
ClusterJDBCURL *string
// The COPY command.
//
// This member is required.
CopyCommand *CopyCommand
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
RoleARN *string
// The Amazon S3 destination.
//
// This member is required.
S3DestinationDescription *S3DestinationDescription
// The name of the user.
//
// This member is required.
Username *string
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The retry behavior in case Kinesis Data Firehose is unable to deliver documents
// to Amazon Redshift. Default value is 3600 (60 minutes).
RetryOptions *RedshiftRetryOptions
// The configuration for backup in Amazon S3.
S3BackupDescription *S3DestinationDescription
// The Amazon S3 backup mode.
S3BackupMode RedshiftS3BackupMode
noSmithyDocumentSerde
}
// Describes an update for a destination in Amazon Redshift.
type RedshiftDestinationUpdate struct {
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The database connection string.
ClusterJDBCURL *string
// The COPY command.
CopyCommand *CopyCommand
// The user password.
Password *string
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// The retry behavior in case Kinesis Data Firehose is unable to deliver documents
// to Amazon Redshift. Default value is 3600 (60 minutes).
RetryOptions *RedshiftRetryOptions
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
RoleARN *string
// You can update a delivery stream to enable Amazon S3 backup if it is disabled.
// If backup is enabled, you can't update the delivery stream to disable it.
S3BackupMode RedshiftS3BackupMode
// The Amazon S3 destination for backup.
S3BackupUpdate *S3DestinationUpdate
// The Amazon S3 destination. The compression formats SNAPPY or ZIP cannot be
// specified in RedshiftDestinationUpdate.S3Update because the Amazon Redshift COPY
// operation that reads from the S3 bucket doesn't support these compression
// formats.
S3Update *S3DestinationUpdate
// The name of the user.
Username *string
noSmithyDocumentSerde
}
// Configures retry behavior in case Kinesis Data Firehose is unable to deliver
// documents to Amazon Redshift.
type RedshiftRetryOptions struct {
// 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 DurationInSeconds is 0 (zero) or if the first delivery attempt
// takes longer than the current value.
DurationInSeconds *int32
noSmithyDocumentSerde
}
// The retry behavior in case Kinesis Data Firehose is unable to deliver data to
// an Amazon S3 prefix.
type RetryOptions struct {
// The period of time during which Kinesis Data Firehose retries to deliver data
// to the specified Amazon S3 prefix.
DurationInSeconds *int32
noSmithyDocumentSerde
}
// Describes the configuration of a destination in Amazon S3.
type S3DestinationConfiguration struct {
// The ARN of the S3 bucket. For more information, see Amazon Resource Names
// (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
BucketARN *string
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
RoleARN *string
// The buffering option. If no value is specified, BufferingHints object default
// values are used.
BufferingHints *BufferingHints
// The CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The compression format. If no value is specified, the default is UNCOMPRESSED .
// The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift
// destinations because they are not supported by the Amazon Redshift COPY
// operation that reads from the S3 bucket.
CompressionFormat CompressionFormat
// The encryption configuration. If no value is specified, the default is no
// encryption.
EncryptionConfiguration *EncryptionConfiguration
// 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.
// For information about how to specify this prefix, see Custom Prefixes for
// Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
ErrorOutputPrefix *string
// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered
// Amazon S3 files. You can also specify a custom prefix, as described in Custom
// Prefixes for Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
Prefix *string
noSmithyDocumentSerde
}
// Describes a destination in Amazon S3.
type S3DestinationDescription struct {
// The ARN of the S3 bucket. For more information, see Amazon Resource Names
// (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
BucketARN *string
// The buffering option. If no value is specified, BufferingHints object default
// values are used.
//
// This member is required.
BufferingHints *BufferingHints
// The compression format. If no value is specified, the default is UNCOMPRESSED .
//
// This member is required.
CompressionFormat CompressionFormat
// The encryption configuration. If no value is specified, the default is no
// encryption.
//
// This member is required.
EncryptionConfiguration *EncryptionConfiguration
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
//
// This member is required.
RoleARN *string
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// 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.
// For information about how to specify this prefix, see Custom Prefixes for
// Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
ErrorOutputPrefix *string
// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered
// Amazon S3 files. You can also specify a custom prefix, as described in Custom
// Prefixes for Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
Prefix *string
noSmithyDocumentSerde
}
// Describes an update for a destination in Amazon S3.
type S3DestinationUpdate struct {
// The ARN of the S3 bucket. For more information, see Amazon Resource Names
// (ARNs) and Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
BucketARN *string
// The buffering option. If no value is specified, BufferingHints object default
// values are used.
BufferingHints *BufferingHints
// The CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// The compression format. If no value is specified, the default is UNCOMPRESSED .
// The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift
// destinations because they are not supported by the Amazon Redshift COPY
// operation that reads from the S3 bucket.
CompressionFormat CompressionFormat
// The encryption configuration. If no value is specified, the default is no
// encryption.
EncryptionConfiguration *EncryptionConfiguration
// 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.
// For information about how to specify this prefix, see Custom Prefixes for
// Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
ErrorOutputPrefix *string
// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered
// Amazon S3 files. You can also specify a custom prefix, as described in Custom
// Prefixes for Amazon S3 Objects (https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html)
// .
Prefix *string
// The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more
// information, see Amazon Resource Names (ARNs) and Amazon Web Services Service
// Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// .
RoleARN *string
noSmithyDocumentSerde
}
// Specifies the schema to which you want Kinesis Data Firehose to configure your
// data before it writes it to Amazon S3. This parameter is required if Enabled is
// set to true.
type SchemaConfiguration struct {
// The ID of the Amazon Web Services Glue Data Catalog. If you don't supply this,
// the Amazon Web Services account ID is used by default.
CatalogId *string
// Specifies the name of the Amazon Web Services Glue database that contains the
// schema for the output data. If the SchemaConfiguration request parameter is
// used as part of invoking the CreateDeliveryStream API, then the DatabaseName
// property is required and its value must be specified.
DatabaseName *string
// If you don't specify an Amazon Web Services Region, the default is the current
// Region.
Region *string
// The role that Kinesis Data Firehose can use to access Amazon Web Services Glue.
// This role must be in the same account you use for Kinesis Data Firehose.
// Cross-account roles aren't allowed. If the SchemaConfiguration request
// parameter is used as part of invoking the CreateDeliveryStream API, then the
// RoleARN property is required and its value must be specified.
RoleARN *string
// Specifies the Amazon Web Services Glue table that contains the column
// information that constitutes your data schema. If the SchemaConfiguration
// request parameter is used as part of invoking the CreateDeliveryStream API,
// then the TableName property is required and its value must be specified.
TableName *string
// Specifies the table version for the output data schema. If you don't specify
// this version ID, or if you set it to LATEST , Kinesis Data Firehose uses the
// most recent version. This means that any updates to the table are automatically
// picked up.
VersionId *string
noSmithyDocumentSerde
}
// 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 ORC SerDe (https://hive.apache.org/javadocs/r1.2.2/api/org/apache/hadoop/hive/ql/io/orc/OrcSerde.html)
// and the Parquet SerDe (https://hive.apache.org/javadocs/r1.2.2/api/org/apache/hadoop/hive/ql/io/parquet/serde/ParquetHiveSerDe.html)
// .
type Serializer struct {
// A serializer to use for converting data to the ORC format before storing it in
// Amazon S3. For more information, see Apache ORC (https://orc.apache.org/docs/) .
OrcSerDe *OrcSerDe
// A serializer to use for converting data to the Parquet format before storing it
// in Amazon S3. For more information, see Apache Parquet (https://parquet.apache.org/documentation/latest/)
// .
ParquetSerDe *ParquetSerDe
noSmithyDocumentSerde
}
// Details about a Kinesis data stream used as the source for a Kinesis Data
// Firehose delivery stream.
type SourceDescription struct {
// The KinesisStreamSourceDescription value for the source Kinesis data stream.
KinesisStreamSourceDescription *KinesisStreamSourceDescription
// The configuration description for the Amazon MSK cluster to be used as the
// source for a delivery stream.
MSKSourceDescription *MSKSourceDescription
noSmithyDocumentSerde
}
// The buffering options. If no value is specified, the default values for Splunk
// are used.
type SplunkBufferingHints struct {
// Buffer incoming data for the specified period of time, in seconds, before
// delivering it to the destination. The default value is 60 (1 minute).
IntervalInSeconds *int32
// Buffer incoming data to the specified size, in MBs, before delivering it to the
// destination. The default value is 5.
SizeInMBs *int32
noSmithyDocumentSerde
}
// Describes the configuration of a destination in Splunk.
type SplunkDestinationConfiguration struct {
// The HTTP Event Collector (HEC) endpoint to which Kinesis Data Firehose sends
// your data.
//
// This member is required.
HECEndpoint *string
// This type can be either "Raw" or "Event."
//
// This member is required.
HECEndpointType HECEndpointType
// This is a GUID that you obtain from your Splunk cluster when you create a new
// HEC endpoint.
//
// This member is required.
HECToken *string
// The configuration for the backup Amazon S3 location.
//
// This member is required.
S3Configuration *S3DestinationConfiguration
// The buffering options. If no value is specified, the default values for Splunk
// are used.
BufferingHints *SplunkBufferingHints
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// 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.
HECAcknowledgmentTimeoutInSeconds *int32
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// 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.
RetryOptions *SplunkRetryOptions
// Defines how documents should be delivered to Amazon S3. When set to
// FailedEventsOnly , Kinesis Data Firehose writes any data that could not be
// indexed to the configured Amazon S3 destination. When set to AllEvents , Kinesis
// Data Firehose delivers all incoming records to Amazon S3, and also writes failed
// documents to Amazon S3. The default value is FailedEventsOnly . You can update
// this backup mode from FailedEventsOnly to AllEvents . You can't update it from
// AllEvents to FailedEventsOnly .
S3BackupMode SplunkS3BackupMode
noSmithyDocumentSerde
}
// Describes a destination in Splunk.
type SplunkDestinationDescription struct {
// The buffering options. If no value is specified, the default values for Splunk
// are used.
BufferingHints *SplunkBufferingHints
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// 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.
HECAcknowledgmentTimeoutInSeconds *int32
// The HTTP Event Collector (HEC) endpoint to which Kinesis Data Firehose sends
// your data.
HECEndpoint *string
// This type can be either "Raw" or "Event."
HECEndpointType HECEndpointType
// A GUID you obtain from your Splunk cluster when you create a new HEC endpoint.
HECToken *string
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// 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.
RetryOptions *SplunkRetryOptions
// Defines how documents should be delivered to Amazon S3. When set to
// FailedDocumentsOnly , Kinesis Data Firehose writes any data that could not be
// indexed to the configured Amazon S3 destination. When set to AllDocuments ,
// Kinesis Data Firehose delivers all incoming records to Amazon S3, and also
// writes failed documents to Amazon S3. Default value is FailedDocumentsOnly .
S3BackupMode SplunkS3BackupMode
// The Amazon S3 destination.>
S3DestinationDescription *S3DestinationDescription
noSmithyDocumentSerde
}
// Describes an update for a destination in Splunk.
type SplunkDestinationUpdate struct {
// The buffering options. If no value is specified, the default values for Splunk
// are used.
BufferingHints *SplunkBufferingHints
// The Amazon CloudWatch logging options for your delivery stream.
CloudWatchLoggingOptions *CloudWatchLoggingOptions
// 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.
HECAcknowledgmentTimeoutInSeconds *int32
// The HTTP Event Collector (HEC) endpoint to which Kinesis Data Firehose sends
// your data.
HECEndpoint *string
// This type can be either "Raw" or "Event."
HECEndpointType HECEndpointType
// A GUID that you obtain from your Splunk cluster when you create a new HEC
// endpoint.
HECToken *string
// The data processing configuration.
ProcessingConfiguration *ProcessingConfiguration
// 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.
RetryOptions *SplunkRetryOptions
// Specifies how you want Kinesis Data Firehose to back up documents to Amazon S3.
// When set to FailedDocumentsOnly , Kinesis Data Firehose writes any data that
// could not be indexed to the configured Amazon S3 destination. When set to
// AllEvents , Kinesis Data Firehose delivers all incoming records to Amazon S3,
// and also writes failed documents to Amazon S3. The default value is
// FailedEventsOnly . You can update this backup mode from FailedEventsOnly to
// AllEvents . You can't update it from AllEvents to FailedEventsOnly .
S3BackupMode SplunkS3BackupMode
// Your update to the configuration of the backup Amazon S3 location.
S3Update *S3DestinationUpdate
noSmithyDocumentSerde
}
// 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.
type SplunkRetryOptions struct {
// 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.
DurationInSeconds *int32
noSmithyDocumentSerde
}
// Metadata that you can assign to a delivery stream, consisting of a key-value
// pair.
type Tag struct {
// A unique identifier for the tag. Maximum length: 128 characters. Valid
// characters: Unicode letters, digits, white space, _ . / = + - % @
//
// This member is required.
Key *string
// An optional string, which you can use to describe or define the tag. Maximum
// length: 256 characters. Valid characters: Unicode letters, digits, white space,
// _ . / = + - % @
Value *string
noSmithyDocumentSerde
}
// The details of the VPC of the Amazon OpenSearch or Amazon OpenSearch Serverless
// destination.
type VpcConfiguration struct {
// The ARN of the IAM role that you want the delivery stream to use to create
// endpoints in the destination VPC. You can use your existing Kinesis Data
// Firehose delivery role or you can specify a new role. In either case, make sure
// that the role trusts the Kinesis Data Firehose service principal and that it
// grants the following permissions:
// - ec2:DescribeVpcs
// - ec2:DescribeVpcAttribute
// - ec2:DescribeSubnets
// - ec2:DescribeSecurityGroups
// - ec2:DescribeNetworkInterfaces
// - ec2:CreateNetworkInterface
// - ec2:CreateNetworkInterfacePermission
// - ec2:DeleteNetworkInterface
// If you revoke these permissions after you create the delivery stream, Kinesis
// Data Firehose can't scale out by creating more ENIs when necessary. You might
// therefore see a degradation in performance.
//
// This member is required.
RoleARN *string
// The IDs of the security groups that you want Kinesis Data Firehose to use when
// it creates ENIs in the VPC of the Amazon ES destination. You can use the same
// security group that the Amazon ES domain uses or different ones. If you specify
// different security groups here, ensure that they allow outbound HTTPS traffic to
// the Amazon ES domain's security group. Also ensure that the Amazon ES domain's
// security group allows HTTPS traffic from the security groups specified here. If
// you use the same security group for both your delivery stream and the Amazon ES
// domain, make sure the security group inbound rule allows HTTPS traffic. For more
// information about security group rules, see Security group rules (https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html#SecurityGroupRules)
// in the Amazon VPC documentation.
//
// This member is required.
SecurityGroupIds []string
// The IDs of the subnets that you want Kinesis Data Firehose to use to create
// ENIs in the VPC of the Amazon ES destination. Make sure that the routing tables
// and inbound and outbound rules allow traffic to flow from the subnets whose IDs
// are specified here to the subnets that have the destination Amazon ES endpoints.
// Kinesis Data Firehose creates at least one ENI in each of the subnets that are
// specified here. Do not delete or modify these ENIs. The number of ENIs that
// Kinesis Data Firehose creates in the subnets specified here scales up and down
// automatically based on throughput. To enable Kinesis Data Firehose to scale up
// the number of ENIs to match throughput, ensure that you have sufficient quota.
// To help you calculate the quota you need, assume that Kinesis Data Firehose can
// create up to three ENIs for this delivery stream for each of the subnets
// specified here. For more information about ENI quota, see Network Interfaces (https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html#vpc-limits-enis)
// in the Amazon VPC Quotas topic.
//
// This member is required.
SubnetIds []string
noSmithyDocumentSerde
}
// The details of the VPC of the Amazon ES destination.
type VpcConfigurationDescription struct {
// The ARN of the IAM role that the delivery stream uses to create endpoints in
// the destination VPC. You can use your existing Kinesis Data Firehose delivery
// role or you can specify a new role. In either case, make sure that the role
// trusts the Kinesis Data Firehose service principal and that it grants the
// following permissions:
// - ec2:DescribeVpcs
// - ec2:DescribeVpcAttribute
// - ec2:DescribeSubnets
// - ec2:DescribeSecurityGroups
// - ec2:DescribeNetworkInterfaces
// - ec2:CreateNetworkInterface
// - ec2:CreateNetworkInterfacePermission
// - ec2:DeleteNetworkInterface
// If you revoke these permissions after you create the delivery stream, Kinesis
// Data Firehose can't scale out by creating more ENIs when necessary. You might
// therefore see a degradation in performance.
//
// This member is required.
RoleARN *string
// The IDs of the security groups that Kinesis Data Firehose uses when it creates
// ENIs in the VPC of the Amazon ES destination. You can use the same security
// group that the Amazon ES domain uses or different ones. If you specify different
// security groups, ensure that they allow outbound HTTPS traffic to the Amazon ES
// domain's security group. Also ensure that the Amazon ES domain's security group
// allows HTTPS traffic from the security groups specified here. If you use the
// same security group for both your delivery stream and the Amazon ES domain, make
// sure the security group inbound rule allows HTTPS traffic. For more information
// about security group rules, see Security group rules (https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html#SecurityGroupRules)
// in the Amazon VPC documentation.
//
// This member is required.
SecurityGroupIds []string
// The IDs of the subnets that Kinesis Data Firehose uses to create ENIs in the
// VPC of the Amazon ES destination. Make sure that the routing tables and inbound
// and outbound rules allow traffic to flow from the subnets whose IDs are
// specified here to the subnets that have the destination Amazon ES endpoints.
// Kinesis Data Firehose creates at least one ENI in each of the subnets that are
// specified here. Do not delete or modify these ENIs. The number of ENIs that
// Kinesis Data Firehose creates in the subnets specified here scales up and down
// automatically based on throughput. To enable Kinesis Data Firehose to scale up
// the number of ENIs to match throughput, ensure that you have sufficient quota.
// To help you calculate the quota you need, assume that Kinesis Data Firehose can
// create up to three ENIs for this delivery stream for each of the subnets
// specified here. For more information about ENI quota, see Network Interfaces (https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html#vpc-limits-enis)
// in the Amazon VPC Quotas topic.
//
// This member is required.
SubnetIds []string
// The ID of the Amazon ES destination's VPC.
//
// This member is required.
VpcId *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|