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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AdditionalOptionKeys string
// Enum values for AdditionalOptionKeys
const (
AdditionalOptionKeysCacheOption AdditionalOptionKeys = "performanceTuning.caching"
AdditionalOptionKeysObservationsOption AdditionalOptionKeys = "observations.scope"
)
// Values returns all known values for AdditionalOptionKeys. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AdditionalOptionKeys) Values() []AdditionalOptionKeys {
return []AdditionalOptionKeys{
"performanceTuning.caching",
"observations.scope",
}
}
type AggFunction string
// Enum values for AggFunction
const (
AggFunctionAvg AggFunction = "avg"
AggFunctionCountDistinct AggFunction = "countDistinct"
AggFunctionCount AggFunction = "count"
AggFunctionFirst AggFunction = "first"
AggFunctionLast AggFunction = "last"
AggFunctionKurtosis AggFunction = "kurtosis"
AggFunctionMax AggFunction = "max"
AggFunctionMin AggFunction = "min"
AggFunctionSkewness AggFunction = "skewness"
AggFunctionStddevSamp AggFunction = "stddev_samp"
AggFunctionStddevPop AggFunction = "stddev_pop"
AggFunctionSum AggFunction = "sum"
AggFunctionSumDistinct AggFunction = "sumDistinct"
AggFunctionVarSamp AggFunction = "var_samp"
AggFunctionVarPop AggFunction = "var_pop"
)
// Values returns all known values for AggFunction. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (AggFunction) Values() []AggFunction {
return []AggFunction{
"avg",
"countDistinct",
"count",
"first",
"last",
"kurtosis",
"max",
"min",
"skewness",
"stddev_samp",
"stddev_pop",
"sum",
"sumDistinct",
"var_samp",
"var_pop",
}
}
type BackfillErrorCode string
// Enum values for BackfillErrorCode
const (
BackfillErrorCodeEncryptedPartitionError BackfillErrorCode = "ENCRYPTED_PARTITION_ERROR"
BackfillErrorCodeInternalError BackfillErrorCode = "INTERNAL_ERROR"
BackfillErrorCodeInvalidPartitionTypeDataError BackfillErrorCode = "INVALID_PARTITION_TYPE_DATA_ERROR"
BackfillErrorCodeMissingPartitionValueError BackfillErrorCode = "MISSING_PARTITION_VALUE_ERROR"
BackfillErrorCodeUnsupportedPartitionCharacterError BackfillErrorCode = "UNSUPPORTED_PARTITION_CHARACTER_ERROR"
)
// Values returns all known values for BackfillErrorCode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BackfillErrorCode) Values() []BackfillErrorCode {
return []BackfillErrorCode{
"ENCRYPTED_PARTITION_ERROR",
"INTERNAL_ERROR",
"INVALID_PARTITION_TYPE_DATA_ERROR",
"MISSING_PARTITION_VALUE_ERROR",
"UNSUPPORTED_PARTITION_CHARACTER_ERROR",
}
}
type BlueprintRunState string
// Enum values for BlueprintRunState
const (
BlueprintRunStateRunning BlueprintRunState = "RUNNING"
BlueprintRunStateSucceeded BlueprintRunState = "SUCCEEDED"
BlueprintRunStateFailed BlueprintRunState = "FAILED"
BlueprintRunStateRollingBack BlueprintRunState = "ROLLING_BACK"
)
// Values returns all known values for BlueprintRunState. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BlueprintRunState) Values() []BlueprintRunState {
return []BlueprintRunState{
"RUNNING",
"SUCCEEDED",
"FAILED",
"ROLLING_BACK",
}
}
type BlueprintStatus string
// Enum values for BlueprintStatus
const (
BlueprintStatusCreating BlueprintStatus = "CREATING"
BlueprintStatusActive BlueprintStatus = "ACTIVE"
BlueprintStatusUpdating BlueprintStatus = "UPDATING"
BlueprintStatusFailed BlueprintStatus = "FAILED"
)
// Values returns all known values for BlueprintStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (BlueprintStatus) Values() []BlueprintStatus {
return []BlueprintStatus{
"CREATING",
"ACTIVE",
"UPDATING",
"FAILED",
}
}
type CatalogEncryptionMode string
// Enum values for CatalogEncryptionMode
const (
CatalogEncryptionModeDisabled CatalogEncryptionMode = "DISABLED"
CatalogEncryptionModeSsekms CatalogEncryptionMode = "SSE-KMS"
)
// Values returns all known values for CatalogEncryptionMode. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CatalogEncryptionMode) Values() []CatalogEncryptionMode {
return []CatalogEncryptionMode{
"DISABLED",
"SSE-KMS",
}
}
type CloudWatchEncryptionMode string
// Enum values for CloudWatchEncryptionMode
const (
CloudWatchEncryptionModeDisabled CloudWatchEncryptionMode = "DISABLED"
CloudWatchEncryptionModeSsekms CloudWatchEncryptionMode = "SSE-KMS"
)
// Values returns all known values for CloudWatchEncryptionMode. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (CloudWatchEncryptionMode) Values() []CloudWatchEncryptionMode {
return []CloudWatchEncryptionMode{
"DISABLED",
"SSE-KMS",
}
}
type ColumnStatisticsState string
// Enum values for ColumnStatisticsState
const (
ColumnStatisticsStateStarting ColumnStatisticsState = "STARTING"
ColumnStatisticsStateRunning ColumnStatisticsState = "RUNNING"
ColumnStatisticsStateSucceeded ColumnStatisticsState = "SUCCEEDED"
ColumnStatisticsStateFailed ColumnStatisticsState = "FAILED"
ColumnStatisticsStateStopped ColumnStatisticsState = "STOPPED"
)
// Values returns all known values for ColumnStatisticsState. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ColumnStatisticsState) Values() []ColumnStatisticsState {
return []ColumnStatisticsState{
"STARTING",
"RUNNING",
"SUCCEEDED",
"FAILED",
"STOPPED",
}
}
type ColumnStatisticsType string
// Enum values for ColumnStatisticsType
const (
ColumnStatisticsTypeBoolean ColumnStatisticsType = "BOOLEAN"
ColumnStatisticsTypeDate ColumnStatisticsType = "DATE"
ColumnStatisticsTypeDecimal ColumnStatisticsType = "DECIMAL"
ColumnStatisticsTypeDouble ColumnStatisticsType = "DOUBLE"
ColumnStatisticsTypeLong ColumnStatisticsType = "LONG"
ColumnStatisticsTypeString ColumnStatisticsType = "STRING"
ColumnStatisticsTypeBinary ColumnStatisticsType = "BINARY"
)
// Values returns all known values for ColumnStatisticsType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ColumnStatisticsType) Values() []ColumnStatisticsType {
return []ColumnStatisticsType{
"BOOLEAN",
"DATE",
"DECIMAL",
"DOUBLE",
"LONG",
"STRING",
"BINARY",
}
}
type Comparator string
// Enum values for Comparator
const (
ComparatorEquals Comparator = "EQUALS"
ComparatorGreaterThan Comparator = "GREATER_THAN"
ComparatorLessThan Comparator = "LESS_THAN"
ComparatorGreaterThanEquals Comparator = "GREATER_THAN_EQUALS"
ComparatorLessThanEquals Comparator = "LESS_THAN_EQUALS"
)
// Values returns all known values for Comparator. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (Comparator) Values() []Comparator {
return []Comparator{
"EQUALS",
"GREATER_THAN",
"LESS_THAN",
"GREATER_THAN_EQUALS",
"LESS_THAN_EQUALS",
}
}
type Compatibility string
// Enum values for Compatibility
const (
CompatibilityNone Compatibility = "NONE"
CompatibilityDisabled Compatibility = "DISABLED"
CompatibilityBackward Compatibility = "BACKWARD"
CompatibilityBackwardAll Compatibility = "BACKWARD_ALL"
CompatibilityForward Compatibility = "FORWARD"
CompatibilityForwardAll Compatibility = "FORWARD_ALL"
CompatibilityFull Compatibility = "FULL"
CompatibilityFullAll Compatibility = "FULL_ALL"
)
// Values returns all known values for Compatibility. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (Compatibility) Values() []Compatibility {
return []Compatibility{
"NONE",
"DISABLED",
"BACKWARD",
"BACKWARD_ALL",
"FORWARD",
"FORWARD_ALL",
"FULL",
"FULL_ALL",
}
}
type CompressionType string
// Enum values for CompressionType
const (
CompressionTypeGzip CompressionType = "gzip"
CompressionTypeBzip2 CompressionType = "bzip2"
)
// Values returns all known values for CompressionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CompressionType) Values() []CompressionType {
return []CompressionType{
"gzip",
"bzip2",
}
}
type ConnectionPropertyKey string
// Enum values for ConnectionPropertyKey
const (
ConnectionPropertyKeyHost ConnectionPropertyKey = "HOST"
ConnectionPropertyKeyPort ConnectionPropertyKey = "PORT"
ConnectionPropertyKeyUserName ConnectionPropertyKey = "USERNAME"
ConnectionPropertyKeyPassword ConnectionPropertyKey = "PASSWORD"
ConnectionPropertyKeyEncryptedPassword ConnectionPropertyKey = "ENCRYPTED_PASSWORD"
ConnectionPropertyKeyJdbcDriverJarUri ConnectionPropertyKey = "JDBC_DRIVER_JAR_URI"
ConnectionPropertyKeyJdbcDriverClassName ConnectionPropertyKey = "JDBC_DRIVER_CLASS_NAME"
ConnectionPropertyKeyJdbcEngine ConnectionPropertyKey = "JDBC_ENGINE"
ConnectionPropertyKeyJdbcEngineVersion ConnectionPropertyKey = "JDBC_ENGINE_VERSION"
ConnectionPropertyKeyConfigFiles ConnectionPropertyKey = "CONFIG_FILES"
ConnectionPropertyKeyInstanceId ConnectionPropertyKey = "INSTANCE_ID"
ConnectionPropertyKeyJdbcConnectionUrl ConnectionPropertyKey = "JDBC_CONNECTION_URL"
ConnectionPropertyKeyJdbcEnforceSsl ConnectionPropertyKey = "JDBC_ENFORCE_SSL"
ConnectionPropertyKeyCustomJdbcCert ConnectionPropertyKey = "CUSTOM_JDBC_CERT"
ConnectionPropertyKeySkipCustomJdbcCertValidation ConnectionPropertyKey = "SKIP_CUSTOM_JDBC_CERT_VALIDATION"
ConnectionPropertyKeyCustomJdbcCertString ConnectionPropertyKey = "CUSTOM_JDBC_CERT_STRING"
ConnectionPropertyKeyConnectionUrl ConnectionPropertyKey = "CONNECTION_URL"
ConnectionPropertyKeyKafkaBootstrapServers ConnectionPropertyKey = "KAFKA_BOOTSTRAP_SERVERS"
ConnectionPropertyKeyKafkaSslEnabled ConnectionPropertyKey = "KAFKA_SSL_ENABLED"
ConnectionPropertyKeyKafkaCustomCert ConnectionPropertyKey = "KAFKA_CUSTOM_CERT"
ConnectionPropertyKeyKafkaSkipCustomCertValidation ConnectionPropertyKey = "KAFKA_SKIP_CUSTOM_CERT_VALIDATION"
ConnectionPropertyKeyKafkaClientKeystore ConnectionPropertyKey = "KAFKA_CLIENT_KEYSTORE"
ConnectionPropertyKeyKafkaClientKeystorePassword ConnectionPropertyKey = "KAFKA_CLIENT_KEYSTORE_PASSWORD"
ConnectionPropertyKeyKafkaClientKeyPassword ConnectionPropertyKey = "KAFKA_CLIENT_KEY_PASSWORD"
ConnectionPropertyKeyEncryptedKafkaClientKeystorePassword ConnectionPropertyKey = "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD"
ConnectionPropertyKeyEncryptedKafkaClientKeyPassword ConnectionPropertyKey = "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD"
ConnectionPropertyKeySecretId ConnectionPropertyKey = "SECRET_ID"
ConnectionPropertyKeyConnectorUrl ConnectionPropertyKey = "CONNECTOR_URL"
ConnectionPropertyKeyConnectorType ConnectionPropertyKey = "CONNECTOR_TYPE"
ConnectionPropertyKeyConnectorClassName ConnectionPropertyKey = "CONNECTOR_CLASS_NAME"
ConnectionPropertyKeyKafkaSaslMechanism ConnectionPropertyKey = "KAFKA_SASL_MECHANISM"
ConnectionPropertyKeyKafkaSaslScramUsername ConnectionPropertyKey = "KAFKA_SASL_SCRAM_USERNAME"
ConnectionPropertyKeyKafkaSaslScramPassword ConnectionPropertyKey = "KAFKA_SASL_SCRAM_PASSWORD"
ConnectionPropertyKeyKafkaSaslScramSecretsArn ConnectionPropertyKey = "KAFKA_SASL_SCRAM_SECRETS_ARN"
ConnectionPropertyKeyEncryptedKafkaSaslScramPassword ConnectionPropertyKey = "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD"
ConnectionPropertyKeyKafkaSaslGssapiKeytab ConnectionPropertyKey = "KAFKA_SASL_GSSAPI_KEYTAB"
ConnectionPropertyKeyKafkaSaslGssapiKrb5Conf ConnectionPropertyKey = "KAFKA_SASL_GSSAPI_KRB5_CONF"
ConnectionPropertyKeyKafkaSaslGssapiService ConnectionPropertyKey = "KAFKA_SASL_GSSAPI_SERVICE"
ConnectionPropertyKeyKafkaSaslGssapiPrincipal ConnectionPropertyKey = "KAFKA_SASL_GSSAPI_PRINCIPAL"
)
// Values returns all known values for ConnectionPropertyKey. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ConnectionPropertyKey) Values() []ConnectionPropertyKey {
return []ConnectionPropertyKey{
"HOST",
"PORT",
"USERNAME",
"PASSWORD",
"ENCRYPTED_PASSWORD",
"JDBC_DRIVER_JAR_URI",
"JDBC_DRIVER_CLASS_NAME",
"JDBC_ENGINE",
"JDBC_ENGINE_VERSION",
"CONFIG_FILES",
"INSTANCE_ID",
"JDBC_CONNECTION_URL",
"JDBC_ENFORCE_SSL",
"CUSTOM_JDBC_CERT",
"SKIP_CUSTOM_JDBC_CERT_VALIDATION",
"CUSTOM_JDBC_CERT_STRING",
"CONNECTION_URL",
"KAFKA_BOOTSTRAP_SERVERS",
"KAFKA_SSL_ENABLED",
"KAFKA_CUSTOM_CERT",
"KAFKA_SKIP_CUSTOM_CERT_VALIDATION",
"KAFKA_CLIENT_KEYSTORE",
"KAFKA_CLIENT_KEYSTORE_PASSWORD",
"KAFKA_CLIENT_KEY_PASSWORD",
"ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD",
"ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD",
"SECRET_ID",
"CONNECTOR_URL",
"CONNECTOR_TYPE",
"CONNECTOR_CLASS_NAME",
"KAFKA_SASL_MECHANISM",
"KAFKA_SASL_SCRAM_USERNAME",
"KAFKA_SASL_SCRAM_PASSWORD",
"KAFKA_SASL_SCRAM_SECRETS_ARN",
"ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD",
"KAFKA_SASL_GSSAPI_KEYTAB",
"KAFKA_SASL_GSSAPI_KRB5_CONF",
"KAFKA_SASL_GSSAPI_SERVICE",
"KAFKA_SASL_GSSAPI_PRINCIPAL",
}
}
type ConnectionType string
// Enum values for ConnectionType
const (
ConnectionTypeJdbc ConnectionType = "JDBC"
ConnectionTypeSftp ConnectionType = "SFTP"
ConnectionTypeMongodb ConnectionType = "MONGODB"
ConnectionTypeKafka ConnectionType = "KAFKA"
ConnectionTypeNetwork ConnectionType = "NETWORK"
ConnectionTypeMarketplace ConnectionType = "MARKETPLACE"
ConnectionTypeCustom ConnectionType = "CUSTOM"
)
// Values returns all known values for ConnectionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ConnectionType) Values() []ConnectionType {
return []ConnectionType{
"JDBC",
"SFTP",
"MONGODB",
"KAFKA",
"NETWORK",
"MARKETPLACE",
"CUSTOM",
}
}
type CrawlerHistoryState string
// Enum values for CrawlerHistoryState
const (
CrawlerHistoryStateRunning CrawlerHistoryState = "RUNNING"
CrawlerHistoryStateCompleted CrawlerHistoryState = "COMPLETED"
CrawlerHistoryStateFailed CrawlerHistoryState = "FAILED"
CrawlerHistoryStateStopped CrawlerHistoryState = "STOPPED"
)
// Values returns all known values for CrawlerHistoryState. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CrawlerHistoryState) Values() []CrawlerHistoryState {
return []CrawlerHistoryState{
"RUNNING",
"COMPLETED",
"FAILED",
"STOPPED",
}
}
type CrawlerLineageSettings string
// Enum values for CrawlerLineageSettings
const (
CrawlerLineageSettingsEnable CrawlerLineageSettings = "ENABLE"
CrawlerLineageSettingsDisable CrawlerLineageSettings = "DISABLE"
)
// Values returns all known values for CrawlerLineageSettings. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CrawlerLineageSettings) Values() []CrawlerLineageSettings {
return []CrawlerLineageSettings{
"ENABLE",
"DISABLE",
}
}
type CrawlerState string
// Enum values for CrawlerState
const (
CrawlerStateReady CrawlerState = "READY"
CrawlerStateRunning CrawlerState = "RUNNING"
CrawlerStateStopping CrawlerState = "STOPPING"
)
// Values returns all known values for CrawlerState. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CrawlerState) Values() []CrawlerState {
return []CrawlerState{
"READY",
"RUNNING",
"STOPPING",
}
}
type CrawlState string
// Enum values for CrawlState
const (
CrawlStateRunning CrawlState = "RUNNING"
CrawlStateCancelling CrawlState = "CANCELLING"
CrawlStateCancelled CrawlState = "CANCELLED"
CrawlStateSucceeded CrawlState = "SUCCEEDED"
CrawlStateFailed CrawlState = "FAILED"
CrawlStateError CrawlState = "ERROR"
)
// Values returns all known values for CrawlState. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (CrawlState) Values() []CrawlState {
return []CrawlState{
"RUNNING",
"CANCELLING",
"CANCELLED",
"SUCCEEDED",
"FAILED",
"ERROR",
}
}
type CsvHeaderOption string
// Enum values for CsvHeaderOption
const (
CsvHeaderOptionUnknown CsvHeaderOption = "UNKNOWN"
CsvHeaderOptionPresent CsvHeaderOption = "PRESENT"
CsvHeaderOptionAbsent CsvHeaderOption = "ABSENT"
)
// Values returns all known values for CsvHeaderOption. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CsvHeaderOption) Values() []CsvHeaderOption {
return []CsvHeaderOption{
"UNKNOWN",
"PRESENT",
"ABSENT",
}
}
type CsvSerdeOption string
// Enum values for CsvSerdeOption
const (
CsvSerdeOptionOpenCSVSerDe CsvSerdeOption = "OpenCSVSerDe"
CsvSerdeOptionLazySimpleSerDe CsvSerdeOption = "LazySimpleSerDe"
CsvSerdeOptionNone CsvSerdeOption = "None"
)
// Values returns all known values for CsvSerdeOption. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CsvSerdeOption) Values() []CsvSerdeOption {
return []CsvSerdeOption{
"OpenCSVSerDe",
"LazySimpleSerDe",
"None",
}
}
type DataFormat string
// Enum values for DataFormat
const (
DataFormatAvro DataFormat = "AVRO"
DataFormatJson DataFormat = "JSON"
DataFormatProtobuf DataFormat = "PROTOBUF"
)
// Values returns all known values for DataFormat. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (DataFormat) Values() []DataFormat {
return []DataFormat{
"AVRO",
"JSON",
"PROTOBUF",
}
}
type DataQualityRuleResultStatus string
// Enum values for DataQualityRuleResultStatus
const (
DataQualityRuleResultStatusPass DataQualityRuleResultStatus = "PASS"
DataQualityRuleResultStatusFail DataQualityRuleResultStatus = "FAIL"
DataQualityRuleResultStatusError DataQualityRuleResultStatus = "ERROR"
)
// Values returns all known values for DataQualityRuleResultStatus. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (DataQualityRuleResultStatus) Values() []DataQualityRuleResultStatus {
return []DataQualityRuleResultStatus{
"PASS",
"FAIL",
"ERROR",
}
}
type DeleteBehavior string
// Enum values for DeleteBehavior
const (
DeleteBehaviorLog DeleteBehavior = "LOG"
DeleteBehaviorDeleteFromDatabase DeleteBehavior = "DELETE_FROM_DATABASE"
DeleteBehaviorDeprecateInDatabase DeleteBehavior = "DEPRECATE_IN_DATABASE"
)
// Values returns all known values for DeleteBehavior. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (DeleteBehavior) Values() []DeleteBehavior {
return []DeleteBehavior{
"LOG",
"DELETE_FROM_DATABASE",
"DEPRECATE_IN_DATABASE",
}
}
type DeltaTargetCompressionType string
// Enum values for DeltaTargetCompressionType
const (
DeltaTargetCompressionTypeUncompressed DeltaTargetCompressionType = "uncompressed"
DeltaTargetCompressionTypeSnappy DeltaTargetCompressionType = "snappy"
)
// Values returns all known values for DeltaTargetCompressionType. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (DeltaTargetCompressionType) Values() []DeltaTargetCompressionType {
return []DeltaTargetCompressionType{
"uncompressed",
"snappy",
}
}
type DQStopJobOnFailureTiming string
// Enum values for DQStopJobOnFailureTiming
const (
DQStopJobOnFailureTimingImmediate DQStopJobOnFailureTiming = "Immediate"
DQStopJobOnFailureTimingAfterDataLoad DQStopJobOnFailureTiming = "AfterDataLoad"
)
// Values returns all known values for DQStopJobOnFailureTiming. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (DQStopJobOnFailureTiming) Values() []DQStopJobOnFailureTiming {
return []DQStopJobOnFailureTiming{
"Immediate",
"AfterDataLoad",
}
}
type DQTransformOutput string
// Enum values for DQTransformOutput
const (
DQTransformOutputPrimaryInput DQTransformOutput = "PrimaryInput"
DQTransformOutputEvaluationResults DQTransformOutput = "EvaluationResults"
)
// Values returns all known values for DQTransformOutput. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (DQTransformOutput) Values() []DQTransformOutput {
return []DQTransformOutput{
"PrimaryInput",
"EvaluationResults",
}
}
type EnableHybridValues string
// Enum values for EnableHybridValues
const (
EnableHybridValuesTrue EnableHybridValues = "TRUE"
EnableHybridValuesFalse EnableHybridValues = "FALSE"
)
// Values returns all known values for EnableHybridValues. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (EnableHybridValues) Values() []EnableHybridValues {
return []EnableHybridValues{
"TRUE",
"FALSE",
}
}
type ExecutionClass string
// Enum values for ExecutionClass
const (
ExecutionClassFlex ExecutionClass = "FLEX"
ExecutionClassStandard ExecutionClass = "STANDARD"
)
// Values returns all known values for ExecutionClass. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ExecutionClass) Values() []ExecutionClass {
return []ExecutionClass{
"FLEX",
"STANDARD",
}
}
type ExistCondition string
// Enum values for ExistCondition
const (
ExistConditionMustExist ExistCondition = "MUST_EXIST"
ExistConditionNotExist ExistCondition = "NOT_EXIST"
ExistConditionNone ExistCondition = "NONE"
)
// Values returns all known values for ExistCondition. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ExistCondition) Values() []ExistCondition {
return []ExistCondition{
"MUST_EXIST",
"NOT_EXIST",
"NONE",
}
}
type FederationSourceErrorCode string
// Enum values for FederationSourceErrorCode
const (
FederationSourceErrorCodeInvalidResponseException FederationSourceErrorCode = "InvalidResponseException"
FederationSourceErrorCodeOperationTimeoutException FederationSourceErrorCode = "OperationTimeoutException"
FederationSourceErrorCodeOperationNotSupportedException FederationSourceErrorCode = "OperationNotSupportedException"
FederationSourceErrorCodeInternalServiceException FederationSourceErrorCode = "InternalServiceException"
FederationSourceErrorCodeThrottlingException FederationSourceErrorCode = "ThrottlingException"
)
// Values returns all known values for FederationSourceErrorCode. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (FederationSourceErrorCode) Values() []FederationSourceErrorCode {
return []FederationSourceErrorCode{
"InvalidResponseException",
"OperationTimeoutException",
"OperationNotSupportedException",
"InternalServiceException",
"ThrottlingException",
}
}
type FieldName string
// Enum values for FieldName
const (
FieldNameCrawlId FieldName = "CRAWL_ID"
FieldNameState FieldName = "STATE"
FieldNameStartTime FieldName = "START_TIME"
FieldNameEndTime FieldName = "END_TIME"
FieldNameDpuHour FieldName = "DPU_HOUR"
)
// Values returns all known values for FieldName. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (FieldName) Values() []FieldName {
return []FieldName{
"CRAWL_ID",
"STATE",
"START_TIME",
"END_TIME",
"DPU_HOUR",
}
}
type FilterLogicalOperator string
// Enum values for FilterLogicalOperator
const (
FilterLogicalOperatorAnd FilterLogicalOperator = "AND"
FilterLogicalOperatorOr FilterLogicalOperator = "OR"
)
// Values returns all known values for FilterLogicalOperator. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FilterLogicalOperator) Values() []FilterLogicalOperator {
return []FilterLogicalOperator{
"AND",
"OR",
}
}
type FilterOperation string
// Enum values for FilterOperation
const (
FilterOperationEq FilterOperation = "EQ"
FilterOperationLt FilterOperation = "LT"
FilterOperationGt FilterOperation = "GT"
FilterOperationLte FilterOperation = "LTE"
FilterOperationGte FilterOperation = "GTE"
FilterOperationRegex FilterOperation = "REGEX"
FilterOperationIsnull FilterOperation = "ISNULL"
)
// Values returns all known values for FilterOperation. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FilterOperation) Values() []FilterOperation {
return []FilterOperation{
"EQ",
"LT",
"GT",
"LTE",
"GTE",
"REGEX",
"ISNULL",
}
}
type FilterOperator string
// Enum values for FilterOperator
const (
FilterOperatorGt FilterOperator = "GT"
FilterOperatorGe FilterOperator = "GE"
FilterOperatorLt FilterOperator = "LT"
FilterOperatorLe FilterOperator = "LE"
FilterOperatorEq FilterOperator = "EQ"
FilterOperatorNe FilterOperator = "NE"
)
// Values returns all known values for FilterOperator. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FilterOperator) Values() []FilterOperator {
return []FilterOperator{
"GT",
"GE",
"LT",
"LE",
"EQ",
"NE",
}
}
type FilterValueType string
// Enum values for FilterValueType
const (
FilterValueTypeColumnextracted FilterValueType = "COLUMNEXTRACTED"
FilterValueTypeConstant FilterValueType = "CONSTANT"
)
// Values returns all known values for FilterValueType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FilterValueType) Values() []FilterValueType {
return []FilterValueType{
"COLUMNEXTRACTED",
"CONSTANT",
}
}
type GlueRecordType string
// Enum values for GlueRecordType
const (
GlueRecordTypeDate GlueRecordType = "DATE"
GlueRecordTypeString GlueRecordType = "STRING"
GlueRecordTypeTimestamp GlueRecordType = "TIMESTAMP"
GlueRecordTypeInt GlueRecordType = "INT"
GlueRecordTypeFloat GlueRecordType = "FLOAT"
GlueRecordTypeLong GlueRecordType = "LONG"
GlueRecordTypeBigdecimal GlueRecordType = "BIGDECIMAL"
GlueRecordTypeByte GlueRecordType = "BYTE"
GlueRecordTypeShort GlueRecordType = "SHORT"
GlueRecordTypeDouble GlueRecordType = "DOUBLE"
)
// Values returns all known values for GlueRecordType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (GlueRecordType) Values() []GlueRecordType {
return []GlueRecordType{
"DATE",
"STRING",
"TIMESTAMP",
"INT",
"FLOAT",
"LONG",
"BIGDECIMAL",
"BYTE",
"SHORT",
"DOUBLE",
}
}
type HudiTargetCompressionType string
// Enum values for HudiTargetCompressionType
const (
HudiTargetCompressionTypeGzip HudiTargetCompressionType = "gzip"
HudiTargetCompressionTypeLzo HudiTargetCompressionType = "lzo"
HudiTargetCompressionTypeUncompressed HudiTargetCompressionType = "uncompressed"
HudiTargetCompressionTypeSnappy HudiTargetCompressionType = "snappy"
)
// Values returns all known values for HudiTargetCompressionType. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (HudiTargetCompressionType) Values() []HudiTargetCompressionType {
return []HudiTargetCompressionType{
"gzip",
"lzo",
"uncompressed",
"snappy",
}
}
type JDBCConnectionType string
// Enum values for JDBCConnectionType
const (
JDBCConnectionTypeSqlserver JDBCConnectionType = "sqlserver"
JDBCConnectionTypeMysql JDBCConnectionType = "mysql"
JDBCConnectionTypeOracle JDBCConnectionType = "oracle"
JDBCConnectionTypePostgresql JDBCConnectionType = "postgresql"
JDBCConnectionTypeRedshift JDBCConnectionType = "redshift"
)
// Values returns all known values for JDBCConnectionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (JDBCConnectionType) Values() []JDBCConnectionType {
return []JDBCConnectionType{
"sqlserver",
"mysql",
"oracle",
"postgresql",
"redshift",
}
}
type JDBCDataType string
// Enum values for JDBCDataType
const (
JDBCDataTypeArray JDBCDataType = "ARRAY"
JDBCDataTypeBigint JDBCDataType = "BIGINT"
JDBCDataTypeBinary JDBCDataType = "BINARY"
JDBCDataTypeBit JDBCDataType = "BIT"
JDBCDataTypeBlob JDBCDataType = "BLOB"
JDBCDataTypeBoolean JDBCDataType = "BOOLEAN"
JDBCDataTypeChar JDBCDataType = "CHAR"
JDBCDataTypeClob JDBCDataType = "CLOB"
JDBCDataTypeDatalink JDBCDataType = "DATALINK"
JDBCDataTypeDate JDBCDataType = "DATE"
JDBCDataTypeDecimal JDBCDataType = "DECIMAL"
JDBCDataTypeDistinct JDBCDataType = "DISTINCT"
JDBCDataTypeDouble JDBCDataType = "DOUBLE"
JDBCDataTypeFloat JDBCDataType = "FLOAT"
JDBCDataTypeInteger JDBCDataType = "INTEGER"
JDBCDataTypeJavaObject JDBCDataType = "JAVA_OBJECT"
JDBCDataTypeLongnvarchar JDBCDataType = "LONGNVARCHAR"
JDBCDataTypeLongvarbinary JDBCDataType = "LONGVARBINARY"
JDBCDataTypeLongvarchar JDBCDataType = "LONGVARCHAR"
JDBCDataTypeNchar JDBCDataType = "NCHAR"
JDBCDataTypeNclob JDBCDataType = "NCLOB"
JDBCDataTypeNull JDBCDataType = "NULL"
JDBCDataTypeNumeric JDBCDataType = "NUMERIC"
JDBCDataTypeNvarchar JDBCDataType = "NVARCHAR"
JDBCDataTypeOther JDBCDataType = "OTHER"
JDBCDataTypeReal JDBCDataType = "REAL"
JDBCDataTypeRef JDBCDataType = "REF"
JDBCDataTypeRefCursor JDBCDataType = "REF_CURSOR"
JDBCDataTypeRowid JDBCDataType = "ROWID"
JDBCDataTypeSmallint JDBCDataType = "SMALLINT"
JDBCDataTypeSqlxml JDBCDataType = "SQLXML"
JDBCDataTypeStruct JDBCDataType = "STRUCT"
JDBCDataTypeTime JDBCDataType = "TIME"
JDBCDataTypeTimeWithTimezone JDBCDataType = "TIME_WITH_TIMEZONE"
JDBCDataTypeTimestamp JDBCDataType = "TIMESTAMP"
JDBCDataTypeTimestampWithTimezone JDBCDataType = "TIMESTAMP_WITH_TIMEZONE"
JDBCDataTypeTinyint JDBCDataType = "TINYINT"
JDBCDataTypeVarbinary JDBCDataType = "VARBINARY"
JDBCDataTypeVarchar JDBCDataType = "VARCHAR"
)
// Values returns all known values for JDBCDataType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (JDBCDataType) Values() []JDBCDataType {
return []JDBCDataType{
"ARRAY",
"BIGINT",
"BINARY",
"BIT",
"BLOB",
"BOOLEAN",
"CHAR",
"CLOB",
"DATALINK",
"DATE",
"DECIMAL",
"DISTINCT",
"DOUBLE",
"FLOAT",
"INTEGER",
"JAVA_OBJECT",
"LONGNVARCHAR",
"LONGVARBINARY",
"LONGVARCHAR",
"NCHAR",
"NCLOB",
"NULL",
"NUMERIC",
"NVARCHAR",
"OTHER",
"REAL",
"REF",
"REF_CURSOR",
"ROWID",
"SMALLINT",
"SQLXML",
"STRUCT",
"TIME",
"TIME_WITH_TIMEZONE",
"TIMESTAMP",
"TIMESTAMP_WITH_TIMEZONE",
"TINYINT",
"VARBINARY",
"VARCHAR",
}
}
type JdbcMetadataEntry string
// Enum values for JdbcMetadataEntry
const (
JdbcMetadataEntryComments JdbcMetadataEntry = "COMMENTS"
JdbcMetadataEntryRawtypes JdbcMetadataEntry = "RAWTYPES"
)
// Values returns all known values for JdbcMetadataEntry. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (JdbcMetadataEntry) Values() []JdbcMetadataEntry {
return []JdbcMetadataEntry{
"COMMENTS",
"RAWTYPES",
}
}
type JobBookmarksEncryptionMode string
// Enum values for JobBookmarksEncryptionMode
const (
JobBookmarksEncryptionModeDisabled JobBookmarksEncryptionMode = "DISABLED"
JobBookmarksEncryptionModeCsekms JobBookmarksEncryptionMode = "CSE-KMS"
)
// Values returns all known values for JobBookmarksEncryptionMode. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (JobBookmarksEncryptionMode) Values() []JobBookmarksEncryptionMode {
return []JobBookmarksEncryptionMode{
"DISABLED",
"CSE-KMS",
}
}
type JobRunState string
// Enum values for JobRunState
const (
JobRunStateStarting JobRunState = "STARTING"
JobRunStateRunning JobRunState = "RUNNING"
JobRunStateStopping JobRunState = "STOPPING"
JobRunStateStopped JobRunState = "STOPPED"
JobRunStateSucceeded JobRunState = "SUCCEEDED"
JobRunStateFailed JobRunState = "FAILED"
JobRunStateTimeout JobRunState = "TIMEOUT"
JobRunStateError JobRunState = "ERROR"
JobRunStateWaiting JobRunState = "WAITING"
)
// Values returns all known values for JobRunState. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (JobRunState) Values() []JobRunState {
return []JobRunState{
"STARTING",
"RUNNING",
"STOPPING",
"STOPPED",
"SUCCEEDED",
"FAILED",
"TIMEOUT",
"ERROR",
"WAITING",
}
}
type JoinType string
// Enum values for JoinType
const (
JoinTypeEquijoin JoinType = "equijoin"
JoinTypeLeft JoinType = "left"
JoinTypeRight JoinType = "right"
JoinTypeOuter JoinType = "outer"
JoinTypeLeftSemi JoinType = "leftsemi"
JoinTypeLeftAnti JoinType = "leftanti"
)
// Values returns all known values for JoinType. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (JoinType) Values() []JoinType {
return []JoinType{
"equijoin",
"left",
"right",
"outer",
"leftsemi",
"leftanti",
}
}
type Language string
// Enum values for Language
const (
LanguagePython Language = "PYTHON"
LanguageScala Language = "SCALA"
)
// Values returns all known values for Language. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Language) Values() []Language {
return []Language{
"PYTHON",
"SCALA",
}
}
type LastCrawlStatus string
// Enum values for LastCrawlStatus
const (
LastCrawlStatusSucceeded LastCrawlStatus = "SUCCEEDED"
LastCrawlStatusCancelled LastCrawlStatus = "CANCELLED"
LastCrawlStatusFailed LastCrawlStatus = "FAILED"
)
// Values returns all known values for LastCrawlStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (LastCrawlStatus) Values() []LastCrawlStatus {
return []LastCrawlStatus{
"SUCCEEDED",
"CANCELLED",
"FAILED",
}
}
type Logical string
// Enum values for Logical
const (
LogicalAnd Logical = "AND"
LogicalAny Logical = "ANY"
)
// Values returns all known values for Logical. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Logical) Values() []Logical {
return []Logical{
"AND",
"ANY",
}
}
type LogicalOperator string
// Enum values for LogicalOperator
const (
LogicalOperatorEquals LogicalOperator = "EQUALS"
)
// Values returns all known values for LogicalOperator. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (LogicalOperator) Values() []LogicalOperator {
return []LogicalOperator{
"EQUALS",
}
}
type MetadataOperation string
// Enum values for MetadataOperation
const (
MetadataOperationCreate MetadataOperation = "CREATE"
)
// Values returns all known values for MetadataOperation. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (MetadataOperation) Values() []MetadataOperation {
return []MetadataOperation{
"CREATE",
}
}
type MLUserDataEncryptionModeString string
// Enum values for MLUserDataEncryptionModeString
const (
MLUserDataEncryptionModeStringDisabled MLUserDataEncryptionModeString = "DISABLED"
MLUserDataEncryptionModeStringSsekms MLUserDataEncryptionModeString = "SSE-KMS"
)
// Values returns all known values for MLUserDataEncryptionModeString. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client. The ordering of this slice is not guaranteed to be stable across
// updates.
func (MLUserDataEncryptionModeString) Values() []MLUserDataEncryptionModeString {
return []MLUserDataEncryptionModeString{
"DISABLED",
"SSE-KMS",
}
}
type NodeType string
// Enum values for NodeType
const (
NodeTypeCrawler NodeType = "CRAWLER"
NodeTypeJob NodeType = "JOB"
NodeTypeTrigger NodeType = "TRIGGER"
)
// Values returns all known values for NodeType. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (NodeType) Values() []NodeType {
return []NodeType{
"CRAWLER",
"JOB",
"TRIGGER",
}
}
type ParamType string
// Enum values for ParamType
const (
ParamTypeStr ParamType = "str"
ParamTypeInt ParamType = "int"
ParamTypeFloat ParamType = "float"
ParamTypeComplex ParamType = "complex"
ParamTypeBool ParamType = "bool"
ParamTypeList ParamType = "list"
ParamTypeNull ParamType = "null"
)
// Values returns all known values for ParamType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (ParamType) Values() []ParamType {
return []ParamType{
"str",
"int",
"float",
"complex",
"bool",
"list",
"null",
}
}
type ParquetCompressionType string
// Enum values for ParquetCompressionType
const (
ParquetCompressionTypeSnappy ParquetCompressionType = "snappy"
ParquetCompressionTypeLzo ParquetCompressionType = "lzo"
ParquetCompressionTypeGzip ParquetCompressionType = "gzip"
ParquetCompressionTypeUncompressed ParquetCompressionType = "uncompressed"
ParquetCompressionTypeNone ParquetCompressionType = "none"
)
// Values returns all known values for ParquetCompressionType. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ParquetCompressionType) Values() []ParquetCompressionType {
return []ParquetCompressionType{
"snappy",
"lzo",
"gzip",
"uncompressed",
"none",
}
}
type PartitionIndexStatus string
// Enum values for PartitionIndexStatus
const (
PartitionIndexStatusCreating PartitionIndexStatus = "CREATING"
PartitionIndexStatusActive PartitionIndexStatus = "ACTIVE"
PartitionIndexStatusDeleting PartitionIndexStatus = "DELETING"
PartitionIndexStatusFailed PartitionIndexStatus = "FAILED"
)
// Values returns all known values for PartitionIndexStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (PartitionIndexStatus) Values() []PartitionIndexStatus {
return []PartitionIndexStatus{
"CREATING",
"ACTIVE",
"DELETING",
"FAILED",
}
}
type Permission string
// Enum values for Permission
const (
PermissionAll Permission = "ALL"
PermissionSelect Permission = "SELECT"
PermissionAlter Permission = "ALTER"
PermissionDrop Permission = "DROP"
PermissionDelete Permission = "DELETE"
PermissionInsert Permission = "INSERT"
PermissionCreateDatabase Permission = "CREATE_DATABASE"
PermissionCreateTable Permission = "CREATE_TABLE"
PermissionDataLocationAccess Permission = "DATA_LOCATION_ACCESS"
)
// Values returns all known values for Permission. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (Permission) Values() []Permission {
return []Permission{
"ALL",
"SELECT",
"ALTER",
"DROP",
"DELETE",
"INSERT",
"CREATE_DATABASE",
"CREATE_TABLE",
"DATA_LOCATION_ACCESS",
}
}
type PermissionType string
// Enum values for PermissionType
const (
PermissionTypeColumnPermission PermissionType = "COLUMN_PERMISSION"
PermissionTypeCellFilterPermission PermissionType = "CELL_FILTER_PERMISSION"
PermissionTypeNestedPermission PermissionType = "NESTED_PERMISSION"
PermissionTypeNestedCellPermission PermissionType = "NESTED_CELL_PERMISSION"
)
// Values returns all known values for PermissionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (PermissionType) Values() []PermissionType {
return []PermissionType{
"COLUMN_PERMISSION",
"CELL_FILTER_PERMISSION",
"NESTED_PERMISSION",
"NESTED_CELL_PERMISSION",
}
}
type PiiType string
// Enum values for PiiType
const (
PiiTypeRowAudit PiiType = "RowAudit"
PiiTypeRowMasking PiiType = "RowMasking"
PiiTypeColumnAudit PiiType = "ColumnAudit"
PiiTypeColumnMasking PiiType = "ColumnMasking"
)
// Values returns all known values for PiiType. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (PiiType) Values() []PiiType {
return []PiiType{
"RowAudit",
"RowMasking",
"ColumnAudit",
"ColumnMasking",
}
}
type PrincipalType string
// Enum values for PrincipalType
const (
PrincipalTypeUser PrincipalType = "USER"
PrincipalTypeRole PrincipalType = "ROLE"
PrincipalTypeGroup PrincipalType = "GROUP"
)
// Values returns all known values for PrincipalType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (PrincipalType) Values() []PrincipalType {
return []PrincipalType{
"USER",
"ROLE",
"GROUP",
}
}
type QuoteChar string
// Enum values for QuoteChar
const (
QuoteCharQuote QuoteChar = "quote"
QuoteCharQuillemet QuoteChar = "quillemet"
QuoteCharSingleQuote QuoteChar = "single_quote"
QuoteCharDisabled QuoteChar = "disabled"
)
// Values returns all known values for QuoteChar. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (QuoteChar) Values() []QuoteChar {
return []QuoteChar{
"quote",
"quillemet",
"single_quote",
"disabled",
}
}
type RecrawlBehavior string
// Enum values for RecrawlBehavior
const (
RecrawlBehaviorCrawlEverything RecrawlBehavior = "CRAWL_EVERYTHING"
RecrawlBehaviorCrawlNewFoldersOnly RecrawlBehavior = "CRAWL_NEW_FOLDERS_ONLY"
RecrawlBehaviorCrawlEventMode RecrawlBehavior = "CRAWL_EVENT_MODE"
)
// Values returns all known values for RecrawlBehavior. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (RecrawlBehavior) Values() []RecrawlBehavior {
return []RecrawlBehavior{
"CRAWL_EVERYTHING",
"CRAWL_NEW_FOLDERS_ONLY",
"CRAWL_EVENT_MODE",
}
}
type RegistryStatus string
// Enum values for RegistryStatus
const (
RegistryStatusAvailable RegistryStatus = "AVAILABLE"
RegistryStatusDeleting RegistryStatus = "DELETING"
)
// Values returns all known values for RegistryStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (RegistryStatus) Values() []RegistryStatus {
return []RegistryStatus{
"AVAILABLE",
"DELETING",
}
}
type ResourceShareType string
// Enum values for ResourceShareType
const (
ResourceShareTypeForeign ResourceShareType = "FOREIGN"
ResourceShareTypeAll ResourceShareType = "ALL"
ResourceShareTypeFederated ResourceShareType = "FEDERATED"
)
// Values returns all known values for ResourceShareType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ResourceShareType) Values() []ResourceShareType {
return []ResourceShareType{
"FOREIGN",
"ALL",
"FEDERATED",
}
}
type ResourceType string
// Enum values for ResourceType
const (
ResourceTypeJar ResourceType = "JAR"
ResourceTypeFile ResourceType = "FILE"
ResourceTypeArchive ResourceType = "ARCHIVE"
)
// Values returns all known values for ResourceType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ResourceType) Values() []ResourceType {
return []ResourceType{
"JAR",
"FILE",
"ARCHIVE",
}
}
type S3EncryptionMode string
// Enum values for S3EncryptionMode
const (
S3EncryptionModeDisabled S3EncryptionMode = "DISABLED"
S3EncryptionModeSsekms S3EncryptionMode = "SSE-KMS"
S3EncryptionModeSses3 S3EncryptionMode = "SSE-S3"
)
// Values returns all known values for S3EncryptionMode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (S3EncryptionMode) Values() []S3EncryptionMode {
return []S3EncryptionMode{
"DISABLED",
"SSE-KMS",
"SSE-S3",
}
}
type ScheduleState string
// Enum values for ScheduleState
const (
ScheduleStateScheduled ScheduleState = "SCHEDULED"
ScheduleStateNotScheduled ScheduleState = "NOT_SCHEDULED"
ScheduleStateTransitioning ScheduleState = "TRANSITIONING"
)
// Values returns all known values for ScheduleState. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ScheduleState) Values() []ScheduleState {
return []ScheduleState{
"SCHEDULED",
"NOT_SCHEDULED",
"TRANSITIONING",
}
}
type SchemaDiffType string
// Enum values for SchemaDiffType
const (
SchemaDiffTypeSyntaxDiff SchemaDiffType = "SYNTAX_DIFF"
)
// Values returns all known values for SchemaDiffType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SchemaDiffType) Values() []SchemaDiffType {
return []SchemaDiffType{
"SYNTAX_DIFF",
}
}
type SchemaStatus string
// Enum values for SchemaStatus
const (
SchemaStatusAvailable SchemaStatus = "AVAILABLE"
SchemaStatusPending SchemaStatus = "PENDING"
SchemaStatusDeleting SchemaStatus = "DELETING"
)
// Values returns all known values for SchemaStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SchemaStatus) Values() []SchemaStatus {
return []SchemaStatus{
"AVAILABLE",
"PENDING",
"DELETING",
}
}
type SchemaVersionStatus string
// Enum values for SchemaVersionStatus
const (
SchemaVersionStatusAvailable SchemaVersionStatus = "AVAILABLE"
SchemaVersionStatusPending SchemaVersionStatus = "PENDING"
SchemaVersionStatusFailure SchemaVersionStatus = "FAILURE"
SchemaVersionStatusDeleting SchemaVersionStatus = "DELETING"
)
// Values returns all known values for SchemaVersionStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SchemaVersionStatus) Values() []SchemaVersionStatus {
return []SchemaVersionStatus{
"AVAILABLE",
"PENDING",
"FAILURE",
"DELETING",
}
}
type Separator string
// Enum values for Separator
const (
SeparatorComma Separator = "comma"
SeparatorCtrla Separator = "ctrla"
SeparatorPipe Separator = "pipe"
SeparatorSemicolon Separator = "semicolon"
SeparatorTab Separator = "tab"
)
// Values returns all known values for Separator. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (Separator) Values() []Separator {
return []Separator{
"comma",
"ctrla",
"pipe",
"semicolon",
"tab",
}
}
type SessionStatus string
// Enum values for SessionStatus
const (
SessionStatusProvisioning SessionStatus = "PROVISIONING"
SessionStatusReady SessionStatus = "READY"
SessionStatusFailed SessionStatus = "FAILED"
SessionStatusTimeout SessionStatus = "TIMEOUT"
SessionStatusStopping SessionStatus = "STOPPING"
SessionStatusStopped SessionStatus = "STOPPED"
)
// Values returns all known values for SessionStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SessionStatus) Values() []SessionStatus {
return []SessionStatus{
"PROVISIONING",
"READY",
"FAILED",
"TIMEOUT",
"STOPPING",
"STOPPED",
}
}
type Sort string
// Enum values for Sort
const (
SortAscending Sort = "ASC"
SortDescending Sort = "DESC"
)
// Values returns all known values for Sort. Note that this can be expanded in the
// future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Sort) Values() []Sort {
return []Sort{
"ASC",
"DESC",
}
}
type SortDirectionType string
// Enum values for SortDirectionType
const (
SortDirectionTypeDescending SortDirectionType = "DESCENDING"
SortDirectionTypeAscending SortDirectionType = "ASCENDING"
)
// Values returns all known values for SortDirectionType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SortDirectionType) Values() []SortDirectionType {
return []SortDirectionType{
"DESCENDING",
"ASCENDING",
}
}
type SourceControlAuthStrategy string
// Enum values for SourceControlAuthStrategy
const (
SourceControlAuthStrategyPersonalAccessToken SourceControlAuthStrategy = "PERSONAL_ACCESS_TOKEN"
SourceControlAuthStrategyAwsSecretsManager SourceControlAuthStrategy = "AWS_SECRETS_MANAGER"
)
// Values returns all known values for SourceControlAuthStrategy. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (SourceControlAuthStrategy) Values() []SourceControlAuthStrategy {
return []SourceControlAuthStrategy{
"PERSONAL_ACCESS_TOKEN",
"AWS_SECRETS_MANAGER",
}
}
type SourceControlProvider string
// Enum values for SourceControlProvider
const (
SourceControlProviderGithub SourceControlProvider = "GITHUB"
SourceControlProviderGitlab SourceControlProvider = "GITLAB"
SourceControlProviderBitbucket SourceControlProvider = "BITBUCKET"
SourceControlProviderAwsCodeCommit SourceControlProvider = "AWS_CODE_COMMIT"
)
// Values returns all known values for SourceControlProvider. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SourceControlProvider) Values() []SourceControlProvider {
return []SourceControlProvider{
"GITHUB",
"GITLAB",
"BITBUCKET",
"AWS_CODE_COMMIT",
}
}
type StartingPosition string
// Enum values for StartingPosition
const (
StartingPositionLatest StartingPosition = "latest"
StartingPositionTrimHorizon StartingPosition = "trim_horizon"
StartingPositionEarliest StartingPosition = "earliest"
StartingPositionTimestamp StartingPosition = "timestamp"
)
// Values returns all known values for StartingPosition. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (StartingPosition) Values() []StartingPosition {
return []StartingPosition{
"latest",
"trim_horizon",
"earliest",
"timestamp",
}
}
type StatementState string
// Enum values for StatementState
const (
StatementStateWaiting StatementState = "WAITING"
StatementStateRunning StatementState = "RUNNING"
StatementStateAvailable StatementState = "AVAILABLE"
StatementStateCancelling StatementState = "CANCELLING"
StatementStateCancelled StatementState = "CANCELLED"
StatementStateError StatementState = "ERROR"
)
// Values returns all known values for StatementState. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (StatementState) Values() []StatementState {
return []StatementState{
"WAITING",
"RUNNING",
"AVAILABLE",
"CANCELLING",
"CANCELLED",
"ERROR",
}
}
type TableOptimizerEventType string
// Enum values for TableOptimizerEventType
const (
TableOptimizerEventTypeStarting TableOptimizerEventType = "starting"
TableOptimizerEventTypeCompleted TableOptimizerEventType = "completed"
TableOptimizerEventTypeFailed TableOptimizerEventType = "failed"
TableOptimizerEventTypeInProgress TableOptimizerEventType = "in_progress"
)
// Values returns all known values for TableOptimizerEventType. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TableOptimizerEventType) Values() []TableOptimizerEventType {
return []TableOptimizerEventType{
"starting",
"completed",
"failed",
"in_progress",
}
}
type TableOptimizerType string
// Enum values for TableOptimizerType
const (
TableOptimizerTypeCompaction TableOptimizerType = "compaction"
)
// Values returns all known values for TableOptimizerType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TableOptimizerType) Values() []TableOptimizerType {
return []TableOptimizerType{
"compaction",
}
}
type TargetFormat string
// Enum values for TargetFormat
const (
TargetFormatJson TargetFormat = "json"
TargetFormatCsv TargetFormat = "csv"
TargetFormatAvro TargetFormat = "avro"
TargetFormatOrc TargetFormat = "orc"
TargetFormatParquet TargetFormat = "parquet"
TargetFormatHudi TargetFormat = "hudi"
TargetFormatDelta TargetFormat = "delta"
)
// Values returns all known values for TargetFormat. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TargetFormat) Values() []TargetFormat {
return []TargetFormat{
"json",
"csv",
"avro",
"orc",
"parquet",
"hudi",
"delta",
}
}
type TaskRunSortColumnType string
// Enum values for TaskRunSortColumnType
const (
TaskRunSortColumnTypeTaskRunType TaskRunSortColumnType = "TASK_RUN_TYPE"
TaskRunSortColumnTypeStatus TaskRunSortColumnType = "STATUS"
TaskRunSortColumnTypeStarted TaskRunSortColumnType = "STARTED"
)
// Values returns all known values for TaskRunSortColumnType. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TaskRunSortColumnType) Values() []TaskRunSortColumnType {
return []TaskRunSortColumnType{
"TASK_RUN_TYPE",
"STATUS",
"STARTED",
}
}
type TaskStatusType string
// Enum values for TaskStatusType
const (
TaskStatusTypeStarting TaskStatusType = "STARTING"
TaskStatusTypeRunning TaskStatusType = "RUNNING"
TaskStatusTypeStopping TaskStatusType = "STOPPING"
TaskStatusTypeStopped TaskStatusType = "STOPPED"
TaskStatusTypeSucceeded TaskStatusType = "SUCCEEDED"
TaskStatusTypeFailed TaskStatusType = "FAILED"
TaskStatusTypeTimeout TaskStatusType = "TIMEOUT"
)
// Values returns all known values for TaskStatusType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TaskStatusType) Values() []TaskStatusType {
return []TaskStatusType{
"STARTING",
"RUNNING",
"STOPPING",
"STOPPED",
"SUCCEEDED",
"FAILED",
"TIMEOUT",
}
}
type TaskType string
// Enum values for TaskType
const (
TaskTypeEvaluation TaskType = "EVALUATION"
TaskTypeLabelingSetGeneration TaskType = "LABELING_SET_GENERATION"
TaskTypeImportLabels TaskType = "IMPORT_LABELS"
TaskTypeExportLabels TaskType = "EXPORT_LABELS"
TaskTypeFindMatches TaskType = "FIND_MATCHES"
)
// Values returns all known values for TaskType. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (TaskType) Values() []TaskType {
return []TaskType{
"EVALUATION",
"LABELING_SET_GENERATION",
"IMPORT_LABELS",
"EXPORT_LABELS",
"FIND_MATCHES",
}
}
type TransformSortColumnType string
// Enum values for TransformSortColumnType
const (
TransformSortColumnTypeName TransformSortColumnType = "NAME"
TransformSortColumnTypeTransformType TransformSortColumnType = "TRANSFORM_TYPE"
TransformSortColumnTypeStatus TransformSortColumnType = "STATUS"
TransformSortColumnTypeCreated TransformSortColumnType = "CREATED"
TransformSortColumnTypeLastModified TransformSortColumnType = "LAST_MODIFIED"
)
// Values returns all known values for TransformSortColumnType. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TransformSortColumnType) Values() []TransformSortColumnType {
return []TransformSortColumnType{
"NAME",
"TRANSFORM_TYPE",
"STATUS",
"CREATED",
"LAST_MODIFIED",
}
}
type TransformStatusType string
// Enum values for TransformStatusType
const (
TransformStatusTypeNotReady TransformStatusType = "NOT_READY"
TransformStatusTypeReady TransformStatusType = "READY"
TransformStatusTypeDeleting TransformStatusType = "DELETING"
)
// Values returns all known values for TransformStatusType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TransformStatusType) Values() []TransformStatusType {
return []TransformStatusType{
"NOT_READY",
"READY",
"DELETING",
}
}
type TransformType string
// Enum values for TransformType
const (
TransformTypeFindMatches TransformType = "FIND_MATCHES"
)
// Values returns all known values for TransformType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TransformType) Values() []TransformType {
return []TransformType{
"FIND_MATCHES",
}
}
type TriggerState string
// Enum values for TriggerState
const (
TriggerStateCreating TriggerState = "CREATING"
TriggerStateCreated TriggerState = "CREATED"
TriggerStateActivating TriggerState = "ACTIVATING"
TriggerStateActivated TriggerState = "ACTIVATED"
TriggerStateDeactivating TriggerState = "DEACTIVATING"
TriggerStateDeactivated TriggerState = "DEACTIVATED"
TriggerStateDeleting TriggerState = "DELETING"
TriggerStateUpdating TriggerState = "UPDATING"
)
// Values returns all known values for TriggerState. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (TriggerState) Values() []TriggerState {
return []TriggerState{
"CREATING",
"CREATED",
"ACTIVATING",
"ACTIVATED",
"DEACTIVATING",
"DEACTIVATED",
"DELETING",
"UPDATING",
}
}
type TriggerType string
// Enum values for TriggerType
const (
TriggerTypeScheduled TriggerType = "SCHEDULED"
TriggerTypeConditional TriggerType = "CONDITIONAL"
TriggerTypeOnDemand TriggerType = "ON_DEMAND"
TriggerTypeEvent TriggerType = "EVENT"
)
// Values returns all known values for TriggerType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (TriggerType) Values() []TriggerType {
return []TriggerType{
"SCHEDULED",
"CONDITIONAL",
"ON_DEMAND",
"EVENT",
}
}
type UnionType string
// Enum values for UnionType
const (
UnionTypeAll UnionType = "ALL"
UnionTypeDistinct UnionType = "DISTINCT"
)
// Values returns all known values for UnionType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (UnionType) Values() []UnionType {
return []UnionType{
"ALL",
"DISTINCT",
}
}
type UpdateBehavior string
// Enum values for UpdateBehavior
const (
UpdateBehaviorLog UpdateBehavior = "LOG"
UpdateBehaviorUpdateInDatabase UpdateBehavior = "UPDATE_IN_DATABASE"
)
// Values returns all known values for UpdateBehavior. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (UpdateBehavior) Values() []UpdateBehavior {
return []UpdateBehavior{
"LOG",
"UPDATE_IN_DATABASE",
}
}
type UpdateCatalogBehavior string
// Enum values for UpdateCatalogBehavior
const (
UpdateCatalogBehaviorUpdateInDatabase UpdateCatalogBehavior = "UPDATE_IN_DATABASE"
UpdateCatalogBehaviorLog UpdateCatalogBehavior = "LOG"
)
// Values returns all known values for UpdateCatalogBehavior. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (UpdateCatalogBehavior) Values() []UpdateCatalogBehavior {
return []UpdateCatalogBehavior{
"UPDATE_IN_DATABASE",
"LOG",
}
}
type ViewDialect string
// Enum values for ViewDialect
const (
ViewDialectRedshift ViewDialect = "REDSHIFT"
ViewDialectAthena ViewDialect = "ATHENA"
ViewDialectSpark ViewDialect = "SPARK"
)
// Values returns all known values for ViewDialect. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (ViewDialect) Values() []ViewDialect {
return []ViewDialect{
"REDSHIFT",
"ATHENA",
"SPARK",
}
}
type WorkerType string
// Enum values for WorkerType
const (
WorkerTypeStandard WorkerType = "Standard"
WorkerTypeG1x WorkerType = "G.1X"
WorkerTypeG2x WorkerType = "G.2X"
WorkerTypeG025x WorkerType = "G.025X"
WorkerTypeG4x WorkerType = "G.4X"
WorkerTypeG8x WorkerType = "G.8X"
WorkerTypeZ2x WorkerType = "Z.2X"
)
// Values returns all known values for WorkerType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (WorkerType) Values() []WorkerType {
return []WorkerType{
"Standard",
"G.1X",
"G.2X",
"G.025X",
"G.4X",
"G.8X",
"Z.2X",
}
}
type WorkflowRunStatus string
// Enum values for WorkflowRunStatus
const (
WorkflowRunStatusRunning WorkflowRunStatus = "RUNNING"
WorkflowRunStatusCompleted WorkflowRunStatus = "COMPLETED"
WorkflowRunStatusStopping WorkflowRunStatus = "STOPPING"
WorkflowRunStatusStopped WorkflowRunStatus = "STOPPED"
WorkflowRunStatusError WorkflowRunStatus = "ERROR"
)
// Values returns all known values for WorkflowRunStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (WorkflowRunStatus) Values() []WorkflowRunStatus {
return []WorkflowRunStatus{
"RUNNING",
"COMPLETED",
"STOPPING",
"STOPPED",
"ERROR",
}
}
|