@aws-sdk/client-connect 3.99.0 → 3.105.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/dist-cjs/Connect.js +105 -0
  3. package/dist-cjs/ConnectClient.js +2 -0
  4. package/dist-cjs/commands/CreateTaskTemplateCommand.js +36 -0
  5. package/dist-cjs/commands/DeleteTaskTemplateCommand.js +36 -0
  6. package/dist-cjs/commands/GetCurrentUserDataCommand.js +36 -0
  7. package/dist-cjs/commands/GetTaskTemplateCommand.js +36 -0
  8. package/dist-cjs/commands/ListQueuesCommand.js +3 -3
  9. package/dist-cjs/commands/ListQuickConnectsCommand.js +3 -3
  10. package/dist-cjs/commands/ListRoutingProfileQueuesCommand.js +3 -3
  11. package/dist-cjs/commands/ListRoutingProfilesCommand.js +3 -3
  12. package/dist-cjs/commands/ListSecurityKeysCommand.js +3 -3
  13. package/dist-cjs/commands/ListSecurityProfilePermissionsCommand.js +3 -3
  14. package/dist-cjs/commands/ListSecurityProfilesCommand.js +3 -3
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
  16. package/dist-cjs/commands/ListTaskTemplatesCommand.js +36 -0
  17. package/dist-cjs/commands/ListUseCasesCommand.js +3 -3
  18. package/dist-cjs/commands/ListUserHierarchyGroupsCommand.js +3 -3
  19. package/dist-cjs/commands/ListUsersCommand.js +3 -3
  20. package/dist-cjs/commands/PutUserStatusCommand.js +3 -3
  21. package/dist-cjs/commands/ReleasePhoneNumberCommand.js +2 -2
  22. package/dist-cjs/commands/ResumeContactRecordingCommand.js +3 -3
  23. package/dist-cjs/commands/TransferContactCommand.js +36 -0
  24. package/dist-cjs/commands/UpdateTaskTemplateCommand.js +36 -0
  25. package/dist-cjs/commands/index.js +7 -0
  26. package/dist-cjs/models/models_0.js +283 -236
  27. package/dist-cjs/models/models_1.js +254 -2
  28. package/dist-cjs/pagination/GetCurrentUserDataPaginator.js +36 -0
  29. package/dist-cjs/pagination/ListTaskTemplatesPaginator.js +36 -0
  30. package/dist-cjs/pagination/index.js +2 -0
  31. package/dist-cjs/protocols/Aws_restJson1.js +1279 -34
  32. package/dist-es/Connect.js +105 -0
  33. package/dist-es/ConnectClient.js +2 -0
  34. package/dist-es/commands/CreateTaskTemplateCommand.js +39 -0
  35. package/dist-es/commands/DeleteTaskTemplateCommand.js +39 -0
  36. package/dist-es/commands/GetCurrentUserDataCommand.js +39 -0
  37. package/dist-es/commands/GetTaskTemplateCommand.js +39 -0
  38. package/dist-es/commands/ListQueuesCommand.js +1 -1
  39. package/dist-es/commands/ListQuickConnectsCommand.js +1 -1
  40. package/dist-es/commands/ListRoutingProfileQueuesCommand.js +1 -1
  41. package/dist-es/commands/ListRoutingProfilesCommand.js +1 -1
  42. package/dist-es/commands/ListSecurityKeysCommand.js +1 -1
  43. package/dist-es/commands/ListSecurityProfilePermissionsCommand.js +1 -1
  44. package/dist-es/commands/ListSecurityProfilesCommand.js +1 -1
  45. package/dist-es/commands/ListTagsForResourceCommand.js +1 -1
  46. package/dist-es/commands/ListTaskTemplatesCommand.js +39 -0
  47. package/dist-es/commands/ListUseCasesCommand.js +1 -1
  48. package/dist-es/commands/ListUserHierarchyGroupsCommand.js +1 -1
  49. package/dist-es/commands/ListUsersCommand.js +1 -1
  50. package/dist-es/commands/PutUserStatusCommand.js +1 -1
  51. package/dist-es/commands/ReleasePhoneNumberCommand.js +1 -1
  52. package/dist-es/commands/ResumeContactRecordingCommand.js +1 -1
  53. package/dist-es/commands/TransferContactCommand.js +39 -0
  54. package/dist-es/commands/UpdateTaskTemplateCommand.js +39 -0
  55. package/dist-es/commands/index.js +7 -0
  56. package/dist-es/models/models_0.js +214 -160
  57. package/dist-es/models/models_1.js +169 -0
  58. package/dist-es/pagination/GetCurrentUserDataPaginator.js +75 -0
  59. package/dist-es/pagination/ListTaskTemplatesPaginator.js +75 -0
  60. package/dist-es/pagination/index.js +2 -0
  61. package/dist-es/protocols/Aws_restJson1.js +1440 -63
  62. package/dist-types/Connect.d.ts +104 -22
  63. package/dist-types/ConnectClient.d.ts +9 -2
  64. package/dist-types/commands/AssociateDefaultVocabularyCommand.d.ts +2 -1
  65. package/dist-types/commands/CreateTaskTemplateCommand.d.ts +35 -0
  66. package/dist-types/commands/DeleteTaskTemplateCommand.d.ts +35 -0
  67. package/dist-types/commands/DisassociatePhoneNumberContactFlowCommand.d.ts +2 -1
  68. package/dist-types/commands/GetCurrentUserDataCommand.d.ts +35 -0
  69. package/dist-types/commands/GetTaskTemplateCommand.d.ts +35 -0
  70. package/dist-types/commands/ListPhoneNumbersV2Command.d.ts +1 -1
  71. package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
  72. package/dist-types/commands/ListQuickConnectsCommand.d.ts +1 -1
  73. package/dist-types/commands/ListRoutingProfileQueuesCommand.d.ts +1 -1
  74. package/dist-types/commands/ListRoutingProfilesCommand.d.ts +1 -1
  75. package/dist-types/commands/ListSecurityKeysCommand.d.ts +1 -1
  76. package/dist-types/commands/ListSecurityProfilePermissionsCommand.d.ts +1 -1
  77. package/dist-types/commands/ListSecurityProfilesCommand.d.ts +1 -1
  78. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  79. package/dist-types/commands/ListTaskTemplatesCommand.d.ts +35 -0
  80. package/dist-types/commands/ListUseCasesCommand.d.ts +1 -1
  81. package/dist-types/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
  82. package/dist-types/commands/ListUsersCommand.d.ts +1 -1
  83. package/dist-types/commands/PutUserStatusCommand.d.ts +5 -6
  84. package/dist-types/commands/ReleasePhoneNumberCommand.d.ts +1 -1
  85. package/dist-types/commands/ResumeContactRecordingCommand.d.ts +1 -1
  86. package/dist-types/commands/SearchVocabulariesCommand.d.ts +2 -1
  87. package/dist-types/commands/StartChatContactCommand.d.ts +3 -3
  88. package/dist-types/commands/StartContactRecordingCommand.d.ts +9 -7
  89. package/dist-types/commands/StopContactCommand.d.ts +3 -1
  90. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  91. package/dist-types/commands/TransferContactCommand.d.ts +58 -0
  92. package/dist-types/commands/UpdatePhoneNumberCommand.d.ts +2 -1
  93. package/dist-types/commands/UpdateTaskTemplateCommand.d.ts +37 -0
  94. package/dist-types/commands/index.d.ts +7 -0
  95. package/dist-types/models/models_0.d.ts +927 -850
  96. package/dist-types/models/models_1.d.ts +979 -50
  97. package/dist-types/pagination/GetCurrentUserDataPaginator.d.ts +4 -0
  98. package/dist-types/pagination/ListTaskTemplatesPaginator.d.ts +4 -0
  99. package/dist-types/pagination/index.d.ts +2 -0
  100. package/dist-types/protocols/Aws_restJson1.d.ts +21 -0
  101. package/dist-types/ts3.4/Connect.d.ts +35 -0
  102. package/dist-types/ts3.4/ConnectClient.d.ts +9 -2
  103. package/dist-types/ts3.4/commands/CreateTaskTemplateCommand.d.ts +17 -0
  104. package/dist-types/ts3.4/commands/DeleteTaskTemplateCommand.d.ts +17 -0
  105. package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +17 -0
  106. package/dist-types/ts3.4/commands/GetTaskTemplateCommand.d.ts +17 -0
  107. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +1 -1
  108. package/dist-types/ts3.4/commands/ListQuickConnectsCommand.d.ts +1 -1
  109. package/dist-types/ts3.4/commands/ListRoutingProfileQueuesCommand.d.ts +1 -1
  110. package/dist-types/ts3.4/commands/ListRoutingProfilesCommand.d.ts +1 -1
  111. package/dist-types/ts3.4/commands/ListSecurityKeysCommand.d.ts +1 -1
  112. package/dist-types/ts3.4/commands/ListSecurityProfilePermissionsCommand.d.ts +1 -1
  113. package/dist-types/ts3.4/commands/ListSecurityProfilesCommand.d.ts +1 -1
  114. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  115. package/dist-types/ts3.4/commands/ListTaskTemplatesCommand.d.ts +17 -0
  116. package/dist-types/ts3.4/commands/ListUseCasesCommand.d.ts +1 -1
  117. package/dist-types/ts3.4/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
  118. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +1 -1
  119. package/dist-types/ts3.4/commands/PutUserStatusCommand.d.ts +1 -1
  120. package/dist-types/ts3.4/commands/ReleasePhoneNumberCommand.d.ts +1 -1
  121. package/dist-types/ts3.4/commands/ResumeContactRecordingCommand.d.ts +1 -1
  122. package/dist-types/ts3.4/commands/TransferContactCommand.d.ts +17 -0
  123. package/dist-types/ts3.4/commands/UpdateTaskTemplateCommand.d.ts +17 -0
  124. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  125. package/dist-types/ts3.4/models/models_0.d.ts +555 -517
  126. package/dist-types/ts3.4/models/models_1.d.ts +539 -26
  127. package/dist-types/ts3.4/pagination/GetCurrentUserDataPaginator.d.ts +4 -0
  128. package/dist-types/ts3.4/pagination/ListTaskTemplatesPaginator.d.ts +4 -0
  129. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  130. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +21 -0
  131. package/package.json +4 -3
