aws-sdk-connect 1.216.0 → 1.218.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.
@@ -683,6 +683,85 @@ module Aws::Connect
683
683
  req.send_request(options)
684
684
  end
685
685
 
686
+ # Associates a queued contact with an agent.
687
+ #
688
+ # **Use cases**
689
+ #
690
+ # Following are common uses cases for this API:
691
+ #
692
+ # * Custom contact routing. You can build custom contact routing
693
+ # mechanisms beyond the default system routing in Amazon Connect. You
694
+ # can create tailored contact distribution logic that offers queued
695
+ # contacts directly to specific agents.
696
+ #
697
+ # * Manual contact assignment. You can programmatically assign queued
698
+ # contacts to available users. This provides flexibility to contact
699
+ # centers that require manual oversight or specialized routing
700
+ # workflows outside of standard queue management.
701
+ #
702
+ # For information about how manual contact assignment works in the
703
+ # agent workspace, see the [Access the Worklist app in the Amazon
704
+ # Connect agent workspace][1] in the *Amazon Connect Administrator
705
+ # Guide*.
706
+ #
707
+ # **Important things to know**
708
+ #
709
+ # * Use this API chat/SMS, email, and task contacts. It does not support
710
+ # voice contacts.
711
+ #
712
+ # * Use it to associate contacts with users regardless of their current
713
+ # state, including custom states. Ensure your application logic
714
+ # accounts for user availability before making associations.
715
+ #
716
+ # * It honors the IAM context key `connect:PreferredUserArn` to prevent
717
+ # unauthorized contact associations.
718
+ #
719
+ # * It respects the IAM context key `connect:PreferredUserArn` to
720
+ # enforce authorization controls and prevent unauthorized contact
721
+ # associations. Verify that your IAM policies are properly configured
722
+ # to support your intended use cases.
723
+ #
724
+ # **Endpoints**: See [Amazon Connect endpoints and quotas][2].
725
+ #
726
+ #
727
+ #
728
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/worklist-app.html
729
+ # [2]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
730
+ #
731
+ # @option params [required, String] :instance_id
732
+ # The identifier of the Amazon Connect instance. You can [find the
733
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
734
+ #
735
+ #
736
+ #
737
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
738
+ #
739
+ # @option params [required, String] :contact_id
740
+ # The identifier of the contact in this instance of Amazon Connect.
741
+ #
742
+ # @option params [required, String] :user_id
743
+ # The identifier for the user. This can be the ID or the ARN of the
744
+ # user.
745
+ #
746
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
747
+ #
748
+ # @example Request syntax with placeholder values
749
+ #
750
+ # resp = client.associate_contact_with_user({
751
+ # instance_id: "InstanceId", # required
752
+ # contact_id: "ContactId", # required
753
+ # user_id: "AgentResourceId", # required
754
+ # })
755
+ #
756
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateContactWithUser AWS API Documentation
757
+ #
758
+ # @overload associate_contact_with_user(params = {})
759
+ # @param [Hash] params ({})
760
+ def associate_contact_with_user(params = {}, options = {})
761
+ req = build_request(:associate_contact_with_user, params)
762
+ req.send_request(options)
763
+ end
764
+
686
765
  # Associates an existing vocabulary as the default. Contact Lens for
687
766
  # Amazon Connect uses the vocabulary in post-call and real-time analysis
688
767
  # sessions for the given language.
@@ -1081,9 +1160,12 @@ module Aws::Connect
1081
1160
  # @option params [required, String] :routing_profile_id
1082
1161
  # The identifier of the routing profile.
1083
1162
  #
1084
- # @option params [required, Array<Types::RoutingProfileQueueConfig>] :queue_configs
1163
+ # @option params [Array<Types::RoutingProfileQueueConfig>] :queue_configs
1085
1164
  # The queues to associate with this routing profile.
1086
1165
  #
1166
+ # @option params [Array<Types::RoutingProfileManualAssignmentQueueConfig>] :manual_assignment_queue_configs
1167
+ # The manual assignment queues to associate with this routing profile.
1168
+ #
1087
1169
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1088
1170
  #
1089
1171
  # @example Request syntax with placeholder values
@@ -1091,7 +1173,7 @@ module Aws::Connect
1091
1173
  # resp = client.associate_routing_profile_queues({
1092
1174
  # instance_id: "InstanceId", # required
1093
1175
  # routing_profile_id: "RoutingProfileId", # required
1094
- # queue_configs: [ # required
1176
+ # queue_configs: [
1095
1177
  # {
1096
1178
  # queue_reference: { # required
1097
1179
  # queue_id: "QueueId", # required
@@ -1101,6 +1183,14 @@ module Aws::Connect
1101
1183
  # delay: 1, # required
1102
1184
  # },
1103
1185
  # ],
1186
+ # manual_assignment_queue_configs: [
1187
+ # {
1188
+ # queue_reference: { # required
1189
+ # queue_id: "QueueId", # required
1190
+ # channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
1191
+ # },
1192
+ # },
1193
+ # ],
1104
1194
  # })
1105
1195
  #
1106
1196
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateRoutingProfileQueues AWS API Documentation
@@ -3300,6 +3390,16 @@ module Aws::Connect
3300
3390
  #
3301
3391
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html
3302
3392
  #
3393
+ # @option params [Array<Types::RoutingProfileManualAssignmentQueueConfig>] :manual_assignment_queue_configs
3394
+ # The manual assignment queues associated with the routing profile. If
3395
+ # no queue is added, agents and supervisors can't pick or assign any
3396
+ # contacts from this routing profile. The limit of 10 array members
3397
+ # applies to the maximum number of
3398
+ # RoutingProfileManualAssignmentQueueConfig objects that can be passed
3399
+ # during a CreateRoutingProfile API request. It is different from the
3400
+ # quota of 50 queues per routing profile per instance that is listed in
3401
+ # Amazon Connect service quotas.
3402
+ #
3303
3403
  # @option params [required, Array<Types::MediaConcurrency>] :media_concurrencies
3304
3404
  # The channels that agents can handle in the Contact Control Panel (CCP)
3305
3405
  # for this routing profile.
@@ -3336,6 +3436,14 @@ module Aws::Connect
3336
3436
  # delay: 1, # required
3337
3437
  # },
3338
3438
  # ],
3439
+ # manual_assignment_queue_configs: [
3440
+ # {
3441
+ # queue_reference: { # required
3442
+ # queue_id: "QueueId", # required
3443
+ # channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
3444
+ # },
3445
+ # },
3446
+ # ],
3339
3447
  # media_concurrencies: [ # required
3340
3448
  # {
3341
3449
  # channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
@@ -3996,6 +4104,7 @@ module Aws::Connect
3996
4104
  # auto_accept: false,
3997
4105
  # after_contact_work_time_limit: 1,
3998
4106
  # desk_phone_number: "PhoneNumber",
4107
+ # persistent_connection: false,
3999
4108
  # },
4000
4109
  # directory_user_id: "DirectoryUserId",
4001
4110
  # security_profile_ids: ["SecurityProfileId"], # required
@@ -6547,6 +6656,7 @@ module Aws::Connect
6547
6656
  # resp.routing_profile.tags #=> Hash
6548
6657
  # resp.routing_profile.tags["TagKey"] #=> String
6549
6658
  # resp.routing_profile.number_of_associated_queues #=> Integer
6659
+ # resp.routing_profile.number_of_associated_manual_assignment_queues #=> Integer
6550
6660
  # resp.routing_profile.number_of_associated_users #=> Integer
6551
6661
  # resp.routing_profile.agent_availability_timer #=> String, one of "TIME_SINCE_LAST_ACTIVITY", "TIME_SINCE_LAST_INBOUND"
6552
6662
  # resp.routing_profile.last_modified_time #=> Time
@@ -6554,6 +6664,8 @@ module Aws::Connect
6554
6664
  # resp.routing_profile.is_default #=> Boolean
6555
6665
  # resp.routing_profile.associated_queue_ids #=> Array
6556
6666
  # resp.routing_profile.associated_queue_ids[0] #=> String
