@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
@@ -1,6 +1,785 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
3
- import { AgentStatusState, ContactFlowModuleState, ContactFlowState, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, PhoneNumberCountryCode, PhoneNumberType, QueueStatus, QuickConnectConfig, ReferenceType, RoutingProfileQueueConfig, UserIdentityInfo, UserPhoneConfig, VocabularyLanguageCode, VocabularyState } from "./models_0";
3
+ import { AgentStatusState, Channel, ContactFlowModuleState, ContactFlowState, HierarchyGroupSummary, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, PhoneNumberCountryCode, PhoneNumberType, QueueStatus, QuickConnectConfig, QuickConnectSummary, QuickConnectType, ReferenceType, RoutingProfileQueueConfig, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, VocabularyLanguageCode, VocabularyState } from "./models_0";
4
+ export declare enum QueueType {
5
+ AGENT = "AGENT",
6
+ STANDARD = "STANDARD"
7
+ }
8
+ export interface ListQueuesRequest {
9
+ /**
10
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
11
+ */
12
+ InstanceId: string | undefined;
13
+ /**
14
+ * <p>The type of queue.</p>
15
+ */
16
+ QueueTypes?: (QueueType | string)[];
17
+ /**
18
+ * <p>The token for the next set of results. Use the value returned in the previous
19
+ * response in the next request to retrieve the next set of results.</p>
20
+ */
21
+ NextToken?: string;
22
+ /**
23
+ * <p>The maximum number of results to return per page.</p>
24
+ */
25
+ MaxResults?: number;
26
+ }
27
+ export declare namespace ListQueuesRequest {
28
+ /**
29
+ * @internal
30
+ */
31
+ const filterSensitiveLog: (obj: ListQueuesRequest) => any;
32
+ }
33
+ /**
34
+ * <p>Contains summary information about a queue.</p>
35
+ */
36
+ export interface QueueSummary {
37
+ /**
38
+ * <p>The identifier of the queue.</p>
39
+ */
40
+ Id?: string;
41
+ /**
42
+ * <p>The Amazon Resource Name (ARN) of the queue.</p>
43
+ */
44
+ Arn?: string;
45
+ /**
46
+ * <p>The name of the queue.</p>
47
+ */
48
+ Name?: string;
49
+ /**
50
+ * <p>The type of queue.</p>
51
+ */
52
+ QueueType?: QueueType | string;
53
+ }
54
+ export declare namespace QueueSummary {
55
+ /**
56
+ * @internal
57
+ */
58
+ const filterSensitiveLog: (obj: QueueSummary) => any;
59
+ }
60
+ export interface ListQueuesResponse {
61
+ /**
62
+ * <p>Information about the queues.</p>
63
+ */
64
+ QueueSummaryList?: QueueSummary[];
65
+ /**
66
+ * <p>If there are additional results, this is the token for the next set of results.</p>
67
+ */
68
+ NextToken?: string;
69
+ }
70
+ export declare namespace ListQueuesResponse {
71
+ /**
72
+ * @internal
73
+ */
74
+ const filterSensitiveLog: (obj: ListQueuesResponse) => any;
75
+ }
76
+ export interface ListQuickConnectsRequest {
77
+ /**
78
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
79
+ */
80
+ InstanceId: string | undefined;
81
+ /**
82
+ * <p>The token for the next set of results. Use the value returned in the previous
83
+ * response in the next request to retrieve the next set of results.</p>
84
+ */
85
+ NextToken?: string;
86
+ /**
87
+ * <p>The maximum number of results to return per page.</p>
88
+ */
89
+ MaxResults?: number;
90
+ /**
91
+ * <p>The type of quick connect. In the Amazon Connect console, when you create a quick connect, you are
92
+ * prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).</p>
93
+ */
94
+ QuickConnectTypes?: (QuickConnectType | string)[];
95
+ }
96
+ export declare namespace ListQuickConnectsRequest {
97
+ /**
98
+ * @internal
99
+ */
100
+ const filterSensitiveLog: (obj: ListQuickConnectsRequest) => any;
101
+ }
102
+ export interface ListQuickConnectsResponse {
103
+ /**
104
+ * <p>Information about the quick connects.</p>
105
+ */
106
+ QuickConnectSummaryList?: QuickConnectSummary[];
107
+ /**
108
+ * <p>If there are additional results, this is the token for the next set of results.</p>
109
+ */
110
+ NextToken?: string;
111
+ }
112
+ export declare namespace ListQuickConnectsResponse {
113
+ /**
114
+ * @internal
115
+ */
116
+ const filterSensitiveLog: (obj: ListQuickConnectsResponse) => any;
117
+ }
118
+ export interface ListRoutingProfileQueuesRequest {
119
+ /**
120
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
121
+ */
122
+ InstanceId: string | undefined;
123
+ /**
124
+ * <p>The identifier of the routing profile.</p>
125
+ */
126
+ RoutingProfileId: string | undefined;
127
+ /**
128
+ * <p>The token for the next set of results. Use the value returned in the previous
129
+ * response in the next request to retrieve the next set of results.</p>
130
+ */
131
+ NextToken?: string;
132
+ /**
133
+ * <p>The maximum number of results to return per page.</p>
134
+ */
135
+ MaxResults?: number;
136
+ }
137
+ export declare namespace ListRoutingProfileQueuesRequest {
138
+ /**
139
+ * @internal
140
+ */
141
+ const filterSensitiveLog: (obj: ListRoutingProfileQueuesRequest) => any;
142
+ }
143
+ /**
144
+ * <p>Contains summary information about a routing profile queue.</p>
145
+ */
146
+ export interface RoutingProfileQueueConfigSummary {
147
+ /**
148
+ * <p>The identifier for the queue.</p>
149
+ */
150
+ QueueId: string | undefined;
151
+ /**
152
+ * <p>The Amazon Resource Name (ARN) of the queue.</p>
153
+ */
154
+ QueueArn: string | undefined;
155
+ /**
156
+ * <p>The name of the queue.</p>
157
+ */
158
+ QueueName: string | undefined;
159
+ /**
160
+ * <p>The order in which contacts are to be handled for the queue. For more information, see
161
+ * <a href="https://docs.aws.amazon.com/connect/latest/adminguide/concepts-routing-profiles-priority.html">Queues: priority and
162
+ * delay</a>.</p>
163
+ */
164
+ Priority: number | undefined;
165
+ /**
166
+ * <p>The delay, in seconds, that a contact should be in the queue before they are routed to an
167
+ * available agent. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/concepts-routing-profiles-priority.html">Queues: priority and
168
+ * delay</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
169
+ */
170
+ Delay: number | undefined;
171
+ /**
172
+ * <p>The channels this queue supports.</p>
173
+ */
174
+ Channel: Channel | string | undefined;
175
+ }
176
+ export declare namespace RoutingProfileQueueConfigSummary {
177
+ /**
178
+ * @internal
179
+ */
180
+ const filterSensitiveLog: (obj: RoutingProfileQueueConfigSummary) => any;
181
+ }
182
+ export interface ListRoutingProfileQueuesResponse {
183
+ /**
184
+ * <p>If there are additional results, this is the token for the next set of results.</p>
185
+ */
186
+ NextToken?: string;
187
+ /**
188
+ * <p>Information about the routing profiles.</p>
189
+ */
190
+ RoutingProfileQueueConfigSummaryList?: RoutingProfileQueueConfigSummary[];
191
+ }
192
+ export declare namespace ListRoutingProfileQueuesResponse {
193
+ /**
194
+ * @internal
195
+ */
196
+ const filterSensitiveLog: (obj: ListRoutingProfileQueuesResponse) => any;
197
+ }
198
+ export interface ListRoutingProfilesRequest {
199
+ /**
200
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
201
+ */
202
+ InstanceId: string | undefined;
203
+ /**
204
+ * <p>The token for the next set of results. Use the value returned in the previous
205
+ * response in the next request to retrieve the next set of results.</p>
206
+ */
207
+ NextToken?: string;
208
+ /**
209
+ * <p>The maximum number of results to return per page.</p>
210
+ */
211
+ MaxResults?: number;
212
+ }
213
+ export declare namespace ListRoutingProfilesRequest {
214
+ /**
215
+ * @internal
216
+ */
217
+ const filterSensitiveLog: (obj: ListRoutingProfilesRequest) => any;
218
+ }
219
+ /**
220
+ * <p>Contains summary information about a routing profile.</p>
221
+ */
222
+ export interface RoutingProfileSummary {
223
+ /**
224
+ * <p>The identifier of the routing profile.</p>
225
+ */
226
+ Id?: string;
227
+ /**
228
+ * <p>The Amazon Resource Name (ARN) of the routing profile.</p>
229
+ */
230
+ Arn?: string;
231
+ /**
232
+ * <p>The name of the routing profile.</p>
233
+ */
234
+ Name?: string;
235
+ }
236
+ export declare namespace RoutingProfileSummary {
237
+ /**
238
+ * @internal
239
+ */
240
+ const filterSensitiveLog: (obj: RoutingProfileSummary) => any;
241
+ }
242
+ export interface ListRoutingProfilesResponse {
243
+ /**
244
+ * <p>Information about the routing profiles.</p>
245
+ */
246
+ RoutingProfileSummaryList?: RoutingProfileSummary[];
247
+ /**
248
+ * <p>If there are additional results, this is the token for the next set of results.</p>
249
+ */
250
+ NextToken?: string;
251
+ }
252
+ export declare namespace ListRoutingProfilesResponse {
253
+ /**
254
+ * @internal
255
+ */
256
+ const filterSensitiveLog: (obj: ListRoutingProfilesResponse) => any;
257
+ }
258
+ export interface ListSecurityKeysRequest {
259
+ /**
260
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
261
+ */
262
+ InstanceId: string | undefined;
263
+ /**
264
+ * <p>The token for the next set of results. Use the value returned in the previous
265
+ * response in the next request to retrieve the next set of results.</p>
266
+ */
267
+ NextToken?: string;
268
+ /**
269
+ * <p>The maximum number of results to return per page.</p>
270
+ */
271
+ MaxResults?: number;
272
+ }
273
+ export declare namespace ListSecurityKeysRequest {
274
+ /**
275
+ * @internal
276
+ */
277
+ const filterSensitiveLog: (obj: ListSecurityKeysRequest) => any;
278
+ }
279
+ /**
280
+ * <p>Configuration information of the security key.</p>
281
+ */
282
+ export interface SecurityKey {
283
+ /**
284
+ * <p>The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.</p>
285
+ */
286
+ AssociationId?: string;
287
+ /**
288
+ * <p>The key of the security key.</p>
289
+ */
290
+ Key?: string;
291
+ /**
292
+ * <p>When the security key was created.</p>
293
+ */
294
+ CreationTime?: Date;
295
+ }
296
+ export declare namespace SecurityKey {
297
+ /**
298
+ * @internal
299
+ */
300
+ const filterSensitiveLog: (obj: SecurityKey) => any;
301
+ }
302
+ export interface ListSecurityKeysResponse {
303
+ /**
304
+ * <p>The security keys.</p>
305
+ */
306
+ SecurityKeys?: SecurityKey[];
307
+ /**
308
+ * <p>If there are additional results, this is the token for the next set of results.</p>
309
+ */
310
+ NextToken?: string;
311
+ }
312
+ export declare namespace ListSecurityKeysResponse {
313
+ /**
314
+ * @internal
315
+ */
316
+ const filterSensitiveLog: (obj: ListSecurityKeysResponse) => any;
317
+ }
318
+ export interface ListSecurityProfilePermissionsRequest {
319
+ /**
320
+ * <p>The identifier for the security profle.</p>
321
+ */
322
+ SecurityProfileId: string | undefined;
323
+ /**
324
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
325
+ */
326
+ InstanceId: string | undefined;
327
+ /**
328
+ * <p>The token for the next set of results. Use the value returned in the previous
329
+ * response in the next request to retrieve the next set of results.</p>
330
+ */
331
+ NextToken?: string;
332
+ /**
333
+ * <p>The maximum number of results to return per page.</p>
334
+ */
335
+ MaxResults?: number;
336
+ }
337
+ export declare namespace ListSecurityProfilePermissionsRequest {
338
+ /**
339
+ * @internal
340
+ */
341
+ const filterSensitiveLog: (obj: ListSecurityProfilePermissionsRequest) => any;
342
+ }
343
+ export interface ListSecurityProfilePermissionsResponse {
344
+ /**
345
+ * <p>The permissions granted to the security profile.</p>
346
+ */
347
+ Permissions?: string[];
348
+ /**
349
+ * <p>If there are additional results, this is the token for the next set of results.</p>
350
+ */
351
+ NextToken?: string;
352
+ }
353
+ export declare namespace ListSecurityProfilePermissionsResponse {
354
+ /**
355
+ * @internal
356
+ */
357
+ const filterSensitiveLog: (obj: ListSecurityProfilePermissionsResponse) => any;
358
+ }
359
+ export interface ListSecurityProfilesRequest {
360
+ /**
361
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
362
+ */
363
+ InstanceId: string | undefined;
364
+ /**
365
+ * <p>The token for the next set of results. Use the value returned in the previous
366
+ * response in the next request to retrieve the next set of results.</p>
367
+ */
368
+ NextToken?: string;
369
+ /**
370
+ * <p>The maximum number of results to return per page.</p>
371
+ */
372
+ MaxResults?: number;
373
+ }
374
+ export declare namespace ListSecurityProfilesRequest {
375
+ /**
376
+ * @internal
377
+ */
378
+ const filterSensitiveLog: (obj: ListSecurityProfilesRequest) => any;
379
+ }
380
+ /**
381
+ * <p>Contains information about a security profile.</p>
382
+ */
383
+ export interface SecurityProfileSummary {
384
+ /**
385
+ * <p>The identifier of the security profile.</p>
386
+ */
387
+ Id?: string;
388
+ /**
389
+ * <p>The Amazon Resource Name (ARN) of the security profile.</p>
390
+ */
391
+ Arn?: string;
392
+ /**
393
+ * <p>The name of the security profile.</p>
394
+ */
395
+ Name?: string;
396
+ }
397
+ export declare namespace SecurityProfileSummary {
398
+ /**
399
+ * @internal
400
+ */
401
+ const filterSensitiveLog: (obj: SecurityProfileSummary) => any;
402
+ }
403
+ export interface ListSecurityProfilesResponse {
404
+ /**
405
+ * <p>Information about the security profiles.</p>
406
+ */
407
+ SecurityProfileSummaryList?: SecurityProfileSummary[];
408
+ /**
409
+ * <p>If there are additional results, this is the token for the next set of results.</p>
410
+ */
411
+ NextToken?: string;
412
+ }
413
+ export declare namespace ListSecurityProfilesResponse {
414
+ /**
415
+ * @internal
416
+ */
417
+ const filterSensitiveLog: (obj: ListSecurityProfilesResponse) => any;
418
+ }
419
+ export interface ListTagsForResourceRequest {
420
+ /**
421
+ * <p>The Amazon Resource Name (ARN) of the resource.</p>
422
+ */
423
+ resourceArn: string | undefined;
424
+ }
425
+ export declare namespace ListTagsForResourceRequest {
426
+ /**
427
+ * @internal
428
+ */
429
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
430
+ }
431
+ export interface ListTagsForResourceResponse {
432
+ /**
433
+ * <p>Information about the tags.</p>
434
+ */
435
+ tags?: Record<string, string>;
436
+ }
437
+ export declare namespace ListTagsForResourceResponse {
438
+ /**
439
+ * @internal
440
+ */
441
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
442
+ }
443
+ export interface ListTaskTemplatesRequest {
444
+ /**
445
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
446
+ */
447
+ InstanceId: string | undefined;
448
+ /**
449
+ * <p>The token for the next set of results. Use the value returned in the previous
450
+ * response in the next request to retrieve the next set of results.</p>
451
+ * <important>
452
+ * <p>It is not expected that you set this because the value returned in the previous response is
453
+ * always null.</p>
454
+ * </important>
455
+ */
456
+ NextToken?: string;
457
+ /**
458
+ * <p>The maximum number of results to return per page.</p>
459
+ * <important>
460
+ * <p>It is not expected that you set this.</p>
461
+ * </important>
462
+ */
463
+ MaxResults?: number;
464
+ /**
465
+ * <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
466
+ * Tasks can only be created from <code>ACTIVE</code> templates.
467
+ * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
468
+ */
469
+ Status?: TaskTemplateStatus | string;
470
+ /**
471
+ * <p>The name of the task template.</p>
472
+ */
473
+ Name?: string;
474
+ }
475
+ export declare namespace ListTaskTemplatesRequest {
476
+ /**
477
+ * @internal
478
+ */
479
+ const filterSensitiveLog: (obj: ListTaskTemplatesRequest) => any;
480
+ }
481
+ /**
482
+ * <p>Contains summary information about the task template.</p>
483
+ */
484
+ export interface TaskTemplateMetadata {
485
+ /**
486
+ * <p>A unique identifier for the task template.</p>
487
+ */
488
+ Id?: string;
489
+ /**
490
+ * <p>The Amazon Resource Name (ARN) of the task template.</p>
491
+ */
492
+ Arn?: string;
493
+ /**
494
+ * <p>The name of the task template.</p>
495
+ */
496
+ Name?: string;
497
+ /**
498
+ * <p>The description of the task template.</p>
499
+ */
500
+ Description?: string;
501
+ /**
502
+ * <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
503
+ * Tasks can only be created from <code>ACTIVE</code> templates.
504
+ * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
505
+ */
506
+ Status?: TaskTemplateStatus | string;
507
+ /**
508
+ * <p>The timestamp when the task template was last modified.</p>
509
+ */
510
+ LastModifiedTime?: Date;
511
+ /**
512
+ * <p>The timestamp when the task template was created.</p>
513
+ */
514
+ CreatedTime?: Date;
515
+ }
516
+ export declare namespace TaskTemplateMetadata {
517
+ /**
518
+ * @internal
519
+ */
520
+ const filterSensitiveLog: (obj: TaskTemplateMetadata) => any;
521
+ }
522
+ export interface ListTaskTemplatesResponse {
523
+ /**
524
+ * <p>Provides details about a list of task templates belonging to an instance.</p>
525
+ */
526
+ TaskTemplates?: TaskTemplateMetadata[];
527
+ /**
528
+ * <p>If there are additional results, this is the token for the next set of results.</p>
529
+ * <important>
530
+ * <p>This is always returned as a null in the response.</p>
531
+ * </important>
532
+ */
533
+ NextToken?: string;
534
+ }
535
+ export declare namespace ListTaskTemplatesResponse {
536
+ /**
537
+ * @internal
538
+ */
539
+ const filterSensitiveLog: (obj: ListTaskTemplatesResponse) => any;
540
+ }
541
+ /**
542
+ * <p>Provides summary information about the use cases for the specified integration
543
+ * association.</p>
544
+ */
545
+ export interface ListUseCasesRequest {
546
+ /**
547
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
548
+ */
549
+ InstanceId: string | undefined;
550
+ /**
551
+ * <p>The identifier for the integration association.</p>
552
+ */
553
+ IntegrationAssociationId: string | undefined;
554
+ /**
555
+ * <p>The token for the next set of results. Use the value returned in the previous
556
+ * response in the next request to retrieve the next set of results.</p>
557
+ */
558
+ NextToken?: string;
559
+ /**
560
+ * <p>The maximum number of results to return per page.</p>
561
+ */
562
+ MaxResults?: number;
563
+ }
564
+ export declare namespace ListUseCasesRequest {
565
+ /**
566
+ * @internal
567
+ */
568
+ const filterSensitiveLog: (obj: ListUseCasesRequest) => any;
569
+ }
570
+ /**
571
+ * <p>Contains the
572
+ * use
573
+ * case.</p>
574
+ */
575
+ export interface UseCase {
576
+ /**
577
+ * <p>The identifier for the use case.</p>
578
+ */
579
+ UseCaseId?: string;
580
+ /**
581
+ * <p>The Amazon Resource Name (ARN) for the use case.</p>
582
+ */
583
+ UseCaseArn?: string;
584
+ /**
585
+ * <p>The type of use case to associate to the integration association. Each integration
586
+ * association can have only one of each use case type.</p>
587
+ */
588
+ UseCaseType?: UseCaseType | string;
589
+ }
590
+ export declare namespace UseCase {
591
+ /**
592
+ * @internal
593
+ */
594
+ const filterSensitiveLog: (obj: UseCase) => any;
595
+ }
596
+ export interface ListUseCasesResponse {
597
+ /**
598
+ * <p>The use cases.</p>
599
+ */
600
+ UseCaseSummaryList?: UseCase[];
601
+ /**
602
+ * <p>If there are additional results, this is the token for the next set of results.</p>
603
+ */
604
+ NextToken?: string;
605
+ }
606
+ export declare namespace ListUseCasesResponse {
607
+ /**
608
+ * @internal
609
+ */
610
+ const filterSensitiveLog: (obj: ListUseCasesResponse) => any;
611
+ }
612
+ export interface ListUserHierarchyGroupsRequest {
613
+ /**
614
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
615
+ */
616
+ InstanceId: string | undefined;
617
+ /**
618
+ * <p>The token for the next set of results. Use the value returned in the previous
619
+ * response in the next request to retrieve the next set of results.</p>
620
+ */
621
+ NextToken?: string;
622
+ /**
623
+ * <p>The maximum number of results to return per page.</p>
624
+ */
625
+ MaxResults?: number;
626
+ }
627
+ export declare namespace ListUserHierarchyGroupsRequest {
628
+ /**
629
+ * @internal
630
+ */
631
+ const filterSensitiveLog: (obj: ListUserHierarchyGroupsRequest) => any;
632
+ }
633
+ export interface ListUserHierarchyGroupsResponse {
634
+ /**
635
+ * <p>Information about the hierarchy groups.</p>
636
+ */
637
+ UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
638
+ /**
639
+ * <p>If there are additional results, this is the token for the next set of results.</p>
640
+ */
641
+ NextToken?: string;
642
+ }
643
+ export declare namespace ListUserHierarchyGroupsResponse {
644
+ /**
645
+ * @internal
646
+ */
647
+ const filterSensitiveLog: (obj: ListUserHierarchyGroupsResponse) => any;
648
+ }
649
+ export interface ListUsersRequest {
650
+ /**
651
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
652
+ */
653
+ InstanceId: string | undefined;
654
+ /**
655
+ * <p>The token for the next set of results. Use the value returned in the previous
656
+ * response in the next request to retrieve the next set of results.</p>
657
+ */
658
+ NextToken?: string;
659
+ /**
660
+ * <p>The maximum number of results to return per page.</p>
661
+ */
662
+ MaxResults?: number;
663
+ }
664
+ export declare namespace ListUsersRequest {
665
+ /**
666
+ * @internal
667
+ */
668
+ const filterSensitiveLog: (obj: ListUsersRequest) => any;
669
+ }
670
+ /**
671
+ * <p>Contains summary information about a user.</p>
672
+ */
673
+ export interface UserSummary {
674
+ /**
675
+ * <p>The identifier of the user account.</p>
676
+ */
677
+ Id?: string;
678
+ /**
679
+ * <p>The Amazon Resource Name (ARN) of the user account.</p>
680
+ */
681
+ Arn?: string;
682
+ /**
683
+ * <p>The Amazon Connect user name of the user account.</p>
684
+ */
685
+ Username?: string;
686
+ }
687
+ export declare namespace UserSummary {
688
+ /**
689
+ * @internal
690
+ */
691
+ const filterSensitiveLog: (obj: UserSummary) => any;
692
+ }
693
+ export interface ListUsersResponse {
694
+ /**
695
+ * <p>Information about the users.</p>
696
+ */
697
+ UserSummaryList?: UserSummary[];
698
+ /**
699
+ * <p>If there are additional results, this is the token for the next set of results.</p>
700
+ */
701
+ NextToken?: string;
702
+ }
703
+ export declare namespace ListUsersResponse {
704
+ /**
705
+ * @internal
706
+ */
707
+ const filterSensitiveLog: (obj: ListUsersResponse) => any;
708
+ }
709
+ export interface PutUserStatusRequest {
710
+ /**
711
+ * <p>The identifier of the user.</p>
712
+ */
713
+ UserId: string | undefined;
714
+ /**
715
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
716
+ */
717
+ InstanceId: string | undefined;
718
+ /**
719
+ * <p>The identifier of the agent status.</p>
720
+ */
721
+ AgentStatusId: string | undefined;
722
+ }
723
+ export declare namespace PutUserStatusRequest {
724
+ /**
725
+ * @internal
726
+ */
727
+ const filterSensitiveLog: (obj: PutUserStatusRequest) => any;
728
+ }
729
+ export interface PutUserStatusResponse {
730
+ }
731
+ export declare namespace PutUserStatusResponse {
732
+ /**
733
+ * @internal
734
+ */
735
+ const filterSensitiveLog: (obj: PutUserStatusResponse) => any;
736
+ }
737
+ export interface ReleasePhoneNumberRequest {
738
+ /**
739
+ * <p>A unique identifier for the phone number.</p>
740
+ */
741
+ PhoneNumberId: string | undefined;
742
+ /**
743
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
744
+ * request.</p>
745
+ */
746
+ ClientToken?: string;
747
+ }
748
+ export declare namespace ReleasePhoneNumberRequest {
749
+ /**
750
+ * @internal
751
+ */
752
+ const filterSensitiveLog: (obj: ReleasePhoneNumberRequest) => any;
753
+ }
754
+ export interface ResumeContactRecordingRequest {
755
+ /**
756
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
757
+ */
758
+ InstanceId: string | undefined;
759
+ /**
760
+ * <p>The identifier of the contact.</p>
761
+ */
762
+ ContactId: string | undefined;
763
+ /**
764
+ * <p>The identifier of the contact. This is the identifier of the contact associated with the
765
+ * first interaction with the contact center.</p>
766
+ */
767
+ InitialContactId: string | undefined;
768
+ }
769
+ export declare namespace ResumeContactRecordingRequest {
770
+ /**
771
+ * @internal
772
+ */
773
+ const filterSensitiveLog: (obj: ResumeContactRecordingRequest) => any;
774
+ }
775
+ export interface ResumeContactRecordingResponse {
776
+ }
777
+ export declare namespace ResumeContactRecordingResponse {
778
+ /**
779
+ * @internal
780
+ */
781
+ const filterSensitiveLog: (obj: ResumeContactRecordingResponse) => any;
782
+ }
4
783
  export interface SearchAvailablePhoneNumbersRequest {
5
784
  /**
6
785
  * <p>The Amazon Resource Name (ARN) for Amazon Connect instances that phone numbers are claimed to.</p>
@@ -103,7 +882,7 @@ export declare enum StringComparisonType {
103
882
  }
104
883
  /**
105
884
  * <p>A leaf node condition which can be used to specify a string condition, for example,
106
- * <code>username = 'abc'</code>. </p>
885
+ * <code>username = 'abc'</code>. </p>
107
886
  */
108
887
  export interface StringCondition {
109
888
  /**
@@ -127,7 +906,7 @@ export declare namespace StringCondition {
127
906
  }
128
907
  /**
129
908
  * <p>A leaf node condition which can be used to specify a tag condition, for example, <code>HAVE
130
- * BPO = 123</code>. </p>
909
+ * BPO = 123</code>. </p>
131
910
  */
132
911
  export interface TagCondition {
133
912
  /**
@@ -146,26 +925,28 @@ export declare namespace TagCondition {
146
925
  const filterSensitiveLog: (obj: TagCondition) => any;
147
926
  }
148
927
  /**
149
- * <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>. This accepts an
150
- * <code>OR</code> of <code>AND</code> (List of List) input where: </p>
928
+ * <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
929
+ * This accepts an <code>OR</code> of <code>AND</code> (List of List) input where: </p>
151
930
  * <ul>
152
931
  * <li>
153
- * <p>Top level list specifies conditions that need to be applied
154
- * with <code>OR</code> operator</p>
932
+ * <p>Top level list specifies conditions that need to be applied with <code>OR</code>
933
+ * operator</p>
155
934
  * </li>
156
935
  * <li>
157
936
  * <p>Inner list specifies conditions that need to be applied with <code>AND</code>
158
- * operator.</p>
937
+ * operator.</p>
159
938
  * </li>
160
939
  * </ul>
161
940
  */
162
941
  export interface ControlPlaneTagFilter {
163
942
  /**
164
- * <p>A list of conditions which would be applied together with an <code>OR</code> condition. </p>
943
+ * <p>A list of conditions which would be applied together with an <code>OR</code> condition.
944
+ * </p>
165
945
  */
166
946
  OrConditions?: TagCondition[][];
167
947
  /**
168
- * <p>A list of conditions which would be applied together with an <code>AND</code> condition.</p>
948
+ * <p>A list of conditions which would be applied together with an <code>AND</code>
949
+ * condition.</p>
169
950
  */
170
951
  AndConditions?: TagCondition[];
171
952
  /**
@@ -184,16 +965,16 @@ export declare namespace ControlPlaneTagFilter {
184
965
  */
185
966
  export interface UserSearchFilter {
186
967
  /**
187
- * <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>. This accepts an
188
- * <code>OR</code> of <code>AND</code> (List of List) input where: </p>
968
+ * <p>An object that can be used to specify Tag conditions inside the <code>SearchFilter</code>.
969
+ * This accepts an <code>OR</code> of <code>AND</code> (List of List) input where: </p>
189
970
  * <ul>
190
971
  * <li>
191
- * <p>Top level list specifies conditions that need to be applied
192
- * with <code>OR</code> operator</p>
972
+ * <p>Top level list specifies conditions that need to be applied with <code>OR</code>
973
+ * operator</p>
193
974
  * </li>
194
975
  * <li>
195
976
  * <p>Inner list specifies conditions that need to be applied with <code>AND</code>
196
- * operator.</p>
977
+ * operator.</p>
197
978
  * </li>
198
979
  * </ul>
199
980
  */
@@ -263,9 +1044,7 @@ export interface UserSearchSummary {
263
1044
  /**
264
1045
  * <p>The tags used to organize, track, or control access for this resource.</p>
265
1046
  */
266
- Tags?: {
267
- [key: string]: string;
268
- };
1047
+ Tags?: Record<string, string>;
269
1048
  /**
270
1049
  * <p>The name of the user.</p>
271
1050
  */
@@ -444,9 +1223,7 @@ export interface StartChatContactRequest {
444
1223
  * <p>There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys
445
1224
  * can include only alphanumeric, dash, and underscore characters.</p>
446
1225
  */
447
- Attributes?: {
448
- [key: string]: string;
449
- };
1226
+ Attributes?: Record<string, string>;
450
1227
  /**
451
1228
  * <p>Information identifying the participant.</p>
452
1229
  */
@@ -461,12 +1238,14 @@ export interface StartChatContactRequest {
461
1238
  */
462
1239
  ClientToken?: string;
463
1240
  /**
464
- * <p>The total duration of the newly started chat session. If not specified, the chat session duration defaults to 25 hour.
465
- * The minumum configurable time is 60 minutes. The maximum configurable time is 10,080 minutes (7 days).</p>
1241
+ * <p>The total duration of the newly started chat session. If not specified, the chat session
1242
+ * duration defaults to 25 hour. The minumum configurable time is 60 minutes. The maximum
1243
+ * configurable time is 10,080 minutes (7 days).</p>
466
1244
  */
467
1245
  ChatDurationInMinutes?: number;
468
1246
  /**
469
- * <p>The supported chat message content types. Content types can be text/plain or both text/plain and text/markdown.</p>
1247
+ * <p>The supported chat message content types. Content types can be text/plain or both text/plain
1248
+ * and text/markdown.</p>
470
1249
  */
471
1250
  SupportedMessagingContentTypes?: string[];
472
1251
  }
@@ -705,9 +1484,7 @@ export interface StartOutboundVoiceContactRequest {
705
1484
  * <p>There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys
706
1485
  * can include only alphanumeric, dash, and underscore characters.</p>
707
1486
  */
708
- Attributes?: {
709
- [key: string]: string;
710
- };
1487
+ Attributes?: Record<string, string>;
711
1488
  /**
712
1489
  * <p>Configuration of the answering machine detection for this outbound call. </p>
713
1490
  */
@@ -743,8 +1520,8 @@ export declare namespace StartOutboundVoiceContactResponse {
743
1520
  const filterSensitiveLog: (obj: StartOutboundVoiceContactResponse) => any;
744
1521
  }
745
1522
  /**
746
- * <p>A link that an agent selects to complete a given task. You can have up to 4,096 UTF-8 bytes
747
- * across all references for a contact.</p>
1523
+ * <p>Well-formed data on a contact, used by agents to complete a contact request. You can have up
1524
+ * to 4,096 UTF-8 bytes across all references for a contact.</p>
748
1525
  */
749
1526
  export interface Reference {
750
1527
  /**
@@ -753,8 +1530,7 @@ export interface Reference {
753
1530
  */
754
1531
  Value: string | undefined;
755
1532
  /**
756
- * <p>The type of the reference. Only <code>URL</code> type can be added or updated on a
757
- * contact.</p>
1533
+ * <p>The type of the reference.</p>
758
1534
  */
759
1535
  Type: ReferenceType | string | undefined;
760
1536
  }
@@ -782,16 +1558,14 @@ export interface StartTaskContactRequest {
782
1558
  * <p>arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/<b>846ec553-a005-41c0-8341-xxxxxxxxxxxx</b>
783
1559
  * </p>
784
1560
  */
785
- ContactFlowId: string | undefined;
1561
+ ContactFlowId?: string;
786
1562
  /**
787
1563
  * <p>A custom key-value pair using an attribute map. The attributes are standard Amazon Connect
788
1564
  * attributes, and can be accessed in contact flows just like any other contact attributes.</p>
789
1565
  * <p>There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys
790
1566
  * can include only alphanumeric, dash, and underscore characters.</p>
791
1567
  */
792
- Attributes?: {
793
- [key: string]: string;
794
- };
1568
+ Attributes?: Record<string, string>;
795
1569
  /**
796
1570
  * <p>The name of a task that is shown to an agent in the Contact Control Panel (CCP).</p>
797
1571
  */
@@ -799,9 +1573,7 @@ export interface StartTaskContactRequest {
799
1573
  /**
800
1574
  * <p>A formatted URL that is shown to an agent in the Contact Control Panel (CCP).</p>
801
1575
  */
802
- References?: {
803
- [key: string]: Reference;
804
- };
1576
+ References?: Record<string, Reference>;
805
1577
  /**
806
1578
  * <p>A description of the task that is shown to an agent in the Contact Control Panel
807
1579
  * (CCP).</p>
@@ -816,6 +1588,14 @@ export interface StartTaskContactRequest {
816
1588
  * <p>The timestamp, in Unix Epoch seconds format, at which to start running the inbound contact flow. The scheduled time cannot be in the past. It must be within up to 6 days in future. </p>
817
1589
  */
818
1590
  ScheduledTime?: Date;
1591
+ /**
1592
+ * <p>A unique identifier for the task template.</p>
1593
+ */
1594
+ TaskTemplateId?: string;
1595
+ /**
1596
+ * <p>The identifier for the quick connect.</p>
1597
+ */
1598
+ QuickConnectId?: string;
819
1599
  }
820
1600
  export declare namespace StartTaskContactRequest {
821
1601
  /**
@@ -969,9 +1749,7 @@ export interface TagResourceRequest {
969
1749
  /**
970
1750
  * <p>One or more tags. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
971
1751
  */
972
- tags: {
973
- [key: string]: string;
974
- } | undefined;
1752
+ tags: Record<string, string> | undefined;
975
1753
  }
976
1754
  export declare namespace TagResourceRequest {
977
1755
  /**
@@ -979,6 +1757,55 @@ export declare namespace TagResourceRequest {
979
1757
  */
980
1758
  const filterSensitiveLog: (obj: TagResourceRequest) => any;
981
1759
  }
1760
+ export interface TransferContactRequest {
1761
+ /**
1762
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
1763
+ */
1764
+ InstanceId: string | undefined;
1765
+ /**
1766
+ * <p>The identifier of the contact in this instance of Amazon Connect. </p>
1767
+ */
1768
+ ContactId: string | undefined;
1769
+ /**
1770
+ * <p>The identifier for the queue.</p>
1771
+ */
1772
+ QueueId?: string;
1773
+ /**
1774
+ * <p>The identifier for the user.</p>
1775
+ */
1776
+ UserId?: string;
1777
+ /**
1778
+ * <p>The identifier of the contact flow.</p>
1779
+ */
1780
+ ContactFlowId: string | undefined;
1781
+ /**
1782
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
1783
+ * request.</p>
1784
+ */
1785
+ ClientToken?: string;
1786
+ }
1787
+ export declare namespace TransferContactRequest {
1788
+ /**
1789
+ * @internal
1790
+ */
1791
+ const filterSensitiveLog: (obj: TransferContactRequest) => any;
1792
+ }
1793
+ export interface TransferContactResponse {
1794
+ /**
1795
+ * <p>The identifier of the contact in this instance of Amazon Connect. </p>
1796
+ */
1797
+ ContactId?: string;
1798
+ /**
1799
+ * <p>The Amazon Resource Name (ARN) of the contact.</p>
1800
+ */
1801
+ ContactArn?: string;
1802
+ }
1803
+ export declare namespace TransferContactResponse {
1804
+ /**
1805
+ * @internal
1806
+ */
1807
+ const filterSensitiveLog: (obj: TransferContactResponse) => any;
1808
+ }
982
1809
  export interface UntagResourceRequest {
983
1810
  /**
984
1811
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -1050,11 +1877,9 @@ export interface UpdateContactRequest {
1050
1877
  */
1051
1878
  Description?: string;
1052
1879
  /**
1053
- * <p>A formatted URL that is shown to an agent in the Contact Control Panel (CCP).</p>
1880
+ * <p>Well-formed data on contact, shown to agents on Contact Control Panel (CCP).</p>
1054
1881
  */
1055
- References?: {
1056
- [key: string]: Reference;
1057
- };
1882
+ References?: Record<string, Reference>;
1058
1883
  }
1059
1884
  export declare namespace UpdateContactRequest {
1060
1885
  /**
@@ -1086,9 +1911,7 @@ export interface UpdateContactAttributesRequest {
1086
1911
  * <p>You can have up to 32,768 UTF-8 bytes across all attributes for a contact. Attribute keys
1087
1912
  * can include only alphanumeric, dash, and underscore characters.</p>
1088
1913
  */
1089
- Attributes: {
1090
- [key: string]: string;
1091
- } | undefined;
1914
+ Attributes: Record<string, string> | undefined;
1092
1915
  }
1093
1916
  export declare namespace UpdateContactAttributesRequest {
1094
1917
  /**
@@ -1645,6 +2468,110 @@ export declare namespace UpdateSecurityProfileRequest {
1645
2468
  */
1646
2469
  const filterSensitiveLog: (obj: UpdateSecurityProfileRequest) => any;
1647
2470
  }
2471
+ export interface UpdateTaskTemplateRequest {
2472
+ /**
2473
+ * <p>A unique identifier for the task template.</p>
2474
+ */
2475
+ TaskTemplateId: string | undefined;
2476
+ /**
2477
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
2478
+ */
2479
+ InstanceId: string | undefined;
2480
+ /**
2481
+ * <p>The name of the task template.</p>
2482
+ */
2483
+ Name?: string;
2484
+ /**
2485
+ * <p>The description of the task template.</p>
2486
+ */
2487
+ Description?: string;
2488
+ /**
2489
+ * <p>The identifier of the flow that runs by default when a task is created by referencing this template.</p>
2490
+ */
2491
+ ContactFlowId?: string;
2492
+ /**
2493
+ * <p>Constraints that are applicable to the fields listed.</p>
2494
+ */
2495
+ Constraints?: TaskTemplateConstraints;
2496
+ /**
2497
+ * <p>The default values for fields when a task is created by referencing this template.</p>
2498
+ */
2499
+ Defaults?: TaskTemplateDefaults;
2500
+ /**
2501
+ * <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
2502
+ * Tasks can only be created from <code>ACTIVE</code> templates.
2503
+ * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
2504
+ */
2505
+ Status?: TaskTemplateStatus | string;
2506
+ /**
2507
+ * <p>Fields that are part of the template.</p>
2508
+ */
2509
+ Fields?: TaskTemplateField[];
2510
+ }
2511
+ export declare namespace UpdateTaskTemplateRequest {
2512
+ /**
2513
+ * @internal
2514
+ */
2515
+ const filterSensitiveLog: (obj: UpdateTaskTemplateRequest) => any;
2516
+ }
2517
+ export interface UpdateTaskTemplateResponse {
2518
+ /**
2519
+ * <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
2520
+ */
2521
+ InstanceId?: string;
2522
+ /**
2523
+ * <p>The identifier of the task template resource.</p>
2524
+ */
2525
+ Id?: string;
2526
+ /**
2527
+ * <p>The Amazon Resource Name (ARN) for the task template resource.</p>
2528
+ */
2529
+ Arn?: string;
2530
+ /**
2531
+ * <p>The name of the task template.</p>
2532
+ */
2533
+ Name?: string;
2534
+ /**
2535
+ * <p>The description of the task template.</p>
2536
+ */
2537
+ Description?: string;
2538
+ /**
2539
+ * <p>The identifier of the flow that runs by default when a task is created by referencing this template.</p>
2540
+ */
2541
+ ContactFlowId?: string;
2542
+ /**
2543
+ * <p>Constraints that are applicable to the fields listed.</p>
2544
+ */
2545
+ Constraints?: TaskTemplateConstraints;
2546
+ /**
2547
+ * <p>The default values for fields when a task is created by referencing this template.</p>
2548
+ */
2549
+ Defaults?: TaskTemplateDefaults;
2550
+ /**
2551
+ * <p>Fields that are part of the template.</p>
2552
+ */
2553
+ Fields?: TaskTemplateField[];
2554
+ /**
2555
+ * <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
2556
+ * Tasks can only be created from <code>ACTIVE</code> templates.
2557
+ * If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
2558
+ */
2559
+ Status?: TaskTemplateStatus | string;
2560
+ /**
2561
+ * <p>The timestamp when the task template was last modified.</p>
2562
+ */
2563
+ LastModifiedTime?: Date;
2564
+ /**
2565
+ * <p>The timestamp when the task template was created.</p>
2566
+ */
2567
+ CreatedTime?: Date;
2568
+ }
2569
+ export declare namespace UpdateTaskTemplateResponse {
2570
+ /**
2571
+ * @internal
2572
+ */
2573
+ const filterSensitiveLog: (obj: UpdateTaskTemplateResponse) => any;
2574
+ }
1648
2575
  export interface UpdateUserHierarchyRequest {
1649
2576
  /**
1650
2577
  * <p>The identifier of the hierarchy group.</p>
@@ -1834,11 +2761,13 @@ export declare namespace UpdateUserSecurityProfilesRequest {
1834
2761
  */
1835
2762
  export interface UserSearchCriteria {
1836
2763
  /**
1837
- * <p>A list of conditions which would be applied together with an <code>OR</code> condition.</p>
2764
+ * <p>A list of conditions which would be applied together with an <code>OR</code>
2765
+ * condition.</p>
1838
2766
  */
1839
2767
  OrConditions?: UserSearchCriteria[];
1840
2768
  /**
1841
- * <p>A list of conditions which would be applied together with an <code>AND</code> condition. </p>
2769
+ * <p>A list of conditions which would be applied together with an <code>AND</code> condition.
2770
+ * </p>
1842
2771
  */
1843
2772
  AndConditions?: UserSearchCriteria[];
1844
2773
  /**