aws-sdk-connect 1.217.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.
@@ -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
@@ -3479,7 +3516,6 @@ module Aws::Connect
3479
3516
  end
3480
3517
 
3481
3518
  # 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
3519
  #
3484
3520
  # @!attribute [rw] message
3485
3521
  # The message.
@@ -3555,6 +3591,14 @@ module Aws::Connect
3555
3591
  # Set of segment attributes for a contact.
3556
3592
  # @return [Hash<String,Types::ContactSearchSummarySegmentAttributeValue>]
3557
3593
  #
3594
+ # @!attribute [rw] name
3595
+ # Indicates name of the contact.
3596
+ # @return [String]
3597
+ #
3598
+ # @!attribute [rw] routing_criteria
3599
+ # Latest routing criteria on the contact.
3600
+ # @return [Types::RoutingCriteria]
3601
+ #
3558
3602
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummary AWS API Documentation
3559
3603
  #
3560
3604
  class ContactSearchSummary < Struct.new(
@@ -3569,8 +3613,10 @@ module Aws::Connect
3569
3613
  :initiation_timestamp,
3570
3614
  :disconnect_timestamp,
3571
3615
  :scheduled_timestamp,
3572
- :segment_attributes)
3573
- SENSITIVE = [:segment_attributes]
3616
+ :segment_attributes,
3617
+ :name,
3618
+ :routing_criteria)
3619
+ SENSITIVE = [:segment_attributes, :name]
3574
3620
  include Aws::Structure
3575
3621
  end
3576
3622
 
@@ -3621,10 +3667,15 @@ module Aws::Connect
3621
3667
  # The value of a segment attribute represented as a string.
3622
3668
  # @return [String]
3623
3669
  #
3670
+ # @!attribute [rw] value_map
3671
+ # The key and value of a segment attribute.
3672
+ # @return [Hash<String,Types::SegmentAttributeValue>]
3673
+ #
3624
3674
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummarySegmentAttributeValue AWS API Documentation
3625
3675
  #
3626
3676
  class ContactSearchSummarySegmentAttributeValue < Struct.new(
3627
- :value_string)
3677
+ :value_string,
3678
+ :value_map)
3628
3679
  SENSITIVE = []
3629
3680
  include Aws::Structure
3630
3681
  end
@@ -5124,6 +5175,17 @@ module Aws::Connect
5124
5175
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html
5125
5176
  # @return [Array<Types::RoutingProfileQueueConfig>]
5126
5177
  #
5178
+ # @!attribute [rw] manual_assignment_queue_configs
5179
+ # The manual assignment queues associated with the routing profile. If
5180
+ # no queue is added, agents and supervisors can't pick or assign any
5181
+ # contacts from this routing profile. The limit of 10 array members
5182
+ # applies to the maximum number of
5183
+ # RoutingProfileManualAssignmentQueueConfig objects that can be passed
5184
+ # during a CreateRoutingProfile API request. It is different from the
5185
+ # quota of 50 queues per routing profile per instance that is listed
5186
+ # in Amazon Connect service quotas.
5187
+ # @return [Array<Types::RoutingProfileManualAssignmentQueueConfig>]
5188
+ #
5127
5189
  # @!attribute [rw] media_concurrencies
5128
5190
  # The channels that agents can handle in the Contact Control Panel
5129
5191
  # (CCP) for this routing profile.
@@ -5149,6 +5211,7 @@ module Aws::Connect
5149
5211
  :description,
5150
5212
  :default_outbound_queue_id,
5151
5213
  :queue_configs,
5214
+ :manual_assignment_queue_configs,
5152
5215
  :media_concurrencies,
5153
5216
  :tags,
5154
5217
  :agent_availability_timer)
@@ -8322,12 +8385,18 @@ module Aws::Connect
8322
8385
  # The queues to disassociate from this routing profile.
8323
8386
  # @return [Array<Types::RoutingProfileQueueReference>]
8324
8387
  #
8388
+ # @!attribute [rw] manual_assignment_queue_references
8389
+ # The manual assignment queues to disassociate with this routing
8390
+ # profile.
8391
+ # @return [Array<Types::RoutingProfileQueueReference>]
8392
+ #
8325
8393
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateRoutingProfileQueuesRequest AWS API Documentation
8326
8394
  #
8327
8395
  class DisassociateRoutingProfileQueuesRequest < Struct.new(
8328
8396
  :instance_id,
8329
8397
  :routing_profile_id,
8330
- :queue_references)
8398
+ :queue_references,
8399
+ :manual_assignment_queue_references)
8331
8400
  SENSITIVE = []
8332
8401
  include Aws::Structure
8333
8402
  end
@@ -16471,6 +16540,70 @@ module Aws::Connect
16471
16540
  include Aws::Structure
16472
16541
  end