6667
+ # resp.routing_profile.associated_manual_assignment_queue_ids #=> Array
6668
+ # resp.routing_profile.associated_manual_assignment_queue_ids[0] #=> String
6557
6669
  #
6558
6670
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeRoutingProfile AWS API Documentation
6559
6671
  #
@@ -6799,6 +6911,7 @@ module Aws::Connect
6799
6911
  # resp.user.phone_config.auto_accept #=> Boolean
6800
6912
  # resp.user.phone_config.after_contact_work_time_limit #=> Integer
6801
6913
  # resp.user.phone_config.desk_phone_number #=> String
6914
+ # resp.user.phone_config.persistent_connection #=> Boolean
6802
6915
  # resp.user.directory_user_id #=> String
6803
6916
  # resp.user.security_profile_ids #=> Array
6804
6917
  # resp.user.security_profile_ids[0] #=> String
@@ -7477,6 +7590,10 @@ module Aws::Connect
7477
7590
 
7478
7591
  # Disassociates a set of queues from a routing profile.
7479
7592
  #
7593
+ # Up to 10 queue references can be disassociated in a single API call.
7594
+ # More than 10 queue references results in a single call results in an
7595
+ # InvalidParameterException.
7596
+ #
7480
7597
  # @option params [required, String] :instance_id
7481
7598
  # The identifier of the Amazon Connect instance. You can [find the
7482
7599
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -7488,9 +7605,13 @@ module Aws::Connect
7488
7605
  # @option params [required, String] :routing_profile_id
7489
7606
  # The identifier of the routing profile.
7490
7607
  #
7491
- # @option params [required, Array<Types::RoutingProfileQueueReference>] :queue_references
7608
+ # @option params [Array<Types::RoutingProfileQueueReference>] :queue_references
7492
7609
  # The queues to disassociate from this routing profile.
7493
7610
  #
7611
+ # @option params [Array<Types::RoutingProfileQueueReference>] :manual_assignment_queue_references
7612
+ # The manual assignment queues to disassociate with this routing
7613
+ # profile.
7614
+ #
7494
7615
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7495
7616
  #
7496
7617
  # @example Request syntax with placeholder values
@@ -7498,7 +7619,13 @@ module Aws::Connect
7498
7619
  # resp = client.disassociate_routing_profile_queues({
7499
7620
  # instance_id: "InstanceId", # required
7500
7621
  # routing_profile_id: "RoutingProfileId", # required
7501
- # queue_references: [ # required
7622
+ # queue_references: [
7623
+ # {
7624
+ # queue_id: "QueueId", # required
7625
+ # channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
7626
+ # },
7627
+ # ],
7628
+ # manual_assignment_queue_references: [
7502
7629
  # {
7503
7630
  # queue_id: "QueueId", # required
7504
7631
  # channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
@@ -7786,22 +7913,38 @@ module Aws::Connect
7786
7913
  req.send_request(options)
7787
7914
  end
7788
7915
 
7789
- # Gets the real-time metrics of the specified contact.
7916
+ # Retrieves the position of the contact in the queue.
7790
7917
  #
7791
7918
  # **Use cases**
7792
7919
  #
7793
- # Following are common uses cases for this API:
7920
+ # Following are common uses cases for position in queue:
7794
7921
  #
7795
- # * You can use this API to retrieve the position of the contact in the
7796
- # queue.
7922
+ # * Understand the expected wait experience of a contact.
7797
7923
  #
7798
- # ^
7924
+ # * Inform customers of their position in queue and potentially offer a
7925
+ # callback.
7926
+ #
7927
+ # * Make data-driven routing decisions between primary and alternative
7928
+ # queues.
7929
+ #
7930
+ # * Enhance queue visibility and leverage agent proficiencies to
7931
+ # streamline contact routing.
7932
+ #
7933
+ # **Important things to know**
7934
+ #
7935
+ # * The only way to retrieve the position of the contact in queue is by
7936
+ # using this API. You can't retrieve the position by using flows and
7937
+ # attributes.
7799
7938
  #
7800
- # **Endpoints**: See [Amazon Connect endpoints and quotas][1].
7939
+ # * For more information, see the [Position in queue][1] metric in the
7940
+ # *Amazon Connect Administrator Guide*.
7941
+ #
7942
+ # **Endpoints**: See [Amazon Connect endpoints and quotas][2].
7801
7943
  #
7802
7944
  #
7803
7945
  #
7804
- # [1]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
7946
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html
7947
+ # [2]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
7805
7948
  #
7806
7949
  # @option params [required, String] :instance_id
7807
7950
  # The identifier of the Amazon Connect instance. You can [find the
@@ -9151,6 +9294,8 @@ module Aws::Connect
9151
9294
  # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
9152
9295
  # Q in Connect
9153
9296
  #
9297
+ # Valid metric filter key: `INITIATION_METHOD`
9298
+ #
9154
9299
  # UI name: [Average queue abandon time][12]
9155
9300
  #
9156
9301
  # AVG\_ACTIVE\_TIME
@@ -9543,10 +9688,23 @@ module Aws::Connect
9543
9688
  #
9544
9689
  # UI name: [Average queue answer time][45]
9545
9690
  #
9691
+ # Valid metric level filters: `INITIATION_METHOD`, `FEATURE`,
9692
+ # `DISCONNECT_REASON`
9693
+ #
9546
9694
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
9547
9695
  #
9548
9696
  # </note>
9549
9697
  #
9698
+ # AVG\_QUEUE\_ANSWER\_TIME\_CUSTOMER\_FIRST\_CALLBACK
9699
+ #
9700
+ # : Unit: Seconds
9701
+ #
9702
+ # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9703
+ # Feature, contact/segmentAttributes/connect:Subtype, Q in Connect,
9704
+ # Agent Hierarchy
9705
+ #
9706
+ # UI name: [Avg. queue answer time - customer first callback][46]
9707
+ #
9550
9708
  # AVG\_RESPONSE\_TIME\_AGENT
9551
9709
  #
9552
9710
  # : Unit: Seconds
@@ -9556,7 +9714,7 @@ module Aws::Connect
9556
9714
  # Feature, RoutingStepExpression, Initiation method, Routing Profile,
9557
9715
  # Queue, Q in Connect
9558
9716
  #
9559
- # UI name: [Average agent response time][46]
9717
+ # UI name: [Average agent response time][47]
9560
9718
  #
9561
9719
  # AVG\_RESPONSE\_TIME\_CUSTOMER
9562
9720
  #
@@ -9567,7 +9725,7 @@ module Aws::Connect
9567
9725
  # Feature, RoutingStepExpression, Initiation method, Routing Profile,
9568
9726
  # Queue, Q in Connect
9569
9727
  #
9570
- # UI name: [Average customer response time][47]
9728
+ # UI name: [Average customer response time][48]
9571
9729
  #
9572
9730
  # AVG\_RESOLUTION\_TIME
9573
9731
  #
@@ -9576,7 +9734,7 @@ module Aws::Connect
9576
9734
  # Valid groupings and filters: Queue, Channel, Routing Profile,
9577
9735
  # contact/segmentAttributes/connect:Subtype, Q in Connect
9578
9736
  #
9579
- # UI name: [Average resolution time][48]
9737
+ # UI name: [Average resolution time][49]
9580
9738
  #
9581
9739
  # AVG\_TALK\_TIME
9582
9740
  #
@@ -9589,7 +9747,7 @@ module Aws::Connect
9589
9747
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9590
9748
  # Connect
9591
9749
  #
9592
- # UI name: [Average talk time][49]
9750
+ # UI name: [Average talk time][50]
9593
9751
  #
9594
9752
  # AVG\_TALK\_TIME\_AGENT
9595
9753
  #
@@ -9602,7 +9760,7 @@ module Aws::Connect
9602
9760
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9603
9761
  # Connect
9604
9762
  #
9605
- # UI name: [Average agent talk time][50]
9763
+ # UI name: [Average agent talk time][51]
9606
9764
  #
9607
9765
  # AVG\_TALK\_TIME\_CUSTOMER
9608
9766
  #
