aws-sdk-connect 1.216.0 → 1.217.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.
@@ -3996,6 +3996,7 @@ module Aws::Connect
3996
3996
  # auto_accept: false,
3997
3997
  # after_contact_work_time_limit: 1,
3998
3998
  # desk_phone_number: "PhoneNumber",
3999
+ # persistent_connection: false,
3999
4000
  # },
4000
4001
  # directory_user_id: "DirectoryUserId",
4001
4002
  # security_profile_ids: ["SecurityProfileId"], # required
@@ -6799,6 +6800,7 @@ module Aws::Connect
6799
6800
  # resp.user.phone_config.auto_accept #=> Boolean
6800
6801
  # resp.user.phone_config.after_contact_work_time_limit #=> Integer
6801
6802
  # resp.user.phone_config.desk_phone_number #=> String
6803
+ # resp.user.phone_config.persistent_connection #=> Boolean
6802
6804
  # resp.user.directory_user_id #=> String
6803
6805
  # resp.user.security_profile_ids #=> Array
6804
6806
  # resp.user.security_profile_ids[0] #=> String
@@ -7477,6 +7479,10 @@ module Aws::Connect
7477
7479
 
7478
7480
  # Disassociates a set of queues from a routing profile.
7479
7481
  #
7482
+ # Up to 10 queue references can be disassociated in a single API call.
7483
+ # More than 10 queue references results in a single call results in an
7484
+ # InvalidParameterException.
7485
+ #
7480
7486
  # @option params [required, String] :instance_id
7481
7487
  # The identifier of the Amazon Connect instance. You can [find the
7482
7488
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -7786,22 +7792,38 @@ module Aws::Connect
7786
7792
  req.send_request(options)
7787
7793
  end
7788
7794
 
7789
- # Gets the real-time metrics of the specified contact.
7795
+ # Retrieves the position of the contact in the queue.
7790
7796
  #
7791
7797
  # **Use cases**
7792
7798
  #
7793
- # Following are common uses cases for this API:
7799
+ # Following are common uses cases for position in queue:
7794
7800
  #
7795
- # * You can use this API to retrieve the position of the contact in the
7796
- # queue.
7801
+ # * Understand the expected wait experience of a contact.
7802
+ #
7803
+ # * Inform customers of their position in queue and potentially offer a
7804
+ # callback.
7805
+ #
7806
+ # * Make data-driven routing decisions between primary and alternative
7807
+ # queues.
7808
+ #
7809
+ # * Enhance queue visibility and leverage agent proficiencies to
7810
+ # streamline contact routing.
7811
+ #
7812
+ # **Important things to know**
7797
7813
  #
7798
- # ^
7814
+ # * The only way to retrieve the position of the contact in queue is by
7815
+ # using this API. You can't retrieve the position by using flows and
7816
+ # attributes.
7799
7817
  #
7800
- # **Endpoints**: See [Amazon Connect endpoints and quotas][1].
7818
+ # * For more information, see the [Position in queue][1] metric in the
7819
+ # *Amazon Connect Administrator Guide*.
7820
+ #
7821
+ # **Endpoints**: See [Amazon Connect endpoints and quotas][2].
7801
7822
  #
7802
7823
  #
7803
7824
  #
7804
- # [1]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
7825
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
7826
+ # [2]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
7805
7827
  #
7806
7828
  # @option params [required, String] :instance_id
7807
7829
  # The identifier of the Amazon Connect instance. You can [find the
@@ -9151,6 +9173,8 @@ module Aws::Connect
9151
9173
  # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
9152
9174
  # Q in Connect
9153
9175
  #
9176
+ # Valid metric filter key: `INITIATION_METHOD`
9177
+ #
9154
9178
  # UI name: [Average queue abandon time][12]
9155
9179
  #
9156
9180
  # AVG\_ACTIVE\_TIME
@@ -9543,10 +9567,23 @@ module Aws::Connect
9543
9567
  #
9544
9568
  # UI name: [Average queue answer time][45]
9545
9569
  #
9570
+ # Valid metric level filters: `INITIATION_METHOD`, `FEATURE`,
9571
+ # `DISCONNECT_REASON`
9572
+ #
9546
9573
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
9547
9574
  #
9548
9575
  # </note>
9549
9576
  #
9577
+ # AVG\_QUEUE\_ANSWER\_TIME\_CUSTOMER\_FIRST\_CALLBACK
9578
+ #
9579
+ # : Unit: Seconds
9580
+ #
9581
+ # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9582
+ # Feature, contact/segmentAttributes/connect:Subtype, Q in Connect,
9583
+ # Agent Hierarchy
9584
+ #
9585
+ # UI name: [Avg. queue answer time - customer first callback][46]
9586
+ #
9550
9587
  # AVG\_RESPONSE\_TIME\_AGENT
9551
9588
  #
9552
9589
  # : Unit: Seconds
@@ -9556,7 +9593,7 @@ module Aws::Connect
9556
9593
  # Feature, RoutingStepExpression, Initiation method, Routing Profile,
9557
9594
  # Queue, Q in Connect
9558
9595
  #
9559
- # UI name: [Average agent response time][46]
9596
+ # UI name: [Average agent response time][47]
9560
9597
  #
9561
9598
  # AVG\_RESPONSE\_TIME\_CUSTOMER
9562
9599
  #
@@ -9567,7 +9604,7 @@ module Aws::Connect
9567
9604
  # Feature, RoutingStepExpression, Initiation method, Routing Profile,
