aws-sdk-connect 1.217.0 → 1.219.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +312 -11
- data/lib/aws-sdk-connect/client_api.rb +132 -2
- data/lib/aws-sdk-connect/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-connect/types.rb +377 -7
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +87 -8
- data/sig/types.rbs +104 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81a50ddd5637c1f7d1c35117614539a19912bfe4a4038b5f4c3fae517b5c585e
|
4
|
+
data.tar.gz: a1c280286c08deeee9f7d79f141982ddae60e7d4fc809ef1a6646527d0bc40bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0df44476c1b3107bc60c45ee8c95174709805e656c016655b4029b887e0f05b8432d763ed04cef2d506d8fac0b2d9f7e934ea862064a9e815d3f4d8f3168372f
|
7
|
+
data.tar.gz: 73b5d1b08da2aa7b8dca68972600aa94f956ba09d1c696fa7fde8645a9c7cdf578c6b2b7d79db742d7826c8410341fd8af8c752547dd4c6de05e49df588cb83a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.219.0 (2025-10-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - SDK release for TaskTemplateInfo in Contact for DescribeContact response.
|
8
|
+
|
9
|
+
1.218.0 (2025-09-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs.
|
13
|
+
|
4
14
|
1.217.0 (2025-09-19)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.219.0
|
@@ -683,6 +683,80 @@ 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
|
+
# * Programmatically assign queued contacts to available users.
|
693
|
+
#
|
694
|
+
# * Leverage the IAM context key `connect:PreferredUserArn` to restrict
|
695
|
+
# contact association to specific preferred user.
|
696
|
+
#
|
697
|
+
# **Important things to know**
|
698
|
+
#
|
699
|
+
# * Use this API with chat, email, and task contacts. It does not
|
700
|
+
# support voice contacts.
|
701
|
+
#
|
702
|
+
# * Use it to associate contacts with users regardless of their current
|
703
|
+
# state, including custom states. Ensure your application logic
|
704
|
+
# accounts for user availability before making associations.
|
705
|
+
#
|
706
|
+
# * It honors the IAM context key `connect:PreferredUserArn` to prevent
|
707
|
+
# unauthorized contact associations.
|
708
|
+
#
|
709
|
+
# * It respects the IAM context key `connect:PreferredUserArn` to
|
710
|
+
# enforce authorization controls and prevent unauthorized contact
|
711
|
+
# associations. Verify that your IAM policies are properly configured
|
712
|
+
# to support your intended use cases.
|
713
|
+
#
|
714
|
+
# * The service quota *Queues per routing profile per instance* applies
|
715
|
+
# to manually assigned queues, too. For more information about this
|
716
|
+
# quota, see [Amazon Connect quotas][1] in the *Amazon Connect
|
717
|
+
# Administrator Guide*.
|
718
|
+
#
|
719
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][2].
|
720
|
+
#
|
721
|
+
#
|
722
|
+
#
|
723
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas
|
724
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
725
|
+
#
|
726
|
+
# @option params [required, String] :instance_id
|
727
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
728
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
729
|
+
#
|
730
|
+
#
|
731
|
+
#
|
732
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
733
|
+
#
|
734
|
+
# @option params [required, String] :contact_id
|
735
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
736
|
+
#
|
737
|
+
# @option params [required, String] :user_id
|
738
|
+
# The identifier for the user. This can be the ID or the ARN of the
|
739
|
+
# user.
|
740
|
+
#
|
741
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
742
|
+
#
|
743
|
+
# @example Request syntax with placeholder values
|
744
|
+
#
|
745
|
+
# resp = client.associate_contact_with_user({
|
746
|
+
# instance_id: "InstanceId", # required
|
747
|
+
# contact_id: "ContactId", # required
|
748
|
+
# user_id: "AgentResourceId", # required
|
749
|
+
# })
|
750
|
+
#
|
751
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateContactWithUser AWS API Documentation
|
752
|
+
#
|
753
|
+
# @overload associate_contact_with_user(params = {})
|
754
|
+
# @param [Hash] params ({})
|
755
|
+
def associate_contact_with_user(params = {}, options = {})
|
756
|
+
req = build_request(:associate_contact_with_user, params)
|
757
|
+
req.send_request(options)
|
758
|
+
end
|
759
|
+
|
686
760
|
# Associates an existing vocabulary as the default. Contact Lens for
|
687
761
|
# Amazon Connect uses the vocabulary in post-call and real-time analysis
|
688
762
|
# sessions for the given language.
|
@@ -1081,9 +1155,12 @@ module Aws::Connect
|
|
1081
1155
|
# @option params [required, String] :routing_profile_id
|
1082
1156
|
# The identifier of the routing profile.
|
1083
1157
|
#
|
1084
|
-
# @option params [
|
1158
|
+
# @option params [Array<Types::RoutingProfileQueueConfig>] :queue_configs
|
1085
1159
|
# The queues to associate with this routing profile.
|
1086
1160
|
#
|
1161
|
+
# @option params [Array<Types::RoutingProfileManualAssignmentQueueConfig>] :manual_assignment_queue_configs
|
1162
|
+
# The manual assignment queues to associate with this routing profile.
|
1163
|
+
#
|
1087
1164
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1088
1165
|
#
|
1089
1166
|
# @example Request syntax with placeholder values
|
@@ -1091,7 +1168,7 @@ module Aws::Connect
|
|
1091
1168
|
# resp = client.associate_routing_profile_queues({
|
1092
1169
|
# instance_id: "InstanceId", # required
|
1093
1170
|
# routing_profile_id: "RoutingProfileId", # required
|
1094
|
-
# queue_configs: [
|
1171
|
+
# queue_configs: [
|
1095
1172
|
# {
|
1096
1173
|
# queue_reference: { # required
|
1097
1174
|
# queue_id: "QueueId", # required
|
@@ -1101,6 +1178,14 @@ module Aws::Connect
|
|
1101
1178
|
# delay: 1, # required
|
1102
1179
|
# },
|
1103
1180
|
# ],
|
1181
|
+
# manual_assignment_queue_configs: [
|
1182
|
+
# {
|
1183
|
+
# queue_reference: { # required
|
1184
|
+
# queue_id: "QueueId", # required
|
1185
|
+
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
|
1186
|
+
# },
|
1187
|
+
# },
|
1188
|
+
# ],
|
1104
1189
|
# })
|
1105
1190
|
#
|
1106
1191
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateRoutingProfileQueues AWS API Documentation
|
@@ -3300,6 +3385,16 @@ module Aws::Connect
|
|
3300
3385
|
#
|
3301
3386
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html
|
3302
3387
|
#
|
3388
|
+
# @option params [Array<Types::RoutingProfileManualAssignmentQueueConfig>] :manual_assignment_queue_configs
|
3389
|
+
# The manual assignment queues associated with the routing profile. If
|
3390
|
+
# no queue is added, agents and supervisors can't pick or assign any
|
3391
|
+
# contacts from this routing profile. The limit of 10 array members
|
3392
|
+
# applies to the maximum number of
|
3393
|
+
# RoutingProfileManualAssignmentQueueConfig objects that can be passed
|
3394
|
+
# during a CreateRoutingProfile API request. It is different from the
|
3395
|
+
# quota of 50 queues per routing profile per instance that is listed in
|
3396
|
+
# Amazon Connect service quotas.
|
3397
|
+
#
|
3303
3398
|
# @option params [required, Array<Types::MediaConcurrency>] :media_concurrencies
|
3304
3399
|
# The channels that agents can handle in the Contact Control Panel (CCP)
|
3305
3400
|
# for this routing profile.
|
@@ -3336,6 +3431,14 @@ module Aws::Connect
|
|
3336
3431
|
# delay: 1, # required
|
3337
3432
|
# },
|
3338
3433
|
# ],
|
3434
|
+
# manual_assignment_queue_configs: [
|
3435
|
+
# {
|
3436
|
+
# queue_reference: { # required
|
3437
|
+
# queue_id: "QueueId", # required
|
3438
|
+
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
|
3439
|
+
# },
|
3440
|
+
# },
|
3441
|
+
# ],
|
3339
3442
|
# media_concurrencies: [ # required
|
3340
3443
|
# {
|
3341
3444
|
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
|
@@ -5419,6 +5522,25 @@ module Aws::Connect
|
|
5419
5522
|
#
|
5420
5523
|
# Describes the specified contact.
|
5421
5524
|
#
|
5525
|
+
# **Use cases**
|
5526
|
+
#
|
5527
|
+
# Following are common uses cases for this API:
|
5528
|
+
#
|
5529
|
+
# * Retrieve contact information such as the caller's phone number and
|
5530
|
+
# the specific number the caller dialed to integrate into custom
|
5531
|
+
# monitoring or custom agent experience solutions.
|
5532
|
+
#
|
5533
|
+
# * Detect when a customer chat session disconnects due to a network
|
5534
|
+
# issue on the agent's end. Use the DisconnectReason field in the
|
5535
|
+
# [ContactTraceRecord][1] to detect this event and then re-queue the
|
5536
|
+
# chat for followup.
|
5537
|
+
#
|
5538
|
+
# * Identify after contact work (ACW) duration and call recordings
|
5539
|
+
# information when a COMPLETED event is received by using the [contact
|
5540
|
+
# event stream][2].
|
5541
|
+
#
|
5542
|
+
# **Important things to know**
|
5543
|
+
#
|
5422
5544
|
# * `SystemEndpoint` is not populated for contacts with initiation
|
5423
5545
|
# method of MONITOR, QUEUE\_TRANSFER, or CALLBACK
|
5424
5546
|
#
|
@@ -5427,6 +5549,14 @@ module Aws::Connect
|
|
5427
5549
|
# contact information that is available in Amazon Connect is returned
|
5428
5550
|
# by this API.
|
5429
5551
|
#
|
5552
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][3].
|
5553
|
+
#
|
5554
|
+
#
|
5555
|
+
#
|
5556
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/ctr-data-model.html#ctr-ContactTraceRecord
|
5557
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-events.html
|
5558
|
+
# [3]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
5559
|
+
#
|
5430
5560
|
# @option params [required, String] :instance_id
|
5431
5561
|
# The identifier of the Amazon Connect instance. You can [find the
|
5432
5562
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -5607,6 +5737,8 @@ module Aws::Connect
|
|
5607
5737
|
# resp.contact.contact_evaluations["EvaluationId"].end_timestamp #=> Time
|
5608
5738
|
# resp.contact.contact_evaluations["EvaluationId"].delete_timestamp #=> Time
|
5609
5739
|
# resp.contact.contact_evaluations["EvaluationId"].export_location #=> String
|
5740
|
+
# resp.contact.task_template_info.arn #=> String
|
5741
|
+
# resp.contact.task_template_info.name #=> String
|
5610
5742
|
# resp.contact.contact_details.name #=> String
|
5611
5743
|
# resp.contact.contact_details.description #=> String
|
5612
5744
|
# resp.contact.attributes #=> Hash
|
@@ -6548,6 +6680,7 @@ module Aws::Connect
|
|
6548
6680
|
# resp.routing_profile.tags #=> Hash
|
6549
6681
|
# resp.routing_profile.tags["TagKey"] #=> String
|
6550
6682
|
# resp.routing_profile.number_of_associated_queues #=> Integer
|
6683
|
+
# resp.routing_profile.number_of_associated_manual_assignment_queues #=> Integer
|
6551
6684
|
# resp.routing_profile.number_of_associated_users #=> Integer
|
6552
6685
|
# resp.routing_profile.agent_availability_timer #=> String, one of "TIME_SINCE_LAST_ACTIVITY", "TIME_SINCE_LAST_INBOUND"
|
6553
6686
|
# resp.routing_profile.last_modified_time #=> Time
|
@@ -6555,6 +6688,8 @@ module Aws::Connect
|
|
6555
6688
|
# resp.routing_profile.is_default #=> Boolean
|
6556
6689
|
# resp.routing_profile.associated_queue_ids #=> Array
|
6557
6690
|
# resp.routing_profile.associated_queue_ids[0] #=> String
|
6691
|
+
# resp.routing_profile.associated_manual_assignment_queue_ids #=> Array
|
6692
|
+
# resp.routing_profile.associated_manual_assignment_queue_ids[0] #=> String
|
6558
6693
|
#
|
6559
6694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeRoutingProfile AWS API Documentation
|
6560
6695
|
#
|
@@ -7494,9 +7629,13 @@ module Aws::Connect
|
|
7494
7629
|
# @option params [required, String] :routing_profile_id
|
7495
7630
|
# The identifier of the routing profile.
|
7496
7631
|
#
|
7497
|
-
# @option params [
|
7632
|
+
# @option params [Array<Types::RoutingProfileQueueReference>] :queue_references
|
7498
7633
|
# The queues to disassociate from this routing profile.
|
7499
7634
|
#
|
7635
|
+
# @option params [Array<Types::RoutingProfileQueueReference>] :manual_assignment_queue_references
|
7636
|
+
# The manual assignment queues to disassociate with this routing
|
7637
|
+
# profile.
|
7638
|
+
#
|
7500
7639
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
7501
7640
|
#
|
7502
7641
|
# @example Request syntax with placeholder values
|
@@ -7504,7 +7643,13 @@ module Aws::Connect
|
|
7504
7643
|
# resp = client.disassociate_routing_profile_queues({
|
7505
7644
|
# instance_id: "InstanceId", # required
|
7506
7645
|
# routing_profile_id: "RoutingProfileId", # required
|
7507
|
-
# queue_references: [
|
7646
|
+
# queue_references: [
|
7647
|
+
# {
|
7648
|
+
# queue_id: "QueueId", # required
|
7649
|
+
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
|
7650
|
+
# },
|
7651
|
+
# ],
|
7652
|
+
# manual_assignment_queue_references: [
|
7508
7653
|
# {
|
7509
7654
|
# queue_id: "QueueId", # required
|
7510
7655
|
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK, EMAIL
|
@@ -12859,6 +13004,7 @@ module Aws::Connect
|
|
12859
13004
|
# @option params [required, String] :instance_id
|
12860
13005
|
# The identifier of the Amazon Connect instance. You can [find the
|
12861
13006
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
13007
|
+
# Both Instance ID and Instance ARN are supported input formats.
|
12862
13008
|
#
|
12863
13009
|
#
|
12864
13010
|
#
|
@@ -13027,6 +13173,94 @@ module Aws::Connect
|
|
13027
13173
|
req.send_request(options)
|
13028
13174
|
end
|
13029
13175
|
|
13176
|
+
# Lists the manual assignment queues associated with a routing profile.
|
13177
|
+
#
|
13178
|
+
# **Use cases**
|
13179
|
+
#
|
13180
|
+
# Following are common uses cases for this API:
|
13181
|
+
#
|
13182
|
+
# * This API returns list of queues where contacts can be manually
|
13183
|
+
# assigned or picked by an agent who has access to the Worklist app.
|
13184
|
+
# The user can additionally filter on queues, if they have access to
|
13185
|
+
# those queues (otherwise a invalid request exception will be thrown).
|
13186
|
+
#
|
13187
|
+
# For information about how manual contact assignment works in the
|
13188
|
+
# agent workspace, see the [Access the Worklist app in the Amazon
|
13189
|
+
# Connect agent workspace][1] in the *Amazon Connect Administrator
|
13190
|
+
# Guide*.
|
13191
|
+
#
|
13192
|
+
# **Important things to know**
|
13193
|
+
#
|
13194
|
+
# * This API only returns the manual assignment queues associated with a
|
13195
|
+
# routing profile. Use the ListRoutingProfileQueues API to list the
|
13196
|
+
# auto assignment queues for the routing profile.
|
13197
|
+
#
|
13198
|
+
# ^
|
13199
|
+
#
|
13200
|
+
# **Endpoints**: See [Amazon Connect endpoints and quotas][2].
|
13201
|
+
#
|
13202
|
+
#
|
13203
|
+
#
|
13204
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/worklist-app.html
|
13205
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/connect_region.html
|
13206
|
+
#
|
13207
|
+
# @option params [required, String] :instance_id
|
13208
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
13209
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
13210
|
+
#
|
13211
|
+
#
|
13212
|
+
#
|
13213
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
13214
|
+
#
|
13215
|
+
# @option params [required, String] :routing_profile_id
|
13216
|
+
# The identifier of the routing profile.
|
13217
|
+
#
|
13218
|
+
# @option params [String] :next_token
|
13219
|
+
# The token for the next set of results. Use the value returned in the
|
13220
|
+
# previous response in the next request to retrieve the next set of
|
13221
|
+
# results.
|
13222
|
+
#
|
13223
|
+
# @option params [Integer] :max_results
|
13224
|
+
# The maximum number of results to return per page.
|
13225
|
+
#
|
13226
|
+
# @return [Types::ListRoutingProfileManualAssignmentQueuesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13227
|
+
#
|
13228
|
+
# * {Types::ListRoutingProfileManualAssignmentQueuesResponse#next_token #next_token} => String
|
13229
|
+
# * {Types::ListRoutingProfileManualAssignmentQueuesResponse#routing_profile_manual_assignment_queue_config_summary_list #routing_profile_manual_assignment_queue_config_summary_list} => Array<Types::RoutingProfileManualAssignmentQueueConfigSummary>
|
13230
|
+
# * {Types::ListRoutingProfileManualAssignmentQueuesResponse#last_modified_time #last_modified_time} => Time
|
13231
|
+
# * {Types::ListRoutingProfileManualAssignmentQueuesResponse#last_modified_region #last_modified_region} => String
|
13232
|
+
#
|
13233
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
13234
|
+
#
|
13235
|
+
# @example Request syntax with placeholder values
|
13236
|
+
#
|
13237
|
+
# resp = client.list_routing_profile_manual_assignment_queues({
|
13238
|
+
# instance_id: "InstanceId", # required
|
13239
|
+
# routing_profile_id: "RoutingProfileId", # required
|
13240
|
+
# next_token: "NextToken",
|
13241
|
+
# max_results: 1,
|
13242
|
+
# })
|
13243
|
+
#
|
13244
|
+
# @example Response structure
|
13245
|
+
#
|
13246
|
+
# resp.next_token #=> String
|
13247
|
+
# resp.routing_profile_manual_assignment_queue_config_summary_list #=> Array
|
13248
|
+
# resp.routing_profile_manual_assignment_queue_config_summary_list[0].queue_id #=> String
|
13249
|
+
# resp.routing_profile_manual_assignment_queue_config_summary_list[0].queue_arn #=> String
|
13250
|
+
# resp.routing_profile_manual_assignment_queue_config_summary_list[0].queue_name #=> String
|
13251
|
+
# resp.routing_profile_manual_assignment_queue_config_summary_list[0].channel #=> String, one of "VOICE", "CHAT", "TASK", "EMAIL"
|
13252
|
+
# resp.last_modified_time #=> Time
|
13253
|
+
# resp.last_modified_region #=> String
|
13254
|
+
#
|
13255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileManualAssignmentQueues AWS API Documentation
|
13256
|
+
#
|
13257
|
+
# @overload list_routing_profile_manual_assignment_queues(params = {})
|
13258
|
+
# @param [Hash] params ({})
|
13259
|
+
def list_routing_profile_manual_assignment_queues(params = {}, options = {})
|
13260
|
+
req = build_request(:list_routing_profile_manual_assignment_queues, params)
|
13261
|
+
req.send_request(options)
|
13262
|
+
end
|
13263
|
+
|
13030
13264
|
# Lists the queues associated with a routing profile.
|
13031
13265
|
#
|
13032
13266
|
# @option params [required, String] :instance_id
|
@@ -14799,11 +15033,15 @@ module Aws::Connect
|
|
14799
15033
|
# resp = client.search_contacts({
|
14800
15034
|
# instance_id: "InstanceId", # required
|
14801
15035
|
# time_range: { # required
|
14802
|
-
# type: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP
|
15036
|
+
# type: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, ENQUEUE_TIMESTAMP
|
14803
15037
|
# start_time: Time.now, # required
|
14804
15038
|
# end_time: Time.now, # required
|
14805
15039
|
# },
|
14806
15040
|
# search_criteria: {
|
15041
|
+
# name: {
|
15042
|
+
# search_text: ["SearchText"], # required
|
15043
|
+
# match_type: "MATCH_ALL", # required, accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
|
15044
|
+
# },
|
14807
15045
|
# agent_ids: ["AgentResourceId"],
|
14808
15046
|
# agent_hierarchy_groups: {
|
14809
15047
|
# l1_ids: ["HierarchyGroupId"],
|
@@ -14819,14 +15057,40 @@ module Aws::Connect
|
|
14819
15057
|
# {
|
14820
15058
|
# participant_role: "AGENT", # required, accepts AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR
|
14821
15059
|
# search_text: ["SearchText"], # required
|
14822
|
-
# match_type: "MATCH_ALL", # required, accepts MATCH_ALL, MATCH_ANY
|
15060
|
+
# match_type: "MATCH_ALL", # required, accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
|
14823
15061
|
# },
|
14824
15062
|
# ],
|
14825
|
-
# match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY
|
15063
|
+
# match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
|
14826
15064
|
# },
|
14827
15065
|
# },
|
14828
15066
|
# initiation_methods: ["INBOUND"], # accepts INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER, CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND, WEBRTC_API, AGENT_REPLY, FLOW
|
14829
15067
|
# queue_ids: ["QueueId"],
|
15068
|
+
# routing_criteria: {
|
15069
|
+
# steps: [
|
15070
|
+
# {
|
15071
|
+
# agent_criteria: {
|
15072
|
+
# agent_ids: ["AgentResourceId"],
|
15073
|
+
# match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
|
15074
|
+
# },
|
15075
|
+
# },
|
15076
|
+
# ],
|
15077
|
+
# },
|
15078
|
+
# additional_time_range: {
|
15079
|
+
# criteria: [ # required
|
15080
|
+
# {
|
15081
|
+
# time_range: {
|
15082
|
+
# type: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, ENQUEUE_TIMESTAMP
|
15083
|
+
# start_time: Time.now, # required
|
15084
|
+
# end_time: Time.now, # required
|
15085
|
+
# },
|
15086
|
+
# timestamp_condition: {
|
15087
|
+
# type: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, ENQUEUE_TIMESTAMP
|
15088
|
+
# condition_type: "NOT_EXISTS", # required, accepts NOT_EXISTS
|
15089
|
+
# },
|
15090
|
+
# },
|
15091
|
+
# ],
|
15092
|
+
# match_type: "MATCH_ALL", # required, accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
|
15093
|
+
# },
|
14830
15094
|
# searchable_contact_attributes: {
|
14831
15095
|
# criteria: [ # required
|
14832
15096
|
# {
|
@@ -14834,7 +15098,7 @@ module Aws::Connect
|
|
14834
15098
|
# values: ["SearchableContactAttributeValue"], # required
|
14835
15099
|
# },
|
14836
15100
|
# ],
|
14837
|
-
# match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY
|
15101
|
+
# match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
|
14838
15102
|
# },
|
14839
15103
|
# searchable_segment_attributes: {
|
14840
15104
|
# criteria: [ # required
|
@@ -14843,13 +15107,13 @@ module Aws::Connect
|
|
14843
15107
|
# values: ["SearchableSegmentAttributeValue"], # required
|
14844
15108
|
# },
|
14845
15109
|
# ],
|
14846
|
-
# match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY
|
15110
|
+
# match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
|
14847
15111
|
# },
|
14848
15112
|
# },
|
14849
15113
|
# max_results: 1,
|
14850
15114
|
# next_token: "LargeNextToken",
|
14851
15115
|
# sort: {
|
14852
|
-
# field_name: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, INITIATION_METHOD, CHANNEL
|
15116
|
+
# field_name: "INITIATION_TIMESTAMP", # required, accepts INITIATION_TIMESTAMP, SCHEDULED_TIMESTAMP, CONNECTED_TO_AGENT_TIMESTAMP, DISCONNECT_TIMESTAMP, INITIATION_METHOD, CHANNEL, EXPIRY_TIMESTAMP
|
14853
15117
|
# order: "ASCENDING", # required, accepts ASCENDING, DESCENDING
|
14854
15118
|
# },
|
14855
15119
|
# })
|
@@ -14872,6 +15136,40 @@ module Aws::Connect
|
|
14872
15136
|
# resp.contacts[0].scheduled_timestamp #=> Time
|
14873
15137
|
# resp.contacts[0].segment_attributes #=> Hash
|
14874
15138
|
# resp.contacts[0].segment_attributes["SegmentAttributeName"].value_string #=> String
|
15139
|
+
# resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map #=> Hash
|
15140
|
+
# resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_string #=> String
|
15141
|
+
# resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_map #=> Types::SegmentAttributeValueMap
|
15142
|
+
# resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_integer #=> Integer
|
15143
|
+
# resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_list #=> Array
|
15144
|
+
# resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_list[0] #=> Types::SegmentAttributeValue
|
15145
|
+
# resp.contacts[0].segment_attributes["SegmentAttributeName"].value_map["SegmentAttributeName"].value_arn #=> String
|
15146
|
+
# resp.contacts[0].name #=> String
|
15147
|
+
# resp.contacts[0].routing_criteria.steps #=> Array
|
15148
|
+
# resp.contacts[0].routing_criteria.steps[0].expiry.duration_in_seconds #=> Integer
|
15149
|
+
# resp.contacts[0].routing_criteria.steps[0].expiry.expiry_timestamp #=> Time
|
15150
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.name #=> String
|
15151
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.value #=> String
|
15152
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.proficiency_level #=> Float
|
15153
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.range.min_proficiency_level #=> Float
|
15154
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.range.max_proficiency_level #=> Float
|
15155
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
|
15156
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
|
15157
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.attribute_condition.comparison_operator #=> String
|
15158
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.and_expression #=> Array
|
15159
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.and_expression[0] #=> Types::Expression
|
15160
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.or_expression #=> Array
|
15161
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.or_expression[0] #=> Types::Expression
|
15162
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.name #=> String
|
15163
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.value #=> String
|
15164
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.proficiency_level #=> Float
|
15165
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.range.min_proficiency_level #=> Float
|
15166
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.range.max_proficiency_level #=> Float
|
15167
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
|
15168
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
|
15169
|
+
# resp.contacts[0].routing_criteria.steps[0].expression.not_attribute_condition.comparison_operator #=> String
|
15170
|
+
# resp.contacts[0].routing_criteria.steps[0].status #=> String, one of "ACTIVE", "INACTIVE", "JOINED", "EXPIRED"
|
15171
|
+
# resp.contacts[0].routing_criteria.activation_timestamp #=> Time
|
15172
|
+
# resp.contacts[0].routing_criteria.index #=> Integer
|
14875
15173
|
# resp.next_token #=> String
|
14876
15174
|
# resp.total_count #=> Integer
|
14877
15175
|
#
|
@@ -15825,6 +16123,7 @@ module Aws::Connect
|
|
15825
16123
|
# resp.routing_profiles[0].tags #=> Hash
|
15826
16124
|
# resp.routing_profiles[0].tags["TagKey"] #=> String
|
15827
16125
|
# resp.routing_profiles[0].number_of_associated_queues #=> Integer
|
16126
|
+
# resp.routing_profiles[0].number_of_associated_manual_assignment_queues #=> Integer
|
15828
16127
|
# resp.routing_profiles[0].number_of_associated_users #=> Integer
|
15829
16128
|
# resp.routing_profiles[0].agent_availability_timer #=> String, one of "TIME_SINCE_LAST_ACTIVITY", "TIME_SINCE_LAST_INBOUND"
|
15830
16129
|
# resp.routing_profiles[0].last_modified_time #=> Time
|
@@ -15832,6 +16131,8 @@ module Aws::Connect
|
|
15832
16131
|
# resp.routing_profiles[0].is_default #=> Boolean
|
15833
16132
|
# resp.routing_profiles[0].associated_queue_ids #=> Array
|
15834
16133
|
# resp.routing_profiles[0].associated_queue_ids[0] #=> String
|
16134
|
+
# resp.routing_profiles[0].associated_manual_assignment_queue_ids #=> Array
|
16135
|
+
# resp.routing_profiles[0].associated_manual_assignment_queue_ids[0] #=> String
|
15835
16136
|
# resp.next_token #=> String
|
15836
16137
|
# resp.approximate_total_count #=> Integer
|
15837
16138
|
#
|
@@ -21777,7 +22078,7 @@ module Aws::Connect
|
|
21777
22078
|
tracer: tracer
|
21778
22079
|
)
|
21779
22080
|
context[:gem_name] = 'aws-sdk-connect'
|
21780
|
-
context[:gem_version] = '1.
|
22081
|
+
context[:gem_version] = '1.219.0'
|
21781
22082
|
Seahorse::Client::Request.new(handlers, context)
|
21782
22083
|
end
|
21783
22084
|
|