@@ -9615,7 +9773,7 @@ module Aws::Connect
9615
9773
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9616
9774
  # Connect
9617
9775
  #
9618
- # UI name: [Average customer talk time][51]
9776
+ # UI name: [Average customer talk time][52]
9619
9777
  #
9620
9778
  # AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_CONNECTION
9621
9779
  #
@@ -9626,7 +9784,18 @@ module Aws::Connect
9626
9784
  #
9627
9785
  # Valid groupings and filters: Campaign
9628
9786
  #
9629
- # UI name: [Average wait time after customer connection][52]
9787
+ # UI name: [Average wait time after customer connection][53]
9788
+ #
9789
+ # AVG\_WAIT\_TIME\_AFTER\_CUSTOMER\_FIRST\_CALLBACK\_CONNECTION
9790
+ #
9791
+ # : Unit: Seconds
9792
+ #
9793
+ # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9794
+ # Feature, contact/segmentAttributes/connect:Subtype, Q in Connect,
9795
+ # Agent Hierarchy
9796
+ #
9797
+ # UI name: [Avg. wait time after customer connection - customer first
9798
+ # callback][54]
9630
9799
  #
9631
9800
  # AVG\_WEIGHTED\_EVALUATION\_SCORE
9632
9801
  #
@@ -9636,7 +9805,7 @@ module Aws::Connect
9636
9805
  # Evaluation Form Id, Evaluation Section ID, Evaluation Question ID,
9637
9806
  # Evaluation Source, Form Version, Queue, Routing Profile
9638
9807
  #
9639
- # UI name: [Average weighted evaluation score][53]
9808
+ # UI name: [Average weighted evaluation score][55]
9640
9809
  #
9641
9810
  # BOT\_CONVERSATIONS\_COMPLETED
9642
9811
  #
@@ -9648,7 +9817,7 @@ module Aws::Connect
9648
9817
  # Flow type, Flow action ID, Invoking resource published timestamp,
9649
9818
  # Initiation method, Invoking resource type, Parent flows resource ID
9650
9819
  #
9651
- # UI name: [Bot conversations completed][54]
9820
+ # UI name: [Bot conversations completed][56]
9652
9821
  #
9653
9822
  # BOT\_INTENTS\_COMPLETED
9654
9823
  #
@@ -9661,7 +9830,7 @@ module Aws::Connect
9661
9830
  # published timestamp, Initiation method, Invoking resource type,
9662
9831
  # Parent flows resource ID
9663
9832
  #
9664
- # UI name: [Bot intents completed][55]
9833
+ # UI name: [Bot intents completed][57]
9665
9834
  #
9666
9835
  # CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X
9667
9836
  #
@@ -9676,7 +9845,7 @@ module Aws::Connect
9676
9845
  # 604800 (inclusive), in seconds. For `Comparison`, you must enter
9677
9846
  # `GT` (for *Greater than*).
9678
9847
  #
9679
- # UI name: [Campaign contacts abandoned after X][56]
9848
+ # UI name: [Campaign contacts abandoned after X][58]
9680
9849
  #
9681
9850
  # CAMPAIGN\_CONTACTS\_ABANDONED\_AFTER\_X\_RATE
9682
9851
  #
@@ -9691,7 +9860,7 @@ module Aws::Connect
9691
9860
  # 604800 (inclusive), in seconds. For `Comparison`, you must enter
9692
9861
  # `GT` (for *Greater than*).
9693
9862
  #
9694
- # UI name: [Campaign contacts abandoned after X rate][57]
9863
+ # UI name: [Campaign contacts abandoned after X rate][59]
9695
9864
  #
9696
9865
  # CAMPAIGN\_INTERACTIONS
9697
9866
  #
@@ -9704,7 +9873,7 @@ module Aws::Connect
9704
9873
  #
9705
9874
  # Valid groupings and filters: Campaign
9706
9875
  #
9707
- # UI name: [Campaign interactions][58]
9876
+ # UI name: [Campaign interactions][60]
9708
9877
  #
9709
9878
  # CAMPAIGN\_PROGRESS\_RATE
9710
9879
  #
@@ -9716,7 +9885,7 @@ module Aws::Connect
9716
9885
  #
9717
9886
  # Valid groupings and filters: Campaign, Campaign Execution Timestamp
9718
9887
  #
9719
- # UI name: [Campaign progress rate][59]
9888
+ # UI name: [Campaign progress rate][61]
9720
9889
  #
9721
9890
  # CAMPAIGN\_SEND\_ATTEMPTS
9722
9891
  #
@@ -9727,7 +9896,7 @@ module Aws::Connect
9727
9896
  # Valid groupings and filters: Campaign, Channel,
9728
9897
  # contact/segmentAttributes/connect:Subtype
9729
9898
  #
9730
- # UI name: [Campaign send attempts][60]
9899
+ # UI name: [Campaign send attempts][62]
9731
9900
  #
9732
9901
  # CAMPAIGN\_SEND\_EXCLUSIONS
9733
9902
  #
@@ -9740,7 +9909,7 @@ module Aws::Connect
9740
9909
  # Valid groupings and filters: Campaign, Campaign Excluded Event Type,
9741
9910
  # Campaign Execution Timestamp
9742
9911
  #
9743
- # UI name: [Campaign send exclusions][61]
9912
+ # UI name: [Campaign send exclusions][63]
9744
9913
  #
9745
9914
  # CASES\_CREATED
9746
9915
  #
@@ -9750,7 +9919,7 @@ module Aws::Connect
9750
9919
  #
9751
9920
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
9752
9921
  #
9753
- # UI name: [Cases created][62]
9922
+ # UI name: [Cases created][64]
9754
9923
  #
9755
9924
  # CONTACTS\_CREATED
9756
9925
  #
@@ -9761,7 +9930,7 @@ module Aws::Connect
9761
9930
  # Valid groupings and filters: Queue, Channel, Routing Profile,
9762
9931
  # Feature, contact/segmentAttributes/connect:Subtype, Q in Connect
9763
9932
  #
9764
- # UI name: [Contacts created][63]
9933
+ # UI name: [Contacts created][65]
9765
9934
  #
9766
9935
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
9767
9936
  #
@@ -9777,7 +9946,7 @@ module Aws::Connect
9777
9946
  # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
9778
9947
  # RoutingStepExpression, Q in Connect
9779
9948
  #
9780
- # UI name: [API contacts handled][64]
9949
+ # UI name: [Contacts handled][66]
9781
9950
  #
9782
9951
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
9783
9952
  #
@@ -9792,7 +9961,7 @@ module Aws::Connect
9792
9961
  # Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
9793
9962
  # contact/segmentAttributes/connect:Subtype, Q in Connect
9794
9963
  #
9795
- # UI name: [Contacts handled (connected to agent timestamp)][65]
9964
+ # UI name: [Contacts handled (connected to agent timestamp)][67]
9796
9965
  #
9797
9966
  # CONTACTS\_HOLD\_ABANDONS
9798
9967
  #
@@ -9802,7 +9971,7 @@ module Aws::Connect
9802
9971
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9803
9972
  # Connect
9804
9973
  #
9805
- # UI name: [Contacts hold disconnect][66]
9974
+ # UI name: [Contacts hold disconnect][68]
9806
9975
  #
9807
9976
  # CONTACTS\_ON\_HOLD\_AGENT\_DISCONNECT
9808
9977
  #
@@ -9811,7 +9980,7 @@ module Aws::Connect
9811
9980
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9812
9981
  # Agent Hierarchy, Q in Connect
9813
9982
  #
9814
- # UI name: [Contacts hold agent disconnect][67]
9983
+ # UI name: [Contacts hold agent disconnect][69]
9815
9984
  #
9816
9985
  # CONTACTS\_ON\_HOLD\_CUSTOMER\_DISCONNECT
9817
9986
  #
@@ -9820,7 +9989,7 @@ module Aws::Connect
9820
9989
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9821
9990
  # Agent Hierarchy, Q in Connect
9822
9991
  #
9823
- # UI name: [Contacts hold customer disconnect][68]
9992
+ # UI name: [Contacts hold customer disconnect][70]
9824
9993
  #