9568
9605
  # Queue, Q in Connect
9569
9606
  #
9570
- # UI name: [Average customer response time][47]
9607
+ # UI name: [Average customer response time][48]
9571
9608
  #
9572
9609
  # AVG\_RESOLUTION\_TIME
9573
9610
  #
@@ -9576,7 +9613,7 @@ module Aws::Connect
9576
9613
  # Valid groupings and filters: Queue, Channel, Routing Profile,
9577
9614
  # contact/segmentAttributes/connect:Subtype, Q in Connect
9578
9615
  #
9579
- # UI name: [Average resolution time][48]
9616
+ # UI name: [Average resolution time][49]
9580
9617
  #
9581
9618
  # AVG\_TALK\_TIME
9582
9619
  #
@@ -9589,7 +9626,7 @@ module Aws::Connect
9589
9626
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9590
9627
  # Connect
9591
9628
  #
9592
- # UI name: [Average talk time][49]
9629
+ # UI name: [Average talk time][50]
9593
9630
  #
9594
9631
  # AVG\_TALK\_TIME\_AGENT
9595
9632
  #
@@ -9602,7 +9639,7 @@ module Aws::Connect
9602
9639
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9603
9640
  # Connect
9604
9641
  #
9605
- # UI name: [Average agent talk time][50]
9642
+ # UI name: [Average agent talk time][51]
9606
9643
  #
9607
9644
  # AVG\_TALK\_TIME\_CUSTOMER
9608
9645
  #
@@ -9615,7 +9652,7 @@ module Aws::Connect
9615
9652
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9616
9653
  # Connect
9617
9654
  #
9618
- # UI name: [Average customer talk time][51]
9655
+ # UI name: [Average customer talk time][52]
9619
9656
  #
9620
9657
  # AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
9621
9658
  #
@@ -9626,7 +9663,18 @@ module Aws::Connect
9626
9663
  #
9627
9664
  # Valid groupings and filters: Campaign
9628
9665
  #
9629
- # UI name: [Average wait time after customer connection][52]
9666
+ # UI name: [Average wait time after customer connection][53]
9667
+ #
9668
+ # AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_FIRST\_CALLBACK\_CONNECTION
9669
+ #
9670
+ # : Unit: Seconds
9671
+ #
9672
+ # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9673
+ # Feature, contact/segmentAttributes/connect:Subtype, Q in Connect,
9674
+ # Agent Hierarchy
9675
+ #
9676
+ # UI name: [Avg. wait time after customer connection - customer first
9677
+ # callback][54]
9630
9678
  #
9631
9679
  # AVG\_WEIGHTED\_EVALUATION\_SCORE
9632
9680
  #
@@ -9636,7 +9684,7 @@ module Aws::Connect
9636
9684
  # Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
9637
9685
  # Evaluation Source, Form Version, Queue, Routing Profile
9638
9686
  #
9639
- # UI name: [Average weighted evaluation score][53]
9687
+ # UI name: [Average weighted evaluation score][55]
9640
9688
  #
9641
9689
  # BOT\_CONVERSATIONS\_COMPLETED
9642
9690
  #
@@ -9648,7 +9696,7 @@ module Aws::Connect
9648
9696
  # Flow type, Flow action ID, Invoking resource published timestamp,
9649
9697
  # Initiation method, Invoking resource type, Parent flows resource ID
9650
9698
  #
9651
- # UI name: [Bot conversations completed][54]
9699
+ # UI name: [Bot conversations completed][56]
9652
9700
  #
9653
9701
  # BOT\_INTENTS\_COMPLETED
9654
9702
  #
@@ -9661,7 +9709,7 @@ module Aws::Connect
9661
9709
  # published timestamp, Initiation method, Invoking resource type,
9662
9710
  # Parent flows resource ID
9663
9711
  #
9664
- # UI name: [Bot intents completed][55]
9712
+ # UI name: [Bot intents completed][57]
9665
9713
  #
9666
9714
  # CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
9667
9715
  #
@@ -9676,7 +9724,7 @@ module Aws::Connect
9676
9724
  # 604800 (inclusive), in seconds. For `Comparison`, you must enter
9677
9725
  # `GT` (for *Greater than*).
9678
9726
  #
9679
- # UI name: [Campaign contacts abandoned after X][56]
9727
+ # UI name: [Campaign contacts abandoned after X][58]
9680
9728
  #
9681
9729
  # CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
9682
9730
  #
@@ -9691,7 +9739,7 @@ module Aws::Connect
9691
9739
  # 604800 (inclusive), in seconds. For `Comparison`, you must enter
9692
9740
  # `GT` (for *Greater than*).
9693
9741
  #
9694
- # UI name: [Campaign contacts abandoned after X rate][57]
9742
+ # UI name: [Campaign contacts abandoned after X rate][59]
9695
9743
  #
9696
9744
  # CAMPAIGN\_INTERACTIONS
9697
9745
  #
@@ -9704,7 +9752,7 @@ module Aws::Connect
9704
9752
  #
9705
9753
  # Valid groupings and filters: Campaign
9706
9754
  #
9707
- # UI name: [Campaign interactions][58]
9755
+ # UI name: [Campaign interactions][60]
9708
9756
  #
9709
9757
  # CAMPAIGN\_PROGRESS\_RATE
9710
9758
  #
@@ -9716,7 +9764,7 @@ module Aws::Connect
9716
9764
  #
9717
9765
  # Valid groupings and filters: Campaign, Campaign Execution Timestamp