16473
16542
 
16543
+ # @!attribute [rw] instance_id
16544
+ # The identifier of the Amazon Connect instance. You can [find the
16545
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
16546
+ #
16547
+ #
16548
+ #
16549
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
16550
+ # @return [String]
16551
+ #
16552
+ # @!attribute [rw] routing_profile_id
16553
+ # The identifier of the routing profile.
16554
+ # @return [String]
16555
+ #
16556
+ # @!attribute [rw] next_token
16557
+ # The token for the next set of results. Use the value returned in the
16558
+ # previous response in the next request to retrieve the next set of
16559
+ # results.
16560
+ # @return [String]
16561
+ #
16562
+ # @!attribute [rw] max_results
16563
+ # The maximum number of results to return per page.
16564
+ # @return [Integer]
16565
+ #
16566
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileManualAssignmentQueuesRequest AWS API Documentation
16567
+ #
16568
+ class ListRoutingProfileManualAssignmentQueuesRequest < Struct.new(
16569
+ :instance_id,
16570
+ :routing_profile_id,
16571
+ :next_token,
16572
+ :max_results)
16573
+ SENSITIVE = []
16574
+ include Aws::Structure
16575
+ end
16576
+
16577
+ # @!attribute [rw] next_token
16578
+ # If there are additional results, this is the token for the next set
16579
+ # of results.
16580
+ # @return [String]
16581
+ #
16582
+ # @!attribute [rw] routing_profile_manual_assignment_queue_config_summary_list
16583
+ # Information about the manual assignment queues associated with the
16584
+ # routing profile.
16585
+ # @return [Array<Types::RoutingProfileManualAssignmentQueueConfigSummary>]
16586
+ #
16587
+ # @!attribute [rw] last_modified_time
16588
+ # The timestamp when this resource was last modified.
16589
+ # @return [Time]
16590
+ #
16591
+ # @!attribute [rw] last_modified_region
16592
+ # The Amazon Web Services Region where this resource was last
16593
+ # modified.
16594
+ # @return [String]
16595
+ #
16596
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileManualAssignmentQueuesResponse AWS API Documentation
16597
+ #
16598
+ class ListRoutingProfileManualAssignmentQueuesResponse < Struct.new(
16599
+ :next_token,
16600
+ :routing_profile_manual_assignment_queue_config_summary_list,
16601
+ :last_modified_time,
16602
+ :last_modified_region)
16603
+ SENSITIVE = []
16604
+ include Aws::Structure
16605
+ end
16606
+
16474
16607
  # @!attribute [rw] instance_id
16475
16608
  # The identifier of the Amazon Connect instance. You can [find the
16476
16609
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -17746,6 +17879,26 @@ module Aws::Connect
17746
17879
  include Aws::Structure
17747
17880
  end
17748
17881
 
17882
+ # The search criteria based on the contact name
17883
+ #
17884
+ # @!attribute [rw] search_text
17885
+ # The words or phrases used to match the contact name.
17886
+ # @return [Array<String>]
17887
+ #
17888
+ # @!attribute [rw] match_type
17889
+ # The match type combining name search criteria using multiple search
17890
+ # texts in a name criteria.
17891
+ # @return [String]
17892
+ #
17893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/NameCriteria AWS API Documentation
17894
+ #
17895
+ class NameCriteria < Struct.new(
17896
+ :search_text,
17897
+ :match_type)
17898
+ SENSITIVE = [:search_text]
17899
+ include Aws::Structure
17900
+ end
17901
+
17749
17902
  # Payload of chat properties to apply when starting a new contact.
17750
17903
  #
17751
17904
  # @!attribute [rw] supported_messaging_content_types
@@ -20436,6 +20589,11 @@ module Aws::Connect
20436
20589
  # The number of associated queues in routing profile.
20437
20590
  # @return [Integer]
20438
20591
  #
20592
+ # @!attribute [rw] number_of_associated_manual_assignment_queues
20593
+ # The number of associated manual assignment queues in routing
20594
+ # profile.
20595
+ # @return [Integer]
20596
+ #
20439
20597
  # @!attribute [rw] number_of_associated_users
20440
20598
  # The number of associated users in routing profile.
20441
20599
  # @return [Integer]
@@ -20463,6 +20621,10 @@ module Aws::Connect
20463
20621
  # The IDs of the associated queue.
20464
20622
  # @return [Array<String>]
20465
20623
  #
20624
+ # @!attribute [rw] associated_manual_assignment_queue_ids
20625
+ # The IDs of the associated manual assignment queues.
20626
+ # @return [Array<String>]
20627
+ #
20466
20628
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfile AWS API Documentation
20467
20629
  #
