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
@@ -839,6 +839,38 @@ module Aws::Connect
|
|
839
839
|
include Aws::Structure
|
840
840
|
end
|
841
841
|
|
842
|
+
# @!attribute [rw] instance_id
|
843
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
844
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
845
|
+
#
|
846
|
+
#
|
847
|
+
#
|
848
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
849
|
+
# @return [String]
|
850
|
+
#
|
851
|
+
# @!attribute [rw] contact_id
|
852
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
853
|
+
# @return [String]
|
854
|
+
#
|
855
|
+
# @!attribute [rw] user_id
|
856
|
+
# The identifier for the user. This can be the ID or the ARN of the
|
857
|
+
# user.
|
858
|
+
# @return [String]
|
859
|
+
#
|
860
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateContactWithUserRequest AWS API Documentation
|
861
|
+
#
|
862
|
+
class AssociateContactWithUserRequest < Struct.new(
|
863
|
+
:instance_id,
|
864
|
+
:contact_id,
|
865
|
+
:user_id)
|
866
|
+
SENSITIVE = []
|
867
|
+
include Aws::Structure
|
868
|
+
end
|
869
|
+
|
870
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateContactWithUserResponse AWS API Documentation
|
871
|
+
#
|
872
|
+
class AssociateContactWithUserResponse < Aws::EmptyStructure; end
|
873
|
+
|
842
874
|
# @!attribute [rw] instance_id
|
843
875
|
# The identifier of the Amazon Connect instance. You can [find the
|
844
876
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -1141,12 +1173,17 @@ module Aws::Connect
|
|
1141
1173
|
# The queues to associate with this routing profile.
|
1142
1174
|
# @return [Array<Types::RoutingProfileQueueConfig>]
|
1143
1175
|
#
|
1176
|
+
# @!attribute [rw] manual_assignment_queue_configs
|
1177
|
+
# The manual assignment queues to associate with this routing profile.
|
1178
|
+
# @return [Array<Types::RoutingProfileManualAssignmentQueueConfig>]
|
1179
|
+
#
|
1144
1180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateRoutingProfileQueuesRequest AWS API Documentation
|
1145
1181
|
#
|
1146
1182
|
class AssociateRoutingProfileQueuesRequest < Struct.new(
|
1147
1183
|
:instance_id,
|
1148
1184
|
:routing_profile_id,
|
1149
|
-
:queue_configs
|
1185
|
+
:queue_configs,
|
1186
|
+
:manual_assignment_queue_configs)
|
1150
1187
|
SENSITIVE = []
|
1151
1188
|
include Aws::Structure
|
1152
1189
|
end
|
@@ -2802,6 +2839,11 @@ module Aws::Connect
|
|
2802
2839
|
# FormId, which is a unique identifier for the form.
|
2803
2840
|
# @return [Hash<String,Types::ContactEvaluation>]
|
2804
2841
|
#
|
2842
|
+
# @!attribute [rw] task_template_info
|
2843
|
+
# If this contact was created using a task template, this contains
|
2844
|
+
# information about the task template.
|
2845
|
+
# @return [Types::TaskTemplateInfoV2]
|
2846
|
+
#
|
2805
2847
|
# @!attribute [rw] contact_details
|
2806
2848
|
# A map of string key/value pairs that contain user-defined attributes
|
2807
2849
|
# which are lightly typed within the contact. This object is used only
|
@@ -2856,6 +2898,7 @@ module Aws::Connect
|
|
2856
2898
|
:recordings,
|
2857
2899
|
:disconnect_reason,
|
2858
2900
|
:contact_evaluations,
|
2901
|
+
:task_template_info,
|
2859
2902
|
:contact_details,
|
2860
2903
|
:attributes)
|
2861
2904
|
SENSITIVE = [:name, :description]
|
@@ -3479,7 +3522,6 @@ module Aws::Connect
|
|
3479
3522
|
end
|
3480
3523
|
|
3481
3524
|
# The contact with the specified ID is not active or does not exist.
|
3482
|
-
# Applies to Voice calls only, not to Chat or Task contacts.
|
3483
3525
|
#
|
3484
3526
|
# @!attribute [rw] message
|
3485
3527
|
# The message.
|
@@ -3555,6 +3597,14 @@ module Aws::Connect
|
|
3555
3597
|
# Set of segment attributes for a contact.
|
3556
3598
|
# @return [Hash<String,Types::ContactSearchSummarySegmentAttributeValue>]
|
3557
3599
|
#
|
3600
|
+
# @!attribute [rw] name
|
3601
|
+
# Indicates name of the contact.
|
3602
|
+
# @return [String]
|
3603
|
+
#
|
3604
|
+
# @!attribute [rw] routing_criteria
|
3605
|
+
# Latest routing criteria on the contact.
|
3606
|
+
# @return [Types::RoutingCriteria]
|
3607
|
+
#
|
3558
3608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummary AWS API Documentation
|
3559
3609
|
#
|
3560
3610
|
class ContactSearchSummary < Struct.new(
|
@@ -3569,8 +3619,10 @@ module Aws::Connect
|
|
3569
3619
|
:initiation_timestamp,
|
3570
3620
|
:disconnect_timestamp,
|
3571
3621
|
:scheduled_timestamp,
|
3572
|
-
:segment_attributes
|
3573
|
-
|
3622
|
+
:segment_attributes,
|
3623
|
+
:name,
|
3624
|
+
:routing_criteria)
|
3625
|
+
SENSITIVE = [:segment_attributes, :name]
|
3574
3626
|
include Aws::Structure
|
3575
3627
|
end
|
3576
3628
|
|
@@ -3621,10 +3673,15 @@ module Aws::Connect
|
|
3621
3673
|
# The value of a segment attribute represented as a string.
|
3622
3674
|
# @return [String]
|
3623
3675
|
#
|
3676
|
+
# @!attribute [rw] value_map
|
3677
|
+
# The key and value of a segment attribute.
|
3678
|
+
# @return [Hash<String,Types::SegmentAttributeValue>]
|
3679
|
+
#
|
3624
3680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummarySegmentAttributeValue AWS API Documentation
|
3625
3681
|
#
|
3626
3682
|
class ContactSearchSummarySegmentAttributeValue < Struct.new(
|
3627
|
-
:value_string
|
3683
|
+
:value_string,
|
3684
|
+
:value_map)
|
3628
3685
|
SENSITIVE = []
|
3629
3686
|
include Aws::Structure
|
3630
3687
|
end
|
@@ -5124,6 +5181,17 @@ module Aws::Connect
|
|
5124
5181
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html
|
5125
5182
|
# @return [Array<Types::RoutingProfileQueueConfig>]
|
5126
5183
|
#
|
5184
|
+
# @!attribute [rw] manual_assignment_queue_configs
|
5185
|
+
# The manual assignment queues associated with the routing profile. If
|
5186
|
+
# no queue is added, agents and supervisors can't pick or assign any
|
5187
|
+
# contacts from this routing profile. The limit of 10 array members
|
5188
|
+
# applies to the maximum number of
|
5189
|
+
# RoutingProfileManualAssignmentQueueConfig objects that can be passed
|
5190
|
+
# during a CreateRoutingProfile API request. It is different from the
|
5191
|
+
# quota of 50 queues per routing profile per instance that is listed
|
5192
|
+
# in Amazon Connect service quotas.
|
5193
|
+
# @return [Array<Types::RoutingProfileManualAssignmentQueueConfig>]
|
5194
|
+
#
|
5127
5195
|
# @!attribute [rw] media_concurrencies
|
5128
5196
|
# The channels that agents can handle in the Contact Control Panel
|
5129
5197
|
# (CCP) for this routing profile.
|
@@ -5149,6 +5217,7 @@ module Aws::Connect
|
|
5149
5217
|
:description,
|
5150
5218
|
:default_outbound_queue_id,
|
5151
5219
|
:queue_configs,
|
5220
|
+
:manual_assignment_queue_configs,
|
5152
5221
|
:media_concurrencies,
|
5153
5222
|
:tags,
|
5154
5223
|
:agent_availability_timer)
|
@@ -8322,12 +8391,18 @@ module Aws::Connect
|
|
8322
8391
|
# The queues to disassociate from this routing profile.
|
8323
8392
|
# @return [Array<Types::RoutingProfileQueueReference>]
|
8324
8393
|
#
|
8394
|
+
# @!attribute [rw] manual_assignment_queue_references
|
8395
|
+
# The manual assignment queues to disassociate with this routing
|
8396
|
+
# profile.
|
8397
|
+
# @return [Array<Types::RoutingProfileQueueReference>]
|
8398
|
+
#
|
8325
8399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateRoutingProfileQueuesRequest AWS API Documentation
|
8326
8400
|
#
|
8327
8401
|
class DisassociateRoutingProfileQueuesRequest < Struct.new(
|
8328
8402
|
:instance_id,
|
8329
8403
|
:routing_profile_id,
|
8330
|
-
:queue_references
|
8404
|
+
:queue_references,
|
8405
|
+
:manual_assignment_queue_references)
|
8331
8406
|
SENSITIVE = []
|
8332
8407
|
include Aws::Structure
|
8333
8408
|
end
|
@@ -16339,6 +16414,7 @@ module Aws::Connect
|
|
16339
16414
|
# @!attribute [rw] instance_id
|
16340
16415
|
# The identifier of the Amazon Connect instance. You can [find the
|
16341
16416
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
16417
|
+
# Both Instance ID and Instance ARN are supported input formats.
|
16342
16418
|
#
|
16343
16419
|
#
|
16344
16420
|
#
|
@@ -16471,6 +16547,70 @@ module Aws::Connect
|
|
16471
16547
|
include Aws::Structure
|
16472
16548
|
end
|
16473
16549
|
|
16550
|
+
# @!attribute [rw] instance_id
|
16551
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
16552
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
16553
|
+
#
|
16554
|
+
#
|
16555
|
+
#
|
16556
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
16557
|
+
# @return [String]
|
16558
|
+
#
|
16559
|
+
# @!attribute [rw] routing_profile_id
|
16560
|
+
# The identifier of the routing profile.
|
16561
|
+
# @return [String]
|
16562
|
+
#
|
16563
|
+
# @!attribute [rw] next_token
|
16564
|
+
# The token for the next set of results. Use the value returned in the
|
16565
|
+
# previous response in the next request to retrieve the next set of
|
16566
|
+
# results.
|
16567
|
+
# @return [String]
|
16568
|
+
#
|
16569
|
+
# @!attribute [rw] max_results
|
16570
|
+
# The maximum number of results to return per page.
|
16571
|
+
# @return [Integer]
|
16572
|
+
#
|
16573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileManualAssignmentQueuesRequest AWS API Documentation
|
16574
|
+
#
|
16575
|
+
class ListRoutingProfileManualAssignmentQueuesRequest < Struct.new(
|
16576
|
+
:instance_id,
|
16577
|
+
:routing_profile_id,
|
16578
|
+
:next_token,
|
16579
|
+
:max_results)
|
16580
|
+
SENSITIVE = []
|
16581
|
+
include Aws::Structure
|
16582
|
+
end
|
16583
|
+
|
16584
|
+
# @!attribute [rw] next_token
|
16585
|
+
# If there are additional results, this is the token for the next set
|
16586
|
+
# of results.
|
16587
|
+
# @return [String]
|
16588
|
+
#
|
16589
|
+
# @!attribute [rw] routing_profile_manual_assignment_queue_config_summary_list
|
16590
|
+
# Information about the manual assignment queues associated with the
|
16591
|
+
# routing profile.
|
16592
|
+
# @return [Array<Types::RoutingProfileManualAssignmentQueueConfigSummary>]
|
16593
|
+
#
|
16594
|
+
# @!attribute [rw] last_modified_time
|
16595
|
+
# The timestamp when this resource was last modified.
|
16596
|
+
# @return [Time]
|
16597
|
+
#
|
16598
|
+
# @!attribute [rw] last_modified_region
|
16599
|
+
# The Amazon Web Services Region where this resource was last
|
16600
|
+
# modified.
|
16601
|
+
# @return [String]
|
16602
|
+
#
|
16603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileManualAssignmentQueuesResponse AWS API Documentation
|
16604
|
+
#
|
16605
|
+
class ListRoutingProfileManualAssignmentQueuesResponse < Struct.new(
|
16606
|
+
:next_token,
|
16607
|
+
:routing_profile_manual_assignment_queue_config_summary_list,
|
16608
|
+
:last_modified_time,
|
16609
|
+
:last_modified_region)
|
16610
|
+
SENSITIVE = []
|
16611
|
+
include Aws::Structure
|
16612
|
+
end
|
16613
|
+
|
16474
16614
|
# @!attribute [rw] instance_id
|
16475
16615
|
# The identifier of the Amazon Connect instance. You can [find the
|
16476
16616
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -17746,6 +17886,26 @@ module Aws::Connect
|
|
17746
17886
|
include Aws::Structure
|
17747
17887
|
end
|
17748
17888
|
|
17889
|
+
# The search criteria based on the contact name
|
17890
|
+
#
|
17891
|
+
# @!attribute [rw] search_text
|
17892
|
+
# The words or phrases used to match the contact name.
|
17893
|
+
# @return [Array<String>]
|
17894
|
+
#
|
17895
|
+
# @!attribute [rw] match_type
|
17896
|
+
# The match type combining name search criteria using multiple search
|
17897
|
+
# texts in a name criteria.
|
17898
|
+
# @return [String]
|
17899
|
+
#
|
17900
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/NameCriteria AWS API Documentation
|
17901
|
+
#
|
17902
|
+
class NameCriteria < Struct.new(
|
17903
|
+
:search_text,
|
17904
|
+
:match_type)
|
17905
|
+
SENSITIVE = [:search_text]
|
17906
|
+
include Aws::Structure
|
17907
|
+
end
|
17908
|
+
|
17749
17909
|
# Payload of chat properties to apply when starting a new contact.
|
17750
17910
|
#
|
17751
17911
|
# @!attribute [rw] supported_messaging_content_types
|
@@ -20436,6 +20596,11 @@ module Aws::Connect
|
|
20436
20596
|
# The number of associated queues in routing profile.
|
20437
20597
|
# @return [Integer]
|
20438
20598
|
#
|
20599
|
+
# @!attribute [rw] number_of_associated_manual_assignment_queues
|
20600
|
+
# The number of associated manual assignment queues in routing
|
20601
|
+
# profile.
|
20602
|
+
# @return [Integer]
|
20603
|
+
#
|
20439
20604
|
# @!attribute [rw] number_of_associated_users
|
20440
20605
|
# The number of associated users in routing profile.
|
20441
20606
|
# @return [Integer]
|
@@ -20463,6 +20628,10 @@ module Aws::Connect
|
|
20463
20628
|
# The IDs of the associated queue.
|
20464
20629
|
# @return [Array<String>]
|
20465
20630
|
#
|
20631
|
+
# @!attribute [rw] associated_manual_assignment_queue_ids
|
20632
|
+
# The IDs of the associated manual assignment queues.
|
20633
|
+
# @return [Array<String>]
|
20634
|
+
#
|
20466
20635
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfile AWS API Documentation
|
20467
20636
|
#
|
20468
20637
|
class RoutingProfile < Struct.new(
|
@@ -20475,12 +20644,63 @@ module Aws::Connect
|
|
20475
20644
|
:default_outbound_queue_id,
|
20476
20645
|
:tags,
|
20477
20646
|
:number_of_associated_queues,
|
20647
|
+
:number_of_associated_manual_assignment_queues,
|
20478
20648
|
:number_of_associated_users,
|
20479
20649
|
:agent_availability_timer,
|
20480
20650
|
:last_modified_time,
|
20481
20651
|
:last_modified_region,
|
20482
20652
|
:is_default,
|
20483
|
-
:associated_queue_ids
|
20653
|
+
:associated_queue_ids,
|
20654
|
+
:associated_manual_assignment_queue_ids)
|
20655
|
+
SENSITIVE = []
|
20656
|
+
include Aws::Structure
|
20657
|
+
end
|
20658
|
+
|
20659
|
+
# Contains information about the queue and channel for manual assignment
|
20660
|
+
# behaviour can be enabled.
|
20661
|
+
#
|
20662
|
+
# @!attribute [rw] queue_reference
|
20663
|
+
# Contains the channel and queue identifier for a routing profile.
|
20664
|
+
# @return [Types::RoutingProfileQueueReference]
|
20665
|
+
#
|
20666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfileManualAssignmentQueueConfig AWS API Documentation
|
20667
|
+
#
|
20668
|
+
class RoutingProfileManualAssignmentQueueConfig < Struct.new(
|
20669
|
+
:queue_reference)
|
20670
|
+
SENSITIVE = []
|
20671
|
+
include Aws::Structure
|
20672
|
+
end
|
20673
|
+
|
20674
|
+
# Contains summary information about a routing profile manual assignment
|
20675
|
+
# queue.
|
20676
|
+
#
|
20677
|
+
# @!attribute [rw] queue_id
|
20678
|
+
# The identifier for the queue.
|
20679
|
+
# @return [String]
|
20680
|
+
#
|
20681
|
+
# @!attribute [rw] queue_arn
|
20682
|
+
# The Amazon Resource Name (ARN) of the queue.
|
20683
|
+
# @return [String]
|
20684
|
+
#
|
20685
|
+
# @!attribute [rw] queue_name
|
20686
|
+
# The name of the queue.
|
20687
|
+
# @return [String]
|
20688
|
+
#
|
20689
|
+
# @!attribute [rw] channel
|
20690
|
+
# The channels this queue supports. Valid Values: CHAT \| TASK \|
|
20691
|
+
# EMAIL
|
20692
|
+
#
|
20693
|
+
# VOICE is not supported. The information shown below is incorrect.
|
20694
|
+
# We're working to correct it.
|
20695
|
+
# @return [String]
|
20696
|
+
#
|
20697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfileManualAssignmentQueueConfigSummary AWS API Documentation
|
20698
|
+
#
|
20699
|
+
class RoutingProfileManualAssignmentQueueConfigSummary < Struct.new(
|
20700
|
+
:queue_id,
|
20701
|
+
:queue_arn,
|
20702
|
+
:queue_name,
|
20703
|
+
:channel)
|
20484
20704
|
SENSITIVE = []
|
20485
20705
|
include Aws::Structure
|
20486
20706
|
end
|
@@ -21220,6 +21440,52 @@ module Aws::Connect
|
|
21220
21440
|
include Aws::Structure
|
21221
21441
|
end
|
21222
21442
|
|
21443
|
+
# Time range that you **additionally** want to filter on.
|
21444
|
+
#
|
21445
|
+
# <note markdown="1"> This is different from the [SearchContactsTimeRange][1] data type.
|
21446
|
+
#
|
21447
|
+
# </note>
|
21448
|
+
#
|
21449
|
+
#
|
21450
|
+
#
|
21451
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_SearchContactsTimeRange.html
|
21452
|
+
#
|
21453
|
+
# @!attribute [rw] criteria
|
21454
|
+
# List of criteria of the time range to additionally filter on.
|
21455
|
+
# @return [Array<Types::SearchContactsAdditionalTimeRangeCriteria>]
|
21456
|
+
#
|
21457
|
+
# @!attribute [rw] match_type
|
21458
|
+
# The match type combining multiple time range filters.
|
21459
|
+
# @return [String]
|
21460
|
+
#
|
21461
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsAdditionalTimeRange AWS API Documentation
|
21462
|
+
#
|
21463
|
+
class SearchContactsAdditionalTimeRange < Struct.new(
|
21464
|
+
:criteria,
|
21465
|
+
:match_type)
|
21466
|
+
SENSITIVE = []
|
21467
|
+
include Aws::Structure
|
21468
|
+
end
|
21469
|
+
|
21470
|
+
# The criteria of the time range to additionally filter on.
|
21471
|
+
#
|
21472
|
+
# @!attribute [rw] time_range
|
21473
|
+
# A structure of time range that you want to search results.
|
21474
|
+
# @return [Types::SearchContactsTimeRange]
|
21475
|
+
#
|
21476
|
+
# @!attribute [rw] timestamp_condition
|
21477
|
+
# List of the timestamp conditions.
|
21478
|
+
# @return [Types::SearchContactsTimestampCondition]
|
21479
|
+
#
|
21480
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsAdditionalTimeRangeCriteria AWS API Documentation
|
21481
|
+
#
|
21482
|
+
class SearchContactsAdditionalTimeRangeCriteria < Struct.new(
|
21483
|
+
:time_range,
|
21484
|
+
:timestamp_condition)
|
21485
|
+
SENSITIVE = []
|
21486
|
+
include Aws::Structure
|
21487
|
+
end
|
21488
|
+
|
21223
21489
|
# @!attribute [rw] instance_id
|
21224
21490
|
# The identifier of Amazon Connect instance. You can find the instance
|
21225
21491
|
# ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -21307,8 +21573,33 @@ module Aws::Connect
|
|
21307
21573
|
include Aws::Structure
|
21308
21574
|
end
|
21309
21575
|
|
21576
|
+
# The timestamp condition indicating which contact timestamp should be
|
21577
|
+
# used and how it should be filtered. It is not an actual timestamp
|
21578
|
+
# value.
|
21579
|
+
#
|
21580
|
+
# @!attribute [rw] type
|
21581
|
+
# Type of the timestamps to use for the filter.
|
21582
|
+
# @return [String]
|
21583
|
+
#
|
21584
|
+
# @!attribute [rw] condition_type
|
21585
|
+
# Condition of the timestamp on the contact.
|
21586
|
+
# @return [String]
|
21587
|
+
#
|
21588
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsTimestampCondition AWS API Documentation
|
21589
|
+
#
|
21590
|
+
class SearchContactsTimestampCondition < Struct.new(
|
21591
|
+
:type,
|
21592
|
+
:condition_type)
|
21593
|
+
SENSITIVE = []
|
21594
|
+
include Aws::Structure
|
21595
|
+
end
|
21596
|
+
|
21310
21597
|
# A structure of search criteria to be used to return contacts.
|
21311
21598
|
#
|
21599
|
+
# @!attribute [rw] name
|
21600
|
+
# Name of the contact.
|
21601
|
+
# @return [Types::NameCriteria]
|
21602
|
+
#
|
21312
21603
|
# @!attribute [rw] agent_ids
|
21313
21604
|
# The identifiers of agents who handled the contacts.
|
21314
21605
|
# @return [Array<String>]
|
@@ -21335,6 +21626,14 @@ module Aws::Connect
|
|
21335
21626
|
# The list of queue IDs associated with contacts.
|
21336
21627
|
# @return [Array<String>]
|
21337
21628
|
#
|
21629
|
+
# @!attribute [rw] routing_criteria
|
21630
|
+
# Routing criteria for the contact.
|
21631
|
+
# @return [Types::SearchableRoutingCriteria]
|
21632
|
+
#
|
21633
|
+
# @!attribute [rw] additional_time_range
|
21634
|
+
# Additional TimeRange used to filter contacts.
|
21635
|
+
# @return [Types::SearchContactsAdditionalTimeRange]
|
21636
|
+
#
|
21338
21637
|
# @!attribute [rw] searchable_contact_attributes
|
21339
21638
|
# The search criteria based on user-defined contact attributes that
|
21340
21639
|
# have been configured for contact search. For more information, see
|
@@ -21361,12 +21660,15 @@ module Aws::Connect
|
|
21361
21660
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchCriteria AWS API Documentation
|
21362
21661
|
#
|
21363
21662
|
class SearchCriteria < Struct.new(
|
21663
|
+
:name,
|
21364
21664
|
:agent_ids,
|
21365
21665
|
:agent_hierarchy_groups,
|
21366
21666
|
:channels,
|
21367
21667
|
:contact_analysis,
|
21368
21668
|
:initiation_methods,
|
21369
21669
|
:queue_ids,
|
21670
|
+
:routing_criteria,
|
21671
|
+
:additional_time_range,
|
21370
21672
|
:searchable_contact_attributes,
|
21371
21673
|
:searchable_segment_attributes)
|
21372
21674
|
SENSITIVE = []
|
@@ -22223,6 +22525,26 @@ module Aws::Connect
|
|
22223
22525
|
include Aws::Structure
|
22224
22526
|
end
|
22225
22527
|
|
22528
|
+
# The agent criteria to search for preferred agents on the routing
|
22529
|
+
# criteria.
|
22530
|
+
#
|
22531
|
+
# @!attribute [rw] agent_ids
|
22532
|
+
# The identifiers of agents used in preferred agents matching.
|
22533
|
+
# @return [Array<String>]
|
22534
|
+
#
|
22535
|
+
# @!attribute [rw] match_type
|
22536
|
+
# The match type combining multiple agent criteria steps.
|
22537
|
+
# @return [String]
|
22538
|
+
#
|
22539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableAgentCriteriaStep AWS API Documentation
|
22540
|
+
#
|
22541
|
+
class SearchableAgentCriteriaStep < Struct.new(
|
22542
|
+
:agent_ids,
|
22543
|
+
:match_type)
|
22544
|
+
SENSITIVE = []
|
22545
|
+
include Aws::Structure
|
22546
|
+
end
|
22547
|
+
|
22226
22548
|
# A structure that defines search criteria based on user-defined contact
|
22227
22549
|
# attributes that are configured for contact search.
|
22228
22550
|
#
|
@@ -22266,6 +22588,34 @@ module Aws::Connect
|
|
22266
22588
|
include Aws::Structure
|
22267
22589
|
end
|
22268
22590
|
|
22591
|
+
# Routing criteria of the contact to match on.
|
22592
|
+
#
|
22593
|
+
# @!attribute [rw] steps
|
22594
|
+
# The list of Routing criteria steps of the contact routing.
|
22595
|
+
# @return [Array<Types::SearchableRoutingCriteriaStep>]
|
22596
|
+
#
|
22597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableRoutingCriteria AWS API Documentation
|
22598
|
+
#
|
22599
|
+
class SearchableRoutingCriteria < Struct.new(
|
22600
|
+
:steps)
|
22601
|
+
SENSITIVE = []
|
22602
|
+
include Aws::Structure
|
22603
|
+
end
|
22604
|
+
|
22605
|
+
# Routing criteria of the contact to match on.
|
22606
|
+
#
|
22607
|
+
# @!attribute [rw] agent_criteria
|
22608
|
+
# Agent matching the routing step of the routing criteria
|
22609
|
+
# @return [Types::SearchableAgentCriteriaStep]
|
22610
|
+
#
|
22611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableRoutingCriteriaStep AWS API Documentation
|
22612
|
+
#
|
22613
|
+
class SearchableRoutingCriteriaStep < Struct.new(
|
22614
|
+
:agent_criteria)
|
22615
|
+
SENSITIVE = []
|
22616
|
+
include Aws::Structure
|
22617
|
+
end
|
22618
|
+
|
22269
22619
|
# The search criteria based on searchable segment attributes of a
|
22270
22620
|
# contact
|
22271
22621
|
#
|
@@ -24753,6 +25103,26 @@ module Aws::Connect
|
|
24753
25103
|
include Aws::Structure
|
24754
25104
|
end
|
24755
25105
|
|
25106
|
+
# Information about the task template used to create this contact.
|
25107
|
+
#
|
25108
|
+
# @!attribute [rw] arn
|
25109
|
+
# The Amazon Resource Name (ARN) of the task template used to create
|
25110
|
+
# this contact.
|
25111
|
+
# @return [String]
|
25112
|
+
#
|
25113
|
+
# @!attribute [rw] name
|
25114
|
+
# The name of the task template used to create this contact.
|
25115
|
+
# @return [String]
|
25116
|
+
#
|
25117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TaskTemplateInfoV2 AWS API Documentation
|
25118
|
+
#
|
25119
|
+
class TaskTemplateInfoV2 < Struct.new(
|
25120
|
+
:arn,
|
25121
|
+
:name)
|
25122
|
+
SENSITIVE = []
|
25123
|
+
include Aws::Structure
|
25124
|
+
end
|
25125
|
+
|
24756
25126
|
# Contains summary information about the task template.
|
24757
25127
|
#
|
24758
25128
|
# @!attribute [rw] id
|