9718
9766
  #
9719
- # UI name: [Campaign progress rate][59]
9767
+ # UI name: [Campaign progress rate][61]
9720
9768
  #
9721
9769
  # CAMPAIGN\_SEND\_ATTEMPTS
9722
9770
  #
@@ -9727,7 +9775,7 @@ module Aws::Connect
9727
9775
  # Valid groupings and filters: Campaign, Channel,
9728
9776
  # contact/segmentAttributes/connect:Subtype
9729
9777
  #
9730
- # UI name: [Campaign send attempts][60]
9778
+ # UI name: [Campaign send attempts][62]
9731
9779
  #
9732
9780
  # CAMPAIGN\_SEND\_EXCLUSIONS
9733
9781
  #
@@ -9740,7 +9788,7 @@ module Aws::Connect
9740
9788
  # Valid groupings and filters: Campaign, Campaign Excluded Event Type,
9741
9789
  # Campaign Execution Timestamp
9742
9790
  #
9743
- # UI name: [Campaign send exclusions][61]
9791
+ # UI name: [Campaign send exclusions][63]
9744
9792
  #
9745
9793
  # CASES\_CREATED
9746
9794
  #
@@ -9750,7 +9798,7 @@ module Aws::Connect
9750
9798
  #
9751
9799
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
9752
9800
  #
9753
- # UI name: [Cases created][62]
9801
+ # UI name: [Cases created][64]
9754
9802
  #
9755
9803
  # CONTACTS\_CREATED
9756
9804
  #
@@ -9761,7 +9809,7 @@ module Aws::Connect
9761
9809
  # Valid groupings and filters: Queue, Channel, Routing Profile,
9762
9810
  # Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
9763
9811
  #
9764
- # UI name: [Contacts created][63]
9812
+ # UI name: [Contacts created][65]
9765
9813
  #
9766
9814
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
9767
9815
  #
@@ -9777,7 +9825,7 @@ module Aws::Connect
9777
9825
  # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
9778
9826
  # RoutingStepExpression, Q in Connect
9779
9827
  #
9780
- # UI name: [API contacts handled][64]
9828
+ # UI name: [Contacts handled][66]
9781
9829
  #
9782
9830
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
9783
9831
  #
@@ -9792,7 +9840,7 @@ module Aws::Connect
9792
9840
  # Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
9793
9841
  # contact/segmentAttributes/connect:Subtype, Q in Connect
9794
9842
  #
9795
- # UI name: [Contacts handled (connected to agent timestamp)][65]
9843
+ # UI name: [Contacts handled (connected to agent timestamp)][67]
9796
9844
  #
9797
9845
  # CONTACTS\_HOLD\_ABANDONS
9798
9846
  #
@@ -9802,7 +9850,7 @@ module Aws::Connect
9802
9850
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9803
9851
  # Connect
9804
9852
  #
9805
- # UI name: [Contacts hold disconnect][66]
9853
+ # UI name: [Contacts hold disconnect][68]
9806
9854
  #
9807
9855
  # CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
9808
9856
  #
@@ -9811,7 +9859,7 @@ module Aws::Connect
9811
9859
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9812
9860
  # Agent Hierarchy, Q in Connect
9813
9861
  #
9814
- # UI name: [Contacts hold agent disconnect][67]
9862
+ # UI name: [Contacts hold agent disconnect][69]
9815
9863
  #
9816
9864
  # CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
9817
9865
  #
@@ -9820,7 +9868,7 @@ module Aws::Connect
9820
9868
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9821
9869
  # Agent Hierarchy, Q in Connect
9822
9870
  #
9823
- # UI name: [Contacts hold customer disconnect][68]
9871
+ # UI name: [Contacts hold customer disconnect][70]
9824
9872
  #
9825
9873
  # CONTACTS\_PUT\_ON\_HOLD
9826
9874
  #
@@ -9829,7 +9877,7 @@ module Aws::Connect
9829
9877
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9830
9878
  # Agent Hierarchy, Q in Connect
9831
9879
  #
9832
- # UI name: [Contacts put on hold][69]
9880
+ # UI name: [Contacts put on hold][71]
9833
9881
  #
9834
9882
  # CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
9835
9883
  #
@@ -9838,7 +9886,7 @@ module Aws::Connect
9838
9886
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9839
9887
  # Agent Hierarchy, Q in Connect
9840
9888
  #
9841
- # UI name: [Contacts transferred out external][70]
9889
+ # UI name: [Contacts transferred out external][72]
9842
9890
  #
9843
9891
  # CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
9844
9892
  #
@@ -9847,7 +9895,7 @@ module Aws::Connect
9847
9895
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9848
9896
  # Agent Hierarchy, Q in Connect
9849
9897
  #
9850
- # UI name: [Contacts transferred out internal][71]
9898
+ # UI name: [Contacts transferred out internal][73]
9851
9899
  #
9852
9900
  # CONTACTS\_QUEUED
9853
9901
  #
@@ -9857,7 +9905,7 @@ module Aws::Connect
9857
9905
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9858
9906
  # Connect
9859
9907
  #
9860
- # UI name: [Contacts queued][72]
9908
+ # UI name: [Contacts queued][74]
9861
9909
  #
9862
9910
  # CONTACTS\_QUEUED\_BY\_ENQUEUE
9863
9911
  #
@@ -9866,7 +9914,7 @@ module Aws::Connect
9866
9914
  # Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
9867
9915
  # contact/segmentAttributes/connect:Subtype
