aws-sdk-connect 1.24.0 → 1.29.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.
- checksums.yaml +4 -4
- data/lib/aws-sdk-connect.rb +3 -1
- data/lib/aws-sdk-connect/client.rb +193 -6
- data/lib/aws-sdk-connect/client_api.rb +89 -0
- data/lib/aws-sdk-connect/errors.rb +2 -0
- data/lib/aws-sdk-connect/resource.rb +2 -0
- data/lib/aws-sdk-connect/types.rb +290 -4
- metadata +4 -4
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -31,6 +33,7 @@ module Aws::Connect
|
|
31
33
|
class ChatMessage < Struct.new(
|
32
34
|
:content_type,
|
33
35
|
:content)
|
36
|
+
SENSITIVE = []
|
34
37
|
include Aws::Structure
|
35
38
|
end
|
36
39
|
|
@@ -59,6 +62,7 @@ module Aws::Connect
|
|
59
62
|
:arn,
|
60
63
|
:name,
|
61
64
|
:contact_flow_type)
|
65
|
+
SENSITIVE = []
|
62
66
|
include Aws::Structure
|
63
67
|
end
|
64
68
|
|
@@ -72,6 +76,7 @@ module Aws::Connect
|
|
72
76
|
#
|
73
77
|
class ContactNotFoundException < Struct.new(
|
74
78
|
:message)
|
79
|
+
SENSITIVE = []
|
75
80
|
include Aws::Structure
|
76
81
|
end
|
77
82
|
|
@@ -171,6 +176,7 @@ module Aws::Connect
|
|
171
176
|
:hierarchy_group_id,
|
172
177
|
:instance_id,
|
173
178
|
:tags)
|
179
|
+
SENSITIVE = []
|
174
180
|
include Aws::Structure
|
175
181
|
end
|
176
182
|
|
@@ -187,6 +193,7 @@ module Aws::Connect
|
|
187
193
|
class CreateUserResponse < Struct.new(
|
188
194
|
:user_id,
|
189
195
|
:user_arn)
|
196
|
+
SENSITIVE = []
|
190
197
|
include Aws::Structure
|
191
198
|
end
|
192
199
|
|
@@ -218,10 +225,17 @@ module Aws::Connect
|
|
218
225
|
:access_token_expiration,
|
219
226
|
:refresh_token,
|
220
227
|
:refresh_token_expiration)
|
228
|
+
SENSITIVE = [:access_token, :refresh_token]
|
221
229
|
include Aws::Structure
|
222
230
|
end
|
223
231
|
|
224
|
-
# Contains information about a real-time metric.
|
232
|
+
# Contains information about a real-time metric. For a description of
|
233
|
+
# each metric, see [Real-time Metrics Definitions][1] in the *Amazon
|
234
|
+
# Connect Administrator Guide*.
|
235
|
+
#
|
236
|
+
#
|
237
|
+
#
|
238
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html
|
225
239
|
#
|
226
240
|
# @note When making an API call, you may pass CurrentMetric
|
227
241
|
# data as a hash:
|
@@ -244,6 +258,7 @@ module Aws::Connect
|
|
244
258
|
class CurrentMetric < Struct.new(
|
245
259
|
:name,
|
246
260
|
:unit)
|
261
|
+
SENSITIVE = []
|
247
262
|
include Aws::Structure
|
248
263
|
end
|
249
264
|
|
@@ -262,6 +277,7 @@ module Aws::Connect
|
|
262
277
|
class CurrentMetricData < Struct.new(
|
263
278
|
:metric,
|
264
279
|
:value)
|
280
|
+
SENSITIVE = []
|
265
281
|
include Aws::Structure
|
266
282
|
end
|
267
283
|
|
@@ -280,6 +296,7 @@ module Aws::Connect
|
|
280
296
|
class CurrentMetricResult < Struct.new(
|
281
297
|
:dimensions,
|
282
298
|
:collections)
|
299
|
+
SENSITIVE = []
|
283
300
|
include Aws::Structure
|
284
301
|
end
|
285
302
|
|
@@ -304,6 +321,7 @@ module Aws::Connect
|
|
304
321
|
class DeleteUserRequest < Struct.new(
|
305
322
|
:instance_id,
|
306
323
|
:user_id)
|
324
|
+
SENSITIVE = []
|
307
325
|
include Aws::Structure
|
308
326
|
end
|
309
327
|
|
@@ -328,6 +346,7 @@ module Aws::Connect
|
|
328
346
|
class DescribeUserHierarchyGroupRequest < Struct.new(
|
329
347
|
:hierarchy_group_id,
|
330
348
|
:instance_id)
|
349
|
+
SENSITIVE = []
|
331
350
|
include Aws::Structure
|
332
351
|
end
|
333
352
|
|
@@ -339,6 +358,7 @@ module Aws::Connect
|
|
339
358
|
#
|
340
359
|
class DescribeUserHierarchyGroupResponse < Struct.new(
|
341
360
|
:hierarchy_group)
|
361
|
+
SENSITIVE = []
|
342
362
|
include Aws::Structure
|
343
363
|
end
|
344
364
|
|
@@ -357,6 +377,7 @@ module Aws::Connect
|
|
357
377
|
#
|
358
378
|
class DescribeUserHierarchyStructureRequest < Struct.new(
|
359
379
|
:instance_id)
|
380
|
+
SENSITIVE = []
|
360
381
|
include Aws::Structure
|
361
382
|
end
|
362
383
|
|
@@ -368,6 +389,7 @@ module Aws::Connect
|
|
368
389
|
#
|
369
390
|
class DescribeUserHierarchyStructureResponse < Struct.new(
|
370
391
|
:hierarchy_structure)
|
392
|
+
SENSITIVE = []
|
371
393
|
include Aws::Structure
|
372
394
|
end
|
373
395
|
|
@@ -392,6 +414,7 @@ module Aws::Connect
|
|
392
414
|
class DescribeUserRequest < Struct.new(
|
393
415
|
:user_id,
|
394
416
|
:instance_id)
|
417
|
+
SENSITIVE = []
|
395
418
|
include Aws::Structure
|
396
419
|
end
|
397
420
|
|
@@ -403,6 +426,7 @@ module Aws::Connect
|
|
403
426
|
#
|
404
427
|
class DescribeUserResponse < Struct.new(
|
405
428
|
:user)
|
429
|
+
SENSITIVE = []
|
406
430
|
include Aws::Structure
|
407
431
|
end
|
408
432
|
|
@@ -416,6 +440,7 @@ module Aws::Connect
|
|
416
440
|
#
|
417
441
|
class DestinationNotAllowedException < Struct.new(
|
418
442
|
:message)
|
443
|
+
SENSITIVE = []
|
419
444
|
include Aws::Structure
|
420
445
|
end
|
421
446
|
|
@@ -434,6 +459,7 @@ module Aws::Connect
|
|
434
459
|
class Dimensions < Struct.new(
|
435
460
|
:queue,
|
436
461
|
:channel)
|
462
|
+
SENSITIVE = []
|
437
463
|
include Aws::Structure
|
438
464
|
end
|
439
465
|
|
@@ -446,6 +472,7 @@ module Aws::Connect
|
|
446
472
|
#
|
447
473
|
class DuplicateResourceException < Struct.new(
|
448
474
|
:message)
|
475
|
+
SENSITIVE = []
|
449
476
|
include Aws::Structure
|
450
477
|
end
|
451
478
|
|
@@ -473,6 +500,7 @@ module Aws::Connect
|
|
473
500
|
class Filters < Struct.new(
|
474
501
|
:queues,
|
475
502
|
:channels)
|
503
|
+
SENSITIVE = []
|
476
504
|
include Aws::Structure
|
477
505
|
end
|
478
506
|
|
@@ -497,6 +525,7 @@ module Aws::Connect
|
|
497
525
|
class GetContactAttributesRequest < Struct.new(
|
498
526
|
:instance_id,
|
499
527
|
:initial_contact_id)
|
528
|
+
SENSITIVE = []
|
500
529
|
include Aws::Structure
|
501
530
|
end
|
502
531
|
|
@@ -508,6 +537,7 @@ module Aws::Connect
|
|
508
537
|
#
|
509
538
|
class GetContactAttributesResponse < Struct.new(
|
510
539
|
:attributes)
|
540
|
+
SENSITIVE = []
|
511
541
|
include Aws::Structure
|
512
542
|
end
|
513
543
|
|
@@ -556,7 +586,9 @@ module Aws::Connect
|
|
556
586
|
#
|
557
587
|
# @!attribute [rw] current_metrics
|
558
588
|
# The metrics to retrieve. Specify the name and unit for each metric.
|
559
|
-
# The following metrics are available
|
589
|
+
# The following metrics are available. For a description of each
|
590
|
+
# metric, see [Real-time Metrics Definitions][1] in the *Amazon
|
591
|
+
# Connect Administrator Guide*.
|
560
592
|
#
|
561
593
|
# AGENTS\_AFTER\_CONTACT\_WORK
|
562
594
|
#
|
@@ -609,6 +641,10 @@ module Aws::Connect
|
|
609
641
|
# SLOTS\_AVAILABLE
|
610
642
|
#
|
611
643
|
# : Unit: COUNT
|
644
|
+
#
|
645
|
+
#
|
646
|
+
#
|
647
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html
|
612
648
|
# @return [Array<Types::CurrentMetric>]
|
613
649
|
#
|
614
650
|
# @!attribute [rw] next_token
|
@@ -634,6 +670,7 @@ module Aws::Connect
|
|
634
670
|
:current_metrics,
|
635
671
|
:next_token,
|
636
672
|
:max_results)
|
673
|
+
SENSITIVE = []
|
637
674
|
include Aws::Structure
|
638
675
|
end
|
639
676
|
|
@@ -661,6 +698,7 @@ module Aws::Connect
|
|
661
698
|
:next_token,
|
662
699
|
:metric_results,
|
663
700
|
:data_snapshot_time)
|
701
|
+
SENSITIVE = []
|
664
702
|
include Aws::Structure
|
665
703
|
end
|
666
704
|
|
@@ -679,6 +717,7 @@ module Aws::Connect
|
|
679
717
|
#
|
680
718
|
class GetFederationTokenRequest < Struct.new(
|
681
719
|
:instance_id)
|
720
|
+
SENSITIVE = []
|
682
721
|
include Aws::Structure
|
683
722
|
end
|
684
723
|
|
@@ -690,6 +729,7 @@ module Aws::Connect
|
|
690
729
|
#
|
691
730
|
class GetFederationTokenResponse < Struct.new(
|
692
731
|
:credentials)
|
732
|
+
SENSITIVE = []
|
693
733
|
include Aws::Structure
|
694
734
|
end
|
695
735
|
|
@@ -767,7 +807,9 @@ module Aws::Connect
|
|
767
807
|
#
|
768
808
|
# @!attribute [rw] historical_metrics
|
769
809
|
# The metrics to retrieve. Specify the name, unit, and statistic for
|
770
|
-
# each metric. The following historical metrics are available
|
810
|
+
# each metric. The following historical metrics are available. For a
|
811
|
+
# description of each metric, see [Historical Metrics Definitions][1]
|
812
|
+
# in the *Amazon Connect Administrator Guide*.
|
771
813
|
#
|
772
814
|
# ABANDON\_TIME
|
773
815
|
#
|
@@ -922,6 +964,10 @@ module Aws::Connect
|
|
922
964
|
# Threshold: Only "Less than" comparisons are supported, with the
|
923
965
|
# following service level thresholds: 15, 20, 25, 30, 45, 60, 90,
|
924
966
|
# 120, 180, 240, 300, 600
|
967
|
+
#
|
968
|
+
#
|
969
|
+
#
|
970
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
925
971
|
# @return [Array<Types::HistoricalMetric>]
|
926
972
|
#
|
927
973
|
# @!attribute [rw] next_token
|
@@ -945,6 +991,7 @@ module Aws::Connect
|
|
945
991
|
:historical_metrics,
|
946
992
|
:next_token,
|
947
993
|
:max_results)
|
994
|
+
SENSITIVE = []
|
948
995
|
include Aws::Structure
|
949
996
|
end
|
950
997
|
|
@@ -968,6 +1015,7 @@ module Aws::Connect
|
|
968
1015
|
class GetMetricDataResponse < Struct.new(
|
969
1016
|
:next_token,
|
970
1017
|
:metric_results)
|
1018
|
+
SENSITIVE = []
|
971
1019
|
include Aws::Structure
|
972
1020
|
end
|
973
1021
|
|
@@ -1001,6 +1049,7 @@ module Aws::Connect
|
|
1001
1049
|
:name,
|
1002
1050
|
:level_id,
|
1003
1051
|
:hierarchy_path)
|
1052
|
+
SENSITIVE = []
|
1004
1053
|
include Aws::Structure
|
1005
1054
|
end
|
1006
1055
|
|
@@ -1024,6 +1073,7 @@ module Aws::Connect
|
|
1024
1073
|
:id,
|
1025
1074
|
:arn,
|
1026
1075
|
:name)
|
1076
|
+
SENSITIVE = []
|
1027
1077
|
include Aws::Structure
|
1028
1078
|
end
|
1029
1079
|
|
@@ -1047,6 +1097,7 @@ module Aws::Connect
|
|
1047
1097
|
:id,
|
1048
1098
|
:arn,
|
1049
1099
|
:name)
|
1100
|
+
SENSITIVE = []
|
1050
1101
|
include Aws::Structure
|
1051
1102
|
end
|
1052
1103
|
|
@@ -1080,6 +1131,7 @@ module Aws::Connect
|
|
1080
1131
|
:level_three,
|
1081
1132
|
:level_four,
|
1082
1133
|
:level_five)
|
1134
|
+
SENSITIVE = []
|
1083
1135
|
include Aws::Structure
|
1084
1136
|
end
|
1085
1137
|
|
@@ -1113,10 +1165,17 @@ module Aws::Connect
|
|
1113
1165
|
:level_three,
|
1114
1166
|
:level_four,
|
1115
1167
|
:level_five)
|
1168
|
+
SENSITIVE = []
|
1116
1169
|
include Aws::Structure
|
1117
1170
|
end
|
1118
1171
|
|
1119
|
-
# Contains information about a historical metric.
|
1172
|
+
# Contains information about a historical metric. For a description of
|
1173
|
+
# each metric, see [Historical Metrics Definitions][1] in the *Amazon
|
1174
|
+
# Connect Administrator Guide*.
|
1175
|
+
#
|
1176
|
+
#
|
1177
|
+
#
|
1178
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
1120
1179
|
#
|
1121
1180
|
# @note When making an API call, you may pass HistoricalMetric
|
1122
1181
|
# data as a hash:
|
@@ -1154,6 +1213,7 @@ module Aws::Connect
|
|
1154
1213
|
:threshold,
|
1155
1214
|
:statistic,
|
1156
1215
|
:unit)
|
1216
|
+
SENSITIVE = []
|
1157
1217
|
include Aws::Structure
|
1158
1218
|
end
|
1159
1219
|
|
@@ -1172,6 +1232,7 @@ module Aws::Connect
|
|
1172
1232
|
class HistoricalMetricData < Struct.new(
|
1173
1233
|
:metric,
|
1174
1234
|
:value)
|
1235
|
+
SENSITIVE = []
|
1175
1236
|
include Aws::Structure
|
1176
1237
|
end
|
1177
1238
|
|
@@ -1190,6 +1251,7 @@ module Aws::Connect
|
|
1190
1251
|
class HistoricalMetricResult < Struct.new(
|
1191
1252
|
:dimensions,
|
1192
1253
|
:collections)
|
1254
|
+
SENSITIVE = []
|
1193
1255
|
include Aws::Structure
|
1194
1256
|
end
|
1195
1257
|
|
@@ -1214,6 +1276,7 @@ module Aws::Connect
|
|
1214
1276
|
:id,
|
1215
1277
|
:arn,
|
1216
1278
|
:name)
|
1279
|
+
SENSITIVE = []
|
1217
1280
|
include Aws::Structure
|
1218
1281
|
end
|
1219
1282
|
|
@@ -1227,6 +1290,7 @@ module Aws::Connect
|
|
1227
1290
|
#
|
1228
1291
|
class InternalServiceException < Struct.new(
|
1229
1292
|
:message)
|
1293
|
+
SENSITIVE = []
|
1230
1294
|
include Aws::Structure
|
1231
1295
|
end
|
1232
1296
|
|
@@ -1240,6 +1304,7 @@ module Aws::Connect
|
|
1240
1304
|
#
|
1241
1305
|
class InvalidParameterException < Struct.new(
|
1242
1306
|
:message)
|
1307
|
+
SENSITIVE = []
|
1243
1308
|
include Aws::Structure
|
1244
1309
|
end
|
1245
1310
|
|
@@ -1253,6 +1318,7 @@ module Aws::Connect
|
|
1253
1318
|
#
|
1254
1319
|
class InvalidRequestException < Struct.new(
|
1255
1320
|
:message)
|
1321
|
+
SENSITIVE = []
|
1256
1322
|
include Aws::Structure
|
1257
1323
|
end
|
1258
1324
|
|
@@ -1266,6 +1332,7 @@ module Aws::Connect
|
|
1266
1332
|
#
|
1267
1333
|
class LimitExceededException < Struct.new(
|
1268
1334
|
:message)
|
1335
|
+
SENSITIVE = []
|
1269
1336
|
include Aws::Structure
|
1270
1337
|
end
|
1271
1338
|
|
@@ -1304,6 +1371,7 @@ module Aws::Connect
|
|
1304
1371
|
:contact_flow_types,
|
1305
1372
|
:next_token,
|
1306
1373
|
:max_results)
|
1374
|
+
SENSITIVE = []
|
1307
1375
|
include Aws::Structure
|
1308
1376
|
end
|
1309
1377
|
|
@@ -1321,6 +1389,7 @@ module Aws::Connect
|
|
1321
1389
|
class ListContactFlowsResponse < Struct.new(
|
1322
1390
|
:contact_flow_summary_list,
|
1323
1391
|
:next_token)
|
1392
|
+
SENSITIVE = []
|
1324
1393
|
include Aws::Structure
|
1325
1394
|
end
|
1326
1395
|
|
@@ -1353,6 +1422,7 @@ module Aws::Connect
|
|
1353
1422
|
:instance_id,
|
1354
1423
|
:next_token,
|
1355
1424
|
:max_results)
|
1425
|
+
SENSITIVE = []
|
1356
1426
|
include Aws::Structure
|
1357
1427
|
end
|
1358
1428
|
|
@@ -1370,6 +1440,7 @@ module Aws::Connect
|
|
1370
1440
|
class ListHoursOfOperationsResponse < Struct.new(
|
1371
1441
|
:hours_of_operation_summary_list,
|
1372
1442
|
:next_token)
|
1443
|
+
SENSITIVE = []
|
1373
1444
|
include Aws::Structure
|
1374
1445
|
end
|
1375
1446
|
|
@@ -1414,6 +1485,7 @@ module Aws::Connect
|
|
1414
1485
|
:phone_number_country_codes,
|
1415
1486
|
:next_token,
|
1416
1487
|
:max_results)
|
1488
|
+
SENSITIVE = []
|
1417
1489
|
include Aws::Structure
|
1418
1490
|
end
|
1419
1491
|
|
@@ -1431,6 +1503,7 @@ module Aws::Connect
|
|
1431
1503
|
class ListPhoneNumbersResponse < Struct.new(
|
1432
1504
|
:phone_number_summary_list,
|
1433
1505
|
:next_token)
|
1506
|
+
SENSITIVE = []
|
1434
1507
|
include Aws::Structure
|
1435
1508
|
end
|
1436
1509
|
|
@@ -1469,6 +1542,7 @@ module Aws::Connect
|
|
1469
1542
|
:queue_types,
|
1470
1543
|
:next_token,
|
1471
1544
|
:max_results)
|
1545
|
+
SENSITIVE = []
|
1472
1546
|
include Aws::Structure
|
1473
1547
|
end
|
1474
1548
|
|
@@ -1486,6 +1560,7 @@ module Aws::Connect
|
|
1486
1560
|
class ListQueuesResponse < Struct.new(
|
1487
1561
|
:queue_summary_list,
|
1488
1562
|
:next_token)
|
1563
|
+
SENSITIVE = []
|
1489
1564
|
include Aws::Structure
|
1490
1565
|
end
|
1491
1566
|
|
@@ -1518,6 +1593,7 @@ module Aws::Connect
|
|
1518
1593
|
:instance_id,
|
1519
1594
|
:next_token,
|
1520
1595
|
:max_results)
|
1596
|
+
SENSITIVE = []
|
1521
1597
|
include Aws::Structure
|
1522
1598
|
end
|
1523
1599
|
|
@@ -1535,6 +1611,7 @@ module Aws::Connect
|
|
1535
1611
|
class ListRoutingProfilesResponse < Struct.new(
|
1536
1612
|
:routing_profile_summary_list,
|
1537
1613
|
:next_token)
|
1614
|
+
SENSITIVE = []
|
1538
1615
|
include Aws::Structure
|
1539
1616
|
end
|
1540
1617
|
|
@@ -1567,6 +1644,7 @@ module Aws::Connect
|
|
1567
1644
|
:instance_id,
|
1568
1645
|
:next_token,
|
1569
1646
|
:max_results)
|
1647
|
+
SENSITIVE = []
|
1570
1648
|
include Aws::Structure
|
1571
1649
|
end
|
1572
1650
|
|
@@ -1584,6 +1662,7 @@ module Aws::Connect
|
|
1584
1662
|
class ListSecurityProfilesResponse < Struct.new(
|
1585
1663
|
:security_profile_summary_list,
|
1586
1664
|
:next_token)
|
1665
|
+
SENSITIVE = []
|
1587
1666
|
include Aws::Structure
|
1588
1667
|
end
|
1589
1668
|
|
@@ -1602,6 +1681,7 @@ module Aws::Connect
|
|
1602
1681
|
#
|
1603
1682
|
class ListTagsForResourceRequest < Struct.new(
|
1604
1683
|
:resource_arn)
|
1684
|
+
SENSITIVE = []
|
1605
1685
|
include Aws::Structure
|
1606
1686
|
end
|
1607
1687
|
|
@@ -1613,6 +1693,7 @@ module Aws::Connect
|
|
1613
1693
|
#
|
1614
1694
|
class ListTagsForResourceResponse < Struct.new(
|
1615
1695
|
:tags)
|
1696
|
+
SENSITIVE = []
|
1616
1697
|
include Aws::Structure
|
1617
1698
|
end
|
1618
1699
|
|
@@ -1645,6 +1726,7 @@ module Aws::Connect
|
|
1645
1726
|
:instance_id,
|
1646
1727
|
:next_token,
|
1647
1728
|
:max_results)
|
1729
|
+
SENSITIVE = []
|
1648
1730
|
include Aws::Structure
|
1649
1731
|
end
|
1650
1732
|
|
@@ -1662,6 +1744,7 @@ module Aws::Connect
|
|
1662
1744
|
class ListUserHierarchyGroupsResponse < Struct.new(
|
1663
1745
|
:user_hierarchy_group_summary_list,
|
1664
1746
|
:next_token)
|
1747
|
+
SENSITIVE = []
|
1665
1748
|
include Aws::Structure
|
1666
1749
|
end
|
1667
1750
|
|
@@ -1694,6 +1777,7 @@ module Aws::Connect
|
|
1694
1777
|
:instance_id,
|
1695
1778
|
:next_token,
|
1696
1779
|
:max_results)
|
1780
|
+
SENSITIVE = []
|
1697
1781
|
include Aws::Structure
|
1698
1782
|
end
|
1699
1783
|
|
@@ -1711,6 +1795,7 @@ module Aws::Connect
|
|
1711
1795
|
class ListUsersResponse < Struct.new(
|
1712
1796
|
:user_summary_list,
|
1713
1797
|
:next_token)
|
1798
|
+
SENSITIVE = []
|
1714
1799
|
include Aws::Structure
|
1715
1800
|
end
|
1716
1801
|
|
@@ -1724,6 +1809,7 @@ module Aws::Connect
|
|
1724
1809
|
#
|
1725
1810
|
class OutboundContactNotPermittedException < Struct.new(
|
1726
1811
|
:message)
|
1812
|
+
SENSITIVE = []
|
1727
1813
|
include Aws::Structure
|
1728
1814
|
end
|
1729
1815
|
|
@@ -1744,6 +1830,7 @@ module Aws::Connect
|
|
1744
1830
|
#
|
1745
1831
|
class ParticipantDetails < Struct.new(
|
1746
1832
|
:display_name)
|
1833
|
+
SENSITIVE = []
|
1747
1834
|
include Aws::Structure
|
1748
1835
|
end
|
1749
1836
|
|
@@ -1778,6 +1865,7 @@ module Aws::Connect
|
|
1778
1865
|
:phone_number,
|
1779
1866
|
:phone_number_type,
|
1780
1867
|
:phone_number_country_code)
|
1868
|
+
SENSITIVE = []
|
1781
1869
|
include Aws::Structure
|
1782
1870
|
end
|
1783
1871
|
|
@@ -1797,6 +1885,7 @@ module Aws::Connect
|
|
1797
1885
|
class QueueReference < Struct.new(
|
1798
1886
|
:id,
|
1799
1887
|
:arn)
|
1888
|
+
SENSITIVE = []
|
1800
1889
|
include Aws::Structure
|
1801
1890
|
end
|
1802
1891
|
|
@@ -1825,6 +1914,7 @@ module Aws::Connect
|
|
1825
1914
|
:arn,
|
1826
1915
|
:name,
|
1827
1916
|
:queue_type)
|
1917
|
+
SENSITIVE = []
|
1828
1918
|
include Aws::Structure
|
1829
1919
|
end
|
1830
1920
|
|
@@ -1838,9 +1928,46 @@ module Aws::Connect
|
|
1838
1928
|
#
|
1839
1929
|
class ResourceNotFoundException < Struct.new(
|
1840
1930
|
:message)
|
1931
|
+
SENSITIVE = []
|
1932
|
+
include Aws::Structure
|
1933
|
+
end
|
1934
|
+
|
1935
|
+
# @note When making an API call, you may pass ResumeContactRecordingRequest
|
1936
|
+
# data as a hash:
|
1937
|
+
#
|
1938
|
+
# {
|
1939
|
+
# instance_id: "InstanceId", # required
|
1940
|
+
# contact_id: "ContactId", # required
|
1941
|
+
# initial_contact_id: "ContactId", # required
|
1942
|
+
# }
|
1943
|
+
#
|
1944
|
+
# @!attribute [rw] instance_id
|
1945
|
+
# The identifier of the Amazon Connect instance.
|
1946
|
+
# @return [String]
|
1947
|
+
#
|
1948
|
+
# @!attribute [rw] contact_id
|
1949
|
+
# The identifier of the contact.
|
1950
|
+
# @return [String]
|
1951
|
+
#
|
1952
|
+
# @!attribute [rw] initial_contact_id
|
1953
|
+
# The identifier of the contact. This is the identifier of the contact
|
1954
|
+
# associated with the first interaction with the contact center.
|
1955
|
+
# @return [String]
|
1956
|
+
#
|
1957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ResumeContactRecordingRequest AWS API Documentation
|
1958
|
+
#
|
1959
|
+
class ResumeContactRecordingRequest < Struct.new(
|
1960
|
+
:instance_id,
|
1961
|
+
:contact_id,
|
1962
|
+
:initial_contact_id)
|
1963
|
+
SENSITIVE = []
|
1841
1964
|
include Aws::Structure
|
1842
1965
|
end
|
1843
1966
|
|
1967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ResumeContactRecordingResponse AWS API Documentation
|
1968
|
+
#
|
1969
|
+
class ResumeContactRecordingResponse < Aws::EmptyStructure; end
|
1970
|
+
|
1844
1971
|
# Contains summary information about a routing profile.
|
1845
1972
|
#
|
1846
1973
|
# @!attribute [rw] id
|
@@ -1861,6 +1988,7 @@ module Aws::Connect
|
|
1861
1988
|
:id,
|
1862
1989
|
:arn,
|
1863
1990
|
:name)
|
1991
|
+
SENSITIVE = []
|
1864
1992
|
include Aws::Structure
|
1865
1993
|
end
|
1866
1994
|
|
@@ -1884,6 +2012,7 @@ module Aws::Connect
|
|
1884
2012
|
:id,
|
1885
2013
|
:arn,
|
1886
2014
|
:name)
|
2015
|
+
SENSITIVE = []
|
1887
2016
|
include Aws::Structure
|
1888
2017
|
end
|
1889
2018
|
|
@@ -1949,6 +2078,7 @@ module Aws::Connect
|
|
1949
2078
|
:participant_details,
|
1950
2079
|
:initial_message,
|
1951
2080
|
:client_token)
|
2081
|
+
SENSITIVE = []
|
1952
2082
|
include Aws::Structure
|
1953
2083
|
end
|
1954
2084
|
|
@@ -1977,9 +2107,54 @@ module Aws::Connect
|
|
1977
2107
|
:contact_id,
|
1978
2108
|
:participant_id,
|
1979
2109
|
:participant_token)
|
2110
|
+
SENSITIVE = []
|
2111
|
+
include Aws::Structure
|
2112
|
+
end
|
2113
|
+
|
2114
|
+
# @note When making an API call, you may pass StartContactRecordingRequest
|
2115
|
+
# data as a hash:
|
2116
|
+
#
|
2117
|
+
# {
|
2118
|
+
# instance_id: "InstanceId", # required
|
2119
|
+
# contact_id: "ContactId", # required
|
2120
|
+
# initial_contact_id: "ContactId", # required
|
2121
|
+
# voice_recording_configuration: { # required
|
2122
|
+
# voice_recording_track: "FROM_AGENT", # accepts FROM_AGENT, TO_AGENT, ALL
|
2123
|
+
# },
|
2124
|
+
# }
|
2125
|
+
#
|
2126
|
+
# @!attribute [rw] instance_id
|
2127
|
+
# The identifier of the Amazon Connect instance.
|
2128
|
+
# @return [String]
|
2129
|
+
#
|
2130
|
+
# @!attribute [rw] contact_id
|
2131
|
+
# The identifier of the contact.
|
2132
|
+
# @return [String]
|
2133
|
+
#
|
2134
|
+
# @!attribute [rw] initial_contact_id
|
2135
|
+
# The identifier of the contact. This is the identifier of the contact
|
2136
|
+
# associated with the first interaction with the contact center.
|
2137
|
+
# @return [String]
|
2138
|
+
#
|
2139
|
+
# @!attribute [rw] voice_recording_configuration
|
2140
|
+
# Who is being recorded.
|
2141
|
+
# @return [Types::VoiceRecordingConfiguration]
|
2142
|
+
#
|
2143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactRecordingRequest AWS API Documentation
|
2144
|
+
#
|
2145
|
+
class StartContactRecordingRequest < Struct.new(
|
2146
|
+
:instance_id,
|
2147
|
+
:contact_id,
|
2148
|
+
:initial_contact_id,
|
2149
|
+
:voice_recording_configuration)
|
2150
|
+
SENSITIVE = []
|
1980
2151
|
include Aws::Structure
|
1981
2152
|
end
|
1982
2153
|
|
2154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactRecordingResponse AWS API Documentation
|
2155
|
+
#
|
2156
|
+
class StartContactRecordingResponse < Aws::EmptyStructure; end
|
2157
|
+
|
1983
2158
|
# @note When making an API call, you may pass StartOutboundVoiceContactRequest
|
1984
2159
|
# data as a hash:
|
1985
2160
|
#
|
@@ -2051,6 +2226,7 @@ module Aws::Connect
|
|
2051
2226
|
:source_phone_number,
|
2052
2227
|
:queue_id,
|
2053
2228
|
:attributes)
|
2229
|
+
SENSITIVE = []
|
2054
2230
|
include Aws::Structure
|
2055
2231
|
end
|
2056
2232
|
|
@@ -2062,9 +2238,46 @@ module Aws::Connect
|
|
2062
2238
|
#
|
2063
2239
|
class StartOutboundVoiceContactResponse < Struct.new(
|
2064
2240
|
:contact_id)
|
2241
|
+
SENSITIVE = []
|
2242
|
+
include Aws::Structure
|
2243
|
+
end
|
2244
|
+
|
2245
|
+
# @note When making an API call, you may pass StopContactRecordingRequest
|
2246
|
+
# data as a hash:
|
2247
|
+
#
|
2248
|
+
# {
|
2249
|
+
# instance_id: "InstanceId", # required
|
2250
|
+
# contact_id: "ContactId", # required
|
2251
|
+
# initial_contact_id: "ContactId", # required
|
2252
|
+
# }
|
2253
|
+
#
|
2254
|
+
# @!attribute [rw] instance_id
|
2255
|
+
# The identifier of the Amazon Connect instance.
|
2256
|
+
# @return [String]
|
2257
|
+
#
|
2258
|
+
# @!attribute [rw] contact_id
|
2259
|
+
# The identifier of the contact.
|
2260
|
+
# @return [String]
|
2261
|
+
#
|
2262
|
+
# @!attribute [rw] initial_contact_id
|
2263
|
+
# The identifier of the contact. This is the identifier of the contact
|
2264
|
+
# associated with the first interaction with the contact center.
|
2265
|
+
# @return [String]
|
2266
|
+
#
|
2267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContactRecordingRequest AWS API Documentation
|
2268
|
+
#
|
2269
|
+
class StopContactRecordingRequest < Struct.new(
|
2270
|
+
:instance_id,
|
2271
|
+
:contact_id,
|
2272
|
+
:initial_contact_id)
|
2273
|
+
SENSITIVE = []
|
2065
2274
|
include Aws::Structure
|
2066
2275
|
end
|
2067
2276
|
|
2277
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContactRecordingResponse AWS API Documentation
|
2278
|
+
#
|
2279
|
+
class StopContactRecordingResponse < Aws::EmptyStructure; end
|
2280
|
+
|
2068
2281
|
# @note When making an API call, you may pass StopContactRequest
|
2069
2282
|
# data as a hash:
|
2070
2283
|
#
|
@@ -2086,6 +2299,7 @@ module Aws::Connect
|
|
2086
2299
|
class StopContactRequest < Struct.new(
|
2087
2300
|
:contact_id,
|
2088
2301
|
:instance_id)
|
2302
|
+
SENSITIVE = []
|
2089
2303
|
include Aws::Structure
|
2090
2304
|
end
|
2091
2305
|
|
@@ -2093,6 +2307,42 @@ module Aws::Connect
|
|
2093
2307
|
#
|
2094
2308
|
class StopContactResponse < Aws::EmptyStructure; end
|
2095
2309
|
|
2310
|
+
# @note When making an API call, you may pass SuspendContactRecordingRequest
|
2311
|
+
# data as a hash:
|
2312
|
+
#
|
2313
|
+
# {
|
2314
|
+
# instance_id: "InstanceId", # required
|
2315
|
+
# contact_id: "ContactId", # required
|
2316
|
+
# initial_contact_id: "ContactId", # required
|
2317
|
+
# }
|
2318
|
+
#
|
2319
|
+
# @!attribute [rw] instance_id
|
2320
|
+
# The identifier of the Amazon Connect instance.
|
2321
|
+
# @return [String]
|
2322
|
+
#
|
2323
|
+
# @!attribute [rw] contact_id
|
2324
|
+
# The identifier of the contact.
|
2325
|
+
# @return [String]
|
2326
|
+
#
|
2327
|
+
# @!attribute [rw] initial_contact_id
|
2328
|
+
# The identifier of the contact. This is the identifier of the contact
|
2329
|
+
# associated with the first interaction with the contact center.
|
2330
|
+
# @return [String]
|
2331
|
+
#
|
2332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SuspendContactRecordingRequest AWS API Documentation
|
2333
|
+
#
|
2334
|
+
class SuspendContactRecordingRequest < Struct.new(
|
2335
|
+
:instance_id,
|
2336
|
+
:contact_id,
|
2337
|
+
:initial_contact_id)
|
2338
|
+
SENSITIVE = []
|
2339
|
+
include Aws::Structure
|
2340
|
+
end
|
2341
|
+
|
2342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SuspendContactRecordingResponse AWS API Documentation
|
2343
|
+
#
|
2344
|
+
class SuspendContactRecordingResponse < Aws::EmptyStructure; end
|
2345
|
+
|
2096
2346
|
# @note When making an API call, you may pass TagResourceRequest
|
2097
2347
|
# data as a hash:
|
2098
2348
|
#
|
@@ -2117,6 +2367,7 @@ module Aws::Connect
|
|
2117
2367
|
class TagResourceRequest < Struct.new(
|
2118
2368
|
:resource_arn,
|
2119
2369
|
:tags)
|
2370
|
+
SENSITIVE = []
|
2120
2371
|
include Aws::Structure
|
2121
2372
|
end
|
2122
2373
|
|
@@ -2144,6 +2395,7 @@ module Aws::Connect
|
|
2144
2395
|
class Threshold < Struct.new(
|
2145
2396
|
:comparison,
|
2146
2397
|
:threshold_value)
|
2398
|
+
SENSITIVE = []
|
2147
2399
|
include Aws::Structure
|
2148
2400
|
end
|
2149
2401
|
|
@@ -2156,6 +2408,7 @@ module Aws::Connect
|
|
2156
2408
|
#
|
2157
2409
|
class ThrottlingException < Struct.new(
|
2158
2410
|
:message)
|
2411
|
+
SENSITIVE = []
|
2159
2412
|
include Aws::Structure
|
2160
2413
|
end
|
2161
2414
|
|
@@ -2180,6 +2433,7 @@ module Aws::Connect
|
|
2180
2433
|
class UntagResourceRequest < Struct.new(
|
2181
2434
|
:resource_arn,
|
2182
2435
|
:tag_keys)
|
2436
|
+
SENSITIVE = []
|
2183
2437
|
include Aws::Structure
|
2184
2438
|
end
|
2185
2439
|
|
@@ -2218,6 +2472,7 @@ module Aws::Connect
|
|
2218
2472
|
:initial_contact_id,
|
2219
2473
|
:instance_id,
|
2220
2474
|
:attributes)
|
2475
|
+
SENSITIVE = []
|
2221
2476
|
include Aws::Structure
|
2222
2477
|
end
|
2223
2478
|
|
@@ -2252,6 +2507,7 @@ module Aws::Connect
|
|
2252
2507
|
:hierarchy_group_id,
|
2253
2508
|
:user_id,
|
2254
2509
|
:instance_id)
|
2510
|
+
SENSITIVE = []
|
2255
2511
|
include Aws::Structure
|
2256
2512
|
end
|
2257
2513
|
|
@@ -2286,6 +2542,7 @@ module Aws::Connect
|
|
2286
2542
|
:identity_info,
|
2287
2543
|
:user_id,
|
2288
2544
|
:instance_id)
|
2545
|
+
SENSITIVE = []
|
2289
2546
|
include Aws::Structure
|
2290
2547
|
end
|
2291
2548
|
|
@@ -2321,6 +2578,7 @@ module Aws::Connect
|
|
2321
2578
|
:phone_config,
|
2322
2579
|
:user_id,
|
2323
2580
|
:instance_id)
|
2581
|
+
SENSITIVE = []
|
2324
2582
|
include Aws::Structure
|
2325
2583
|
end
|
2326
2584
|
|
@@ -2351,6 +2609,7 @@ module Aws::Connect
|
|
2351
2609
|
:routing_profile_id,
|
2352
2610
|
:user_id,
|
2353
2611
|
:instance_id)
|
2612
|
+
SENSITIVE = []
|
2354
2613
|
include Aws::Structure
|
2355
2614
|
end
|
2356
2615
|
|
@@ -2381,6 +2640,7 @@ module Aws::Connect
|
|
2381
2640
|
:security_profile_ids,
|
2382
2641
|
:user_id,
|
2383
2642
|
:instance_id)
|
2643
|
+
SENSITIVE = []
|
2384
2644
|
include Aws::Structure
|
2385
2645
|
end
|
2386
2646
|
|
@@ -2441,6 +2701,7 @@ module Aws::Connect
|
|
2441
2701
|
:routing_profile_id,
|
2442
2702
|
:hierarchy_group_id,
|
2443
2703
|
:tags)
|
2704
|
+
SENSITIVE = []
|
2444
2705
|
include Aws::Structure
|
2445
2706
|
end
|
2446
2707
|
|
@@ -2476,6 +2737,7 @@ module Aws::Connect
|
|
2476
2737
|
:first_name,
|
2477
2738
|
:last_name,
|
2478
2739
|
:email)
|
2740
|
+
SENSITIVE = []
|
2479
2741
|
include Aws::Structure
|
2480
2742
|
end
|
2481
2743
|
|
@@ -2489,6 +2751,7 @@ module Aws::Connect
|
|
2489
2751
|
#
|
2490
2752
|
class UserNotFoundException < Struct.new(
|
2491
2753
|
:message)
|
2754
|
+
SENSITIVE = []
|
2492
2755
|
include Aws::Structure
|
2493
2756
|
end
|
2494
2757
|
|
@@ -2528,6 +2791,7 @@ module Aws::Connect
|
|
2528
2791
|
:auto_accept,
|
2529
2792
|
:after_contact_work_time_limit,
|
2530
2793
|
:desk_phone_number)
|
2794
|
+
SENSITIVE = []
|
2531
2795
|
include Aws::Structure
|
2532
2796
|
end
|
2533
2797
|
|
@@ -2551,6 +2815,28 @@ module Aws::Connect
|
|
2551
2815
|
:id,
|
2552
2816
|
:arn,
|
2553
2817
|
:username)
|
2818
|
+
SENSITIVE = []
|
2819
|
+
include Aws::Structure
|
2820
|
+
end
|
2821
|
+
|
2822
|
+
# Contains information about the recording configuration settings.
|
2823
|
+
#
|
2824
|
+
# @note When making an API call, you may pass VoiceRecordingConfiguration
|
2825
|
+
# data as a hash:
|
2826
|
+
#
|
2827
|
+
# {
|
2828
|
+
# voice_recording_track: "FROM_AGENT", # accepts FROM_AGENT, TO_AGENT, ALL
|
2829
|
+
# }
|
2830
|
+
#
|
2831
|
+
# @!attribute [rw] voice_recording_track
|
2832
|
+
# Identifies which track is being recorded.
|
2833
|
+
# @return [String]
|
2834
|
+
#
|
2835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/VoiceRecordingConfiguration AWS API Documentation
|
2836
|
+
#
|
2837
|
+
class VoiceRecordingConfiguration < Struct.new(
|
2838
|
+
:voice_recording_track)
|
2839
|
+
SENSITIVE = []
|
2554
2840
|
include Aws::Structure
|
2555
2841
|
end
|
2556
2842
|
|