20468
20630
  class RoutingProfile < Struct.new(
@@ -20475,12 +20637,60 @@ module Aws::Connect
20475
20637
  :default_outbound_queue_id,
20476
20638
  :tags,
20477
20639
  :number_of_associated_queues,
20640
+ :number_of_associated_manual_assignment_queues,
20478
20641
  :number_of_associated_users,
20479
20642
  :agent_availability_timer,
20480
20643
  :last_modified_time,
20481
20644
  :last_modified_region,
20482
20645
  :is_default,
20483
- :associated_queue_ids)
20646
+ :associated_queue_ids,
20647
+ :associated_manual_assignment_queue_ids)
20648
+ SENSITIVE = []
20649
+ include Aws::Structure
20650
+ end
20651
+
20652
+ # Contains information about the queue and channel for manual assignment
20653
+ # behaviour can be enabled.
20654
+ #
20655
+ # @!attribute [rw] queue_reference
20656
+ # Contains the channel and queue identifier for a routing profile.
20657
+ # @return [Types::RoutingProfileQueueReference]
20658
+ #
20659
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfileManualAssignmentQueueConfig AWS API Documentation
20660
+ #
20661
+ class RoutingProfileManualAssignmentQueueConfig < Struct.new(
20662
+ :queue_reference)
20663
+ SENSITIVE = []
20664
+ include Aws::Structure
20665
+ end
20666
+
20667
+ # Contains summary information about a routing profile manual assignment
20668
+ # queue.
20669
+ #
20670
+ # @!attribute [rw] queue_id
20671
+ # The identifier for the queue.
20672
+ # @return [String]
20673
+ #
20674
+ # @!attribute [rw] queue_arn
20675
+ # The Amazon Resource Name (ARN) of the queue.
20676
+ # @return [String]
20677
+ #
20678
+ # @!attribute [rw] queue_name
20679
+ # The name of the queue.
20680
+ # @return [String]
20681
+ #
20682
+ # @!attribute [rw] channel
20683
+ # The channels this queue supports. Valid Values: CHAT \| TASK \|
20684
+ # EMAIL
20685
+ # @return [String]
20686
+ #
20687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfileManualAssignmentQueueConfigSummary AWS API Documentation
20688
+ #
20689
+ class RoutingProfileManualAssignmentQueueConfigSummary < Struct.new(
20690
+ :queue_id,
20691
+ :queue_arn,
20692
+ :queue_name,
20693
+ :channel)
20484
20694
  SENSITIVE = []
20485
20695
  include Aws::Structure
20486
20696
  end
@@ -21220,6 +21430,44 @@ module Aws::Connect
21220
21430
  include Aws::Structure
21221
21431
  end
21222
21432
 
21433
+ # Time range that you additionally want to filter on.
21434
+ #
21435
+ # @!attribute [rw] criteria
21436
+ # List of criteria of the time range to additionally filter on.
21437
+ # @return [Array<Types::SearchContactsAdditionalTimeRangeCriteria>]
21438
+ #
21439
+ # @!attribute [rw] match_type
21440
+ # The match type combining multiple time range filters.
21441
+ # @return [String]
21442
+ #
21443
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsAdditionalTimeRange AWS API Documentation
21444
+ #
21445
+ class SearchContactsAdditionalTimeRange < Struct.new(
21446
+ :criteria,
21447
+ :match_type)
21448
+ SENSITIVE = []
21449
+ include Aws::Structure
21450
+ end
21451
+
21452
+ # The criteria of the time range to additionally filter on.
21453
+ #
21454
+ # @!attribute [rw] time_range
21455
+ # A structure of time range that you want to search results.
21456
+ # @return [Types::SearchContactsTimeRange]
21457
+ #
21458
+ # @!attribute [rw] timestamp_condition
21459
+ # List of the timestamp conditions.
21460
+ # @return [Types::SearchContactsTimestampCondition]
21461
+ #
21462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsAdditionalTimeRangeCriteria AWS API Documentation
21463
+ #
21464
+ class SearchContactsAdditionalTimeRangeCriteria < Struct.new(
21465
+ :time_range,
21466
+ :timestamp_condition)
21467
+ SENSITIVE = []
21468
+ include Aws::Structure
21469
+ end
21470
+
21223
21471
  # @!attribute [rw] instance_id
21224
21472
  # The identifier of Amazon Connect instance. You can find the instance
21225
21473
  # ID in the Amazon Resource Name (ARN) of the instance.
@@ -21307,8 +21555,32 @@ module Aws::Connect
21307
21555
  include Aws::Structure
21308
21556
  end
21309
21557
 
