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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type ChangeAction string
// Enum values for ChangeAction
const (
ChangeActionInsert ChangeAction = "INSERT"
ChangeActionDelete ChangeAction = "DELETE"
)
// Values returns all known values for ChangeAction. 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 (ChangeAction) Values() []ChangeAction {
return []ChangeAction{
"INSERT",
"DELETE",
}
}
type ChangeTokenStatus string
// Enum values for ChangeTokenStatus
const (
ChangeTokenStatusProvisioned ChangeTokenStatus = "PROVISIONED"
ChangeTokenStatusPending ChangeTokenStatus = "PENDING"
ChangeTokenStatusInsync ChangeTokenStatus = "INSYNC"
)
// Values returns all known values for ChangeTokenStatus. 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 (ChangeTokenStatus) Values() []ChangeTokenStatus {
return []ChangeTokenStatus{
"PROVISIONED",
"PENDING",
"INSYNC",
}
}
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 GeoMatchConstraintType string
// Enum values for GeoMatchConstraintType
const (
GeoMatchConstraintTypeCountry GeoMatchConstraintType = "Country"
)
// Values returns all known values for GeoMatchConstraintType. 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 (GeoMatchConstraintType) Values() []GeoMatchConstraintType {
return []GeoMatchConstraintType{
"Country",
}
}
type GeoMatchConstraintValue string
// Enum values for GeoMatchConstraintValue
const (
GeoMatchConstraintValueAf GeoMatchConstraintValue = "AF"
GeoMatchConstraintValueAx GeoMatchConstraintValue = "AX"
GeoMatchConstraintValueAl GeoMatchConstraintValue = "AL"
GeoMatchConstraintValueDz GeoMatchConstraintValue = "DZ"
GeoMatchConstraintValueAs GeoMatchConstraintValue = "AS"
GeoMatchConstraintValueAd GeoMatchConstraintValue = "AD"
GeoMatchConstraintValueAo GeoMatchConstraintValue = "AO"
GeoMatchConstraintValueAi GeoMatchConstraintValue = "AI"
GeoMatchConstraintValueAq GeoMatchConstraintValue = "AQ"
GeoMatchConstraintValueAg GeoMatchConstraintValue = "AG"
GeoMatchConstraintValueAr GeoMatchConstraintValue = "AR"
GeoMatchConstraintValueAm GeoMatchConstraintValue = "AM"
GeoMatchConstraintValueAw GeoMatchConstraintValue = "AW"
GeoMatchConstraintValueAu GeoMatchConstraintValue = "AU"
GeoMatchConstraintValueAt GeoMatchConstraintValue = "AT"
GeoMatchConstraintValueAz GeoMatchConstraintValue = "AZ"
GeoMatchConstraintValueBs GeoMatchConstraintValue = "BS"
GeoMatchConstraintValueBh GeoMatchConstraintValue = "BH"
GeoMatchConstraintValueBd GeoMatchConstraintValue = "BD"
GeoMatchConstraintValueBb GeoMatchConstraintValue = "BB"
GeoMatchConstraintValueBy GeoMatchConstraintValue = "BY"
GeoMatchConstraintValueBe GeoMatchConstraintValue = "BE"
GeoMatchConstraintValueBz GeoMatchConstraintValue = "BZ"
GeoMatchConstraintValueBj GeoMatchConstraintValue = "BJ"
GeoMatchConstraintValueBm GeoMatchConstraintValue = "BM"
GeoMatchConstraintValueBt GeoMatchConstraintValue = "BT"
GeoMatchConstraintValueBo GeoMatchConstraintValue = "BO"
GeoMatchConstraintValueBq GeoMatchConstraintValue = "BQ"
GeoMatchConstraintValueBa GeoMatchConstraintValue = "BA"
GeoMatchConstraintValueBw GeoMatchConstraintValue = "BW"
GeoMatchConstraintValueBv GeoMatchConstraintValue = "BV"
GeoMatchConstraintValueBr GeoMatchConstraintValue = "BR"
GeoMatchConstraintValueIo GeoMatchConstraintValue = "IO"
GeoMatchConstraintValueBn GeoMatchConstraintValue = "BN"
GeoMatchConstraintValueBg GeoMatchConstraintValue = "BG"
GeoMatchConstraintValueBf GeoMatchConstraintValue = "BF"
GeoMatchConstraintValueBi GeoMatchConstraintValue = "BI"
GeoMatchConstraintValueKh GeoMatchConstraintValue = "KH"
GeoMatchConstraintValueCm GeoMatchConstraintValue = "CM"
GeoMatchConstraintValueCa GeoMatchConstraintValue = "CA"
GeoMatchConstraintValueCv GeoMatchConstraintValue = "CV"
GeoMatchConstraintValueKy GeoMatchConstraintValue = "KY"
GeoMatchConstraintValueCf GeoMatchConstraintValue = "CF"
GeoMatchConstraintValueTd GeoMatchConstraintValue = "TD"
GeoMatchConstraintValueCl GeoMatchConstraintValue = "CL"
GeoMatchConstraintValueCn GeoMatchConstraintValue = "CN"
GeoMatchConstraintValueCx GeoMatchConstraintValue = "CX"
GeoMatchConstraintValueCc GeoMatchConstraintValue = "CC"
GeoMatchConstraintValueCo GeoMatchConstraintValue = "CO"
GeoMatchConstraintValueKm GeoMatchConstraintValue = "KM"
GeoMatchConstraintValueCg GeoMatchConstraintValue = "CG"
GeoMatchConstraintValueCd GeoMatchConstraintValue = "CD"
GeoMatchConstraintValueCk GeoMatchConstraintValue = "CK"
GeoMatchConstraintValueCr GeoMatchConstraintValue = "CR"
GeoMatchConstraintValueCi GeoMatchConstraintValue = "CI"
GeoMatchConstraintValueHr GeoMatchConstraintValue = "HR"
GeoMatchConstraintValueCu GeoMatchConstraintValue = "CU"
GeoMatchConstraintValueCw GeoMatchConstraintValue = "CW"
GeoMatchConstraintValueCy GeoMatchConstraintValue = "CY"
GeoMatchConstraintValueCz GeoMatchConstraintValue = "CZ"
GeoMatchConstraintValueDk GeoMatchConstraintValue = "DK"
GeoMatchConstraintValueDj GeoMatchConstraintValue = "DJ"
GeoMatchConstraintValueDm GeoMatchConstraintValue = "DM"
GeoMatchConstraintValueDo GeoMatchConstraintValue = "DO"
GeoMatchConstraintValueEc GeoMatchConstraintValue = "EC"
GeoMatchConstraintValueEg GeoMatchConstraintValue = "EG"
GeoMatchConstraintValueSv GeoMatchConstraintValue = "SV"
GeoMatchConstraintValueGq GeoMatchConstraintValue = "GQ"
GeoMatchConstraintValueEr GeoMatchConstraintValue = "ER"
GeoMatchConstraintValueEe GeoMatchConstraintValue = "EE"
GeoMatchConstraintValueEt GeoMatchConstraintValue = "ET"
GeoMatchConstraintValueFk GeoMatchConstraintValue = "FK"
GeoMatchConstraintValueFo GeoMatchConstraintValue = "FO"
GeoMatchConstraintValueFj GeoMatchConstraintValue = "FJ"
GeoMatchConstraintValueFi GeoMatchConstraintValue = "FI"
GeoMatchConstraintValueFr GeoMatchConstraintValue = "FR"
GeoMatchConstraintValueGf GeoMatchConstraintValue = "GF"
GeoMatchConstraintValuePf GeoMatchConstraintValue = "PF"
GeoMatchConstraintValueTf GeoMatchConstraintValue = "TF"
GeoMatchConstraintValueGa GeoMatchConstraintValue = "GA"
GeoMatchConstraintValueGm GeoMatchConstraintValue = "GM"
GeoMatchConstraintValueGe GeoMatchConstraintValue = "GE"
GeoMatchConstraintValueDe GeoMatchConstraintValue = "DE"
GeoMatchConstraintValueGh GeoMatchConstraintValue = "GH"
GeoMatchConstraintValueGi GeoMatchConstraintValue = "GI"
GeoMatchConstraintValueGr GeoMatchConstraintValue = "GR"
GeoMatchConstraintValueGl GeoMatchConstraintValue = "GL"
GeoMatchConstraintValueGd GeoMatchConstraintValue = "GD"
GeoMatchConstraintValueGp GeoMatchConstraintValue = "GP"
GeoMatchConstraintValueGu GeoMatchConstraintValue = "GU"
GeoMatchConstraintValueGt GeoMatchConstraintValue = "GT"
GeoMatchConstraintValueGg GeoMatchConstraintValue = "GG"
GeoMatchConstraintValueGn GeoMatchConstraintValue = "GN"
GeoMatchConstraintValueGw GeoMatchConstraintValue = "GW"
GeoMatchConstraintValueGy GeoMatchConstraintValue = "GY"
GeoMatchConstraintValueHt GeoMatchConstraintValue = "HT"
GeoMatchConstraintValueHm GeoMatchConstraintValue = "HM"
GeoMatchConstraintValueVa GeoMatchConstraintValue = "VA"
GeoMatchConstraintValueHn GeoMatchConstraintValue = "HN"
GeoMatchConstraintValueHk GeoMatchConstraintValue = "HK"
GeoMatchConstraintValueHu GeoMatchConstraintValue = "HU"
GeoMatchConstraintValueIs GeoMatchConstraintValue = "IS"
GeoMatchConstraintValueIn GeoMatchConstraintValue = "IN"
GeoMatchConstraintValueId GeoMatchConstraintValue = "ID"
GeoMatchConstraintValueIr GeoMatchConstraintValue = "IR"
GeoMatchConstraintValueIq GeoMatchConstraintValue = "IQ"
GeoMatchConstraintValueIe GeoMatchConstraintValue = "IE"
GeoMatchConstraintValueIm GeoMatchConstraintValue = "IM"
GeoMatchConstraintValueIl GeoMatchConstraintValue = "IL"
GeoMatchConstraintValueIt GeoMatchConstraintValue = "IT"
GeoMatchConstraintValueJm GeoMatchConstraintValue = "JM"
GeoMatchConstraintValueJp GeoMatchConstraintValue = "JP"
GeoMatchConstraintValueJe GeoMatchConstraintValue = "JE"
GeoMatchConstraintValueJo GeoMatchConstraintValue = "JO"
GeoMatchConstraintValueKz GeoMatchConstraintValue = "KZ"
GeoMatchConstraintValueKe GeoMatchConstraintValue = "KE"
GeoMatchConstraintValueKi GeoMatchConstraintValue = "KI"
GeoMatchConstraintValueKp GeoMatchConstraintValue = "KP"
GeoMatchConstraintValueKr GeoMatchConstraintValue = "KR"
GeoMatchConstraintValueKw GeoMatchConstraintValue = "KW"
GeoMatchConstraintValueKg GeoMatchConstraintValue = "KG"
GeoMatchConstraintValueLa GeoMatchConstraintValue = "LA"
GeoMatchConstraintValueLv GeoMatchConstraintValue = "LV"
GeoMatchConstraintValueLb GeoMatchConstraintValue = "LB"
GeoMatchConstraintValueLs GeoMatchConstraintValue = "LS"
GeoMatchConstraintValueLr GeoMatchConstraintValue = "LR"
GeoMatchConstraintValueLy GeoMatchConstraintValue = "LY"
GeoMatchConstraintValueLi GeoMatchConstraintValue = "LI"
GeoMatchConstraintValueLt GeoMatchConstraintValue = "LT"
GeoMatchConstraintValueLu GeoMatchConstraintValue = "LU"
GeoMatchConstraintValueMo GeoMatchConstraintValue = "MO"
GeoMatchConstraintValueMk GeoMatchConstraintValue = "MK"
GeoMatchConstraintValueMg GeoMatchConstraintValue = "MG"
GeoMatchConstraintValueMw GeoMatchConstraintValue = "MW"
GeoMatchConstraintValueMy GeoMatchConstraintValue = "MY"
GeoMatchConstraintValueMv GeoMatchConstraintValue = "MV"
GeoMatchConstraintValueMl GeoMatchConstraintValue = "ML"
GeoMatchConstraintValueMt GeoMatchConstraintValue = "MT"
GeoMatchConstraintValueMh GeoMatchConstraintValue = "MH"
GeoMatchConstraintValueMq GeoMatchConstraintValue = "MQ"
GeoMatchConstraintValueMr GeoMatchConstraintValue = "MR"
GeoMatchConstraintValueMu GeoMatchConstraintValue = "MU"
GeoMatchConstraintValueYt GeoMatchConstraintValue = "YT"
GeoMatchConstraintValueMx GeoMatchConstraintValue = "MX"
GeoMatchConstraintValueFm GeoMatchConstraintValue = "FM"
GeoMatchConstraintValueMd GeoMatchConstraintValue = "MD"
GeoMatchConstraintValueMc GeoMatchConstraintValue = "MC"
GeoMatchConstraintValueMn GeoMatchConstraintValue = "MN"
GeoMatchConstraintValueMe GeoMatchConstraintValue = "ME"
GeoMatchConstraintValueMs GeoMatchConstraintValue = "MS"
GeoMatchConstraintValueMa GeoMatchConstraintValue = "MA"
GeoMatchConstraintValueMz GeoMatchConstraintValue = "MZ"
GeoMatchConstraintValueMm GeoMatchConstraintValue = "MM"
GeoMatchConstraintValueNa GeoMatchConstraintValue = "NA"
GeoMatchConstraintValueNr GeoMatchConstraintValue = "NR"
GeoMatchConstraintValueNp GeoMatchConstraintValue = "NP"
GeoMatchConstraintValueNl GeoMatchConstraintValue = "NL"
GeoMatchConstraintValueNc GeoMatchConstraintValue = "NC"
GeoMatchConstraintValueNz GeoMatchConstraintValue = "NZ"
GeoMatchConstraintValueNi GeoMatchConstraintValue = "NI"
GeoMatchConstraintValueNe GeoMatchConstraintValue = "NE"
GeoMatchConstraintValueNg GeoMatchConstraintValue = "NG"
GeoMatchConstraintValueNu GeoMatchConstraintValue = "NU"
GeoMatchConstraintValueNf GeoMatchConstraintValue = "NF"
GeoMatchConstraintValueMp GeoMatchConstraintValue = "MP"
GeoMatchConstraintValueNo GeoMatchConstraintValue = "NO"
GeoMatchConstraintValueOm GeoMatchConstraintValue = "OM"
GeoMatchConstraintValuePk GeoMatchConstraintValue = "PK"
GeoMatchConstraintValuePw GeoMatchConstraintValue = "PW"
GeoMatchConstraintValuePs GeoMatchConstraintValue = "PS"
GeoMatchConstraintValuePa GeoMatchConstraintValue = "PA"
GeoMatchConstraintValuePg GeoMatchConstraintValue = "PG"
GeoMatchConstraintValuePy GeoMatchConstraintValue = "PY"
GeoMatchConstraintValuePe GeoMatchConstraintValue = "PE"
GeoMatchConstraintValuePh GeoMatchConstraintValue = "PH"
GeoMatchConstraintValuePn GeoMatchConstraintValue = "PN"
GeoMatchConstraintValuePl GeoMatchConstraintValue = "PL"
GeoMatchConstraintValuePt GeoMatchConstraintValue = "PT"
GeoMatchConstraintValuePr GeoMatchConstraintValue = "PR"
GeoMatchConstraintValueQa GeoMatchConstraintValue = "QA"
GeoMatchConstraintValueRe GeoMatchConstraintValue = "RE"
GeoMatchConstraintValueRo GeoMatchConstraintValue = "RO"
GeoMatchConstraintValueRu GeoMatchConstraintValue = "RU"
GeoMatchConstraintValueRw GeoMatchConstraintValue = "RW"
GeoMatchConstraintValueBl GeoMatchConstraintValue = "BL"
GeoMatchConstraintValueSh GeoMatchConstraintValue = "SH"
GeoMatchConstraintValueKn GeoMatchConstraintValue = "KN"
GeoMatchConstraintValueLc GeoMatchConstraintValue = "LC"
GeoMatchConstraintValueMf GeoMatchConstraintValue = "MF"
GeoMatchConstraintValuePm GeoMatchConstraintValue = "PM"
GeoMatchConstraintValueVc GeoMatchConstraintValue = "VC"
GeoMatchConstraintValueWs GeoMatchConstraintValue = "WS"
GeoMatchConstraintValueSm GeoMatchConstraintValue = "SM"
GeoMatchConstraintValueSt GeoMatchConstraintValue = "ST"
GeoMatchConstraintValueSa GeoMatchConstraintValue = "SA"
GeoMatchConstraintValueSn GeoMatchConstraintValue = "SN"
GeoMatchConstraintValueRs GeoMatchConstraintValue = "RS"
GeoMatchConstraintValueSc GeoMatchConstraintValue = "SC"
GeoMatchConstraintValueSl GeoMatchConstraintValue = "SL"
GeoMatchConstraintValueSg GeoMatchConstraintValue = "SG"
GeoMatchConstraintValueSx GeoMatchConstraintValue = "SX"
GeoMatchConstraintValueSk GeoMatchConstraintValue = "SK"
GeoMatchConstraintValueSi GeoMatchConstraintValue = "SI"
GeoMatchConstraintValueSb GeoMatchConstraintValue = "SB"
GeoMatchConstraintValueSo GeoMatchConstraintValue = "SO"
GeoMatchConstraintValueZa GeoMatchConstraintValue = "ZA"
GeoMatchConstraintValueGs GeoMatchConstraintValue = "GS"
GeoMatchConstraintValueSs GeoMatchConstraintValue = "SS"
GeoMatchConstraintValueEs GeoMatchConstraintValue = "ES"
GeoMatchConstraintValueLk GeoMatchConstraintValue = "LK"
GeoMatchConstraintValueSd GeoMatchConstraintValue = "SD"
GeoMatchConstraintValueSr GeoMatchConstraintValue = "SR"
GeoMatchConstraintValueSj GeoMatchConstraintValue = "SJ"
GeoMatchConstraintValueSz GeoMatchConstraintValue = "SZ"
GeoMatchConstraintValueSe GeoMatchConstraintValue = "SE"
GeoMatchConstraintValueCh GeoMatchConstraintValue = "CH"
GeoMatchConstraintValueSy GeoMatchConstraintValue = "SY"
GeoMatchConstraintValueTw GeoMatchConstraintValue = "TW"
GeoMatchConstraintValueTj GeoMatchConstraintValue = "TJ"
GeoMatchConstraintValueTz GeoMatchConstraintValue = "TZ"
GeoMatchConstraintValueTh GeoMatchConstraintValue = "TH"
GeoMatchConstraintValueTl GeoMatchConstraintValue = "TL"
GeoMatchConstraintValueTg GeoMatchConstraintValue = "TG"
GeoMatchConstraintValueTk GeoMatchConstraintValue = "TK"
GeoMatchConstraintValueTo GeoMatchConstraintValue = "TO"
GeoMatchConstraintValueTt GeoMatchConstraintValue = "TT"
GeoMatchConstraintValueTn GeoMatchConstraintValue = "TN"
GeoMatchConstraintValueTr GeoMatchConstraintValue = "TR"
GeoMatchConstraintValueTm GeoMatchConstraintValue = "TM"
GeoMatchConstraintValueTc GeoMatchConstraintValue = "TC"
GeoMatchConstraintValueTv GeoMatchConstraintValue = "TV"
GeoMatchConstraintValueUg GeoMatchConstraintValue = "UG"
GeoMatchConstraintValueUa GeoMatchConstraintValue = "UA"
GeoMatchConstraintValueAe GeoMatchConstraintValue = "AE"
GeoMatchConstraintValueGb GeoMatchConstraintValue = "GB"
GeoMatchConstraintValueUs GeoMatchConstraintValue = "US"
GeoMatchConstraintValueUm GeoMatchConstraintValue = "UM"
GeoMatchConstraintValueUy GeoMatchConstraintValue = "UY"
GeoMatchConstraintValueUz GeoMatchConstraintValue = "UZ"
GeoMatchConstraintValueVu GeoMatchConstraintValue = "VU"
GeoMatchConstraintValueVe GeoMatchConstraintValue = "VE"
GeoMatchConstraintValueVn GeoMatchConstraintValue = "VN"
GeoMatchConstraintValueVg GeoMatchConstraintValue = "VG"
GeoMatchConstraintValueVi GeoMatchConstraintValue = "VI"
GeoMatchConstraintValueWf GeoMatchConstraintValue = "WF"
GeoMatchConstraintValueEh GeoMatchConstraintValue = "EH"
GeoMatchConstraintValueYe GeoMatchConstraintValue = "YE"
GeoMatchConstraintValueZm GeoMatchConstraintValue = "ZM"
GeoMatchConstraintValueZw GeoMatchConstraintValue = "ZW"
)
// Values returns all known values for GeoMatchConstraintValue. 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 (GeoMatchConstraintValue) Values() []GeoMatchConstraintValue {
return []GeoMatchConstraintValue{
"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",
}
}
type IPSetDescriptorType string
// Enum values for IPSetDescriptorType
const (
IPSetDescriptorTypeIpv4 IPSetDescriptorType = "IPV4"
IPSetDescriptorTypeIpv6 IPSetDescriptorType = "IPV6"
)
// Values returns all known values for IPSetDescriptorType. 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 (IPSetDescriptorType) Values() []IPSetDescriptorType {
return []IPSetDescriptorType{
"IPV4",
"IPV6",
}
}
type MatchFieldType string
// Enum values for MatchFieldType
const (
MatchFieldTypeUri MatchFieldType = "URI"
MatchFieldTypeQueryString MatchFieldType = "QUERY_STRING"
MatchFieldTypeHeader MatchFieldType = "HEADER"
MatchFieldTypeMethod MatchFieldType = "METHOD"
MatchFieldTypeBody MatchFieldType = "BODY"
MatchFieldTypeSingleQueryArg MatchFieldType = "SINGLE_QUERY_ARG"
MatchFieldTypeAllQueryArgs MatchFieldType = "ALL_QUERY_ARGS"
)
// Values returns all known values for MatchFieldType. 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 (MatchFieldType) Values() []MatchFieldType {
return []MatchFieldType{
"URI",
"QUERY_STRING",
"HEADER",
"METHOD",
"BODY",
"SINGLE_QUERY_ARG",
"ALL_QUERY_ARGS",
}
}
type MigrationErrorType string
// Enum values for MigrationErrorType
const (
MigrationErrorTypeEntityNotSupported MigrationErrorType = "ENTITY_NOT_SUPPORTED"
MigrationErrorTypeEntityNotFound MigrationErrorType = "ENTITY_NOT_FOUND"
MigrationErrorTypeS3BucketNoPermission MigrationErrorType = "S3_BUCKET_NO_PERMISSION"
MigrationErrorTypeS3BucketNotAccessible MigrationErrorType = "S3_BUCKET_NOT_ACCESSIBLE"
MigrationErrorTypeS3BucketNotFound MigrationErrorType = "S3_BUCKET_NOT_FOUND"
MigrationErrorTypeS3BucketInvalidRegion MigrationErrorType = "S3_BUCKET_INVALID_REGION"
MigrationErrorTypeS3InternalError MigrationErrorType = "S3_INTERNAL_ERROR"
)
// Values returns all known values for MigrationErrorType. 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 (MigrationErrorType) Values() []MigrationErrorType {
return []MigrationErrorType{
"ENTITY_NOT_SUPPORTED",
"ENTITY_NOT_FOUND",
"S3_BUCKET_NO_PERMISSION",
"S3_BUCKET_NOT_ACCESSIBLE",
"S3_BUCKET_NOT_FOUND",
"S3_BUCKET_INVALID_REGION",
"S3_INTERNAL_ERROR",
}
}
type ParameterExceptionField string
// Enum values for ParameterExceptionField
const (
ParameterExceptionFieldChangeAction ParameterExceptionField = "CHANGE_ACTION"
ParameterExceptionFieldWafAction ParameterExceptionField = "WAF_ACTION"
ParameterExceptionFieldWafOverrideAction ParameterExceptionField = "WAF_OVERRIDE_ACTION"
ParameterExceptionFieldPredicateType ParameterExceptionField = "PREDICATE_TYPE"
ParameterExceptionFieldIpsetType ParameterExceptionField = "IPSET_TYPE"
ParameterExceptionFieldByteMatchFieldType ParameterExceptionField = "BYTE_MATCH_FIELD_TYPE"
ParameterExceptionFieldSqlInjectionMatchFieldType ParameterExceptionField = "SQL_INJECTION_MATCH_FIELD_TYPE"
ParameterExceptionFieldByteMatchTextTransformation ParameterExceptionField = "BYTE_MATCH_TEXT_TRANSFORMATION"
ParameterExceptionFieldByteMatchPositionalConstraint ParameterExceptionField = "BYTE_MATCH_POSITIONAL_CONSTRAINT"
ParameterExceptionFieldSizeConstraintComparisonOperator ParameterExceptionField = "SIZE_CONSTRAINT_COMPARISON_OPERATOR"
ParameterExceptionFieldGeoMatchLocationType ParameterExceptionField = "GEO_MATCH_LOCATION_TYPE"
ParameterExceptionFieldGeoMatchLocationValue ParameterExceptionField = "GEO_MATCH_LOCATION_VALUE"
ParameterExceptionFieldRateKey ParameterExceptionField = "RATE_KEY"
ParameterExceptionFieldRuleType ParameterExceptionField = "RULE_TYPE"
ParameterExceptionFieldNextMarker ParameterExceptionField = "NEXT_MARKER"
ParameterExceptionFieldResourceArn ParameterExceptionField = "RESOURCE_ARN"
ParameterExceptionFieldTags ParameterExceptionField = "TAGS"
ParameterExceptionFieldTagKeys ParameterExceptionField = "TAG_KEYS"
)
// 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{
"CHANGE_ACTION",
"WAF_ACTION",
"WAF_OVERRIDE_ACTION",
"PREDICATE_TYPE",
"IPSET_TYPE",
"BYTE_MATCH_FIELD_TYPE",
"SQL_INJECTION_MATCH_FIELD_TYPE",
"BYTE_MATCH_TEXT_TRANSFORMATION",
"BYTE_MATCH_POSITIONAL_CONSTRAINT",
"SIZE_CONSTRAINT_COMPARISON_OPERATOR",
"GEO_MATCH_LOCATION_TYPE",
"GEO_MATCH_LOCATION_VALUE",
"RATE_KEY",
"RULE_TYPE",
"NEXT_MARKER",
"RESOURCE_ARN",
"TAGS",
"TAG_KEYS",
}
}
type ParameterExceptionReason string
// Enum values for ParameterExceptionReason
const (
ParameterExceptionReasonInvalidOption ParameterExceptionReason = "INVALID_OPTION"
ParameterExceptionReasonIllegalCombination ParameterExceptionReason = "ILLEGAL_COMBINATION"
ParameterExceptionReasonIllegalArgument ParameterExceptionReason = "ILLEGAL_ARGUMENT"
ParameterExceptionReasonInvalidTagKey ParameterExceptionReason = "INVALID_TAG_KEY"
)
// Values returns all known values for ParameterExceptionReason. 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 (ParameterExceptionReason) Values() []ParameterExceptionReason {
return []ParameterExceptionReason{
"INVALID_OPTION",
"ILLEGAL_COMBINATION",
"ILLEGAL_ARGUMENT",
"INVALID_TAG_KEY",
}
}
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 PredicateType string
// Enum values for PredicateType
const (
PredicateTypeIpMatch PredicateType = "IPMatch"
PredicateTypeByteMatch PredicateType = "ByteMatch"
PredicateTypeSqlInjectionMatch PredicateType = "SqlInjectionMatch"
PredicateTypeGeoMatch PredicateType = "GeoMatch"
PredicateTypeSizeConstraint PredicateType = "SizeConstraint"
PredicateTypeXssMatch PredicateType = "XssMatch"
PredicateTypeRegexMatch PredicateType = "RegexMatch"
)
// Values returns all known values for PredicateType. 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 (PredicateType) Values() []PredicateType {
return []PredicateType{
"IPMatch",
"ByteMatch",
"SqlInjectionMatch",
"GeoMatch",
"SizeConstraint",
"XssMatch",
"RegexMatch",
}
}
type RateKey string
// Enum values for RateKey
const (
RateKeyIp RateKey = "IP"
)
// Values returns all known values for RateKey. 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 (RateKey) Values() []RateKey {
return []RateKey{
"IP",
}
}
type TextTransformation string
// Enum values for TextTransformation
const (
TextTransformationNone TextTransformation = "NONE"
TextTransformationCompressWhiteSpace TextTransformation = "COMPRESS_WHITE_SPACE"
TextTransformationHtmlEntityDecode TextTransformation = "HTML_ENTITY_DECODE"
TextTransformationLowercase TextTransformation = "LOWERCASE"
TextTransformationCmdLine TextTransformation = "CMD_LINE"
TextTransformationUrlDecode TextTransformation = "URL_DECODE"
)
// Values returns all known values for TextTransformation. 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 (TextTransformation) Values() []TextTransformation {
return []TextTransformation{
"NONE",
"COMPRESS_WHITE_SPACE",
"HTML_ENTITY_DECODE",
"LOWERCASE",
"CMD_LINE",
"URL_DECODE",
}
}
type WafActionType string
// Enum values for WafActionType
const (
WafActionTypeBlock WafActionType = "BLOCK"
WafActionTypeAllow WafActionType = "ALLOW"
WafActionTypeCount WafActionType = "COUNT"
)
// Values returns all known values for WafActionType. 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 (WafActionType) Values() []WafActionType {
return []WafActionType{
"BLOCK",
"ALLOW",
"COUNT",
}
}
type WafOverrideActionType string
// Enum values for WafOverrideActionType
const (
WafOverrideActionTypeNone WafOverrideActionType = "NONE"
WafOverrideActionTypeCount WafOverrideActionType = "COUNT"
)
// Values returns all known values for WafOverrideActionType. 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 (WafOverrideActionType) Values() []WafOverrideActionType {
return []WafOverrideActionType{
"NONE",
"COUNT",
}
}
type WafRuleType string
// Enum values for WafRuleType
const (
WafRuleTypeRegular WafRuleType = "REGULAR"
WafRuleTypeRateBased WafRuleType = "RATE_BASED"
WafRuleTypeGroup WafRuleType = "GROUP"
)
// Values returns all known values for WafRuleType. 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 (WafRuleType) Values() []WafRuleType {
return []WafRuleType{
"REGULAR",
"RATE_BASED",
"GROUP",
}
}
|