9825
9994
  # CONTACTS\_PUT\_ON\_HOLD
9826
9995
  #
@@ -9829,7 +9998,7 @@ module Aws::Connect
9829
9998
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9830
9999
  # Agent Hierarchy, Q in Connect
9831
10000
  #
9832
- # UI name: [Contacts put on hold][69]
10001
+ # UI name: [Contacts put on hold][71]
9833
10002
  #
9834
10003
  # CONTACTS\_TRANSFERRED\_OUT\_EXTERNAL
9835
10004
  #
@@ -9838,7 +10007,7 @@ module Aws::Connect
9838
10007
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9839
10008
  # Agent Hierarchy, Q in Connect
9840
10009
  #
9841
- # UI name: [Contacts transferred out external][70]
10010
+ # UI name: [Contacts transferred out external][72]
9842
10011
  #
9843
10012
  # CONTACTS\_TRANSFERRED\_OUT\_INTERNAL
9844
10013
  #
@@ -9847,7 +10016,7 @@ module Aws::Connect
9847
10016
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
9848
10017
  # Agent Hierarchy, Q in Connect
9849
10018
  #
9850
- # UI name: [Contacts transferred out internal][71]
10019
+ # UI name: [Contacts transferred out internal][73]
9851
10020
  #
9852
10021
  # CONTACTS\_QUEUED
9853
10022
  #
@@ -9857,7 +10026,7 @@ module Aws::Connect
9857
10026
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9858
10027
  # Connect
9859
10028
  #
9860
- # UI name: [Contacts queued][72]
10029
+ # UI name: [Contacts queued][74]
9861
10030
  #
9862
10031
  # CONTACTS\_QUEUED\_BY\_ENQUEUE
9863
10032
  #
@@ -9866,7 +10035,7 @@ module Aws::Connect
9866
10035
  # Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
9867
10036
  # contact/segmentAttributes/connect:Subtype
9868
10037
  #
9869
- # UI name: [Contacts queued (enqueue timestamp)][73]
10038
+ # UI name: [Contacts queued (enqueue timestamp)][75]
9870
10039
  #
9871
10040
  # CONTACTS\_REMOVED\_FROM\_QUEUE\_IN\_X
9872
10041
  #
@@ -9879,7 +10048,7 @@ module Aws::Connect
9879
10048
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
9880
10049
  # (for "Less than") or `LTE` (for "Less than equal").
9881
10050
  #
9882
- # UI name: [Contacts removed from queue in X seconds][74]
10051
+ # UI name: [Contacts removed from queue in X seconds][76]
9883
10052
  #
9884
10053
  # CONTACTS\_RESOLVED\_IN\_X
9885
10054
  #
@@ -9892,7 +10061,7 @@ module Aws::Connect
9892
10061
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
9893
10062
  # (for "Less than") or `LTE` (for "Less than equal").
9894
10063
  #
9895
- # UI name: [Contacts resolved in X][75]
10064
+ # UI name: [Contacts resolved in X][77]
9896
10065
  #
9897
10066
  # CONTACTS\_TRANSFERRED\_OUT
9898
10067
  #
@@ -9902,7 +10071,7 @@ module Aws::Connect
9902
10071
  # Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype,
9903
10072
  # Q in Connect
9904
10073
  #
9905
- # UI name: [Contacts transferred out][76]
10074
+ # UI name: [Contacts transferred out][78]
9906
10075
  #
9907
10076
  # <note markdown="1"> Feature is a valid filter but not a valid grouping.
9908
10077
  #
@@ -9916,7 +10085,7 @@ module Aws::Connect
9916
10085
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9917
10086
  # Connect
9918
10087
  #
9919
- # UI name: [Contacts transferred out by agent][77]
10088
+ # UI name: [Contacts transferred out by agent][79]
9920
10089
  #
9921
10090
  # CONTACTS\_TRANSFERRED\_OUT\_FROM\_QUEUE
9922
10091
  #
@@ -9926,7 +10095,7 @@ module Aws::Connect
9926
10095
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
9927
10096
  # Connect
9928
10097
  #
9929
- # UI name: [Contacts transferred out queue][78]
10098
+ # UI name: [Contacts transferred out queue][80]
9930
10099
  #
9931
10100
  # CURRENT\_CASES
9932
10101
  #
@@ -9936,7 +10105,7 @@ module Aws::Connect
9936
10105
  #
9937
10106
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
9938
10107
  #
9939
- # UI name: [Current cases][79]
10108
+ # UI name: [Current cases][81]
9940
10109
  #
9941
10110
  # CONVERSATIONS\_ABANDONED
9942
10111
  #
@@ -9947,7 +10116,7 @@ module Aws::Connect
9947
10116
  # Feature, RoutingStepExpression, Initiation method, Routing Profile,
9948
10117
  # Queue, Q in Connect
9949
10118
  #
9950
- # UI name: [Conversations abandoned][80]
10119
+ # UI name: [Conversations abandoned][82]
9951
10120
  #
9952
10121
  # DELIVERY\_ATTEMPTS
9953
10122
  #
@@ -9963,7 +10132,7 @@ module Aws::Connect
9963
10132
  # contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
9964
10133
  # Routing Profile
9965
10134
  #
9966
- # UI name: [Delivery attempts][81]
10135
+ # UI name: [Delivery attempts][83]
9967
10136
  #
9968
10137
  # <note markdown="1"> Campaign Delivery EventType filter and grouping are only available
9969
10138
  # for SMS and Email campaign delivery modes. Agent, Queue, Routing
@@ -9989,7 +10158,7 @@ module Aws::Connect
9989
10158
  # contact/segmentAttributes/connect:Subtype, Disconnect Reason, Queue,
9990
10159
  # Routing Profile
9991
10160
  #
9992
- # UI name: [Delivery attempt disposition rate][82]
10161
+ # UI name: [Delivery attempt disposition rate][84]
9993
10162
  #
9994
10163
  # <note markdown="1"> Campaign Delivery Event Type filter and grouping are only available
9995
10164
  # for SMS and Email campaign delivery modes. Agent, Queue, Routing
@@ -10007,7 +10176,7 @@ module Aws::Connect
10007
10176
  # Evaluation Form ID, Evaluation Source, Form Version, Queue, Routing
10008
10177
  # Profile
10009
10178
  #
10010
- # UI name: [Evaluations performed][83]
10179
+ # UI name: [Evaluations performed][85]
10011
10180
  #
10012
10181
  # FLOWS\_OUTCOME
10013
10182
  #
@@ -10019,7 +10188,7 @@ module Aws::Connect
10019
10188
  # Flows outcome type, Flows resource ID, Initiation method, Resource
10020
10189
  # published timestamp
10021
10190
  #
10022
- # UI name: [Flows outcome][84]
10191
+ # UI name: [Flows outcome][86]
10023
10192
  #
10024
10193
  # FLOWS\_STARTED
10025
10194
  #
@@ -10030,7 +10199,7 @@ module Aws::Connect
10030
10199
  # resource ID, Flows resource ID, Initiation method, Resource
10031
10200
  # published timestamp
10032
10201
  #
10033
- # UI name: [Flows started][85]
10202
+ # UI name: [Flows started][87]
10034
10203
  #
10035
10204
  # HUMAN\_ANSWERED\_CALLS
10036
10205
  #
@@ -10042,7 +10211,7 @@ module Aws::Connect
10042
10211
  #
10043
10212
  # Valid groupings and filters: Agent, Campaign
10044
10213
  #
10045
- # UI name: [Human answered][86]
10214
+ # UI name: [Human answered][88]
10046
10215
  #
10047
10216
  # MAX\_FLOW\_TIME
10048
10217
  #
@@ -10054,7 +10223,7 @@ module Aws::Connect
10054
10223
  # Flows outcome type, Flows resource ID, Initiation method, Resource
10055
10224
  # published timestamp
10056
10225
  #
10057
- # UI name: [Maximum flow time][87]
10226
+ # UI name: [Maximum flow time][89]
10058
10227
  #
10059
10228
  # MAX\_QUEUED\_TIME
10060
10229
  #