9868
9916
  #
9869
- # UI name: [Contacts queued (enqueue timestamp)][73]
9917
+ # UI name: [Contacts queued (enqueue timestamp)][75]
9870
9918
  #
9871
9919
  # CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
9872
9920
  #
@@ -9879,7 +9927,7 @@ module Aws::Connect
9879
9927
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
9880
9928
  # (for "Less than") or `LTE` (for "Less than equal").
9881
9929
  #
9882
- # UI name: [Contacts removed from queue in X seconds][74]
9930
+ # UI name: [Contacts removed from queue in X seconds][76]
9883
9931
  #
9884
9932
  # CONTACTS\_RESOLVED\_IN\_X
9885
9933
  #
@@ -9892,7 +9940,7 @@ module Aws::Connect
9892
9940
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
9893
9941
  # (for "Less than") or `LTE` (for "Less than equal").
9894
9942
  #
9895
- # UI name: [Contacts resolved in X][75]
9943
+ # UI name: [Contacts resolved in X][77]
9896
9944
  #
9897
9945
  # CONTACTS\_TRANSFERRED\_OUT
9898
9946
  #
@@ -9902,7 +9950,7 @@ module Aws::Connect
9902
9950
  # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
9903
9951
  # Q in Connect
9904
9952
  #
9905
- # UI name: [Contacts transferred out][76]
9953
+ # UI name: [Contacts transferred out][78]
9906
9954
  #
9907
9955
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
9908
9956
  #
@@ -9916,7 +9964,7 @@ module Aws::Connect
9916
9964
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9917
9965
  # Connect
9918
9966
  #
9919
- # UI name: [Contacts transferred out by agent][77]
9967
+ # UI name: [Contacts transferred out by agent][79]
9920
9968
  #
9921
9969
  # CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
9922
9970
  #
@@ -9926,7 +9974,7 @@ module Aws::Connect
9926
9974
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9927
9975
  # Connect
9928
9976
  #
9929
- # UI name: [Contacts transferred out queue][78]
9977
+ # UI name: [Contacts transferred out queue][80]
9930
9978
  #
9931
9979
  # CURRENT\_CASES
9932
9980
  #
@@ -9936,7 +9984,7 @@ module Aws::Connect
9936
9984
  #
9937
9985
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
9938
9986
  #
9939
- # UI name: [Current cases][79]
9987
+ # UI name: [Current cases][81]
9940
9988
  #
9941
9989
  # CONVERSATIONS\_ABANDONED
9942
9990
  #
@@ -9947,7 +9995,7 @@ module Aws::Connect
9947
9995
  # Feature, RoutingStepExpression, Initiation method, Routing Profile,
9948
9996
  # Queue, Q in Connect
9949
9997
  #
9950
- # UI name: [Conversations abandoned][80]
9998
+ # UI name: [Conversations abandoned][82]
9951
9999
  #
9952
10000
  # DELIVERY\_ATTEMPTS
9953
10001
  #
@@ -9963,7 +10011,7 @@ module Aws::Connect
9963
10011
  # contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
9964
10012
  # Routing Profile
9965
10013
  #
9966
- # UI name: [Delivery attempts][81]
10014
+ # UI name: [Delivery attempts][83]
9967
10015
  #
9968
10016
  # <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
9969
10017
  # for SMS and Email campaign delivery modes. Agent, Queue, Routing
@@ -9989,7 +10037,7 @@ module Aws::Connect
9989
10037
  # contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
9990
10038
  # Routing Profile
9991
10039
  #
9992
- # UI name: [Delivery attempt disposition rate][82]
10040
+ # UI name: [Delivery attempt disposition rate][84]
9993
10041
  #
9994
10042
  # <note markdown="1"> Campaign Delivery Event Type filter and grouping are only available
9995
10043
  # for SMS and Email campaign delivery modes. Agent, Queue, Routing
@@ -10007,7 +10055,7 @@ module Aws::Connect
10007
10055
  # Evaluation Form ID, Evaluation Source, Form Version, Queue, Routing
10008
10056
  # Profile
10009
10057
  #
10010
- # UI name: [Evaluations performed][83]
10058
+ # UI name: [Evaluations performed][85]
10011
10059
  #
10012
10060
  # FLOWS\_OUTCOME
10013
10061
  #
@@ -10019,7 +10067,7 @@ module Aws::Connect
10019
10067
  # Flows outcome type, Flows resource ID, Initiation method, Resource
10020
10068
  # published timestamp
10021
10069
  #
10022
- # UI name: [Flows outcome][84]
10070
+ # UI name: [Flows outcome][86]
10023
10071
  #
10024
10072
  # FLOWS\_STARTED
10025
10073
  #
@@ -10030,7 +10078,7 @@ module Aws::Connect
10030
10078
  # resource ID, Flows resource ID, Initiation method, Resource
10031
10079
  # published timestamp
10032
10080
  #
10033
- # UI name: [Flows started][85]
10081
+ # UI name: [Flows started][87]
10034
10082
  #
10035
10083
  # HUMAN\_ANSWERED\_CALLS
10036
10084
  #
@@ -10042,7 +10090,7 @@ module Aws::Connect
10042
10090
  #
10043
10091
  # Valid groupings and filters: Agent, Campaign
10044
10092
  #
10045
- # UI name: [Human answered][86]
10093
+ # UI name: [Human answered][88]
10046
10094
  #
10047
10095
  # MAX\_FLOW\_TIME
10048
10096
  #
