aws-sdk-connect 1.209.0 → 1.210.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +551 -255
- data/lib/aws-sdk-connect/client_api.rb +51 -0
- data/lib/aws-sdk-connect/types.rb +772 -222
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +42 -4
- data/sig/types.rbs +38 -0
- metadata +1 -1
@@ -2447,10 +2447,16 @@ module Aws::Connect
|
|
2447
2447
|
# A leaf node condition which can be used to specify a tag condition.
|
2448
2448
|
# @return [Array<Types::TagCondition>]
|
2449
2449
|
#
|
2450
|
+
# @!attribute [rw] hierarchy_group_condition
|
2451
|
+
# A leaf node condition which can be used to specify a hierarchy group
|
2452
|
+
# condition.
|
2453
|
+
# @return [Types::HierarchyGroupCondition]
|
2454
|
+
#
|
2450
2455
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CommonAttributeAndCondition AWS API Documentation
|
2451
2456
|
#
|
2452
2457
|
class CommonAttributeAndCondition < Struct.new(
|
2453
|
-
:tag_conditions
|
2458
|
+
:tag_conditions,
|
2459
|
+
:hierarchy_group_condition)
|
2454
2460
|
SENSITIVE = []
|
2455
2461
|
include Aws::Structure
|
2456
2462
|
end
|
@@ -3404,6 +3410,61 @@ module Aws::Connect
|
|
3404
3410
|
include Aws::Structure
|
3405
3411
|
end
|
3406
3412
|
|
3413
|
+
# The object that contains information about metric being requested.
|
3414
|
+
#
|
3415
|
+
# @!attribute [rw] name
|
3416
|
+
# The name of the metric being retrieved in type String.
|
3417
|
+
# @return [String]
|
3418
|
+
#
|
3419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactMetricInfo AWS API Documentation
|
3420
|
+
#
|
3421
|
+
class ContactMetricInfo < Struct.new(
|
3422
|
+
:name)
|
3423
|
+
SENSITIVE = []
|
3424
|
+
include Aws::Structure
|
3425
|
+
end
|
3426
|
+
|
3427
|
+
# Object containing information about metric requested for the contact.
|
3428
|
+
#
|
3429
|
+
# @!attribute [rw] name
|
3430
|
+
# The name of the metric being retrieved in type String.
|
3431
|
+
# @return [String]
|
3432
|
+
#
|
3433
|
+
# @!attribute [rw] value
|
3434
|
+
# Object result associated with the metric received.
|
3435
|
+
# @return [Types::ContactMetricValue]
|
3436
|
+
#
|
3437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactMetricResult AWS API Documentation
|
3438
|
+
#
|
3439
|
+
class ContactMetricResult < Struct.new(
|
3440
|
+
:name,
|
3441
|
+
:value)
|
3442
|
+
SENSITIVE = []
|
3443
|
+
include Aws::Structure
|
3444
|
+
end
|
3445
|
+
|
3446
|
+
# Object which contains the number.
|
3447
|
+
#
|
3448
|
+
# @note ContactMetricValue is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ContactMetricValue corresponding to the set member.
|
3449
|
+
#
|
3450
|
+
# @!attribute [rw] number
|
3451
|
+
# The number of type Double. This number is the contact's position in
|
3452
|
+
# queue.
|
3453
|
+
# @return [Float]
|
3454
|
+
#
|
3455
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactMetricValue AWS API Documentation
|
3456
|
+
#
|
3457
|
+
class ContactMetricValue < Struct.new(
|
3458
|
+
:number,
|
3459
|
+
:unknown)
|
3460
|
+
SENSITIVE = []
|
3461
|
+
include Aws::Structure
|
3462
|
+
include Aws::Structure::Union
|
3463
|
+
|
3464
|
+
class Number < ContactMetricValue; end
|
3465
|
+
class Unknown < ContactMetricValue; end
|
3466
|
+
end
|
3467
|
+
|
3407
3468
|
# The contact with the specified ID is not active or does not exist.
|
3408
3469
|
# Applies to Voice calls only, not to Chat or Task contacts.
|
3409
3470
|
#
|
@@ -4292,13 +4353,11 @@ module Aws::Connect
|
|
4292
4353
|
# @return [Array<Types::HoursOfOperationOverrideConfig>]
|
4293
4354
|
#
|
4294
4355
|
# @!attribute [rw] effective_from
|
4295
|
-
# The date from when the hours of operation override
|
4296
|
-
# effective.
|
4356
|
+
# The date from when the hours of operation override is effective.
|
4297
4357
|
# @return [String]
|
4298
4358
|
#
|
4299
4359
|
# @!attribute [rw] effective_till
|
4300
|
-
# The date until when the hours of operation override
|
4301
|
-
# effective.
|
4360
|
+
# The date until when the hours of operation override is effective.
|
4302
4361
|
# @return [String]
|
4303
4362
|
#
|
4304
4363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationOverrideRequest AWS API Documentation
|
@@ -8610,18 +8669,10 @@ module Aws::Connect
|
|
8610
8669
|
#
|
8611
8670
|
# @!attribute [rw] address
|
8612
8671
|
# Address of the email recipient.
|
8613
|
-
#
|
8614
|
-
# Type: String
|
8615
|
-
#
|
8616
|
-
# Length Constraints: Minimum length of 1. Maximum length of 256.
|
8617
8672
|
# @return [String]
|
8618
8673
|
#
|
8619
8674
|
# @!attribute [rw] display_name
|
8620
8675
|
# Display name of the email recipient.
|
8621
|
-
#
|
8622
|
-
# Type: String
|
8623
|
-
#
|
8624
|
-
# Length Constraints: Minimum length of 1. Maximum length of 256.
|
8625
8676
|
# @return [String]
|
8626
8677
|
#
|
8627
8678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailRecipient AWS API Documentation
|
@@ -9998,6 +10049,58 @@ module Aws::Connect
|
|
9998
10049
|
include Aws::Structure
|
9999
10050
|
end
|
10000
10051
|
|
10052
|
+
# @!attribute [rw] instance_id
|
10053
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10054
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10055
|
+
#
|
10056
|
+
#
|
10057
|
+
#
|
10058
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
10059
|
+
# @return [String]
|
10060
|
+
#
|
10061
|
+
# @!attribute [rw] contact_id
|
10062
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
10063
|
+
# @return [String]
|
10064
|
+
#
|
10065
|
+
# @!attribute [rw] metrics
|
10066
|
+
# A list of contact-level metrics to retrieve.
|
10067
|
+
# @return [Array<Types::ContactMetricInfo>]
|
10068
|
+
#
|
10069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetContactMetricsRequest AWS API Documentation
|
10070
|
+
#
|
10071
|
+
class GetContactMetricsRequest < Struct.new(
|
10072
|
+
:instance_id,
|
10073
|
+
:contact_id,
|
10074
|
+
:metrics)
|
10075
|
+
SENSITIVE = []
|
10076
|
+
include Aws::Structure
|
10077
|
+
end
|
10078
|
+
|
10079
|
+
# @!attribute [rw] metric_results
|
10080
|
+
# A list of metric results containing the calculated values for each
|
10081
|
+
# requested metric. Each result includes the metric name and its
|
10082
|
+
# corresponding calculated value.
|
10083
|
+
# @return [Array<Types::ContactMetricResult>]
|
10084
|
+
#
|
10085
|
+
# @!attribute [rw] id
|
10086
|
+
# The unique identifier of the contact for which metrics were
|
10087
|
+
# retrieved.
|
10088
|
+
# @return [String]
|
10089
|
+
#
|
10090
|
+
# @!attribute [rw] arn
|
10091
|
+
# The ARN of the contact for which metrics were retrieved.
|
10092
|
+
# @return [String]
|
10093
|
+
#
|
10094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetContactMetricsResponse AWS API Documentation
|
10095
|
+
#
|
10096
|
+
class GetContactMetricsResponse < Struct.new(
|
10097
|
+
:metric_results,
|
10098
|
+
:id,
|
10099
|
+
:arn)
|
10100
|
+
SENSITIVE = []
|
10101
|
+
include Aws::Structure
|
10102
|
+
end
|
10103
|
+
|
10001
10104
|
# @!attribute [rw] instance_id
|
10002
10105
|
# The identifier of the Amazon Connect instance. You can [find the
|
10003
10106
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -10330,11 +10433,11 @@ module Aws::Connect
|
|
10330
10433
|
# @return [String]
|
10331
10434
|
#
|
10332
10435
|
# @!attribute [rw] from_date
|
10333
|
-
# The
|
10436
|
+
# The date from when the hours of operation are listed.
|
10334
10437
|
# @return [String]
|
10335
10438
|
#
|
10336
10439
|
# @!attribute [rw] to_date
|
10337
|
-
# The
|
10440
|
+
# The date until when the hours of operation are listed.
|
10338
10441
|
# @return [String]
|
10339
10442
|
#
|
10340
10443
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetEffectiveHoursOfOperationsRequest AWS API Documentation
|
@@ -10349,7 +10452,7 @@ module Aws::Connect
|
|
10349
10452
|
end
|
10350
10453
|
|
10351
10454
|
# @!attribute [rw] effective_hours_of_operation_list
|
10352
|
-
# Information about the effective hours of operations
|
10455
|
+
# Information about the effective hours of operations.
|
10353
10456
|
# @return [Array<Types::EffectiveHoursOfOperations>]
|
10354
10457
|
#
|
10355
10458
|
# @!attribute [rw] time_zone
|
@@ -10541,113 +10644,151 @@ module Aws::Connect
|
|
10541
10644
|
#
|
10542
10645
|
# Statistic: AVG
|
10543
10646
|
#
|
10647
|
+
# UI name: [Average queue abandon time][2]
|
10648
|
+
#
|
10544
10649
|
# AFTER\_CONTACT\_WORK\_TIME
|
10545
10650
|
#
|
10546
10651
|
# : Unit: SECONDS
|
10547
10652
|
#
|
10548
10653
|
# Statistic: AVG
|
10549
10654
|
#
|
10655
|
+
# UI name: [After contact work time][3]
|
10656
|
+
#
|
10550
10657
|
# API\_CONTACTS\_HANDLED
|
10551
10658
|
#
|
10552
10659
|
# : Unit: COUNT
|
10553
10660
|
#
|
10554
10661
|
# Statistic: SUM
|
10555
10662
|
#
|
10663
|
+
# UI name: [API contacts handled][4]
|
10664
|
+
#
|
10665
|
+
# AVG\_HOLD\_TIME
|
10666
|
+
#
|
10667
|
+
# : Unit: SECONDS
|
10668
|
+
#
|
10669
|
+
# Statistic: AVG
|
10670
|
+
#
|
10671
|
+
# UI name: [Average customer hold time][5]
|
10672
|
+
#
|
10556
10673
|
# CALLBACK\_CONTACTS\_HANDLED
|
10557
10674
|
#
|
10558
10675
|
# : Unit: COUNT
|
10559
10676
|
#
|
10560
10677
|
# Statistic: SUM
|
10561
10678
|
#
|
10679
|
+
# UI name: [Callback contacts handled][6]
|
10680
|
+
#
|
10562
10681
|
# CONTACTS\_ABANDONED
|
10563
10682
|
#
|
10564
10683
|
# : Unit: COUNT
|
10565
10684
|
#
|
10566
10685
|
# Statistic: SUM
|
10567
10686
|
#
|
10687
|
+
# UI name: [Contacts abandoned][7]
|
10688
|
+
#
|
10568
10689
|
# CONTACTS\_AGENT\_HUNG\_UP\_FIRST
|
10569
10690
|
#
|
10570
10691
|
# : Unit: COUNT
|
10571
10692
|
#
|
10572
10693
|
# Statistic: SUM
|
10573
10694
|
#
|
10695
|
+
# UI name: [Contacts agent hung up first][8]
|
10696
|
+
#
|
10574
10697
|
# CONTACTS\_CONSULTED
|
10575
10698
|
#
|
10576
10699
|
# : Unit: COUNT
|
10577
10700
|
#
|
10578
10701
|
# Statistic: SUM
|
10579
10702
|
#
|
10703
|
+
# UI name: [Contacts consulted][9]
|
10704
|
+
#
|
10580
10705
|
# CONTACTS\_HANDLED
|
10581
10706
|
#
|
10582
10707
|
# : Unit: COUNT
|
10583
10708
|
#
|
10584
10709
|
# Statistic: SUM
|
10585
10710
|
#
|
10711
|
+
# UI name: [Contacts handled][10]
|
10712
|
+
#
|
10586
10713
|
# CONTACTS\_HANDLED\_INCOMING
|
10587
10714
|
#
|
10588
10715
|
# : Unit: COUNT
|
10589
10716
|
#
|
10590
10717
|
# Statistic: SUM
|
10591
10718
|
#
|
10719
|
+
# UI name: [Contacts handled incoming][11]
|
10720
|
+
#
|
10592
10721
|
# CONTACTS\_HANDLED\_OUTBOUND
|
10593
10722
|
#
|
10594
10723
|
# : Unit: COUNT
|
10595
10724
|
#
|
10596
10725
|
# Statistic: SUM
|
10597
10726
|
#
|
10727
|
+
# UI name: [Contacts handled outbound][12]
|
10728
|
+
#
|
10598
10729
|
# CONTACTS\_HOLD\_ABANDONS
|
10599
10730
|
#
|
10600
10731
|
# : Unit: COUNT
|
10601
10732
|
#
|
10602
10733
|
# Statistic: SUM
|
10603
10734
|
#
|
10735
|
+
# UI name: [Contacts hold disconnect][13]
|
10736
|
+
#
|
10604
10737
|
# CONTACTS\_MISSED
|
10605
10738
|
#
|
10606
10739
|
# : Unit: COUNT
|
10607
10740
|
#
|
10608
10741
|
# Statistic: SUM
|
10609
10742
|
#
|
10743
|
+
# UI name: [AGENT\_NON\_RESPONSE][14]
|
10744
|
+
#
|
10610
10745
|
# CONTACTS\_QUEUED
|
10611
10746
|
#
|
10612
10747
|
# : Unit: COUNT
|
10613
10748
|
#
|
10614
10749
|
# Statistic: SUM
|
10615
10750
|
#
|
10751
|
+
# UI name: [Contacts queued][15]
|
10752
|
+
#
|
10616
10753
|
# CONTACTS\_TRANSFERRED\_IN
|
10617
10754
|
#
|
10618
10755
|
# : Unit: COUNT
|
10619
10756
|
#
|
10620
10757
|
# Statistic: SUM
|
10621
10758
|
#
|
10759
|
+
# UI name: [Contacts transferred in][16]
|
10760
|
+
#
|
10622
10761
|
# CONTACTS\_TRANSFERRED\_IN\_FROM\_QUEUE
|
10623
10762
|
#
|
10624
10763
|
# : Unit: COUNT
|
10625
10764
|
#
|
10626
10765
|
# Statistic: SUM
|
10627
10766
|
#
|
10767
|
+
# UI name: [Contacts transferred out queue][17]
|
10768
|
+
#
|
10628
10769
|
# CONTACTS\_TRANSFERRED\_OUT
|
10629
10770
|
#
|
10630
10771
|
# : Unit: COUNT
|
10631
10772
|
#
|
10632
10773
|
# Statistic: SUM
|
10633
10774
|
#
|
10775
|
+
# UI name: [Contacts transferred out][18]
|
10776
|
+
#
|
10634
10777
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
10635
10778
|
#
|
10636
10779
|
# : Unit: COUNT
|
10637
10780
|
#
|
10638
10781
|
# Statistic: SUM
|
10639
10782
|
#
|
10783
|
+
# UI name: [Contacts transferred out queue][17]
|
10784
|
+
#
|
10640
10785
|
# HANDLE\_TIME
|
10641
10786
|
#
|
10642
10787
|
# : Unit: SECONDS
|
10643
10788
|
#
|
10644
10789
|
# Statistic: AVG
|
10645
10790
|
#
|
10646
|
-
#
|
10647
|
-
#
|
10648
|
-
# : Unit: SECONDS
|
10649
|
-
#
|
10650
|
-
# Statistic: AVG
|
10791
|
+
# UI name: [Average handle time][19]
|
10651
10792
|
#
|
10652
10793
|
# INTERACTION\_AND\_HOLD\_TIME
|
10653
10794
|
#
|
@@ -10655,30 +10796,40 @@ module Aws::Connect
|
|
10655
10796
|
#
|
10656
10797
|
# Statistic: AVG
|
10657
10798
|
#
|
10799
|
+
# UI name: [Average agent interaction and customer hold time][20]
|
10800
|
+
#
|
10658
10801
|
# INTERACTION\_TIME
|
10659
10802
|
#
|
10660
10803
|
# : Unit: SECONDS
|
10661
10804
|
#
|
10662
10805
|
# Statistic: AVG
|
10663
10806
|
#
|
10807
|
+
# UI name: [Average agent interaction time][21]
|
10808
|
+
#
|
10664
10809
|
# OCCUPANCY
|
10665
10810
|
#
|
10666
10811
|
# : Unit: PERCENT
|
10667
10812
|
#
|
10668
10813
|
# Statistic: AVG
|
10669
10814
|
#
|
10815
|
+
# UI name: [Occupancy][22]
|
10816
|
+
#
|
10670
10817
|
# QUEUE\_ANSWER\_TIME
|
10671
10818
|
#
|
10672
10819
|
# : Unit: SECONDS
|
10673
10820
|
#
|
10674
10821
|
# Statistic: AVG
|
10675
10822
|
#
|
10823
|
+
# UI name: [Average queue answer time][23]
|
10824
|
+
#
|
10676
10825
|
# QUEUED\_TIME
|
10677
10826
|
#
|
10678
10827
|
# : Unit: SECONDS
|
10679
10828
|
#
|
10680
10829
|
# Statistic: MAX
|
10681
10830
|
#
|
10831
|
+
# UI name: [Minimum flow time][24]
|
10832
|
+
#
|
10682
10833
|
# SERVICE\_LEVEL
|
10683
10834
|
#
|
10684
10835
|
# : You can include up to 20 SERVICE\_LEVEL metrics in a request.
|
@@ -10691,9 +10842,34 @@ module Aws::Connect
|
|
10691
10842
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
10692
10843
|
# `LT` (for "Less than").
|
10693
10844
|
#
|
10845
|
+
# UI name: [Average queue abandon time][2]
|
10846
|
+
#
|
10694
10847
|
#
|
10695
10848
|
#
|
10696
10849
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
|
10850
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-abandon-time
|
10851
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#after-contact-work-time
|
10852
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#api-contacts-handled
|
10853
|
+
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time
|
10854
|
+
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-contacts-handled
|
10855
|
+
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
10856
|
+
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-agent-hung-up-first
|
10857
|
+
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-consulted
|
10858
|
+
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled
|
10859
|
+
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-incoming
|
10860
|
+
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-outbound
|
10861
|
+
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
10862
|
+
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-response
|
10863
|
+
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
10864
|
+
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-in
|
10865
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
10866
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
10867
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-handle-time
|
10868
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-and-customer-hold-time
|
10869
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#aaverage-agent-interaction-time
|
10870
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#occupancy
|
10871
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html##average-queue-answer-time
|
10872
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
10697
10873
|
# @return [Array<Types::HistoricalMetric>]
|
10698
10874
|
#
|
10699
10875
|
# @!attribute [rw] next_token
|
@@ -11148,6 +11324,28 @@ module Aws::Connect
|
|
11148
11324
|
#
|
11149
11325
|
# </note>
|
11150
11326
|
#
|
11327
|
+
# AVG\_CONTACT\_FIRST\_RESPONSE\_TIME\_AGENT
|
11328
|
+
#
|
11329
|
+
# : Unit: Seconds
|
11330
|
+
#
|
11331
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11332
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11333
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11334
|
+
# Profile, Queue, Q in Connect
|
11335
|
+
#
|
11336
|
+
# UI name: [Agent average contact first response wait time][22]
|
11337
|
+
#
|
11338
|
+
# AVG\_CONVERSATION\_CLOSE\_TIME
|
11339
|
+
#
|
11340
|
+
# : Unit: Seconds
|
11341
|
+
#
|
11342
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11343
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11344
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11345
|
+
# Profile, Queue, Q in Connect
|
11346
|
+
#
|
11347
|
+
# UI name: [Average conversation close time][23]
|
11348
|
+
#
|
11151
11349
|
# AVG\_CONVERSATION\_DURATION
|
11152
11350
|
#
|
11153
11351
|
# : Unit: Seconds
|
@@ -11156,7 +11354,7 @@ module Aws::Connect
|
|
11156
11354
|
# Agent, Agent Hierarchy, Feature,
|
11157
11355
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11158
11356
|
#
|
11159
|
-
# UI name: [Average conversation duration][
|
11357
|
+
# UI name: [Average conversation duration][24]
|
11160
11358
|
#
|
11161
11359
|
# AVG\_DIALS\_PER\_MINUTE
|
11162
11360
|
#
|
@@ -11168,7 +11366,7 @@ module Aws::Connect
|
|
11168
11366
|
# Valid groupings and filters: Agent, Campaign, Queue, Routing
|
11169
11367
|
# Profile
|
11170
11368
|
#
|
11171
|
-
# UI name: [Average dials per minute][
|
11369
|
+
# UI name: [Average dials per minute][25]
|
11172
11370
|
#
|
11173
11371
|
# AVG\_EVALUATION\_SCORE
|
11174
11372
|
#
|
@@ -11178,7 +11376,18 @@ module Aws::Connect
|
|
11178
11376
|
# Evaluation Form ID, Evaluation Section ID, Evaluation Question ID,
|
11179
11377
|
# Evaluation Source, Form Version, Queue, Routing Profile
|
11180
11378
|
#
|
11181
|
-
# UI name: [Average evaluation score][
|
11379
|
+
# UI name: [Average evaluation score][26]
|
11380
|
+
#
|
11381
|
+
# AVG\_FIRST\_RESPONSE\_TIME\_AGENT
|
11382
|
+
#
|
11383
|
+
# : Unit: Seconds
|
11384
|
+
#
|
11385
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11386
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11387
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11388
|
+
# Profile, Queue, Q in Connect
|
11389
|
+
#
|
11390
|
+
# UI name: [Average agent first response time][27]
|
11182
11391
|
#
|
11183
11392
|
# AVG\_FLOW\_TIME
|
11184
11393
|
#
|
@@ -11190,7 +11399,7 @@ module Aws::Connect
|
|
11190
11399
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11191
11400
|
# published timestamp
|
11192
11401
|
#
|
11193
|
-
# UI name: [Average flow time][
|
11402
|
+
# UI name: [Average flow time][28]
|
11194
11403
|
#
|
11195
11404
|
# AVG\_GREETING\_TIME\_AGENT
|
11196
11405
|
#
|
@@ -11203,7 +11412,7 @@ module Aws::Connect
|
|
11203
11412
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11204
11413
|
# Q in Connect
|
11205
11414
|
#
|
11206
|
-
# UI name: [Average agent greeting time][
|
11415
|
+
# UI name: [Average agent greeting time][29]
|
11207
11416
|
#
|
11208
11417
|
# AVG\_HANDLE\_TIME
|
11209
11418
|
#
|
@@ -11213,7 +11422,7 @@ module Aws::Connect
|
|
11213
11422
|
# Agent, Agent Hierarchy, Feature,
|
11214
11423
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression
|
11215
11424
|
#
|
11216
|
-
# UI name: [Average handle time][
|
11425
|
+
# UI name: [Average handle time][30]
|
11217
11426
|
#
|
11218
11427
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11219
11428
|
#
|
@@ -11227,7 +11436,7 @@ module Aws::Connect
|
|
11227
11436
|
# Agent, Agent Hierarchy, Feature,
|
11228
11437
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11229
11438
|
#
|
11230
|
-
# UI name: [Average customer hold time][
|
11439
|
+
# UI name: [Average customer hold time][31]
|
11231
11440
|
#
|
11232
11441
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11233
11442
|
#
|
@@ -11241,7 +11450,7 @@ module Aws::Connect
|
|
11241
11450
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11242
11451
|
# Q in Connect
|
11243
11452
|
#
|
11244
|
-
# UI name: [Average customer hold time all contacts][
|
11453
|
+
# UI name: [Average customer hold time all contacts][32]
|
11245
11454
|
#
|
11246
11455
|
# AVG\_HOLDS
|
11247
11456
|
#
|
@@ -11251,7 +11460,7 @@ module Aws::Connect
|
|
11251
11460
|
# Agent, Agent Hierarchy, Feature,
|
11252
11461
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11253
11462
|
#
|
11254
|
-
# UI name: [Average holds][
|
11463
|
+
# UI name: [Average holds][33]
|
11255
11464
|
#
|
11256
11465
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11257
11466
|
#
|
@@ -11265,7 +11474,7 @@ module Aws::Connect
|
|
11265
11474
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11266
11475
|
# Q in Connect
|
11267
11476
|
#
|
11268
|
-
# UI name: [Average agent interaction and customer hold time][
|
11477
|
+
# UI name: [Average agent interaction and customer hold time][34]
|
11269
11478
|
#
|
11270
11479
|
# AVG\_INTERACTION\_TIME
|
11271
11480
|
#
|
@@ -11276,7 +11485,7 @@ module Aws::Connect
|
|
11276
11485
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11277
11486
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11278
11487
|
#
|
11279
|
-
# UI name: [Average agent interaction time][
|
11488
|
+
# UI name: [Average agent interaction time][35]
|
11280
11489
|
#
|
11281
11490
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11282
11491
|
#
|
@@ -11293,7 +11502,7 @@ module Aws::Connect
|
|
11293
11502
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11294
11503
|
# Q in Connect
|
11295
11504
|
#
|
11296
|
-
# UI name: [Average agent interruptions][
|
11505
|
+
# UI name: [Average agent interruptions][36]
|
11297
11506
|
#
|
11298
11507
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
11299
11508
|
#
|
@@ -11306,7 +11515,73 @@ module Aws::Connect
|
|
11306
11515
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11307
11516
|
# Q in Connect
|
11308
11517
|
#
|
11309
|
-
# UI name: [Average agent interruption time][
|
11518
|
+
# UI name: [Average agent interruption time][37]
|
11519
|
+
#
|
11520
|
+
# AVG\_MESSAGE\_LENGTH\_AGENT
|
11521
|
+
#
|
11522
|
+
# : Unit: Count
|
11523
|
+
#
|
11524
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11525
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11526
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11527
|
+
# Profile, Queue, Q in Connect
|
11528
|
+
#
|
11529
|
+
# UI name: [Average agent message length][38]
|
11530
|
+
#
|
11531
|
+
# AVG\_MESSAGE\_LENGTH\_CUSTOMER
|
11532
|
+
#
|
11533
|
+
# : Unit: Count
|
11534
|
+
#
|
11535
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11536
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11537
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11538
|
+
# Profile, Queue, Q in Connect
|
11539
|
+
#
|
11540
|
+
# UI name: [Average customer message length][39]
|
11541
|
+
#
|
11542
|
+
# AVG\_MESSAGES
|
11543
|
+
#
|
11544
|
+
# : Unit: Count
|
11545
|
+
#
|
11546
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11547
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11548
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11549
|
+
# Profile, Queue, Q in Connect
|
11550
|
+
#
|
11551
|
+
# UI name: [Average messages][40]
|
11552
|
+
#
|
11553
|
+
# AVG\_MESSAGES\_AGENT
|
11554
|
+
#
|
11555
|
+
# : Unit: Count
|
11556
|
+
#
|
11557
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11558
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11559
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11560
|
+
# Profile, Queue, Q in Connect
|
11561
|
+
#
|
11562
|
+
# UI name: [Average agent messages][41]
|
11563
|
+
#
|
11564
|
+
# AVG\_MESSAGES\_BOT
|
11565
|
+
#
|
11566
|
+
# : Unit: Count
|
11567
|
+
#
|
11568
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11569
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11570
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11571
|
+
# Profile, Queue, Q in Connect
|
11572
|
+
#
|
11573
|
+
# UI name: [Average bot messages][42]
|
11574
|
+
#
|
11575
|
+
# AVG\_MESSAGES\_CUSTOMER
|
11576
|
+
#
|
11577
|
+
# : Unit: Count
|
11578
|
+
#
|
11579
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11580
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11581
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11582
|
+
# Profile, Queue, Q in Connect
|
11583
|
+
#
|
11584
|
+
# UI name: [Average customer messages][43]
|
11310
11585
|
#
|
11311
11586
|
# AVG\_NON\_TALK\_TIME
|
11312
11587
|
#
|
@@ -11319,7 +11594,7 @@ module Aws::Connect
|
|
11319
11594
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11320
11595
|
# Q in Connect
|
11321
11596
|
#
|
11322
|
-
# UI name: [Average non-talk time][
|
11597
|
+
# UI name: [Average non-talk time][44]
|
11323
11598
|
#
|
11324
11599
|
# AVG\_QUEUE\_ANSWER\_TIME
|
11325
11600
|
#
|
@@ -11328,12 +11603,34 @@ module Aws::Connect
|
|
11328
11603
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11329
11604
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11330
11605
|
#
|
11331
|
-
# UI name: [Average queue answer time][
|
11606
|
+
# UI name: [Average queue answer time][45]
|
11332
11607
|
#
|
11333
11608
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11334
11609
|
#
|
11335
11610
|
# </note>
|
11336
11611
|
#
|
11612
|
+
# AVG\_RESPONSE\_TIME\_AGENT
|
11613
|
+
#
|
11614
|
+
# : Unit: Seconds
|
11615
|
+
#
|
11616
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11617
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11618
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11619
|
+
# Profile, Queue, Q in Connect
|
11620
|
+
#
|
11621
|
+
# UI name: [Average agent response time][46]
|
11622
|
+
#
|
11623
|
+
# AVG\_RESPONSE\_TIME\_CUSTOMER
|
11624
|
+
#
|
11625
|
+
# : Unit: Seconds
|
11626
|
+
#
|
11627
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11628
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11629
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11630
|
+
# Profile, Queue, Q in Connect
|
11631
|
+
#
|
11632
|
+
# UI name: [Average customer response time][47]
|
11633
|
+
#
|
11337
11634
|
# AVG\_RESOLUTION\_TIME
|
11338
11635
|
#
|
11339
11636
|
# : Unit: Seconds
|
@@ -11341,7 +11638,7 @@ module Aws::Connect
|
|
11341
11638
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11342
11639
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11343
11640
|
#
|
11344
|
-
# UI name: [Average resolution time][
|
11641
|
+
# UI name: [Average resolution time][48]
|
11345
11642
|
#
|
11346
11643
|
# AVG\_TALK\_TIME
|
11347
11644
|
#
|
@@ -11354,7 +11651,7 @@ module Aws::Connect
|
|
11354
11651
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11355
11652
|
# Q in Connect
|
11356
11653
|
#
|
11357
|
-
# UI name: [Average talk time][
|
11654
|
+
# UI name: [Average talk time][49]
|
11358
11655
|
#
|
11359
11656
|
# AVG\_TALK\_TIME\_AGENT
|
11360
11657
|
#
|
@@ -11367,7 +11664,7 @@ module Aws::Connect
|
|
11367
11664
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11368
11665
|
# Q in Connect
|
11369
11666
|
#
|
11370
|
-
# UI name: [Average agent talk time][
|
11667
|
+
# UI name: [Average agent talk time][50]
|
11371
11668
|
#
|
11372
11669
|
# AVG\_TALK\_TIME\_CUSTOMER
|
11373
11670
|
#
|
@@ -11380,7 +11677,7 @@ module Aws::Connect
|
|
11380
11677
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11381
11678
|
# Q in Connect
|
11382
11679
|
#
|
11383
|
-
# UI name: [Average customer talk time][
|
11680
|
+
# UI name: [Average customer talk time][51]
|
11384
11681
|
#
|
11385
11682
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
11386
11683
|
#
|
@@ -11391,7 +11688,7 @@ module Aws::Connect
|
|
11391
11688
|
#
|
11392
11689
|
# Valid groupings and filters: Campaign
|
11393
11690
|
#
|
11394
|
-
# UI name: [Average wait time after customer connection][
|
11691
|
+
# UI name: [Average wait time after customer connection][52]
|
11395
11692
|
#
|
11396
11693
|
# AVG\_WEIGHTED\_EVALUATION\_SCORE
|
11397
11694
|
#
|
@@ -11401,7 +11698,7 @@ module Aws::Connect
|
|
11401
11698
|
# Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
|
11402
11699
|
# Evaluation Source, Form Version, Queue, Routing Profile
|
11403
11700
|
#
|
11404
|
-
# UI name: [Average weighted evaluation score][
|
11701
|
+
# UI name: [Average weighted evaluation score][53]
|
11405
11702
|
#
|
11406
11703
|
# BOT\_CONVERSATIONS\_COMPLETED
|
11407
11704
|
#
|
@@ -11414,7 +11711,7 @@ module Aws::Connect
|
|
11414
11711
|
# Initiation method, Invoking resource type, Parent flows resource
|
11415
11712
|
# ID
|
11416
11713
|
#
|
11417
|
-
# UI name: [Bot conversations completed][
|
11714
|
+
# UI name: [Bot conversations completed][54]
|
11418
11715
|
#
|
11419
11716
|
# BOT\_INTENTS\_COMPLETED
|
11420
11717
|
#
|
@@ -11427,7 +11724,7 @@ module Aws::Connect
|
|
11427
11724
|
# published timestamp, Initiation method, Invoking resource type,
|
11428
11725
|
# Parent flows resource ID
|
11429
11726
|
#
|
11430
|
-
# UI name: [Bot intents completed][
|
11727
|
+
# UI name: [Bot intents completed][55]
|
11431
11728
|
#
|
11432
11729
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
11433
11730
|
#
|
@@ -11442,7 +11739,7 @@ module Aws::Connect
|
|
11442
11739
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
11443
11740
|
# `GT` (for *Greater than*).
|
11444
11741
|
#
|
11445
|
-
# UI name: [Campaign contacts abandoned after X][
|
11742
|
+
# UI name: [Campaign contacts abandoned after X][56]
|
11446
11743
|
#
|
11447
11744
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
11448
11745
|
#
|
@@ -11457,7 +11754,7 @@ module Aws::Connect
|
|
11457
11754
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
11458
11755
|
# `GT` (for *Greater than*).
|
11459
11756
|
#
|
11460
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
11757
|
+
# UI name: [Campaign contacts abandoned after X rate][57]
|
11461
11758
|
#
|
11462
11759
|
# CAMPAIGN\_INTERACTIONS
|
11463
11760
|
#
|
@@ -11470,7 +11767,7 @@ module Aws::Connect
|
|
11470
11767
|
#
|
11471
11768
|
# Valid groupings and filters: Campaign
|
11472
11769
|
#
|
11473
|
-
# UI name: [Campaign interactions][
|
11770
|
+
# UI name: [Campaign interactions][58]
|
11474
11771
|
#
|
11475
11772
|
# CAMPAIGN\_PROGRESS\_RATE
|
11476
11773
|
#
|
@@ -11483,7 +11780,7 @@ module Aws::Connect
|
|
11483
11780
|
# Valid groupings and filters: Campaign, Campaign Execution
|
11484
11781
|
# Timestamp
|
11485
11782
|
#
|
11486
|
-
# UI name: [Campaign progress rate][
|
11783
|
+
# UI name: [Campaign progress rate][59]
|
11487
11784
|
#
|
11488
11785
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
11489
11786
|
#
|
@@ -11494,7 +11791,7 @@ module Aws::Connect
|
|
11494
11791
|
# Valid groupings and filters: Campaign, Channel,
|
11495
11792
|
# contact/segmentAttributes/connect:Subtype
|
11496
11793
|
#
|
11497
|
-
# UI name: [Campaign send attempts][
|
11794
|
+
# UI name: [Campaign send attempts][60]
|
11498
11795
|
#
|
11499
11796
|
# CAMPAIGN\_SEND\_EXCLUSIONS
|
11500
11797
|
#
|
@@ -11507,7 +11804,7 @@ module Aws::Connect
|
|
11507
11804
|
# Valid groupings and filters: Campaign, Campaign Excluded Event
|
11508
11805
|
# Type, Campaign Execution Timestamp
|
11509
11806
|
#
|
11510
|
-
# UI name: [Campaign send exclusions][
|
11807
|
+
# UI name: [Campaign send exclusions][61]
|
11511
11808
|
#
|
11512
11809
|
# CASES\_CREATED
|
11513
11810
|
#
|
@@ -11517,7 +11814,7 @@ module Aws::Connect
|
|
11517
11814
|
#
|
11518
11815
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11519
11816
|
#
|
11520
|
-
# UI name: [Cases created][
|
11817
|
+
# UI name: [Cases created][62]
|
11521
11818
|
#
|
11522
11819
|
# CONTACTS\_CREATED
|
11523
11820
|
#
|
@@ -11528,7 +11825,7 @@ module Aws::Connect
|
|
11528
11825
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11529
11826
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11530
11827
|
#
|
11531
|
-
# UI name: [Contacts created][
|
11828
|
+
# UI name: [Contacts created][63]
|
11532
11829
|
#
|
11533
11830
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11534
11831
|
#
|
@@ -11545,7 +11842,7 @@ module Aws::Connect
|
|
11545
11842
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression,
|
11546
11843
|
# Q in Connect
|
11547
11844
|
#
|
11548
|
-
# UI name: [API contacts handled][
|
11845
|
+
# UI name: [API contacts handled][64]
|
11549
11846
|
#
|
11550
11847
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11551
11848
|
#
|
@@ -11560,7 +11857,7 @@ module Aws::Connect
|
|
11560
11857
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11561
11858
|
# Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11562
11859
|
#
|
11563
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
11860
|
+
# UI name: [Contacts handled (connected to agent timestamp)][65]
|
11564
11861
|
#
|
11565
11862
|
# CONTACTS\_HOLD\_ABANDONS
|
11566
11863
|
#
|
@@ -11570,7 +11867,7 @@ module Aws::Connect
|
|
11570
11867
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11571
11868
|
# Q in Connect
|
11572
11869
|
#
|
11573
|
-
# UI name: [Contacts hold disconnect][
|
11870
|
+
# UI name: [Contacts hold disconnect][66]
|
11574
11871
|
#
|
11575
11872
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
11576
11873
|
#
|
@@ -11579,7 +11876,7 @@ module Aws::Connect
|
|
11579
11876
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11580
11877
|
# Agent, Agent Hierarchy, Q in Connect
|
11581
11878
|
#
|
11582
|
-
# UI name: [Contacts hold agent disconnect][
|
11879
|
+
# UI name: [Contacts hold agent disconnect][67]
|
11583
11880
|
#
|
11584
11881
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
11585
11882
|
#
|
@@ -11588,7 +11885,7 @@ module Aws::Connect
|
|
11588
11885
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11589
11886
|
# Agent, Agent Hierarchy, Q in Connect
|
11590
11887
|
#
|
11591
|
-
# UI name: [Contacts hold customer disconnect][
|
11888
|
+
# UI name: [Contacts hold customer disconnect][68]
|
11592
11889
|
#
|
11593
11890
|
# CONTACTS\_PUT\_ON\_HOLD
|
11594
11891
|
#
|
@@ -11597,7 +11894,7 @@ module Aws::Connect
|
|
11597
11894
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11598
11895
|
# Agent, Agent Hierarchy, Q in Connect
|
11599
11896
|
#
|
11600
|
-
# UI name: [Contacts put on hold][
|
11897
|
+
# UI name: [Contacts put on hold][69]
|
11601
11898
|
#
|
11602
11899
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
11603
11900
|
#
|
@@ -11606,7 +11903,7 @@ module Aws::Connect
|
|
11606
11903
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11607
11904
|
# Agent, Agent Hierarchy, Q in Connect
|
11608
11905
|
#
|
11609
|
-
# UI name: [Contacts transferred out external][
|
11906
|
+
# UI name: [Contacts transferred out external][70]
|
11610
11907
|
#
|
11611
11908
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
11612
11909
|
#
|
@@ -11615,7 +11912,7 @@ module Aws::Connect
|
|
11615
11912
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11616
11913
|
# Agent, Agent Hierarchy, Q in Connect
|
11617
11914
|
#
|
11618
|
-
# UI name: [Contacts transferred out internal][
|
11915
|
+
# UI name: [Contacts transferred out internal][71]
|
11619
11916
|
#
|
11620
11917
|
# CONTACTS\_QUEUED
|
11621
11918
|
#
|
@@ -11625,7 +11922,7 @@ module Aws::Connect
|
|
11625
11922
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11626
11923
|
# Q in Connect
|
11627
11924
|
#
|
11628
|
-
# UI name: [Contacts queued][
|
11925
|
+
# UI name: [Contacts queued][72]
|
11629
11926
|
#
|
11630
11927
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
11631
11928
|
#
|
@@ -11634,7 +11931,7 @@ module Aws::Connect
|
|
11634
11931
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11635
11932
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
11636
11933
|
#
|
11637
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
11934
|
+
# UI name: [Contacts queued (enqueue timestamp)][73]
|
11638
11935
|
#
|
11639
11936
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
11640
11937
|
#
|
@@ -11647,7 +11944,7 @@ module Aws::Connect
|
|
11647
11944
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11648
11945
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11649
11946
|
#
|
11650
|
-
# UI name: [Contacts removed from queue in X seconds][
|
11947
|
+
# UI name: [Contacts removed from queue in X seconds][74]
|
11651
11948
|
#
|
11652
11949
|
# CONTACTS\_RESOLVED\_IN\_X
|
11653
11950
|
#
|
@@ -11660,7 +11957,7 @@ module Aws::Connect
|
|
11660
11957
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11661
11958
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11662
11959
|
#
|
11663
|
-
# UI name: [Contacts resolved in X][
|
11960
|
+
# UI name: [Contacts resolved in X][75]
|
11664
11961
|
#
|
11665
11962
|
# CONTACTS\_TRANSFERRED\_OUT
|
11666
11963
|
#
|
@@ -11670,7 +11967,7 @@ module Aws::Connect
|
|
11670
11967
|
# Agent, Agent Hierarchy, Feature,
|
11671
11968
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11672
11969
|
#
|
11673
|
-
# UI name: [Contacts transferred out][
|
11970
|
+
# UI name: [Contacts transferred out][76]
|
11674
11971
|
#
|
11675
11972
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11676
11973
|
#
|
@@ -11684,7 +11981,7 @@ module Aws::Connect
|
|
11684
11981
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11685
11982
|
# Q in Connect
|
11686
11983
|
#
|
11687
|
-
# UI name: [Contacts transferred out by agent][
|
11984
|
+
# UI name: [Contacts transferred out by agent][77]
|
11688
11985
|
#
|
11689
11986
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
11690
11987
|
#
|
@@ -11694,7 +11991,7 @@ module Aws::Connect
|
|
11694
11991
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11695
11992
|
# Q in Connect
|
11696
11993
|
#
|
11697
|
-
# UI name: [Contacts transferred out queue][
|
11994
|
+
# UI name: [Contacts transferred out queue][78]
|
11698
11995
|
#
|
11699
11996
|
# CURRENT\_CASES
|
11700
11997
|
#
|
@@ -11704,7 +12001,18 @@ module Aws::Connect
|
|
11704
12001
|
#
|
11705
12002
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11706
12003
|
#
|
11707
|
-
# UI name: [Current cases][
|
12004
|
+
# UI name: [Current cases][79]
|
12005
|
+
#
|
12006
|
+
# CONVERSATIONS\_ABANDONED
|
12007
|
+
#
|
12008
|
+
# : Unit: Count
|
12009
|
+
#
|
12010
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
12011
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
12012
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
12013
|
+
# Profile, Queue, Q in Connect
|
12014
|
+
#
|
12015
|
+
# UI name: [Conversations abandoned][80]
|
11708
12016
|
#
|
11709
12017
|
# DELIVERY\_ATTEMPTS
|
11710
12018
|
#
|
@@ -11720,7 +12028,7 @@ module Aws::Connect
|
|
11720
12028
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11721
12029
|
# Queue, Routing Profile
|
11722
12030
|
#
|
11723
|
-
# UI name: [Delivery attempts][
|
12031
|
+
# UI name: [Delivery attempts][81]
|
11724
12032
|
#
|
11725
12033
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
11726
12034
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -11746,7 +12054,7 @@ module Aws::Connect
|
|
11746
12054
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11747
12055
|
# Queue, Routing Profile
|
11748
12056
|
#
|
11749
|
-
# UI name: [Delivery attempt disposition rate][
|
12057
|
+
# UI name: [Delivery attempt disposition rate][82]
|
11750
12058
|
#
|
11751
12059
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
|
11752
12060
|
# available for SMS and Email campaign delivery modes. Agent, Queue,
|
@@ -11764,7 +12072,7 @@ module Aws::Connect
|
|
11764
12072
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11765
12073
|
# Routing Profile
|
11766
12074
|
#
|
11767
|
-
# UI name: [Evaluations performed][
|
12075
|
+
# UI name: [Evaluations performed][83]
|
11768
12076
|
#
|
11769
12077
|
# FLOWS\_OUTCOME
|
11770
12078
|
#
|
@@ -11776,7 +12084,7 @@ module Aws::Connect
|
|
11776
12084
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11777
12085
|
# published timestamp
|
11778
12086
|
#
|
11779
|
-
# UI name: [Flows outcome][
|
12087
|
+
# UI name: [Flows outcome][84]
|
11780
12088
|
#
|
11781
12089
|
# FLOWS\_STARTED
|
11782
12090
|
#
|
@@ -11787,7 +12095,7 @@ module Aws::Connect
|
|
11787
12095
|
# resource ID, Flows resource ID, Initiation method, Resource
|
11788
12096
|
# published timestamp
|
11789
12097
|
#
|
11790
|
-
# UI name: [Flows started][
|
12098
|
+
# UI name: [Flows started][85]
|
11791
12099
|
#
|
11792
12100
|
# HUMAN\_ANSWERED\_CALLS
|
11793
12101
|
#
|
@@ -11799,7 +12107,7 @@ module Aws::Connect
|
|
11799
12107
|
#
|
11800
12108
|
# Valid groupings and filters: Agent, Campaign
|
11801
12109
|
#
|
11802
|
-
# UI name: [Human answered][
|
12110
|
+
# UI name: [Human answered][86]
|
11803
12111
|
#
|
11804
12112
|
# MAX\_FLOW\_TIME
|
11805
12113
|
#
|
@@ -11811,7 +12119,7 @@ module Aws::Connect
|
|
11811
12119
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11812
12120
|
# published timestamp
|
11813
12121
|
#
|
11814
|
-
# UI name: [Maximum flow time][
|
12122
|
+
# UI name: [Maximum flow time][87]
|
11815
12123
|
#
|
11816
12124
|
# MAX\_QUEUED\_TIME
|
11817
12125
|
#
|
@@ -11821,7 +12129,7 @@ module Aws::Connect
|
|
11821
12129
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11822
12130
|
# Q in Connect
|
11823
12131
|
#
|
11824
|
-
# UI name: [Maximum queued time][
|
12132
|
+
# UI name: [Maximum queued time][88]
|
11825
12133
|
#
|
11826
12134
|
# MIN\_FLOW\_TIME
|
11827
12135
|
#
|
@@ -11833,7 +12141,7 @@ module Aws::Connect
|
|
11833
12141
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11834
12142
|
# published timestamp
|
11835
12143
|
#
|
11836
|
-
# UI name: [Minimum flow time][
|
12144
|
+
# UI name: [Minimum flow time][89]
|
11837
12145
|
#
|
11838
12146
|
# PERCENT\_AUTOMATIC\_FAILS
|
11839
12147
|
#
|
@@ -11843,7 +12151,7 @@ module Aws::Connect
|
|
11843
12151
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11844
12152
|
# Routing Profile
|
11845
12153
|
#
|
11846
|
-
# UI name: [Automatic fails percent][
|
12154
|
+
# UI name: [Automatic fails percent][90]
|
11847
12155
|
#
|
11848
12156
|
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
11849
12157
|
#
|
@@ -11856,7 +12164,7 @@ module Aws::Connect
|
|
11856
12164
|
# Initiation method, Invoking resource type, Parent flows resource
|
11857
12165
|
# ID
|
11858
12166
|
#
|
11859
|
-
# UI name: [Percent bot conversations outcome][
|
12167
|
+
# UI name: [Percent bot conversations outcome][91]
|
11860
12168
|
#
|
11861
12169
|
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
11862
12170
|
#
|
@@ -11869,7 +12177,7 @@ module Aws::Connect
|
|
11869
12177
|
# published timestamp, Initiation method, Invoking resource type,
|
11870
12178
|
# Parent flows resource ID
|
11871
12179
|
#
|
11872
|
-
# UI name: [Percent bot intents outcome][
|
12180
|
+
# UI name: [Percent bot intents outcome][92]
|
11873
12181
|
#
|
11874
12182
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
11875
12183
|
#
|
@@ -11879,7 +12187,7 @@ module Aws::Connect
|
|
11879
12187
|
#
|
11880
12188
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11881
12189
|
#
|
11882
|
-
# UI name: [Cases resolved on first contact][
|
12190
|
+
# UI name: [Cases resolved on first contact][93]
|
11883
12191
|
#
|
11884
12192
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
11885
12193
|
#
|
@@ -11911,7 +12219,7 @@ module Aws::Connect
|
|
11911
12219
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11912
12220
|
# published timestamp
|
11913
12221
|
#
|
11914
|
-
# UI name: [Flows outcome percentage][
|
12222
|
+
# UI name: [Flows outcome percentage][94].
|
11915
12223
|
#
|
11916
12224
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
11917
12225
|
#
|
@@ -11928,7 +12236,7 @@ module Aws::Connect
|
|
11928
12236
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11929
12237
|
# Q in Connect
|
11930
12238
|
#
|
11931
|
-
# UI name: [Non-talk time percent][
|
12239
|
+
# UI name: [Non-talk time percent][95]
|
11932
12240
|
#
|
11933
12241
|
# PERCENT\_TALK\_TIME
|
11934
12242
|
#
|
@@ -11941,7 +12249,7 @@ module Aws::Connect
|
|
11941
12249
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11942
12250
|
# Q in Connect
|
11943
12251
|
#
|
11944
|
-
# UI name: [Talk time percent][
|
12252
|
+
# UI name: [Talk time percent][96]
|
11945
12253
|
#
|
11946
12254
|
# PERCENT\_TALK\_TIME\_AGENT
|
11947
12255
|
#
|
@@ -11954,7 +12262,7 @@ module Aws::Connect
|
|
11954
12262
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11955
12263
|
# Q in Connect
|
11956
12264
|
#
|
11957
|
-
# UI name: [Agent talk time percent][
|
12265
|
+
# UI name: [Agent talk time percent][97]
|
11958
12266
|
#
|
11959
12267
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
11960
12268
|
#
|
@@ -11967,7 +12275,7 @@ module Aws::Connect
|
|
11967
12275
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11968
12276
|
# Q in Connect
|
11969
12277
|
#
|
11970
|
-
# UI name: [Customer talk time percent][
|
12278
|
+
# UI name: [Customer talk time percent][98]
|
11971
12279
|
#
|
11972
12280
|
# RECIPIENTS\_ATTEMPTED
|
11973
12281
|
#
|
@@ -11980,7 +12288,7 @@ module Aws::Connect
|
|
11980
12288
|
# Valid groupings and filters: Campaign, Campaign Execution
|
11981
12289
|
# Timestamp
|
11982
12290
|
#
|
11983
|
-
# UI name: [Recipients attempted][
|
12291
|
+
# UI name: [Recipients attempted][99]
|
11984
12292
|
#
|
11985
12293
|
# RECIPIENTS\_INTERACTED
|
11986
12294
|
#
|
@@ -11996,7 +12304,7 @@ module Aws::Connect
|
|
11996
12304
|
# contact/segmentAttributes/connect:Subtype, Campaign Execution
|
11997
12305
|
# Timestamp
|
11998
12306
|
#
|
11999
|
-
# UI name: [Recipients interacted][
|
12307
|
+
# UI name: [Recipients interacted][100]
|
12000
12308
|
#
|
12001
12309
|
# RECIPIENTS\_TARGETED
|
12002
12310
|
#
|
@@ -12009,7 +12317,7 @@ module Aws::Connect
|
|
12009
12317
|
# Valid groupings and filters: Campaign, Campaign Execution
|
12010
12318
|
# Timestamp
|
12011
12319
|
#
|
12012
|
-
# UI name: [Recipients targeted][
|
12320
|
+
# UI name: [Recipients targeted][101]
|
12013
12321
|
#
|
12014
12322
|
# REOPENED\_CASE\_ACTIONS
|
12015
12323
|
#
|
@@ -12019,7 +12327,7 @@ module Aws::Connect
|
|
12019
12327
|
#
|
12020
12328
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12021
12329
|
#
|
12022
|
-
# UI name: [Cases reopened][
|
12330
|
+
# UI name: [Cases reopened][102]
|
12023
12331
|
#
|
12024
12332
|
# RESOLVED\_CASE\_ACTIONS
|
12025
12333
|
#
|
@@ -12029,7 +12337,7 @@ module Aws::Connect
|
|
12029
12337
|
#
|
12030
12338
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12031
12339
|
#
|
12032
|
-
# UI name: [Cases resolved][
|
12340
|
+
# UI name: [Cases resolved][103]
|
12033
12341
|
#
|
12034
12342
|
# SERVICE\_LEVEL
|
12035
12343
|
#
|
@@ -12044,7 +12352,7 @@ module Aws::Connect
|
|
12044
12352
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12045
12353
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12046
12354
|
#
|
12047
|
-
# UI name: [Service level X][
|
12355
|
+
# UI name: [Service level X][104]
|
12048
12356
|
#
|
12049
12357
|
# STEP\_CONTACTS\_QUEUED
|
12050
12358
|
#
|
@@ -12075,7 +12383,7 @@ module Aws::Connect
|
|
12075
12383
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12076
12384
|
# Agent, Agent Hierarchy
|
12077
12385
|
#
|
12078
|
-
# UI name: [Agent API connecting time][
|
12386
|
+
# UI name: [Agent API connecting time][105]
|
12079
12387
|
#
|
12080
12388
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
|
12081
12389
|
# this metric.
|
@@ -12097,7 +12405,7 @@ module Aws::Connect
|
|
12097
12405
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12098
12406
|
# RoutingStepExpression, Q in Connect
|
12099
12407
|
#
|
12100
|
-
# UI name: [Contact abandoned][
|
12408
|
+
# UI name: [Contact abandoned][106]
|
12101
12409
|
#
|
12102
12410
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
12103
12411
|
#
|
@@ -12110,7 +12418,7 @@ module Aws::Connect
|
|
12110
12418
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12111
12419
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12112
12420
|
#
|
12113
|
-
# UI name: [Contacts abandoned in X seconds][
|
12421
|
+
# UI name: [Contacts abandoned in X seconds][107]
|
12114
12422
|
#
|
12115
12423
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
12116
12424
|
#
|
@@ -12123,7 +12431,7 @@ module Aws::Connect
|
|
12123
12431
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12124
12432
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12125
12433
|
#
|
12126
|
-
# UI name: [Contacts answered in X seconds][
|
12434
|
+
# UI name: [Contacts answered in X seconds][108]
|
12127
12435
|
#
|
12128
12436
|
# SUM\_CONTACT\_FLOW\_TIME
|
12129
12437
|
#
|
@@ -12132,7 +12440,7 @@ module Aws::Connect
|
|
12132
12440
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12133
12441
|
# Agent, Agent Hierarchy, Q in Connect
|
12134
12442
|
#
|
12135
|
-
# UI name: [Contact flow time][
|
12443
|
+
# UI name: [Contact flow time][109]
|
12136
12444
|
#
|
12137
12445
|
# SUM\_CONTACT\_TIME\_AGENT
|
12138
12446
|
#
|
@@ -12141,7 +12449,7 @@ module Aws::Connect
|
|
12141
12449
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12142
12450
|
# Hierarchy
|
12143
12451
|
#
|
12144
|
-
# UI name: [Agent on contact time][
|
12452
|
+
# UI name: [Agent on contact time][110]
|
12145
12453
|
#
|
12146
12454
|
# SUM\_CONTACTS\_DISCONNECTED
|
12147
12455
|
#
|
@@ -12153,7 +12461,7 @@ module Aws::Connect
|
|
12153
12461
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12154
12462
|
# Q in Connect
|
12155
12463
|
#
|
12156
|
-
# UI name: [Contact disconnected][
|
12464
|
+
# UI name: [Contact disconnected][111]
|
12157
12465
|
#
|
12158
12466
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
12159
12467
|
#
|
@@ -12162,7 +12470,7 @@ module Aws::Connect
|
|
12162
12470
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12163
12471
|
# Hierarchy
|
12164
12472
|
#
|
12165
|
-
# UI name: [Error status time][
|
12473
|
+
# UI name: [Error status time][112]
|
12166
12474
|
#
|
12167
12475
|
# SUM\_HANDLE\_TIME
|
12168
12476
|
#
|
@@ -12171,7 +12479,7 @@ module Aws::Connect
|
|
12171
12479
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12172
12480
|
# Agent, Agent Hierarchy, Q in Connect
|
12173
12481
|
#
|
12174
|
-
# UI name: [Contact handle time][
|
12482
|
+
# UI name: [Contact handle time][113]
|
12175
12483
|
#
|
12176
12484
|
# SUM\_HOLD\_TIME
|
12177
12485
|
#
|
@@ -12180,7 +12488,7 @@ module Aws::Connect
|
|
12180
12488
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12181
12489
|
# Agent, Agent Hierarchy, Q in Connect
|
12182
12490
|
#
|
12183
|
-
# UI name: [Customer hold time][
|
12491
|
+
# UI name: [Customer hold time][114]
|
12184
12492
|
#
|
12185
12493
|
# SUM\_IDLE\_TIME\_AGENT
|
12186
12494
|
#
|
@@ -12189,7 +12497,7 @@ module Aws::Connect
|
|
12189
12497
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12190
12498
|
# Hierarchy
|
12191
12499
|
#
|
12192
|
-
# UI name: [Agent idle time][
|
12500
|
+
# UI name: [Agent idle time][115]
|
12193
12501
|
#
|
12194
12502
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
12195
12503
|
#
|
@@ -12198,7 +12506,7 @@ module Aws::Connect
|
|
12198
12506
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12199
12507
|
# Agent, Agent Hierarchy, Q in Connect
|
12200
12508
|
#
|
12201
|
-
# UI name: [Agent interaction and hold time][
|
12509
|
+
# UI name: [Agent interaction and hold time][116]
|
12202
12510
|
#
|
12203
12511
|
# SUM\_INTERACTION\_TIME
|
12204
12512
|
#
|
@@ -12207,7 +12515,7 @@ module Aws::Connect
|
|
12207
12515
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12208
12516
|
# Agent, Agent Hierarchy
|
12209
12517
|
#
|
12210
|
-
# UI name: [Agent interaction time][
|
12518
|
+
# UI name: [Agent interaction time][117]
|
12211
12519
|
#
|
12212
12520
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
12213
12521
|
#
|
@@ -12216,7 +12524,7 @@ module Aws::Connect
|
|
12216
12524
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12217
12525
|
# Hierarchy
|
12218
12526
|
#
|
12219
|
-
# UI name: [Agent non-productive time][
|
12527
|
+
# UI name: [Agent non-productive time][118]
|
12220
12528
|
#
|
12221
12529
|
# SUM\_ONLINE\_TIME\_AGENT
|
12222
12530
|
#
|
@@ -12225,7 +12533,7 @@ module Aws::Connect
|
|
12225
12533
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12226
12534
|
# Hierarchy
|
12227
12535
|
#
|
12228
|
-
# UI name: [Online time][
|
12536
|
+
# UI name: [Online time][119]
|
12229
12537
|
#
|
12230
12538
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
12231
12539
|
#
|
@@ -12234,7 +12542,7 @@ module Aws::Connect
|
|
12234
12542
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12235
12543
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
12236
12544
|
#
|
12237
|
-
# UI name: [Callback attempts][
|
12545
|
+
# UI name: [Callback attempts][120]
|
12238
12546
|
#
|
12239
12547
|
#
|
12240
12548
|
#
|
@@ -12259,93 +12567,105 @@ module Aws::Connect
|
|
12259
12567
|
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-contacts-per-case
|
12260
12568
|
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-case-resolution-time
|
12261
12569
|
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-contact-duration
|
12262
|
-
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12263
|
-
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12264
|
-
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12265
|
-
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12266
|
-
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12267
|
-
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12268
|
-
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12269
|
-
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12270
|
-
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12271
|
-
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12272
|
-
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12273
|
-
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12274
|
-
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-
|
12275
|
-
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12276
|
-
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12277
|
-
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12278
|
-
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12279
|
-
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12280
|
-
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12281
|
-
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12282
|
-
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-
|
12283
|
-
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12284
|
-
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12285
|
-
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12286
|
-
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12287
|
-
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12288
|
-
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12289
|
-
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12290
|
-
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12291
|
-
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12292
|
-
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12293
|
-
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12294
|
-
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12295
|
-
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12296
|
-
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12297
|
-
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12298
|
-
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12299
|
-
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12300
|
-
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12301
|
-
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12302
|
-
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12303
|
-
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12304
|
-
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12305
|
-
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12306
|
-
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12307
|
-
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-
|
12308
|
-
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12309
|
-
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12310
|
-
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12311
|
-
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12312
|
-
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12313
|
-
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12314
|
-
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12315
|
-
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12316
|
-
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12317
|
-
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12318
|
-
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12319
|
-
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12320
|
-
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
12321
|
-
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12322
|
-
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12323
|
-
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12324
|
-
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12325
|
-
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12326
|
-
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12327
|
-
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12328
|
-
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12329
|
-
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12330
|
-
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12331
|
-
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12332
|
-
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics
|
12333
|
-
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12334
|
-
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12335
|
-
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12336
|
-
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12337
|
-
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12338
|
-
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12339
|
-
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12340
|
-
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12341
|
-
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12342
|
-
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12343
|
-
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12344
|
-
# [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12345
|
-
# [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-
|
12346
|
-
# [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12347
|
-
# [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12348
|
-
# [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
12570
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-average-contact-first-response-wait-time
|
12571
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-conversation-close-time
|
12572
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-conversation-duration
|
12573
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-dials-per-minute
|
12574
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-evaluation-score
|
12575
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-first-response-time
|
12576
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-flow-time
|
12577
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-greeting-time
|
12578
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-handle-time
|
12579
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time
|
12580
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time-all-contacts
|
12581
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-holds
|
12582
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-and-customer-hold-time
|
12583
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-time
|
12584
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interruptions
|
12585
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interruption-time
|
12586
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-message-length
|
12587
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-message-length
|
12588
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-messages
|
12589
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-messages
|
12590
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-bot-messages
|
12591
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-messages
|
12592
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-non-talk-time
|
12593
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time
|
12594
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-response-time-agent
|
12595
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-time-agent
|
12596
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-resolution-time
|
12597
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-talk-time
|
12598
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-talk-time
|
12599
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-talk-time
|
12600
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection
|
12601
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-weighted-evaluation-score
|
12602
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed
|
12603
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed
|
12604
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x
|
12605
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x-rate
|
12606
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-interactions
|
12607
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-progress-rate
|
12608
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-attempts
|
12609
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-exclusions
|
12610
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-created
|
12611
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-created
|
12612
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#api-contacts-handled
|
12613
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-by-connected-to-agent-timestamp
|
12614
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
12615
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-agent-disconnect
|
12616
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-customer-disconnect
|
12617
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-put-on-hold
|
12618
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-external
|
12619
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-internal
|
12620
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
12621
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued-by-enqueue
|
12622
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-removed-from-queue
|
12623
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-resolved
|
12624
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
12625
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-by-agent
|
12626
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
12627
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#current-cases
|
12628
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#conversations-abandoned
|
12629
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempts
|
12630
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempt-disposition-rate
|
12631
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#evaluations-performed
|
12632
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
|
12633
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-started
|
12634
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#human-answered
|
12635
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-flow-time
|
12636
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-queued-time
|
12637
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
12638
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#automatic-fails-percent
|
12639
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome
|
12640
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome
|
12641
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved-on-first-contact
|
12642
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome-percentage
|
12643
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-talk-time-percent
|
12644
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#talk-time-percent
|
12645
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-talk-time-percent
|
12646
|
+
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-talk-time-percent
|
12647
|
+
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-attempted
|
12648
|
+
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-interacted
|
12649
|
+
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-targeted
|
12650
|
+
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-reopened
|
12651
|
+
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved
|
12652
|
+
# [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
|
12653
|
+
# [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time
|
12654
|
+
# [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
12655
|
+
# [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned-in-x-seconds
|
12656
|
+
# [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-answered-in-x-seconds
|
12657
|
+
# [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-flow-time
|
12658
|
+
# [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-on-contact-time
|
12659
|
+
# [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-disconnected
|
12660
|
+
# [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-status-time
|
12661
|
+
# [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-handle-time
|
12662
|
+
# [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-hold-time
|
12663
|
+
# [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-idle-time
|
12664
|
+
# [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-and-hold-time
|
12665
|
+
# [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-time
|
12666
|
+
# [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-productive-time
|
12667
|
+
# [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-time
|
12668
|
+
# [120]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-attempts
|
12349
12669
|
# @return [Array<Types::MetricV2>]
|
12350
12670
|
#
|
12351
12671
|
# @!attribute [rw] next_token
|
@@ -12498,8 +12818,8 @@ module Aws::Connect
|
|
12498
12818
|
# @return [String]
|
12499
12819
|
#
|
12500
12820
|
# @!attribute [rw] self_assign_flow_id
|
12501
|
-
# ContactFlowId for the flow that will be run if this template is
|
12502
|
-
# to create a self-assigned task
|
12821
|
+
# The ContactFlowId for the flow that will be run if this template is
|
12822
|
+
# used to create a self-assigned task.
|
12503
12823
|
# @return [String]
|
12504
12824
|
#
|
12505
12825
|
# @!attribute [rw] constraints
|
@@ -12956,16 +13276,245 @@ module Aws::Connect
|
|
12956
13276
|
include Aws::Structure
|
12957
13277
|
end
|
12958
13278
|
|
12959
|
-
# Contains information about a historical metric.
|
12960
|
-
# each metric, see [Metrics definitions][1] in the *Amazon Connect
|
12961
|
-
# Administrator Guide*.
|
13279
|
+
# Contains information about a historical metric.
|
12962
13280
|
#
|
13281
|
+
# @!attribute [rw] name
|
13282
|
+
# The name of the metric. Following is a list of each supported metric
|
13283
|
+
# mapped to the UI name, linked to a detailed description in the
|
13284
|
+
# *Amazon Connect Administrator Guide*.
|
12963
13285
|
#
|
13286
|
+
# ABANDON\_TIME
|
12964
13287
|
#
|
12965
|
-
#
|
13288
|
+
# : Unit: SECONDS
|
12966
13289
|
#
|
12967
|
-
#
|
12968
|
-
#
|
13290
|
+
# Statistic: AVG
|
13291
|
+
#
|
13292
|
+
# UI name: [Average queue abandon time][1]
|
13293
|
+
#
|
13294
|
+
# AFTER\_CONTACT\_WORK\_TIME
|
13295
|
+
#
|
13296
|
+
# : Unit: SECONDS
|
13297
|
+
#
|
13298
|
+
# Statistic: AVG
|
13299
|
+
#
|
13300
|
+
# UI name: [After contact work time][2]
|
13301
|
+
#
|
13302
|
+
# API\_CONTACTS\_HANDLED
|
13303
|
+
#
|
13304
|
+
# : Unit: COUNT
|
13305
|
+
#
|
13306
|
+
# Statistic: SUM
|
13307
|
+
#
|
13308
|
+
# UI name: [API contacts handled][3]
|
13309
|
+
#
|
13310
|
+
# AVG\_HOLD\_TIME
|
13311
|
+
#
|
13312
|
+
# : Unit: SECONDS
|
13313
|
+
#
|
13314
|
+
# Statistic: AVG
|
13315
|
+
#
|
13316
|
+
# UI name: [Average customer hold time][4]
|
13317
|
+
#
|
13318
|
+
# CALLBACK\_CONTACTS\_HANDLED
|
13319
|
+
#
|
13320
|
+
# : Unit: COUNT
|
13321
|
+
#
|
13322
|
+
# Statistic: SUM
|
13323
|
+
#
|
13324
|
+
# UI name: [Callback contacts handled][5]
|
13325
|
+
#
|
13326
|
+
# CONTACTS\_ABANDONED
|
13327
|
+
#
|
13328
|
+
# : Unit: COUNT
|
13329
|
+
#
|
13330
|
+
# Statistic: SUM
|
13331
|
+
#
|
13332
|
+
# UI name: [Contacts abandoned][6]
|
13333
|
+
#
|
13334
|
+
# CONTACTS\_AGENT\_HUNG\_UP\_FIRST
|
13335
|
+
#
|
13336
|
+
# : Unit: COUNT
|
13337
|
+
#
|
13338
|
+
# Statistic: SUM
|
13339
|
+
#
|
13340
|
+
# UI name: [Contacts agent hung up first][7]
|
13341
|
+
#
|
13342
|
+
# CONTACTS\_CONSULTED
|
13343
|
+
#
|
13344
|
+
# : Unit: COUNT
|
13345
|
+
#
|
13346
|
+
# Statistic: SUM
|
13347
|
+
#
|
13348
|
+
# UI name: [Contacts consulted][8]
|
13349
|
+
#
|
13350
|
+
# CONTACTS\_HANDLED
|
13351
|
+
#
|
13352
|
+
# : Unit: COUNT
|
13353
|
+
#
|
13354
|
+
# Statistic: SUM
|
13355
|
+
#
|
13356
|
+
# UI name: [Contacts handled][9]
|
13357
|
+
#
|
13358
|
+
# CONTACTS\_HANDLED\_INCOMING
|
13359
|
+
#
|
13360
|
+
# : Unit: COUNT
|
13361
|
+
#
|
13362
|
+
# Statistic: SUM
|
13363
|
+
#
|
13364
|
+
# UI name: [Contacts handled incoming][10]
|
13365
|
+
#
|
13366
|
+
# CONTACTS\_HANDLED\_OUTBOUND
|
13367
|
+
#
|
13368
|
+
# : Unit: COUNT
|
13369
|
+
#
|
13370
|
+
# Statistic: SUM
|
13371
|
+
#
|
13372
|
+
# UI name: [Contacts handled outbound][11]
|
13373
|
+
#
|
13374
|
+
# CONTACTS\_HOLD\_ABANDONS
|
13375
|
+
#
|
13376
|
+
# : Unit: COUNT
|
13377
|
+
#
|
13378
|
+
# Statistic: SUM
|
13379
|
+
#
|
13380
|
+
# UI name: [Contacts hold disconnect][12]
|
13381
|
+
#
|
13382
|
+
# CONTACTS\_MISSED
|
13383
|
+
#
|
13384
|
+
# : Unit: COUNT
|
13385
|
+
#
|
13386
|
+
# Statistic: SUM
|
13387
|
+
#
|
13388
|
+
# UI name: [AGENT\_NON\_RESPONSE][13]
|
13389
|
+
#
|
13390
|
+
# CONTACTS\_QUEUED
|
13391
|
+
#
|
13392
|
+
# : Unit: COUNT
|
13393
|
+
#
|
13394
|
+
# Statistic: SUM
|
13395
|
+
#
|
13396
|
+
# UI name: [Contacts queued][14]
|
13397
|
+
#
|
13398
|
+
# CONTACTS\_TRANSFERRED\_IN
|
13399
|
+
#
|
13400
|
+
# : Unit: COUNT
|
13401
|
+
#
|
13402
|
+
# Statistic: SUM
|
13403
|
+
#
|
13404
|
+
# UI name: [Contacts transferred in][15]
|
13405
|
+
#
|
13406
|
+
# CONTACTS\_TRANSFERRED\_IN\_FROM\_QUEUE
|
13407
|
+
#
|
13408
|
+
# : Unit: COUNT
|
13409
|
+
#
|
13410
|
+
# Statistic: SUM
|
13411
|
+
#
|
13412
|
+
# UI name: [Contacts transferred out queue][16]
|
13413
|
+
#
|
13414
|
+
# CONTACTS\_TRANSFERRED\_OUT
|
13415
|
+
#
|
13416
|
+
# : Unit: COUNT
|
13417
|
+
#
|
13418
|
+
# Statistic: SUM
|
13419
|
+
#
|
13420
|
+
# UI name: [Contacts transferred out][17]
|
13421
|
+
#
|
13422
|
+
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
13423
|
+
#
|
13424
|
+
# : Unit: COUNT
|
13425
|
+
#
|
13426
|
+
# Statistic: SUM
|
13427
|
+
#
|
13428
|
+
# UI name: [Contacts transferred out queue][16]
|
13429
|
+
#
|
13430
|
+
# HANDLE\_TIME
|
13431
|
+
#
|
13432
|
+
# : Unit: SECONDS
|
13433
|
+
#
|
13434
|
+
# Statistic: AVG
|
13435
|
+
#
|
13436
|
+
# UI name: [Average handle time][18]
|
13437
|
+
#
|
13438
|
+
# INTERACTION\_AND\_HOLD\_TIME
|
13439
|
+
#
|
13440
|
+
# : Unit: SECONDS
|
13441
|
+
#
|
13442
|
+
# Statistic: AVG
|
13443
|
+
#
|
13444
|
+
# UI name: [Average agent interaction and customer hold time][19]
|
13445
|
+
#
|
13446
|
+
# INTERACTION\_TIME
|
13447
|
+
#
|
13448
|
+
# : Unit: SECONDS
|
13449
|
+
#
|
13450
|
+
# Statistic: AVG
|
13451
|
+
#
|
13452
|
+
# UI name: [Average agent interaction time][20]
|
13453
|
+
#
|
13454
|
+
# OCCUPANCY
|
13455
|
+
#
|
13456
|
+
# : Unit: PERCENT
|
13457
|
+
#
|
13458
|
+
# Statistic: AVG
|
13459
|
+
#
|
13460
|
+
# UI name: [Occupancy][21]
|
13461
|
+
#
|
13462
|
+
# QUEUE\_ANSWER\_TIME
|
13463
|
+
#
|
13464
|
+
# : Unit: SECONDS
|
13465
|
+
#
|
13466
|
+
# Statistic: AVG
|
13467
|
+
#
|
13468
|
+
# UI name: [Average queue answer time][22]
|
13469
|
+
#
|
13470
|
+
# QUEUED\_TIME
|
13471
|
+
#
|
13472
|
+
# : Unit: SECONDS
|
13473
|
+
#
|
13474
|
+
# Statistic: MAX
|
13475
|
+
#
|
13476
|
+
# UI name: [Minimum flow time][23]
|
13477
|
+
#
|
13478
|
+
# SERVICE\_LEVEL
|
13479
|
+
#
|
13480
|
+
# : You can include up to 20 SERVICE\_LEVEL metrics in a request.
|
13481
|
+
#
|
13482
|
+
# Unit: PERCENT
|
13483
|
+
#
|
13484
|
+
# Statistic: AVG
|
13485
|
+
#
|
13486
|
+
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
13487
|
+
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
13488
|
+
# `LT` (for "Less than").
|
13489
|
+
#
|
13490
|
+
# UI name: [Service level X][24]
|
13491
|
+
#
|
13492
|
+
#
|
13493
|
+
#
|
13494
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-abandon-time
|
13495
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#after-contact-work-time
|
13496
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#api-contacts-handled
|
13497
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time
|
13498
|
+
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-contacts-handled
|
13499
|
+
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
13500
|
+
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-agent-hung-up-first
|
13501
|
+
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-consulted
|
13502
|
+
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled
|
13503
|
+
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-incoming
|
13504
|
+
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-outbound
|
13505
|
+
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
13506
|
+
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-response
|
13507
|
+
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
13508
|
+
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-in
|
13509
|
+
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
13510
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
13511
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-handle-time
|
13512
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-and-customer-hold-time
|
13513
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#aaverage-agent-interaction-time
|
13514
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#occupancy
|
13515
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html##average-queue-answer-time
|
13516
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
13517
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
|
12969
13518
|
# @return [String]
|
12970
13519
|
#
|
12971
13520
|
# @!attribute [rw] threshold
|
@@ -14239,11 +14788,6 @@ module Aws::Connect
|
|
14239
14788
|
#
|
14240
14789
|
# @!attribute [rw] max_results
|
14241
14790
|
# The maximum number of results to return per page.
|
14242
|
-
#
|
14243
|
-
# The maximum number of results to return per page. The default
|
14244
|
-
# MaxResult size is 25.
|
14245
|
-
#
|
14246
|
-
# Valid Range: Minimum value of 1. Maximum value of 100.
|
14247
14791
|
# @return [Integer]
|
14248
14792
|
#
|
14249
14793
|
# @!attribute [rw] next_token
|
@@ -14882,7 +15426,7 @@ module Aws::Connect
|
|
14882
15426
|
# @return [String]
|
14883
15427
|
#
|
14884
15428
|
# @!attribute [rw] hours_of_operation_id
|
14885
|
-
# The identifier for the hours of operation
|
15429
|
+
# The identifier for the hours of operation.
|
14886
15430
|
# @return [String]
|
14887
15431
|
#
|
14888
15432
|
# @!attribute [rw] next_token
|
@@ -14892,9 +15436,7 @@ module Aws::Connect
|
|
14892
15436
|
# @return [String]
|
14893
15437
|
#
|
14894
15438
|
# @!attribute [rw] max_results
|
14895
|
-
# The maximum number of results to return per page.
|
14896
|
-
# MaxResult size is 100. Valid Range: Minimum value of 1. Maximum
|
14897
|
-
# value of 1000.
|
15439
|
+
# The maximum number of results to return per page.
|
14898
15440
|
# @return [Integer]
|
14899
15441
|
#
|
14900
15442
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListHoursOfOperationOverridesRequest AWS API Documentation
|
@@ -14919,7 +15461,8 @@ module Aws::Connect
|
|
14919
15461
|
# @return [Array<Types::HoursOfOperationOverride>]
|
14920
15462
|
#
|
14921
15463
|
# @!attribute [rw] last_modified_region
|
14922
|
-
# The
|
15464
|
+
# The Amazon Web Services Region where this resource was last
|
15465
|
+
# modified.
|
14923
15466
|
# @return [String]
|
14924
15467
|
#
|
14925
15468
|
# @!attribute [rw] last_modified_time
|
@@ -19472,7 +20015,11 @@ module Aws::Connect
|
|
19472
20015
|
include Aws::Structure
|
19473
20016
|
end
|
19474
20017
|
|
19475
|
-
# That resource is already in use
|
20018
|
+
# That resource is already in use (for example, you're trying to add a
|
20019
|
+
# record with the same name as an existing record). If you are trying to
|
20020
|
+
# delete a resource (for example, DeleteHoursOfOperation or
|
20021
|
+
# DeletePredefinedAttribute), remove its reference from related
|
20022
|
+
# resources and then try again.
|
19476
20023
|
#
|
19477
20024
|
# @!attribute [rw] message
|
19478
20025
|
# @return [String]
|
@@ -20741,13 +21288,11 @@ module Aws::Connect
|
|
20741
21288
|
# @!attribute [rw] next_token
|
20742
21289
|
# The token for the next set of results. Use the value returned in the
|
20743
21290
|
# previous response in the next request to retrieve the next set of
|
20744
|
-
# results.
|
20745
|
-
# 2500.
|
21291
|
+
# results.
|
20746
21292
|
# @return [String]
|
20747
21293
|
#
|
20748
21294
|
# @!attribute [rw] max_results
|
20749
|
-
# The maximum number of results to return per page.
|
20750
|
-
# Minimum value of 1. Maximum value of 100.
|
21295
|
+
# The maximum number of results to return per page.
|
20751
21296
|
# @return [Integer]
|
20752
21297
|
#
|
20753
21298
|
# @!attribute [rw] search_filter
|
@@ -20778,8 +21323,7 @@ module Aws::Connect
|
|
20778
21323
|
# @!attribute [rw] next_token
|
20779
21324
|
# The token for the next set of results. Use the value returned in the
|
20780
21325
|
# previous response in the next request to retrieve the next set of
|
20781
|
-
# results.
|
20782
|
-
# 2500.
|
21326
|
+
# results.
|
20783
21327
|
# @return [String]
|
20784
21328
|
#
|
20785
21329
|
# @!attribute [rw] approximate_total_count
|
@@ -22677,7 +23221,7 @@ module Aws::Connect
|
|
22677
23221
|
# @return [Types::InboundEmailContent]
|
22678
23222
|
#
|
22679
23223
|
# @!attribute [rw] additional_recipients
|
22680
|
-
# The
|
23224
|
+
# The additional recipients address of the email.
|
22681
23225
|
# @return [Types::InboundAdditionalRecipients]
|
22682
23226
|
#
|
22683
23227
|
# @!attribute [rw] attachments
|
@@ -27033,12 +27577,18 @@ module Aws::Connect
|
|
27033
27577
|
# </note>
|
27034
27578
|
# @return [Types::StringCondition]
|
27035
27579
|
#
|
27580
|
+
# @!attribute [rw] hierarchy_group_condition
|
27581
|
+
# A leaf node condition which can be used to specify a hierarchy group
|
27582
|
+
# condition.
|
27583
|
+
# @return [Types::HierarchyGroupCondition]
|
27584
|
+
#
|
27036
27585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserHierarchyGroupSearchCriteria AWS API Documentation
|
27037
27586
|
#
|
27038
27587
|
class UserHierarchyGroupSearchCriteria < Struct.new(
|
27039
27588
|
:or_conditions,
|
27040
27589
|
:and_conditions,
|
27041
|
-
:string_condition
|
27590
|
+
:string_condition,
|
27591
|
+
:hierarchy_group_condition)
|
27042
27592
|
SENSITIVE = []
|
27043
27593
|
include Aws::Structure
|
27044
27594
|
end
|