aws-sdk-connect 1.23.0 → 1.28.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 +5 -5
- data/lib/aws-sdk-connect.rb +3 -1
- data/lib/aws-sdk-connect/client.rb +257 -32
- data/lib/aws-sdk-connect/client_api.rb +2 -0
- data/lib/aws-sdk-connect/errors.rb +2 -0
- data/lib/aws-sdk-connect/resource.rb +3 -7
- data/lib/aws-sdk-connect/types.rb +180 -6
- metadata +5 -5
@@ -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:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Connect
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::Connect::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::Connect::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::Connect::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -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,59 +586,112 @@ 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 all the
|
590
|
+
# metrics, see [Real-time Metrics Definitions][1] in the *Amazon
|
591
|
+
# Connect Administrator Guide*.
|
560
592
|
#
|
561
593
|
# AGENTS\_AFTER\_CONTACT\_WORK
|
562
594
|
#
|
563
595
|
# : Unit: COUNT
|
564
596
|
#
|
597
|
+
# Name in real-time metrics report: [ACW][2]
|
598
|
+
#
|
565
599
|
# AGENTS\_AVAILABLE
|
566
600
|
#
|
567
601
|
# : Unit: COUNT
|
568
602
|
#
|
603
|
+
# Name in real-time metrics report: [Available][3]
|
604
|
+
#
|
569
605
|
# AGENTS\_ERROR
|
570
606
|
#
|
571
607
|
# : Unit: COUNT
|
572
608
|
#
|
609
|
+
# Name in real-time metrics report: [Error][4]
|
610
|
+
#
|
573
611
|
# AGENTS\_NON\_PRODUCTIVE
|
574
612
|
#
|
575
613
|
# : Unit: COUNT
|
576
614
|
#
|
615
|
+
# Name in real-time metrics report: [NPT (Non-Productive Time)][5]
|
616
|
+
#
|
577
617
|
# AGENTS\_ON\_CALL
|
578
618
|
#
|
579
619
|
# : Unit: COUNT
|
580
620
|
#
|
621
|
+
# Name in real-time metrics report: [On contact][6]
|
622
|
+
#
|
581
623
|
# AGENTS\_ON\_CONTACT
|
582
624
|
#
|
583
625
|
# : Unit: COUNT
|
584
626
|
#
|
627
|
+
# Name in real-time metrics report: [On contact][6]
|
628
|
+
#
|
585
629
|
# AGENTS\_ONLINE
|
586
630
|
#
|
587
631
|
# : Unit: COUNT
|
588
632
|
#
|
633
|
+
# Name in real-time metrics report: [Online][7]
|
634
|
+
#
|
589
635
|
# AGENTS\_STAFFED
|
590
636
|
#
|
591
637
|
# : Unit: COUNT
|
592
638
|
#
|
639
|
+
# Name in real-time metrics report: [Staffed][8]
|
640
|
+
#
|
593
641
|
# CONTACTS\_IN\_QUEUE
|
594
642
|
#
|
595
643
|
# : Unit: COUNT
|
596
644
|
#
|
645
|
+
# Name in real-time metrics report: [In queue][9]
|
646
|
+
#
|
597
647
|
# CONTACTS\_SCHEDULED
|
598
648
|
#
|
599
649
|
# : Unit: COUNT
|
600
650
|
#
|
651
|
+
# Name in real-time metrics report: [Scheduled][10]
|
652
|
+
#
|
601
653
|
# OLDEST\_CONTACT\_AGE
|
602
654
|
#
|
603
655
|
# : Unit: SECONDS
|
604
656
|
#
|
657
|
+
# When you use groupings, Unit says SECONDS but the Value is
|
658
|
+
# returned in MILLISECONDS. For example, if you get a response like
|
659
|
+
# this:
|
660
|
+
#
|
661
|
+
# `\{ "Metric": \{ "Name": "OLDEST_CONTACT_AGE", "Unit": "SECONDS"
|
662
|
+
# \}, "Value": 24113.0 `\\}
|
663
|
+
#
|
664
|
+
# The actual OLDEST\_CONTACT\_AGE is 24 seconds.
|
665
|
+
#
|
666
|
+
# Name in real-time metrics report: [Oldest][11]
|
667
|
+
#
|
605
668
|
# SLOTS\_ACTIVE
|
606
669
|
#
|
607
670
|
# : Unit: COUNT
|
608
671
|
#
|
672
|
+
# Name in real-time metrics report: [Active][12]
|
673
|
+
#
|
609
674
|
# SLOTS\_AVAILABLE
|
610
675
|
#
|
611
676
|
# : Unit: COUNT
|
677
|
+
#
|
678
|
+
# Name in real-time metrics report: [Availability][13]
|
679
|
+
#
|
680
|
+
#
|
681
|
+
#
|
682
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html
|
683
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#aftercallwork-real-time
|
684
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#available-real-time
|
685
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#error-real-time
|
686
|
+
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#non-productive-time-real-time
|
687
|
+
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#on-call-real-time
|
688
|
+
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#online-real-time
|
689
|
+
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#staffed-real-time
|
690
|
+
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#in-queue-real-time
|
691
|
+
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#scheduled-real-time
|
692
|
+
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#oldest-real-time
|
693
|
+
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#active-real-time
|
694
|
+
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#availability-real-time
|
612
695
|
# @return [Array<Types::CurrentMetric>]
|
613
696
|
#
|
614
697
|
# @!attribute [rw] next_token
|
@@ -634,6 +717,7 @@ module Aws::Connect
|
|
634
717
|
:current_metrics,
|
635
718
|
:next_token,
|
636
719
|
:max_results)
|
720
|
+
SENSITIVE = []
|
637
721
|
include Aws::Structure
|
638
722
|
end
|
639
723
|
|
@@ -661,6 +745,7 @@ module Aws::Connect
|
|
661
745
|
:next_token,
|
662
746
|
:metric_results,
|
663
747
|
:data_snapshot_time)
|
748
|
+
SENSITIVE = []
|
664
749
|
include Aws::Structure
|
665
750
|
end
|
666
751
|
|
@@ -679,6 +764,7 @@ module Aws::Connect
|
|
679
764
|
#
|
680
765
|
class GetFederationTokenRequest < Struct.new(
|
681
766
|
:instance_id)
|
767
|
+
SENSITIVE = []
|
682
768
|
include Aws::Structure
|
683
769
|
end
|
684
770
|
|
@@ -690,6 +776,7 @@ module Aws::Connect
|
|
690
776
|
#
|
691
777
|
class GetFederationTokenResponse < Struct.new(
|
692
778
|
:credentials)
|
779
|
+
SENSITIVE = []
|
693
780
|
include Aws::Structure
|
694
781
|
end
|
695
782
|
|
@@ -767,7 +854,9 @@ module Aws::Connect
|
|
767
854
|
#
|
768
855
|
# @!attribute [rw] historical_metrics
|
769
856
|
# The metrics to retrieve. Specify the name, unit, and statistic for
|
770
|
-
# each metric. The following historical metrics are available
|
857
|
+
# each metric. The following historical metrics are available. For a
|
858
|
+
# description of each metric, see [Historical Metrics Definitions][1]
|
859
|
+
# in the *Amazon Connect Administrator Guide*.
|
771
860
|
#
|
772
861
|
# ABANDON\_TIME
|
773
862
|
#
|
@@ -922,6 +1011,10 @@ module Aws::Connect
|
|
922
1011
|
# Threshold: Only "Less than" comparisons are supported, with the
|
923
1012
|
# following service level thresholds: 15, 20, 25, 30, 45, 60, 90,
|
924
1013
|
# 120, 180, 240, 300, 600
|
1014
|
+
#
|
1015
|
+
#
|
1016
|
+
#
|
1017
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
925
1018
|
# @return [Array<Types::HistoricalMetric>]
|
926
1019
|
#
|
927
1020
|
# @!attribute [rw] next_token
|
@@ -945,6 +1038,7 @@ module Aws::Connect
|
|
945
1038
|
:historical_metrics,
|
946
1039
|
:next_token,
|
947
1040
|
:max_results)
|
1041
|
+
SENSITIVE = []
|
948
1042
|
include Aws::Structure
|
949
1043
|
end
|
950
1044
|
|
@@ -968,6 +1062,7 @@ module Aws::Connect
|
|
968
1062
|
class GetMetricDataResponse < Struct.new(
|
969
1063
|
:next_token,
|
970
1064
|
:metric_results)
|
1065
|
+
SENSITIVE = []
|
971
1066
|
include Aws::Structure
|
972
1067
|
end
|
973
1068
|
|
@@ -1001,6 +1096,7 @@ module Aws::Connect
|
|
1001
1096
|
:name,
|
1002
1097
|
:level_id,
|
1003
1098
|
:hierarchy_path)
|
1099
|
+
SENSITIVE = []
|
1004
1100
|
include Aws::Structure
|
1005
1101
|
end
|
1006
1102
|
|
@@ -1024,6 +1120,7 @@ module Aws::Connect
|
|
1024
1120
|
:id,
|
1025
1121
|
:arn,
|
1026
1122
|
:name)
|
1123
|
+
SENSITIVE = []
|
1027
1124
|
include Aws::Structure
|
1028
1125
|
end
|
1029
1126
|
|
@@ -1047,6 +1144,7 @@ module Aws::Connect
|
|
1047
1144
|
:id,
|
1048
1145
|
:arn,
|
1049
1146
|
:name)
|
1147
|
+
SENSITIVE = []
|
1050
1148
|
include Aws::Structure
|
1051
1149
|
end
|
1052
1150
|
|
@@ -1080,6 +1178,7 @@ module Aws::Connect
|
|
1080
1178
|
:level_three,
|
1081
1179
|
:level_four,
|
1082
1180
|
:level_five)
|
1181
|
+
SENSITIVE = []
|
1083
1182
|
include Aws::Structure
|
1084
1183
|
end
|
1085
1184
|
|
@@ -1113,10 +1212,17 @@ module Aws::Connect
|
|
1113
1212
|
:level_three,
|
1114
1213
|
:level_four,
|
1115
1214
|
:level_five)
|
1215
|
+
SENSITIVE = []
|
1116
1216
|
include Aws::Structure
|
1117
1217
|
end
|
1118
1218
|
|
1119
|
-
# Contains information about a historical metric.
|
1219
|
+
# Contains information about a historical metric. For a description of
|
1220
|
+
# each metric, see [Historical Metrics Definitions][1] in the *Amazon
|
1221
|
+
# Connect Administrator Guide*.
|
1222
|
+
#
|
1223
|
+
#
|
1224
|
+
#
|
1225
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html
|
1120
1226
|
#
|
1121
1227
|
# @note When making an API call, you may pass HistoricalMetric
|
1122
1228
|
# data as a hash:
|
@@ -1154,6 +1260,7 @@ module Aws::Connect
|
|
1154
1260
|
:threshold,
|
1155
1261
|
:statistic,
|
1156
1262
|
:unit)
|
1263
|
+
SENSITIVE = []
|
1157
1264
|
include Aws::Structure
|
1158
1265
|
end
|
1159
1266
|
|
@@ -1172,6 +1279,7 @@ module Aws::Connect
|
|
1172
1279
|
class HistoricalMetricData < Struct.new(
|
1173
1280
|
:metric,
|
1174
1281
|
:value)
|
1282
|
+
SENSITIVE = []
|
1175
1283
|
include Aws::Structure
|
1176
1284
|
end
|
1177
1285
|
|
@@ -1190,6 +1298,7 @@ module Aws::Connect
|
|
1190
1298
|
class HistoricalMetricResult < Struct.new(
|
1191
1299
|
:dimensions,
|
1192
1300
|
:collections)
|
1301
|
+
SENSITIVE = []
|
1193
1302
|
include Aws::Structure
|
1194
1303
|
end
|
1195
1304
|
|
@@ -1214,6 +1323,7 @@ module Aws::Connect
|
|
1214
1323
|
:id,
|
1215
1324
|
:arn,
|
1216
1325
|
:name)
|
1326
|
+
SENSITIVE = []
|
1217
1327
|
include Aws::Structure
|
1218
1328
|
end
|
1219
1329
|
|
@@ -1227,6 +1337,7 @@ module Aws::Connect
|
|
1227
1337
|
#
|
1228
1338
|
class InternalServiceException < Struct.new(
|
1229
1339
|
:message)
|
1340
|
+
SENSITIVE = []
|
1230
1341
|
include Aws::Structure
|
1231
1342
|
end
|
1232
1343
|
|
@@ -1240,6 +1351,7 @@ module Aws::Connect
|
|
1240
1351
|
#
|
1241
1352
|
class InvalidParameterException < Struct.new(
|
1242
1353
|
:message)
|
1354
|
+
SENSITIVE = []
|
1243
1355
|
include Aws::Structure
|
1244
1356
|
end
|
1245
1357
|
|
@@ -1253,6 +1365,7 @@ module Aws::Connect
|
|
1253
1365
|
#
|
1254
1366
|
class InvalidRequestException < Struct.new(
|
1255
1367
|
:message)
|
1368
|
+
SENSITIVE = []
|
1256
1369
|
include Aws::Structure
|
1257
1370
|
end
|
1258
1371
|
|
@@ -1266,6 +1379,7 @@ module Aws::Connect
|
|
1266
1379
|
#
|
1267
1380
|
class LimitExceededException < Struct.new(
|
1268
1381
|
:message)
|
1382
|
+
SENSITIVE = []
|
1269
1383
|
include Aws::Structure
|
1270
1384
|
end
|
1271
1385
|
|
@@ -1304,6 +1418,7 @@ module Aws::Connect
|
|
1304
1418
|
:contact_flow_types,
|
1305
1419
|
:next_token,
|
1306
1420
|
:max_results)
|
1421
|
+
SENSITIVE = []
|
1307
1422
|
include Aws::Structure
|
1308
1423
|
end
|
1309
1424
|
|
@@ -1321,6 +1436,7 @@ module Aws::Connect
|
|
1321
1436
|
class ListContactFlowsResponse < Struct.new(
|
1322
1437
|
:contact_flow_summary_list,
|
1323
1438
|
:next_token)
|
1439
|
+
SENSITIVE = []
|
1324
1440
|
include Aws::Structure
|
1325
1441
|
end
|
1326
1442
|
|
@@ -1353,6 +1469,7 @@ module Aws::Connect
|
|
1353
1469
|
:instance_id,
|
1354
1470
|
:next_token,
|
1355
1471
|
:max_results)
|
1472
|
+
SENSITIVE = []
|
1356
1473
|
include Aws::Structure
|
1357
1474
|
end
|
1358
1475
|
|
@@ -1370,6 +1487,7 @@ module Aws::Connect
|
|
1370
1487
|
class ListHoursOfOperationsResponse < Struct.new(
|
1371
1488
|
:hours_of_operation_summary_list,
|
1372
1489
|
:next_token)
|
1490
|
+
SENSITIVE = []
|
1373
1491
|
include Aws::Structure
|
1374
1492
|
end
|
1375
1493
|
|
@@ -1414,6 +1532,7 @@ module Aws::Connect
|
|
1414
1532
|
:phone_number_country_codes,
|
1415
1533
|
:next_token,
|
1416
1534
|
:max_results)
|
1535
|
+
SENSITIVE = []
|
1417
1536
|
include Aws::Structure
|
1418
1537
|
end
|
1419
1538
|
|
@@ -1431,6 +1550,7 @@ module Aws::Connect
|
|
1431
1550
|
class ListPhoneNumbersResponse < Struct.new(
|
1432
1551
|
:phone_number_summary_list,
|
1433
1552
|
:next_token)
|
1553
|
+
SENSITIVE = []
|
1434
1554
|
include Aws::Structure
|
1435
1555
|
end
|
1436
1556
|
|
@@ -1469,6 +1589,7 @@ module Aws::Connect
|
|
1469
1589
|
:queue_types,
|
1470
1590
|
:next_token,
|
1471
1591
|
:max_results)
|
1592
|
+
SENSITIVE = []
|
1472
1593
|
include Aws::Structure
|
1473
1594
|
end
|
1474
1595
|
|
@@ -1486,6 +1607,7 @@ module Aws::Connect
|
|
1486
1607
|
class ListQueuesResponse < Struct.new(
|
1487
1608
|
:queue_summary_list,
|
1488
1609
|
:next_token)
|
1610
|
+
SENSITIVE = []
|
1489
1611
|
include Aws::Structure
|
1490
1612
|
end
|
1491
1613
|
|
@@ -1518,6 +1640,7 @@ module Aws::Connect
|
|
1518
1640
|
:instance_id,
|
1519
1641
|
:next_token,
|
1520
1642
|
:max_results)
|
1643
|
+
SENSITIVE = []
|
1521
1644
|
include Aws::Structure
|
1522
1645
|
end
|
1523
1646
|
|
@@ -1535,6 +1658,7 @@ module Aws::Connect
|
|
1535
1658
|
class ListRoutingProfilesResponse < Struct.new(
|
1536
1659
|
:routing_profile_summary_list,
|
1537
1660
|
:next_token)
|
1661
|
+
SENSITIVE = []
|
1538
1662
|
include Aws::Structure
|
1539
1663
|
end
|
1540
1664
|
|
@@ -1567,6 +1691,7 @@ module Aws::Connect
|
|
1567
1691
|
:instance_id,
|
1568
1692
|
:next_token,
|
1569
1693
|
:max_results)
|
1694
|
+
SENSITIVE = []
|
1570
1695
|
include Aws::Structure
|
1571
1696
|
end
|
1572
1697
|
|
@@ -1584,6 +1709,7 @@ module Aws::Connect
|
|
1584
1709
|
class ListSecurityProfilesResponse < Struct.new(
|
1585
1710
|
:security_profile_summary_list,
|
1586
1711
|
:next_token)
|
1712
|
+
SENSITIVE = []
|
1587
1713
|
include Aws::Structure
|
1588
1714
|
end
|
1589
1715
|
|
@@ -1602,6 +1728,7 @@ module Aws::Connect
|
|
1602
1728
|
#
|
1603
1729
|
class ListTagsForResourceRequest < Struct.new(
|
1604
1730
|
:resource_arn)
|
1731
|
+
SENSITIVE = []
|
1605
1732
|
include Aws::Structure
|
1606
1733
|
end
|
1607
1734
|
|
@@ -1613,6 +1740,7 @@ module Aws::Connect
|
|
1613
1740
|
#
|
1614
1741
|
class ListTagsForResourceResponse < Struct.new(
|
1615
1742
|
:tags)
|
1743
|
+
SENSITIVE = []
|
1616
1744
|
include Aws::Structure
|
1617
1745
|
end
|
1618
1746
|
|
@@ -1645,6 +1773,7 @@ module Aws::Connect
|
|
1645
1773
|
:instance_id,
|
1646
1774
|
:next_token,
|
1647
1775
|
:max_results)
|
1776
|
+
SENSITIVE = []
|
1648
1777
|
include Aws::Structure
|
1649
1778
|
end
|
1650
1779
|
|
@@ -1662,6 +1791,7 @@ module Aws::Connect
|
|
1662
1791
|
class ListUserHierarchyGroupsResponse < Struct.new(
|
1663
1792
|
:user_hierarchy_group_summary_list,
|
1664
1793
|
:next_token)
|
1794
|
+
SENSITIVE = []
|
1665
1795
|
include Aws::Structure
|
1666
1796
|
end
|
1667
1797
|
|
@@ -1694,6 +1824,7 @@ module Aws::Connect
|
|
1694
1824
|
:instance_id,
|
1695
1825
|
:next_token,
|
1696
1826
|
:max_results)
|
1827
|
+
SENSITIVE = []
|
1697
1828
|
include Aws::Structure
|
1698
1829
|
end
|
1699
1830
|
|
@@ -1711,6 +1842,7 @@ module Aws::Connect
|
|
1711
1842
|
class ListUsersResponse < Struct.new(
|
1712
1843
|
:user_summary_list,
|
1713
1844
|
:next_token)
|
1845
|
+
SENSITIVE = []
|
1714
1846
|
include Aws::Structure
|
1715
1847
|
end
|
1716
1848
|
|
@@ -1724,6 +1856,7 @@ module Aws::Connect
|
|
1724
1856
|
#
|
1725
1857
|
class OutboundContactNotPermittedException < Struct.new(
|
1726
1858
|
:message)
|
1859
|
+
SENSITIVE = []
|
1727
1860
|
include Aws::Structure
|
1728
1861
|
end
|
1729
1862
|
|
@@ -1744,6 +1877,7 @@ module Aws::Connect
|
|
1744
1877
|
#
|
1745
1878
|
class ParticipantDetails < Struct.new(
|
1746
1879
|
:display_name)
|
1880
|
+
SENSITIVE = []
|
1747
1881
|
include Aws::Structure
|
1748
1882
|
end
|
1749
1883
|
|
@@ -1778,6 +1912,7 @@ module Aws::Connect
|
|
1778
1912
|
:phone_number,
|
1779
1913
|
:phone_number_type,
|
1780
1914
|
:phone_number_country_code)
|
1915
|
+
SENSITIVE = []
|
1781
1916
|
include Aws::Structure
|
1782
1917
|
end
|
1783
1918
|
|
@@ -1797,6 +1932,7 @@ module Aws::Connect
|
|
1797
1932
|
class QueueReference < Struct.new(
|
1798
1933
|
:id,
|
1799
1934
|
:arn)
|
1935
|
+
SENSITIVE = []
|
1800
1936
|
include Aws::Structure
|
1801
1937
|
end
|
1802
1938
|
|
@@ -1825,6 +1961,7 @@ module Aws::Connect
|
|
1825
1961
|
:arn,
|
1826
1962
|
:name,
|
1827
1963
|
:queue_type)
|
1964
|
+
SENSITIVE = []
|
1828
1965
|
include Aws::Structure
|
1829
1966
|
end
|
1830
1967
|
|
@@ -1838,6 +1975,7 @@ module Aws::Connect
|
|
1838
1975
|
#
|
1839
1976
|
class ResourceNotFoundException < Struct.new(
|
1840
1977
|
:message)
|
1978
|
+
SENSITIVE = []
|
1841
1979
|
include Aws::Structure
|
1842
1980
|
end
|
1843
1981
|
|
@@ -1861,6 +1999,7 @@ module Aws::Connect
|
|
1861
1999
|
:id,
|
1862
2000
|
:arn,
|
1863
2001
|
:name)
|
2002
|
+
SENSITIVE = []
|
1864
2003
|
include Aws::Structure
|
1865
2004
|
end
|
1866
2005
|
|
@@ -1884,6 +2023,7 @@ module Aws::Connect
|
|
1884
2023
|
:id,
|
1885
2024
|
:arn,
|
1886
2025
|
:name)
|
2026
|
+
SENSITIVE = []
|
1887
2027
|
include Aws::Structure
|
1888
2028
|
end
|
1889
2029
|
|
@@ -1911,7 +2051,14 @@ module Aws::Connect
|
|
1911
2051
|
# @return [String]
|
1912
2052
|
#
|
1913
2053
|
# @!attribute [rw] contact_flow_id
|
1914
|
-
# The identifier of the contact flow for the
|
2054
|
+
# The identifier of the contact flow for the outbound call. To see the
|
2055
|
+
# ContactFlowId in the Amazon Connect console user interface, on the
|
2056
|
+
# navigation menu go to **Routing**, **Contact Flows**. Choose the
|
2057
|
+
# contact flow. On the contact flow page, under the name of the
|
2058
|
+
# contact flow, choose **Show additional flow information**. The
|
2059
|
+
# ContactFlowId is the last part of the ARN, shown here in bold:
|
2060
|
+
#
|
2061
|
+
# arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
|
1915
2062
|
# @return [String]
|
1916
2063
|
#
|
1917
2064
|
# @!attribute [rw] attributes
|
@@ -1949,6 +2096,7 @@ module Aws::Connect
|
|
1949
2096
|
:participant_details,
|
1950
2097
|
:initial_message,
|
1951
2098
|
:client_token)
|
2099
|
+
SENSITIVE = []
|
1952
2100
|
include Aws::Structure
|
1953
2101
|
end
|
1954
2102
|
|
@@ -1977,6 +2125,7 @@ module Aws::Connect
|
|
1977
2125
|
:contact_id,
|
1978
2126
|
:participant_id,
|
1979
2127
|
:participant_token)
|
2128
|
+
SENSITIVE = []
|
1980
2129
|
include Aws::Structure
|
1981
2130
|
end
|
1982
2131
|
|
@@ -2000,7 +2149,14 @@ module Aws::Connect
|
|
2000
2149
|
# @return [String]
|
2001
2150
|
#
|
2002
2151
|
# @!attribute [rw] contact_flow_id
|
2003
|
-
# The identifier of the contact flow for the outbound call.
|
2152
|
+
# The identifier of the contact flow for the outbound call. To see the
|
2153
|
+
# ContactFlowId in the Amazon Connect console user interface, on the
|
2154
|
+
# navigation menu go to **Routing**, **Contact Flows**. Choose the
|
2155
|
+
# contact flow. On the contact flow page, under the name of the
|
2156
|
+
# contact flow, choose **Show additional flow information**. The
|
2157
|
+
# ContactFlowId is the last part of the ARN, shown here in bold:
|
2158
|
+
#
|
2159
|
+
# arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/**846ec553-a005-41c0-8341-xxxxxxxxxxxx**
|
2004
2160
|
# @return [String]
|
2005
2161
|
#
|
2006
2162
|
# @!attribute [rw] instance_id
|
@@ -2051,6 +2207,7 @@ module Aws::Connect
|
|
2051
2207
|
:source_phone_number,
|
2052
2208
|
:queue_id,
|
2053
2209
|
:attributes)
|
2210
|
+
SENSITIVE = []
|
2054
2211
|
include Aws::Structure
|
2055
2212
|
end
|
2056
2213
|
|
@@ -2062,6 +2219,7 @@ module Aws::Connect
|
|
2062
2219
|
#
|
2063
2220
|
class StartOutboundVoiceContactResponse < Struct.new(
|
2064
2221
|
:contact_id)
|
2222
|
+
SENSITIVE = []
|
2065
2223
|
include Aws::Structure
|
2066
2224
|
end
|
2067
2225
|
|
@@ -2086,6 +2244,7 @@ module Aws::Connect
|
|
2086
2244
|
class StopContactRequest < Struct.new(
|
2087
2245
|
:contact_id,
|
2088
2246
|
:instance_id)
|
2247
|
+
SENSITIVE = []
|
2089
2248
|
include Aws::Structure
|
2090
2249
|
end
|
2091
2250
|
|
@@ -2117,6 +2276,7 @@ module Aws::Connect
|
|
2117
2276
|
class TagResourceRequest < Struct.new(
|
2118
2277
|
:resource_arn,
|
2119
2278
|
:tags)
|
2279
|
+
SENSITIVE = []
|
2120
2280
|
include Aws::Structure
|
2121
2281
|
end
|
2122
2282
|
|
@@ -2144,6 +2304,7 @@ module Aws::Connect
|
|
2144
2304
|
class Threshold < Struct.new(
|
2145
2305
|
:comparison,
|
2146
2306
|
:threshold_value)
|
2307
|
+
SENSITIVE = []
|
2147
2308
|
include Aws::Structure
|
2148
2309
|
end
|
2149
2310
|
|
@@ -2156,6 +2317,7 @@ module Aws::Connect
|
|
2156
2317
|
#
|
2157
2318
|
class ThrottlingException < Struct.new(
|
2158
2319
|
:message)
|
2320
|
+
SENSITIVE = []
|
2159
2321
|
include Aws::Structure
|
2160
2322
|
end
|
2161
2323
|
|
@@ -2180,6 +2342,7 @@ module Aws::Connect
|
|
2180
2342
|
class UntagResourceRequest < Struct.new(
|
2181
2343
|
:resource_arn,
|
2182
2344
|
:tag_keys)
|
2345
|
+
SENSITIVE = []
|
2183
2346
|
include Aws::Structure
|
2184
2347
|
end
|
2185
2348
|
|
@@ -2218,6 +2381,7 @@ module Aws::Connect
|
|
2218
2381
|
:initial_contact_id,
|
2219
2382
|
:instance_id,
|
2220
2383
|
:attributes)
|
2384
|
+
SENSITIVE = []
|
2221
2385
|
include Aws::Structure
|
2222
2386
|
end
|
2223
2387
|
|
@@ -2252,6 +2416,7 @@ module Aws::Connect
|
|
2252
2416
|
:hierarchy_group_id,
|
2253
2417
|
:user_id,
|
2254
2418
|
:instance_id)
|
2419
|
+
SENSITIVE = []
|
2255
2420
|
include Aws::Structure
|
2256
2421
|
end
|
2257
2422
|
|
@@ -2286,6 +2451,7 @@ module Aws::Connect
|
|
2286
2451
|
:identity_info,
|
2287
2452
|
:user_id,
|
2288
2453
|
:instance_id)
|
2454
|
+
SENSITIVE = []
|
2289
2455
|
include Aws::Structure
|
2290
2456
|
end
|
2291
2457
|
|
@@ -2321,6 +2487,7 @@ module Aws::Connect
|
|
2321
2487
|
:phone_config,
|
2322
2488
|
:user_id,
|
2323
2489
|
:instance_id)
|
2490
|
+
SENSITIVE = []
|
2324
2491
|
include Aws::Structure
|
2325
2492
|
end
|
2326
2493
|
|
@@ -2351,6 +2518,7 @@ module Aws::Connect
|
|
2351
2518
|
:routing_profile_id,
|
2352
2519
|
:user_id,
|
2353
2520
|
:instance_id)
|
2521
|
+
SENSITIVE = []
|
2354
2522
|
include Aws::Structure
|
2355
2523
|
end
|
2356
2524
|
|
@@ -2381,6 +2549,7 @@ module Aws::Connect
|
|
2381
2549
|
:security_profile_ids,
|
2382
2550
|
:user_id,
|
2383
2551
|
:instance_id)
|
2552
|
+
SENSITIVE = []
|
2384
2553
|
include Aws::Structure
|
2385
2554
|
end
|
2386
2555
|
|
@@ -2441,6 +2610,7 @@ module Aws::Connect
|
|
2441
2610
|
:routing_profile_id,
|
2442
2611
|
:hierarchy_group_id,
|
2443
2612
|
:tags)
|
2613
|
+
SENSITIVE = []
|
2444
2614
|
include Aws::Structure
|
2445
2615
|
end
|
2446
2616
|
|
@@ -2476,6 +2646,7 @@ module Aws::Connect
|
|
2476
2646
|
:first_name,
|
2477
2647
|
:last_name,
|
2478
2648
|
:email)
|
2649
|
+
SENSITIVE = []
|
2479
2650
|
include Aws::Structure
|
2480
2651
|
end
|
2481
2652
|
|
@@ -2489,6 +2660,7 @@ module Aws::Connect
|
|
2489
2660
|
#
|
2490
2661
|
class UserNotFoundException < Struct.new(
|
2491
2662
|
:message)
|
2663
|
+
SENSITIVE = []
|
2492
2664
|
include Aws::Structure
|
2493
2665
|
end
|
2494
2666
|
|
@@ -2528,6 +2700,7 @@ module Aws::Connect
|
|
2528
2700
|
:auto_accept,
|
2529
2701
|
:after_contact_work_time_limit,
|
2530
2702
|
:desk_phone_number)
|
2703
|
+
SENSITIVE = []
|
2531
2704
|
include Aws::Structure
|
2532
2705
|
end
|
2533
2706
|
|
@@ -2551,6 +2724,7 @@ module Aws::Connect
|
|
2551
2724
|
:id,
|
2552
2725
|
:arn,
|
2553
2726
|
:username)
|
2727
|
+
SENSITIVE = []
|
2554
2728
|
include Aws::Structure
|
2555
2729
|
end
|
2556
2730
|
|