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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Describes code configuration for an application.
type ApplicationCodeConfiguration struct {
// Specifies whether the code content is in text or zip format.
//
// This member is required.
CodeContentType CodeContentType
// The location and type of the application code.
CodeContent *CodeContent
noSmithyDocumentSerde
}
// Describes code configuration for an application.
type ApplicationCodeConfigurationDescription struct {
// Specifies whether the code content is in text or zip format.
//
// This member is required.
CodeContentType CodeContentType
// Describes details about the location and format of the application code.
CodeContentDescription *CodeContentDescription
noSmithyDocumentSerde
}
// Describes code configuration updates for an application. This is supported for
// a Flink-based Kinesis Data Analytics application or a SQL-based Kinesis Data
// Analytics application.
type ApplicationCodeConfigurationUpdate struct {
// Describes updates to the code content type.
CodeContentTypeUpdate CodeContentType
// Describes updates to the code content of an application.
CodeContentUpdate *CodeContentUpdate
noSmithyDocumentSerde
}
// Specifies the creation parameters for a Kinesis Data Analytics application.
type ApplicationConfiguration struct {
// The code location and type parameters for a Flink-based Kinesis Data Analytics
// application.
ApplicationCodeConfiguration *ApplicationCodeConfiguration
// Describes whether snapshots are enabled for a Flink-based Kinesis Data
// Analytics application.
ApplicationSnapshotConfiguration *ApplicationSnapshotConfiguration
// Describes execution properties for a Flink-based Kinesis Data Analytics
// application.
EnvironmentProperties *EnvironmentProperties
// The creation and update parameters for a Flink-based Kinesis Data Analytics
// application.
FlinkApplicationConfiguration *FlinkApplicationConfiguration
// The creation and update parameters for a SQL-based Kinesis Data Analytics
// application.
SqlApplicationConfiguration *SqlApplicationConfiguration
// The array of descriptions of VPC configurations available to the application.
VpcConfigurations []VpcConfiguration
// The configuration parameters for a Kinesis Data Analytics Studio notebook.
ZeppelinApplicationConfiguration *ZeppelinApplicationConfiguration
noSmithyDocumentSerde
}
// Describes details about the application code and starting parameters for a
// Kinesis Data Analytics application.
type ApplicationConfigurationDescription struct {
// The details about the application code for a Flink-based Kinesis Data Analytics
// application.
ApplicationCodeConfigurationDescription *ApplicationCodeConfigurationDescription
// Describes whether snapshots are enabled for a Flink-based Kinesis Data
// Analytics application.
ApplicationSnapshotConfigurationDescription *ApplicationSnapshotConfigurationDescription
// Describes execution properties for a Flink-based Kinesis Data Analytics
// application.
EnvironmentPropertyDescriptions *EnvironmentPropertyDescriptions
// The details about a Flink-based Kinesis Data Analytics application.
FlinkApplicationConfigurationDescription *FlinkApplicationConfigurationDescription
// The details about the starting properties for a Kinesis Data Analytics
// application.
RunConfigurationDescription *RunConfigurationDescription
// The details about inputs, outputs, and reference data sources for a SQL-based
// Kinesis Data Analytics application.
SqlApplicationConfigurationDescription *SqlApplicationConfigurationDescription
// The array of descriptions of VPC configurations available to the application.
VpcConfigurationDescriptions []VpcConfigurationDescription
// The configuration parameters for a Kinesis Data Analytics Studio notebook.
ZeppelinApplicationConfigurationDescription *ZeppelinApplicationConfigurationDescription
noSmithyDocumentSerde
}
// Describes updates to an application's configuration.
type ApplicationConfigurationUpdate struct {
// Describes updates to an application's code configuration.
ApplicationCodeConfigurationUpdate *ApplicationCodeConfigurationUpdate
// Describes whether snapshots are enabled for a Flink-based Kinesis Data
// Analytics application.
ApplicationSnapshotConfigurationUpdate *ApplicationSnapshotConfigurationUpdate
// Describes updates to the environment properties for a Flink-based Kinesis Data
// Analytics application.
EnvironmentPropertyUpdates *EnvironmentPropertyUpdates
// Describes updates to a Flink-based Kinesis Data Analytics application's
// configuration.
FlinkApplicationConfigurationUpdate *FlinkApplicationConfigurationUpdate
// Describes updates to a SQL-based Kinesis Data Analytics application's
// configuration.
SqlApplicationConfigurationUpdate *SqlApplicationConfigurationUpdate
// Updates to the array of descriptions of VPC configurations available to the
// application.
VpcConfigurationUpdates []VpcConfigurationUpdate
// Updates to the configuration of a Kinesis Data Analytics Studio notebook.
ZeppelinApplicationConfigurationUpdate *ZeppelinApplicationConfigurationUpdate
noSmithyDocumentSerde
}
// Describes the application, including the application Amazon Resource Name
// (ARN), status, latest version, and input and output configurations.
type ApplicationDetail struct {
// The ARN of the application.
//
// This member is required.
ApplicationARN *string
// The name of the application.
//
// This member is required.
ApplicationName *string
// The status of the application.
//
// This member is required.
ApplicationStatus ApplicationStatus
// Provides the current application version. Kinesis Data Analytics updates the
// ApplicationVersionId each time you update the application.
//
// This member is required.
ApplicationVersionId *int64
// The runtime environment for the application.
//
// This member is required.
RuntimeEnvironment RuntimeEnvironment
// Describes details about the application code and starting parameters for a
// Kinesis Data Analytics application.
ApplicationConfigurationDescription *ApplicationConfigurationDescription
// The description of the application.
ApplicationDescription *string
// The details of the maintenance configuration for the application.
ApplicationMaintenanceConfigurationDescription *ApplicationMaintenanceConfigurationDescription
// To create a Kinesis Data Analytics Studio notebook, you must set the mode to
// INTERACTIVE . However, for a Kinesis Data Analytics for Apache Flink
// application, the mode is optional.
ApplicationMode ApplicationMode
// If you reverted the application using RollbackApplication , the application
// version when RollbackApplication was called.
ApplicationVersionRolledBackFrom *int64
// The version to which you want to roll back the application.
ApplicationVersionRolledBackTo *int64
// The previous application version before the latest application update.
// RollbackApplication reverts the application to this version.
ApplicationVersionUpdatedFrom *int64
// Describes the application Amazon CloudWatch logging options.
CloudWatchLoggingOptionDescriptions []CloudWatchLoggingOptionDescription
// A value you use to implement strong concurrency for application updates.
ConditionalToken *string
// The current timestamp when the application was created.
CreateTimestamp *time.Time
// The current timestamp when the application was last updated.
LastUpdateTimestamp *time.Time
// Specifies the IAM role that the application uses to access external resources.
ServiceExecutionRole *string
noSmithyDocumentSerde
}
// The details of the maintenance configuration for the application.
type ApplicationMaintenanceConfigurationDescription struct {
// The end time for the maintenance window.
//
// This member is required.
ApplicationMaintenanceWindowEndTime *string
// The start time for the maintenance window.
//
// This member is required.
ApplicationMaintenanceWindowStartTime *string
noSmithyDocumentSerde
}
// Describes the updated maintenance configuration for the application.
type ApplicationMaintenanceConfigurationUpdate struct {
// The updated start time for the maintenance window.
//
// This member is required.
ApplicationMaintenanceWindowStartTimeUpdate *string
noSmithyDocumentSerde
}
// Specifies the method and snapshot to use when restarting an application using
// previously saved application state.
type ApplicationRestoreConfiguration struct {
// Specifies how the application should be restored.
//
// This member is required.
ApplicationRestoreType ApplicationRestoreType
// The identifier of an existing snapshot of application state to use to restart
// an application. The application uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
// is specified for the ApplicationRestoreType .
SnapshotName *string
noSmithyDocumentSerde
}
// Describes whether snapshots are enabled for a Flink-based Kinesis Data
// Analytics application.
type ApplicationSnapshotConfiguration struct {
// Describes whether snapshots are enabled for a Flink-based Kinesis Data
// Analytics application.
//
// This member is required.
SnapshotsEnabled *bool
noSmithyDocumentSerde
}
// Describes whether snapshots are enabled for a Flink-based Kinesis Data
// Analytics application.
type ApplicationSnapshotConfigurationDescription struct {
// Describes whether snapshots are enabled for a Flink-based Kinesis Data
// Analytics application.
//
// This member is required.
SnapshotsEnabled *bool
noSmithyDocumentSerde
}
// Describes updates to whether snapshots are enabled for a Flink-based Kinesis
// Data Analytics application.
type ApplicationSnapshotConfigurationUpdate struct {
// Describes updates to whether snapshots are enabled for an application.
//
// This member is required.
SnapshotsEnabledUpdate *bool
noSmithyDocumentSerde
}
// Provides application summary information, including the application Amazon
// Resource Name (ARN), name, and status.
type ApplicationSummary struct {
// The ARN of the application.
//
// This member is required.
ApplicationARN *string
// The name of the application.
//
// This member is required.
ApplicationName *string
// The status of the application.
//
// This member is required.
ApplicationStatus ApplicationStatus
// Provides the current application version.
//
// This member is required.
ApplicationVersionId *int64
// The runtime environment for the application.
//
// This member is required.
RuntimeEnvironment RuntimeEnvironment
// For a Kinesis Data Analytics for Apache Flink application, the mode is STREAMING
// . For a Kinesis Data Analytics Studio notebook, it is INTERACTIVE .
ApplicationMode ApplicationMode
noSmithyDocumentSerde
}
// The summary of the application version.
type ApplicationVersionSummary struct {
// The status of the application.
//
// This member is required.
ApplicationStatus ApplicationStatus
// The ID of the application version. Kinesis Data Analytics updates the
// ApplicationVersionId each time you update the application.
//
// This member is required.
ApplicationVersionId *int64
noSmithyDocumentSerde
}
// The configuration parameters for the default Amazon Glue database. You use this
// database for SQL queries that you write in a Kinesis Data Analytics Studio
// notebook.
type CatalogConfiguration struct {
// The configuration parameters for the default Amazon Glue database. You use this
// database for Apache Flink SQL queries and table API transforms that you write in
// a Kinesis Data Analytics Studio notebook.
//
// This member is required.
GlueDataCatalogConfiguration *GlueDataCatalogConfiguration
noSmithyDocumentSerde
}
// The configuration parameters for the default Amazon Glue database. You use this
// database for Apache Flink SQL queries and table API transforms that you write in
// a Kinesis Data Analytics Studio notebook.
type CatalogConfigurationDescription struct {
// The configuration parameters for the default Amazon Glue database. You use this
// database for SQL queries that you write in a Kinesis Data Analytics Studio
// notebook.
//
// This member is required.
GlueDataCatalogConfigurationDescription *GlueDataCatalogConfigurationDescription
noSmithyDocumentSerde
}
// Updates to the configuration parameters for the default Amazon Glue database.
// You use this database for SQL queries that you write in a Kinesis Data Analytics
// Studio notebook.
type CatalogConfigurationUpdate struct {
// Updates to the configuration parameters for the default Amazon Glue database.
// You use this database for SQL queries that you write in a Kinesis Data Analytics
// Studio notebook.
//
// This member is required.
GlueDataCatalogConfigurationUpdate *GlueDataCatalogConfigurationUpdate
noSmithyDocumentSerde
}
// Describes an application's checkpointing configuration. Checkpointing is the
// process of persisting application state for fault tolerance. For more
// information, see Checkpoints for Fault Tolerance (https://ci.apache.org/projects/flink/flink-docs-release-1.8/concepts/programming-model.html#checkpoints-for-fault-tolerance)
// in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.8/)
// .
type CheckpointConfiguration struct {
// Describes whether the application uses Kinesis Data Analytics' default
// checkpointing behavior. You must set this property to CUSTOM in order to set
// the CheckpointingEnabled , CheckpointInterval , or MinPauseBetweenCheckpoints
// parameters. If this value is set to DEFAULT , the application will use the
// following values, even if they are set to other values using APIs or application
// code:
// - CheckpointingEnabled: true
// - CheckpointInterval: 60000
// - MinPauseBetweenCheckpoints: 5000
//
// This member is required.
ConfigurationType ConfigurationType
// Describes the interval in milliseconds between checkpoint operations. If
// CheckpointConfiguration.ConfigurationType is DEFAULT , the application will use
// a CheckpointInterval value of 60000, even if this value is set to another value
// using this API or in application code.
CheckpointInterval *int64
// Describes whether checkpointing is enabled for a Flink-based Kinesis Data
// Analytics application. If CheckpointConfiguration.ConfigurationType is DEFAULT ,
// the application will use a CheckpointingEnabled value of true , even if this
// value is set to another value using this API or in application code.
CheckpointingEnabled *bool
// Describes the minimum time in milliseconds after a checkpoint operation
// completes that a new checkpoint operation can start. If a checkpoint operation
// takes longer than the CheckpointInterval , the application otherwise performs
// continual checkpoint operations. For more information, see Tuning Checkpointing (https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/large_state_tuning.html#tuning-checkpointing)
// in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.8/)
// . If CheckpointConfiguration.ConfigurationType is DEFAULT , the application will
// use a MinPauseBetweenCheckpoints value of 5000, even if this value is set using
// this API or in application code.
MinPauseBetweenCheckpoints *int64
noSmithyDocumentSerde
}
// Describes checkpointing parameters for a Flink-based Kinesis Data Analytics
// application.
type CheckpointConfigurationDescription struct {
// Describes the interval in milliseconds between checkpoint operations. If
// CheckpointConfiguration.ConfigurationType is DEFAULT , the application will use
// a CheckpointInterval value of 60000, even if this value is set to another value
// using this API or in application code.
CheckpointInterval *int64
// Describes whether checkpointing is enabled for a Flink-based Kinesis Data
// Analytics application. If CheckpointConfiguration.ConfigurationType is DEFAULT ,
// the application will use a CheckpointingEnabled value of true , even if this
// value is set to another value using this API or in application code.
CheckpointingEnabled *bool
// Describes whether the application uses the default checkpointing behavior in
// Kinesis Data Analytics. If this value is set to DEFAULT , the application will
// use the following values, even if they are set to other values using APIs or
// application code:
// - CheckpointingEnabled: true
// - CheckpointInterval: 60000
// - MinPauseBetweenCheckpoints: 5000
ConfigurationType ConfigurationType
// Describes the minimum time in milliseconds after a checkpoint operation
// completes that a new checkpoint operation can start. If
// CheckpointConfiguration.ConfigurationType is DEFAULT , the application will use
// a MinPauseBetweenCheckpoints value of 5000, even if this value is set using
// this API or in application code.
MinPauseBetweenCheckpoints *int64
noSmithyDocumentSerde
}
// Describes updates to the checkpointing parameters for a Flink-based Kinesis
// Data Analytics application.
type CheckpointConfigurationUpdate struct {
// Describes updates to the interval in milliseconds between checkpoint
// operations. If CheckpointConfiguration.ConfigurationType is DEFAULT , the
// application will use a CheckpointInterval value of 60000, even if this value is
// set to another value using this API or in application code.
CheckpointIntervalUpdate *int64
// Describes updates to whether checkpointing is enabled for an application. If
// CheckpointConfiguration.ConfigurationType is DEFAULT , the application will use
// a CheckpointingEnabled value of true , even if this value is set to another
// value using this API or in application code.
CheckpointingEnabledUpdate *bool
// Describes updates to whether the application uses the default checkpointing
// behavior of Kinesis Data Analytics. You must set this property to CUSTOM in
// order to set the CheckpointingEnabled , CheckpointInterval , or
// MinPauseBetweenCheckpoints parameters. If this value is set to DEFAULT , the
// application will use the following values, even if they are set to other values
// using APIs or application code:
// - CheckpointingEnabled: true
// - CheckpointInterval: 60000
// - MinPauseBetweenCheckpoints: 5000
ConfigurationTypeUpdate ConfigurationType
// Describes updates to the minimum time in milliseconds after a checkpoint
// operation completes that a new checkpoint operation can start. If
// CheckpointConfiguration.ConfigurationType is DEFAULT , the application will use
// a MinPauseBetweenCheckpoints value of 5000, even if this value is set using
// this API or in application code.
MinPauseBetweenCheckpointsUpdate *int64
noSmithyDocumentSerde
}
// Provides a description of Amazon CloudWatch logging options, including the log
// stream Amazon Resource Name (ARN).
type CloudWatchLoggingOption struct {
// The ARN of the CloudWatch log to receive application messages.
//
// This member is required.
LogStreamARN *string
noSmithyDocumentSerde
}
// Describes the Amazon CloudWatch logging option.
type CloudWatchLoggingOptionDescription struct {
// The Amazon Resource Name (ARN) of the CloudWatch log to receive application
// messages.
//
// This member is required.
LogStreamARN *string
// The ID of the CloudWatch logging option description.
CloudWatchLoggingOptionId *string
// The IAM ARN of the role to use to send application messages. Provided for
// backward compatibility. Applications created with the current API version have
// an application-level service execution role rather than a resource-level role.
RoleARN *string
noSmithyDocumentSerde
}
// Describes the Amazon CloudWatch logging option updates.
type CloudWatchLoggingOptionUpdate struct {
// The ID of the CloudWatch logging option to update
//
// This member is required.
CloudWatchLoggingOptionId *string
// The Amazon Resource Name (ARN) of the CloudWatch log to receive application
// messages.
LogStreamARNUpdate *string
noSmithyDocumentSerde
}
// Specifies either the application code, or the location of the application code,
// for a Flink-based Kinesis Data Analytics application.
type CodeContent struct {
// Information about the Amazon S3 bucket that contains the application code.
S3ContentLocation *S3ContentLocation
// The text-format code for a Flink-based Kinesis Data Analytics application.
TextContent *string
// The zip-format code for a Flink-based Kinesis Data Analytics application.
ZipFileContent []byte
noSmithyDocumentSerde
}
// Describes details about the code of a Kinesis Data Analytics application.
type CodeContentDescription struct {
// The checksum that can be used to validate zip-format code.
CodeMD5 *string
// The size in bytes of the application code. Can be used to validate zip-format
// code.
CodeSize *int64
// The S3 bucket Amazon Resource Name (ARN), file key, and object version of the
// application code stored in Amazon S3.
S3ApplicationCodeLocationDescription *S3ApplicationCodeLocationDescription
// The text-format code
TextContent *string
noSmithyDocumentSerde
}
// Describes an update to the code of an application. Not supported for Apache
// Zeppelin.
type CodeContentUpdate struct {
// Describes an update to the location of code for an application.
S3ContentLocationUpdate *S3ContentLocationUpdate
// Describes an update to the text code for an application.
TextContentUpdate *string
// Describes an update to the zipped code for an application.
ZipFileContentUpdate []byte
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, provides additional mapping
// information when the record format uses delimiters, such as CSV. For example,
// the following sample records use CSV format, where the records use the '\n' as
// the row delimiter and a comma (",") as the column delimiter: "name1", "address1"
//
// "name2", "address2"
type CSVMappingParameters struct {
// The column delimiter. For example, in a CSV format, a comma (",") is the
// typical column delimiter.
//
// This member is required.
RecordColumnDelimiter *string
// The row delimiter. For example, in a CSV format, '\n' is the typical row
// delimiter.
//
// This member is required.
RecordRowDelimiter *string
noSmithyDocumentSerde
}
// Specifies dependency JARs, as well as JAR files that contain user-defined
// functions (UDF).
type CustomArtifactConfiguration struct {
// UDF stands for user-defined functions. This type of artifact must be in an S3
// bucket. A DEPENDENCY_JAR can be in either Maven or an S3 bucket.
//
// This member is required.
ArtifactType ArtifactType
// The parameters required to fully specify a Maven reference.
MavenReference *MavenReference
// For a Kinesis Data Analytics application provides a description of an Amazon S3
// object, including the Amazon Resource Name (ARN) of the S3 bucket, the name of
// the Amazon S3 object that contains the data, and the version number of the
// Amazon S3 object that contains the data.
S3ContentLocation *S3ContentLocation
noSmithyDocumentSerde
}
// Specifies a dependency JAR or a JAR of user-defined functions.
type CustomArtifactConfigurationDescription struct {
// UDF stands for user-defined functions. This type of artifact must be in an S3
// bucket. A DEPENDENCY_JAR can be in either Maven or an S3 bucket.
ArtifactType ArtifactType
// The parameters that are required to specify a Maven dependency.
MavenReferenceDescription *MavenReference
// For a Kinesis Data Analytics application provides a description of an Amazon S3
// object, including the Amazon Resource Name (ARN) of the S3 bucket, the name of
// the Amazon S3 object that contains the data, and the version number of the
// Amazon S3 object that contains the data.
S3ContentLocationDescription *S3ContentLocation
noSmithyDocumentSerde
}
// The information required to deploy a Kinesis Data Analytics Studio notebook as
// an application with durable state.
type DeployAsApplicationConfiguration struct {
// The description of an Amazon S3 object that contains the Amazon Data Analytics
// application, including the Amazon Resource Name (ARN) of the S3 bucket, the name
// of the Amazon S3 object that contains the data, and the version number of the
// Amazon S3 object that contains the data.
//
// This member is required.
S3ContentLocation *S3ContentBaseLocation
noSmithyDocumentSerde
}
// The configuration information required to deploy an Amazon Data Analytics
// Studio notebook as an application with durable state.
type DeployAsApplicationConfigurationDescription struct {
// The location that holds the data required to specify an Amazon Data Analytics
// application.
//
// This member is required.
S3ContentLocationDescription *S3ContentBaseLocationDescription
noSmithyDocumentSerde
}
// Updates to the configuration information required to deploy an Amazon Data
// Analytics Studio notebook as an application with durable state.
type DeployAsApplicationConfigurationUpdate struct {
// Updates to the location that holds the data required to specify an Amazon Data
// Analytics application.
S3ContentLocationUpdate *S3ContentBaseLocationUpdate
noSmithyDocumentSerde
}
// Describes the data format when records are written to the destination in a
// SQL-based Kinesis Data Analytics application.
type DestinationSchema struct {
// Specifies the format of the records on the output stream.
//
// This member is required.
RecordFormatType RecordFormatType
noSmithyDocumentSerde
}
// Describes execution properties for a Flink-based Kinesis Data Analytics
// application.
type EnvironmentProperties struct {
// Describes the execution property groups.
//
// This member is required.
PropertyGroups []PropertyGroup
noSmithyDocumentSerde
}
// Describes the execution properties for an Apache Flink runtime.
type EnvironmentPropertyDescriptions struct {
// Describes the execution property groups.
PropertyGroupDescriptions []PropertyGroup
noSmithyDocumentSerde
}
// Describes updates to the execution property groups for a Flink-based Kinesis
// Data Analytics application or a Studio notebook.
type EnvironmentPropertyUpdates struct {
// Describes updates to the execution property groups.
//
// This member is required.
PropertyGroups []PropertyGroup
noSmithyDocumentSerde
}
// Describes configuration parameters for a Flink-based Kinesis Data Analytics
// application or a Studio notebook.
type FlinkApplicationConfiguration struct {
// Describes an application's checkpointing configuration. Checkpointing is the
// process of persisting application state for fault tolerance. For more
// information, see Checkpoints for Fault Tolerance (https://ci.apache.org/projects/flink/flink-docs-release-1.8/concepts/programming-model.html#checkpoints-for-fault-tolerance)
// in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.8/)
// .
CheckpointConfiguration *CheckpointConfiguration
// Describes configuration parameters for Amazon CloudWatch logging for an
// application.
MonitoringConfiguration *MonitoringConfiguration
// Describes parameters for how an application executes multiple tasks
// simultaneously.
ParallelismConfiguration *ParallelismConfiguration
noSmithyDocumentSerde
}
// Describes configuration parameters for a Flink-based Kinesis Data Analytics
// application.
type FlinkApplicationConfigurationDescription struct {
// Describes an application's checkpointing configuration. Checkpointing is the
// process of persisting application state for fault tolerance.
CheckpointConfigurationDescription *CheckpointConfigurationDescription
// The job plan for an application. For more information about the job plan, see
// Jobs and Scheduling (https://ci.apache.org/projects/flink/flink-docs-release-1.8/internals/job_scheduling.html)
// in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.8/)
// . To retrieve the job plan for the application, use the
// DescribeApplicationRequest$IncludeAdditionalDetails parameter of the
// DescribeApplication operation.
JobPlanDescription *string
// Describes configuration parameters for Amazon CloudWatch logging for an
// application.
MonitoringConfigurationDescription *MonitoringConfigurationDescription
// Describes parameters for how an application executes multiple tasks
// simultaneously.
ParallelismConfigurationDescription *ParallelismConfigurationDescription
noSmithyDocumentSerde
}
// Describes updates to the configuration parameters for a Flink-based Kinesis
// Data Analytics application.
type FlinkApplicationConfigurationUpdate struct {
// Describes updates to an application's checkpointing configuration.
// Checkpointing is the process of persisting application state for fault
// tolerance.
CheckpointConfigurationUpdate *CheckpointConfigurationUpdate
// Describes updates to the configuration parameters for Amazon CloudWatch logging
// for an application.
MonitoringConfigurationUpdate *MonitoringConfigurationUpdate
// Describes updates to the parameters for how an application executes multiple
// tasks simultaneously.
ParallelismConfigurationUpdate *ParallelismConfigurationUpdate
noSmithyDocumentSerde
}
// Describes the starting parameters for a Flink-based Kinesis Data Analytics
// application.
type FlinkRunConfiguration struct {
// When restoring from a snapshot, specifies whether the runtime is allowed to
// skip a state that cannot be mapped to the new program. This will happen if the
// program is updated between snapshots to remove stateful parameters, and state
// data in the snapshot no longer corresponds to valid application data. For more
// information, see Allowing Non-Restored State (https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/savepoints.html#allowing-non-restored-state)
// in the Apache Flink documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.8/)
// . This value defaults to false . If you update your application without
// specifying this parameter, AllowNonRestoredState will be set to false , even if
// it was previously set to true .
AllowNonRestoredState *bool
noSmithyDocumentSerde
}
// The configuration of the Glue Data Catalog that you use for Apache Flink SQL
// queries and table API transforms that you write in an application.
type GlueDataCatalogConfiguration struct {
// The Amazon Resource Name (ARN) of the database.
//
// This member is required.
DatabaseARN *string
noSmithyDocumentSerde
}
// The configuration of the Glue Data Catalog that you use for Apache Flink SQL
// queries and table API transforms that you write in an application.
type GlueDataCatalogConfigurationDescription struct {
// The Amazon Resource Name (ARN) of the database.
//
// This member is required.
DatabaseARN *string
noSmithyDocumentSerde
}
// Updates to the configuration of the Glue Data Catalog that you use for SQL
// queries that you write in a Kinesis Data Analytics Studio notebook.
type GlueDataCatalogConfigurationUpdate struct {
// The updated Amazon Resource Name (ARN) of the database.
//
// This member is required.
DatabaseARNUpdate *string
noSmithyDocumentSerde
}
// When you configure the application input for a SQL-based Kinesis Data Analytics
// application, you specify the streaming source, the in-application stream name
// that is created, and the mapping between the two.
type Input struct {
// Describes the format of the data in the streaming source, and how each data
// element maps to corresponding columns in the in-application stream that is being
// created. Also used to describe the format of the reference data source.
//
// This member is required.
InputSchema *SourceSchema
// The name prefix to use when creating an in-application stream. Suppose that you
// specify a prefix " MyInApplicationStream ." Kinesis Data Analytics then creates
// one or more (as per the InputParallelism count you specified) in-application
// streams with the names " MyInApplicationStream_001 ," " MyInApplicationStream_002
// ," and so on.
//
// This member is required.
NamePrefix *string
// Describes the number of in-application streams to create.
InputParallelism *InputParallelism
// The InputProcessingConfiguration for the input. An input processor transforms
// records as they are received from the stream, before the application's SQL code
// executes. Currently, the only input processing configuration available is
// InputLambdaProcessor .
InputProcessingConfiguration *InputProcessingConfiguration
// If the streaming source is an Amazon Kinesis Data Firehose delivery stream,
// identifies the delivery stream's ARN.
KinesisFirehoseInput *KinesisFirehoseInput
// If the streaming source is an Amazon Kinesis data stream, identifies the
// stream's Amazon Resource Name (ARN).
KinesisStreamsInput *KinesisStreamsInput
noSmithyDocumentSerde
}
// Describes the application input configuration for a SQL-based Kinesis Data
// Analytics application.
type InputDescription struct {
// Returns the in-application stream names that are mapped to the stream source.
InAppStreamNames []string
// The input ID that is associated with the application input. This is the ID that
// Kinesis Data Analytics assigns to each input configuration that you add to your
// application.
InputId *string
// Describes the configured parallelism (number of in-application streams mapped
// to the streaming source).
InputParallelism *InputParallelism
// The description of the preprocessor that executes on records in this input
// before the application's code is run.
InputProcessingConfigurationDescription *InputProcessingConfigurationDescription
// Describes the format of the data in the streaming source, and how each data
// element maps to corresponding columns in the in-application stream that is being
// created.
InputSchema *SourceSchema
// The point at which the application is configured to read from the input stream.
InputStartingPositionConfiguration *InputStartingPositionConfiguration
// If a Kinesis Data Firehose delivery stream is configured as a streaming source,
// provides the delivery stream's ARN.
KinesisFirehoseInputDescription *KinesisFirehoseInputDescription
// If a Kinesis data stream is configured as a streaming source, provides the
// Kinesis data stream's Amazon Resource Name (ARN).
KinesisStreamsInputDescription *KinesisStreamsInputDescription
// The in-application name prefix.
NamePrefix *string
noSmithyDocumentSerde
}
// An object that contains the Amazon Resource Name (ARN) of the Amazon Lambda
// function that is used to preprocess records in the stream in a SQL-based Kinesis
// Data Analytics application.
type InputLambdaProcessor struct {
// The ARN of the Amazon Lambda function that operates on records in the stream.
// To specify an earlier version of the Lambda function than the latest, include
// the Lambda function version in the Lambda function ARN. For more information
// about Lambda ARNs, see Example ARNs: Amazon Lambda (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
//
// This member is required.
ResourceARN *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, an object that contains the
// Amazon Resource Name (ARN) of the Amazon Lambda function that is used to
// preprocess records in the stream.
type InputLambdaProcessorDescription struct {
// The ARN of the Amazon Lambda function that is used to preprocess the records in
// the stream. To specify an earlier version of the Lambda function than the
// latest, include the Lambda function version in the Lambda function ARN. For more
// information about Lambda ARNs, see Example ARNs: Amazon Lambda (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
//
// This member is required.
ResourceARN *string
// The ARN of the IAM role that is used to access the Amazon Lambda function.
// Provided for backward compatibility. Applications that are created with the
// current API version have an application-level service execution role rather than
// a resource-level role.
RoleARN *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, represents an update to the
// InputLambdaProcessor that is used to preprocess the records in the stream.
type InputLambdaProcessorUpdate struct {
// The Amazon Resource Name (ARN) of the new Amazon Lambda function that is used
// to preprocess the records in the stream. To specify an earlier version of the
// Lambda function than the latest, include the Lambda function version in the
// Lambda function ARN. For more information about Lambda ARNs, see Example ARNs:
// Amazon Lambda (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
//
// This member is required.
ResourceARNUpdate *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes the number of
// in-application streams to create for a given streaming source.
type InputParallelism struct {
// The number of in-application streams to create.
Count *int32
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, provides updates to the
// parallelism count.
type InputParallelismUpdate struct {
// The number of in-application streams to create for the specified streaming
// source.
//
// This member is required.
CountUpdate *int32
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes a processor that
// is used to preprocess the records in the stream before being processed by your
// application code. Currently, the only input processor available is Amazon Lambda (https://docs.aws.amazon.com/lambda/)
// .
type InputProcessingConfiguration struct {
// The InputLambdaProcessor that is used to preprocess the records in the stream
// before being processed by your application code.
//
// This member is required.
InputLambdaProcessor *InputLambdaProcessor
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, provides the configuration
// information about an input processor. Currently, the only input processor
// available is Amazon Lambda (https://docs.aws.amazon.com/lambda/) .
type InputProcessingConfigurationDescription struct {
// Provides configuration information about the associated
// InputLambdaProcessorDescription
InputLambdaProcessorDescription *InputLambdaProcessorDescription
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes updates to an
// InputProcessingConfiguration .
type InputProcessingConfigurationUpdate struct {
// Provides update information for an InputLambdaProcessor .
//
// This member is required.
InputLambdaProcessorUpdate *InputLambdaProcessorUpdate
noSmithyDocumentSerde
}
// Describes updates for an SQL-based Kinesis Data Analytics application's input
// schema.
type InputSchemaUpdate struct {
// A list of RecordColumn objects. Each object describes the mapping of the
// streaming source element to the corresponding column in the in-application
// stream.
RecordColumnUpdates []RecordColumn
// Specifies the encoding of the records in the streaming source; for example,
// UTF-8.
RecordEncodingUpdate *string
// Specifies the format of the records on the streaming source.
RecordFormatUpdate *RecordFormat
noSmithyDocumentSerde
}
// Describes the point at which the application reads from the streaming source.
type InputStartingPositionConfiguration struct {
// The starting position on the stream.
// - NOW - Start reading just after the most recent record in the stream, and
// start at the request timestamp that the customer issued.
// - TRIM_HORIZON - Start reading at the last untrimmed record in the stream,
// which is the oldest record available in the stream. This option is not available
// for an Amazon Kinesis Data Firehose delivery stream.
// - LAST_STOPPED_POINT - Resume reading from where the application last stopped
// reading.
InputStartingPosition InputStartingPosition
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes updates to a
// specific input configuration (identified by the InputId of an application).
type InputUpdate struct {
// The input ID of the application input to be updated.
//
// This member is required.
InputId *string
// Describes the parallelism updates (the number of in-application streams Kinesis
// Data Analytics creates for the specific streaming source).
InputParallelismUpdate *InputParallelismUpdate
// Describes updates to an InputProcessingConfiguration .
InputProcessingConfigurationUpdate *InputProcessingConfigurationUpdate
// Describes the data format on the streaming source, and how record elements on
// the streaming source map to columns of the in-application stream that is
// created.
InputSchemaUpdate *InputSchemaUpdate
// If a Kinesis Data Firehose delivery stream is the streaming source to be
// updated, provides an updated stream ARN.
KinesisFirehoseInputUpdate *KinesisFirehoseInputUpdate
// If a Kinesis data stream is the streaming source to be updated, provides an
// updated stream Amazon Resource Name (ARN).
KinesisStreamsInputUpdate *KinesisStreamsInputUpdate
// The name prefix for in-application streams that Kinesis Data Analytics creates
// for the specific streaming source.
NamePrefixUpdate *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, provides additional mapping
// information when JSON is the record format on the streaming source.
type JSONMappingParameters struct {
// The path to the top-level parent that contains the records.
//
// This member is required.
RecordRowPath *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, identifies a Kinesis Data
// Firehose delivery stream as the streaming source. You provide the delivery
// stream's Amazon Resource Name (ARN).
type KinesisFirehoseInput struct {
// The Amazon Resource Name (ARN) of the delivery stream.
//
// This member is required.
ResourceARN *string
noSmithyDocumentSerde
}
// Describes the Amazon Kinesis Data Firehose delivery stream that is configured
// as the streaming source in the application input configuration.
type KinesisFirehoseInputDescription struct {
// The Amazon Resource Name (ARN) of the delivery stream.
//
// This member is required.
ResourceARN *string
// The ARN of the IAM role that Kinesis Data Analytics assumes to access the
// stream. Provided for backward compatibility. Applications that are created with
// the current API version have an application-level service execution role rather
// than a resource-level role.
RoleARN *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, when updating application
// input configuration, provides information about a Kinesis Data Firehose delivery
// stream as the streaming source.
type KinesisFirehoseInputUpdate struct {
// The Amazon Resource Name (ARN) of the input delivery stream to read.
//
// This member is required.
ResourceARNUpdate *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, when configuring
// application output, identifies a Kinesis Data Firehose delivery stream as the
// destination. You provide the stream Amazon Resource Name (ARN) of the delivery
// stream.
type KinesisFirehoseOutput struct {
// The ARN of the destination delivery stream to write to.
//
// This member is required.
ResourceARN *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application's output, describes the
// Kinesis Data Firehose delivery stream that is configured as its destination.
type KinesisFirehoseOutputDescription struct {
// The Amazon Resource Name (ARN) of the delivery stream.
//
// This member is required.
ResourceARN *string
// The ARN of the IAM role that Kinesis Data Analytics can assume to access the
// stream. Provided for backward compatibility. Applications that are created with
// the current API version have an application-level service execution role rather
// than a resource-level role.
RoleARN *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, when updating an output
// configuration using the UpdateApplication operation, provides information about
// a Kinesis Data Firehose delivery stream that is configured as the destination.
type KinesisFirehoseOutputUpdate struct {
// The Amazon Resource Name (ARN) of the delivery stream to write to.
//
// This member is required.
ResourceARNUpdate *string
noSmithyDocumentSerde
}
// Identifies a Kinesis data stream as the streaming source. You provide the
// stream's Amazon Resource Name (ARN).
type KinesisStreamsInput struct {
// The ARN of the input Kinesis data stream to read.
//
// This member is required.
ResourceARN *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes the Kinesis data
// stream that is configured as the streaming source in the application input
// configuration.
type KinesisStreamsInputDescription struct {
// The Amazon Resource Name (ARN) of the Kinesis data stream.
//
// This member is required.
ResourceARN *string
// The ARN of the IAM role that Kinesis Data Analytics can assume to access the
// stream. Provided for backward compatibility. Applications that are created with
// the current API version have an application-level service execution role rather
// than a resource-level role.
RoleARN *string
noSmithyDocumentSerde
}
// When you update the input configuration for a SQL-based Kinesis Data Analytics
// application, provides information about a Kinesis stream as the streaming
// source.
type KinesisStreamsInputUpdate struct {
// The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
//
// This member is required.
ResourceARNUpdate *string
noSmithyDocumentSerde
}
// When you configure a SQL-based Kinesis Data Analytics application's output,
// identifies a Kinesis data stream as the destination. You provide the stream
// Amazon Resource Name (ARN).
type KinesisStreamsOutput struct {
// The ARN of the destination Kinesis data stream to write to.
//
// This member is required.
ResourceARN *string
noSmithyDocumentSerde
}
// For an SQL-based Kinesis Data Analytics application's output, describes the
// Kinesis data stream that is configured as its destination.
type KinesisStreamsOutputDescription struct {
// The Amazon Resource Name (ARN) of the Kinesis data stream.
//
// This member is required.
ResourceARN *string
// The ARN of the IAM role that Kinesis Data Analytics can assume to access the
// stream. Provided for backward compatibility. Applications that are created with
// the current API version have an application-level service execution role rather
// than a resource-level role.
RoleARN *string
noSmithyDocumentSerde
}
// When you update a SQL-based Kinesis Data Analytics application's output
// configuration using the UpdateApplication operation, provides information about
// a Kinesis data stream that is configured as the destination.
type KinesisStreamsOutputUpdate struct {
// The Amazon Resource Name (ARN) of the Kinesis data stream where you want to
// write the output.
//
// This member is required.
ResourceARNUpdate *string
noSmithyDocumentSerde
}
// When you configure a SQL-based Kinesis Data Analytics application's output,
// identifies an Amazon Lambda function as the destination. You provide the
// function Amazon Resource Name (ARN) of the Lambda function.
type LambdaOutput struct {
// The Amazon Resource Name (ARN) of the destination Lambda function to write to.
// To specify an earlier version of the Lambda function than the latest, include
// the Lambda function version in the Lambda function ARN. For more information
// about Lambda ARNs, see Example ARNs: Amazon Lambda (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
//
// This member is required.
ResourceARN *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application's output, describes the
// Amazon Lambda function that is configured as its destination.
type LambdaOutputDescription struct {
// The Amazon Resource Name (ARN) of the destination Lambda function.
//
// This member is required.
ResourceARN *string
// The ARN of the IAM role that Kinesis Data Analytics can assume to write to the
// destination function. Provided for backward compatibility. Applications that are
// created with the current API version have an application-level service execution
// role rather than a resource-level role.
RoleARN *string
noSmithyDocumentSerde
}
// When you update an SQL-based Kinesis Data Analytics application's output
// configuration using the UpdateApplication operation, provides information about
// an Amazon Lambda function that is configured as the destination.
type LambdaOutputUpdate struct {
// The Amazon Resource Name (ARN) of the destination Amazon Lambda function. To
// specify an earlier version of the Lambda function than the latest, include the
// Lambda function version in the Lambda function ARN. For more information about
// Lambda ARNs, see Example ARNs: Amazon Lambda (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
//
// This member is required.
ResourceARNUpdate *string
noSmithyDocumentSerde
}
// When you configure a SQL-based Kinesis Data Analytics application's input at
// the time of creating or updating an application, provides additional mapping
// information specific to the record format (such as JSON, CSV, or record fields
// delimited by some delimiter) on the streaming source.
type MappingParameters struct {
// Provides additional mapping information when the record format uses delimiters
// (for example, CSV).
CSVMappingParameters *CSVMappingParameters
// Provides additional mapping information when JSON is the record format on the
// streaming source.
JSONMappingParameters *JSONMappingParameters
noSmithyDocumentSerde
}
// The information required to specify a Maven reference. You can use Maven
// references to specify dependency JAR files.
type MavenReference struct {
// The artifact ID of the Maven reference.
//
// This member is required.
ArtifactId *string
// The group ID of the Maven reference.
//
// This member is required.
GroupId *string
// The version of the Maven reference.
//
// This member is required.
Version *string
noSmithyDocumentSerde
}
// Describes configuration parameters for Amazon CloudWatch logging for an
// application. For more information about CloudWatch logging, see Monitoring (https://docs.aws.amazon.com/kinesisanalytics/latest/java/monitoring-overview.html)
// .
type MonitoringConfiguration struct {
// Describes whether to use the default CloudWatch logging configuration for an
// application. You must set this property to CUSTOM in order to set the LogLevel
// or MetricsLevel parameters.
//
// This member is required.
ConfigurationType ConfigurationType
// Describes the verbosity of the CloudWatch Logs for an application.
LogLevel LogLevel
// Describes the granularity of the CloudWatch Logs for an application. The
// Parallelism level is not recommended for applications with a Parallelism over 64
// due to excessive costs.
MetricsLevel MetricsLevel
noSmithyDocumentSerde
}
// Describes configuration parameters for CloudWatch logging for an application.
type MonitoringConfigurationDescription struct {
// Describes whether to use the default CloudWatch logging configuration for an
// application.
ConfigurationType ConfigurationType
// Describes the verbosity of the CloudWatch Logs for an application.
LogLevel LogLevel
// Describes the granularity of the CloudWatch Logs for an application.
MetricsLevel MetricsLevel
noSmithyDocumentSerde
}
// Describes updates to configuration parameters for Amazon CloudWatch logging for
// an application.
type MonitoringConfigurationUpdate struct {
// Describes updates to whether to use the default CloudWatch logging
// configuration for an application. You must set this property to CUSTOM in order
// to set the LogLevel or MetricsLevel parameters.
ConfigurationTypeUpdate ConfigurationType
// Describes updates to the verbosity of the CloudWatch Logs for an application.
LogLevelUpdate LogLevel
// Describes updates to the granularity of the CloudWatch Logs for an application.
// The Parallelism level is not recommended for applications with a Parallelism
// over 64 due to excessive costs.
MetricsLevelUpdate MetricsLevel
noSmithyDocumentSerde
}
// Describes a SQL-based Kinesis Data Analytics application's output
// configuration, in which you identify an in-application stream and a destination
// where you want the in-application stream data to be written. The destination can
// be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
type Output struct {
// Describes the data format when records are written to the destination.
//
// This member is required.
DestinationSchema *DestinationSchema
// The name of the in-application stream.
//
// This member is required.
Name *string
// Identifies a Kinesis Data Firehose delivery stream as the destination.
KinesisFirehoseOutput *KinesisFirehoseOutput
// Identifies a Kinesis data stream as the destination.
KinesisStreamsOutput *KinesisStreamsOutput
// Identifies an Amazon Lambda function as the destination.
LambdaOutput *LambdaOutput
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes the application
// output configuration, which includes the in-application stream name and the
// destination where the stream data is written. The destination can be a Kinesis
// data stream or a Kinesis Data Firehose delivery stream.
type OutputDescription struct {
// The data format used for writing data to the destination.
DestinationSchema *DestinationSchema
// Describes the Kinesis Data Firehose delivery stream that is configured as the
// destination where output is written.
KinesisFirehoseOutputDescription *KinesisFirehoseOutputDescription
// Describes the Kinesis data stream that is configured as the destination where
// output is written.
KinesisStreamsOutputDescription *KinesisStreamsOutputDescription
// Describes the Lambda function that is configured as the destination where
// output is written.
LambdaOutputDescription *LambdaOutputDescription
// The name of the in-application stream that is configured as output.
Name *string
// A unique identifier for the output configuration.
OutputId *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes updates to the
// output configuration identified by the OutputId .
type OutputUpdate struct {
// Identifies the specific output configuration that you want to update.
//
// This member is required.
OutputId *string
// Describes the data format when records are written to the destination.
DestinationSchemaUpdate *DestinationSchema
// Describes a Kinesis Data Firehose delivery stream as the destination for the
// output.
KinesisFirehoseOutputUpdate *KinesisFirehoseOutputUpdate
// Describes a Kinesis data stream as the destination for the output.
KinesisStreamsOutputUpdate *KinesisStreamsOutputUpdate
// Describes an Amazon Lambda function as the destination for the output.
LambdaOutputUpdate *LambdaOutputUpdate
// If you want to specify a different in-application stream for this output
// configuration, use this field to specify the new in-application stream name.
NameUpdate *string
noSmithyDocumentSerde
}
// Describes parameters for how a Flink-based Kinesis Data Analytics application
// executes multiple tasks simultaneously. For more information about parallelism,
// see Parallel Execution (https://ci.apache.org/projects/flink/flink-docs-release-1.8/dev/parallel.html)
// in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.8/)
// .
type ParallelismConfiguration struct {
// Describes whether the application uses the default parallelism for the Kinesis
// Data Analytics service. You must set this property to CUSTOM in order to change
// your application's AutoScalingEnabled , Parallelism , or ParallelismPerKPU
// properties.
//
// This member is required.
ConfigurationType ConfigurationType
// Describes whether the Kinesis Data Analytics service can increase the
// parallelism of the application in response to increased throughput.
AutoScalingEnabled *bool
// Describes the initial number of parallel tasks that a Flink-based Kinesis Data
// Analytics application can perform. If AutoScalingEnabled is set to True,
// Kinesis Data Analytics increases the CurrentParallelism value in response to
// application load. The service can increase the CurrentParallelism value up to
// the maximum parallelism, which is ParalellismPerKPU times the maximum KPUs for
// the application. The maximum KPUs for an application is 32 by default, and can
// be increased by requesting a limit increase. If application load is reduced, the
// service can reduce the CurrentParallelism value down to the Parallelism setting.
Parallelism *int32
// Describes the number of parallel tasks that a Flink-based Kinesis Data
// Analytics application can perform per Kinesis Processing Unit (KPU) used by the
// application. For more information about KPUs, see Amazon Kinesis Data Analytics
// Pricing (http://aws.amazon.com/kinesis/data-analytics/pricing/) .
ParallelismPerKPU *int32
noSmithyDocumentSerde
}
// Describes parameters for how a Flink-based Kinesis Data Analytics application
// executes multiple tasks simultaneously.
type ParallelismConfigurationDescription struct {
// Describes whether the Kinesis Data Analytics service can increase the
// parallelism of the application in response to increased throughput.
AutoScalingEnabled *bool
// Describes whether the application uses the default parallelism for the Kinesis
// Data Analytics service.
ConfigurationType ConfigurationType
// Describes the current number of parallel tasks that a Flink-based Kinesis Data
// Analytics application can perform. If AutoScalingEnabled is set to True,
// Kinesis Data Analytics can increase this value in response to application load.
// The service can increase this value up to the maximum parallelism, which is
// ParalellismPerKPU times the maximum KPUs for the application. The maximum KPUs
// for an application is 32 by default, and can be increased by requesting a limit
// increase. If application load is reduced, the service can reduce the
// CurrentParallelism value down to the Parallelism setting.
CurrentParallelism *int32
// Describes the initial number of parallel tasks that a Flink-based Kinesis Data
// Analytics application can perform. If AutoScalingEnabled is set to True, then
// Kinesis Data Analytics can increase the CurrentParallelism value in response to
// application load. The service can increase CurrentParallelism up to the maximum
// parallelism, which is ParalellismPerKPU times the maximum KPUs for the
// application. The maximum KPUs for an application is 32 by default, and can be
// increased by requesting a limit increase. If application load is reduced, the
// service can reduce the CurrentParallelism value down to the Parallelism setting.
Parallelism *int32
// Describes the number of parallel tasks that a Flink-based Kinesis Data
// Analytics application can perform per Kinesis Processing Unit (KPU) used by the
// application.
ParallelismPerKPU *int32
noSmithyDocumentSerde
}
// Describes updates to parameters for how an application executes multiple tasks
// simultaneously.
type ParallelismConfigurationUpdate struct {
// Describes updates to whether the Kinesis Data Analytics service can increase
// the parallelism of a Flink-based Kinesis Data Analytics application in response
// to increased throughput.
AutoScalingEnabledUpdate *bool
// Describes updates to whether the application uses the default parallelism for
// the Kinesis Data Analytics service, or if a custom parallelism is used. You must
// set this property to CUSTOM in order to change your application's
// AutoScalingEnabled , Parallelism , or ParallelismPerKPU properties.
ConfigurationTypeUpdate ConfigurationType
// Describes updates to the number of parallel tasks an application can perform
// per Kinesis Processing Unit (KPU) used by the application.
ParallelismPerKPUUpdate *int32
// Describes updates to the initial number of parallel tasks an application can
// perform. If AutoScalingEnabled is set to True, then Kinesis Data Analytics can
// increase the CurrentParallelism value in response to application load. The
// service can increase CurrentParallelism up to the maximum parallelism, which is
// ParalellismPerKPU times the maximum KPUs for the application. The maximum KPUs
// for an application is 32 by default, and can be increased by requesting a limit
// increase. If application load is reduced, the service will reduce
// CurrentParallelism down to the Parallelism setting.
ParallelismUpdate *int32
noSmithyDocumentSerde
}
// Property key-value pairs passed into an application.
type PropertyGroup struct {
// Describes the key of an application execution property key-value pair.
//
// This member is required.
PropertyGroupId *string
// Describes the value of an application execution property key-value pair.
//
// This member is required.
PropertyMap map[string]string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes the mapping of
// each data element in the streaming source to the corresponding column in the
// in-application stream. Also used to describe the format of the reference data
// source.
type RecordColumn struct {
// The name of the column that is created in the in-application input stream or
// reference table.
//
// This member is required.
Name *string
// The type of column created in the in-application input stream or reference
// table.
//
// This member is required.
SqlType *string
// A reference to the data element in the streaming input or the reference data
// source.
Mapping *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes the record format
// and relevant mapping information that should be applied to schematize the
// records on the stream.
type RecordFormat struct {
// The type of record format.
//
// This member is required.
RecordFormatType RecordFormatType
// When you configure application input at the time of creating or updating an
// application, provides additional mapping information specific to the record
// format (such as JSON, CSV, or record fields delimited by some delimiter) on the
// streaming source.
MappingParameters *MappingParameters
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes the reference
// data source by providing the source information (Amazon S3 bucket name and
// object key name), the resulting in-application table name that is created, and
// the necessary schema to map the data elements in the Amazon S3 object to the
// in-application table.
type ReferenceDataSource struct {
// Describes the format of the data in the streaming source, and how each data
// element maps to corresponding columns created in the in-application stream.
//
// This member is required.
ReferenceSchema *SourceSchema
// The name of the in-application table to create.
//
// This member is required.
TableName *string
// Identifies the S3 bucket and object that contains the reference data. A Kinesis
// Data Analytics application loads reference data only once. If the data changes,
// you call the UpdateApplication operation to trigger reloading of data into your
// application.
S3ReferenceDataSource *S3ReferenceDataSource
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes the reference
// data source configured for an application.
type ReferenceDataSourceDescription struct {
// The ID of the reference data source. This is the ID that Kinesis Data Analytics
// assigns when you add the reference data source to your application using the
// CreateApplication or UpdateApplication operation.
//
// This member is required.
ReferenceId *string
// Provides the Amazon S3 bucket name, the object key name that contains the
// reference data.
//
// This member is required.
S3ReferenceDataSourceDescription *S3ReferenceDataSourceDescription
// The in-application table name created by the specific reference data source
// configuration.
//
// This member is required.
TableName *string
// Describes the format of the data in the streaming source, and how each data
// element maps to corresponding columns created in the in-application stream.
ReferenceSchema *SourceSchema
noSmithyDocumentSerde
}
// When you update a reference data source configuration for a SQL-based Kinesis
// Data Analytics application, this object provides all the updated values (such as
// the source bucket name and object key name), the in-application table name that
// is created, and updated mapping information that maps the data in the Amazon S3
// object to the in-application reference table that is created.
type ReferenceDataSourceUpdate struct {
// The ID of the reference data source that is being updated. You can use the
// DescribeApplication operation to get this value.
//
// This member is required.
ReferenceId *string
// Describes the format of the data in the streaming source, and how each data
// element maps to corresponding columns created in the in-application stream.
ReferenceSchemaUpdate *SourceSchema
// Describes the S3 bucket name, object key name, and IAM role that Kinesis Data
// Analytics can assume to read the Amazon S3 object on your behalf and populate
// the in-application reference table.
S3ReferenceDataSourceUpdate *S3ReferenceDataSourceUpdate
// The in-application table name that is created by this update.
TableNameUpdate *string
noSmithyDocumentSerde
}
// Describes the starting parameters for an Kinesis Data Analytics application.
type RunConfiguration struct {
// Describes the restore behavior of a restarting application.
ApplicationRestoreConfiguration *ApplicationRestoreConfiguration
// Describes the starting parameters for a Flink-based Kinesis Data Analytics
// application.
FlinkRunConfiguration *FlinkRunConfiguration
// Describes the starting parameters for a SQL-based Kinesis Data Analytics
// application application.
SqlRunConfigurations []SqlRunConfiguration
noSmithyDocumentSerde
}
// Describes the starting properties for a Kinesis Data Analytics application.
type RunConfigurationDescription struct {
// Describes the restore behavior of a restarting application.
ApplicationRestoreConfigurationDescription *ApplicationRestoreConfiguration
// Describes the starting parameters for a Flink-based Kinesis Data Analytics
// application.
FlinkRunConfigurationDescription *FlinkRunConfiguration
noSmithyDocumentSerde
}
// Describes the updates to the starting parameters for a Kinesis Data Analytics
// application.
type RunConfigurationUpdate struct {
// Describes updates to the restore behavior of a restarting application.
ApplicationRestoreConfiguration *ApplicationRestoreConfiguration
// Describes the starting parameters for a Flink-based Kinesis Data Analytics
// application.
FlinkRunConfiguration *FlinkRunConfiguration
noSmithyDocumentSerde
}
// Describes the location of an application's code stored in an S3 bucket.
type S3ApplicationCodeLocationDescription struct {
// The Amazon Resource Name (ARN) for the S3 bucket containing the application
// code.
//
// This member is required.
BucketARN *string
// The file key for the object containing the application code.
//
// This member is required.
FileKey *string
// The version of the object containing the application code.
ObjectVersion *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, provides a description of
// an Amazon S3 data source, including the Amazon Resource Name (ARN) of the S3
// bucket and the name of the Amazon S3 object that contains the data.
type S3Configuration struct {
// The ARN of the S3 bucket that contains the data.
//
// This member is required.
BucketARN *string
// The name of the object that contains the data.
//
// This member is required.
FileKey *string
noSmithyDocumentSerde
}
// The S3 bucket that holds the application information.
type S3ContentBaseLocation struct {
// The Amazon Resource Name (ARN) of the S3 bucket.
//
// This member is required.
BucketARN *string
// The base path for the S3 bucket.
BasePath *string
noSmithyDocumentSerde
}
// The description of the S3 base location that holds the application.
type S3ContentBaseLocationDescription struct {
// The Amazon Resource Name (ARN) of the S3 bucket.
//
// This member is required.
BucketARN *string
// The base path for the S3 bucket.
BasePath *string
noSmithyDocumentSerde
}
// The information required to update the S3 base location that holds the
// application.
type S3ContentBaseLocationUpdate struct {
// The updated S3 bucket path.
BasePathUpdate *string
// The updated Amazon Resource Name (ARN) of the S3 bucket.
BucketARNUpdate *string
noSmithyDocumentSerde
}
// For a Kinesis Data Analytics application provides a description of an Amazon S3
// object, including the Amazon Resource Name (ARN) of the S3 bucket, the name of
// the Amazon S3 object that contains the data, and the version number of the
// Amazon S3 object that contains the data.
type S3ContentLocation struct {
// The Amazon Resource Name (ARN) for the S3 bucket containing the application
// code.
//
// This member is required.
BucketARN *string
// The file key for the object containing the application code.
//
// This member is required.
FileKey *string
// The version of the object containing the application code.
ObjectVersion *string
noSmithyDocumentSerde
}
// Describes an update for the Amazon S3 code content location for an application.
type S3ContentLocationUpdate struct {
// The new Amazon Resource Name (ARN) for the S3 bucket containing the application
// code.
BucketARNUpdate *string
// The new file key for the object containing the application code.
FileKeyUpdate *string
// The new version of the object containing the application code.
ObjectVersionUpdate *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, identifies the Amazon S3
// bucket and object that contains the reference data. A Kinesis Data Analytics
// application loads reference data only once. If the data changes, you call the
// UpdateApplication operation to trigger reloading of data into your application.
type S3ReferenceDataSource struct {
// The Amazon Resource Name (ARN) of the S3 bucket.
BucketARN *string
// The object key name containing the reference data.
FileKey *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, provides the bucket name
// and object key name that stores the reference data.
type S3ReferenceDataSourceDescription struct {
// The Amazon Resource Name (ARN) of the S3 bucket.
//
// This member is required.
BucketARN *string
// Amazon S3 object key name.
//
// This member is required.
FileKey *string
// The ARN of the IAM role that Kinesis Data Analytics can assume to read the
// Amazon S3 object on your behalf to populate the in-application reference table.
// Provided for backward compatibility. Applications that are created with the
// current API version have an application-level service execution role rather than
// a resource-level role.
ReferenceRoleARN *string
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes the Amazon S3
// bucket name and object key name for an in-application reference table.
type S3ReferenceDataSourceUpdate struct {
// The Amazon Resource Name (ARN) of the S3 bucket.
BucketARNUpdate *string
// The object key name.
FileKeyUpdate *string
noSmithyDocumentSerde
}
// Provides details about a snapshot of application state.
type SnapshotDetails struct {
// The current application version ID when the snapshot was created.
//
// This member is required.
ApplicationVersionId *int64
// The identifier for the application snapshot.
//
// This member is required.
SnapshotName *string
// The status of the application snapshot.
//
// This member is required.
SnapshotStatus SnapshotStatus
// The timestamp of the application snapshot.
SnapshotCreationTimestamp *time.Time
noSmithyDocumentSerde
}
// For a SQL-based Kinesis Data Analytics application, describes the format of the
// data in the streaming source, and how each data element maps to corresponding
// columns created in the in-application stream.
type SourceSchema struct {
// A list of RecordColumn objects.
//
// This member is required.
RecordColumns []RecordColumn
// Specifies the format of the records on the streaming source.
//
// This member is required.
RecordFormat *RecordFormat
// Specifies the encoding of the records in the streaming source. For example,
// UTF-8.
RecordEncoding *string
noSmithyDocumentSerde
}
// Describes the inputs, outputs, and reference data sources for a SQL-based
// Kinesis Data Analytics application.
type SqlApplicationConfiguration struct {
// The array of Input objects describing the input streams used by the application.
Inputs []Input
// The array of Output objects describing the destination streams used by the
// application.
Outputs []Output
// The array of ReferenceDataSource objects describing the reference data sources
// used by the application.
ReferenceDataSources []ReferenceDataSource
noSmithyDocumentSerde
}
// Describes the inputs, outputs, and reference data sources for a SQL-based
// Kinesis Data Analytics application.
type SqlApplicationConfigurationDescription struct {
// The array of InputDescription objects describing the input streams used by the
// application.
InputDescriptions []InputDescription
// The array of OutputDescription objects describing the destination streams used
// by the application.
OutputDescriptions []OutputDescription
// The array of ReferenceDataSourceDescription objects describing the reference
// data sources used by the application.
ReferenceDataSourceDescriptions []ReferenceDataSourceDescription
noSmithyDocumentSerde
}
// Describes updates to the input streams, destination streams, and reference data
// sources for a SQL-based Kinesis Data Analytics application.
type SqlApplicationConfigurationUpdate struct {
// The array of InputUpdate objects describing the new input streams used by the
// application.
InputUpdates []InputUpdate
// The array of OutputUpdate objects describing the new destination streams used
// by the application.
OutputUpdates []OutputUpdate
// The array of ReferenceDataSourceUpdate objects describing the new reference
// data sources used by the application.
ReferenceDataSourceUpdates []ReferenceDataSourceUpdate
noSmithyDocumentSerde
}
// Describes the starting parameters for a SQL-based Kinesis Data Analytics
// application.
type SqlRunConfiguration struct {
// The input source ID. You can get this ID by calling the DescribeApplication
// operation.
//
// This member is required.
InputId *string
// The point at which you want the application to start processing records from
// the streaming source.
//
// This member is required.
InputStartingPositionConfiguration *InputStartingPositionConfiguration
noSmithyDocumentSerde
}
// A key-value pair (the value is optional) that you can define and assign to
// Amazon resources. If you specify a tag that already exists, the tag value is
// replaced with the value that you specify in the request. Note that the maximum
// number of application tags includes system tags. The maximum number of
// user-defined application tags is 50. For more information, see Using Tagging (https://docs.aws.amazon.com/kinesisanalytics/latest/java/how-tagging.html)
// .
type Tag struct {
// The key of the key-value tag.
//
// This member is required.
Key *string
// The value of the key-value tag. The value is optional.
Value *string
noSmithyDocumentSerde
}
// Describes the parameters of a VPC used by the application.
type VpcConfiguration struct {
// The array of SecurityGroup (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SecurityGroup.html)
// IDs used by the VPC configuration.
//
// This member is required.
SecurityGroupIds []string
// The array of Subnet (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Subnet.html)
// IDs used by the VPC configuration.
//
// This member is required.
SubnetIds []string
noSmithyDocumentSerde
}
// Describes the parameters of a VPC used by the application.
type VpcConfigurationDescription struct {
// The array of SecurityGroup (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SecurityGroup.html)
// IDs used by the VPC configuration.
//
// This member is required.
SecurityGroupIds []string
// The array of Subnet (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Subnet.html)
// IDs used by the VPC configuration.
//
// This member is required.
SubnetIds []string
// The ID of the VPC configuration.
//
// This member is required.
VpcConfigurationId *string
// The ID of the associated VPC.
//
// This member is required.
VpcId *string
noSmithyDocumentSerde
}
// Describes updates to the VPC configuration used by the application.
type VpcConfigurationUpdate struct {
// Describes an update to the ID of the VPC configuration.
//
// This member is required.
VpcConfigurationId *string
// Describes updates to the array of SecurityGroup (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SecurityGroup.html)
// IDs used by the VPC configuration.
SecurityGroupIdUpdates []string
// Describes updates to the array of Subnet (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Subnet.html)
// IDs used by the VPC configuration.
SubnetIdUpdates []string
noSmithyDocumentSerde
}
// The configuration of a Kinesis Data Analytics Studio notebook.
type ZeppelinApplicationConfiguration struct {
// The Amazon Glue Data Catalog that you use in queries in a Kinesis Data
// Analytics Studio notebook.
CatalogConfiguration *CatalogConfiguration
// Custom artifacts are dependency JARs and user-defined functions (UDF).
CustomArtifactsConfiguration []CustomArtifactConfiguration
// The information required to deploy a Kinesis Data Analytics Studio notebook as
// an application with durable state.
DeployAsApplicationConfiguration *DeployAsApplicationConfiguration
// The monitoring configuration of a Kinesis Data Analytics Studio notebook.
MonitoringConfiguration *ZeppelinMonitoringConfiguration
noSmithyDocumentSerde
}
// The configuration of a Kinesis Data Analytics Studio notebook.
type ZeppelinApplicationConfigurationDescription struct {
// The monitoring configuration of a Kinesis Data Analytics Studio notebook.
//
// This member is required.
MonitoringConfigurationDescription *ZeppelinMonitoringConfigurationDescription
// The Amazon Glue Data Catalog that is associated with the Kinesis Data Analytics
// Studio notebook.
CatalogConfigurationDescription *CatalogConfigurationDescription
// Custom artifacts are dependency JARs and user-defined functions (UDF).
CustomArtifactsConfigurationDescription []CustomArtifactConfigurationDescription
// The parameters required to deploy a Kinesis Data Analytics Studio notebook as
// an application with durable state.
DeployAsApplicationConfigurationDescription *DeployAsApplicationConfigurationDescription
noSmithyDocumentSerde
}
// Updates to the configuration of Kinesis Data Analytics Studio notebook.
type ZeppelinApplicationConfigurationUpdate struct {
// Updates to the configuration of the Amazon Glue Data Catalog that is associated
// with the Kinesis Data Analytics Studio notebook.
CatalogConfigurationUpdate *CatalogConfigurationUpdate
// Updates to the customer artifacts. Custom artifacts are dependency JAR files
// and user-defined functions (UDF).
CustomArtifactsConfigurationUpdate []CustomArtifactConfiguration
// Updates to the configuration information required to deploy an Amazon Data
// Analytics Studio notebook as an application with durable state.
DeployAsApplicationConfigurationUpdate *DeployAsApplicationConfigurationUpdate
// Updates to the monitoring configuration of a Kinesis Data Analytics Studio
// notebook.
MonitoringConfigurationUpdate *ZeppelinMonitoringConfigurationUpdate
noSmithyDocumentSerde
}
// Describes configuration parameters for Amazon CloudWatch logging for a Kinesis
// Data Analytics Studio notebook. For more information about CloudWatch logging,
// see Monitoring (https://docs.aws.amazon.com/kinesisanalytics/latest/java/monitoring-overview.html)
// .
type ZeppelinMonitoringConfiguration struct {
// The verbosity of the CloudWatch Logs for an application.
//
// This member is required.
LogLevel LogLevel
noSmithyDocumentSerde
}
// The monitoring configuration for Apache Zeppelin within a Kinesis Data
// Analytics Studio notebook.
type ZeppelinMonitoringConfigurationDescription struct {
// Describes the verbosity of the CloudWatch Logs for an application.
LogLevel LogLevel
noSmithyDocumentSerde
}
// Updates to the monitoring configuration for Apache Zeppelin within a Kinesis
// Data Analytics Studio notebook.
type ZeppelinMonitoringConfigurationUpdate struct {
// Updates to the logging level for Apache Zeppelin within a Kinesis Data
// Analytics Studio notebook.
//
// This member is required.
LogLevelUpdate LogLevel
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|