@@ -10054,7 +10102,7 @@ module Aws::Connect
10054
10102
  # Flows outcome type, Flows resource ID, Initiation method, Resource
10055
10103
  # published timestamp
10056
10104
  #
10057
- # UI name: [Maximum flow time][87]
10105
+ # UI name: [Maximum flow time][89]
10058
10106
  #
10059
10107
  # MAX\_QUEUED\_TIME
10060
10108
  #
@@ -10064,7 +10112,7 @@ module Aws::Connect
10064
10112
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10065
10113
  # Connect
10066
10114
  #
10067
- # UI name: [Maximum queued time][88]
10115
+ # UI name: [Maximum queued time][90]
10068
10116
  #
10069
10117
  # MIN\_FLOW\_TIME
10070
10118
  #
@@ -10076,7 +10124,7 @@ module Aws::Connect
10076
10124
  # Flows outcome type, Flows resource ID, Initiation method, Resource
10077
10125
  # published timestamp
10078
10126
  #
10079
- # UI name: [Minimum flow time][89]
10127
+ # UI name: [Minimum flow time][91]
10080
10128
  #
10081
10129
  # PERCENT\_AUTOMATIC\_FAILS
10082
10130
  #
@@ -10086,7 +10134,7 @@ module Aws::Connect
10086
10134
  # Evaluation Form ID, Evaluation Source, Form Version, Queue, Routing
10087
10135
  # Profile
10088
10136
  #
10089
- # UI name: [Automatic fails percent][90]
10137
+ # UI name: [Automatic fails percent][92]
10090
10138
  #
10091
10139
  # PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
10092
10140
  #
@@ -10098,7 +10146,7 @@ module Aws::Connect
10098
10146
  # Flow type, Flow action ID, Invoking resource published timestamp,
10099
10147
  # Initiation method, Invoking resource type, Parent flows resource ID
10100
10148
  #
10101
- # UI name: [Percent bot conversations outcome][91]
10149
+ # UI name: [Percent bot conversations outcome][93]
10102
10150
  #
10103
10151
  # PERCENT\_BOT\_INTENTS\_OUTCOME
10104
10152
  #
@@ -10111,7 +10159,7 @@ module Aws::Connect
10111
10159
  # published timestamp, Initiation method, Invoking resource type,
10112
10160
  # Parent flows resource ID
10113
10161
  #
10114
- # UI name: [Percent bot intents outcome][92]
10162
+ # UI name: [Percent bot intents outcome][94]
10115
10163
  #
10116
10164
  # PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
10117
10165
  #
@@ -10121,7 +10169,7 @@ module Aws::Connect
10121
10169
  #
10122
10170
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
10123
10171
  #
10124
- # UI name: [Cases resolved on first contact][93]
10172
+ # UI name: [Cases resolved on first contact][95]
10125
10173
  #
10126
10174
  # PERCENT\_CONTACTS\_STEP\_EXPIRED
10127
10175
  #
@@ -10153,7 +10201,7 @@ module Aws::Connect
10153
10201
  # Flows outcome type, Flows resource ID, Initiation method, Resource
10154
10202
  # published timestamp
10155
10203
  #
10156
- # UI name: [Flows outcome percentage][94].
10204
+ # UI name: [Flows outcome percentage][96].
10157
10205
  #
10158
10206
  # <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
10159
10207
  #
@@ -10170,7 +10218,7 @@ module Aws::Connect
10170
10218
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10171
10219
  # Connect
10172
10220
  #
10173
- # UI name: [Non-talk time percent][95]
10221
+ # UI name: [Non-talk time percent][97]
10174
10222
  #
10175
10223
  # PERCENT\_TALK\_TIME
10176
10224
  #
@@ -10183,7 +10231,7 @@ module Aws::Connect
10183
10231
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10184
10232
  # Connect
10185
10233
  #
10186
- # UI name: [Talk time percent][96]
10234
+ # UI name: [Talk time percent][98]
10187
10235
  #
10188
10236
  # PERCENT\_TALK\_TIME\_AGENT
10189
10237
  #
@@ -10196,7 +10244,7 @@ module Aws::Connect
10196
10244
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10197
10245
  # Connect
10198
10246
  #
10199
- # UI name: [Agent talk time percent][97]
10247
+ # UI name: [Agent talk time percent][99]
10200
10248
  #
10201
10249
  # PERCENT\_TALK\_TIME\_CUSTOMER
10202
10250
  #
@@ -10209,7 +10257,7 @@ module Aws::Connect
10209
10257
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10210
10258
  # Connect
10211
10259
  #
10212
- # UI name: [Customer talk time percent][98]
10260
+ # UI name: [Customer talk time percent][100]
10213
10261
  #
10214
10262
  # RECIPIENTS\_ATTEMPTED
10215
10263
  #
@@ -10221,7 +10269,7 @@ module Aws::Connect
10221
10269
  #
10222
10270
  # Valid groupings and filters: Campaign, Campaign Execution Timestamp
10223
10271
  #
10224
- # UI name: [Recipients attempted][99]
10272
+ # UI name: [Recipients attempted][101]
10225
10273
  #
10226
10274
  # RECIPIENTS\_INTERACTED
10227
10275
  #
@@ -10237,7 +10285,7 @@ module Aws::Connect
10237
10285
  # contact/segmentAttributes/connect:Subtype, Campaign Execution
10238
10286
  # Timestamp
10239
10287
  #
