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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ActionValue string
// Enum values for ActionValue
const (
ActionValueAllow ActionValue = "ALLOW"
ActionValueBlock ActionValue = "BLOCK"
ActionValueCount ActionValue = "COUNT"
ActionValueCaptcha ActionValue = "CAPTCHA"
ActionValueChallenge ActionValue = "CHALLENGE"
ActionValueExcludedAsCount ActionValue = "EXCLUDED_AS_COUNT"
)
// Values returns all known values for ActionValue. 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 (ActionValue) Values() []ActionValue {
return []ActionValue{
"ALLOW",
"BLOCK",
"COUNT",
"CAPTCHA",
"CHALLENGE",
"EXCLUDED_AS_COUNT",
}
}
type AssociatedResourceType string
// Enum values for AssociatedResourceType
const (
AssociatedResourceTypeCloudfront AssociatedResourceType = "CLOUDFRONT"
)
// Values returns all known values for AssociatedResourceType. 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 (AssociatedResourceType) Values() []AssociatedResourceType {
return []AssociatedResourceType{
"CLOUDFRONT",
}
}
type BodyParsingFallbackBehavior string
// Enum values for BodyParsingFallbackBehavior
const (
BodyParsingFallbackBehaviorMatch BodyParsingFallbackBehavior = "MATCH"
BodyParsingFallbackBehaviorNoMatch BodyParsingFallbackBehavior = "NO_MATCH"
BodyParsingFallbackBehaviorEvaluateAsString BodyParsingFallbackBehavior = "EVALUATE_AS_STRING"
)
// Values returns all known values for BodyParsingFallbackBehavior. 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 (BodyParsingFallbackBehavior) Values() []BodyParsingFallbackBehavior {
return []BodyParsingFallbackBehavior{
"MATCH",
"NO_MATCH",
"EVALUATE_AS_STRING",
}
}
type ComparisonOperator string
// Enum values for ComparisonOperator
const (
ComparisonOperatorEq ComparisonOperator = "EQ"
ComparisonOperatorNe ComparisonOperator = "NE"
ComparisonOperatorLe ComparisonOperator = "LE"
ComparisonOperatorLt ComparisonOperator = "LT"
ComparisonOperatorGe ComparisonOperator = "GE"
ComparisonOperatorGt ComparisonOperator = "GT"
)
// Values returns all known values for ComparisonOperator. 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 (ComparisonOperator) Values() []ComparisonOperator {
return []ComparisonOperator{
"EQ",
"NE",
"LE",
"LT",
"GE",
"GT",
}
}
type CountryCode string
// Enum values for CountryCode
const (
CountryCodeAf CountryCode = "AF"
CountryCodeAx CountryCode = "AX"
CountryCodeAl CountryCode = "AL"
CountryCodeDz CountryCode = "DZ"
CountryCodeAs CountryCode = "AS"
CountryCodeAd CountryCode = "AD"
CountryCodeAo CountryCode = "AO"
CountryCodeAi CountryCode = "AI"
CountryCodeAq CountryCode = "AQ"
CountryCodeAg CountryCode = "AG"
CountryCodeAr CountryCode = "AR"
CountryCodeAm CountryCode = "AM"
CountryCodeAw CountryCode = "AW"
CountryCodeAu CountryCode = "AU"
CountryCodeAt CountryCode = "AT"
CountryCodeAz CountryCode = "AZ"
CountryCodeBs CountryCode = "BS"
CountryCodeBh CountryCode = "BH"
CountryCodeBd CountryCode = "BD"
CountryCodeBb CountryCode = "BB"
CountryCodeBy CountryCode = "BY"
CountryCodeBe CountryCode = "BE"
CountryCodeBz CountryCode = "BZ"
CountryCodeBj CountryCode = "BJ"
CountryCodeBm CountryCode = "BM"
CountryCodeBt CountryCode = "BT"
CountryCodeBo CountryCode = "BO"
CountryCodeBq CountryCode = "BQ"
CountryCodeBa CountryCode = "BA"
CountryCodeBw CountryCode = "BW"
CountryCodeBv CountryCode = "BV"
CountryCodeBr CountryCode = "BR"
CountryCodeIo CountryCode = "IO"
CountryCodeBn CountryCode = "BN"
CountryCodeBg CountryCode = "BG"
CountryCodeBf CountryCode = "BF"
CountryCodeBi CountryCode = "BI"
CountryCodeKh CountryCode = "KH"
CountryCodeCm CountryCode = "CM"
CountryCodeCa CountryCode = "CA"
CountryCodeCv CountryCode = "CV"
CountryCodeKy CountryCode = "KY"
CountryCodeCf CountryCode = "CF"
CountryCodeTd CountryCode = "TD"
CountryCodeCl CountryCode = "CL"
CountryCodeCn CountryCode = "CN"
CountryCodeCx CountryCode = "CX"
CountryCodeCc CountryCode = "CC"
CountryCodeCo CountryCode = "CO"
CountryCodeKm CountryCode = "KM"
CountryCodeCg CountryCode = "CG"
CountryCodeCd CountryCode = "CD"
CountryCodeCk CountryCode = "CK"
CountryCodeCr CountryCode = "CR"
CountryCodeCi CountryCode = "CI"
CountryCodeHr CountryCode = "HR"
CountryCodeCu CountryCode = "CU"
CountryCodeCw CountryCode = "CW"
CountryCodeCy CountryCode = "CY"
CountryCodeCz CountryCode = "CZ"
CountryCodeDk CountryCode = "DK"
CountryCodeDj CountryCode = "DJ"
CountryCodeDm CountryCode = "DM"
CountryCodeDo CountryCode = "DO"
CountryCodeEc CountryCode = "EC"
CountryCodeEg CountryCode = "EG"
CountryCodeSv CountryCode = "SV"
CountryCodeGq CountryCode = "GQ"
CountryCodeEr CountryCode = "ER"
CountryCodeEe CountryCode = "EE"
CountryCodeEt CountryCode = "ET"
CountryCodeFk CountryCode = "FK"
CountryCodeFo CountryCode = "FO"
CountryCodeFj CountryCode = "FJ"
CountryCodeFi CountryCode = "FI"
CountryCodeFr CountryCode = "FR"
CountryCodeGf CountryCode = "GF"
CountryCodePf CountryCode = "PF"
CountryCodeTf CountryCode = "TF"
CountryCodeGa CountryCode = "GA"
CountryCodeGm CountryCode = "GM"
CountryCodeGe CountryCode = "GE"
CountryCodeDe CountryCode = "DE"
CountryCodeGh CountryCode = "GH"
CountryCodeGi CountryCode = "GI"
CountryCodeGr CountryCode = "GR"
CountryCodeGl CountryCode = "GL"
CountryCodeGd CountryCode = "GD"
CountryCodeGp CountryCode = "GP"
CountryCodeGu CountryCode = "GU"
CountryCodeGt CountryCode = "GT"
CountryCodeGg CountryCode = "GG"
CountryCodeGn CountryCode = "GN"
CountryCodeGw CountryCode = "GW"
CountryCodeGy CountryCode = "GY"
CountryCodeHt CountryCode = "HT"
CountryCodeHm CountryCode = "HM"
CountryCodeVa CountryCode = "VA"
CountryCodeHn CountryCode = "HN"
CountryCodeHk CountryCode = "HK"
CountryCodeHu CountryCode = "HU"
CountryCodeIs CountryCode = "IS"
CountryCodeIn CountryCode = "IN"
CountryCodeId CountryCode = "ID"
CountryCodeIr CountryCode = "IR"
CountryCodeIq CountryCode = "IQ"
CountryCodeIe CountryCode = "IE"
CountryCodeIm CountryCode = "IM"
CountryCodeIl CountryCode = "IL"
CountryCodeIt CountryCode = "IT"
CountryCodeJm CountryCode = "JM"
CountryCodeJp CountryCode = "JP"
CountryCodeJe CountryCode = "JE"
CountryCodeJo CountryCode = "JO"
CountryCodeKz CountryCode = "KZ"
CountryCodeKe CountryCode = "KE"
CountryCodeKi CountryCode = "KI"
CountryCodeKp CountryCode = "KP"
CountryCodeKr CountryCode = "KR"
CountryCodeKw CountryCode = "KW"
CountryCodeKg CountryCode = "KG"
CountryCodeLa CountryCode = "LA"
CountryCodeLv CountryCode = "LV"
CountryCodeLb CountryCode = "LB"
CountryCodeLs CountryCode = "LS"
CountryCodeLr CountryCode = "LR"
CountryCodeLy CountryCode = "LY"
CountryCodeLi CountryCode = "LI"
CountryCodeLt CountryCode = "LT"
CountryCodeLu CountryCode = "LU"
CountryCodeMo CountryCode = "MO"
CountryCodeMk CountryCode = "MK"
CountryCodeMg CountryCode = "MG"
CountryCodeMw CountryCode = "MW"
CountryCodeMy CountryCode = "MY"
CountryCodeMv CountryCode = "MV"
CountryCodeMl CountryCode = "ML"
CountryCodeMt CountryCode = "MT"
CountryCodeMh CountryCode = "MH"
CountryCodeMq CountryCode = "MQ"
CountryCodeMr CountryCode = "MR"
CountryCodeMu CountryCode = "MU"
CountryCodeYt CountryCode = "YT"
CountryCodeMx CountryCode = "MX"
CountryCodeFm CountryCode = "FM"
CountryCodeMd CountryCode = "MD"
CountryCodeMc CountryCode = "MC"
CountryCodeMn CountryCode = "MN"
CountryCodeMe CountryCode = "ME"
CountryCodeMs CountryCode = "MS"
CountryCodeMa CountryCode = "MA"
CountryCodeMz CountryCode = "MZ"
CountryCodeMm CountryCode = "MM"
CountryCodeNa CountryCode = "NA"
CountryCodeNr CountryCode = "NR"
CountryCodeNp CountryCode = "NP"
CountryCodeNl CountryCode = "NL"
CountryCodeNc CountryCode = "NC"
CountryCodeNz CountryCode = "NZ"
CountryCodeNi CountryCode = "NI"
CountryCodeNe CountryCode = "NE"
CountryCodeNg CountryCode = "NG"
CountryCodeNu CountryCode = "NU"
CountryCodeNf CountryCode = "NF"
CountryCodeMp CountryCode = "MP"
CountryCodeNo CountryCode = "NO"
CountryCodeOm CountryCode = "OM"
CountryCodePk CountryCode = "PK"
CountryCodePw CountryCode = "PW"
CountryCodePs CountryCode = "PS"
CountryCodePa CountryCode = "PA"
CountryCodePg CountryCode = "PG"
CountryCodePy CountryCode = "PY"
CountryCodePe CountryCode = "PE"
CountryCodePh CountryCode = "PH"
CountryCodePn CountryCode = "PN"
CountryCodePl CountryCode = "PL"
CountryCodePt CountryCode = "PT"
CountryCodePr CountryCode = "PR"
CountryCodeQa CountryCode = "QA"
CountryCodeRe CountryCode = "RE"
CountryCodeRo CountryCode = "RO"
CountryCodeRu CountryCode = "RU"
CountryCodeRw CountryCode = "RW"
CountryCodeBl CountryCode = "BL"
CountryCodeSh CountryCode = "SH"
CountryCodeKn CountryCode = "KN"
CountryCodeLc CountryCode = "LC"
CountryCodeMf CountryCode = "MF"
CountryCodePm CountryCode = "PM"
CountryCodeVc CountryCode = "VC"
CountryCodeWs CountryCode = "WS"
CountryCodeSm CountryCode = "SM"
CountryCodeSt CountryCode = "ST"
CountryCodeSa CountryCode = "SA"
CountryCodeSn CountryCode = "SN"
CountryCodeRs CountryCode = "RS"
CountryCodeSc CountryCode = "SC"
CountryCodeSl CountryCode = "SL"
CountryCodeSg CountryCode = "SG"
CountryCodeSx CountryCode = "SX"
CountryCodeSk CountryCode = "SK"
CountryCodeSi CountryCode = "SI"
CountryCodeSb CountryCode = "SB"
CountryCodeSo CountryCode = "SO"
CountryCodeZa CountryCode = "ZA"
CountryCodeGs CountryCode = "GS"
CountryCodeSs CountryCode = "SS"
CountryCodeEs CountryCode = "ES"
CountryCodeLk CountryCode = "LK"
CountryCodeSd CountryCode = "SD"
CountryCodeSr CountryCode = "SR"
CountryCodeSj CountryCode = "SJ"
CountryCodeSz CountryCode = "SZ"
CountryCodeSe CountryCode = "SE"
CountryCodeCh CountryCode = "CH"
CountryCodeSy CountryCode = "SY"
CountryCodeTw CountryCode = "TW"
CountryCodeTj CountryCode = "TJ"
CountryCodeTz CountryCode = "TZ"
CountryCodeTh CountryCode = "TH"
CountryCodeTl CountryCode = "TL"
CountryCodeTg CountryCode = "TG"
CountryCodeTk CountryCode = "TK"
CountryCodeTo CountryCode = "TO"
CountryCodeTt CountryCode = "TT"
CountryCodeTn CountryCode = "TN"
CountryCodeTr CountryCode = "TR"
CountryCodeTm CountryCode = "TM"
CountryCodeTc CountryCode = "TC"
CountryCodeTv CountryCode = "TV"
CountryCodeUg CountryCode = "UG"
CountryCodeUa CountryCode = "UA"
CountryCodeAe CountryCode = "AE"
CountryCodeGb CountryCode = "GB"
CountryCodeUs CountryCode = "US"
CountryCodeUm CountryCode = "UM"
CountryCodeUy CountryCode = "UY"
CountryCodeUz CountryCode = "UZ"
CountryCodeVu CountryCode = "VU"
CountryCodeVe CountryCode = "VE"
CountryCodeVn CountryCode = "VN"
CountryCodeVg CountryCode = "VG"
CountryCodeVi CountryCode = "VI"
CountryCodeWf CountryCode = "WF"
CountryCodeEh CountryCode = "EH"
CountryCodeYe CountryCode = "YE"
CountryCodeZm CountryCode = "ZM"
CountryCodeZw CountryCode = "ZW"
CountryCodeXk CountryCode = "XK"
)
// Values returns all known values for CountryCode. 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 (CountryCode) Values() []CountryCode {
return []CountryCode{
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BQ",
"BA",
"BW",
"BV",
"BR",
"IO",
"BN",
"BG",
"BF",
"BI",
"KH",
"CM",
"CA",
"CV",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CG",
"CD",
"CK",
"CR",
"CI",
"HR",
"CU",
"CW",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"VA",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KP",
"KR",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MK",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"RE",
"RO",
"RU",
"RW",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"SS",
"ES",
"LK",
"SD",
"SR",
"SJ",
"SZ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UG",
"UA",
"AE",
"GB",
"US",
"UM",
"UY",
"UZ",
"VU",
"VE",
"VN",
"VG",
"VI",
"WF",
"EH",
"YE",
"ZM",
"ZW",
"XK",
}
}
type FailureReason string
// Enum values for FailureReason
const (
FailureReasonTokenMissing FailureReason = "TOKEN_MISSING"
FailureReasonTokenExpired FailureReason = "TOKEN_EXPIRED"
FailureReasonTokenInvalid FailureReason = "TOKEN_INVALID"
FailureReasonTokenDomainMismatch FailureReason = "TOKEN_DOMAIN_MISMATCH"
)
// Values returns all known values for FailureReason. 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 (FailureReason) Values() []FailureReason {
return []FailureReason{
"TOKEN_MISSING",
"TOKEN_EXPIRED",
"TOKEN_INVALID",
"TOKEN_DOMAIN_MISMATCH",
}
}
type FallbackBehavior string
// Enum values for FallbackBehavior
const (
FallbackBehaviorMatch FallbackBehavior = "MATCH"
FallbackBehaviorNoMatch FallbackBehavior = "NO_MATCH"
)
// Values returns all known values for FallbackBehavior. 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 (FallbackBehavior) Values() []FallbackBehavior {
return []FallbackBehavior{
"MATCH",
"NO_MATCH",
}
}
type FilterBehavior string
// Enum values for FilterBehavior
const (
FilterBehaviorKeep FilterBehavior = "KEEP"
FilterBehaviorDrop FilterBehavior = "DROP"
)
// Values returns all known values for FilterBehavior. 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 (FilterBehavior) Values() []FilterBehavior {
return []FilterBehavior{
"KEEP",
"DROP",
}
}
type FilterRequirement string
// Enum values for FilterRequirement
const (
FilterRequirementMeetsAll FilterRequirement = "MEETS_ALL"
FilterRequirementMeetsAny FilterRequirement = "MEETS_ANY"
)
// Values returns all known values for FilterRequirement. 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 (FilterRequirement) Values() []FilterRequirement {
return []FilterRequirement{
"MEETS_ALL",
"MEETS_ANY",
}
}
type ForwardedIPPosition string
// Enum values for ForwardedIPPosition
const (
ForwardedIPPositionFirst ForwardedIPPosition = "FIRST"
ForwardedIPPositionLast ForwardedIPPosition = "LAST"
ForwardedIPPositionAny ForwardedIPPosition = "ANY"
)
// Values returns all known values for ForwardedIPPosition. 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 (ForwardedIPPosition) Values() []ForwardedIPPosition {
return []ForwardedIPPosition{
"FIRST",
"LAST",
"ANY",
}
}
type InspectionLevel string
// Enum values for InspectionLevel
const (
InspectionLevelCommon InspectionLevel = "COMMON"
InspectionLevelTargeted InspectionLevel = "TARGETED"
)
// Values returns all known values for InspectionLevel. 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 (InspectionLevel) Values() []InspectionLevel {
return []InspectionLevel{
"COMMON",
"TARGETED",
}
}
type IPAddressVersion string
// Enum values for IPAddressVersion
const (
IPAddressVersionIpv4 IPAddressVersion = "IPV4"
IPAddressVersionIpv6 IPAddressVersion = "IPV6"
)
// Values returns all known values for IPAddressVersion. 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 (IPAddressVersion) Values() []IPAddressVersion {
return []IPAddressVersion{
"IPV4",
"IPV6",
}
}
type JsonMatchScope string
// Enum values for JsonMatchScope
const (
JsonMatchScopeAll JsonMatchScope = "ALL"
JsonMatchScopeKey JsonMatchScope = "KEY"
JsonMatchScopeValue JsonMatchScope = "VALUE"
)
// Values returns all known values for JsonMatchScope. 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 (JsonMatchScope) Values() []JsonMatchScope {
return []JsonMatchScope{
"ALL",
"KEY",
"VALUE",
}
}
type LabelMatchScope string
// Enum values for LabelMatchScope
const (
LabelMatchScopeLabel LabelMatchScope = "LABEL"
LabelMatchScopeNamespace LabelMatchScope = "NAMESPACE"
)
// Values returns all known values for LabelMatchScope. 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 (LabelMatchScope) Values() []LabelMatchScope {
return []LabelMatchScope{
"LABEL",
"NAMESPACE",
}
}
type MapMatchScope string
// Enum values for MapMatchScope
const (
MapMatchScopeAll MapMatchScope = "ALL"
MapMatchScopeKey MapMatchScope = "KEY"
MapMatchScopeValue MapMatchScope = "VALUE"
)
// Values returns all known values for MapMatchScope. 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 (MapMatchScope) Values() []MapMatchScope {
return []MapMatchScope{
"ALL",
"KEY",
"VALUE",
}
}
type OversizeHandling string
// Enum values for OversizeHandling
const (
OversizeHandlingContinue OversizeHandling = "CONTINUE"
OversizeHandlingMatch OversizeHandling = "MATCH"
OversizeHandlingNoMatch OversizeHandling = "NO_MATCH"
)
// Values returns all known values for OversizeHandling. 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 (OversizeHandling) Values() []OversizeHandling {
return []OversizeHandling{
"CONTINUE",
"MATCH",
"NO_MATCH",
}
}
type ParameterExceptionField string
// Enum values for ParameterExceptionField
const (
ParameterExceptionFieldWebAcl ParameterExceptionField = "WEB_ACL"
ParameterExceptionFieldRuleGroup ParameterExceptionField = "RULE_GROUP"
ParameterExceptionFieldRegexPatternSet ParameterExceptionField = "REGEX_PATTERN_SET"
ParameterExceptionFieldIpSet ParameterExceptionField = "IP_SET"
ParameterExceptionFieldManagedRuleSet ParameterExceptionField = "MANAGED_RULE_SET"
ParameterExceptionFieldRule ParameterExceptionField = "RULE"
ParameterExceptionFieldExcludedRule ParameterExceptionField = "EXCLUDED_RULE"
ParameterExceptionFieldStatement ParameterExceptionField = "STATEMENT"
ParameterExceptionFieldByteMatchStatement ParameterExceptionField = "BYTE_MATCH_STATEMENT"
ParameterExceptionFieldSqliMatchStatement ParameterExceptionField = "SQLI_MATCH_STATEMENT"
ParameterExceptionFieldXssMatchStatement ParameterExceptionField = "XSS_MATCH_STATEMENT"
ParameterExceptionFieldSizeConstraintStatement ParameterExceptionField = "SIZE_CONSTRAINT_STATEMENT"
ParameterExceptionFieldGeoMatchStatement ParameterExceptionField = "GEO_MATCH_STATEMENT"
ParameterExceptionFieldRateBasedStatement ParameterExceptionField = "RATE_BASED_STATEMENT"
ParameterExceptionFieldRuleGroupReferenceStatement ParameterExceptionField = "RULE_GROUP_REFERENCE_STATEMENT"
ParameterExceptionFieldRegexPatternReferenceStatement ParameterExceptionField = "REGEX_PATTERN_REFERENCE_STATEMENT"
ParameterExceptionFieldIpSetReferenceStatement ParameterExceptionField = "IP_SET_REFERENCE_STATEMENT"
ParameterExceptionFieldManagedRuleSetStatement ParameterExceptionField = "MANAGED_RULE_SET_STATEMENT"
ParameterExceptionFieldLabelMatchStatement ParameterExceptionField = "LABEL_MATCH_STATEMENT"
ParameterExceptionFieldAndStatement ParameterExceptionField = "AND_STATEMENT"
ParameterExceptionFieldOrStatement ParameterExceptionField = "OR_STATEMENT"
ParameterExceptionFieldNotStatement ParameterExceptionField = "NOT_STATEMENT"
ParameterExceptionFieldIpAddress ParameterExceptionField = "IP_ADDRESS"
ParameterExceptionFieldIpAddressVersion ParameterExceptionField = "IP_ADDRESS_VERSION"
ParameterExceptionFieldFieldToMatch ParameterExceptionField = "FIELD_TO_MATCH"
ParameterExceptionFieldTextTransformation ParameterExceptionField = "TEXT_TRANSFORMATION"
ParameterExceptionFieldSingleQueryArgument ParameterExceptionField = "SINGLE_QUERY_ARGUMENT"
ParameterExceptionFieldSingleHeader ParameterExceptionField = "SINGLE_HEADER"
ParameterExceptionFieldDefaultAction ParameterExceptionField = "DEFAULT_ACTION"
ParameterExceptionFieldRuleAction ParameterExceptionField = "RULE_ACTION"
ParameterExceptionFieldEntityLimit ParameterExceptionField = "ENTITY_LIMIT"
ParameterExceptionFieldOverrideAction ParameterExceptionField = "OVERRIDE_ACTION"
ParameterExceptionFieldScopeValue ParameterExceptionField = "SCOPE_VALUE"
ParameterExceptionFieldResourceArn ParameterExceptionField = "RESOURCE_ARN"
ParameterExceptionFieldResourceType ParameterExceptionField = "RESOURCE_TYPE"
ParameterExceptionFieldTags ParameterExceptionField = "TAGS"
ParameterExceptionFieldTagKeys ParameterExceptionField = "TAG_KEYS"
ParameterExceptionFieldMetricName ParameterExceptionField = "METRIC_NAME"
ParameterExceptionFieldFirewallManagerStatement ParameterExceptionField = "FIREWALL_MANAGER_STATEMENT"
ParameterExceptionFieldFallbackBehavior ParameterExceptionField = "FALLBACK_BEHAVIOR"
ParameterExceptionFieldPosition ParameterExceptionField = "POSITION"
ParameterExceptionFieldForwardedIpConfig ParameterExceptionField = "FORWARDED_IP_CONFIG"
ParameterExceptionFieldIpSetForwardedIpConfig ParameterExceptionField = "IP_SET_FORWARDED_IP_CONFIG"
ParameterExceptionFieldHeaderName ParameterExceptionField = "HEADER_NAME"
ParameterExceptionFieldCustomRequestHandling ParameterExceptionField = "CUSTOM_REQUEST_HANDLING"
ParameterExceptionFieldResponseContentType ParameterExceptionField = "RESPONSE_CONTENT_TYPE"
ParameterExceptionFieldCustomResponse ParameterExceptionField = "CUSTOM_RESPONSE"
ParameterExceptionFieldCustomResponseBody ParameterExceptionField = "CUSTOM_RESPONSE_BODY"
ParameterExceptionFieldJsonMatchPattern ParameterExceptionField = "JSON_MATCH_PATTERN"
ParameterExceptionFieldJsonMatchScope ParameterExceptionField = "JSON_MATCH_SCOPE"
ParameterExceptionFieldBodyParsingFallbackBehavior ParameterExceptionField = "BODY_PARSING_FALLBACK_BEHAVIOR"
ParameterExceptionFieldLoggingFilter ParameterExceptionField = "LOGGING_FILTER"
ParameterExceptionFieldFilterCondition ParameterExceptionField = "FILTER_CONDITION"
ParameterExceptionFieldExpireTimestamp ParameterExceptionField = "EXPIRE_TIMESTAMP"
ParameterExceptionFieldChangePropagationStatus ParameterExceptionField = "CHANGE_PROPAGATION_STATUS"
ParameterExceptionFieldAssociableResource ParameterExceptionField = "ASSOCIABLE_RESOURCE"
ParameterExceptionFieldLogDestination ParameterExceptionField = "LOG_DESTINATION"
ParameterExceptionFieldManagedRuleGroupConfig ParameterExceptionField = "MANAGED_RULE_GROUP_CONFIG"
ParameterExceptionFieldPayloadType ParameterExceptionField = "PAYLOAD_TYPE"
ParameterExceptionFieldHeaderMatchPattern ParameterExceptionField = "HEADER_MATCH_PATTERN"
ParameterExceptionFieldCookieMatchPattern ParameterExceptionField = "COOKIE_MATCH_PATTERN"
ParameterExceptionFieldMapMatchScope ParameterExceptionField = "MAP_MATCH_SCOPE"
ParameterExceptionFieldOversizeHandling ParameterExceptionField = "OVERSIZE_HANDLING"
ParameterExceptionFieldChallengeConfig ParameterExceptionField = "CHALLENGE_CONFIG"
ParameterExceptionFieldTokenDomain ParameterExceptionField = "TOKEN_DOMAIN"
ParameterExceptionFieldAtpRuleSetResponseInspection ParameterExceptionField = "ATP_RULE_SET_RESPONSE_INSPECTION"
ParameterExceptionFieldAssociatedResourceType ParameterExceptionField = "ASSOCIATED_RESOURCE_TYPE"
ParameterExceptionFieldScopeDown ParameterExceptionField = "SCOPE_DOWN"
ParameterExceptionFieldCustomKeys ParameterExceptionField = "CUSTOM_KEYS"
ParameterExceptionFieldAcpRuleSetResponseInspection ParameterExceptionField = "ACP_RULE_SET_RESPONSE_INSPECTION"
)
// Values returns all known values for ParameterExceptionField. 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 (ParameterExceptionField) Values() []ParameterExceptionField {
return []ParameterExceptionField{
"WEB_ACL",
"RULE_GROUP",
"REGEX_PATTERN_SET",
"IP_SET",
"MANAGED_RULE_SET",
"RULE",
"EXCLUDED_RULE",
"STATEMENT",
"BYTE_MATCH_STATEMENT",
"SQLI_MATCH_STATEMENT",
"XSS_MATCH_STATEMENT",
"SIZE_CONSTRAINT_STATEMENT",
"GEO_MATCH_STATEMENT",
"RATE_BASED_STATEMENT",
"RULE_GROUP_REFERENCE_STATEMENT",
"REGEX_PATTERN_REFERENCE_STATEMENT",
"IP_SET_REFERENCE_STATEMENT",
"MANAGED_RULE_SET_STATEMENT",
"LABEL_MATCH_STATEMENT",
"AND_STATEMENT",
"OR_STATEMENT",
"NOT_STATEMENT",
"IP_ADDRESS",
"IP_ADDRESS_VERSION",
"FIELD_TO_MATCH",
"TEXT_TRANSFORMATION",
"SINGLE_QUERY_ARGUMENT",
"SINGLE_HEADER",
"DEFAULT_ACTION",
"RULE_ACTION",
"ENTITY_LIMIT",
"OVERRIDE_ACTION",
"SCOPE_VALUE",
"RESOURCE_ARN",
"RESOURCE_TYPE",
"TAGS",
"TAG_KEYS",
"METRIC_NAME",
"FIREWALL_MANAGER_STATEMENT",
"FALLBACK_BEHAVIOR",
"POSITION",
"FORWARDED_IP_CONFIG",
"IP_SET_FORWARDED_IP_CONFIG",
"HEADER_NAME",
"CUSTOM_REQUEST_HANDLING",
"RESPONSE_CONTENT_TYPE",
"CUSTOM_RESPONSE",
"CUSTOM_RESPONSE_BODY",
"JSON_MATCH_PATTERN",
"JSON_MATCH_SCOPE",
"BODY_PARSING_FALLBACK_BEHAVIOR",
"LOGGING_FILTER",
"FILTER_CONDITION",
"EXPIRE_TIMESTAMP",
"CHANGE_PROPAGATION_STATUS",
"ASSOCIABLE_RESOURCE",
"LOG_DESTINATION",
"MANAGED_RULE_GROUP_CONFIG",
"PAYLOAD_TYPE",
"HEADER_MATCH_PATTERN",
"COOKIE_MATCH_PATTERN",
"MAP_MATCH_SCOPE",
"OVERSIZE_HANDLING",
"CHALLENGE_CONFIG",
"TOKEN_DOMAIN",
"ATP_RULE_SET_RESPONSE_INSPECTION",
"ASSOCIATED_RESOURCE_TYPE",
"SCOPE_DOWN",
"CUSTOM_KEYS",
"ACP_RULE_SET_RESPONSE_INSPECTION",
}
}
type PayloadType string
// Enum values for PayloadType
const (
PayloadTypeJson PayloadType = "JSON"
PayloadTypeFormEncoded PayloadType = "FORM_ENCODED"
)
// Values returns all known values for PayloadType. 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 (PayloadType) Values() []PayloadType {
return []PayloadType{
"JSON",
"FORM_ENCODED",
}
}
type Platform string
// Enum values for Platform
const (
PlatformIos Platform = "IOS"
PlatformAndroid Platform = "ANDROID"
)
// Values returns all known values for Platform. 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 (Platform) Values() []Platform {
return []Platform{
"IOS",
"ANDROID",
}
}
type PositionalConstraint string
// Enum values for PositionalConstraint
const (
PositionalConstraintExactly PositionalConstraint = "EXACTLY"
PositionalConstraintStartsWith PositionalConstraint = "STARTS_WITH"
PositionalConstraintEndsWith PositionalConstraint = "ENDS_WITH"
PositionalConstraintContains PositionalConstraint = "CONTAINS"
PositionalConstraintContainsWord PositionalConstraint = "CONTAINS_WORD"
)
// Values returns all known values for PositionalConstraint. 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 (PositionalConstraint) Values() []PositionalConstraint {
return []PositionalConstraint{
"EXACTLY",
"STARTS_WITH",
"ENDS_WITH",
"CONTAINS",
"CONTAINS_WORD",
}
}
type RateBasedStatementAggregateKeyType string
// Enum values for RateBasedStatementAggregateKeyType
const (
RateBasedStatementAggregateKeyTypeIp RateBasedStatementAggregateKeyType = "IP"
RateBasedStatementAggregateKeyTypeForwardedIp RateBasedStatementAggregateKeyType = "FORWARDED_IP"
RateBasedStatementAggregateKeyTypeCustomKeys RateBasedStatementAggregateKeyType = "CUSTOM_KEYS"
RateBasedStatementAggregateKeyTypeConstant RateBasedStatementAggregateKeyType = "CONSTANT"
)
// Values returns all known values for RateBasedStatementAggregateKeyType. 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 (RateBasedStatementAggregateKeyType) Values() []RateBasedStatementAggregateKeyType {
return []RateBasedStatementAggregateKeyType{
"IP",
"FORWARDED_IP",
"CUSTOM_KEYS",
"CONSTANT",
}
}
type ResourceType string
// Enum values for ResourceType
const (
ResourceTypeApplicationLoadBalancer ResourceType = "APPLICATION_LOAD_BALANCER"
ResourceTypeApiGateway ResourceType = "API_GATEWAY"
ResourceTypeAppsync ResourceType = "APPSYNC"
ResourceTypeCognitioUserPool ResourceType = "COGNITO_USER_POOL"
ResourceTypeAppRunnerService ResourceType = "APP_RUNNER_SERVICE"
ResourceTypeVerifiedAccessInstance ResourceType = "VERIFIED_ACCESS_INSTANCE"
)
// 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{
"APPLICATION_LOAD_BALANCER",
"API_GATEWAY",
"APPSYNC",
"COGNITO_USER_POOL",
"APP_RUNNER_SERVICE",
"VERIFIED_ACCESS_INSTANCE",
}
}
type ResponseContentType string
// Enum values for ResponseContentType
const (
ResponseContentTypeTextPlain ResponseContentType = "TEXT_PLAIN"
ResponseContentTypeTextHtml ResponseContentType = "TEXT_HTML"
ResponseContentTypeApplicationJson ResponseContentType = "APPLICATION_JSON"
)
// Values returns all known values for ResponseContentType. 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 (ResponseContentType) Values() []ResponseContentType {
return []ResponseContentType{
"TEXT_PLAIN",
"TEXT_HTML",
"APPLICATION_JSON",
}
}
type Scope string
// Enum values for Scope
const (
ScopeCloudfront Scope = "CLOUDFRONT"
ScopeRegional Scope = "REGIONAL"
)
// Values returns all known values for Scope. 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 (Scope) Values() []Scope {
return []Scope{
"CLOUDFRONT",
"REGIONAL",
}
}
type SensitivityLevel string
// Enum values for SensitivityLevel
const (
SensitivityLevelLow SensitivityLevel = "LOW"
SensitivityLevelHigh SensitivityLevel = "HIGH"
)
// Values returns all known values for SensitivityLevel. 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 (SensitivityLevel) Values() []SensitivityLevel {
return []SensitivityLevel{
"LOW",
"HIGH",
}
}
type SizeInspectionLimit string
// Enum values for SizeInspectionLimit
const (
SizeInspectionLimitKb16 SizeInspectionLimit = "KB_16"
SizeInspectionLimitKb32 SizeInspectionLimit = "KB_32"
SizeInspectionLimitKb48 SizeInspectionLimit = "KB_48"
SizeInspectionLimitKb64 SizeInspectionLimit = "KB_64"
)
// Values returns all known values for SizeInspectionLimit. 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 (SizeInspectionLimit) Values() []SizeInspectionLimit {
return []SizeInspectionLimit{
"KB_16",
"KB_32",
"KB_48",
"KB_64",
}
}
type TextTransformationType string
// Enum values for TextTransformationType
const (
TextTransformationTypeNone TextTransformationType = "NONE"
TextTransformationTypeCompressWhiteSpace TextTransformationType = "COMPRESS_WHITE_SPACE"
TextTransformationTypeHtmlEntityDecode TextTransformationType = "HTML_ENTITY_DECODE"
TextTransformationTypeLowercase TextTransformationType = "LOWERCASE"
TextTransformationTypeCmdLine TextTransformationType = "CMD_LINE"
TextTransformationTypeUrlDecode TextTransformationType = "URL_DECODE"
TextTransformationTypeBase64Decode TextTransformationType = "BASE64_DECODE"
TextTransformationTypeHexDecode TextTransformationType = "HEX_DECODE"
TextTransformationTypeMd5 TextTransformationType = "MD5"
TextTransformationTypeReplaceComments TextTransformationType = "REPLACE_COMMENTS"
TextTransformationTypeEscapeSeqDecode TextTransformationType = "ESCAPE_SEQ_DECODE"
TextTransformationTypeSqlHexDecode TextTransformationType = "SQL_HEX_DECODE"
TextTransformationTypeCssDecode TextTransformationType = "CSS_DECODE"
TextTransformationTypeJsDecode TextTransformationType = "JS_DECODE"
TextTransformationTypeNormalizePath TextTransformationType = "NORMALIZE_PATH"
TextTransformationTypeNormalizePathWin TextTransformationType = "NORMALIZE_PATH_WIN"
TextTransformationTypeRemoveNulls TextTransformationType = "REMOVE_NULLS"
TextTransformationTypeReplaceNulls TextTransformationType = "REPLACE_NULLS"
TextTransformationTypeBase64DecodeExt TextTransformationType = "BASE64_DECODE_EXT"
TextTransformationTypeUrlDecodeUni TextTransformationType = "URL_DECODE_UNI"
TextTransformationTypeUtf8ToUnicode TextTransformationType = "UTF8_TO_UNICODE"
)
// Values returns all known values for TextTransformationType. 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 (TextTransformationType) Values() []TextTransformationType {
return []TextTransformationType{
"NONE",
"COMPRESS_WHITE_SPACE",
"HTML_ENTITY_DECODE",
"LOWERCASE",
"CMD_LINE",
"URL_DECODE",
"BASE64_DECODE",
"HEX_DECODE",
"MD5",
"REPLACE_COMMENTS",
"ESCAPE_SEQ_DECODE",
"SQL_HEX_DECODE",
"CSS_DECODE",
"JS_DECODE",
"NORMALIZE_PATH",
"NORMALIZE_PATH_WIN",
"REMOVE_NULLS",
"REPLACE_NULLS",
"BASE64_DECODE_EXT",
"URL_DECODE_UNI",
"UTF8_TO_UNICODE",
}
}
|