aws-sdk-connect 1.209.0 → 1.211.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +531 -255
- data/lib/aws-sdk-connect/client_api.rb +49 -0
- data/lib/aws-sdk-connect/types.rb +758 -220
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +18 -0
- data/sig/types.rbs +36 -0
- metadata +1 -1
@@ -3404,6 +3404,61 @@ module Aws::Connect
|
|
3404
3404
|
include Aws::Structure
|
3405
3405
|
end
|
3406
3406
|
|
3407
|
+
# The object that contains information about metric being requested.
|
3408
|
+
#
|
3409
|
+
# @!attribute [rw] name
|
3410
|
+
# The name of the metric being retrieved in type String.
|
3411
|
+
# @return [String]
|
3412
|
+
#
|
3413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactMetricInfo AWS API Documentation
|
3414
|
+
#
|
3415
|
+
class ContactMetricInfo < Struct.new(
|
3416
|
+
:name)
|
3417
|
+
SENSITIVE = []
|
3418
|
+
include Aws::Structure
|
3419
|
+
end
|
3420
|
+
|
3421
|
+
# Object containing information about metric requested for the contact.
|
3422
|
+
#
|
3423
|
+
# @!attribute [rw] name
|
3424
|
+
# The name of the metric being retrieved in type String.
|
3425
|
+
# @return [String]
|
3426
|
+
#
|
3427
|
+
# @!attribute [rw] value
|
3428
|
+
# Object result associated with the metric received.
|
3429
|
+
# @return [Types::ContactMetricValue]
|
3430
|
+
#
|
3431
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactMetricResult AWS API Documentation
|
3432
|
+
#
|
3433
|
+
class ContactMetricResult < Struct.new(
|
3434
|
+
:name,
|
3435
|
+
:value)
|
3436
|
+
SENSITIVE = []
|
3437
|
+
include Aws::Structure
|
3438
|
+
end
|
3439
|
+
|
3440
|
+
# Object which contains the number.
|
3441
|
+
#
|
3442
|
+
# @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.
|
3443
|
+
#
|
3444
|
+
# @!attribute [rw] number
|
3445
|
+
# The number of type Double. This number is the contact's position in
|
3446
|
+
# queue.
|
3447
|
+
# @return [Float]
|
3448
|
+
#
|
3449
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactMetricValue AWS API Documentation
|
3450
|
+
#
|
3451
|
+
class ContactMetricValue < Struct.new(
|
3452
|
+
:number,
|
3453
|
+
:unknown)
|
3454
|
+
SENSITIVE = []
|
3455
|
+
include Aws::Structure
|
3456
|
+
include Aws::Structure::Union
|
3457
|
+
|
3458
|
+
class Number < ContactMetricValue; end
|
3459
|
+
class Unknown < ContactMetricValue; end
|
3460
|
+
end
|
3461
|
+
|
3407
3462
|
# The contact with the specified ID is not active or does not exist.
|
3408
3463
|
# Applies to Voice calls only, not to Chat or Task contacts.
|
3409
3464
|
#
|
@@ -4292,13 +4347,11 @@ module Aws::Connect
|
|
4292
4347
|
# @return [Array<Types::HoursOfOperationOverrideConfig>]
|
4293
4348
|
#
|
4294
4349
|
# @!attribute [rw] effective_from
|
4295
|
-
# The date from when the hours of operation override
|
4296
|
-
# effective.
|
4350
|
+
# The date from when the hours of operation override is effective.
|
4297
4351
|
# @return [String]
|
4298
4352
|
#
|
4299
4353
|
# @!attribute [rw] effective_till
|
4300
|
-
# The date until when the hours of operation override
|
4301
|
-
# effective.
|
4354
|
+
# The date until when the hours of operation override is effective.
|
4302
4355
|
# @return [String]
|
4303
4356
|
#
|
4304
4357
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationOverrideRequest AWS API Documentation
|
@@ -8610,18 +8663,10 @@ module Aws::Connect
|
|
8610
8663
|
#
|
8611
8664
|
# @!attribute [rw] address
|
8612
8665
|
# Address of the email recipient.
|
8613
|
-
#
|
8614
|
-
# Type: String
|
8615
|
-
#
|
8616
|
-
# Length Constraints: Minimum length of 1. Maximum length of 256.
|
8617
8666
|
# @return [String]
|
8618
8667
|
#
|
8619
8668
|
# @!attribute [rw] display_name
|
8620
8669
|
# Display name of the email recipient.
|
8621
|
-
#
|
8622
|
-
# Type: String
|
8623
|
-
#
|
8624
|
-
# Length Constraints: Minimum length of 1. Maximum length of 256.
|
8625
8670
|
# @return [String]
|
8626
8671
|
#
|
8627
8672
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EmailRecipient AWS API Documentation
|
@@ -9998,6 +10043,58 @@ module Aws::Connect
|
|
9998
10043
|
include Aws::Structure
|
9999
10044
|
end
|
10000
10045
|
|
10046
|
+
# @!attribute [rw] instance_id
|
10047
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
10048
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10049
|
+
#
|
10050
|
+
#
|
10051
|
+
#
|
10052
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
10053
|
+
# @return [String]
|
10054
|
+
#
|
10055
|
+
# @!attribute [rw] contact_id
|
10056
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
10057
|
+
# @return [String]
|
10058
|
+
#
|
10059
|
+
# @!attribute [rw] metrics
|
10060
|
+
# A list of contact-level metrics to retrieve.
|
10061
|
+
# @return [Array<Types::ContactMetricInfo>]
|
10062
|
+
#
|
10063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetContactMetricsRequest AWS API Documentation
|
10064
|
+
#
|
10065
|
+
class GetContactMetricsRequest < Struct.new(
|
10066
|
+
:instance_id,
|
10067
|
+
:contact_id,
|
10068
|
+
:metrics)
|
10069
|
+
SENSITIVE = []
|
10070
|
+
include Aws::Structure
|
10071
|
+
end
|
10072
|
+
|
10073
|
+
# @!attribute [rw] metric_results
|
10074
|
+
# A list of metric results containing the calculated values for each
|
10075
|
+
# requested metric. Each result includes the metric name and its
|
10076
|
+
# corresponding calculated value.
|
10077
|
+
# @return [Array<Types::ContactMetricResult>]
|
10078
|
+
#
|
10079
|
+
# @!attribute [rw] id
|
10080
|
+
# The unique identifier of the contact for which metrics were
|
10081
|
+
# retrieved.
|
10082
|
+
# @return [String]
|
10083
|
+
#
|
10084
|
+
# @!attribute [rw] arn
|
10085
|
+
# The ARN of the contact for which metrics were retrieved.
|
10086
|
+
# @return [String]
|
10087
|
+
#
|
10088
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetContactMetricsResponse AWS API Documentation
|
10089
|
+
#
|
10090
|
+
class GetContactMetricsResponse < Struct.new(
|
10091
|
+
:metric_results,
|
10092
|
+
:id,
|
10093
|
+
:arn)
|
10094
|
+
SENSITIVE = []
|
10095
|
+
include Aws::Structure
|
10096
|
+
end
|
10097
|
+
|
10001
10098
|
# @!attribute [rw] instance_id
|
10002
10099
|
# The identifier of the Amazon Connect instance. You can [find the
|
10003
10100
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -10330,11 +10427,11 @@ module Aws::Connect
|
|
10330
10427
|
# @return [String]
|
10331
10428
|
#
|
10332
10429
|
# @!attribute [rw] from_date
|
10333
|
-
# The
|
10430
|
+
# The date from when the hours of operation are listed.
|
10334
10431
|
# @return [String]
|
10335
10432
|
#
|
10336
10433
|
# @!attribute [rw] to_date
|
10337
|
-
# The
|
10434
|
+
# The date until when the hours of operation are listed.
|
10338
10435
|
# @return [String]
|
10339
10436
|
#
|
10340
10437
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetEffectiveHoursOfOperationsRequest AWS API Documentation
|
@@ -10349,7 +10446,7 @@ module Aws::Connect
|
|
10349
10446
|
end
|
10350
10447
|
|
10351
10448
|
# @!attribute [rw] effective_hours_of_operation_list
|
10352
|
-
# Information about the effective hours of operations
|
10449
|
+
# Information about the effective hours of operations.
|
10353
10450
|
# @return [Array<Types::EffectiveHoursOfOperations>]
|
10354
10451
|
#
|
10355
10452
|
# @!attribute [rw] time_zone
|
@@ -10541,113 +10638,151 @@ module Aws::Connect
|
|
10541
10638
|
#
|
10542
10639
|
# Statistic: AVG
|
10543
10640
|
#
|
10641
|
+
# UI name: [Average queue abandon time][2]
|
10642
|
+
#
|
10544
10643
|
# AFTER\_CONTACT\_WORK\_TIME
|
10545
10644
|
#
|
10546
10645
|
# : Unit: SECONDS
|
10547
10646
|
#
|
10548
10647
|
# Statistic: AVG
|
10549
10648
|
#
|
10649
|
+
# UI name: [After contact work time][3]
|
10650
|
+
#
|
10550
10651
|
# API\_CONTACTS\_HANDLED
|
10551
10652
|
#
|
10552
10653
|
# : Unit: COUNT
|
10553
10654
|
#
|
10554
10655
|
# Statistic: SUM
|
10555
10656
|
#
|
10657
|
+
# UI name: [API contacts handled][4]
|
10658
|
+
#
|
10659
|
+
# AVG\_HOLD\_TIME
|
10660
|
+
#
|
10661
|
+
# : Unit: SECONDS
|
10662
|
+
#
|
10663
|
+
# Statistic: AVG
|
10664
|
+
#
|
10665
|
+
# UI name: [Average customer hold time][5]
|
10666
|
+
#
|
10556
10667
|
# CALLBACK\_CONTACTS\_HANDLED
|
10557
10668
|
#
|
10558
10669
|
# : Unit: COUNT
|
10559
10670
|
#
|
10560
10671
|
# Statistic: SUM
|
10561
10672
|
#
|
10673
|
+
# UI name: [Callback contacts handled][6]
|
10674
|
+
#
|
10562
10675
|
# CONTACTS\_ABANDONED
|
10563
10676
|
#
|
10564
10677
|
# : Unit: COUNT
|
10565
10678
|
#
|
10566
10679
|
# Statistic: SUM
|
10567
10680
|
#
|
10681
|
+
# UI name: [Contacts abandoned][7]
|
10682
|
+
#
|
10568
10683
|
# CONTACTS\_AGENT\_HUNG\_UP\_FIRST
|
10569
10684
|
#
|
10570
10685
|
# : Unit: COUNT
|
10571
10686
|
#
|
10572
10687
|
# Statistic: SUM
|
10573
10688
|
#
|
10689
|
+
# UI name: [Contacts agent hung up first][8]
|
10690
|
+
#
|
10574
10691
|
# CONTACTS\_CONSULTED
|
10575
10692
|
#
|
10576
10693
|
# : Unit: COUNT
|
10577
10694
|
#
|
10578
10695
|
# Statistic: SUM
|
10579
10696
|
#
|
10697
|
+
# UI name: [Contacts consulted][9]
|
10698
|
+
#
|
10580
10699
|
# CONTACTS\_HANDLED
|
10581
10700
|
#
|
10582
10701
|
# : Unit: COUNT
|
10583
10702
|
#
|
10584
10703
|
# Statistic: SUM
|
10585
10704
|
#
|
10705
|
+
# UI name: [Contacts handled][10]
|
10706
|
+
#
|
10586
10707
|
# CONTACTS\_HANDLED\_INCOMING
|
10587
10708
|
#
|
10588
10709
|
# : Unit: COUNT
|
10589
10710
|
#
|
10590
10711
|
# Statistic: SUM
|
10591
10712
|
#
|
10713
|
+
# UI name: [Contacts handled incoming][11]
|
10714
|
+
#
|
10592
10715
|
# CONTACTS\_HANDLED\_OUTBOUND
|
10593
10716
|
#
|
10594
10717
|
# : Unit: COUNT
|
10595
10718
|
#
|
10596
10719
|
# Statistic: SUM
|
10597
10720
|
#
|
10721
|
+
# UI name: [Contacts handled outbound][12]
|
10722
|
+
#
|
10598
10723
|
# CONTACTS\_HOLD\_ABANDONS
|
10599
10724
|
#
|
10600
10725
|
# : Unit: COUNT
|
10601
10726
|
#
|
10602
10727
|
# Statistic: SUM
|
10603
10728
|
#
|
10729
|
+
# UI name: [Contacts hold disconnect][13]
|
10730
|
+
#
|
10604
10731
|
# CONTACTS\_MISSED
|
10605
10732
|
#
|
10606
10733
|
# : Unit: COUNT
|
10607
10734
|
#
|
10608
10735
|
# Statistic: SUM
|
10609
10736
|
#
|
10737
|
+
# UI name: [AGENT\_NON\_RESPONSE][14]
|
10738
|
+
#
|
10610
10739
|
# CONTACTS\_QUEUED
|
10611
10740
|
#
|
10612
10741
|
# : Unit: COUNT
|
10613
10742
|
#
|
10614
10743
|
# Statistic: SUM
|
10615
10744
|
#
|
10745
|
+
# UI name: [Contacts queued][15]
|
10746
|
+
#
|
10616
10747
|
# CONTACTS\_TRANSFERRED\_IN
|
10617
10748
|
#
|
10618
10749
|
# : Unit: COUNT
|
10619
10750
|
#
|
10620
10751
|
# Statistic: SUM
|
10621
10752
|
#
|
10753
|
+
# UI name: [Contacts transferred in][16]
|
10754
|
+
#
|
10622
10755
|
# CONTACTS\_TRANSFERRED\_IN\_FROM\_QUEUE
|
10623
10756
|
#
|
10624
10757
|
# : Unit: COUNT
|
10625
10758
|
#
|
10626
10759
|
# Statistic: SUM
|
10627
10760
|
#
|
10761
|
+
# UI name: [Contacts transferred out queue][17]
|
10762
|
+
#
|
10628
10763
|
# CONTACTS\_TRANSFERRED\_OUT
|
10629
10764
|
#
|
10630
10765
|
# : Unit: COUNT
|
10631
10766
|
#
|
10632
10767
|
# Statistic: SUM
|
10633
10768
|
#
|
10769
|
+
# UI name: [Contacts transferred out][18]
|
10770
|
+
#
|
10634
10771
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
10635
10772
|
#
|
10636
10773
|
# : Unit: COUNT
|
10637
10774
|
#
|
10638
10775
|
# Statistic: SUM
|
10639
10776
|
#
|
10777
|
+
# UI name: [Contacts transferred out queue][17]
|
10778
|
+
#
|
10640
10779
|
# HANDLE\_TIME
|
10641
10780
|
#
|
10642
10781
|
# : Unit: SECONDS
|
10643
10782
|
#
|
10644
10783
|
# Statistic: AVG
|
10645
10784
|
#
|
10646
|
-
#
|
10647
|
-
#
|
10648
|
-
# : Unit: SECONDS
|
10649
|
-
#
|
10650
|
-
# Statistic: AVG
|
10785
|
+
# UI name: [Average handle time][19]
|
10651
10786
|
#
|
10652
10787
|
# INTERACTION\_AND\_HOLD\_TIME
|
10653
10788
|
#
|
@@ -10655,30 +10790,40 @@ module Aws::Connect
|
|
10655
10790
|
#
|
10656
10791
|
# Statistic: AVG
|
10657
10792
|
#
|
10793
|
+
# UI name: [Average agent interaction and customer hold time][20]
|
10794
|
+
#
|
10658
10795
|
# INTERACTION\_TIME
|
10659
10796
|
#
|
10660
10797
|
# : Unit: SECONDS
|
10661
10798
|
#
|
10662
10799
|
# Statistic: AVG
|
10663
10800
|
#
|
10801
|
+
# UI name: [Average agent interaction time][21]
|
10802
|
+
#
|
10664
10803
|
# OCCUPANCY
|
10665
10804
|
#
|
10666
10805
|
# : Unit: PERCENT
|
10667
10806
|
#
|
10668
10807
|
# Statistic: AVG
|
10669
10808
|
#
|
10809
|
+
# UI name: [Occupancy][22]
|
10810
|
+
#
|
10670
10811
|
# QUEUE\_ANSWER\_TIME
|
10671
10812
|
#
|
10672
10813
|
# : Unit: SECONDS
|
10673
10814
|
#
|
10674
10815
|
# Statistic: AVG
|
10675
10816
|
#
|
10817
|
+
# UI name: [Average queue answer time][23]
|
10818
|
+
#
|
10676
10819
|
# QUEUED\_TIME
|
10677
10820
|
#
|
10678
10821
|
# : Unit: SECONDS
|
10679
10822
|
#
|
10680
10823
|
# Statistic: MAX
|
10681
10824
|
#
|
10825
|
+
# UI name: [Minimum flow time][24]
|
10826
|
+
#
|
10682
10827
|
# SERVICE\_LEVEL
|
10683
10828
|
#
|
10684
10829
|
# : You can include up to 20 SERVICE\_LEVEL metrics in a request.
|
@@ -10691,9 +10836,34 @@ module Aws::Connect
|
|
10691
10836
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
10692
10837
|
# `LT` (for "Less than").
|
10693
10838
|
#
|
10839
|
+
# UI name: [Average queue abandon time][2]
|
10840
|
+
#
|
10694
10841
|
#
|
10695
10842
|
#
|
10696
10843
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
|
10844
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-abandon-time
|
10845
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#after-contact-work-time
|
10846
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#api-contacts-handled
|
10847
|
+
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time
|
10848
|
+
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-contacts-handled
|
10849
|
+
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
10850
|
+
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-agent-hung-up-first
|
10851
|
+
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-consulted
|
10852
|
+
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled
|
10853
|
+
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-incoming
|
10854
|
+
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-outbound
|
10855
|
+
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
10856
|
+
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-response
|
10857
|
+
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
10858
|
+
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-in
|
10859
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
10860
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
10861
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-handle-time
|
10862
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-and-customer-hold-time
|
10863
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#aaverage-agent-interaction-time
|
10864
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#occupancy
|
10865
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html##average-queue-answer-time
|
10866
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
10697
10867
|
# @return [Array<Types::HistoricalMetric>]
|
10698
10868
|
#
|
10699
10869
|
# @!attribute [rw] next_token
|
@@ -11148,6 +11318,28 @@ module Aws::Connect
|
|
11148
11318
|
#
|
11149
11319
|
# </note>
|
11150
11320
|
#
|
11321
|
+
# AVG\_CONTACT\_FIRST\_RESPONSE\_TIME\_AGENT
|
11322
|
+
#
|
11323
|
+
# : Unit: Seconds
|
11324
|
+
#
|
11325
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11326
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11327
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11328
|
+
# Profile, Queue, Q in Connect
|
11329
|
+
#
|
11330
|
+
# UI name: [Agent average contact first response wait time][22]
|
11331
|
+
#
|
11332
|
+
# AVG\_CONVERSATION\_CLOSE\_TIME
|
11333
|
+
#
|
11334
|
+
# : Unit: Seconds
|
11335
|
+
#
|
11336
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11337
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11338
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11339
|
+
# Profile, Queue, Q in Connect
|
11340
|
+
#
|
11341
|
+
# UI name: [Average conversation close time][23]
|
11342
|
+
#
|
11151
11343
|
# AVG\_CONVERSATION\_DURATION
|
11152
11344
|
#
|
11153
11345
|
# : Unit: Seconds
|
@@ -11156,7 +11348,7 @@ module Aws::Connect
|
|
11156
11348
|
# Agent, Agent Hierarchy, Feature,
|
11157
11349
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11158
11350
|
#
|
11159
|
-
# UI name: [Average conversation duration][
|
11351
|
+
# UI name: [Average conversation duration][24]
|
11160
11352
|
#
|
11161
11353
|
# AVG\_DIALS\_PER\_MINUTE
|
11162
11354
|
#
|
@@ -11168,7 +11360,7 @@ module Aws::Connect
|
|
11168
11360
|
# Valid groupings and filters: Agent, Campaign, Queue, Routing
|
11169
11361
|
# Profile
|
11170
11362
|
#
|
11171
|
-
# UI name: [Average dials per minute][
|
11363
|
+
# UI name: [Average dials per minute][25]
|
11172
11364
|
#
|
11173
11365
|
# AVG\_EVALUATION\_SCORE
|
11174
11366
|
#
|
@@ -11178,7 +11370,18 @@ module Aws::Connect
|
|
11178
11370
|
# Evaluation Form ID, Evaluation Section ID, Evaluation Question ID,
|
11179
11371
|
# Evaluation Source, Form Version, Queue, Routing Profile
|
11180
11372
|
#
|
11181
|
-
# UI name: [Average evaluation score][
|
11373
|
+
# UI name: [Average evaluation score][26]
|
11374
|
+
#
|
11375
|
+
# AVG\_FIRST\_RESPONSE\_TIME\_AGENT
|
11376
|
+
#
|
11377
|
+
# : Unit: Seconds
|
11378
|
+
#
|
11379
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11380
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11381
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11382
|
+
# Profile, Queue, Q in Connect
|
11383
|
+
#
|
11384
|
+
# UI name: [Average agent first response time][27]
|
11182
11385
|
#
|
11183
11386
|
# AVG\_FLOW\_TIME
|
11184
11387
|
#
|
@@ -11190,7 +11393,7 @@ module Aws::Connect
|
|
11190
11393
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11191
11394
|
# published timestamp
|
11192
11395
|
#
|
11193
|
-
# UI name: [Average flow time][
|
11396
|
+
# UI name: [Average flow time][28]
|
11194
11397
|
#
|
11195
11398
|
# AVG\_GREETING\_TIME\_AGENT
|
11196
11399
|
#
|
@@ -11203,7 +11406,7 @@ module Aws::Connect
|
|
11203
11406
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11204
11407
|
# Q in Connect
|
11205
11408
|
#
|
11206
|
-
# UI name: [Average agent greeting time][
|
11409
|
+
# UI name: [Average agent greeting time][29]
|
11207
11410
|
#
|
11208
11411
|
# AVG\_HANDLE\_TIME
|
11209
11412
|
#
|
@@ -11213,7 +11416,7 @@ module Aws::Connect
|
|
11213
11416
|
# Agent, Agent Hierarchy, Feature,
|
11214
11417
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression
|
11215
11418
|
#
|
11216
|
-
# UI name: [Average handle time][
|
11419
|
+
# UI name: [Average handle time][30]
|
11217
11420
|
#
|
11218
11421
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11219
11422
|
#
|
@@ -11227,7 +11430,7 @@ module Aws::Connect
|
|
11227
11430
|
# Agent, Agent Hierarchy, Feature,
|
11228
11431
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11229
11432
|
#
|
11230
|
-
# UI name: [Average customer hold time][
|
11433
|
+
# UI name: [Average customer hold time][31]
|
11231
11434
|
#
|
11232
11435
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11233
11436
|
#
|
@@ -11241,7 +11444,7 @@ module Aws::Connect
|
|
11241
11444
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11242
11445
|
# Q in Connect
|
11243
11446
|
#
|
11244
|
-
# UI name: [Average customer hold time all contacts][
|
11447
|
+
# UI name: [Average customer hold time all contacts][32]
|
11245
11448
|
#
|
11246
11449
|
# AVG\_HOLDS
|
11247
11450
|
#
|
@@ -11251,7 +11454,7 @@ module Aws::Connect
|
|
11251
11454
|
# Agent, Agent Hierarchy, Feature,
|
11252
11455
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11253
11456
|
#
|
11254
|
-
# UI name: [Average holds][
|
11457
|
+
# UI name: [Average holds][33]
|
11255
11458
|
#
|
11256
11459
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11257
11460
|
#
|
@@ -11265,7 +11468,7 @@ module Aws::Connect
|
|
11265
11468
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11266
11469
|
# Q in Connect
|
11267
11470
|
#
|
11268
|
-
# UI name: [Average agent interaction and customer hold time][
|
11471
|
+
# UI name: [Average agent interaction and customer hold time][34]
|
11269
11472
|
#
|
11270
11473
|
# AVG\_INTERACTION\_TIME
|
11271
11474
|
#
|
@@ -11276,7 +11479,7 @@ module Aws::Connect
|
|
11276
11479
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11277
11480
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11278
11481
|
#
|
11279
|
-
# UI name: [Average agent interaction time][
|
11482
|
+
# UI name: [Average agent interaction time][35]
|
11280
11483
|
#
|
11281
11484
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11282
11485
|
#
|
@@ -11293,7 +11496,7 @@ module Aws::Connect
|
|
11293
11496
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11294
11497
|
# Q in Connect
|
11295
11498
|
#
|
11296
|
-
# UI name: [Average agent interruptions][
|
11499
|
+
# UI name: [Average agent interruptions][36]
|
11297
11500
|
#
|
11298
11501
|
# AVG\_INTERRUPTION\_TIME\_AGENT
|
11299
11502
|
#
|
@@ -11306,7 +11509,73 @@ module Aws::Connect
|
|
11306
11509
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11307
11510
|
# Q in Connect
|
11308
11511
|
#
|
11309
|
-
# UI name: [Average agent interruption time][
|
11512
|
+
# UI name: [Average agent interruption time][37]
|
11513
|
+
#
|
11514
|
+
# AVG\_MESSAGE\_LENGTH\_AGENT
|
11515
|
+
#
|
11516
|
+
# : Unit: Count
|
11517
|
+
#
|
11518
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11519
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11520
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11521
|
+
# Profile, Queue, Q in Connect
|
11522
|
+
#
|
11523
|
+
# UI name: [Average agent message length][38]
|
11524
|
+
#
|
11525
|
+
# AVG\_MESSAGE\_LENGTH\_CUSTOMER
|
11526
|
+
#
|
11527
|
+
# : Unit: Count
|
11528
|
+
#
|
11529
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11530
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11531
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11532
|
+
# Profile, Queue, Q in Connect
|
11533
|
+
#
|
11534
|
+
# UI name: [Average customer message length][39]
|
11535
|
+
#
|
11536
|
+
# AVG\_MESSAGES
|
11537
|
+
#
|
11538
|
+
# : Unit: Count
|
11539
|
+
#
|
11540
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11541
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11542
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11543
|
+
# Profile, Queue, Q in Connect
|
11544
|
+
#
|
11545
|
+
# UI name: [Average messages][40]
|
11546
|
+
#
|
11547
|
+
# AVG\_MESSAGES\_AGENT
|
11548
|
+
#
|
11549
|
+
# : Unit: Count
|
11550
|
+
#
|
11551
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11552
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11553
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11554
|
+
# Profile, Queue, Q in Connect
|
11555
|
+
#
|
11556
|
+
# UI name: [Average agent messages][41]
|
11557
|
+
#
|
11558
|
+
# AVG\_MESSAGES\_BOT
|
11559
|
+
#
|
11560
|
+
# : Unit: Count
|
11561
|
+
#
|
11562
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11563
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11564
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11565
|
+
# Profile, Queue, Q in Connect
|
11566
|
+
#
|
11567
|
+
# UI name: [Average bot messages][42]
|
11568
|
+
#
|
11569
|
+
# AVG\_MESSAGES\_CUSTOMER
|
11570
|
+
#
|
11571
|
+
# : Unit: Count
|
11572
|
+
#
|
11573
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11574
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11575
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11576
|
+
# Profile, Queue, Q in Connect
|
11577
|
+
#
|
11578
|
+
# UI name: [Average customer messages][43]
|
11310
11579
|
#
|
11311
11580
|
# AVG\_NON\_TALK\_TIME
|
11312
11581
|
#
|
@@ -11319,7 +11588,7 @@ module Aws::Connect
|
|
11319
11588
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11320
11589
|
# Q in Connect
|
11321
11590
|
#
|
11322
|
-
# UI name: [Average non-talk time][
|
11591
|
+
# UI name: [Average non-talk time][44]
|
11323
11592
|
#
|
11324
11593
|
# AVG\_QUEUE\_ANSWER\_TIME
|
11325
11594
|
#
|
@@ -11328,12 +11597,34 @@ module Aws::Connect
|
|
11328
11597
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11329
11598
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11330
11599
|
#
|
11331
|
-
# UI name: [Average queue answer time][
|
11600
|
+
# UI name: [Average queue answer time][45]
|
11332
11601
|
#
|
11333
11602
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11334
11603
|
#
|
11335
11604
|
# </note>
|
11336
11605
|
#
|
11606
|
+
# AVG\_RESPONSE\_TIME\_AGENT
|
11607
|
+
#
|
11608
|
+
# : Unit: Seconds
|
11609
|
+
#
|
11610
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11611
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11612
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11613
|
+
# Profile, Queue, Q in Connect
|
11614
|
+
#
|
11615
|
+
# UI name: [Average agent response time][46]
|
11616
|
+
#
|
11617
|
+
# AVG\_RESPONSE\_TIME\_CUSTOMER
|
11618
|
+
#
|
11619
|
+
# : Unit: Seconds
|
11620
|
+
#
|
11621
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
11622
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11623
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
11624
|
+
# Profile, Queue, Q in Connect
|
11625
|
+
#
|
11626
|
+
# UI name: [Average customer response time][47]
|
11627
|
+
#
|
11337
11628
|
# AVG\_RESOLUTION\_TIME
|
11338
11629
|
#
|
11339
11630
|
# : Unit: Seconds
|
@@ -11341,7 +11632,7 @@ module Aws::Connect
|
|
11341
11632
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11342
11633
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11343
11634
|
#
|
11344
|
-
# UI name: [Average resolution time][
|
11635
|
+
# UI name: [Average resolution time][48]
|
11345
11636
|
#
|
11346
11637
|
# AVG\_TALK\_TIME
|
11347
11638
|
#
|
@@ -11354,7 +11645,7 @@ module Aws::Connect
|
|
11354
11645
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11355
11646
|
# Q in Connect
|
11356
11647
|
#
|
11357
|
-
# UI name: [Average talk time][
|
11648
|
+
# UI name: [Average talk time][49]
|
11358
11649
|
#
|
11359
11650
|
# AVG\_TALK\_TIME\_AGENT
|
11360
11651
|
#
|
@@ -11367,7 +11658,7 @@ module Aws::Connect
|
|
11367
11658
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11368
11659
|
# Q in Connect
|
11369
11660
|
#
|
11370
|
-
# UI name: [Average agent talk time][
|
11661
|
+
# UI name: [Average agent talk time][50]
|
11371
11662
|
#
|
11372
11663
|
# AVG\_TALK\_TIME\_CUSTOMER
|
11373
11664
|
#
|
@@ -11380,7 +11671,7 @@ module Aws::Connect
|
|
11380
11671
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11381
11672
|
# Q in Connect
|
11382
11673
|
#
|
11383
|
-
# UI name: [Average customer talk time][
|
11674
|
+
# UI name: [Average customer talk time][51]
|
11384
11675
|
#
|
11385
11676
|
# AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
|
11386
11677
|
#
|
@@ -11391,7 +11682,7 @@ module Aws::Connect
|
|
11391
11682
|
#
|
11392
11683
|
# Valid groupings and filters: Campaign
|
11393
11684
|
#
|
11394
|
-
# UI name: [Average wait time after customer connection][
|
11685
|
+
# UI name: [Average wait time after customer connection][52]
|
11395
11686
|
#
|
11396
11687
|
# AVG\_WEIGHTED\_EVALUATION\_SCORE
|
11397
11688
|
#
|
@@ -11401,7 +11692,7 @@ module Aws::Connect
|
|
11401
11692
|
# Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
|
11402
11693
|
# Evaluation Source, Form Version, Queue, Routing Profile
|
11403
11694
|
#
|
11404
|
-
# UI name: [Average weighted evaluation score][
|
11695
|
+
# UI name: [Average weighted evaluation score][53]
|
11405
11696
|
#
|
11406
11697
|
# BOT\_CONVERSATIONS\_COMPLETED
|
11407
11698
|
#
|
@@ -11414,7 +11705,7 @@ module Aws::Connect
|
|
11414
11705
|
# Initiation method, Invoking resource type, Parent flows resource
|
11415
11706
|
# ID
|
11416
11707
|
#
|
11417
|
-
# UI name: [Bot conversations completed][
|
11708
|
+
# UI name: [Bot conversations completed][54]
|
11418
11709
|
#
|
11419
11710
|
# BOT\_INTENTS\_COMPLETED
|
11420
11711
|
#
|
@@ -11427,7 +11718,7 @@ module Aws::Connect
|
|
11427
11718
|
# published timestamp, Initiation method, Invoking resource type,
|
11428
11719
|
# Parent flows resource ID
|
11429
11720
|
#
|
11430
|
-
# UI name: [Bot intents completed][
|
11721
|
+
# UI name: [Bot intents completed][55]
|
11431
11722
|
#
|
11432
11723
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
|
11433
11724
|
#
|
@@ -11442,7 +11733,7 @@ module Aws::Connect
|
|
11442
11733
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
11443
11734
|
# `GT` (for *Greater than*).
|
11444
11735
|
#
|
11445
|
-
# UI name: [Campaign contacts abandoned after X][
|
11736
|
+
# UI name: [Campaign contacts abandoned after X][56]
|
11446
11737
|
#
|
11447
11738
|
# CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
|
11448
11739
|
#
|
@@ -11457,7 +11748,7 @@ module Aws::Connect
|
|
11457
11748
|
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
11458
11749
|
# `GT` (for *Greater than*).
|
11459
11750
|
#
|
11460
|
-
# UI name: [Campaign contacts abandoned after X rate][
|
11751
|
+
# UI name: [Campaign contacts abandoned after X rate][57]
|
11461
11752
|
#
|
11462
11753
|
# CAMPAIGN\_INTERACTIONS
|
11463
11754
|
#
|
@@ -11470,7 +11761,7 @@ module Aws::Connect
|
|
11470
11761
|
#
|
11471
11762
|
# Valid groupings and filters: Campaign
|
11472
11763
|
#
|
11473
|
-
# UI name: [Campaign interactions][
|
11764
|
+
# UI name: [Campaign interactions][58]
|
11474
11765
|
#
|
11475
11766
|
# CAMPAIGN\_PROGRESS\_RATE
|
11476
11767
|
#
|
@@ -11483,7 +11774,7 @@ module Aws::Connect
|
|
11483
11774
|
# Valid groupings and filters: Campaign, Campaign Execution
|
11484
11775
|
# Timestamp
|
11485
11776
|
#
|
11486
|
-
# UI name: [Campaign progress rate][
|
11777
|
+
# UI name: [Campaign progress rate][59]
|
11487
11778
|
#
|
11488
11779
|
# CAMPAIGN\_SEND\_ATTEMPTS
|
11489
11780
|
#
|
@@ -11494,7 +11785,7 @@ module Aws::Connect
|
|
11494
11785
|
# Valid groupings and filters: Campaign, Channel,
|
11495
11786
|
# contact/segmentAttributes/connect:Subtype
|
11496
11787
|
#
|
11497
|
-
# UI name: [Campaign send attempts][
|
11788
|
+
# UI name: [Campaign send attempts][60]
|
11498
11789
|
#
|
11499
11790
|
# CAMPAIGN\_SEND\_EXCLUSIONS
|
11500
11791
|
#
|
@@ -11507,7 +11798,7 @@ module Aws::Connect
|
|
11507
11798
|
# Valid groupings and filters: Campaign, Campaign Excluded Event
|
11508
11799
|
# Type, Campaign Execution Timestamp
|
11509
11800
|
#
|
11510
|
-
# UI name: [Campaign send exclusions][
|
11801
|
+
# UI name: [Campaign send exclusions][61]
|
11511
11802
|
#
|
11512
11803
|
# CASES\_CREATED
|
11513
11804
|
#
|
@@ -11517,7 +11808,7 @@ module Aws::Connect
|
|
11517
11808
|
#
|
11518
11809
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11519
11810
|
#
|
11520
|
-
# UI name: [Cases created][
|
11811
|
+
# UI name: [Cases created][62]
|
11521
11812
|
#
|
11522
11813
|
# CONTACTS\_CREATED
|
11523
11814
|
#
|
@@ -11528,7 +11819,7 @@ module Aws::Connect
|
|
11528
11819
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11529
11820
|
# Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11530
11821
|
#
|
11531
|
-
# UI name: [Contacts created][
|
11822
|
+
# UI name: [Contacts created][63]
|
11532
11823
|
#
|
11533
11824
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11534
11825
|
#
|
@@ -11545,7 +11836,7 @@ module Aws::Connect
|
|
11545
11836
|
# contact/segmentAttributes/connect:Subtype, RoutingStepExpression,
|
11546
11837
|
# Q in Connect
|
11547
11838
|
#
|
11548
|
-
# UI name: [API contacts handled][
|
11839
|
+
# UI name: [API contacts handled][64]
|
11549
11840
|
#
|
11550
11841
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11551
11842
|
#
|
@@ -11560,7 +11851,7 @@ module Aws::Connect
|
|
11560
11851
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11561
11852
|
# Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect
|
11562
11853
|
#
|
11563
|
-
# UI name: [Contacts handled (connected to agent timestamp)][
|
11854
|
+
# UI name: [Contacts handled (connected to agent timestamp)][65]
|
11564
11855
|
#
|
11565
11856
|
# CONTACTS\_HOLD\_ABANDONS
|
11566
11857
|
#
|
@@ -11570,7 +11861,7 @@ module Aws::Connect
|
|
11570
11861
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11571
11862
|
# Q in Connect
|
11572
11863
|
#
|
11573
|
-
# UI name: [Contacts hold disconnect][
|
11864
|
+
# UI name: [Contacts hold disconnect][66]
|
11574
11865
|
#
|
11575
11866
|
# CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
|
11576
11867
|
#
|
@@ -11579,7 +11870,7 @@ module Aws::Connect
|
|
11579
11870
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11580
11871
|
# Agent, Agent Hierarchy, Q in Connect
|
11581
11872
|
#
|
11582
|
-
# UI name: [Contacts hold agent disconnect][
|
11873
|
+
# UI name: [Contacts hold agent disconnect][67]
|
11583
11874
|
#
|
11584
11875
|
# CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
|
11585
11876
|
#
|
@@ -11588,7 +11879,7 @@ module Aws::Connect
|
|
11588
11879
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11589
11880
|
# Agent, Agent Hierarchy, Q in Connect
|
11590
11881
|
#
|
11591
|
-
# UI name: [Contacts hold customer disconnect][
|
11882
|
+
# UI name: [Contacts hold customer disconnect][68]
|
11592
11883
|
#
|
11593
11884
|
# CONTACTS\_PUT\_ON\_HOLD
|
11594
11885
|
#
|
@@ -11597,7 +11888,7 @@ module Aws::Connect
|
|
11597
11888
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11598
11889
|
# Agent, Agent Hierarchy, Q in Connect
|
11599
11890
|
#
|
11600
|
-
# UI name: [Contacts put on hold][
|
11891
|
+
# UI name: [Contacts put on hold][69]
|
11601
11892
|
#
|
11602
11893
|
# CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
|
11603
11894
|
#
|
@@ -11606,7 +11897,7 @@ module Aws::Connect
|
|
11606
11897
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11607
11898
|
# Agent, Agent Hierarchy, Q in Connect
|
11608
11899
|
#
|
11609
|
-
# UI name: [Contacts transferred out external][
|
11900
|
+
# UI name: [Contacts transferred out external][70]
|
11610
11901
|
#
|
11611
11902
|
# CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
|
11612
11903
|
#
|
@@ -11615,7 +11906,7 @@ module Aws::Connect
|
|
11615
11906
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
11616
11907
|
# Agent, Agent Hierarchy, Q in Connect
|
11617
11908
|
#
|
11618
|
-
# UI name: [Contacts transferred out internal][
|
11909
|
+
# UI name: [Contacts transferred out internal][71]
|
11619
11910
|
#
|
11620
11911
|
# CONTACTS\_QUEUED
|
11621
11912
|
#
|
@@ -11625,7 +11916,7 @@ module Aws::Connect
|
|
11625
11916
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11626
11917
|
# Q in Connect
|
11627
11918
|
#
|
11628
|
-
# UI name: [Contacts queued][
|
11919
|
+
# UI name: [Contacts queued][72]
|
11629
11920
|
#
|
11630
11921
|
# CONTACTS\_QUEUED\_BY\_ENQUEUE
|
11631
11922
|
#
|
@@ -11634,7 +11925,7 @@ module Aws::Connect
|
|
11634
11925
|
# Valid groupings and filters: Queue, Channel, Agent, Agent
|
11635
11926
|
# Hierarchy, contact/segmentAttributes/connect:Subtype
|
11636
11927
|
#
|
11637
|
-
# UI name: [Contacts queued (enqueue timestamp)][
|
11928
|
+
# UI name: [Contacts queued (enqueue timestamp)][73]
|
11638
11929
|
#
|
11639
11930
|
# CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
|
11640
11931
|
#
|
@@ -11647,7 +11938,7 @@ module Aws::Connect
|
|
11647
11938
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11648
11939
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11649
11940
|
#
|
11650
|
-
# UI name: [Contacts removed from queue in X seconds][
|
11941
|
+
# UI name: [Contacts removed from queue in X seconds][74]
|
11651
11942
|
#
|
11652
11943
|
# CONTACTS\_RESOLVED\_IN\_X
|
11653
11944
|
#
|
@@ -11660,7 +11951,7 @@ module Aws::Connect
|
|
11660
11951
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
11661
11952
|
# (for "Less than") or `LTE` (for "Less than equal").
|
11662
11953
|
#
|
11663
|
-
# UI name: [Contacts resolved in X][
|
11954
|
+
# UI name: [Contacts resolved in X][75]
|
11664
11955
|
#
|
11665
11956
|
# CONTACTS\_TRANSFERRED\_OUT
|
11666
11957
|
#
|
@@ -11670,7 +11961,7 @@ module Aws::Connect
|
|
11670
11961
|
# Agent, Agent Hierarchy, Feature,
|
11671
11962
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
11672
11963
|
#
|
11673
|
-
# UI name: [Contacts transferred out][
|
11964
|
+
# UI name: [Contacts transferred out][76]
|
11674
11965
|
#
|
11675
11966
|
# <note markdown="1"> Feature is a valid filter but not a valid grouping.
|
11676
11967
|
#
|
@@ -11684,7 +11975,7 @@ module Aws::Connect
|
|
11684
11975
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11685
11976
|
# Q in Connect
|
11686
11977
|
#
|
11687
|
-
# UI name: [Contacts transferred out by agent][
|
11978
|
+
# UI name: [Contacts transferred out by agent][77]
|
11688
11979
|
#
|
11689
11980
|
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
11690
11981
|
#
|
@@ -11694,7 +11985,7 @@ module Aws::Connect
|
|
11694
11985
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11695
11986
|
# Q in Connect
|
11696
11987
|
#
|
11697
|
-
# UI name: [Contacts transferred out queue][
|
11988
|
+
# UI name: [Contacts transferred out queue][78]
|
11698
11989
|
#
|
11699
11990
|
# CURRENT\_CASES
|
11700
11991
|
#
|
@@ -11704,7 +11995,18 @@ module Aws::Connect
|
|
11704
11995
|
#
|
11705
11996
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11706
11997
|
#
|
11707
|
-
# UI name: [Current cases][
|
11998
|
+
# UI name: [Current cases][79]
|
11999
|
+
#
|
12000
|
+
# CONVERSATIONS\_ABANDONED
|
12001
|
+
#
|
12002
|
+
# : Unit: Count
|
12003
|
+
#
|
12004
|
+
# Valid groupings and filters: Agent, Agent Hierarchy, Channel,
|
12005
|
+
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
12006
|
+
# Feature, RoutingStepExpression, Initiation method, Routing
|
12007
|
+
# Profile, Queue, Q in Connect
|
12008
|
+
#
|
12009
|
+
# UI name: [Conversations abandoned][80]
|
11708
12010
|
#
|
11709
12011
|
# DELIVERY\_ATTEMPTS
|
11710
12012
|
#
|
@@ -11720,7 +12022,7 @@ module Aws::Connect
|
|
11720
12022
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11721
12023
|
# Queue, Routing Profile
|
11722
12024
|
#
|
11723
|
-
# UI name: [Delivery attempts][
|
12025
|
+
# UI name: [Delivery attempts][81]
|
11724
12026
|
#
|
11725
12027
|
# <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
|
11726
12028
|
# for SMS and Email campaign delivery modes. Agent, Queue, Routing
|
@@ -11746,7 +12048,7 @@ module Aws::Connect
|
|
11746
12048
|
# contact/segmentAttributes/connect:Subtype, Disconnect Reason,
|
11747
12049
|
# Queue, Routing Profile
|
11748
12050
|
#
|
11749
|
-
# UI name: [Delivery attempt disposition rate][
|
12051
|
+
# UI name: [Delivery attempt disposition rate][82]
|
11750
12052
|
#
|
11751
12053
|
# <note markdown="1"> Campaign Delivery Event Type filter and grouping are only
|
11752
12054
|
# available for SMS and Email campaign delivery modes. Agent, Queue,
|
@@ -11764,7 +12066,7 @@ module Aws::Connect
|
|
11764
12066
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11765
12067
|
# Routing Profile
|
11766
12068
|
#
|
11767
|
-
# UI name: [Evaluations performed][
|
12069
|
+
# UI name: [Evaluations performed][83]
|
11768
12070
|
#
|
11769
12071
|
# FLOWS\_OUTCOME
|
11770
12072
|
#
|
@@ -11776,7 +12078,7 @@ module Aws::Connect
|
|
11776
12078
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11777
12079
|
# published timestamp
|
11778
12080
|
#
|
11779
|
-
# UI name: [Flows outcome][
|
12081
|
+
# UI name: [Flows outcome][84]
|
11780
12082
|
#
|
11781
12083
|
# FLOWS\_STARTED
|
11782
12084
|
#
|
@@ -11787,7 +12089,7 @@ module Aws::Connect
|
|
11787
12089
|
# resource ID, Flows resource ID, Initiation method, Resource
|
11788
12090
|
# published timestamp
|
11789
12091
|
#
|
11790
|
-
# UI name: [Flows started][
|
12092
|
+
# UI name: [Flows started][85]
|
11791
12093
|
#
|
11792
12094
|
# HUMAN\_ANSWERED\_CALLS
|
11793
12095
|
#
|
@@ -11799,7 +12101,7 @@ module Aws::Connect
|
|
11799
12101
|
#
|
11800
12102
|
# Valid groupings and filters: Agent, Campaign
|
11801
12103
|
#
|
11802
|
-
# UI name: [Human answered][
|
12104
|
+
# UI name: [Human answered][86]
|
11803
12105
|
#
|
11804
12106
|
# MAX\_FLOW\_TIME
|
11805
12107
|
#
|
@@ -11811,7 +12113,7 @@ module Aws::Connect
|
|
11811
12113
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11812
12114
|
# published timestamp
|
11813
12115
|
#
|
11814
|
-
# UI name: [Maximum flow time][
|
12116
|
+
# UI name: [Maximum flow time][87]
|
11815
12117
|
#
|
11816
12118
|
# MAX\_QUEUED\_TIME
|
11817
12119
|
#
|
@@ -11821,7 +12123,7 @@ module Aws::Connect
|
|
11821
12123
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11822
12124
|
# Q in Connect
|
11823
12125
|
#
|
11824
|
-
# UI name: [Maximum queued time][
|
12126
|
+
# UI name: [Maximum queued time][88]
|
11825
12127
|
#
|
11826
12128
|
# MIN\_FLOW\_TIME
|
11827
12129
|
#
|
@@ -11833,7 +12135,7 @@ module Aws::Connect
|
|
11833
12135
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11834
12136
|
# published timestamp
|
11835
12137
|
#
|
11836
|
-
# UI name: [Minimum flow time][
|
12138
|
+
# UI name: [Minimum flow time][89]
|
11837
12139
|
#
|
11838
12140
|
# PERCENT\_AUTOMATIC\_FAILS
|
11839
12141
|
#
|
@@ -11843,7 +12145,7 @@ module Aws::Connect
|
|
11843
12145
|
# Evaluation Form ID, Evaluation Source, Form Version, Queue,
|
11844
12146
|
# Routing Profile
|
11845
12147
|
#
|
11846
|
-
# UI name: [Automatic fails percent][
|
12148
|
+
# UI name: [Automatic fails percent][90]
|
11847
12149
|
#
|
11848
12150
|
# PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
|
11849
12151
|
#
|
@@ -11856,7 +12158,7 @@ module Aws::Connect
|
|
11856
12158
|
# Initiation method, Invoking resource type, Parent flows resource
|
11857
12159
|
# ID
|
11858
12160
|
#
|
11859
|
-
# UI name: [Percent bot conversations outcome][
|
12161
|
+
# UI name: [Percent bot conversations outcome][91]
|
11860
12162
|
#
|
11861
12163
|
# PERCENT\_BOT\_INTENTS\_OUTCOME
|
11862
12164
|
#
|
@@ -11869,7 +12171,7 @@ module Aws::Connect
|
|
11869
12171
|
# published timestamp, Initiation method, Invoking resource type,
|
11870
12172
|
# Parent flows resource ID
|
11871
12173
|
#
|
11872
|
-
# UI name: [Percent bot intents outcome][
|
12174
|
+
# UI name: [Percent bot intents outcome][92]
|
11873
12175
|
#
|
11874
12176
|
# PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
|
11875
12177
|
#
|
@@ -11879,7 +12181,7 @@ module Aws::Connect
|
|
11879
12181
|
#
|
11880
12182
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
11881
12183
|
#
|
11882
|
-
# UI name: [Cases resolved on first contact][
|
12184
|
+
# UI name: [Cases resolved on first contact][93]
|
11883
12185
|
#
|
11884
12186
|
# PERCENT\_CONTACTS\_STEP\_EXPIRED
|
11885
12187
|
#
|
@@ -11911,7 +12213,7 @@ module Aws::Connect
|
|
11911
12213
|
# Flows outcome type, Flows resource ID, Initiation method, Resource
|
11912
12214
|
# published timestamp
|
11913
12215
|
#
|
11914
|
-
# UI name: [Flows outcome percentage][
|
12216
|
+
# UI name: [Flows outcome percentage][94].
|
11915
12217
|
#
|
11916
12218
|
# <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
|
11917
12219
|
#
|
@@ -11928,7 +12230,7 @@ module Aws::Connect
|
|
11928
12230
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11929
12231
|
# Q in Connect
|
11930
12232
|
#
|
11931
|
-
# UI name: [Non-talk time percent][
|
12233
|
+
# UI name: [Non-talk time percent][95]
|
11932
12234
|
#
|
11933
12235
|
# PERCENT\_TALK\_TIME
|
11934
12236
|
#
|
@@ -11941,7 +12243,7 @@ module Aws::Connect
|
|
11941
12243
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11942
12244
|
# Q in Connect
|
11943
12245
|
#
|
11944
|
-
# UI name: [Talk time percent][
|
12246
|
+
# UI name: [Talk time percent][96]
|
11945
12247
|
#
|
11946
12248
|
# PERCENT\_TALK\_TIME\_AGENT
|
11947
12249
|
#
|
@@ -11954,7 +12256,7 @@ module Aws::Connect
|
|
11954
12256
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11955
12257
|
# Q in Connect
|
11956
12258
|
#
|
11957
|
-
# UI name: [Agent talk time percent][
|
12259
|
+
# UI name: [Agent talk time percent][97]
|
11958
12260
|
#
|
11959
12261
|
# PERCENT\_TALK\_TIME\_CUSTOMER
|
11960
12262
|
#
|
@@ -11967,7 +12269,7 @@ module Aws::Connect
|
|
11967
12269
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
11968
12270
|
# Q in Connect
|
11969
12271
|
#
|
11970
|
-
# UI name: [Customer talk time percent][
|
12272
|
+
# UI name: [Customer talk time percent][98]
|
11971
12273
|
#
|
11972
12274
|
# RECIPIENTS\_ATTEMPTED
|
11973
12275
|
#
|
@@ -11980,7 +12282,7 @@ module Aws::Connect
|
|
11980
12282
|
# Valid groupings and filters: Campaign, Campaign Execution
|
11981
12283
|
# Timestamp
|
11982
12284
|
#
|
11983
|
-
# UI name: [Recipients attempted][
|
12285
|
+
# UI name: [Recipients attempted][99]
|
11984
12286
|
#
|
11985
12287
|
# RECIPIENTS\_INTERACTED
|
11986
12288
|
#
|
@@ -11996,7 +12298,7 @@ module Aws::Connect
|
|
11996
12298
|
# contact/segmentAttributes/connect:Subtype, Campaign Execution
|
11997
12299
|
# Timestamp
|
11998
12300
|
#
|
11999
|
-
# UI name: [Recipients interacted][
|
12301
|
+
# UI name: [Recipients interacted][100]
|
12000
12302
|
#
|
12001
12303
|
# RECIPIENTS\_TARGETED
|
12002
12304
|
#
|
@@ -12009,7 +12311,7 @@ module Aws::Connect
|
|
12009
12311
|
# Valid groupings and filters: Campaign, Campaign Execution
|
12010
12312
|
# Timestamp
|
12011
12313
|
#
|
12012
|
-
# UI name: [Recipients targeted][
|
12314
|
+
# UI name: [Recipients targeted][101]
|
12013
12315
|
#
|
12014
12316
|
# REOPENED\_CASE\_ACTIONS
|
12015
12317
|
#
|
@@ -12019,7 +12321,7 @@ module Aws::Connect
|
|
12019
12321
|
#
|
12020
12322
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12021
12323
|
#
|
12022
|
-
# UI name: [Cases reopened][
|
12324
|
+
# UI name: [Cases reopened][102]
|
12023
12325
|
#
|
12024
12326
|
# RESOLVED\_CASE\_ACTIONS
|
12025
12327
|
#
|
@@ -12029,7 +12331,7 @@ module Aws::Connect
|
|
12029
12331
|
#
|
12030
12332
|
# Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
|
12031
12333
|
#
|
12032
|
-
# UI name: [Cases resolved][
|
12334
|
+
# UI name: [Cases resolved][103]
|
12033
12335
|
#
|
12034
12336
|
# SERVICE\_LEVEL
|
12035
12337
|
#
|
@@ -12044,7 +12346,7 @@ module Aws::Connect
|
|
12044
12346
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12045
12347
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12046
12348
|
#
|
12047
|
-
# UI name: [Service level X][
|
12349
|
+
# UI name: [Service level X][104]
|
12048
12350
|
#
|
12049
12351
|
# STEP\_CONTACTS\_QUEUED
|
12050
12352
|
#
|
@@ -12075,7 +12377,7 @@ module Aws::Connect
|
|
12075
12377
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12076
12378
|
# Agent, Agent Hierarchy
|
12077
12379
|
#
|
12078
|
-
# UI name: [Agent API connecting time][
|
12380
|
+
# UI name: [Agent API connecting time][105]
|
12079
12381
|
#
|
12080
12382
|
# <note markdown="1"> The `Negate` key in metric-level filters is not applicable for
|
12081
12383
|
# this metric.
|
@@ -12097,7 +12399,7 @@ module Aws::Connect
|
|
12097
12399
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12098
12400
|
# RoutingStepExpression, Q in Connect
|
12099
12401
|
#
|
12100
|
-
# UI name: [Contact abandoned][
|
12402
|
+
# UI name: [Contact abandoned][106]
|
12101
12403
|
#
|
12102
12404
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
12103
12405
|
#
|
@@ -12110,7 +12412,7 @@ module Aws::Connect
|
|
12110
12412
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12111
12413
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12112
12414
|
#
|
12113
|
-
# UI name: [Contacts abandoned in X seconds][
|
12415
|
+
# UI name: [Contacts abandoned in X seconds][107]
|
12114
12416
|
#
|
12115
12417
|
# SUM\_CONTACTS\_ANSWERED\_IN\_X
|
12116
12418
|
#
|
@@ -12123,7 +12425,7 @@ module Aws::Connect
|
|
12123
12425
|
# 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
|
12124
12426
|
# (for "Less than") or `LTE` (for "Less than equal").
|
12125
12427
|
#
|
12126
|
-
# UI name: [Contacts answered in X seconds][
|
12428
|
+
# UI name: [Contacts answered in X seconds][108]
|
12127
12429
|
#
|
12128
12430
|
# SUM\_CONTACT\_FLOW\_TIME
|
12129
12431
|
#
|
@@ -12132,7 +12434,7 @@ module Aws::Connect
|
|
12132
12434
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12133
12435
|
# Agent, Agent Hierarchy, Q in Connect
|
12134
12436
|
#
|
12135
|
-
# UI name: [Contact flow time][
|
12437
|
+
# UI name: [Contact flow time][109]
|
12136
12438
|
#
|
12137
12439
|
# SUM\_CONTACT\_TIME\_AGENT
|
12138
12440
|
#
|
@@ -12141,7 +12443,7 @@ module Aws::Connect
|
|
12141
12443
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12142
12444
|
# Hierarchy
|
12143
12445
|
#
|
12144
|
-
# UI name: [Agent on contact time][
|
12446
|
+
# UI name: [Agent on contact time][110]
|
12145
12447
|
#
|
12146
12448
|
# SUM\_CONTACTS\_DISCONNECTED
|
12147
12449
|
#
|
@@ -12153,7 +12455,7 @@ module Aws::Connect
|
|
12153
12455
|
# Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
|
12154
12456
|
# Q in Connect
|
12155
12457
|
#
|
12156
|
-
# UI name: [Contact disconnected][
|
12458
|
+
# UI name: [Contact disconnected][111]
|
12157
12459
|
#
|
12158
12460
|
# SUM\_ERROR\_STATUS\_TIME\_AGENT
|
12159
12461
|
#
|
@@ -12162,7 +12464,7 @@ module Aws::Connect
|
|
12162
12464
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12163
12465
|
# Hierarchy
|
12164
12466
|
#
|
12165
|
-
# UI name: [Error status time][
|
12467
|
+
# UI name: [Error status time][112]
|
12166
12468
|
#
|
12167
12469
|
# SUM\_HANDLE\_TIME
|
12168
12470
|
#
|
@@ -12171,7 +12473,7 @@ module Aws::Connect
|
|
12171
12473
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12172
12474
|
# Agent, Agent Hierarchy, Q in Connect
|
12173
12475
|
#
|
12174
|
-
# UI name: [Contact handle time][
|
12476
|
+
# UI name: [Contact handle time][113]
|
12175
12477
|
#
|
12176
12478
|
# SUM\_HOLD\_TIME
|
12177
12479
|
#
|
@@ -12180,7 +12482,7 @@ module Aws::Connect
|
|
12180
12482
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12181
12483
|
# Agent, Agent Hierarchy, Q in Connect
|
12182
12484
|
#
|
12183
|
-
# UI name: [Customer hold time][
|
12485
|
+
# UI name: [Customer hold time][114]
|
12184
12486
|
#
|
12185
12487
|
# SUM\_IDLE\_TIME\_AGENT
|
12186
12488
|
#
|
@@ -12189,7 +12491,7 @@ module Aws::Connect
|
|
12189
12491
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12190
12492
|
# Hierarchy
|
12191
12493
|
#
|
12192
|
-
# UI name: [Agent idle time][
|
12494
|
+
# UI name: [Agent idle time][115]
|
12193
12495
|
#
|
12194
12496
|
# SUM\_INTERACTION\_AND\_HOLD\_TIME
|
12195
12497
|
#
|
@@ -12198,7 +12500,7 @@ module Aws::Connect
|
|
12198
12500
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12199
12501
|
# Agent, Agent Hierarchy, Q in Connect
|
12200
12502
|
#
|
12201
|
-
# UI name: [Agent interaction and hold time][
|
12503
|
+
# UI name: [Agent interaction and hold time][116]
|
12202
12504
|
#
|
12203
12505
|
# SUM\_INTERACTION\_TIME
|
12204
12506
|
#
|
@@ -12207,7 +12509,7 @@ module Aws::Connect
|
|
12207
12509
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12208
12510
|
# Agent, Agent Hierarchy
|
12209
12511
|
#
|
12210
|
-
# UI name: [Agent interaction time][
|
12512
|
+
# UI name: [Agent interaction time][117]
|
12211
12513
|
#
|
12212
12514
|
# SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
|
12213
12515
|
#
|
@@ -12216,7 +12518,7 @@ module Aws::Connect
|
|
12216
12518
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12217
12519
|
# Hierarchy
|
12218
12520
|
#
|
12219
|
-
# UI name: [Agent non-productive time][
|
12521
|
+
# UI name: [Agent non-productive time][118]
|
12220
12522
|
#
|
12221
12523
|
# SUM\_ONLINE\_TIME\_AGENT
|
12222
12524
|
#
|
@@ -12225,7 +12527,7 @@ module Aws::Connect
|
|
12225
12527
|
# Valid groupings and filters: Routing Profile, Agent, Agent
|
12226
12528
|
# Hierarchy
|
12227
12529
|
#
|
12228
|
-
# UI name: [Online time][
|
12530
|
+
# UI name: [Online time][119]
|
12229
12531
|
#
|
12230
12532
|
# SUM\_RETRY\_CALLBACK\_ATTEMPTS
|
12231
12533
|
#
|
@@ -12234,7 +12536,7 @@ module Aws::Connect
|
|
12234
12536
|
# Valid groupings and filters: Queue, Channel, Routing Profile,
|
12235
12537
|
# contact/segmentAttributes/connect:Subtype, Q in Connect
|
12236
12538
|
#
|
12237
|
-
# UI name: [Callback attempts][
|
12539
|
+
# UI name: [Callback attempts][120]
|
12238
12540
|
#
|
12239
12541
|
#
|
12240
12542
|
#
|
@@ -12259,93 +12561,105 @@ module Aws::Connect
|
|
12259
12561
|
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-contacts-per-case
|
12260
12562
|
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-case-resolution-time
|
12261
12563
|
# [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#
|
12564
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-average-contact-first-response-wait-time
|
12565
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-conversation-close-time
|
12566
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-conversation-duration
|
12567
|
+
# [25]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-dials-per-minute
|
12568
|
+
# [26]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-evaluation-score
|
12569
|
+
# [27]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-first-response-time
|
12570
|
+
# [28]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-flow-time
|
12571
|
+
# [29]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-greeting-time
|
12572
|
+
# [30]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-handle-time
|
12573
|
+
# [31]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time
|
12574
|
+
# [32]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time-all-contacts
|
12575
|
+
# [33]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-holds
|
12576
|
+
# [34]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-and-customer-hold-time
|
12577
|
+
# [35]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-time
|
12578
|
+
# [36]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interruptions
|
12579
|
+
# [37]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interruption-time
|
12580
|
+
# [38]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-message-length
|
12581
|
+
# [39]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-message-length
|
12582
|
+
# [40]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-messages
|
12583
|
+
# [41]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-messages
|
12584
|
+
# [42]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-bot-messages
|
12585
|
+
# [43]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-messages
|
12586
|
+
# [44]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-non-talk-time
|
12587
|
+
# [45]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time
|
12588
|
+
# [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-response-time-agent
|
12589
|
+
# [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-time-agent
|
12590
|
+
# [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-resolution-time
|
12591
|
+
# [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-talk-time
|
12592
|
+
# [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-talk-time
|
12593
|
+
# [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-talk-time
|
12594
|
+
# [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection
|
12595
|
+
# [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-weighted-evaluation-score
|
12596
|
+
# [54]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed
|
12597
|
+
# [55]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed
|
12598
|
+
# [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x
|
12599
|
+
# [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x-rate
|
12600
|
+
# [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-interactions
|
12601
|
+
# [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-progress-rate
|
12602
|
+
# [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-attempts
|
12603
|
+
# [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-exclusions
|
12604
|
+
# [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-created
|
12605
|
+
# [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-created
|
12606
|
+
# [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#api-contacts-handled
|
12607
|
+
# [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-by-connected-to-agent-timestamp
|
12608
|
+
# [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
12609
|
+
# [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-agent-disconnect
|
12610
|
+
# [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-customer-disconnect
|
12611
|
+
# [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-put-on-hold
|
12612
|
+
# [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-external
|
12613
|
+
# [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-internal
|
12614
|
+
# [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
12615
|
+
# [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued-by-enqueue
|
12616
|
+
# [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-removed-from-queue
|
12617
|
+
# [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-resolved
|
12618
|
+
# [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
12619
|
+
# [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-by-agent
|
12620
|
+
# [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
12621
|
+
# [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#current-cases
|
12622
|
+
# [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#conversations-abandoned
|
12623
|
+
# [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempts
|
12624
|
+
# [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempt-disposition-rate
|
12625
|
+
# [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#evaluations-performed
|
12626
|
+
# [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
|
12627
|
+
# [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-started
|
12628
|
+
# [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#human-answered
|
12629
|
+
# [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-flow-time
|
12630
|
+
# [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-queued-time
|
12631
|
+
# [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
12632
|
+
# [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#automatic-fails-percent
|
12633
|
+
# [91]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome
|
12634
|
+
# [92]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome
|
12635
|
+
# [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved-on-first-contact
|
12636
|
+
# [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome-percentage
|
12637
|
+
# [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-talk-time-percent
|
12638
|
+
# [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#talk-time-percent
|
12639
|
+
# [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-talk-time-percent
|
12640
|
+
# [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-talk-time-percent
|
12641
|
+
# [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-attempted
|
12642
|
+
# [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-interacted
|
12643
|
+
# [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-targeted
|
12644
|
+
# [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-reopened
|
12645
|
+
# [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved
|
12646
|
+
# [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
|
12647
|
+
# [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time
|
12648
|
+
# [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
12649
|
+
# [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned-in-x-seconds
|
12650
|
+
# [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-answered-in-x-seconds
|
12651
|
+
# [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-flow-time
|
12652
|
+
# [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-on-contact-time
|
12653
|
+
# [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-disconnected
|
12654
|
+
# [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-status-time
|
12655
|
+
# [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-handle-time
|
12656
|
+
# [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-hold-time
|
12657
|
+
# [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-idle-time
|
12658
|
+
# [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-and-hold-time
|
12659
|
+
# [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-time
|
12660
|
+
# [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-productive-time
|
12661
|
+
# [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-time
|
12662
|
+
# [120]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-attempts
|
12349
12663
|
# @return [Array<Types::MetricV2>]
|
12350
12664
|
#
|
12351
12665
|
# @!attribute [rw] next_token
|
@@ -12498,8 +12812,8 @@ module Aws::Connect
|
|
12498
12812
|
# @return [String]
|
12499
12813
|
#
|
12500
12814
|
# @!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
|
12815
|
+
# The ContactFlowId for the flow that will be run if this template is
|
12816
|
+
# used to create a self-assigned task.
|
12503
12817
|
# @return [String]
|
12504
12818
|
#
|
12505
12819
|
# @!attribute [rw] constraints
|
@@ -12956,16 +13270,245 @@ module Aws::Connect
|
|
12956
13270
|
include Aws::Structure
|
12957
13271
|
end
|
12958
13272
|
|
12959
|
-
# Contains information about a historical metric.
|
12960
|
-
# each metric, see [Metrics definitions][1] in the *Amazon Connect
|
12961
|
-
# Administrator Guide*.
|
13273
|
+
# Contains information about a historical metric.
|
12962
13274
|
#
|
13275
|
+
# @!attribute [rw] name
|
13276
|
+
# The name of the metric. Following is a list of each supported metric
|
13277
|
+
# mapped to the UI name, linked to a detailed description in the
|
13278
|
+
# *Amazon Connect Administrator Guide*.
|
12963
13279
|
#
|
13280
|
+
# ABANDON\_TIME
|
12964
13281
|
#
|
12965
|
-
#
|
13282
|
+
# : Unit: SECONDS
|
12966
13283
|
#
|
12967
|
-
#
|
12968
|
-
#
|
13284
|
+
# Statistic: AVG
|
13285
|
+
#
|
13286
|
+
# UI name: [Average queue abandon time][1]
|
13287
|
+
#
|
13288
|
+
# AFTER\_CONTACT\_WORK\_TIME
|
13289
|
+
#
|
13290
|
+
# : Unit: SECONDS
|
13291
|
+
#
|
13292
|
+
# Statistic: AVG
|
13293
|
+
#
|
13294
|
+
# UI name: [After contact work time][2]
|
13295
|
+
#
|
13296
|
+
# API\_CONTACTS\_HANDLED
|
13297
|
+
#
|
13298
|
+
# : Unit: COUNT
|
13299
|
+
#
|
13300
|
+
# Statistic: SUM
|
13301
|
+
#
|
13302
|
+
# UI name: [API contacts handled][3]
|
13303
|
+
#
|
13304
|
+
# AVG\_HOLD\_TIME
|
13305
|
+
#
|
13306
|
+
# : Unit: SECONDS
|
13307
|
+
#
|
13308
|
+
# Statistic: AVG
|
13309
|
+
#
|
13310
|
+
# UI name: [Average customer hold time][4]
|
13311
|
+
#
|
13312
|
+
# CALLBACK\_CONTACTS\_HANDLED
|
13313
|
+
#
|
13314
|
+
# : Unit: COUNT
|
13315
|
+
#
|
13316
|
+
# Statistic: SUM
|
13317
|
+
#
|
13318
|
+
# UI name: [Callback contacts handled][5]
|
13319
|
+
#
|
13320
|
+
# CONTACTS\_ABANDONED
|
13321
|
+
#
|
13322
|
+
# : Unit: COUNT
|
13323
|
+
#
|
13324
|
+
# Statistic: SUM
|
13325
|
+
#
|
13326
|
+
# UI name: [Contacts abandoned][6]
|
13327
|
+
#
|
13328
|
+
# CONTACTS\_AGENT\_HUNG\_UP\_FIRST
|
13329
|
+
#
|
13330
|
+
# : Unit: COUNT
|
13331
|
+
#
|
13332
|
+
# Statistic: SUM
|
13333
|
+
#
|
13334
|
+
# UI name: [Contacts agent hung up first][7]
|
13335
|
+
#
|
13336
|
+
# CONTACTS\_CONSULTED
|
13337
|
+
#
|
13338
|
+
# : Unit: COUNT
|
13339
|
+
#
|
13340
|
+
# Statistic: SUM
|
13341
|
+
#
|
13342
|
+
# UI name: [Contacts consulted][8]
|
13343
|
+
#
|
13344
|
+
# CONTACTS\_HANDLED
|
13345
|
+
#
|
13346
|
+
# : Unit: COUNT
|
13347
|
+
#
|
13348
|
+
# Statistic: SUM
|
13349
|
+
#
|
13350
|
+
# UI name: [Contacts handled][9]
|
13351
|
+
#
|
13352
|
+
# CONTACTS\_HANDLED\_INCOMING
|
13353
|
+
#
|
13354
|
+
# : Unit: COUNT
|
13355
|
+
#
|
13356
|
+
# Statistic: SUM
|
13357
|
+
#
|
13358
|
+
# UI name: [Contacts handled incoming][10]
|
13359
|
+
#
|
13360
|
+
# CONTACTS\_HANDLED\_OUTBOUND
|
13361
|
+
#
|
13362
|
+
# : Unit: COUNT
|
13363
|
+
#
|
13364
|
+
# Statistic: SUM
|
13365
|
+
#
|
13366
|
+
# UI name: [Contacts handled outbound][11]
|
13367
|
+
#
|
13368
|
+
# CONTACTS\_HOLD\_ABANDONS
|
13369
|
+
#
|
13370
|
+
# : Unit: COUNT
|
13371
|
+
#
|
13372
|
+
# Statistic: SUM
|
13373
|
+
#
|
13374
|
+
# UI name: [Contacts hold disconnect][12]
|
13375
|
+
#
|
13376
|
+
# CONTACTS\_MISSED
|
13377
|
+
#
|
13378
|
+
# : Unit: COUNT
|
13379
|
+
#
|
13380
|
+
# Statistic: SUM
|
13381
|
+
#
|
13382
|
+
# UI name: [AGENT\_NON\_RESPONSE][13]
|
13383
|
+
#
|
13384
|
+
# CONTACTS\_QUEUED
|
13385
|
+
#
|
13386
|
+
# : Unit: COUNT
|
13387
|
+
#
|
13388
|
+
# Statistic: SUM
|
13389
|
+
#
|
13390
|
+
# UI name: [Contacts queued][14]
|
13391
|
+
#
|
13392
|
+
# CONTACTS\_TRANSFERRED\_IN
|
13393
|
+
#
|
13394
|
+
# : Unit: COUNT
|
13395
|
+
#
|
13396
|
+
# Statistic: SUM
|
13397
|
+
#
|
13398
|
+
# UI name: [Contacts transferred in][15]
|
13399
|
+
#
|
13400
|
+
# CONTACTS\_TRANSFERRED\_IN\_FROM\_QUEUE
|
13401
|
+
#
|
13402
|
+
# : Unit: COUNT
|
13403
|
+
#
|
13404
|
+
# Statistic: SUM
|
13405
|
+
#
|
13406
|
+
# UI name: [Contacts transferred out queue][16]
|
13407
|
+
#
|
13408
|
+
# CONTACTS\_TRANSFERRED\_OUT
|
13409
|
+
#
|
13410
|
+
# : Unit: COUNT
|
13411
|
+
#
|
13412
|
+
# Statistic: SUM
|
13413
|
+
#
|
13414
|
+
# UI name: [Contacts transferred out][17]
|
13415
|
+
#
|
13416
|
+
# CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
|
13417
|
+
#
|
13418
|
+
# : Unit: COUNT
|
13419
|
+
#
|
13420
|
+
# Statistic: SUM
|
13421
|
+
#
|
13422
|
+
# UI name: [Contacts transferred out queue][16]
|
13423
|
+
#
|
13424
|
+
# HANDLE\_TIME
|
13425
|
+
#
|
13426
|
+
# : Unit: SECONDS
|
13427
|
+
#
|
13428
|
+
# Statistic: AVG
|
13429
|
+
#
|
13430
|
+
# UI name: [Average handle time][18]
|
13431
|
+
#
|
13432
|
+
# INTERACTION\_AND\_HOLD\_TIME
|
13433
|
+
#
|
13434
|
+
# : Unit: SECONDS
|
13435
|
+
#
|
13436
|
+
# Statistic: AVG
|
13437
|
+
#
|
13438
|
+
# UI name: [Average agent interaction and customer hold time][19]
|
13439
|
+
#
|
13440
|
+
# INTERACTION\_TIME
|
13441
|
+
#
|
13442
|
+
# : Unit: SECONDS
|
13443
|
+
#
|
13444
|
+
# Statistic: AVG
|
13445
|
+
#
|
13446
|
+
# UI name: [Average agent interaction time][20]
|
13447
|
+
#
|
13448
|
+
# OCCUPANCY
|
13449
|
+
#
|
13450
|
+
# : Unit: PERCENT
|
13451
|
+
#
|
13452
|
+
# Statistic: AVG
|
13453
|
+
#
|
13454
|
+
# UI name: [Occupancy][21]
|
13455
|
+
#
|
13456
|
+
# QUEUE\_ANSWER\_TIME
|
13457
|
+
#
|
13458
|
+
# : Unit: SECONDS
|
13459
|
+
#
|
13460
|
+
# Statistic: AVG
|
13461
|
+
#
|
13462
|
+
# UI name: [Average queue answer time][22]
|
13463
|
+
#
|
13464
|
+
# QUEUED\_TIME
|
13465
|
+
#
|
13466
|
+
# : Unit: SECONDS
|
13467
|
+
#
|
13468
|
+
# Statistic: MAX
|
13469
|
+
#
|
13470
|
+
# UI name: [Minimum flow time][23]
|
13471
|
+
#
|
13472
|
+
# SERVICE\_LEVEL
|
13473
|
+
#
|
13474
|
+
# : You can include up to 20 SERVICE\_LEVEL metrics in a request.
|
13475
|
+
#
|
13476
|
+
# Unit: PERCENT
|
13477
|
+
#
|
13478
|
+
# Statistic: AVG
|
13479
|
+
#
|
13480
|
+
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
13481
|
+
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
13482
|
+
# `LT` (for "Less than").
|
13483
|
+
#
|
13484
|
+
# UI name: [Service level X][24]
|
13485
|
+
#
|
13486
|
+
#
|
13487
|
+
#
|
13488
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-abandon-time
|
13489
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#after-contact-work-time
|
13490
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#api-contacts-handled
|
13491
|
+
# [4]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-hold-time
|
13492
|
+
# [5]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-contacts-handled
|
13493
|
+
# [6]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
|
13494
|
+
# [7]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-agent-hung-up-first
|
13495
|
+
# [8]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-consulted
|
13496
|
+
# [9]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled
|
13497
|
+
# [10]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-incoming
|
13498
|
+
# [11]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-outbound
|
13499
|
+
# [12]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
|
13500
|
+
# [13]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-response
|
13501
|
+
# [14]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
|
13502
|
+
# [15]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-in
|
13503
|
+
# [16]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
|
13504
|
+
# [17]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
|
13505
|
+
# [18]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-handle-time
|
13506
|
+
# [19]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-interaction-and-customer-hold-time
|
13507
|
+
# [20]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#aaverage-agent-interaction-time
|
13508
|
+
# [21]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#occupancy
|
13509
|
+
# [22]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html##average-queue-answer-time
|
13510
|
+
# [23]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
|
13511
|
+
# [24]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
|
12969
13512
|
# @return [String]
|
12970
13513
|
#
|
12971
13514
|
# @!attribute [rw] threshold
|
@@ -14239,11 +14782,6 @@ module Aws::Connect
|
|
14239
14782
|
#
|
14240
14783
|
# @!attribute [rw] max_results
|
14241
14784
|
# 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
14785
|
# @return [Integer]
|
14248
14786
|
#
|
14249
14787
|
# @!attribute [rw] next_token
|
@@ -14882,7 +15420,7 @@ module Aws::Connect
|
|
14882
15420
|
# @return [String]
|
14883
15421
|
#
|
14884
15422
|
# @!attribute [rw] hours_of_operation_id
|
14885
|
-
# The identifier for the hours of operation
|
15423
|
+
# The identifier for the hours of operation.
|
14886
15424
|
# @return [String]
|
14887
15425
|
#
|
14888
15426
|
# @!attribute [rw] next_token
|
@@ -14892,9 +15430,7 @@ module Aws::Connect
|
|
14892
15430
|
# @return [String]
|
14893
15431
|
#
|
14894
15432
|
# @!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.
|
15433
|
+
# The maximum number of results to return per page.
|
14898
15434
|
# @return [Integer]
|
14899
15435
|
#
|
14900
15436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListHoursOfOperationOverridesRequest AWS API Documentation
|
@@ -14919,7 +15455,8 @@ module Aws::Connect
|
|
14919
15455
|
# @return [Array<Types::HoursOfOperationOverride>]
|
14920
15456
|
#
|
14921
15457
|
# @!attribute [rw] last_modified_region
|
14922
|
-
# The
|
15458
|
+
# The Amazon Web Services Region where this resource was last
|
15459
|
+
# modified.
|
14923
15460
|
# @return [String]
|
14924
15461
|
#
|
14925
15462
|
# @!attribute [rw] last_modified_time
|
@@ -19472,7 +20009,11 @@ module Aws::Connect
|
|
19472
20009
|
include Aws::Structure
|
19473
20010
|
end
|
19474
20011
|
|
19475
|
-
# That resource is already in use
|
20012
|
+
# That resource is already in use (for example, you're trying to add a
|
20013
|
+
# record with the same name as an existing record). If you are trying to
|
20014
|
+
# delete a resource (for example, DeleteHoursOfOperation or
|
20015
|
+
# DeletePredefinedAttribute), remove its reference from related
|
20016
|
+
# resources and then try again.
|
19476
20017
|
#
|
19477
20018
|
# @!attribute [rw] message
|
19478
20019
|
# @return [String]
|
@@ -20741,13 +21282,11 @@ module Aws::Connect
|
|
20741
21282
|
# @!attribute [rw] next_token
|
20742
21283
|
# The token for the next set of results. Use the value returned in the
|
20743
21284
|
# previous response in the next request to retrieve the next set of
|
20744
|
-
# results.
|
20745
|
-
# 2500.
|
21285
|
+
# results.
|
20746
21286
|
# @return [String]
|
20747
21287
|
#
|
20748
21288
|
# @!attribute [rw] max_results
|
20749
|
-
# The maximum number of results to return per page.
|
20750
|
-
# Minimum value of 1. Maximum value of 100.
|
21289
|
+
# The maximum number of results to return per page.
|
20751
21290
|
# @return [Integer]
|
20752
21291
|
#
|
20753
21292
|
# @!attribute [rw] search_filter
|
@@ -20778,8 +21317,7 @@ module Aws::Connect
|
|
20778
21317
|
# @!attribute [rw] next_token
|
20779
21318
|
# The token for the next set of results. Use the value returned in the
|
20780
21319
|
# previous response in the next request to retrieve the next set of
|
20781
|
-
# results.
|
20782
|
-
# 2500.
|
21320
|
+
# results.
|
20783
21321
|
# @return [String]
|
20784
21322
|
#
|
20785
21323
|
# @!attribute [rw] approximate_total_count
|
@@ -22677,7 +23215,7 @@ module Aws::Connect
|
|
22677
23215
|
# @return [Types::InboundEmailContent]
|
22678
23216
|
#
|
22679
23217
|
# @!attribute [rw] additional_recipients
|
22680
|
-
# The
|
23218
|
+
# The additional recipients address of the email.
|
22681
23219
|
# @return [Types::InboundAdditionalRecipients]
|
22682
23220
|
#
|
22683
23221
|
# @!attribute [rw] attachments
|