10240
- # UI name: [Recipients interacted][100]
10288
+ # UI name: [Recipients interacted][102]
10241
10289
  #
10242
10290
  # RECIPIENTS\_TARGETED
10243
10291
  #
@@ -10249,7 +10297,7 @@ module Aws::Connect
10249
10297
  #
10250
10298
  # Valid groupings and filters: Campaign, Campaign Execution Timestamp
10251
10299
  #
10252
- # UI name: [Recipients targeted][101]
10300
+ # UI name: [Recipients targeted][103]
10253
10301
  #
10254
10302
  # REOPENED\_CASE\_ACTIONS
10255
10303
  #
@@ -10259,7 +10307,7 @@ module Aws::Connect
10259
10307
  #
10260
10308
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
10261
10309
  #
10262
- # UI name: [Cases reopened][102]
10310
+ # UI name: [Cases reopened][104]
10263
10311
  #
10264
10312
  # RESOLVED\_CASE\_ACTIONS
10265
10313
  #
@@ -10269,7 +10317,7 @@ module Aws::Connect
10269
10317
  #
10270
10318
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
10271
10319
  #
10272
- # UI name: [Cases resolved][103]
10320
+ # UI name: [Cases resolved][105]
10273
10321
  #
10274
10322
  # SERVICE\_LEVEL
10275
10323
  #
@@ -10284,7 +10332,7 @@ module Aws::Connect
10284
10332
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
10285
10333
  # (for "Less than") or `LTE` (for "Less than equal").
10286
10334
  #
10287
- # UI name: [Service level X][104]
10335
+ # UI name: [Service level X][106]
10288
10336
  #
10289
10337
  # STEP\_CONTACTS\_QUEUED
10290
10338
  #
@@ -10310,12 +10358,13 @@ module Aws::Connect
10310
10358
  #
10311
10359
  # Valid metric filter key: `INITIATION_METHOD`. This metric only
10312
10360
  # supports the following filter keys as `INITIATION_METHOD`: `INBOUND`
10313
- # \| `OUTBOUND` \| `CALLBACK` \| `API`
10361
+ # \| `OUTBOUND` \| `CALLBACK` \| `API` \|
10362
+ # `CALLBACK_CUSTOMER_FIRST_DIALED`
10314
10363
  #
10315
10364
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10316
10365
  # Agent Hierarchy
10317
10366
  #
10318
- # UI name: [Agent API connecting time][105]
10367
+ # UI name: [Agent API connecting time][107]
10319
10368
  #
10320
10369
  # <note markdown="1"> The `Negate` key in metric-level filters is not applicable for this
10321
10370
  # metric.
@@ -10328,8 +10377,9 @@ module Aws::Connect
10328
10377
  #
10329
10378
  # Metric filter:
10330
10379
  #
10331
- # * Valid values: `API`\| `Incoming` \| `Outbound` \| `Transfer` \|
10332
- # `Callback` \| `Queue_Transfer`\| `Disconnect`
10380
+ # * Valid values: `API`\| `INCOMING` \| `OUTBOUND` \| `TRANSFER` \|
10381
+ # `CALLBACK` \| `QUEUE_TRANSFER`\| `Disconnect` \|
10382
+ # `CALLBACK_CUSTOMER_FIRST_DIALED`
10333
10383
  #
10334
10384
  # ^
10335
10385
  #
@@ -10337,7 +10387,7 @@ module Aws::Connect
10337
10387
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
10338
10388
  # RoutingStepExpression, Q in Connect
10339
10389
  #
10340
- # UI name: [Contact abandoned][106]
10390
+ # UI name: [Contact abandoned][108]
10341
10391
  #
10342
10392
  # SUM\_CONTACTS\_ABANDONED\_IN\_X
10343
10393
  #
@@ -10350,7 +10400,7 @@ module Aws::Connect
10350
10400
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
10351
10401
  # (for "Less than") or `LTE` (for "Less than equal").
10352
10402
  #
10353
- # UI name: [Contacts abandoned in X seconds][107]
10403
+ # UI name: [Contacts abandoned in X seconds][109]
10354
10404
  #
10355
10405
  # SUM\_CONTACTS\_ANSWERED\_IN\_X
10356
10406
  #
@@ -10363,7 +10413,7 @@ module Aws::Connect
10363
10413
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
10364
10414
  # (for "Less than") or `LTE` (for "Less than equal").
10365
10415
  #
10366
- # UI name: [Contacts answered in X seconds][108]
10416
+ # UI name: [Contacts answered in X seconds][110]
10367
10417
  #
10368
10418
  # SUM\_CONTACT\_FLOW\_TIME
10369
10419
  #
@@ -10372,7 +10422,7 @@ module Aws::Connect
10372
10422
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10373
10423
  # Agent Hierarchy, Q in Connect
10374
10424
  #
10375
- # UI name: [Contact flow time][109]
10425
+ # UI name: [Contact flow time][111]
10376
10426
  #
10377
10427
  # SUM\_CONTACT\_TIME\_AGENT
10378
10428
  #
@@ -10380,7 +10430,7 @@ module Aws::Connect
10380
10430
  #
10381
10431
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10382
10432
  #
10383
- # UI name: [Agent on contact time][110]
10433
+ # UI name: [Agent on contact time][112]
10384
10434
  #
10385
10435
  # SUM\_CONTACTS\_DISCONNECTED
10386
10436
  #
@@ -10392,7 +10442,7 @@ module Aws::Connect
10392
10442
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10393
10443
  # Connect