@@ -10064,7 +10233,7 @@ module Aws::Connect
10064
10233
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10065
10234
  # Connect
10066
10235
  #
10067
- # UI name: [Maximum queued time][88]
10236
+ # UI name: [Maximum queued time][90]
10068
10237
  #
10069
10238
  # MIN\_FLOW\_TIME
10070
10239
  #
@@ -10076,7 +10245,7 @@ module Aws::Connect
10076
10245
  # Flows outcome type, Flows resource ID, Initiation method, Resource
10077
10246
  # published timestamp
10078
10247
  #
10079
- # UI name: [Minimum flow time][89]
10248
+ # UI name: [Minimum flow time][91]
10080
10249
  #
10081
10250
  # PERCENT\_AUTOMATIC\_FAILS
10082
10251
  #
@@ -10086,7 +10255,7 @@ module Aws::Connect
10086
10255
  # Evaluation Form ID, Evaluation Source, Form Version, Queue, Routing
10087
10256
  # Profile
10088
10257
  #
10089
- # UI name: [Automatic fails percent][90]
10258
+ # UI name: [Automatic fails percent][92]
10090
10259
  #
10091
10260
  # PERCENT\_BOT\_CONVERSATIONS\_OUTCOME
10092
10261
  #
@@ -10098,7 +10267,7 @@ module Aws::Connect
10098
10267
  # Flow type, Flow action ID, Invoking resource published timestamp,
10099
10268
  # Initiation method, Invoking resource type, Parent flows resource ID
10100
10269
  #
10101
- # UI name: [Percent bot conversations outcome][91]
10270
+ # UI name: [Percent bot conversations outcome][93]
10102
10271
  #
10103
10272
  # PERCENT\_BOT\_INTENTS\_OUTCOME
10104
10273
  #
@@ -10111,7 +10280,7 @@ module Aws::Connect
10111
10280
  # published timestamp, Initiation method, Invoking resource type,
10112
10281
  # Parent flows resource ID
10113
10282
  #
10114
- # UI name: [Percent bot intents outcome][92]
10283
+ # UI name: [Percent bot intents outcome][94]
10115
10284
  #
10116
10285
  # PERCENT\_CASES\_FIRST\_CONTACT\_RESOLVED
10117
10286
  #
@@ -10121,7 +10290,7 @@ module Aws::Connect
10121
10290
  #
10122
10291
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
10123
10292
  #
10124
- # UI name: [Cases resolved on first contact][93]
10293
+ # UI name: [Cases resolved on first contact][95]
10125
10294
  #
10126
10295
  # PERCENT\_CONTACTS\_STEP\_EXPIRED
10127
10296
  #
@@ -10153,7 +10322,7 @@ module Aws::Connect
10153
10322
  # Flows outcome type, Flows resource ID, Initiation method, Resource
10154
10323
  # published timestamp
10155
10324
  #
10156
- # UI name: [Flows outcome percentage][94].
10325
+ # UI name: [Flows outcome percentage][96].
10157
10326
  #
10158
10327
  # <note markdown="1"> The `FLOWS_OUTCOME_TYPE` is not a valid grouping.
10159
10328
  #
@@ -10170,7 +10339,7 @@ module Aws::Connect
10170
10339
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10171
10340
  # Connect
10172
10341
  #
10173
- # UI name: [Non-talk time percent][95]
10342
+ # UI name: [Non-talk time percent][97]
10174
10343
  #
10175
10344
  # PERCENT\_TALK\_TIME
10176
10345
  #
@@ -10183,7 +10352,7 @@ module Aws::Connect
10183
10352
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10184
10353
  # Connect
10185
10354
  #
10186
- # UI name: [Talk time percent][96]
10355
+ # UI name: [Talk time percent][98]
10187
10356
  #
10188
10357
  # PERCENT\_TALK\_TIME\_AGENT
10189
10358
  #
@@ -10196,7 +10365,7 @@ module Aws::Connect
10196
10365
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10197
10366
  # Connect
10198
10367
  #
10199
- # UI name: [Agent talk time percent][97]
10368
+ # UI name: [Agent talk time percent][99]
10200
10369
  #
10201
10370
  # PERCENT\_TALK\_TIME\_CUSTOMER
10202
10371
  #
@@ -10209,7 +10378,7 @@ module Aws::Connect
10209
10378
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10210
10379
  # Connect
10211
10380
  #
10212
- # UI name: [Customer talk time percent][98]
10381
+ # UI name: [Customer talk time percent][100]
10213
10382
  #
10214
10383
  # RECIPIENTS\_ATTEMPTED
10215
10384
  #
@@ -10221,7 +10390,7 @@ module Aws::Connect
10221
10390
  #
10222
10391
  # Valid groupings and filters: Campaign, Campaign Execution Timestamp
10223
10392
  #
10224
- # UI name: [Recipients attempted][99]
10393
+ # UI name: [Recipients attempted][101]
10225
10394
  #
10226
10395
  # RECIPIENTS\_INTERACTED
10227
10396
  #
@@ -10237,7 +10406,7 @@ module Aws::Connect
10237
10406
  # contact/segmentAttributes/connect:Subtype, Campaign Execution
10238
10407
  # Timestamp
10239
10408
  #
10240
- # UI name: [Recipients interacted][100]
10409
+ # UI name: [Recipients interacted][102]
10241
10410
  #
10242
10411
  # RECIPIENTS\_TARGETED
10243
10412
  #
@@ -10249,7 +10418,7 @@ module Aws::Connect
10249
10418
  #
10250
10419
  # Valid groupings and filters: Campaign, Campaign Execution Timestamp
10251
10420
  #
10252
- # UI name: [Recipients targeted][101]
10421
+ # UI name: [Recipients targeted][103]
10253
10422
  #
10254
10423
  # REOPENED\_CASE\_ACTIONS
10255
10424
  #
@@ -10259,7 +10428,7 @@ module Aws::Connect
10259
10428
  #
10260
10429
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
10261
10430
  #
10262
- # UI name: [Cases reopened][102]
10431
+ # UI name: [Cases reopened][104]
10263
10432
  #
10264
10433
  # RESOLVED\_CASE\_ACTIONS
10265
10434
  #
@@ -10269,7 +10438,7 @@ module Aws::Connect
10269
10438
  #
10270
10439
  # Valid groupings and filters: CASE\_TEMPLATE\_ARN, CASE\_STATUS
10271
10440
  #
10272
- # UI name: [Cases resolved][103]
10441
+ # UI name: [Cases resolved][105]
10273
10442
  #
10274
10443
  # SERVICE\_LEVEL
10275
10444
  #
@@ -10284,7 +10453,7 @@ module Aws::Connect
10284
10453
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
10285
10454
  # (for "Less than") or `LTE` (for "Less than equal").
10286
10455
  #
10287
- # UI name: [Service level X][104]
10456
+ # UI name: [Service level X][106]
10288
10457
  #
10289
10458
  # STEP\_CONTACTS\_QUEUED
10290
10459
  #
@@ -10310,12 +10479,13 @@ module Aws::Connect
10310
10479
  #
10311
10480
  # Valid metric filter key: `INITIATION_METHOD`. This metric only
10312
10481
  # supports the following filter keys as `INITIATION_METHOD`: `INBOUND`
10313
- # \| `OUTBOUND` \| `CALLBACK` \| `API`
10482
+ # \| `OUTBOUND` \| `CALLBACK` \| `API` \|
10483
+ # `CALLBACK_CUSTOMER_FIRST_DIALED`
10314
10484
  #
10315
10485
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10316
10486
  # Agent Hierarchy
10317
10487
  #
10318
- # UI name: [Agent API connecting time][105]
10488
+ # UI name: [Agent API connecting time][107]
10319
10489
  #
10320
10490
  # <note markdown="1"> The `Negate` key in metric-level filters is not applicable for this
10321
10491
  # metric.
@@ -10328,8 +10498,9 @@ module Aws::Connect
10328
10498
  #
10329
10499
  # Metric filter:
10330
10500
  #