21558
+ # The timestamp condition indicating which timestamp should be used and
21559
+ # how it should be filtered.
21560
+ #
21561
+ # @!attribute [rw] type
21562
+ # Type of the timestamps to use for the filter.
21563
+ # @return [String]
21564
+ #
21565
+ # @!attribute [rw] condition_type
21566
+ # Condition of the timestamp on the contact.
21567
+ # @return [String]
21568
+ #
21569
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchContactsTimestampCondition AWS API Documentation
21570
+ #
21571
+ class SearchContactsTimestampCondition < Struct.new(
21572
+ :type,
21573
+ :condition_type)
21574
+ SENSITIVE = []
21575
+ include Aws::Structure
21576
+ end
21577
+
21310
21578
  # A structure of search criteria to be used to return contacts.
21311
21579
  #
21580
+ # @!attribute [rw] name
21581
+ # Name of the contact.
21582
+ # @return [Types::NameCriteria]
21583
+ #
21312
21584
  # @!attribute [rw] agent_ids
21313
21585
  # The identifiers of agents who handled the contacts.
21314
21586
  # @return [Array<String>]
@@ -21335,6 +21607,14 @@ module Aws::Connect
21335
21607
  # The list of queue IDs associated with contacts.
21336
21608
  # @return [Array<String>]
21337
21609
  #
21610
+ # @!attribute [rw] routing_criteria
21611
+ # Routing criteria for the contact.
21612
+ # @return [Types::SearchableRoutingCriteria]
21613
+ #
21614
+ # @!attribute [rw] additional_time_range
21615
+ # Additional TimeRange used to filter contacts.
21616
+ # @return [Types::SearchContactsAdditionalTimeRange]
21617
+ #
21338
21618
  # @!attribute [rw] searchable_contact_attributes
21339
21619
  # The search criteria based on user-defined contact attributes that
21340
21620
  # have been configured for contact search. For more information, see
@@ -21361,12 +21641,15 @@ module Aws::Connect
21361
21641
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchCriteria AWS API Documentation
21362
21642
  #
21363
21643
  class SearchCriteria < Struct.new(
21644
+ :name,
21364
21645
  :agent_ids,
21365
21646
  :agent_hierarchy_groups,
21366
21647
  :channels,
21367
21648
  :contact_analysis,
21368
21649
  :initiation_methods,
21369
21650
  :queue_ids,
21651
+ :routing_criteria,
21652
+ :additional_time_range,
21370
21653
  :searchable_contact_attributes,
21371
21654
  :searchable_segment_attributes)
21372
21655
  SENSITIVE = []
@@ -22223,6 +22506,26 @@ module Aws::Connect
22223
22506
  include Aws::Structure
22224
22507
  end
22225
22508
 
22509
+ # The agent criteria to search for preferred agents on the routing
22510
+ # criteria.
22511
+ #
22512
+ # @!attribute [rw] agent_ids
22513
+ # The identifiers of agents used in preferred agents matching.
22514
+ # @return [Array<String>]
22515
+ #
22516
+ # @!attribute [rw] match_type
22517
+ # The match type combining multiple agent criteria steps.
22518
+ # @return [String]
22519
+ #
22520
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableAgentCriteriaStep AWS API Documentation
22521
+ #
22522
+ class SearchableAgentCriteriaStep < Struct.new(
22523
+ :agent_ids,
22524
+ :match_type)
22525
+ SENSITIVE = []
22526
+ include Aws::Structure
22527
+ end
22528
+
22226
22529
  # A structure that defines search criteria based on user-defined contact
22227
22530
  # attributes that are configured for contact search.
22228
22531
  #
@@ -22266,6 +22569,34 @@ module Aws::Connect
22266
22569
  include Aws::Structure
22267
22570
  end
22268
22571
 
22572
+ # Routing criteria of the contact to match on.
22573
+ #
22574
+ # @!attribute [rw] steps
22575
+ # The list of Routing criteria steps of the contact routing.
22576
+ # @return [Array<Types::SearchableRoutingCriteriaStep>]
22577
+ #
22578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableRoutingCriteria AWS API Documentation
22579
+ #
22580
+ class SearchableRoutingCriteria < Struct.new(
22581
+ :steps)
22582
+ SENSITIVE = []
22583
+ include Aws::Structure
22584
+ end
22585
+
22586
+ # Routing criteria of the contact to match on.
22587
+ #
22588
+ # @!attribute [rw] agent_criteria
22589
+ # Agent matching the routing step of the routing criteria
22590
+ # @return [Types::SearchableAgentCriteriaStep]
22591
+ #
22592
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchableRoutingCriteriaStep AWS API Documentation
22593
+ #
22594
+ class SearchableRoutingCriteriaStep < Struct.new(
22595
+ :agent_criteria)
22596
+ SENSITIVE = []
22597
+ include Aws::Structure
22598
+ end
22599
+
22269
22600
  # The search criteria based on searchable segment attributes of a
22270
22601
  # contact
22271
22602
  #
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.217.0'
57
+ GEM_VERSION = '1.218.0'
58
58
 
59
59
  end
60
60