10394
10444
  #
10395
- # UI name: [Contact disconnected][111]
10445
+ # UI name: [Contact disconnected][113]
10396
10446
  #
10397
10447
  # SUM\_ERROR\_STATUS\_TIME\_AGENT
10398
10448
  #
@@ -10400,7 +10450,7 @@ module Aws::Connect
10400
10450
  #
10401
10451
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10402
10452
  #
10403
- # UI name: [Error status time][112]
10453
+ # UI name: [Error status time][114]
10404
10454
  #
10405
10455
  # SUM\_HANDLE\_TIME
10406
10456
  #
@@ -10409,7 +10459,7 @@ module Aws::Connect
10409
10459
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10410
10460
  # Agent Hierarchy, Q in Connect
10411
10461
  #
10412
- # UI name: [Contact handle time][113]
10462
+ # UI name: [Contact handle time][115]
10413
10463
  #
10414
10464
  # SUM\_HOLD\_TIME
10415
10465
  #
@@ -10418,7 +10468,7 @@ module Aws::Connect
10418
10468
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10419
10469
  # Agent Hierarchy, Q in Connect
10420
10470
  #
10421
- # UI name: [Customer hold time][114]
10471
+ # UI name: [Customer hold time][116]
10422
10472
  #
10423
10473
  # SUM\_IDLE\_TIME\_AGENT
10424
10474
  #
@@ -10426,7 +10476,7 @@ module Aws::Connect
10426
10476
  #
10427
10477
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10428
10478
  #
10429
- # UI name: [Agent idle time][115]
10479
+ # UI name: [Agent idle time][117]
10430
10480
  #
10431
10481
  # SUM\_INTERACTION\_AND\_HOLD\_TIME
10432
10482
  #
@@ -10435,7 +10485,7 @@ module Aws::Connect
10435
10485
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10436
10486
  # Agent Hierarchy, Q in Connect
10437
10487
  #
10438
- # UI name: [Agent interaction and hold time][116]
10488
+ # UI name: [Agent interaction and hold time][118]
10439
10489
  #
10440
10490
  # SUM\_INTERACTION\_TIME
10441
10491
  #
@@ -10444,7 +10494,7 @@ module Aws::Connect
10444
10494
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10445
10495
  # Agent Hierarchy
10446
10496
  #
10447
- # UI name: [Agent interaction time][117]
10497
+ # UI name: [Agent interaction time][119]
10448
10498
  #
10449
10499
  # SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
10450
10500
  #
@@ -10452,7 +10502,7 @@ module Aws::Connect
10452
10502
  #
10453
10503
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10454
10504
  #
10455
- # UI name: [Agent non-productive time][118]
10505
+ # UI name: [Agent non-productive time][120]
10456
10506
  #
10457
10507
  # SUM\_ONLINE\_TIME\_AGENT
10458
10508
  #
@@ -10460,7 +10510,7 @@ module Aws::Connect
10460
10510
  #
10461
10511
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10462
10512
  #
10463
- # UI name: [Online time][119]
10513
+ # UI name: [Online time][121]
10464
10514
  #
10465
10515
  # SUM\_RETRY\_CALLBACK\_ATTEMPTS
10466
10516
  #
@@ -10469,7 +10519,7 @@ module Aws::Connect
10469
10519
  # Valid groupings and filters: Queue, Channel, Routing Profile,
10470
10520
  # contact/segmentAttributes/connect:Subtype, Q in Connect
10471
10521
  #
10472
- # UI name: [Callback attempts][120]
10522
+ # UI name: [Callback attempts][122]
10473
10523
  #
10474
10524
  #
10475
10525
  #
@@ -10518,81 +10568,83 @@ module Aws::Connect
10518
10568
  # [43]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-messages
10519
10569
  # [44]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-non-talk-time
10520
10570
  # [45]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time