10331
- # * Valid values: `API`\| `Incoming` \| `Outbound` \| `Transfer` \|
10332
- # `Callback` \| `Queue_Transfer`\| `Disconnect`
10501
+ # * Valid values: `API`\| `INCOMING` \| `OUTBOUND` \| `TRANSFER` \|
10502
+ # `CALLBACK` \| `QUEUE_TRANSFER`\| `Disconnect` \|
10503
+ # `CALLBACK_CUSTOMER_FIRST_DIALED`
10333
10504
  #
10334
10505
  # ^
10335
10506
  #
@@ -10337,7 +10508,7 @@ module Aws::Connect
10337
10508
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype,
10338
10509
  # RoutingStepExpression, Q in Connect
10339
10510
  #
10340
- # UI name: [Contact abandoned][106]
10511
+ # UI name: [Contact abandoned][108]
10341
10512
  #
10342
10513
  # SUM\_CONTACTS\_ABANDONED\_IN\_X
10343
10514
  #
@@ -10350,7 +10521,7 @@ module Aws::Connect
10350
10521
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
10351
10522
  # (for "Less than") or `LTE` (for "Less than equal").
10352
10523
  #
10353
- # UI name: [Contacts abandoned in X seconds][107]
10524
+ # UI name: [Contacts abandoned in X seconds][109]
10354
10525
  #
10355
10526
  # SUM\_CONTACTS\_ANSWERED\_IN\_X
10356
10527
  #
@@ -10363,7 +10534,7 @@ module Aws::Connect
10363
10534
  # 604800 (inclusive), in seconds. For `Comparison`, you can use `LT`
10364
10535
  # (for "Less than") or `LTE` (for "Less than equal").
10365
10536
  #
10366
- # UI name: [Contacts answered in X seconds][108]
10537
+ # UI name: [Contacts answered in X seconds][110]
10367
10538
  #
10368
10539
  # SUM\_CONTACT\_FLOW\_TIME
10369
10540
  #
@@ -10372,7 +10543,7 @@ module Aws::Connect
10372
10543
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10373
10544
  # Agent Hierarchy, Q in Connect
10374
10545
  #
10375
- # UI name: [Contact flow time][109]
10546
+ # UI name: [Contact flow time][111]
10376
10547
  #
10377
10548
  # SUM\_CONTACT\_TIME\_AGENT
10378
10549
  #
@@ -10380,7 +10551,7 @@ module Aws::Connect
10380
10551
  #
10381
10552
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10382
10553
  #
10383
- # UI name: [Agent on contact time][110]
10554
+ # UI name: [Agent on contact time][112]
10384
10555
  #
10385
10556
  # SUM\_CONTACTS\_DISCONNECTED
10386
10557
  #
@@ -10392,7 +10563,7 @@ module Aws::Connect
10392
10563
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in
10393
10564
  # Connect
10394
10565
  #
10395
- # UI name: [Contact disconnected][111]
10566
+ # UI name: [Contact disconnected][113]
10396
10567
  #
10397
10568
  # SUM\_ERROR\_STATUS\_TIME\_AGENT
10398
10569
  #
@@ -10400,7 +10571,7 @@ module Aws::Connect
10400
10571
  #
10401
10572
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10402
10573
  #
10403
- # UI name: [Error status time][112]
10574
+ # UI name: [Error status time][114]
10404
10575
  #
10405
10576
  # SUM\_HANDLE\_TIME
10406
10577
  #
@@ -10409,7 +10580,7 @@ module Aws::Connect
10409
10580
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10410
10581
  # Agent Hierarchy, Q in Connect
10411
10582
  #
10412
- # UI name: [Contact handle time][113]
10583
+ # UI name: [Contact handle time][115]
10413
10584
  #
10414
10585
  # SUM\_HOLD\_TIME
10415
10586
  #
@@ -10418,7 +10589,7 @@ module Aws::Connect
10418
10589
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10419
10590
  # Agent Hierarchy, Q in Connect
10420
10591
  #
10421
- # UI name: [Customer hold time][114]
10592
+ # UI name: [Customer hold time][116]
10422
10593
  #
10423
10594
  # SUM\_IDLE\_TIME\_AGENT
10424
10595
  #
@@ -10426,7 +10597,7 @@ module Aws::Connect
10426
10597
  #
10427
10598
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10428
10599
  #
10429
- # UI name: [Agent idle time][115]
10600
+ # UI name: [Agent idle time][117]
10430
10601
  #
10431
10602
  # SUM\_INTERACTION\_AND\_HOLD\_TIME
10432
10603
  #
@@ -10435,7 +10606,7 @@ module Aws::Connect
10435
10606
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10436
10607
  # Agent Hierarchy, Q in Connect
10437
10608
  #
10438
- # UI name: [Agent interaction and hold time][116]
10609
+ # UI name: [Agent interaction and hold time][118]
10439
10610
  #
10440
10611
  # SUM\_INTERACTION\_TIME
10441
10612
  #
@@ -10444,7 +10615,7 @@ module Aws::Connect
10444
10615
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
10445
10616
  # Agent Hierarchy
10446
10617
  #
10447
- # UI name: [Agent interaction time][117]
10618
+ # UI name: [Agent interaction time][119]
10448
10619
  #
10449
10620
  # SUM\_NON\_PRODUCTIVE\_TIME\_AGENT
10450
10621
  #
@@ -10452,7 +10623,7 @@ module Aws::Connect
10452
10623
  #
10453
10624
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10454
10625
  #
10455
- # UI name: [Agent non-productive time][118]
10626
+ # UI name: [Agent non-productive time][120]
10456
10627
  #
10457
10628
  # SUM\_ONLINE\_TIME\_AGENT
10458
10629
  #
@@ -10460,7 +10631,7 @@ module Aws::Connect
10460
10631
  #
10461
10632
  # Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy
10462
10633
  #
10463
- # UI name: [Online time][119]
10634
+ # UI name: [Online time][121]
10464
10635
  #
10465
10636
  # SUM\_RETRY\_CALLBACK\_ATTEMPTS
10466
10637
  #
@@ -10469,7 +10640,7 @@ module Aws::Connect
10469
10640
  # Valid groupings and filters: Queue, Channel, Routing Profile,
10470
10641
  # contact/segmentAttributes/connect:Subtype, Q in Connect
10471
10642
  #
10472
- # UI name: [Callback attempts][120]
10643
+ # UI name: [Callback attempts][122]
10473
10644
  #
10474
10645
  #
10475
10646
  #
@@ -10518,81 +10689,83 @@ module Aws::Connect
10518
10689
  # [43]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-messages
10519
10690
  # [44]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-non-talk-time
10520
10691
  # [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