@@ -8,6 +8,62 @@ export declare class AccessDeniedException extends __BaseException {
8
8
 
9
9
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
10
  }
11
+ export declare enum ContactState {
12
+ CONNECTED = "CONNECTED",
13
+ CONNECTED_ONHOLD = "CONNECTED_ONHOLD",
14
+ CONNECTING = "CONNECTING",
15
+ ENDED = "ENDED",
16
+ ERROR = "ERROR",
17
+ INCOMING = "INCOMING",
18
+ MISSED = "MISSED",
19
+ PENDING = "PENDING",
20
+ REJECTED = "REJECTED"
21
+ }
22
+ export declare enum Channel {
23
+ CHAT = "CHAT",
24
+ TASK = "TASK",
25
+ VOICE = "VOICE"
26
+ }
27
+ export declare enum ContactInitiationMethod {
28
+ API = "API",
29
+ CALLBACK = "CALLBACK",
30
+ INBOUND = "INBOUND",
31
+ OUTBOUND = "OUTBOUND",
32
+ QUEUE_TRANSFER = "QUEUE_TRANSFER",
33
+ TRANSFER = "TRANSFER"
34
+ }
35
+
36
+ export interface QueueReference {
37
+
38
+ Id?: string;
39
+
40
+ Arn?: string;
41
+ }
42
+ export declare namespace QueueReference {
43
+
44
+ const filterSensitiveLog: (obj: QueueReference) => any;
45
+ }
46
+
47
+ export interface AgentContactReference {
48
+
49
+ ContactId?: string;
50
+
51
+ Channel?: Channel | string;
52
+
53
+ InitiationMethod?: ContactInitiationMethod | string;
54
+
55
+ AgentContactState?: ContactState | string;
56
+
57
+ StateStartTimestamp?: Date;
58
+
59
+ ConnectedToAgentTimestamp?: Date;
60
+
61
+ Queue?: QueueReference;
62
+ }
63
+ export declare namespace AgentContactReference {
64
+
65
+ const filterSensitiveLog: (obj: AgentContactReference) => any;
66
+ }
11
67
 
