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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AccessDeniedExceptionReason string
// Enum values for AccessDeniedExceptionReason
const (
AccessDeniedExceptionReasonInsufficientAccountReputation AccessDeniedExceptionReason = "INSUFFICIENT_ACCOUNT_REPUTATION"
AccessDeniedExceptionReasonAccountDisabled AccessDeniedExceptionReason = "ACCOUNT_DISABLED"
)
// Values returns all known values for AccessDeniedExceptionReason. 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 (AccessDeniedExceptionReason) Values() []AccessDeniedExceptionReason {
return []AccessDeniedExceptionReason{
"INSUFFICIENT_ACCOUNT_REPUTATION",
"ACCOUNT_DISABLED",
}
}
type AccountAttributeName string
// Enum values for AccountAttributeName
const (
AccountAttributeNameAccountTier AccountAttributeName = "ACCOUNT_TIER"
)
// Values returns all known values for AccountAttributeName. 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 (AccountAttributeName) Values() []AccountAttributeName {
return []AccountAttributeName{
"ACCOUNT_TIER",
}
}
type AccountLimitName string
// Enum values for AccountLimitName
const (
AccountLimitNamePhoneNumbers AccountLimitName = "PHONE_NUMBERS"
AccountLimitNamePools AccountLimitName = "POOLS"
AccountLimitNameConfigurationSets AccountLimitName = "CONFIGURATION_SETS"
AccountLimitNameOptOutLists AccountLimitName = "OPT_OUT_LISTS"
AccountLimitNameSenderIds AccountLimitName = "SENDER_IDS"
AccountLimitNameRegistrations AccountLimitName = "REGISTRATIONS"
AccountLimitNameRegistrationAttachments AccountLimitName = "REGISTRATION_ATTACHMENTS"
AccountLimitNameVerifiedDestinationNumbers AccountLimitName = "VERIFIED_DESTINATION_NUMBERS"
)
// Values returns all known values for AccountLimitName. 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 (AccountLimitName) Values() []AccountLimitName {
return []AccountLimitName{
"PHONE_NUMBERS",
"POOLS",
"CONFIGURATION_SETS",
"OPT_OUT_LISTS",
"SENDER_IDS",
"REGISTRATIONS",
"REGISTRATION_ATTACHMENTS",
"VERIFIED_DESTINATION_NUMBERS",
}
}
type AttachmentStatus string
// Enum values for AttachmentStatus
const (
AttachmentStatusUploadInProgress AttachmentStatus = "UPLOAD_IN_PROGRESS"
AttachmentStatusUploadComplete AttachmentStatus = "UPLOAD_COMPLETE"
AttachmentStatusUploadFailed AttachmentStatus = "UPLOAD_FAILED"
AttachmentStatusDeleted AttachmentStatus = "DELETED"
)
// Values returns all known values for AttachmentStatus. 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 (AttachmentStatus) Values() []AttachmentStatus {
return []AttachmentStatus{
"UPLOAD_IN_PROGRESS",
"UPLOAD_COMPLETE",
"UPLOAD_FAILED",
"DELETED",
}
}
type AttachmentUploadErrorReason string
// Enum values for AttachmentUploadErrorReason
const (
AttachmentUploadErrorReasonInternalError AttachmentUploadErrorReason = "INTERNAL_ERROR"
)
// Values returns all known values for AttachmentUploadErrorReason. 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 (AttachmentUploadErrorReason) Values() []AttachmentUploadErrorReason {
return []AttachmentUploadErrorReason{
"INTERNAL_ERROR",
}
}
type ConfigurationSetFilterName string
// Enum values for ConfigurationSetFilterName
const (
ConfigurationSetFilterNameEventDestinationName ConfigurationSetFilterName = "event-destination-name"
ConfigurationSetFilterNameMatchingEventTypes ConfigurationSetFilterName = "matching-event-types"
ConfigurationSetFilterNameDefaultMessageType ConfigurationSetFilterName = "default-message-type"
ConfigurationSetFilterNameDefaultSenderId ConfigurationSetFilterName = "default-sender-id"
)
// Values returns all known values for ConfigurationSetFilterName. 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 (ConfigurationSetFilterName) Values() []ConfigurationSetFilterName {
return []ConfigurationSetFilterName{
"event-destination-name",
"matching-event-types",
"default-message-type",
"default-sender-id",
}
}
type ConflictExceptionReason string
// Enum values for ConflictExceptionReason
const (
ConflictExceptionReasonCreateRegistrationVersionNotAllowed ConflictExceptionReason = "CREATE_REGISTRATION_VERSION_NOT_ALLOWED"
ConflictExceptionReasonDeletionProtectionEnabled ConflictExceptionReason = "DELETION_PROTECTION_ENABLED"
ConflictExceptionReasonDestinationPhoneNumberNotVerified ConflictExceptionReason = "DESTINATION_PHONE_NUMBER_NOT_VERIFIED"
ConflictExceptionReasonDestinationPhoneNumberOptedOut ConflictExceptionReason = "DESTINATION_PHONE_NUMBER_OPTED_OUT"
ConflictExceptionReasonDisassociateRegistrationNotAllowed ConflictExceptionReason = "DISASSOCIATE_REGISTRATION_NOT_ALLOWED"
ConflictExceptionReasonDiscardRegistrationVersionNotAllowed ConflictExceptionReason = "DISCARD_REGISTRATION_VERSION_NOT_ALLOWED"
ConflictExceptionReasonEditRegistrationFieldValuesNotAllowed ConflictExceptionReason = "EDIT_REGISTRATION_FIELD_VALUES_NOT_ALLOWED"
ConflictExceptionReasonEventDestinationMismatch ConflictExceptionReason = "EVENT_DESTINATION_MISMATCH"
ConflictExceptionReasonKeywordMismatch ConflictExceptionReason = "KEYWORD_MISMATCH"
ConflictExceptionReasonLastPhoneNumber ConflictExceptionReason = "LAST_PHONE_NUMBER"
ConflictExceptionReasonNumberCapabilitiesMismatch ConflictExceptionReason = "NUMBER_CAPABILITIES_MISMATCH"
ConflictExceptionReasonMessageTypeMismatch ConflictExceptionReason = "MESSAGE_TYPE_MISMATCH"
ConflictExceptionReasonNoOriginationIdentitiesFound ConflictExceptionReason = "NO_ORIGINATION_IDENTITIES_FOUND"
ConflictExceptionReasonOptOutListMismatch ConflictExceptionReason = "OPT_OUT_LIST_MISMATCH"
ConflictExceptionReasonPhoneNumberAssociatedToPool ConflictExceptionReason = "PHONE_NUMBER_ASSOCIATED_TO_POOL"
ConflictExceptionReasonPhoneNumberAssociatedToRegistration ConflictExceptionReason = "PHONE_NUMBER_ASSOCIATED_TO_REGISTRATION"
ConflictExceptionReasonPhoneNumberNotAssociatedToPool ConflictExceptionReason = "PHONE_NUMBER_NOT_ASSOCIATED_TO_POOL"
ConflictExceptionReasonPhoneNumberNotInRegistrationRegion ConflictExceptionReason = "PHONE_NUMBER_NOT_IN_REGISTRATION_REGION"
ConflictExceptionReasonRegistrationAlreadySubmitted ConflictExceptionReason = "REGISTRATION_ALREADY_SUBMITTED"
ConflictExceptionReasonRegistrationNotComplete ConflictExceptionReason = "REGISTRATION_NOT_COMPLETE"
ConflictExceptionReasonSenderIdAssociatedToPool ConflictExceptionReason = "SENDER_ID_ASSOCIATED_TO_POOL"
ConflictExceptionReasonResourceAlreadyExists ConflictExceptionReason = "RESOURCE_ALREADY_EXISTS"
ConflictExceptionReasonResourceDeletionNotAllowed ConflictExceptionReason = "RESOURCE_DELETION_NOT_ALLOWED"
ConflictExceptionReasonResourceModificationNotAllowed ConflictExceptionReason = "RESOURCE_MODIFICATION_NOT_ALLOWED"
ConflictExceptionReasonResourceNotActive ConflictExceptionReason = "RESOURCE_NOT_ACTIVE"
ConflictExceptionReasonResourceNotEmpty ConflictExceptionReason = "RESOURCE_NOT_EMPTY"
ConflictExceptionReasonSelfManagedOptOutsMismatch ConflictExceptionReason = "SELF_MANAGED_OPT_OUTS_MISMATCH"
ConflictExceptionReasonSubmitRegistrationVersionNotAllowed ConflictExceptionReason = "SUBMIT_REGISTRATION_VERSION_NOT_ALLOWED"
ConflictExceptionReasonTwoWayConfigMismatch ConflictExceptionReason = "TWO_WAY_CONFIG_MISMATCH"
ConflictExceptionReasonVerificationCodeExpired ConflictExceptionReason = "VERIFICATION_CODE_EXPIRED"
ConflictExceptionReasonVerificationAlreadyComplete ConflictExceptionReason = "VERIFICATION_ALREADY_COMPLETE"
)
// Values returns all known values for ConflictExceptionReason. 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 (ConflictExceptionReason) Values() []ConflictExceptionReason {
return []ConflictExceptionReason{
"CREATE_REGISTRATION_VERSION_NOT_ALLOWED",
"DELETION_PROTECTION_ENABLED",
"DESTINATION_PHONE_NUMBER_NOT_VERIFIED",
"DESTINATION_PHONE_NUMBER_OPTED_OUT",
"DISASSOCIATE_REGISTRATION_NOT_ALLOWED",
"DISCARD_REGISTRATION_VERSION_NOT_ALLOWED",
"EDIT_REGISTRATION_FIELD_VALUES_NOT_ALLOWED",
"EVENT_DESTINATION_MISMATCH",
"KEYWORD_MISMATCH",
"LAST_PHONE_NUMBER",
"NUMBER_CAPABILITIES_MISMATCH",
"MESSAGE_TYPE_MISMATCH",
"NO_ORIGINATION_IDENTITIES_FOUND",
"OPT_OUT_LIST_MISMATCH",
"PHONE_NUMBER_ASSOCIATED_TO_POOL",
"PHONE_NUMBER_ASSOCIATED_TO_REGISTRATION",
"PHONE_NUMBER_NOT_ASSOCIATED_TO_POOL",
"PHONE_NUMBER_NOT_IN_REGISTRATION_REGION",
"REGISTRATION_ALREADY_SUBMITTED",
"REGISTRATION_NOT_COMPLETE",
"SENDER_ID_ASSOCIATED_TO_POOL",
"RESOURCE_ALREADY_EXISTS",
"RESOURCE_DELETION_NOT_ALLOWED",
"RESOURCE_MODIFICATION_NOT_ALLOWED",
"RESOURCE_NOT_ACTIVE",
"RESOURCE_NOT_EMPTY",
"SELF_MANAGED_OPT_OUTS_MISMATCH",
"SUBMIT_REGISTRATION_VERSION_NOT_ALLOWED",
"TWO_WAY_CONFIG_MISMATCH",
"VERIFICATION_CODE_EXPIRED",
"VERIFICATION_ALREADY_COMPLETE",
}
}
type DestinationCountryParameterKey string
// Enum values for DestinationCountryParameterKey
const (
DestinationCountryParameterKeyInTemplateId DestinationCountryParameterKey = "IN_TEMPLATE_ID"
DestinationCountryParameterKeyInEntityId DestinationCountryParameterKey = "IN_ENTITY_ID"
)
// Values returns all known values for DestinationCountryParameterKey. 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 (DestinationCountryParameterKey) Values() []DestinationCountryParameterKey {
return []DestinationCountryParameterKey{
"IN_TEMPLATE_ID",
"IN_ENTITY_ID",
}
}
type EventType string
// Enum values for EventType
const (
EventTypeAll EventType = "ALL"
EventTypeTextAll EventType = "TEXT_ALL"
EventTypeTextSent EventType = "TEXT_SENT"
EventTypeTextPending EventType = "TEXT_PENDING"
EventTypeTextQueued EventType = "TEXT_QUEUED"
EventTypeTextSuccessful EventType = "TEXT_SUCCESSFUL"
EventTypeTextDelivered EventType = "TEXT_DELIVERED"
EventTypeTextInvalid EventType = "TEXT_INVALID"
EventTypeTextInvalidMessage EventType = "TEXT_INVALID_MESSAGE"
EventTypeTextUnreachable EventType = "TEXT_UNREACHABLE"
EventTypeTextCarrierUnreachable EventType = "TEXT_CARRIER_UNREACHABLE"
EventTypeTextBlocked EventType = "TEXT_BLOCKED"
EventTypeTextCarrierBlocked EventType = "TEXT_CARRIER_BLOCKED"
EventTypeTextSpam EventType = "TEXT_SPAM"
EventTypeTextUnknown EventType = "TEXT_UNKNOWN"
EventTypeTextTtlExpired EventType = "TEXT_TTL_EXPIRED"
EventTypeVoiceAll EventType = "VOICE_ALL"
EventTypeVoiceInitiated EventType = "VOICE_INITIATED"
EventTypeVoiceRinging EventType = "VOICE_RINGING"
EventTypeVoiceAnswered EventType = "VOICE_ANSWERED"
EventTypeVoiceCompleted EventType = "VOICE_COMPLETED"
EventTypeVoiceBusy EventType = "VOICE_BUSY"
EventTypeVoiceNoAnswer EventType = "VOICE_NO_ANSWER"
EventTypeVoiceFailed EventType = "VOICE_FAILED"
EventTypeVoiceTtlExpired EventType = "VOICE_TTL_EXPIRED"
)
// Values returns all known values for EventType. 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 (EventType) Values() []EventType {
return []EventType{
"ALL",
"TEXT_ALL",
"TEXT_SENT",
"TEXT_PENDING",
"TEXT_QUEUED",
"TEXT_SUCCESSFUL",
"TEXT_DELIVERED",
"TEXT_INVALID",
"TEXT_INVALID_MESSAGE",
"TEXT_UNREACHABLE",
"TEXT_CARRIER_UNREACHABLE",
"TEXT_BLOCKED",
"TEXT_CARRIER_BLOCKED",
"TEXT_SPAM",
"TEXT_UNKNOWN",
"TEXT_TTL_EXPIRED",
"VOICE_ALL",
"VOICE_INITIATED",
"VOICE_RINGING",
"VOICE_ANSWERED",
"VOICE_COMPLETED",
"VOICE_BUSY",
"VOICE_NO_ANSWER",
"VOICE_FAILED",
"VOICE_TTL_EXPIRED",
}
}
type FieldRequirement string
// Enum values for FieldRequirement
const (
FieldRequirementRequired FieldRequirement = "REQUIRED"
FieldRequirementConditional FieldRequirement = "CONDITIONAL"
FieldRequirementOptional FieldRequirement = "OPTIONAL"
)
// Values returns all known values for FieldRequirement. 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 (FieldRequirement) Values() []FieldRequirement {
return []FieldRequirement{
"REQUIRED",
"CONDITIONAL",
"OPTIONAL",
}
}
type FieldType string
// Enum values for FieldType
const (
FieldTypeSelect FieldType = "SELECT"
FieldTypeText FieldType = "TEXT"
FieldTypeAttachment FieldType = "ATTACHMENT"
)
// Values returns all known values for FieldType. 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 (FieldType) Values() []FieldType {
return []FieldType{
"SELECT",
"TEXT",
"ATTACHMENT",
}
}
type KeywordAction string
// Enum values for KeywordAction
const (
KeywordActionAutomaticResponse KeywordAction = "AUTOMATIC_RESPONSE"
KeywordActionOptOut KeywordAction = "OPT_OUT"
KeywordActionOptIn KeywordAction = "OPT_IN"
)
// Values returns all known values for KeywordAction. 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 (KeywordAction) Values() []KeywordAction {
return []KeywordAction{
"AUTOMATIC_RESPONSE",
"OPT_OUT",
"OPT_IN",
}
}
type KeywordFilterName string
// Enum values for KeywordFilterName
const (
KeywordFilterNameKeywordAction KeywordFilterName = "keyword-action"
)
// Values returns all known values for KeywordFilterName. 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 (KeywordFilterName) Values() []KeywordFilterName {
return []KeywordFilterName{
"keyword-action",
}
}
type LanguageCode string
// Enum values for LanguageCode
const (
LanguageCodeDeDe LanguageCode = "DE_DE"
LanguageCodeEnGb LanguageCode = "EN_GB"
LanguageCodeEnUs LanguageCode = "EN_US"
LanguageCodeEs419 LanguageCode = "ES_419"
LanguageCodeEsEs LanguageCode = "ES_ES"
LanguageCodeFrCa LanguageCode = "FR_CA"
LanguageCodeFrFr LanguageCode = "FR_FR"
LanguageCodeItIt LanguageCode = "IT_IT"
LanguageCodeJaJp LanguageCode = "JA_JP"
LanguageCodeKoKr LanguageCode = "KO_KR"
LanguageCodePtBr LanguageCode = "PT_BR"
LanguageCodeZhCn LanguageCode = "ZH_CN"
LanguageCodeZhTw LanguageCode = "ZH_TW"
)
// Values returns all known values for LanguageCode. 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 (LanguageCode) Values() []LanguageCode {
return []LanguageCode{
"DE_DE",
"EN_GB",
"EN_US",
"ES_419",
"ES_ES",
"FR_CA",
"FR_FR",
"IT_IT",
"JA_JP",
"KO_KR",
"PT_BR",
"ZH_CN",
"ZH_TW",
}
}
type MessageType string
// Enum values for MessageType
const (
MessageTypeTransactional MessageType = "TRANSACTIONAL"
MessageTypePromotional MessageType = "PROMOTIONAL"
)
// Values returns all known values for MessageType. 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 (MessageType) Values() []MessageType {
return []MessageType{
"TRANSACTIONAL",
"PROMOTIONAL",
}
}
type NumberCapability string
// Enum values for NumberCapability
const (
NumberCapabilitySms NumberCapability = "SMS"
NumberCapabilityVoice NumberCapability = "VOICE"
)
// Values returns all known values for NumberCapability. 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 (NumberCapability) Values() []NumberCapability {
return []NumberCapability{
"SMS",
"VOICE",
}
}
type NumberStatus string
// Enum values for NumberStatus
const (
NumberStatusPending NumberStatus = "PENDING"
NumberStatusActive NumberStatus = "ACTIVE"
NumberStatusAssociating NumberStatus = "ASSOCIATING"
NumberStatusDisassociating NumberStatus = "DISASSOCIATING"
NumberStatusDeleted NumberStatus = "DELETED"
)
// Values returns all known values for NumberStatus. 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 (NumberStatus) Values() []NumberStatus {
return []NumberStatus{
"PENDING",
"ACTIVE",
"ASSOCIATING",
"DISASSOCIATING",
"DELETED",
}
}
type NumberType string
// Enum values for NumberType
const (
NumberTypeShortCode NumberType = "SHORT_CODE"
NumberTypeLongCode NumberType = "LONG_CODE"
NumberTypeTollFree NumberType = "TOLL_FREE"
NumberTypeTenDlc NumberType = "TEN_DLC"
NumberTypeSimulator NumberType = "SIMULATOR"
)
// Values returns all known values for NumberType. 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 (NumberType) Values() []NumberType {
return []NumberType{
"SHORT_CODE",
"LONG_CODE",
"TOLL_FREE",
"TEN_DLC",
"SIMULATOR",
}
}
type OptedOutFilterName string
// Enum values for OptedOutFilterName
const (
OptedOutFilterNameEndUserOptedOut OptedOutFilterName = "end-user-opted-out"
)
// Values returns all known values for OptedOutFilterName. 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 (OptedOutFilterName) Values() []OptedOutFilterName {
return []OptedOutFilterName{
"end-user-opted-out",
}
}
type PhoneNumberFilterName string
// Enum values for PhoneNumberFilterName
const (
PhoneNumberFilterNameStatus PhoneNumberFilterName = "status"
PhoneNumberFilterNameIsoCountryCode PhoneNumberFilterName = "iso-country-code"
PhoneNumberFilterNameMessageType PhoneNumberFilterName = "message-type"
PhoneNumberFilterNameNumberCapability PhoneNumberFilterName = "number-capability"
PhoneNumberFilterNameNumberType PhoneNumberFilterName = "number-type"
PhoneNumberFilterNameTwoWayEnabled PhoneNumberFilterName = "two-way-enabled"
PhoneNumberFilterNameSelfManagedOptOutsEnabled PhoneNumberFilterName = "self-managed-opt-outs-enabled"
PhoneNumberFilterNameOptOutListName PhoneNumberFilterName = "opt-out-list-name"
PhoneNumberFilterNameDeletionProtectionEnabled PhoneNumberFilterName = "deletion-protection-enabled"
PhoneNumberFilterNameTwoWayChannelArn PhoneNumberFilterName = "two-way-channel-arn"
)
// Values returns all known values for PhoneNumberFilterName. 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 (PhoneNumberFilterName) Values() []PhoneNumberFilterName {
return []PhoneNumberFilterName{
"status",
"iso-country-code",
"message-type",
"number-capability",
"number-type",
"two-way-enabled",
"self-managed-opt-outs-enabled",
"opt-out-list-name",
"deletion-protection-enabled",
"two-way-channel-arn",
}
}
type PoolFilterName string
// Enum values for PoolFilterName
const (
PoolFilterNameStatus PoolFilterName = "status"
PoolFilterNameMessageType PoolFilterName = "message-type"
PoolFilterNameTwoWayEnabled PoolFilterName = "two-way-enabled"
PoolFilterNameSelfManagedOptOutsEnabled PoolFilterName = "self-managed-opt-outs-enabled"
PoolFilterNameOptOutListName PoolFilterName = "opt-out-list-name"
PoolFilterNameSharedRoutesEnabled PoolFilterName = "shared-routes-enabled"
PoolFilterNameDeletionProtectionEnabled PoolFilterName = "deletion-protection-enabled"
PoolFilterNameTwoWayChannelArn PoolFilterName = "two-way-channel-arn"
)
// Values returns all known values for PoolFilterName. 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 (PoolFilterName) Values() []PoolFilterName {
return []PoolFilterName{
"status",
"message-type",
"two-way-enabled",
"self-managed-opt-outs-enabled",
"opt-out-list-name",
"shared-routes-enabled",
"deletion-protection-enabled",
"two-way-channel-arn",
}
}
type PoolOriginationIdentitiesFilterName string
// Enum values for PoolOriginationIdentitiesFilterName
const (
PoolOriginationIdentitiesFilterNameIsoCountryCode PoolOriginationIdentitiesFilterName = "iso-country-code"
PoolOriginationIdentitiesFilterNameNumberCapability PoolOriginationIdentitiesFilterName = "number-capability"
)
// Values returns all known values for PoolOriginationIdentitiesFilterName. 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 (PoolOriginationIdentitiesFilterName) Values() []PoolOriginationIdentitiesFilterName {
return []PoolOriginationIdentitiesFilterName{
"iso-country-code",
"number-capability",
}
}
type PoolStatus string
// Enum values for PoolStatus
const (
PoolStatusCreating PoolStatus = "CREATING"
PoolStatusActive PoolStatus = "ACTIVE"
PoolStatusDeleting PoolStatus = "DELETING"
)
// Values returns all known values for PoolStatus. 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 (PoolStatus) Values() []PoolStatus {
return []PoolStatus{
"CREATING",
"ACTIVE",
"DELETING",
}
}
type RegistrationAssociationBehavior string
// Enum values for RegistrationAssociationBehavior
const (
RegistrationAssociationBehaviorAssociateBeforeSubmit RegistrationAssociationBehavior = "ASSOCIATE_BEFORE_SUBMIT"
RegistrationAssociationBehaviorAssociateOnApproval RegistrationAssociationBehavior = "ASSOCIATE_ON_APPROVAL"
RegistrationAssociationBehaviorAssociateAfterComplete RegistrationAssociationBehavior = "ASSOCIATE_AFTER_COMPLETE"
)
// Values returns all known values for RegistrationAssociationBehavior. 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 (RegistrationAssociationBehavior) Values() []RegistrationAssociationBehavior {
return []RegistrationAssociationBehavior{
"ASSOCIATE_BEFORE_SUBMIT",
"ASSOCIATE_ON_APPROVAL",
"ASSOCIATE_AFTER_COMPLETE",
}
}
type RegistrationAssociationFilterName string
// Enum values for RegistrationAssociationFilterName
const (
RegistrationAssociationFilterNameResourceType RegistrationAssociationFilterName = "resource-type"
RegistrationAssociationFilterNameIsoCountryCode RegistrationAssociationFilterName = "iso-country-code"
)
// Values returns all known values for RegistrationAssociationFilterName. 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 (RegistrationAssociationFilterName) Values() []RegistrationAssociationFilterName {
return []RegistrationAssociationFilterName{
"resource-type",
"iso-country-code",
}
}
type RegistrationAttachmentFilterName string
// Enum values for RegistrationAttachmentFilterName
const (
RegistrationAttachmentFilterNameAttachmentStatus RegistrationAttachmentFilterName = "attachment-status"
)
// Values returns all known values for RegistrationAttachmentFilterName. 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 (RegistrationAttachmentFilterName) Values() []RegistrationAttachmentFilterName {
return []RegistrationAttachmentFilterName{
"attachment-status",
}
}
type RegistrationDisassociationBehavior string
// Enum values for RegistrationDisassociationBehavior
const (
RegistrationDisassociationBehaviorDisassociateAllClosesRegistration RegistrationDisassociationBehavior = "DISASSOCIATE_ALL_CLOSES_REGISTRATION"
RegistrationDisassociationBehaviorDisassociateAllAllowsDeleteRegistration RegistrationDisassociationBehavior = "DISASSOCIATE_ALL_ALLOWS_DELETE_REGISTRATION"
RegistrationDisassociationBehaviorDeleteRegistrationDisassociates RegistrationDisassociationBehavior = "DELETE_REGISTRATION_DISASSOCIATES"
)
// Values returns all known values for RegistrationDisassociationBehavior. 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 (RegistrationDisassociationBehavior) Values() []RegistrationDisassociationBehavior {
return []RegistrationDisassociationBehavior{
"DISASSOCIATE_ALL_CLOSES_REGISTRATION",
"DISASSOCIATE_ALL_ALLOWS_DELETE_REGISTRATION",
"DELETE_REGISTRATION_DISASSOCIATES",
}
}
type RegistrationFilterName string
// Enum values for RegistrationFilterName
const (
RegistrationFilterNameRegistrationType RegistrationFilterName = "registration-type"
RegistrationFilterNameRegistrationStatus RegistrationFilterName = "registration-status"
)
// Values returns all known values for RegistrationFilterName. 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 (RegistrationFilterName) Values() []RegistrationFilterName {
return []RegistrationFilterName{
"registration-type",
"registration-status",
}
}
type RegistrationStatus string
// Enum values for RegistrationStatus
const (
RegistrationStatusCreated RegistrationStatus = "CREATED"
RegistrationStatusSubmitted RegistrationStatus = "SUBMITTED"
RegistrationStatusReviewing RegistrationStatus = "REVIEWING"
RegistrationStatusProvisioning RegistrationStatus = "PROVISIONING"
RegistrationStatusComplete RegistrationStatus = "COMPLETE"
RegistrationStatusRequiresUpdates RegistrationStatus = "REQUIRES_UPDATES"
RegistrationStatusClosed RegistrationStatus = "CLOSED"
RegistrationStatusDeleted RegistrationStatus = "DELETED"
)
// Values returns all known values for RegistrationStatus. 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 (RegistrationStatus) Values() []RegistrationStatus {
return []RegistrationStatus{
"CREATED",
"SUBMITTED",
"REVIEWING",
"PROVISIONING",
"COMPLETE",
"REQUIRES_UPDATES",
"CLOSED",
"DELETED",
}
}
type RegistrationTypeFilterName string
// Enum values for RegistrationTypeFilterName
const (
RegistrationTypeFilterNameSupportedAssociationResourceType RegistrationTypeFilterName = "supported-association-resource-type"
RegistrationTypeFilterNameSupportedAssociationIsoCountryCode RegistrationTypeFilterName = "supported-association-iso-country-code"
)
// Values returns all known values for RegistrationTypeFilterName. 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 (RegistrationTypeFilterName) Values() []RegistrationTypeFilterName {
return []RegistrationTypeFilterName{
"supported-association-resource-type",
"supported-association-iso-country-code",
}
}
type RegistrationVersionFilterName string
// Enum values for RegistrationVersionFilterName
const (
RegistrationVersionFilterNameRegistrationVersionStatus RegistrationVersionFilterName = "registration-version-status"
)
// Values returns all known values for RegistrationVersionFilterName. 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 (RegistrationVersionFilterName) Values() []RegistrationVersionFilterName {
return []RegistrationVersionFilterName{
"registration-version-status",
}
}
type RegistrationVersionStatus string
// Enum values for RegistrationVersionStatus
const (
RegistrationVersionStatusDraft RegistrationVersionStatus = "DRAFT"
RegistrationVersionStatusSubmitted RegistrationVersionStatus = "SUBMITTED"
RegistrationVersionStatusReviewing RegistrationVersionStatus = "REVIEWING"
RegistrationVersionStatusApproved RegistrationVersionStatus = "APPROVED"
RegistrationVersionStatusDiscarded RegistrationVersionStatus = "DISCARDED"
RegistrationVersionStatusDenied RegistrationVersionStatus = "DENIED"
RegistrationVersionStatusRevoked RegistrationVersionStatus = "REVOKED"
RegistrationVersionStatusArchived RegistrationVersionStatus = "ARCHIVED"
)
// Values returns all known values for RegistrationVersionStatus. 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 (RegistrationVersionStatus) Values() []RegistrationVersionStatus {
return []RegistrationVersionStatus{
"DRAFT",
"SUBMITTED",
"REVIEWING",
"APPROVED",
"DISCARDED",
"DENIED",
"REVOKED",
"ARCHIVED",
}
}
type RequestableNumberType string
// Enum values for RequestableNumberType
const (
RequestableNumberTypeLongCode RequestableNumberType = "LONG_CODE"
RequestableNumberTypeTollFree RequestableNumberType = "TOLL_FREE"
RequestableNumberTypeTenDlc RequestableNumberType = "TEN_DLC"
RequestableNumberTypeSimulator RequestableNumberType = "SIMULATOR"
)
// Values returns all known values for RequestableNumberType. 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 (RequestableNumberType) Values() []RequestableNumberType {
return []RequestableNumberType{
"LONG_CODE",
"TOLL_FREE",
"TEN_DLC",
"SIMULATOR",
}
}
type ResourceType string
// Enum values for ResourceType
const (
ResourceTypeAccount ResourceType = "account"
ResourceTypePhoneNumber ResourceType = "phone-number"
ResourceTypeSenderId ResourceType = "sender-id"
ResourceTypePool ResourceType = "pool"
ResourceTypeConfigurationSet ResourceType = "configuration-set"
ResourceTypeOptOutList ResourceType = "opt-out-list"
ResourceTypeEventDestination ResourceType = "event-destination"
ResourceTypeKeyword ResourceType = "keyword"
ResourceTypeOptedOutNumber ResourceType = "opted-out-number"
ResourceTypeRegistration ResourceType = "registration"
ResourceTypeRegistrationAttachment ResourceType = "registration-attachment"
ResourceTypeVerifiedDestinationNumber ResourceType = "verified-destination-number"
)
// 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{
"account",
"phone-number",
"sender-id",
"pool",
"configuration-set",
"opt-out-list",
"event-destination",
"keyword",
"opted-out-number",
"registration",
"registration-attachment",
"verified-destination-number",
}
}
type SenderIdFilterName string
// Enum values for SenderIdFilterName
const (
SenderIdFilterNameSenderId SenderIdFilterName = "sender-id"
SenderIdFilterNameIsoCountryCode SenderIdFilterName = "iso-country-code"
SenderIdFilterNameMessageType SenderIdFilterName = "message-type"
SenderIdFilterNameDeletionProtectionEnabled SenderIdFilterName = "deletion-protection-enabled"
SenderIdFilterNameRegistered SenderIdFilterName = "registered"
)
// Values returns all known values for SenderIdFilterName. 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 (SenderIdFilterName) Values() []SenderIdFilterName {
return []SenderIdFilterName{
"sender-id",
"iso-country-code",
"message-type",
"deletion-protection-enabled",
"registered",
}
}
type ServiceQuotaExceededExceptionReason string
// Enum values for ServiceQuotaExceededExceptionReason
const (
ServiceQuotaExceededExceptionReasonAssociationsPerRegistration ServiceQuotaExceededExceptionReason = "ASSOCIATIONS_PER_REGISTRATION"
ServiceQuotaExceededExceptionReasonConfigurationSetsPerAccount ServiceQuotaExceededExceptionReason = "CONFIGURATION_SETS_PER_ACCOUNT"
ServiceQuotaExceededExceptionReasonDailyDestinationCallLimit ServiceQuotaExceededExceptionReason = "DAILY_DESTINATION_CALL_LIMIT"
ServiceQuotaExceededExceptionReasonEventDestinationsPerConfigurationSet ServiceQuotaExceededExceptionReason = "EVENT_DESTINATIONS_PER_CONFIGURATION_SET"
ServiceQuotaExceededExceptionReasonKeywordsPerPhoneNumber ServiceQuotaExceededExceptionReason = "KEYWORDS_PER_PHONE_NUMBER"
ServiceQuotaExceededExceptionReasonKeywordsPerPool ServiceQuotaExceededExceptionReason = "KEYWORDS_PER_POOL"
ServiceQuotaExceededExceptionReasonMonthlySpendLimitReachedForText ServiceQuotaExceededExceptionReason = "MONTHLY_SPEND_LIMIT_REACHED_FOR_TEXT"
ServiceQuotaExceededExceptionReasonMonthlySpendLimitReachedForVoice ServiceQuotaExceededExceptionReason = "MONTHLY_SPEND_LIMIT_REACHED_FOR_VOICE"
ServiceQuotaExceededExceptionReasonOptOutListsPerAccount ServiceQuotaExceededExceptionReason = "OPT_OUT_LISTS_PER_ACCOUNT"
ServiceQuotaExceededExceptionReasonOriginationIdentitiesPerPool ServiceQuotaExceededExceptionReason = "ORIGINATION_IDENTITIES_PER_POOL"
ServiceQuotaExceededExceptionReasonPhoneNumbersPerAccount ServiceQuotaExceededExceptionReason = "PHONE_NUMBERS_PER_ACCOUNT"
ServiceQuotaExceededExceptionReasonPhoneNumbersPerRegistration ServiceQuotaExceededExceptionReason = "PHONE_NUMBERS_PER_REGISTRATION"
ServiceQuotaExceededExceptionReasonPoolsPerAccount ServiceQuotaExceededExceptionReason = "POOLS_PER_ACCOUNT"
ServiceQuotaExceededExceptionReasonRegistrationAttachmentsCreatedPerDay ServiceQuotaExceededExceptionReason = "REGISTRATION_ATTACHMENTS_CREATED_PER_DAY"
ServiceQuotaExceededExceptionReasonRegistrationAttachmentsPerAccount ServiceQuotaExceededExceptionReason = "REGISTRATION_ATTACHMENTS_PER_ACCOUNT"
ServiceQuotaExceededExceptionReasonRegistrationVersionsCreatedPerDay ServiceQuotaExceededExceptionReason = "REGISTRATION_VERSIONS_CREATED_PER_DAY"
ServiceQuotaExceededExceptionReasonRegistrationsPerAccount ServiceQuotaExceededExceptionReason = "REGISTRATIONS_PER_ACCOUNT"
ServiceQuotaExceededExceptionReasonSenderIdsPerAccount ServiceQuotaExceededExceptionReason = "SENDER_IDS_PER_ACCOUNT"
ServiceQuotaExceededExceptionReasonTagsPerResource ServiceQuotaExceededExceptionReason = "TAGS_PER_RESOURCE"
ServiceQuotaExceededExceptionReasonVerifiedDestinationNumbersPerAccount ServiceQuotaExceededExceptionReason = "VERIFIED_DESTINATION_NUMBERS_PER_ACCOUNT"
ServiceQuotaExceededExceptionReasonVerificationAttemptsPerDay ServiceQuotaExceededExceptionReason = "VERIFICATION_ATTEMPTS_PER_DAY"
)
// Values returns all known values for ServiceQuotaExceededExceptionReason. 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 (ServiceQuotaExceededExceptionReason) Values() []ServiceQuotaExceededExceptionReason {
return []ServiceQuotaExceededExceptionReason{
"ASSOCIATIONS_PER_REGISTRATION",
"CONFIGURATION_SETS_PER_ACCOUNT",
"DAILY_DESTINATION_CALL_LIMIT",
"EVENT_DESTINATIONS_PER_CONFIGURATION_SET",
"KEYWORDS_PER_PHONE_NUMBER",
"KEYWORDS_PER_POOL",
"MONTHLY_SPEND_LIMIT_REACHED_FOR_TEXT",
"MONTHLY_SPEND_LIMIT_REACHED_FOR_VOICE",
"OPT_OUT_LISTS_PER_ACCOUNT",
"ORIGINATION_IDENTITIES_PER_POOL",
"PHONE_NUMBERS_PER_ACCOUNT",
"PHONE_NUMBERS_PER_REGISTRATION",
"POOLS_PER_ACCOUNT",
"REGISTRATION_ATTACHMENTS_CREATED_PER_DAY",
"REGISTRATION_ATTACHMENTS_PER_ACCOUNT",
"REGISTRATION_VERSIONS_CREATED_PER_DAY",
"REGISTRATIONS_PER_ACCOUNT",
"SENDER_IDS_PER_ACCOUNT",
"TAGS_PER_RESOURCE",
"VERIFIED_DESTINATION_NUMBERS_PER_ACCOUNT",
"VERIFICATION_ATTEMPTS_PER_DAY",
}
}
type SpendLimitName string
// Enum values for SpendLimitName
const (
SpendLimitNameTextMessageMonthlySpendLimit SpendLimitName = "TEXT_MESSAGE_MONTHLY_SPEND_LIMIT"
SpendLimitNameVoiceMessageMonthlySpendLimit SpendLimitName = "VOICE_MESSAGE_MONTHLY_SPEND_LIMIT"
)
// Values returns all known values for SpendLimitName. 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 (SpendLimitName) Values() []SpendLimitName {
return []SpendLimitName{
"TEXT_MESSAGE_MONTHLY_SPEND_LIMIT",
"VOICE_MESSAGE_MONTHLY_SPEND_LIMIT",
}
}
type ValidationExceptionReason string
// Enum values for ValidationExceptionReason
const (
ValidationExceptionReasonCannotAddOptedOutNumber ValidationExceptionReason = "CANNOT_ADD_OPTED_OUT_NUMBER"
ValidationExceptionReasonCannotParse ValidationExceptionReason = "CANNOT_PARSE"
ValidationExceptionReasonCountryCodeMismatch ValidationExceptionReason = "COUNTRY_CODE_MISMATCH"
ValidationExceptionReasonDestinationCountryBlocked ValidationExceptionReason = "DESTINATION_COUNTRY_BLOCKED"
ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "FIELD_VALIDATION_FAILED"
ValidationExceptionReasonAttachmentTypeNotSupported ValidationExceptionReason = "ATTACHMENT_TYPE_NOT_SUPPORTED"
ValidationExceptionReasonInvalidArn ValidationExceptionReason = "INVALID_ARN"
ValidationExceptionReasonInvalidFilterValues ValidationExceptionReason = "INVALID_FILTER_VALUES"
ValidationExceptionReasonInvalidIdentityForDestinationCountry ValidationExceptionReason = "INVALID_IDENTITY_FOR_DESTINATION_COUNTRY"
ValidationExceptionReasonInvalidNextToken ValidationExceptionReason = "INVALID_NEXT_TOKEN"
ValidationExceptionReasonInvalidParameter ValidationExceptionReason = "INVALID_PARAMETER"
ValidationExceptionReasonInvalidRequest ValidationExceptionReason = "INVALID_REQUEST"
ValidationExceptionReasonInvalidRegistrationAssociation ValidationExceptionReason = "INVALID_REGISTRATION_ASSOCIATION"
ValidationExceptionReasonMaximumSizeExceeded ValidationExceptionReason = "MAXIMUM_SIZE_EXCEEDED"
ValidationExceptionReasonMissingParameter ValidationExceptionReason = "MISSING_PARAMETER"
ValidationExceptionReasonParametersCannotBeUsedTogether ValidationExceptionReason = "PARAMETERS_CANNOT_BE_USED_TOGETHER"
ValidationExceptionReasonPhoneNumberCannotBeOptedIn ValidationExceptionReason = "PHONE_NUMBER_CANNOT_BE_OPTED_IN"
ValidationExceptionReasonPhoneNumberCannotBeReleased ValidationExceptionReason = "PHONE_NUMBER_CANNOT_BE_RELEASED"
ValidationExceptionReasonPriceOverThreshold ValidationExceptionReason = "PRICE_OVER_THRESHOLD"
ValidationExceptionReasonResourceNotAccessible ValidationExceptionReason = "RESOURCE_NOT_ACCESSIBLE"
ValidationExceptionReasonRequestedSpendLimitHigherThanServiceLimit ValidationExceptionReason = "REQUESTED_SPEND_LIMIT_HIGHER_THAN_SERVICE_LIMIT"
ValidationExceptionReasonSenderIdNotRegistered ValidationExceptionReason = "SENDER_ID_NOT_REGISTERED"
ValidationExceptionReasonSenderIdNotSupported ValidationExceptionReason = "SENDER_ID_NOT_SUPPORTED"
ValidationExceptionReasonSenderIdRequiresRegistration ValidationExceptionReason = "SENDER_ID_REQUIRES_REGISTRATION"
ValidationExceptionReasonTwoWayTopicNotPresent ValidationExceptionReason = "TWO_WAY_TOPIC_NOT_PRESENT"
ValidationExceptionReasonTwoWayNotEnabled ValidationExceptionReason = "TWO_WAY_NOT_ENABLED"
ValidationExceptionReasonTwoWayNotSupportedInCountry ValidationExceptionReason = "TWO_WAY_NOT_SUPPORTED_IN_COUNTRY"
ValidationExceptionReasonTwoWayNotSupportedInRegion ValidationExceptionReason = "TWO_WAY_NOT_SUPPORTED_IN_REGION"
ValidationExceptionReasonTwoWayChannelNotPresent ValidationExceptionReason = "TWO_WAY_CHANNEL_NOT_PRESENT"
ValidationExceptionReasonUnknownRegistrationField ValidationExceptionReason = "UNKNOWN_REGISTRATION_FIELD"
ValidationExceptionReasonUnknownRegistrationSection ValidationExceptionReason = "UNKNOWN_REGISTRATION_SECTION"
ValidationExceptionReasonUnknownRegistrationType ValidationExceptionReason = "UNKNOWN_REGISTRATION_TYPE"
ValidationExceptionReasonUnknownRegistrationVersion ValidationExceptionReason = "UNKNOWN_REGISTRATION_VERSION"
ValidationExceptionReasonUnknownOperation ValidationExceptionReason = "UNKNOWN_OPERATION"
ValidationExceptionReasonRegistrationFieldCannotBeDeleted ValidationExceptionReason = "REGISTRATION_FIELD_CANNOT_BE_DELETED"
ValidationExceptionReasonVerificationCodeMismatch ValidationExceptionReason = "VERIFICATION_CODE_MISMATCH"
ValidationExceptionReasonVoiceCapabilityNotAvailable ValidationExceptionReason = "VOICE_CAPABILITY_NOT_AVAILABLE"
ValidationExceptionReasonOther ValidationExceptionReason = "OTHER"
)
// Values returns all known values for ValidationExceptionReason. 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 (ValidationExceptionReason) Values() []ValidationExceptionReason {
return []ValidationExceptionReason{
"CANNOT_ADD_OPTED_OUT_NUMBER",
"CANNOT_PARSE",
"COUNTRY_CODE_MISMATCH",
"DESTINATION_COUNTRY_BLOCKED",
"FIELD_VALIDATION_FAILED",
"ATTACHMENT_TYPE_NOT_SUPPORTED",
"INVALID_ARN",
"INVALID_FILTER_VALUES",
"INVALID_IDENTITY_FOR_DESTINATION_COUNTRY",
"INVALID_NEXT_TOKEN",
"INVALID_PARAMETER",
"INVALID_REQUEST",
"INVALID_REGISTRATION_ASSOCIATION",
"MAXIMUM_SIZE_EXCEEDED",
"MISSING_PARAMETER",
"PARAMETERS_CANNOT_BE_USED_TOGETHER",
"PHONE_NUMBER_CANNOT_BE_OPTED_IN",
"PHONE_NUMBER_CANNOT_BE_RELEASED",
"PRICE_OVER_THRESHOLD",
"RESOURCE_NOT_ACCESSIBLE",
"REQUESTED_SPEND_LIMIT_HIGHER_THAN_SERVICE_LIMIT",
"SENDER_ID_NOT_REGISTERED",
"SENDER_ID_NOT_SUPPORTED",
"SENDER_ID_REQUIRES_REGISTRATION",
"TWO_WAY_TOPIC_NOT_PRESENT",
"TWO_WAY_NOT_ENABLED",
"TWO_WAY_NOT_SUPPORTED_IN_COUNTRY",
"TWO_WAY_NOT_SUPPORTED_IN_REGION",
"TWO_WAY_CHANNEL_NOT_PRESENT",
"UNKNOWN_REGISTRATION_FIELD",
"UNKNOWN_REGISTRATION_SECTION",
"UNKNOWN_REGISTRATION_TYPE",
"UNKNOWN_REGISTRATION_VERSION",
"UNKNOWN_OPERATION",
"REGISTRATION_FIELD_CANNOT_BE_DELETED",
"VERIFICATION_CODE_MISMATCH",
"VOICE_CAPABILITY_NOT_AVAILABLE",
"OTHER",
}
}
type VerificationChannel string
// Enum values for VerificationChannel
const (
VerificationChannelText VerificationChannel = "TEXT"
VerificationChannelVoice VerificationChannel = "VOICE"
)
// Values returns all known values for VerificationChannel. 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 (VerificationChannel) Values() []VerificationChannel {
return []VerificationChannel{
"TEXT",
"VOICE",
}
}
type VerificationStatus string
// Enum values for VerificationStatus
const (
VerificationStatusPending VerificationStatus = "PENDING"
VerificationStatusVerified VerificationStatus = "VERIFIED"
)
// Values returns all known values for VerificationStatus. 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 (VerificationStatus) Values() []VerificationStatus {
return []VerificationStatus{
"PENDING",
"VERIFIED",
}
}
type VerifiedDestinationNumberFilterName string
// Enum values for VerifiedDestinationNumberFilterName
const (
VerifiedDestinationNumberFilterNameStatus VerifiedDestinationNumberFilterName = "status"
)
// Values returns all known values for VerifiedDestinationNumberFilterName. 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 (VerifiedDestinationNumberFilterName) Values() []VerifiedDestinationNumberFilterName {
return []VerifiedDestinationNumberFilterName{
"status",
}
}
type VoiceId string
// Enum values for VoiceId
const (
VoiceIdAmy VoiceId = "AMY"
VoiceIdAstrid VoiceId = "ASTRID"
VoiceIdBianca VoiceId = "BIANCA"
VoiceIdBrian VoiceId = "BRIAN"
VoiceIdCamila VoiceId = "CAMILA"
VoiceIdCarla VoiceId = "CARLA"
VoiceIdCarmen VoiceId = "CARMEN"
VoiceIdCeline VoiceId = "CELINE"
VoiceIdChantal VoiceId = "CHANTAL"
VoiceIdConchita VoiceId = "CONCHITA"
VoiceIdCristiano VoiceId = "CRISTIANO"
VoiceIdDora VoiceId = "DORA"
VoiceIdEmma VoiceId = "EMMA"
VoiceIdEnrique VoiceId = "ENRIQUE"
VoiceIdEwa VoiceId = "EWA"
VoiceIdFiliz VoiceId = "FILIZ"
VoiceIdGeraint VoiceId = "GERAINT"
VoiceIdGiorgio VoiceId = "GIORGIO"
VoiceIdGwyneth VoiceId = "GWYNETH"
VoiceIdHans VoiceId = "HANS"
VoiceIdInes VoiceId = "INES"
VoiceIdIvy VoiceId = "IVY"
VoiceIdJacek VoiceId = "JACEK"
VoiceIdJan VoiceId = "JAN"
VoiceIdJoanna VoiceId = "JOANNA"
VoiceIdJoey VoiceId = "JOEY"
VoiceIdJustin VoiceId = "JUSTIN"
VoiceIdKarl VoiceId = "KARL"
VoiceIdKendra VoiceId = "KENDRA"
VoiceIdKimberly VoiceId = "KIMBERLY"
VoiceIdLea VoiceId = "LEA"
VoiceIdLiv VoiceId = "LIV"
VoiceIdLotte VoiceId = "LOTTE"
VoiceIdLucia VoiceId = "LUCIA"
VoiceIdLupe VoiceId = "LUPE"
VoiceIdMads VoiceId = "MADS"
VoiceIdMaja VoiceId = "MAJA"
VoiceIdMarlene VoiceId = "MARLENE"
VoiceIdMathieu VoiceId = "MATHIEU"
VoiceIdMatthew VoiceId = "MATTHEW"
VoiceIdMaxim VoiceId = "MAXIM"
VoiceIdMia VoiceId = "MIA"
VoiceIdMiguel VoiceId = "MIGUEL"
VoiceIdMizuki VoiceId = "MIZUKI"
VoiceIdNaja VoiceId = "NAJA"
VoiceIdNicole VoiceId = "NICOLE"
VoiceIdPenelope VoiceId = "PENELOPE"
VoiceIdRaveena VoiceId = "RAVEENA"
VoiceIdRicardo VoiceId = "RICARDO"
VoiceIdRuben VoiceId = "RUBEN"
VoiceIdRussell VoiceId = "RUSSELL"
VoiceIdSalli VoiceId = "SALLI"
VoiceIdSeoyeon VoiceId = "SEOYEON"
VoiceIdTakumi VoiceId = "TAKUMI"
VoiceIdTatyana VoiceId = "TATYANA"
VoiceIdVicki VoiceId = "VICKI"
VoiceIdVitoria VoiceId = "VITORIA"
VoiceIdZeina VoiceId = "ZEINA"
VoiceIdZhiyu VoiceId = "ZHIYU"
)
// Values returns all known values for VoiceId. 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 (VoiceId) Values() []VoiceId {
return []VoiceId{
"AMY",
"ASTRID",
"BIANCA",
"BRIAN",
"CAMILA",
"CARLA",
"CARMEN",
"CELINE",
"CHANTAL",
"CONCHITA",
"CRISTIANO",
"DORA",
"EMMA",
"ENRIQUE",
"EWA",
"FILIZ",
"GERAINT",
"GIORGIO",
"GWYNETH",
"HANS",
"INES",
"IVY",
"JACEK",
"JAN",
"JOANNA",
"JOEY",
"JUSTIN",
"KARL",
"KENDRA",
"KIMBERLY",
"LEA",
"LIV",
"LOTTE",
"LUCIA",
"LUPE",
"MADS",
"MAJA",
"MARLENE",
"MATHIEU",
"MATTHEW",
"MAXIM",
"MIA",
"MIGUEL",
"MIZUKI",
"NAJA",
"NICOLE",
"PENELOPE",
"RAVEENA",
"RICARDO",
"RUBEN",
"RUSSELL",
"SALLI",
"SEOYEON",
"TAKUMI",
"TATYANA",
"VICKI",
"VITORIA",
"ZEINA",
"ZHIYU",
}
}
type VoiceMessageBodyTextType string
// Enum values for VoiceMessageBodyTextType
const (
VoiceMessageBodyTextTypeText VoiceMessageBodyTextType = "TEXT"
VoiceMessageBodyTextTypeSsml VoiceMessageBodyTextType = "SSML"
)
// Values returns all known values for VoiceMessageBodyTextType. 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 (VoiceMessageBodyTextType) Values() []VoiceMessageBodyTextType {
return []VoiceMessageBodyTextType{
"TEXT",
"SSML",
}
}
|