10692
+ # [46]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time-customer-first-callback
10693
+ # [47]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-response-time-agent
10694
+ # [48]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-time-agent
10695
+ # [49]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-resolution-time
10696
+ # [50]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-talk-time
10697
+ # [51]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-agent-talk-time
10698
+ # [52]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-customer-talk-time
10699
+ # [53]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection
10700
+ # [54]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection-customer-first-callback
10701
+ # [55]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-weighted-evaluation-score
10702
+ # [56]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-conversations-completed
10703
+ # [57]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#bot-intents-completed
10704
+ # [58]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x
10705
+ # [59]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-contacts-abandoned-after-x-rate
10706
+ # [60]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-interactions
10707
+ # [61]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-progress-rate
10708
+ # [62]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-attempts
10709
+ # [63]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#campaign-send-exclusions
10710
+ # [64]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-created
10711
+ # [65]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-created
10712
+ # [66]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled
10713
+ # [67]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled-by-connected-to-agent-timestamp
10714
+ # [68]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-disconnect
10715
+ # [69]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-agent-disconnect
10716
+ # [70]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-hold-customer-disconnect
10717
+ # [71]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-put-on-hold
10718
+ # [72]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-external
10719
+ # [73]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-internal
10720
+ # [74]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued
10721
+ # [75]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-queued-by-enqueue
10722
+ # [76]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-removed-from-queue
10723
+ # [77]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-resolved
10724
+ # [78]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out
10725
+ # [79]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-by-agent
10726
+ # [80]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-transferred-out-queue
10727
+ # [81]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#current-cases
10728
+ # [82]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#conversations-abandoned
10729
+ # [83]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempts
10730
+ # [84]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#delivery-attempt-disposition-rate
10731
+ # [85]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#evaluations-performed
10732
+ # [86]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome
10733
+ # [87]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-started
10734
+ # [88]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#human-answered
10735
+ # [89]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-flow-time
10736
+ # [90]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#maximum-queued-time
10737
+ # [91]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#minimum-flow-time
10738
+ # [92]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#automatic-fails-percent
10739
+ # [93]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-conversations-outcome
10740
+ # [94]: https://docs.aws.amazon.com/connect/latest/adminguide/bot-metrics.html#percent-bot-intents-outcome
10741
+ # [95]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved-on-first-contact
10742
+ # [96]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#flows-outcome-percentage
10743
+ # [97]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#non-talk-time-percent
10744
+ # [98]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#talk-time-percent
10745
+ # [99]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-talk-time-percent
10746
+ # [100]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-talk-time-percent
10747
+ # [101]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-attempted
10748
+ # [102]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-interacted
10749
+ # [103]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#recipients-targeted
10750
+ # [104]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-reopened
10751
+ # [105]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#cases-resolved
10752
+ # [106]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#service-level
10753
+ # [107]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time
10754
+ # [108]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned
10755
+ # [109]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-abandoned-in-x-seconds
10756
+ # [110]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-answered-in-x-seconds
10757
+ # [111]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-flow-time
10758
+ # [112]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-on-contact-time
10759
+ # [113]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-disconnected
10760
+ # [114]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#error-status-time
10761
+ # [115]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contact-handle-time
10762
+ # [116]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#customer-hold-time
10763
+ # [117]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-idle-time
10764
+ # [118]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-and-hold-time
10765
+ # [119]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-interaction-time
10766
+ # [120]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-non-productive-time
10767
+ # [121]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#online-time
10768
+ # [122]: https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#callback-attempts
10596
10769
  #
10597
10770
  # @option params [String] :next_token
10598
10771
  # The token for the next set of results. Use the value returned in the
@@ -12975,6 +13148,94 @@ module Aws::Connect
12975
13148
  req.send_request(options)
12976
13149
  end
12977
13150
 
13151
+ # Lists the manual assignment queues associated with a routing profile.
13152
+ #
13153
+ # **Use cases**
13154
+ #
13155
+ # Following are common uses cases for this API:
13156
+ #
13157
+ # * This API returns list of queues where contacts can be manually
13158
+ # assigned or picked. The user can additionally filter on queues, if
13159
+ # they have access to those queues (otherwise a invalid request
13160
+ # exception will be thrown).
13161
+ #
13162
+ # For information about how manual contact assignment works in the
13163
+ # agent workspace, see the [Access the Worklist app in the Amazon
13164
+ # Connect agent workspace][1] in the *Amazon Connect Administrator
13165
+ # Guide*.
13166
+ #
13167
+ # **Important things to know**
13168
+ #
13169
+ # * This API only returns the manual assignment queues associated with a
13170
+ # routing profile. Use the ListRoutingProfileQueues API to list the
13171
+ # auto assignment queues for the routing profile.
13172
+ #
13173
+ # ^
13174
+ #
13175
+ # **Endpoints**: See [Amazon Connect endpoints and quotas][2].
13176
+ #
13177
+ #
13178
+ #
13179
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/worklist-app.html
13180
+ # [2]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
13181
+ #
13182
+ # @option params [required, String] :instance_id
13183
+ # The identifier of the Amazon Connect instance. You can [find the
13184
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
13185
+ #
13186
+ #
13187
+ #
13188
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
13189
+ #
13190
+ # @option params [required, String] :routing_profile_id
13191
+ # The identifier of the routing profile.
13192
+ #
13193
+ # @option params [String] :next_token
13194
+ # The token for the next set of results. Use the value returned in the
13195
+ # previous response in the next request to retrieve the next set of
13196
+ # results.
13197
+ #
13198
+ # @option params [Integer] :max_results
13199
+ # The maximum number of results to return per page.
13200
+ #
13201
+ # @return [Types::ListRoutingProfileManualAssignmentQueuesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13202
+ #
13203
+ # * {Types::ListRoutingProfileManualAssignmentQueuesResponse#next_token #next_token} => String
13204
+ # * {Types::ListRoutingProfileManualAssignmentQueuesResponse#routing_profile_manual_assignment_queue_config_summary_list #routing_profile_manual_assignment_queue_config_summary_list} => Array&lt;Types::RoutingProfileManualAssignmentQueueConfigSummary&gt;
13205
+ # * {Types::ListRoutingProfileManualAssignmentQueuesResponse#last_modified_time #last_modified_time} => Time
13206
+ # * {Types::ListRoutingProfileManualAssignmentQueuesResponse#last_modified_region #last_modified_region} => String
13207
+ #
13208
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13209
+ #
13210
+ # @example Request syntax with placeholder values
13211
+ #
13212
+ # resp = client.list_routing_profile_manual_assignment_queues({
13213
+ # instance_id: "InstanceId", # required
13214
+ # routing_profile_id: "RoutingProfileId", # required
13215
+ # next_token: "NextToken",
13216
+ # max_results: 1,
13217
+ # })
13218
+ #
13219
+ # @example Response structure
13220
+ #
13221
+ # resp.next_token #=> String
13222
+ # resp.routing_profile_manual_assignment_queue_config_summary_list #=> Array
13223
+ # resp.routing_profile_manual_assignment_queue_config_summary_list[0].queue_id #=> String
13224
+ # resp.routing_profile_manual_assignment_queue_config_summary_list[0].queue_arn #=> String
13225
+ # resp.routing_profile_manual_assignment_queue_config_summary_list[0].queue_name #=> String
13226
+ # resp.routing_profile_manual_assignment_queue_config_summary_list[0].channel #=> String, one of "VOICE", "CHAT", "TASK", "EMAIL"
13227
+ # resp.last_modified_time #=> Time
13228
+ # resp.last_modified_region #=> String
13229
+ #
13230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileManualAssignmentQueues AWS API Documentation
13231
+ #
13232
+ # @overload list_routing_profile_manual_assignment_queues(params = {})
13233
+ # @param [Hash] params ({})
13234
+ def list_routing_profile_manual_assignment_queues(params = {}, options = {})
13235
+ req = build_request(:list_routing_profile_manual_assignment_queues, params)
13236
+ req.send_request(options)
13237
+ end
13238
+
12978
13239
  # Lists the queues associated with a routing profile.
12979
13240
  #
12980
13241
  # @option params [required, String] :instance_id
@@ -14747,11 +15008,15 @@ module Aws::Connect
14747
15008
  # resp = client.search_contacts({
14748
15009
  # instance_id: "InstanceId", # required
14749
15010
  # time_range: { # required
14750
- # type: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP
15011
+ # type: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, ENQUEUE_TIMESTAMP
14751
15012
  # start_time: Time.now, # required
14752
15013
  # end_time: Time.now, # required
14753
15014
  # },
14754
15015
  # search_criteria: {
15016
+ # name: {
15017
+ # search_text: ["SearchText"], # required
15018
+ # match_type: "MATCH_ALL", # required, accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
15019
+ # },
14755
15020
  # agent_ids: ["AgentResourceId"],
14756
15021
  # agent_hierarchy_groups: {
14757
15022
  # l1_ids: ["HierarchyGroupId"],
@@ -14767,14 +15032,40 @@ module Aws::Connect
14767
15032
  # {
14768
15033
  # participant_role: "AGENT", # required, accepts AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR
14769
15034
  # search_text: ["SearchText"], # required
14770
- # match_type: "MATCH_ALL", # required, accepts MATCH_ALL, MATCH_ANY
15035
+ # match_type: "MATCH_ALL", # required, accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
14771
15036
  # },
14772
15037
  # ],
14773
- # match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY
15038
+ # match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
14774
15039
  # },
14775
15040
  # },
14776
15041
  # initiation_methods: ["INBOUND"], # accepts INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER, CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND, WEBRTC_API, AGENT_REPLY, FLOW
