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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AccountStatus string
// Enum values for AccountStatus
const (
AccountStatusSuspended AccountStatus = "Suspended"
AccountStatusActive AccountStatus = "Active"
)
// Values returns all known values for AccountStatus. 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 (AccountStatus) Values() []AccountStatus {
return []AccountStatus{
"Suspended",
"Active",
}
}
type AccountType string
// Enum values for AccountType
const (
AccountTypeTeam AccountType = "Team"
AccountTypeEnterpriseDirectory AccountType = "EnterpriseDirectory"
AccountTypeEnterpriseLWA AccountType = "EnterpriseLWA"
AccountTypeEnterpriseOIDC AccountType = "EnterpriseOIDC"
)
// Values returns all known values for AccountType. 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 (AccountType) Values() []AccountType {
return []AccountType{
"Team",
"EnterpriseDirectory",
"EnterpriseLWA",
"EnterpriseOIDC",
}
}
type AppInstanceDataType string
// Enum values for AppInstanceDataType
const (
AppInstanceDataTypeChannel AppInstanceDataType = "Channel"
AppInstanceDataTypeChannelMessage AppInstanceDataType = "ChannelMessage"
)
// Values returns all known values for AppInstanceDataType. 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 (AppInstanceDataType) Values() []AppInstanceDataType {
return []AppInstanceDataType{
"Channel",
"ChannelMessage",
}
}
type ArtifactsState string
// Enum values for ArtifactsState
const (
ArtifactsStateEnabled ArtifactsState = "Enabled"
ArtifactsStateDisabled ArtifactsState = "Disabled"
)
// Values returns all known values for ArtifactsState. 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 (ArtifactsState) Values() []ArtifactsState {
return []ArtifactsState{
"Enabled",
"Disabled",
}
}
type AudioMuxType string
// Enum values for AudioMuxType
const (
AudioMuxTypeAudioOnly AudioMuxType = "AudioOnly"
AudioMuxTypeAudioWithActiveSpeakerVideo AudioMuxType = "AudioWithActiveSpeakerVideo"
)
// Values returns all known values for AudioMuxType. 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 (AudioMuxType) Values() []AudioMuxType {
return []AudioMuxType{
"AudioOnly",
"AudioWithActiveSpeakerVideo",
}
}
type BotType string
// Enum values for BotType
const (
BotTypeChatBot BotType = "ChatBot"
)
// Values returns all known values for BotType. 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 (BotType) Values() []BotType {
return []BotType{
"ChatBot",
}
}
type CallingNameStatus string
// Enum values for CallingNameStatus
const (
CallingNameStatusUnassigned CallingNameStatus = "Unassigned"
CallingNameStatusUpdateInProgress CallingNameStatus = "UpdateInProgress"
CallingNameStatusUpdateSucceeded CallingNameStatus = "UpdateSucceeded"
CallingNameStatusUpdateFailed CallingNameStatus = "UpdateFailed"
)
// Values returns all known values for CallingNameStatus. 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 (CallingNameStatus) Values() []CallingNameStatus {
return []CallingNameStatus{
"Unassigned",
"UpdateInProgress",
"UpdateSucceeded",
"UpdateFailed",
}
}
type Capability string
// Enum values for Capability
const (
CapabilityVoice Capability = "Voice"
CapabilitySms Capability = "SMS"
)
// Values returns all known values for Capability. 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 (Capability) Values() []Capability {
return []Capability{
"Voice",
"SMS",
}
}
type ChannelMembershipType string
// Enum values for ChannelMembershipType
const (
ChannelMembershipTypeDefault ChannelMembershipType = "DEFAULT"
ChannelMembershipTypeHidden ChannelMembershipType = "HIDDEN"
)
// Values returns all known values for ChannelMembershipType. 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 (ChannelMembershipType) Values() []ChannelMembershipType {
return []ChannelMembershipType{
"DEFAULT",
"HIDDEN",
}
}
type ChannelMessagePersistenceType string
// Enum values for ChannelMessagePersistenceType
const (
ChannelMessagePersistenceTypePersistent ChannelMessagePersistenceType = "PERSISTENT"
ChannelMessagePersistenceTypeNonPersistent ChannelMessagePersistenceType = "NON_PERSISTENT"
)
// Values returns all known values for ChannelMessagePersistenceType. 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 (ChannelMessagePersistenceType) Values() []ChannelMessagePersistenceType {
return []ChannelMessagePersistenceType{
"PERSISTENT",
"NON_PERSISTENT",
}
}
type ChannelMessageType string
// Enum values for ChannelMessageType
const (
ChannelMessageTypeStandard ChannelMessageType = "STANDARD"
ChannelMessageTypeControl ChannelMessageType = "CONTROL"
)
// Values returns all known values for ChannelMessageType. 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 (ChannelMessageType) Values() []ChannelMessageType {
return []ChannelMessageType{
"STANDARD",
"CONTROL",
}
}
type ChannelMode string
// Enum values for ChannelMode
const (
ChannelModeUnrestricted ChannelMode = "UNRESTRICTED"
ChannelModeRestricted ChannelMode = "RESTRICTED"
)
// Values returns all known values for ChannelMode. 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 (ChannelMode) Values() []ChannelMode {
return []ChannelMode{
"UNRESTRICTED",
"RESTRICTED",
}
}
type ChannelPrivacy string
// Enum values for ChannelPrivacy
const (
ChannelPrivacyPublic ChannelPrivacy = "PUBLIC"
ChannelPrivacyPrivate ChannelPrivacy = "PRIVATE"
)
// Values returns all known values for ChannelPrivacy. 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 (ChannelPrivacy) Values() []ChannelPrivacy {
return []ChannelPrivacy{
"PUBLIC",
"PRIVATE",
}
}
type ContentMuxType string
// Enum values for ContentMuxType
const (
ContentMuxTypeContentOnly ContentMuxType = "ContentOnly"
)
// Values returns all known values for ContentMuxType. 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 (ContentMuxType) Values() []ContentMuxType {
return []ContentMuxType{
"ContentOnly",
}
}
type EmailStatus string
// Enum values for EmailStatus
const (
EmailStatusNotSent EmailStatus = "NotSent"
EmailStatusSent EmailStatus = "Sent"
EmailStatusFailed EmailStatus = "Failed"
)
// Values returns all known values for EmailStatus. 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 (EmailStatus) Values() []EmailStatus {
return []EmailStatus{
"NotSent",
"Sent",
"Failed",
}
}
type ErrorCode string
// Enum values for ErrorCode
const (
ErrorCodeBadRequest ErrorCode = "BadRequest"
ErrorCodeConflict ErrorCode = "Conflict"
ErrorCodeForbidden ErrorCode = "Forbidden"
ErrorCodeNotFound ErrorCode = "NotFound"
ErrorCodePreconditionFailed ErrorCode = "PreconditionFailed"
ErrorCodeResourceLimitExceeded ErrorCode = "ResourceLimitExceeded"
ErrorCodeServiceFailure ErrorCode = "ServiceFailure"
ErrorCodeAccessDenied ErrorCode = "AccessDenied"
ErrorCodeServiceUnavailable ErrorCode = "ServiceUnavailable"
ErrorCodeThrottled ErrorCode = "Throttled"
ErrorCodeThrottling ErrorCode = "Throttling"
ErrorCodeUnauthorized ErrorCode = "Unauthorized"
ErrorCodeUnprocessable ErrorCode = "Unprocessable"
ErrorCodeVoiceConnectorGroupAssociationsExist ErrorCode = "VoiceConnectorGroupAssociationsExist"
ErrorCodePhoneNumberAssociationsExist ErrorCode = "PhoneNumberAssociationsExist"
)
// Values returns all known values for ErrorCode. 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 (ErrorCode) Values() []ErrorCode {
return []ErrorCode{
"BadRequest",
"Conflict",
"Forbidden",
"NotFound",
"PreconditionFailed",
"ResourceLimitExceeded",
"ServiceFailure",
"AccessDenied",
"ServiceUnavailable",
"Throttled",
"Throttling",
"Unauthorized",
"Unprocessable",
"VoiceConnectorGroupAssociationsExist",
"PhoneNumberAssociationsExist",
}
}
type GeoMatchLevel string
// Enum values for GeoMatchLevel
const (
GeoMatchLevelCountry GeoMatchLevel = "Country"
GeoMatchLevelAreaCode GeoMatchLevel = "AreaCode"
)
// Values returns all known values for GeoMatchLevel. 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 (GeoMatchLevel) Values() []GeoMatchLevel {
return []GeoMatchLevel{
"Country",
"AreaCode",
}
}
type InviteStatus string
// Enum values for InviteStatus
const (
InviteStatusPending InviteStatus = "Pending"
InviteStatusAccepted InviteStatus = "Accepted"
InviteStatusFailed InviteStatus = "Failed"
)
// Values returns all known values for InviteStatus. 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 (InviteStatus) Values() []InviteStatus {
return []InviteStatus{
"Pending",
"Accepted",
"Failed",
}
}
type License string
// Enum values for License
const (
LicenseBasic License = "Basic"
LicensePlus License = "Plus"
LicensePro License = "Pro"
LicenseProTrial License = "ProTrial"
)
// Values returns all known values for License. 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 (License) Values() []License {
return []License{
"Basic",
"Plus",
"Pro",
"ProTrial",
}
}
type MediaPipelineSinkType string
// Enum values for MediaPipelineSinkType
const (
MediaPipelineSinkTypeS3Bucket MediaPipelineSinkType = "S3Bucket"
)
// Values returns all known values for MediaPipelineSinkType. 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 (MediaPipelineSinkType) Values() []MediaPipelineSinkType {
return []MediaPipelineSinkType{
"S3Bucket",
}
}
type MediaPipelineSourceType string
// Enum values for MediaPipelineSourceType
const (
MediaPipelineSourceTypeChimeSdkMeeting MediaPipelineSourceType = "ChimeSdkMeeting"
)
// Values returns all known values for MediaPipelineSourceType. 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 (MediaPipelineSourceType) Values() []MediaPipelineSourceType {
return []MediaPipelineSourceType{
"ChimeSdkMeeting",
}
}
type MediaPipelineStatus string
// Enum values for MediaPipelineStatus
const (
MediaPipelineStatusInitializing MediaPipelineStatus = "Initializing"
MediaPipelineStatusInProgress MediaPipelineStatus = "InProgress"
MediaPipelineStatusFailed MediaPipelineStatus = "Failed"
MediaPipelineStatusStopping MediaPipelineStatus = "Stopping"
MediaPipelineStatusStopped MediaPipelineStatus = "Stopped"
)
// Values returns all known values for MediaPipelineStatus. 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 (MediaPipelineStatus) Values() []MediaPipelineStatus {
return []MediaPipelineStatus{
"Initializing",
"InProgress",
"Failed",
"Stopping",
"Stopped",
}
}
type MemberType string
// Enum values for MemberType
const (
MemberTypeUser MemberType = "User"
MemberTypeBot MemberType = "Bot"
MemberTypeWebhook MemberType = "Webhook"
)
// Values returns all known values for MemberType. 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 (MemberType) Values() []MemberType {
return []MemberType{
"User",
"Bot",
"Webhook",
}
}
type NotificationTarget string
// Enum values for NotificationTarget
const (
NotificationTargetEventBridge NotificationTarget = "EventBridge"
NotificationTargetSns NotificationTarget = "SNS"
NotificationTargetSqs NotificationTarget = "SQS"
)
// Values returns all known values for NotificationTarget. 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 (NotificationTarget) Values() []NotificationTarget {
return []NotificationTarget{
"EventBridge",
"SNS",
"SQS",
}
}
type NumberSelectionBehavior string
// Enum values for NumberSelectionBehavior
const (
NumberSelectionBehaviorPreferSticky NumberSelectionBehavior = "PreferSticky"
NumberSelectionBehaviorAvoidSticky NumberSelectionBehavior = "AvoidSticky"
)
// Values returns all known values for NumberSelectionBehavior. 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 (NumberSelectionBehavior) Values() []NumberSelectionBehavior {
return []NumberSelectionBehavior{
"PreferSticky",
"AvoidSticky",
}
}
type OrderedPhoneNumberStatus string
// Enum values for OrderedPhoneNumberStatus
const (
OrderedPhoneNumberStatusProcessing OrderedPhoneNumberStatus = "Processing"
OrderedPhoneNumberStatusAcquired OrderedPhoneNumberStatus = "Acquired"
OrderedPhoneNumberStatusFailed OrderedPhoneNumberStatus = "Failed"
)
// Values returns all known values for OrderedPhoneNumberStatus. 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 (OrderedPhoneNumberStatus) Values() []OrderedPhoneNumberStatus {
return []OrderedPhoneNumberStatus{
"Processing",
"Acquired",
"Failed",
}
}
type OriginationRouteProtocol string
// Enum values for OriginationRouteProtocol
const (
OriginationRouteProtocolTcp OriginationRouteProtocol = "TCP"
OriginationRouteProtocolUdp OriginationRouteProtocol = "UDP"
)
// Values returns all known values for OriginationRouteProtocol. 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 (OriginationRouteProtocol) Values() []OriginationRouteProtocol {
return []OriginationRouteProtocol{
"TCP",
"UDP",
}
}
type PhoneNumberAssociationName string
// Enum values for PhoneNumberAssociationName
const (
PhoneNumberAssociationNameAccountId PhoneNumberAssociationName = "AccountId"
PhoneNumberAssociationNameUserId PhoneNumberAssociationName = "UserId"
PhoneNumberAssociationNameVoiceConnectorId PhoneNumberAssociationName = "VoiceConnectorId"
PhoneNumberAssociationNameVoiceConnectorGroupId PhoneNumberAssociationName = "VoiceConnectorGroupId"
PhoneNumberAssociationNameSipRuleId PhoneNumberAssociationName = "SipRuleId"
)
// Values returns all known values for PhoneNumberAssociationName. 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 (PhoneNumberAssociationName) Values() []PhoneNumberAssociationName {
return []PhoneNumberAssociationName{
"AccountId",
"UserId",
"VoiceConnectorId",
"VoiceConnectorGroupId",
"SipRuleId",
}
}
type PhoneNumberOrderStatus string
// Enum values for PhoneNumberOrderStatus
const (
PhoneNumberOrderStatusProcessing PhoneNumberOrderStatus = "Processing"
PhoneNumberOrderStatusSuccessful PhoneNumberOrderStatus = "Successful"
PhoneNumberOrderStatusFailed PhoneNumberOrderStatus = "Failed"
PhoneNumberOrderStatusPartial PhoneNumberOrderStatus = "Partial"
)
// Values returns all known values for PhoneNumberOrderStatus. 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 (PhoneNumberOrderStatus) Values() []PhoneNumberOrderStatus {
return []PhoneNumberOrderStatus{
"Processing",
"Successful",
"Failed",
"Partial",
}
}
type PhoneNumberProductType string
// Enum values for PhoneNumberProductType
const (
PhoneNumberProductTypeBusinessCalling PhoneNumberProductType = "BusinessCalling"
PhoneNumberProductTypeVoiceConnector PhoneNumberProductType = "VoiceConnector"
PhoneNumberProductTypeSipMediaApplicationDialIn PhoneNumberProductType = "SipMediaApplicationDialIn"
)
// Values returns all known values for PhoneNumberProductType. 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 (PhoneNumberProductType) Values() []PhoneNumberProductType {
return []PhoneNumberProductType{
"BusinessCalling",
"VoiceConnector",
"SipMediaApplicationDialIn",
}
}
type PhoneNumberStatus string
// Enum values for PhoneNumberStatus
const (
PhoneNumberStatusAcquireInProgress PhoneNumberStatus = "AcquireInProgress"
PhoneNumberStatusAcquireFailed PhoneNumberStatus = "AcquireFailed"
PhoneNumberStatusUnassigned PhoneNumberStatus = "Unassigned"
PhoneNumberStatusAssigned PhoneNumberStatus = "Assigned"
PhoneNumberStatusReleaseInProgress PhoneNumberStatus = "ReleaseInProgress"
PhoneNumberStatusDeleteInProgress PhoneNumberStatus = "DeleteInProgress"
PhoneNumberStatusReleaseFailed PhoneNumberStatus = "ReleaseFailed"
PhoneNumberStatusDeleteFailed PhoneNumberStatus = "DeleteFailed"
)
// Values returns all known values for PhoneNumberStatus. 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 (PhoneNumberStatus) Values() []PhoneNumberStatus {
return []PhoneNumberStatus{
"AcquireInProgress",
"AcquireFailed",
"Unassigned",
"Assigned",
"ReleaseInProgress",
"DeleteInProgress",
"ReleaseFailed",
"DeleteFailed",
}
}
type PhoneNumberType string
// Enum values for PhoneNumberType
const (
PhoneNumberTypeLocal PhoneNumberType = "Local"
PhoneNumberTypeTollFree PhoneNumberType = "TollFree"
)
// Values returns all known values for PhoneNumberType. 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 (PhoneNumberType) Values() []PhoneNumberType {
return []PhoneNumberType{
"Local",
"TollFree",
}
}
type ProxySessionStatus string
// Enum values for ProxySessionStatus
const (
ProxySessionStatusOpen ProxySessionStatus = "Open"
ProxySessionStatusInProgress ProxySessionStatus = "InProgress"
ProxySessionStatusClosed ProxySessionStatus = "Closed"
)
// Values returns all known values for ProxySessionStatus. 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 (ProxySessionStatus) Values() []ProxySessionStatus {
return []ProxySessionStatus{
"Open",
"InProgress",
"Closed",
}
}
type RegistrationStatus string
// Enum values for RegistrationStatus
const (
RegistrationStatusUnregistered RegistrationStatus = "Unregistered"
RegistrationStatusRegistered RegistrationStatus = "Registered"
RegistrationStatusSuspended RegistrationStatus = "Suspended"
)
// 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{
"Unregistered",
"Registered",
"Suspended",
}
}
type RoomMembershipRole string
// Enum values for RoomMembershipRole
const (
RoomMembershipRoleAdministrator RoomMembershipRole = "Administrator"
RoomMembershipRoleMember RoomMembershipRole = "Member"
)
// Values returns all known values for RoomMembershipRole. 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 (RoomMembershipRole) Values() []RoomMembershipRole {
return []RoomMembershipRole{
"Administrator",
"Member",
}
}
type SipRuleTriggerType string
// Enum values for SipRuleTriggerType
const (
SipRuleTriggerTypeToPhoneNumber SipRuleTriggerType = "ToPhoneNumber"
SipRuleTriggerTypeRequestUriHostname SipRuleTriggerType = "RequestUriHostname"
)
// Values returns all known values for SipRuleTriggerType. 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 (SipRuleTriggerType) Values() []SipRuleTriggerType {
return []SipRuleTriggerType{
"ToPhoneNumber",
"RequestUriHostname",
}
}
type SortOrder string
// Enum values for SortOrder
const (
SortOrderAscending SortOrder = "ASCENDING"
SortOrderDescending SortOrder = "DESCENDING"
)
// Values returns all known values for SortOrder. 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 (SortOrder) Values() []SortOrder {
return []SortOrder{
"ASCENDING",
"DESCENDING",
}
}
type TranscribeContentIdentificationType string
// Enum values for TranscribeContentIdentificationType
const (
TranscribeContentIdentificationTypePii TranscribeContentIdentificationType = "PII"
)
// Values returns all known values for TranscribeContentIdentificationType. 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 (TranscribeContentIdentificationType) Values() []TranscribeContentIdentificationType {
return []TranscribeContentIdentificationType{
"PII",
}
}
type TranscribeContentRedactionType string
// Enum values for TranscribeContentRedactionType
const (
TranscribeContentRedactionTypePii TranscribeContentRedactionType = "PII"
)
// Values returns all known values for TranscribeContentRedactionType. 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 (TranscribeContentRedactionType) Values() []TranscribeContentRedactionType {
return []TranscribeContentRedactionType{
"PII",
}
}
type TranscribeLanguageCode string
// Enum values for TranscribeLanguageCode
const (
TranscribeLanguageCodeEnUs TranscribeLanguageCode = "en-US"
TranscribeLanguageCodeEnGb TranscribeLanguageCode = "en-GB"
TranscribeLanguageCodeEsUs TranscribeLanguageCode = "es-US"
TranscribeLanguageCodeFrCa TranscribeLanguageCode = "fr-CA"
TranscribeLanguageCodeFrFr TranscribeLanguageCode = "fr-FR"
TranscribeLanguageCodeEnAu TranscribeLanguageCode = "en-AU"
TranscribeLanguageCodeItIt TranscribeLanguageCode = "it-IT"
TranscribeLanguageCodeDeDe TranscribeLanguageCode = "de-DE"
TranscribeLanguageCodePtBr TranscribeLanguageCode = "pt-BR"
TranscribeLanguageCodeJaJp TranscribeLanguageCode = "ja-JP"
TranscribeLanguageCodeKoKr TranscribeLanguageCode = "ko-KR"
TranscribeLanguageCodeZhCn TranscribeLanguageCode = "zh-CN"
TranscribeLanguageCodeThTh TranscribeLanguageCode = "th-TH"
TranscribeLanguageCodeHiIn TranscribeLanguageCode = "hi-IN"
)
// Values returns all known values for TranscribeLanguageCode. 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 (TranscribeLanguageCode) Values() []TranscribeLanguageCode {
return []TranscribeLanguageCode{
"en-US",
"en-GB",
"es-US",
"fr-CA",
"fr-FR",
"en-AU",
"it-IT",
"de-DE",
"pt-BR",
"ja-JP",
"ko-KR",
"zh-CN",
"th-TH",
"hi-IN",
}
}
type TranscribeMedicalContentIdentificationType string
// Enum values for TranscribeMedicalContentIdentificationType
const (
TranscribeMedicalContentIdentificationTypePhi TranscribeMedicalContentIdentificationType = "PHI"
)
// Values returns all known values for TranscribeMedicalContentIdentificationType.
// 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 (TranscribeMedicalContentIdentificationType) Values() []TranscribeMedicalContentIdentificationType {
return []TranscribeMedicalContentIdentificationType{
"PHI",
}
}
type TranscribeMedicalLanguageCode string
// Enum values for TranscribeMedicalLanguageCode
const (
TranscribeMedicalLanguageCodeEnUs TranscribeMedicalLanguageCode = "en-US"
)
// Values returns all known values for TranscribeMedicalLanguageCode. 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 (TranscribeMedicalLanguageCode) Values() []TranscribeMedicalLanguageCode {
return []TranscribeMedicalLanguageCode{
"en-US",
}
}
type TranscribeMedicalRegion string
// Enum values for TranscribeMedicalRegion
const (
TranscribeMedicalRegionUsEast1 TranscribeMedicalRegion = "us-east-1"
TranscribeMedicalRegionUsEast2 TranscribeMedicalRegion = "us-east-2"
TranscribeMedicalRegionUsWest2 TranscribeMedicalRegion = "us-west-2"
TranscribeMedicalRegionApSoutheast2 TranscribeMedicalRegion = "ap-southeast-2"
TranscribeMedicalRegionCaCentral1 TranscribeMedicalRegion = "ca-central-1"
TranscribeMedicalRegionEuWest1 TranscribeMedicalRegion = "eu-west-1"
TranscribeMedicalRegionAuto TranscribeMedicalRegion = "auto"
)
// Values returns all known values for TranscribeMedicalRegion. 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 (TranscribeMedicalRegion) Values() []TranscribeMedicalRegion {
return []TranscribeMedicalRegion{
"us-east-1",
"us-east-2",
"us-west-2",
"ap-southeast-2",
"ca-central-1",
"eu-west-1",
"auto",
}
}
type TranscribeMedicalSpecialty string
// Enum values for TranscribeMedicalSpecialty
const (
TranscribeMedicalSpecialtyPrimaryCare TranscribeMedicalSpecialty = "PRIMARYCARE"
TranscribeMedicalSpecialtyCardiology TranscribeMedicalSpecialty = "CARDIOLOGY"
TranscribeMedicalSpecialtyNeurology TranscribeMedicalSpecialty = "NEUROLOGY"
TranscribeMedicalSpecialtyOncology TranscribeMedicalSpecialty = "ONCOLOGY"
TranscribeMedicalSpecialtyRadiology TranscribeMedicalSpecialty = "RADIOLOGY"
TranscribeMedicalSpecialtyUrology TranscribeMedicalSpecialty = "UROLOGY"
)
// Values returns all known values for TranscribeMedicalSpecialty. 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 (TranscribeMedicalSpecialty) Values() []TranscribeMedicalSpecialty {
return []TranscribeMedicalSpecialty{
"PRIMARYCARE",
"CARDIOLOGY",
"NEUROLOGY",
"ONCOLOGY",
"RADIOLOGY",
"UROLOGY",
}
}
type TranscribeMedicalType string
// Enum values for TranscribeMedicalType
const (
TranscribeMedicalTypeConversation TranscribeMedicalType = "CONVERSATION"
TranscribeMedicalTypeDictation TranscribeMedicalType = "DICTATION"
)
// Values returns all known values for TranscribeMedicalType. 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 (TranscribeMedicalType) Values() []TranscribeMedicalType {
return []TranscribeMedicalType{
"CONVERSATION",
"DICTATION",
}
}
type TranscribePartialResultsStability string
// Enum values for TranscribePartialResultsStability
const (
TranscribePartialResultsStabilityLow TranscribePartialResultsStability = "low"
TranscribePartialResultsStabilityMedium TranscribePartialResultsStability = "medium"
TranscribePartialResultsStabilityHigh TranscribePartialResultsStability = "high"
)
// Values returns all known values for TranscribePartialResultsStability. 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 (TranscribePartialResultsStability) Values() []TranscribePartialResultsStability {
return []TranscribePartialResultsStability{
"low",
"medium",
"high",
}
}
type TranscribeRegion string
// Enum values for TranscribeRegion
const (
TranscribeRegionUsEast2 TranscribeRegion = "us-east-2"
TranscribeRegionUsEast1 TranscribeRegion = "us-east-1"
TranscribeRegionUsWest2 TranscribeRegion = "us-west-2"
TranscribeRegionApNortheast2 TranscribeRegion = "ap-northeast-2"
TranscribeRegionApSoutheast2 TranscribeRegion = "ap-southeast-2"
TranscribeRegionApNortheast1 TranscribeRegion = "ap-northeast-1"
TranscribeRegionCaCentral1 TranscribeRegion = "ca-central-1"
TranscribeRegionEuCentral1 TranscribeRegion = "eu-central-1"
TranscribeRegionEuWest1 TranscribeRegion = "eu-west-1"
TranscribeRegionEuWest2 TranscribeRegion = "eu-west-2"
TranscribeRegionSaEast1 TranscribeRegion = "sa-east-1"
TranscribeRegionAuto TranscribeRegion = "auto"
)
// Values returns all known values for TranscribeRegion. 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 (TranscribeRegion) Values() []TranscribeRegion {
return []TranscribeRegion{
"us-east-2",
"us-east-1",
"us-west-2",
"ap-northeast-2",
"ap-southeast-2",
"ap-northeast-1",
"ca-central-1",
"eu-central-1",
"eu-west-1",
"eu-west-2",
"sa-east-1",
"auto",
}
}
type TranscribeVocabularyFilterMethod string
// Enum values for TranscribeVocabularyFilterMethod
const (
TranscribeVocabularyFilterMethodRemove TranscribeVocabularyFilterMethod = "remove"
TranscribeVocabularyFilterMethodMask TranscribeVocabularyFilterMethod = "mask"
TranscribeVocabularyFilterMethodTag TranscribeVocabularyFilterMethod = "tag"
)
// Values returns all known values for TranscribeVocabularyFilterMethod. 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 (TranscribeVocabularyFilterMethod) Values() []TranscribeVocabularyFilterMethod {
return []TranscribeVocabularyFilterMethod{
"remove",
"mask",
"tag",
}
}
type UserType string
// Enum values for UserType
const (
UserTypePrivateUser UserType = "PrivateUser"
UserTypeSharedDevice UserType = "SharedDevice"
)
// Values returns all known values for UserType. 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 (UserType) Values() []UserType {
return []UserType{
"PrivateUser",
"SharedDevice",
}
}
type VideoMuxType string
// Enum values for VideoMuxType
const (
VideoMuxTypeVideoOnly VideoMuxType = "VideoOnly"
)
// Values returns all known values for VideoMuxType. 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 (VideoMuxType) Values() []VideoMuxType {
return []VideoMuxType{
"VideoOnly",
}
}
type VoiceConnectorAwsRegion string
// Enum values for VoiceConnectorAwsRegion
const (
VoiceConnectorAwsRegionUsEast1 VoiceConnectorAwsRegion = "us-east-1"
VoiceConnectorAwsRegionUsWest2 VoiceConnectorAwsRegion = "us-west-2"
)
// Values returns all known values for VoiceConnectorAwsRegion. 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 (VoiceConnectorAwsRegion) Values() []VoiceConnectorAwsRegion {
return []VoiceConnectorAwsRegion{
"us-east-1",
"us-west-2",
}
}
|