10521
- # [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-response-time-agent
10522
- # [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-time-agent
10523
- # [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-resolution-time
10524
- # [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-talk-time
10525
- # [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-talk-time
10526
- # [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-talk-time
10527
- # [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection
10528
- # [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-weighted-evaluation-score
10529
- # [54]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed
10530
- # [55]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed
10531
- # [56]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x
10532
- # [57]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x-rate
10533
- # [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-interactions
10534
- # [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-progress-rate
10535
- # [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-attempts
10536
- # [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-exclusions
10537
- # [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-created
10538
- # [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-created
10539
- # [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#api-contacts-handled
10540
- # [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-by-connected-to-agent-timestamp
10541
- # [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
10542
- # [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-agent-disconnect
10543
- # [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-customer-disconnect
10544
- # [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-put-on-hold
10545
- # [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-external
10546
- # [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-internal
10547
- # [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
10548
- # [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued-by-enqueue
10549
- # [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-removed-from-queue
10550
- # [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-resolved
10551
- # [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
10552
- # [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-by-agent
10553
- # [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
10554
- # [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#current-cases
10555
- # [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#conversations-abandoned
10556
- # [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempts
10557
- # [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempt-disposition-rate
10558
- # [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#evaluations-performed
10559
- # [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
10560
- # [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-started
10561
- # [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#human-answered
10562
- # [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-flow-time
10563
- # [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-queued-time
10564
- # [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
10565
- # [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#automatic-fails-percent
10566
- # [91]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome
10567
- # [92]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome
10568
- # [93]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved-on-first-contact
10569
- # [94]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome-percentage
10570
- # [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-talk-time-percent
10571
- # [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#talk-time-percent
10572
- # [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-talk-time-percent
10573
- # [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-talk-time-percent
10574
- # [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-attempted
10575
- # [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-interacted
10576
- # [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-targeted
10577
- # [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-reopened
10578
- # [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved
10579
- # [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
10580
- # [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time
10581
- # [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
10582
- # [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned-in-x-seconds
10583
- # [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-answered-in-x-seconds
10584
- # [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-flow-time
10585
- # [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-on-contact-time
10586
- # [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-disconnected
10587
- # [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-status-time
10588
- # [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-handle-time
10589
- # [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-hold-time
10590
- # [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-idle-time
10591
- # [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-and-hold-time
10592
- # [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-time
10593
- # [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-productive-time
10594
- # [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-time
10595
- # [120]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-attempts
10571
+ # [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time-customer-first-callback
10572
+ # [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-response-time-agent
10573
+ # [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-time-agent
10574
+ # [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-resolution-time
10575
+ # [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-talk-time
10576
+ # [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-talk-time
10577
+ # [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-talk-time
10578
+ # [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection
10579
+ # [54]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection-customer-first-callback
10580
+ # [55]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-weighted-evaluation-score
10581
+ # [56]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed
10582
+ # [57]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed
10583
+ # [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x
10584
+ # [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x-rate
10585
+ # [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-interactions
10586
+ # [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-progress-rate
10587
+ # [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-attempts
10588
+ # [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-exclusions
10589
+ # [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-created
10590
+ # [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-created
10591
+ # [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled
10592
+ # [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-by-connected-to-agent-timestamp
10593
+ # [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
10594
+ # [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-agent-disconnect
10595
+ # [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-customer-disconnect
10596
+ # [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-put-on-hold
10597
+ # [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-external
10598
+ # [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-internal
10599
+ # [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
10600
+ # [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued-by-enqueue
10601
+ # [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-removed-from-queue
10602
+ # [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-resolved
10603
+ # [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
10604
+ # [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-by-agent
10605
+ # [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
10606
+ # [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#current-cases
10607
+ # [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#conversations-abandoned
10608
+ # [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempts
10609
+ # [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempt-disposition-rate
10610
+ # [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#evaluations-performed
10611
+ # [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
10612
+ # [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-started
10613
+ # [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#human-answered
10614
+ # [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-flow-time
10615
+ # [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-queued-time
10616
+ # [91]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
10617
+ # [92]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#automatic-fails-percent
10618
+ # [93]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome
10619
+ # [94]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome
10620
+ # [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved-on-first-contact
10621
+ # [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome-percentage
10622
+ # [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-talk-time-percent
10623
+ # [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#talk-time-percent
10624
+ # [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-talk-time-percent
10625
+ # [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-talk-time-percent
10626
+ # [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-attempted
10627
+ # [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-interacted
10628
+ # [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-targeted
10629
+ # [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-reopened
10630
+ # [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved
10631
+ # [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
10632
+ # [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time
10633
+ # [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
10634
+ # [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned-in-x-seconds
10635
+ # [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-answered-in-x-seconds
10636
+ # [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-flow-time
10637
+ # [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-on-contact-time
10638
+ # [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-disconnected
10639
+ # [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-status-time
10640
+ # [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-handle-time
10641
+ # [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-hold-time
10642
+ # [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-idle-time
10643
+ # [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-and-hold-time
10644
+ # [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-time
10645
+ # [120]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-productive-time
10646
+ # [121]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-time
10647
+ # [122]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-attempts
10596
10648
  #
10597
10649
  # @option params [String] :next_token
10598
10650
  # The token for the next set of results. Use the value returned in the
@@ -16207,6 +16259,7 @@ module Aws::Connect
16207
16259
  # resp.users[0].phone_config.auto_accept #=> Boolean
16208
16260
  # resp.users[0].phone_config.after_contact_work_time_limit #=> Integer
16209
16261
  # resp.users[0].phone_config.desk_phone_number #=> String
16262
+ # resp.users[0].phone_config.persistent_connection #=> Boolean
16210
16263
  # resp.users[0].routing_profile_id #=> String
16211
16264
  # resp.users[0].security_profile_ids #=> Array
16212
16265
  # resp.users[0].security_profile_ids[0] #=> String
@@ -19699,7 +19752,7 @@ module Aws::Connect
19699
19752
  # The date from when the hours of operation override would be effective.
19700
19753
  #
19701
19754
  # @option params [String] :effective_till
19702
- # The date till when the hours of operation override would be effective.
19755
+ # The date until the hours of operation override is effective.
19703
19756
  #
19704
19757
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
19705
19758
  #
@@ -21475,6 +21528,7 @@ module Aws::Connect
21475
21528
  # auto_accept: false,
21476
21529
  # after_contact_work_time_limit: 1,
21477
21530
  # desk_phone_number: "PhoneNumber",
21531
+ # persistent_connection: false,
21478
21532
  # },
21479
21533
  # user_id: "UserId", # required
21480
21534
  # instance_id: "InstanceId", # required
@@ -21723,7 +21777,7 @@ module Aws::Connect
21723
21777
  tracer: tracer
21724
21778
  )
21725
21779
  context[:gem_name] = 'aws-sdk-connect'
21726
- context[:gem_version] = '1.216.0'
21780
+ context[:gem_version] = '1.217.0'
21727
21781
  Seahorse::Client::Request.new(handlers, context)
21728
21782
  end
21729
21783