12
68
  export interface AgentInfo {
13
69
 
@@ -45,15 +101,24 @@ export interface AgentStatus {
45
101
 
46
102
  State?: AgentStatusState | string;
47
103
 
48
- Tags?: {
49
- [key: string]: string;
50
- };
104
+ Tags?: Record<string, string>;
51
105
  }
52
106
  export declare namespace AgentStatus {
53
107
 
54
108
  const filterSensitiveLog: (obj: AgentStatus) => any;
55
109
  }
56
110
 
111
+ export interface AgentStatusReference {
112
+
113
+ StatusStartTimestamp?: Date;
114
+
115
+ StatusArn?: string;
116
+ }
117
+ export declare namespace AgentStatusReference {
118
+
119
+ const filterSensitiveLog: (obj: AgentStatusReference) => any;
120
+ }
121
+
57
122
  export interface AgentStatusSummary {
58
123
 
59
124
  Id?: string;
@@ -376,11 +441,6 @@ export declare namespace AssociateQueueQuickConnectsRequest {
376
441
 
377
442
  const filterSensitiveLog: (obj: AssociateQueueQuickConnectsRequest) => any;
378
443
  }
379
- export declare enum Channel {
380
- CHAT = "CHAT",
381
- TASK = "TASK",
382
- VOICE = "VOICE"
383
- }
384
444
 
385
445
  export interface RoutingProfileQueueReference {
386
446
 
@@ -443,9 +503,7 @@ export interface ClaimPhoneNumberRequest {
443
503
 
444
504
  PhoneNumberDescription?: string;
445
505
 
446
- Tags?: {
447
- [key: string]: string;
448
- };
506
+ Tags?: Record<string, string>;
449
507
 
450
508
  ClientToken?: string;
451
509
  }
@@ -483,9 +541,7 @@ export interface CreateAgentStatusRequest {
483
541
 
484
542
  DisplayOrder?: number;
485
543
 
486
- Tags?: {
487
- [key: string]: string;
488
- };
544
+ Tags?: Record<string, string>;
489
545
  }
490
546
  export declare namespace CreateAgentStatusRequest {
491
547
 
@@ -532,9 +588,7 @@ export interface CreateContactFlowRequest {
532
588
 
533
589
  Content: string | undefined;
534
590
 
535
- Tags?: {
536
- [key: string]: string;
537
- };
591
+ Tags?: Record<string, string>;
538
592
  }
539
593
  export declare namespace CreateContactFlowRequest {
540
594
 
@@ -578,9 +632,7 @@ export interface CreateContactFlowModuleRequest {
578
632
 
579
633
  Content: string | undefined;
580
634
 
581
- Tags?: {
582
- [key: string]: string;
583
- };
635
+ Tags?: Record<string, string>;
584
636
 
585
637
  ClientToken?: string;
586
638
  }
@@ -651,9 +703,7 @@ export interface CreateHoursOfOperationRequest {
651
703
 
652
704
  Config: HoursOfOperationConfig[] | undefined;
653
705
 
654
- Tags?: {
655
- [key: string]: string;
656
- };
706
+ Tags?: Record<string, string>;
657
707
  }
658
708
  export declare namespace CreateHoursOfOperationRequest {
659
709
 
@@ -727,9 +777,7 @@ export interface CreateIntegrationAssociationRequest {
727
777
 
728
778
  SourceType?: SourceType | string;
729
779
 
730
- Tags?: {
731
- [key: string]: string;
732
- };
780
+ Tags?: Record<string, string>;
733
781
  }
734
782
  export declare namespace CreateIntegrationAssociationRequest {
735
783
 
@@ -774,9 +822,7 @@ export interface CreateQueueRequest {
774
822
 
775
823
  QuickConnectIds?: string[];
776
824
 
777
- Tags?: {
778
- [key: string]: string;
779
- };
825
+ Tags?: Record<string, string>;
780
826
  }
781
827
  export declare namespace CreateQueueRequest {
782
828
 
@@ -853,9 +899,7 @@ export interface CreateQuickConnectRequest {
853
899
 
854
900
  QuickConnectConfig: QuickConnectConfig | undefined;
855
901
 
856
- Tags?: {
857
- [key: string]: string;
858
- };
902
+ Tags?: Record<string, string>;
859
903
  }
860
904
  export declare namespace CreateQuickConnectRequest {
861
905
 
@@ -896,9 +940,7 @@ export interface CreateRoutingProfileRequest {
896
940
 
897
941
  MediaConcurrencies: MediaConcurrency[] | undefined;
898
942
 
899
- Tags?: {
900
- [key: string]: string;
901
- };
943
+ Tags?: Record<string, string>;
902
944
  }
903
945
  export declare namespace CreateRoutingProfileRequest {
904
946
 
@@ -924,9 +966,7 @@ export interface CreateSecurityProfileRequest {
924
966
 
925
967
  InstanceId: string | undefined;
926
968
 
927
- Tags?: {
928
- [key: string]: string;
929
- };
969
+ Tags?: Record<string, string>;
930
970
  }
931
971
  export declare namespace CreateSecurityProfileRequest {
932
972
 
@@ -942,6 +982,172 @@ export declare namespace CreateSecurityProfileResponse {
942
982
 
943
983
  const filterSensitiveLog: (obj: CreateSecurityProfileResponse) => any;
944
984
  }
985
+
986
+ export interface TaskTemplateFieldIdentifier {
987
+
988
+ Name?: string;
989
+ }
990
+ export declare namespace TaskTemplateFieldIdentifier {
991
+
992
+ const filterSensitiveLog: (obj: TaskTemplateFieldIdentifier) => any;
993
+ }
994
+
995
+ export interface InvisibleFieldInfo {
996
+
997
+ Id?: TaskTemplateFieldIdentifier;
998
+ }
999
+ export declare namespace InvisibleFieldInfo {
1000
+
1001
+ const filterSensitiveLog: (obj: InvisibleFieldInfo) => any;
1002
+ }
1003
+
1004
+ export interface ReadOnlyFieldInfo {
1005
+
1006
+ Id?: TaskTemplateFieldIdentifier;
1007
+ }
1008
+ export declare namespace ReadOnlyFieldInfo {
1009
+
1010
+ const filterSensitiveLog: (obj: ReadOnlyFieldInfo) => any;
1011
+ }
1012
+
1013
+ export interface RequiredFieldInfo {
1014
+
1015
+ Id?: TaskTemplateFieldIdentifier;
1016
+ }
1017
+ export declare namespace RequiredFieldInfo {
1018
+
1019
+ const filterSensitiveLog: (obj: RequiredFieldInfo) => any;
1020
+ }
1021
+
1022
+ export interface TaskTemplateConstraints {
1023
+
1024
+ RequiredFields?: RequiredFieldInfo[];
1025
+
1026
+ ReadOnlyFields?: ReadOnlyFieldInfo[];
1027
+
1028
+ InvisibleFields?: InvisibleFieldInfo[];
1029
+ }
1030
+ export declare namespace TaskTemplateConstraints {
1031
+
1032
+ const filterSensitiveLog: (obj: TaskTemplateConstraints) => any;
1033
+ }
1034
+
1035
+ export interface TaskTemplateDefaultFieldValue {
1036
+
1037
+ Id?: TaskTemplateFieldIdentifier;
1038
+
1039
+ DefaultValue?: string;
1040
+ }
1041
+ export declare namespace TaskTemplateDefaultFieldValue {
1042
+
1043
+ const filterSensitiveLog: (obj: TaskTemplateDefaultFieldValue) => any;
1044
+ }
1045
+
1046
+ export interface TaskTemplateDefaults {
1047
+
1048
+ DefaultFieldValues?: TaskTemplateDefaultFieldValue[];
1049
+ }
1050
+ export declare namespace TaskTemplateDefaults {
1051
+
1052
+ const filterSensitiveLog: (obj: TaskTemplateDefaults) => any;
1053
+ }
1054
+ export declare enum TaskTemplateFieldType {
1055
+ BOOLEAN = "BOOLEAN",
1056
+ DATE_TIME = "DATE_TIME",
1057
+ DESCRIPTION = "DESCRIPTION",
1058
+ EMAIL = "EMAIL",
1059
+ NAME = "NAME",
1060
+ NUMBER = "NUMBER",
1061
+ QUICK_CONNECT = "QUICK_CONNECT",
1062
+ SCHEDULED_TIME = "SCHEDULED_TIME",
1063
+ SINGLE_SELECT = "SINGLE_SELECT",
1064
+ TEXT = "TEXT",
1065
+ TEXT_AREA = "TEXT_AREA",
1066
+ URL = "URL"
1067
+ }
1068
+
1069
+ export interface TaskTemplateField {
1070
+
1071
+ Id: TaskTemplateFieldIdentifier | undefined;
1072
+
1073
+ Description?: string;
1074
+
1075
+ Type?: TaskTemplateFieldType | string;
1076
+
1077
+ SingleSelectOptions?: string[];
1078
+ }
1079
+ export declare namespace TaskTemplateField {
1080
+
1081
+ const filterSensitiveLog: (obj: TaskTemplateField) => any;
1082
+ }
1083
+ export declare enum TaskTemplateStatus {
1084
+ ACTIVE = "ACTIVE",
1085
+ INACTIVE = "INACTIVE"
1086
+ }
1087
+ export interface CreateTaskTemplateRequest {
1088
+
1089
+ InstanceId: string | undefined;
1090
+
1091
+ Name: string | undefined;
1092
+
1093
+ Description?: string;
1094
+
1095
+ ContactFlowId?: string;
1096
+
1097
+ Constraints?: TaskTemplateConstraints;
1098
+
1099
+ Defaults?: TaskTemplateDefaults;
1100
+
1101
+ Status?: TaskTemplateStatus | string;
1102
+
1103
+ Fields: TaskTemplateField[] | undefined;
1104
+
1105
+ ClientToken?: string;
1106
+ }
1107
+ export declare namespace CreateTaskTemplateRequest {
1108
+
1109
+ const filterSensitiveLog: (obj: CreateTaskTemplateRequest) => any;
1110
+ }
1111
+ export interface CreateTaskTemplateResponse {
1112
+
1113
+ Id: string | undefined;
1114
+
1115
+ Arn: string | undefined;
1116
+ }
1117
+ export declare namespace CreateTaskTemplateResponse {
1118
+
1119
+ const filterSensitiveLog: (obj: CreateTaskTemplateResponse) => any;
1120
+ }
1121
+ export declare enum PropertyValidationExceptionReason {
1122
+ INVALID_FORMAT = "INVALID_FORMAT",
1123
+ NOT_SUPPORTED = "NOT_SUPPORTED",
1124
+ REFERENCED_RESOURCE_NOT_FOUND = "REFERENCED_RESOURCE_NOT_FOUND",
1125
+ REQUIRED_PROPERTY_MISSING = "REQUIRED_PROPERTY_MISSING",
1126
+ RESOURCE_NAME_ALREADY_EXISTS = "RESOURCE_NAME_ALREADY_EXISTS",
1127
+ UNIQUE_CONSTRAINT_VIOLATED = "UNIQUE_CONSTRAINT_VIOLATED"
1128
+ }
1129
+
1130
+ export interface PropertyValidationExceptionProperty {
1131
+
1132
+ PropertyPath: string | undefined;
1133
+
1134
+ Reason: PropertyValidationExceptionReason | string | undefined;
1135
+
1136
+ Message: string | undefined;
1137
+ }
1138
+ export declare namespace PropertyValidationExceptionProperty {
1139
+
1140
+ const filterSensitiveLog: (obj: PropertyValidationExceptionProperty) => any;
1141
+ }
1142
+
1143
+ export declare class PropertyValidationException extends __BaseException {
1144
+ readonly name: "PropertyValidationException";
1145
+ readonly $fault: "client";
1146
+ Message: string | undefined;
1147
+ PropertyList?: PropertyValidationExceptionProperty[];
1148
+
1149
+ constructor(opts: __ExceptionOptionType<PropertyValidationException, __BaseException>);
1150
+ }
945
1151
  export declare enum UseCaseType {
946
1152
  CONNECT_CAMPAIGNS = "CONNECT_CAMPAIGNS",
947
1153
  RULES_EVALUATION = "RULES_EVALUATION"
@@ -954,9 +1160,7 @@ export interface CreateUseCaseRequest {
954
1160
 
955
1161
  UseCaseType: UseCaseType | string | undefined;
956
1162
 
957
- Tags?: {
958
- [key: string]: string;
959
- };
1163
+ Tags?: Record<string, string>;
960
1164
  }
961
1165
  export declare namespace CreateUseCaseRequest {
962
1166
 
@@ -1024,9 +1228,7 @@ export interface CreateUserRequest {
1024
1228
 
1025
1229
  InstanceId: string | undefined;
1026
1230
 
1027
- Tags?: {
1028
- [key: string]: string;
1029
- };
1231
+ Tags?: Record<string, string>;
1030
1232
  }
1031
1233
  export declare namespace CreateUserRequest {
1032
1234
 
@@ -1050,9 +1252,7 @@ export interface CreateUserHierarchyGroupRequest {
1050
1252
 
1051
1253
  InstanceId: string | undefined;
1052
1254
 
1053
- Tags?: {
1054
- [key: string]: string;
1055
- };
1255
+ Tags?: Record<string, string>;
1056
1256
  }
1057
1257
  export declare namespace CreateUserHierarchyGroupRequest {
1058
1258
 
@@ -1080,9 +1280,7 @@ export interface CreateVocabularyRequest {
1080
1280
 
1081
1281
  Content: string | undefined;
1082
1282
 
1083
- Tags?: {
1084
- [key: string]: string;
1085
- };
1283
+ Tags?: Record<string, string>;
1086
1284
  }
1087
1285
  export declare namespace CreateVocabularyRequest {
1088
1286
 
@@ -1201,6 +1399,22 @@ export declare class ResourceInUseException extends __BaseException {
1201
1399
 
1202
1400
  constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
1203
1401
  }
1402
+ export interface DeleteTaskTemplateRequest {
1403
+
1404
+ InstanceId: string | undefined;
1405
+
1406
+ TaskTemplateId: string | undefined;
1407
+ }
1408
+ export declare namespace DeleteTaskTemplateRequest {
1409
+
1410
+ const filterSensitiveLog: (obj: DeleteTaskTemplateRequest) => any;
1411
+ }
1412
+ export interface DeleteTaskTemplateResponse {
1413
+ }
1414
+ export declare namespace DeleteTaskTemplateResponse {
1415
+
1416
+ const filterSensitiveLog: (obj: DeleteTaskTemplateResponse) => any;
1417
+ }
1204
1418
  export interface DeleteUseCaseRequest {
1205
1419
 
1206
1420
  InstanceId: string | undefined;
@@ -1283,14 +1497,6 @@ export declare namespace DescribeContactRequest {
1283
1497
 
1284
1498
  const filterSensitiveLog: (obj: DescribeContactRequest) => any;
1285
1499
  }
1286
- export declare enum ContactInitiationMethod {
1287
- API = "API",
1288
- CALLBACK = "CALLBACK",
1289
- INBOUND = "INBOUND",
1290
- OUTBOUND = "OUTBOUND",
1291
- QUEUE_TRANSFER = "QUEUE_TRANSFER",
1292
- TRANSFER = "TRANSFER"
1293
- }
1294
1500
 
1295
1501
  export interface QueueInfo {
1296
1502
 
@@ -1384,9 +1590,7 @@ export interface ContactFlow {
1384
1590
 
1385
1591
  Content?: string;
1386
1592
 
1387
- Tags?: {
1388
- [key: string]: string;
1389
- };
1593
+ Tags?: Record<string, string>;
1390
1594
  }
1391
1595
  export declare namespace ContactFlow {
1392
1596
 
@@ -1435,9 +1639,7 @@ export interface ContactFlowModule {
1435
1639
 
1436
1640
  Status?: ContactFlowModuleStatus | string;
1437
1641
 
1438
- Tags?: {
1439
- [key: string]: string;
1440
- };
1642
+ Tags?: Record<string, string>;
1441
1643
  }
1442
1644
  export declare namespace ContactFlowModule {
1443
1645
 
@@ -1476,9 +1678,7 @@ export interface HoursOfOperation {
1476
1678
 
1477
1679
  Config?: HoursOfOperationConfig[];
1478
1680
 
1479
- Tags?: {
1480
- [key: string]: string;
1481
- };
1681
+ Tags?: Record<string, string>;
1482
1682
  }
1483
1683
  export declare namespace HoursOfOperation {
1484
1684
 
@@ -1892,9 +2092,7 @@ export interface ClaimedPhoneNumberSummary {
1892
2092
 
1893
2093
  TargetArn?: string;
1894
2094
 
1895
- Tags?: {
1896
- [key: string]: string;
1897
- };
2095
+ Tags?: Record<string, string>;
1898
2096
 
1899
2097
  PhoneNumberStatus?: PhoneNumberStatus;
1900
2098
  }
@@ -1943,9 +2141,7 @@ export interface Queue {
1943
2141
 
1944
2142
  Status?: QueueStatus | string;
1945
2143
 
1946
- Tags?: {
1947
- [key: string]: string;
1948
- };
2144
+ Tags?: Record<string, string>;
1949
2145
  }
1950
2146
  export declare namespace Queue {
1951
2147
 
@@ -1982,9 +2178,7 @@ export interface QuickConnect {
1982
2178
 
1983
2179
  QuickConnectConfig?: QuickConnectConfig;
1984
2180
 
1985
- Tags?: {
1986
- [key: string]: string;
1987
- };
2181
+ Tags?: Record<string, string>;
1988
2182
  }
1989
2183
  export declare namespace QuickConnect {
1990
2184
 
@@ -2025,9 +2219,7 @@ export interface RoutingProfile {
2025
2219
 
2026
2220
  DefaultOutboundQueueId?: string;
2027
2221
 
2028
- Tags?: {
2029
- [key: string]: string;
2030
- };
2222
+ Tags?: Record<string, string>;
2031
2223
  }
2032
2224
  export declare namespace RoutingProfile {
2033
2225
 
@@ -2064,9 +2256,7 @@ export interface SecurityProfile {
2064
2256
 
2065
2257
  Description?: string;
2066
2258
 
2067
- Tags?: {
2068
- [key: string]: string;
2069
- };
2259
+ Tags?: Record<string, string>;
2070
2260
  }
2071
2261
  export declare namespace SecurityProfile {
2072
2262
 
@@ -2111,9 +2301,7 @@ export interface User {
2111
2301
 
2112
2302
  HierarchyGroupId?: string;
2113
2303
 
2114
- Tags?: {
2115
- [key: string]: string;
2116
- };
2304
+ Tags?: Record<string, string>;
2117
2305
  }
2118
2306
  export declare namespace User {
2119
2307
 
@@ -2180,9 +2368,7 @@ export interface HierarchyGroup {
2180
2368
 
2181
2369
  HierarchyPath?: HierarchyPath;
2182
2370
 
2183
- Tags?: {
2184
- [key: string]: string;
2185
- };
2371
+ Tags?: Record<string, string>;
2186
2372
  }
2187
2373
  export declare namespace HierarchyGroup {
2188
2374
 
@@ -2271,9 +2457,7 @@ export interface Vocabulary {
2271
2457
 
2272
2458
  Content?: string;
2273
2459
 
2274
- Tags?: {
2275
- [key: string]: string;
2276
- };
2460
+ Tags?: Record<string, string>;
2277
2461
  }
2278
2462
  export declare namespace Vocabulary {
2279
2463
 
@@ -2399,9 +2583,7 @@ export declare namespace GetContactAttributesRequest {
2399
2583
  }
2400
2584
  export interface GetContactAttributesResponse {
2401
2585
 
2402
- Attributes?: {
2403
- [key: string]: string;
2404
- };
2586
+ Attributes?: Record<string, string>;
2405
2587
  }
2406
2588
  export declare namespace GetContactAttributesResponse {
2407
2589
 
@@ -2483,17 +2665,6 @@ export declare namespace CurrentMetricData {
2483
2665
  const filterSensitiveLog: (obj: CurrentMetricData) => any;
2484
2666
  }
2485
2667
 
2486
- export interface QueueReference {
2487
-
2488
- Id?: string;
2489
-
2490
- Arn?: string;
2491
- }
2492
- export declare namespace QueueReference {
2493
-
2494
- const filterSensitiveLog: (obj: QueueReference) => any;
2495
- }
2496
-
2497
2668
  export interface Dimensions {
2498
2669
 
2499
2670
  Queue?: QueueReference;
@@ -2527,6 +2698,123 @@ export declare namespace GetCurrentMetricDataResponse {
2527
2698
 
2528
2699
  const filterSensitiveLog: (obj: GetCurrentMetricDataResponse) => any;
2529
2700
  }
2701
+
2702
+ export interface ContactFilter {
2703
+
2704
+ ContactStates?: (ContactState | string)[];
2705
+ }
2706
+ export declare namespace ContactFilter {
2707
+
2708
+ const filterSensitiveLog: (obj: ContactFilter) => any;
2709
+ }
2710
+
2711
+ export interface UserDataFilters {
2712
+
2713
+ Queues?: string[];
2714
+
2715
+ ContactFilter?: ContactFilter;
2716
+ }
2717
+ export declare namespace UserDataFilters {
2718
+
2719
+ const filterSensitiveLog: (obj: UserDataFilters) => any;
2720
+ }
2721
+ export interface GetCurrentUserDataRequest {
2722
+
2723
+ InstanceId: string | undefined;
2724
+
2725
+ Filters: UserDataFilters | undefined;
2726
+
2727
+ NextToken?: string;
2728
+
2729
+ MaxResults?: number;
2730
+ }
2731
+ export declare namespace GetCurrentUserDataRequest {
2732
+
2733
+ const filterSensitiveLog: (obj: GetCurrentUserDataRequest) => any;
2734
+ }
2735
+
2736
+ export interface HierarchyGroupSummaryReference {
2737
+
2738
+ Id?: string;
2739
+
2740
+ Arn?: string;
2741
+ }
2742
+ export declare namespace HierarchyGroupSummaryReference {
2743
+
2744
+ const filterSensitiveLog: (obj: HierarchyGroupSummaryReference) => any;
2745
+ }
2746
+
2747
+ export interface HierarchyPathReference {
2748
+
2749
+ LevelOne?: HierarchyGroupSummaryReference;
2750
+
2751
+ LevelTwo?: HierarchyGroupSummaryReference;
2752
+
2753
+ LevelThree?: HierarchyGroupSummaryReference;
2754
+
2755
+ LevelFour?: HierarchyGroupSummaryReference;
2756
+
2757
+ LevelFive?: HierarchyGroupSummaryReference;
2758
+ }
2759
+ export declare namespace HierarchyPathReference {
2760
+
2761
+ const filterSensitiveLog: (obj: HierarchyPathReference) => any;
2762
+ }
2763
+
2764
+ export interface RoutingProfileReference {
2765
+
2766
+ Id?: string;
2767
+
2768
+ Arn?: string;
2769
+ }
2770
+ export declare namespace RoutingProfileReference {
2771
+
2772
+ const filterSensitiveLog: (obj: RoutingProfileReference) => any;
2773
+ }
2774
+
2775
+ export interface UserReference {
2776
+
2777
+ Id?: string;
2778
+
2779
+ Arn?: string;
2780
+ }
2781
+ export declare namespace UserReference {
2782
+
2783
+ const filterSensitiveLog: (obj: UserReference) => any;
2784
+ }
2785
+
2786
+ export interface UserData {
2787
+
2788
+ User?: UserReference;
2789
+
2790
+ RoutingProfile?: RoutingProfileReference;
2791
+
2792
+ HierarchyPath?: HierarchyPathReference;
2793
+
2794
+ Status?: AgentStatusReference;
2795
+
2796
+ AvailableSlotsByChannel?: Record<string, number>;
2797
+
2798
+ MaxSlotsByChannel?: Record<string, number>;
2799
+
2800
+ ActiveSlotsByChannel?: Record<string, number>;
2801
+
2802
+ Contacts?: AgentContactReference[];
2803
+ }
2804
+ export declare namespace UserData {
2805
+
2806
+ const filterSensitiveLog: (obj: UserData) => any;
2807
+ }
2808
+ export interface GetCurrentUserDataResponse {
2809
+
2810
+ NextToken?: string;
2811
+
2812
+ UserDataList?: UserData[];
2813
+ }
2814
+ export declare namespace GetCurrentUserDataResponse {
2815
+
2816
+ const filterSensitiveLog: (obj: GetCurrentUserDataResponse) => any;
2817
+ }
2530
2818
  export interface GetFederationTokenRequest {
2531
2819
 
2532
2820
  InstanceId: string | undefined;
@@ -2681,29 +2969,73 @@ export declare namespace GetMetricDataResponse {
2681
2969
 
2682
2970
  const filterSensitiveLog: (obj: GetMetricDataResponse) => any;
2683
2971
  }
2684
- export interface ListAgentStatusRequest {
2972
+ export interface GetTaskTemplateRequest {
2685
2973
 
2686
2974
  InstanceId: string | undefined;
2687
2975
 
2688
- NextToken?: string;
2689
-
2690
- MaxResults?: number;
2976
+ TaskTemplateId: string | undefined;
2691
2977
 
2692
- AgentStatusTypes?: (AgentStatusType | string)[];
2978
+ SnapshotVersion?: string;
2693
2979
  }
2694
- export declare namespace ListAgentStatusRequest {
2980
+ export declare namespace GetTaskTemplateRequest {
2695
2981
 
2696
- const filterSensitiveLog: (obj: ListAgentStatusRequest) => any;
2982
+ const filterSensitiveLog: (obj: GetTaskTemplateRequest) => any;
2697
2983
  }
2698
- export interface ListAgentStatusResponse {
2984
+ export interface GetTaskTemplateResponse {
2699
2985
 
2700
- NextToken?: string;
2986
+ InstanceId?: string;
2701
2987
 
2702
- AgentStatusSummaryList?: AgentStatusSummary[];
2703
- }
2704
- export declare namespace ListAgentStatusResponse {
2988
+ Id: string | undefined;
2705
2989
 
2706
- const filterSensitiveLog: (obj: ListAgentStatusResponse) => any;
2990
+ Arn: string | undefined;
2991
+
2992
+ Name: string | undefined;
2993
+
2994
+ Description?: string;
2995
+
2996
+ ContactFlowId?: string;
2997
+
2998
+ Constraints?: TaskTemplateConstraints;
2999
+
3000
+ Defaults?: TaskTemplateDefaults;
3001
+
3002
+ Fields?: TaskTemplateField[];
3003
+
3004
+ Status?: TaskTemplateStatus | string;
3005
+
3006
+ LastModifiedTime?: Date;
3007
+
3008
+ CreatedTime?: Date;
3009
+
3010
+ Tags?: Record<string, string>;
3011
+ }
3012
+ export declare namespace GetTaskTemplateResponse {
3013
+
3014
+ const filterSensitiveLog: (obj: GetTaskTemplateResponse) => any;
3015
+ }
3016
+ export interface ListAgentStatusRequest {
3017
+
3018
+ InstanceId: string | undefined;
3019
+
3020
+ NextToken?: string;
3021
+
3022
+ MaxResults?: number;
3023
+
3024
+ AgentStatusTypes?: (AgentStatusType | string)[];
3025
+ }
3026
+ export declare namespace ListAgentStatusRequest {
3027
+
3028
+ const filterSensitiveLog: (obj: ListAgentStatusRequest) => any;
3029
+ }
3030
+ export interface ListAgentStatusResponse {
3031
+
3032
+ NextToken?: string;
3033
+
3034
+ AgentStatusSummaryList?: AgentStatusSummary[];
3035
+ }
3036
+ export declare namespace ListAgentStatusResponse {
3037
+
3038
+ const filterSensitiveLog: (obj: ListAgentStatusResponse) => any;
2707
3039
  }
2708
3040
  export interface ListApprovedOriginsRequest {
2709
3041
 
@@ -2848,6 +3180,10 @@ export declare namespace ListContactFlowsResponse {
2848
3180
  }
2849
3181
  export declare enum ReferenceType {
2850
3182
  ATTACHMENT = "ATTACHMENT",
3183
+ DATE = "DATE",
3184
+ EMAIL = "EMAIL",
3185
+ NUMBER = "NUMBER",
3186
+ STRING = "STRING",
2851
3187
  URL = "URL"
2852
3188
  }
2853
3189
  export interface ListContactReferencesRequest {
@@ -2882,6 +3218,50 @@ export declare namespace AttachmentReference {
2882
3218
  const filterSensitiveLog: (obj: AttachmentReference) => any;
2883
3219
  }
2884
3220
 
3221
+ export interface DateReference {
3222
+
3223
+ Name?: string;
3224
+
3225
+ Value?: string;
3226
+ }
3227
+ export declare namespace DateReference {
3228
+
3229
+ const filterSensitiveLog: (obj: DateReference) => any;
3230
+ }
3231
+
3232
+ export interface EmailReference {
3233
+
3234
+ Name?: string;
3235
+
3236
+ Value?: string;
3237
+ }
3238
+ export declare namespace EmailReference {
3239
+
3240
+ const filterSensitiveLog: (obj: EmailReference) => any;
3241
+ }
3242
+
3243
+ export interface NumberReference {
3244
+
3245
+ Name?: string;
3246
+
3247
+ Value?: string;
3248
+ }
3249
+ export declare namespace NumberReference {
3250
+
3251
+ const filterSensitiveLog: (obj: NumberReference) => any;
3252
+ }
3253
+
3254
+ export interface StringReference {
3255
+
3256
+ Name?: string;
3257
+
3258
+ Value?: string;
3259
+ }
3260
+ export declare namespace StringReference {
3261
+
3262
+ const filterSensitiveLog: (obj: StringReference) => any;
3263
+ }
3264
+
2885
3265
  export interface UrlReference {
2886
3266
 
2887
3267
  Name?: string;
@@ -2893,23 +3273,75 @@ export declare namespace UrlReference {
2893
3273
  const filterSensitiveLog: (obj: UrlReference) => any;
2894
3274
  }
2895
3275
 
2896
- export declare type ReferenceSummary = ReferenceSummary.AttachmentMember | ReferenceSummary.UrlMember | ReferenceSummary.$UnknownMember;
3276
+ export declare type ReferenceSummary = ReferenceSummary.AttachmentMember | ReferenceSummary.DateMember | ReferenceSummary.EmailMember | ReferenceSummary.NumberMember | ReferenceSummary.StringMember | ReferenceSummary.UrlMember | ReferenceSummary.$UnknownMember;
2897
3277
  export declare namespace ReferenceSummary {
2898
3278
 
2899
3279
  interface UrlMember {
2900
3280
  Url: UrlReference;
2901
3281
  Attachment?: never;
3282
+ String?: never;
3283
+ Number?: never;
3284
+ Date?: never;
3285
+ Email?: never;
2902
3286
  $unknown?: never;
2903
3287
  }
2904
3288
 
2905
3289
  interface AttachmentMember {
2906
3290
  Url?: never;
2907
3291
  Attachment: AttachmentReference;
3292
+ String?: never;
3293
+ Number?: never;
3294
+ Date?: never;
3295
+ Email?: never;
3296
+ $unknown?: never;
3297
+ }
3298
+
3299
+ interface StringMember {
3300
+ Url?: never;
3301
+ Attachment?: never;
3302
+ String: StringReference;
3303
+ Number?: never;
3304
+ Date?: never;
3305
+ Email?: never;
3306
+ $unknown?: never;
3307
+ }
3308
+
3309
+ interface NumberMember {
3310
+ Url?: never;
3311
+ Attachment?: never;
3312
+ String?: never;
3313
+ Number: NumberReference;
3314
+ Date?: never;
3315
+ Email?: never;
3316
+ $unknown?: never;
3317
+ }
3318
+
3319
+ interface DateMember {
3320
+ Url?: never;
3321
+ Attachment?: never;
3322
+ String?: never;
3323
+ Number?: never;
3324
+ Date: DateReference;
3325
+ Email?: never;
3326
+ $unknown?: never;
3327
+ }
3328
+
3329
+ interface EmailMember {
3330
+ Url?: never;
3331
+ Attachment?: never;
3332
+ String?: never;
3333
+ Number?: never;
3334
+ Date?: never;
3335
+ Email: EmailReference;
2908
3336
  $unknown?: never;
2909
3337
  }
2910
3338
  interface $UnknownMember {
2911
3339
  Url?: never;
2912
3340
  Attachment?: never;
3341
+ String?: never;
3342
+ Number?: never;
3343
+ Date?: never;
3344
+ Email?: never;
2913
3345
  $unknown: [
2914
3346
  string,
2915
3347
  any
@@ -2918,6 +3350,10 @@ export declare namespace ReferenceSummary {
2918
3350
  interface Visitor<T> {
2919
3351
  Url: (value: UrlReference) => T;
2920
3352
  Attachment: (value: AttachmentReference) => T;
3353
+ String: (value: StringReference) => T;
3354
+ Number: (value: NumberReference) => T;
3355
+ Date: (value: DateReference) => T;
3356
+ Email: (value: EmailReference) => T;
2921
3357
  _: (name: string, value: any) => T;
2922
3358
  }
2923
3359
  const visit: <T>(value: ReferenceSummary, visitor: Visitor<T>) => T;
@@ -3354,401 +3790,3 @@ export declare namespace ListQueueQuickConnectsResponse {
3354
3790
 
3355
3791
  const filterSensitiveLog: (obj: ListQueueQuickConnectsResponse) => any;
3356
3792
  }
3357
- export declare enum QueueType {
3358
- AGENT = "AGENT",
3359
- STANDARD = "STANDARD"
3360
- }
3361
- export interface ListQueuesRequest {
3362
-
3363
- InstanceId: string | undefined;
3364
-
3365
- QueueTypes?: (QueueType | string)[];
3366
-
3367
- NextToken?: string;
3368
-
3369
- MaxResults?: number;
3370
- }
3371
- export declare namespace ListQueuesRequest {
3372
-
3373
- const filterSensitiveLog: (obj: ListQueuesRequest) => any;
3374
- }
3375
-
3376
- export interface QueueSummary {
3377
-
3378
- Id?: string;
3379
-
3380
- Arn?: string;
3381
-
3382
- Name?: string;
3383
-
3384
- QueueType?: QueueType | string;
3385
- }
3386
- export declare namespace QueueSummary {
3387
-
3388
- const filterSensitiveLog: (obj: QueueSummary) => any;
3389
- }
3390
- export interface ListQueuesResponse {
3391
-
3392
- QueueSummaryList?: QueueSummary[];
3393
-
3394
- NextToken?: string;
3395
- }
3396
- export declare namespace ListQueuesResponse {
3397
-
3398
- const filterSensitiveLog: (obj: ListQueuesResponse) => any;
3399
- }
3400
- export interface ListQuickConnectsRequest {
3401
-
3402
- InstanceId: string | undefined;
3403
-
3404
- NextToken?: string;
3405
-
3406
- MaxResults?: number;
3407
-
3408
- QuickConnectTypes?: (QuickConnectType | string)[];
3409
- }
3410
- export declare namespace ListQuickConnectsRequest {
3411
-
3412
- const filterSensitiveLog: (obj: ListQuickConnectsRequest) => any;
3413
- }
3414
- export interface ListQuickConnectsResponse {
3415
-
3416
- QuickConnectSummaryList?: QuickConnectSummary[];
3417
-
3418
- NextToken?: string;
3419
- }
3420
- export declare namespace ListQuickConnectsResponse {
3421
-
3422
- const filterSensitiveLog: (obj: ListQuickConnectsResponse) => any;
3423
- }
3424
- export interface ListRoutingProfileQueuesRequest {
3425
-
3426
- InstanceId: string | undefined;
3427
-
3428
- RoutingProfileId: string | undefined;
3429
-
3430
- NextToken?: string;
3431
-
3432
- MaxResults?: number;
3433
- }
3434
- export declare namespace ListRoutingProfileQueuesRequest {
3435
-
3436
- const filterSensitiveLog: (obj: ListRoutingProfileQueuesRequest) => any;
3437
- }
3438
-
3439
- export interface RoutingProfileQueueConfigSummary {
3440
-
3441
- QueueId: string | undefined;
3442
-
3443
- QueueArn: string | undefined;
3444
-
3445
- QueueName: string | undefined;
3446
-
3447
- Priority: number | undefined;
3448
-
3449
- Delay: number | undefined;
3450
-
3451
- Channel: Channel | string | undefined;
3452
- }
3453
- export declare namespace RoutingProfileQueueConfigSummary {
3454
-
3455
- const filterSensitiveLog: (obj: RoutingProfileQueueConfigSummary) => any;
3456
- }
3457
- export interface ListRoutingProfileQueuesResponse {
3458
-
3459
- NextToken?: string;
3460
-
3461
- RoutingProfileQueueConfigSummaryList?: RoutingProfileQueueConfigSummary[];
3462
- }
3463
- export declare namespace ListRoutingProfileQueuesResponse {
3464
-
3465
- const filterSensitiveLog: (obj: ListRoutingProfileQueuesResponse) => any;
3466
- }
3467
- export interface ListRoutingProfilesRequest {
3468
-
3469
- InstanceId: string | undefined;
3470
-
3471
- NextToken?: string;
3472
-
3473
- MaxResults?: number;
3474
- }
3475
- export declare namespace ListRoutingProfilesRequest {
3476
-
3477
- const filterSensitiveLog: (obj: ListRoutingProfilesRequest) => any;
3478
- }
3479
-
3480
- export interface RoutingProfileSummary {
3481
-
3482
- Id?: string;
3483
-
3484
- Arn?: string;
3485
-
3486
- Name?: string;
3487
- }
3488
- export declare namespace RoutingProfileSummary {
3489
-
3490
- const filterSensitiveLog: (obj: RoutingProfileSummary) => any;
3491
- }
3492
- export interface ListRoutingProfilesResponse {
3493
-
3494
- RoutingProfileSummaryList?: RoutingProfileSummary[];
3495
-
3496
- NextToken?: string;
3497
- }
3498
- export declare namespace ListRoutingProfilesResponse {
3499
-
3500
- const filterSensitiveLog: (obj: ListRoutingProfilesResponse) => any;
3501
- }
3502
- export interface ListSecurityKeysRequest {
3503
-
3504
- InstanceId: string | undefined;
3505
-
3506
- NextToken?: string;
3507
-
3508
- MaxResults?: number;
3509
- }
3510
- export declare namespace ListSecurityKeysRequest {
3511
-
3512
- const filterSensitiveLog: (obj: ListSecurityKeysRequest) => any;
3513
- }
3514
-
3515
- export interface SecurityKey {
3516
-
3517
- AssociationId?: string;
3518
-
3519
- Key?: string;
3520
-
3521
- CreationTime?: Date;
3522
- }
3523
- export declare namespace SecurityKey {
3524
-
3525
- const filterSensitiveLog: (obj: SecurityKey) => any;
3526
- }
3527
- export interface ListSecurityKeysResponse {
3528
-
3529
- SecurityKeys?: SecurityKey[];
3530
-
3531
- NextToken?: string;
3532
- }
3533
- export declare namespace ListSecurityKeysResponse {
3534
-
3535
- const filterSensitiveLog: (obj: ListSecurityKeysResponse) => any;
3536
- }
3537
- export interface ListSecurityProfilePermissionsRequest {
3538
-
3539
- SecurityProfileId: string | undefined;
3540
-
3541
- InstanceId: string | undefined;
3542
-
3543
- NextToken?: string;
3544
-
3545
- MaxResults?: number;
3546
- }
3547
- export declare namespace ListSecurityProfilePermissionsRequest {
3548
-
3549
- const filterSensitiveLog: (obj: ListSecurityProfilePermissionsRequest) => any;
3550
- }
3551
- export interface ListSecurityProfilePermissionsResponse {
3552
-
3553
- Permissions?: string[];
3554
-
3555
- NextToken?: string;
3556
- }
3557
- export declare namespace ListSecurityProfilePermissionsResponse {
3558
-
3559
- const filterSensitiveLog: (obj: ListSecurityProfilePermissionsResponse) => any;
3560
- }
3561
- export interface ListSecurityProfilesRequest {
3562
-
3563
- InstanceId: string | undefined;
3564
-
3565
- NextToken?: string;
3566
-
3567
- MaxResults?: number;
3568
- }
3569
- export declare namespace ListSecurityProfilesRequest {
3570
-
3571
- const filterSensitiveLog: (obj: ListSecurityProfilesRequest) => any;
3572
- }
3573
-
3574
- export interface SecurityProfileSummary {
3575
-
3576
- Id?: string;
3577
-
3578
- Arn?: string;
3579
-
3580
- Name?: string;
3581
- }
3582
- export declare namespace SecurityProfileSummary {
3583
-
3584
- const filterSensitiveLog: (obj: SecurityProfileSummary) => any;
3585
- }
3586
- export interface ListSecurityProfilesResponse {
3587
-
3588
- SecurityProfileSummaryList?: SecurityProfileSummary[];
3589
-
3590
- NextToken?: string;
3591
- }
3592
- export declare namespace ListSecurityProfilesResponse {
3593
-
3594
- const filterSensitiveLog: (obj: ListSecurityProfilesResponse) => any;
3595
- }
3596
- export interface ListTagsForResourceRequest {
3597
-
3598
- resourceArn: string | undefined;
3599
- }
3600
- export declare namespace ListTagsForResourceRequest {
3601
-
3602
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
3603
- }
3604
- export interface ListTagsForResourceResponse {
3605
-
3606
- tags?: {
3607
- [key: string]: string;
3608
- };
3609
- }
3610
- export declare namespace ListTagsForResourceResponse {
3611
-
3612
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
3613
- }
3614
-
3615
- export interface ListUseCasesRequest {
3616
-
3617
- InstanceId: string | undefined;
3618
-
3619
- IntegrationAssociationId: string | undefined;
3620
-
3621
- NextToken?: string;
3622
-
3623
- MaxResults?: number;
3624
- }
3625
- export declare namespace ListUseCasesRequest {
3626
-
3627
- const filterSensitiveLog: (obj: ListUseCasesRequest) => any;
3628
- }
3629
-
3630
- export interface UseCase {
3631
-
3632
- UseCaseId?: string;
3633
-
3634
- UseCaseArn?: string;
3635
-
3636
- UseCaseType?: UseCaseType | string;
3637
- }
3638
- export declare namespace UseCase {
3639
-
3640
- const filterSensitiveLog: (obj: UseCase) => any;
3641
- }
3642
- export interface ListUseCasesResponse {
3643
-
3644
- UseCaseSummaryList?: UseCase[];
3645
-
3646
- NextToken?: string;
3647
- }
3648
- export declare namespace ListUseCasesResponse {
3649
-
3650
- const filterSensitiveLog: (obj: ListUseCasesResponse) => any;
3651
- }
3652
- export interface ListUserHierarchyGroupsRequest {
3653
-
3654
- InstanceId: string | undefined;
3655
-
3656
- NextToken?: string;
3657
-
3658
- MaxResults?: number;
3659
- }
3660
- export declare namespace ListUserHierarchyGroupsRequest {
3661
-
3662
- const filterSensitiveLog: (obj: ListUserHierarchyGroupsRequest) => any;
3663
- }
3664
- export interface ListUserHierarchyGroupsResponse {
3665
-
3666
- UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
3667
-
3668
- NextToken?: string;
3669
- }
3670
- export declare namespace ListUserHierarchyGroupsResponse {
3671
-
3672
- const filterSensitiveLog: (obj: ListUserHierarchyGroupsResponse) => any;
3673
- }
3674
- export interface ListUsersRequest {
3675
-
3676
- InstanceId: string | undefined;
3677
-
3678
- NextToken?: string;
3679
-
3680
- MaxResults?: number;
3681
- }
3682
- export declare namespace ListUsersRequest {
3683
-
3684
- const filterSensitiveLog: (obj: ListUsersRequest) => any;
3685
- }
3686
-
3687
- export interface UserSummary {
3688
-
3689
- Id?: string;
3690
-
3691
- Arn?: string;
3692
-
3693
- Username?: string;
3694
- }
3695
- export declare namespace UserSummary {
3696
-
3697
- const filterSensitiveLog: (obj: UserSummary) => any;
3698
- }
3699
- export interface ListUsersResponse {
3700
-
3701
- UserSummaryList?: UserSummary[];
3702
-
3703
- NextToken?: string;
3704
- }
3705
- export declare namespace ListUsersResponse {
3706
-
3707
- const filterSensitiveLog: (obj: ListUsersResponse) => any;
3708
- }
3709
- export interface PutUserStatusRequest {
3710
-
3711
- UserId: string | undefined;
3712
-
3713
- InstanceId: string | undefined;
3714
-
3715
- AgentStatusId: string | undefined;
3716
- }
3717
- export declare namespace PutUserStatusRequest {
3718
-
3719
- const filterSensitiveLog: (obj: PutUserStatusRequest) => any;
3720
- }
3721
- export interface PutUserStatusResponse {
3722
- }
3723
- export declare namespace PutUserStatusResponse {
3724
-
3725
- const filterSensitiveLog: (obj: PutUserStatusResponse) => any;
3726
- }
3727
- export interface ReleasePhoneNumberRequest {
3728
-
3729
- PhoneNumberId: string | undefined;
3730
-
3731
- ClientToken?: string;
3732
- }
3733
- export declare namespace ReleasePhoneNumberRequest {
3734
-
3735
- const filterSensitiveLog: (obj: ReleasePhoneNumberRequest) => any;
3736
- }
3737
- export interface ResumeContactRecordingRequest {
3738
-
3739
- InstanceId: string | undefined;
3740
-
3741
- ContactId: string | undefined;
3742
-
3743
- InitialContactId: string | undefined;
3744
- }
3745
- export declare namespace ResumeContactRecordingRequest {
3746
-
3747
- const filterSensitiveLog: (obj: ResumeContactRecordingRequest) => any;
3748
- }
3749
- export interface ResumeContactRecordingResponse {
3750
- }
3751
- export declare namespace ResumeContactRecordingResponse {
3752
-
3753
- const filterSensitiveLog: (obj: ResumeContactRecordingResponse) => any;
3754
- }