14777
15042
  # queue_ids: ["QueueId"],
15043
+ # routing_criteria: {
15044
+ # steps: [
15045
+ # {
15046
+ # agent_criteria: {
15047
+ # agent_ids: ["AgentResourceId"],
15048
+ # match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
15049
+ # },
15050
+ # },
15051
+ # ],
15052
+ # },
15053
+ # additional_time_range: {
15054
+ # criteria: [ # required
15055
+ # {
15056
+ # time_range: {
15057
+ # type: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, ENQUEUE_TIMESTAMP
15058
+ # start_time: Time.now, # required
15059
+ # end_time: Time.now, # required
15060
+ # },
15061
+ # timestamp_condition: {
15062
+ # type: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, ENQUEUE_TIMESTAMP
15063
+ # condition_type: "NOT_EXISTS", # required, accepts NOT_EXISTS
15064
+ # },
15065
+ # },
15066
+ # ],
15067
+ # match_type: "MATCH_ALL", # required, accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
15068
+ # },
14778
15069
  # searchable_contact_attributes: {
14779
15070
  # criteria: [ # required
14780
15071
  # {
@@ -14782,7 +15073,7 @@ module Aws::Connect
14782
15073
  # values: ["SearchableContactAttributeValue"], # required
14783
15074
  # },
14784
15075
  # ],
14785
- # match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY
15076
+ # match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
14786
15077
  # },
14787
15078
  # searchable_segment_attributes: {
14788
15079
  # criteria: [ # required
@@ -14791,13 +15082,13 @@ module Aws::Connect
14791
15082
  # values: ["SearchableSegmentAttributeValue"], # required
14792
15083
  # },
14793
15084
  # ],
14794
- # match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY
15085
+ # match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
14795
15086
  # },
14796
15087
  # },
14797
15088
  # max_results: 1,
14798
15089
  # next_token: "LargeNextToken",
14799
15090
  # sort: {
14800
- # field_name: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, INITIATION_METHOD, CHANNEL
15091
+ # field_name: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, INITIATION_METHOD, CHANNEL, EXPIRY_TIMESTAMP
14801
15092
  # order: "ASCENDING", # required, accepts ASCENDING, DESCENDING
14802
15093
  # },
14803
15094
  # })
@@ -14820,6 +15111,40 @@ module Aws::Connect
14820
15111
  # resp.contacts[0].scheduled_timestamp #=> Time
14821
15112
  # resp.contacts[0].segment_attributes #=> Hash
14822
15113
  # resp.contacts[0].segment_attributes["SegmentAttributeName"].value_string #=> String
15114
+ # resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map #=> Hash
15115
+ # resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_string #=> String
15116
+ # resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_map #=> Types::SegmentAttributeValueMap
15117
+ # resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_integer #=> Integer
15118
+ # resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_list #=> Array
15119
+ # resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_list[0] #=> Types::SegmentAttributeValue
15120
+ # resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_arn #=> String
15121
+ # resp.contacts[0].name #=> String
15122
+ # resp.contacts[0].routing_criteria.steps #=> Array
15123
+ # resp.contacts[0].routing_criteria.steps[0].expiry.duration_in_seconds #=> Integer
15124
+ # resp.contacts[0].routing_criteria.steps[0].expiry.expiry_timestamp #=> Time
15125
+ # resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.name #=> String
15126
+ # resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.value #=> String
15127
+ # resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.proficiency_level #=> Float
15128
+ # resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.range.min_proficiency_level #=> Float
15129
+ # resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.range.max_proficiency_level #=> Float
15130
+ # resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
15131
+ # resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
15132
+ # resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.comparison_operator #=> String
15133
+ # resp.contacts[0].routing_criteria.steps[0].expression.and_expression #=> Array
15134
+ # resp.contacts[0].routing_criteria.steps[0].expression.and_expression[0] #=> Types::Expression
15135
+ # resp.contacts[0].routing_criteria.steps[0].expression.or_expression #=> Array
15136
+ # resp.contacts[0].routing_criteria.steps[0].expression.or_expression[0] #=> Types::Expression
15137
+ # resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.name #=> String
15138
+ # resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.value #=> String
15139
+ # resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.proficiency_level #=> Float
15140
+ # resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.range.min_proficiency_level #=> Float
15141
+ # resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.range.max_proficiency_level #=> Float
15142
+ # resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
15143
+ # resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
15144
+ # resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.comparison_operator #=> String
15145
+ # resp.contacts[0].routing_criteria.steps[0].status #=> String, one of "ACTIVE", "INACTIVE", "JOINED", "EXPIRED"
15146
+ # resp.contacts[0].routing_criteria.activation_timestamp #=> Time
15147
+ # resp.contacts[0].routing_criteria.index #=> Integer
14823
15148
  # resp.next_token #=> String
14824
15149
  # resp.total_count #=> Integer
14825
15150
  #
@@ -15773,6 +16098,7 @@ module Aws::Connect
15773
16098
  # resp.routing_profiles[0].tags #=> Hash
15774
16099
  # resp.routing_profiles[0].tags["TagKey"] #=> String
15775
16100
  # resp.routing_profiles[0].number_of_associated_queues #=> Integer
16101
+ # resp.routing_profiles[0].number_of_associated_manual_assignment_queues #=> Integer
15776
16102
  # resp.routing_profiles[0].number_of_associated_users #=> Integer
15777
16103
  # resp.routing_profiles[0].agent_availability_timer #=> String, one of "TIME_SINCE_LAST_ACTIVITY", "TIME_SINCE_LAST_INBOUND"
15778
16104
  # resp.routing_profiles[0].last_modified_time #=> Time
@@ -15780,6 +16106,8 @@ module Aws::Connect
15780
16106
  # resp.routing_profiles[0].is_default #=> Boolean
15781
16107
  # resp.routing_profiles[0].associated_queue_ids #=> Array
15782
16108
  # resp.routing_profiles[0].associated_queue_ids[0] #=> String
16109
+ # resp.routing_profiles[0].associated_manual_assignment_queue_ids #=> Array
16110
+ # resp.routing_profiles[0].associated_manual_assignment_queue_ids[0] #=> String
15783
16111
  # resp.next_token #=> String
15784
16112
  # resp.approximate_total_count #=> Integer
15785
16113
  #
@@ -16207,6 +16535,7 @@ module Aws::Connect
16207
16535
  # resp.users[0].phone_config.auto_accept #=> Boolean
16208
16536
  # resp.users[0].phone_config.after_contact_work_time_limit #=> Integer
16209
16537
  # resp.users[0].phone_config.desk_phone_number #=> String
16538
+ # resp.users[0].phone_config.persistent_connection #=> Boolean
16210
16539
  # resp.users[0].routing_profile_id #=> String
16211
16540
  # resp.users[0].security_profile_ids #=> Array
16212
16541
  # resp.users[0].security_profile_ids[0] #=> String
@@ -19699,7 +20028,7 @@ module Aws::Connect
19699
20028
  # The date from when the hours of operation override would be effective.
19700
20029
  #
19701
20030
  # @option params [String] :effective_till
19702
- # The date till when the hours of operation override would be effective.
20031
+ # The date until the hours of operation override is effective.
19703
20032
  #
19704
20033
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
19705
20034
  #
@@ -21475,6 +21804,7 @@ module Aws::Connect
21475
21804
  # auto_accept: false,
21476
21805
  # after_contact_work_time_limit: 1,
21477
21806
  # desk_phone_number: "PhoneNumber",
21807
+ # persistent_connection: false,
21478
21808
  # },
21479
21809
  # user_id: "UserId", # required
21480
21810
  # instance_id: "InstanceId", # required
@@ -21723,7 +22053,7 @@ module Aws::Connect
21723
22053
  tracer: tracer
21724
22054
  )
21725
22055
  context[:gem_name] = 'aws-sdk-connect'
21726
- context[:gem_version] = '1.216.0'
22056
+ context[:gem_version] = '1.218.0'
21727
22057
  Seahorse::Client::Request.new(handlers, context)
21728
22058
  end
21729
22059