aws-sdk-connect 1.215.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.
@@ -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.215.0'
57
+ GEM_VERSION = '1.218.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -129,6 +129,17 @@ module Aws
129
129
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
130
130
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
131
131
 
132
+ interface _AssociateContactWithUserResponseSuccess
133
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateContactWithUserResponse]
134
+ end
135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_contact_with_user-instance_method
136
+ def associate_contact_with_user: (
137
+ instance_id: ::String,
138
+ contact_id: ::String,
139
+ user_id: ::String
140
+ ) -> _AssociateContactWithUserResponseSuccess
141
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateContactWithUserResponseSuccess
142
+
132
143
  interface _AssociateDefaultVocabularyResponseSuccess
133
144
  include ::Seahorse::Client::_ResponseSuccess[Types::AssociateDefaultVocabularyResponse]
134
145
  end
@@ -229,7 +240,7 @@ module Aws
229
240
  def associate_routing_profile_queues: (
230
241
  instance_id: ::String,
231
242
  routing_profile_id: ::String,
232
- queue_configs: Array[
243
+ ?queue_configs: Array[
233
244
  {
234
245
  queue_reference: {
235
246
  queue_id: ::String,
@@ -238,6 +249,14 @@ module Aws
238
249
  priority: ::Integer,
239
250
  delay: ::Integer
240
251
  },
252
+ ],
253
+ ?manual_assignment_queue_configs: Array[
254
+ {
255
+ queue_reference: {
256
+ queue_id: ::String,
257
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
258
+ }
259
+ },
241
260
  ]
242
261
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
243
262
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -433,7 +452,11 @@ module Aws
433
452
  ?segment_attributes: Hash[::String, {
434
453
  value_string: ::String?,
435
454
  value_map: Hash[::String, untyped]?,
436
- value_integer: ::Integer?
455
+ value_integer: ::Integer?,
456
+ value_list: Array[
457
+ untyped,
458
+ ]?,
459
+ value_arn: ::String?
437
460
  }],
438
461
  ?previous_contact_id: ::String
439
462
  ) -> _CreateContactResponseSuccess
@@ -714,8 +737,12 @@ module Aws
714
737
  def create_predefined_attribute: (
715
738
  instance_id: ::String,
716
739
  name: ::String,
717
- values: {
740
+ ?values: {
718
741
  string_list: Array[::String]?
742
+ },
743
+ ?purposes: Array[::String],
744
+ ?attribute_configuration: {
745
+ enable_value_validation_on_association: bool?
719
746
  }
720
747
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
721
748
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -828,6 +855,14 @@ module Aws
828
855
  delay: ::Integer
829
856
  },
830
857
  ],
858
+ ?manual_assignment_queue_configs: Array[
859
+ {
860
+ queue_reference: {
861
+ queue_id: ::String,
862
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
863
+ }
864
+ },
865
+ ],
831
866
  media_concurrencies: Array[
832
867
  {
833
868
  channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
@@ -1079,7 +1114,8 @@ module Aws
1079
1114
  phone_type: ("SOFT_PHONE" | "DESK_PHONE"),
1080
1115
  auto_accept: bool?,
1081
1116
  after_contact_work_time_limit: ::Integer?,
1082
- desk_phone_number: ::String?
1117
+ desk_phone_number: ::String?,
1118
+ persistent_connection: bool?
1083
1119
  },
1084
1120
  ?directory_user_id: ::String,
1085
1121
  security_profile_ids: Array[::String],
@@ -1789,7 +1825,13 @@ module Aws
1789
1825
  def disassociate_routing_profile_queues: (
1790
1826
  instance_id: ::String,
1791
1827
  routing_profile_id: ::String,
1792
- queue_references: Array[
1828
+ ?queue_references: Array[
1829
+ {
1830
+ queue_id: ::String,
1831
+ channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
1832
+ },
1833
+ ],
1834
+ ?manual_assignment_queue_references: Array[
1793
1835
  {
1794
1836
  queue_id: ::String,
1795
1837
  channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
@@ -2585,6 +2627,22 @@ module Aws
2585
2627
  ) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
2586
2628
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
2587
2629
 
2630
+ interface _ListRoutingProfileManualAssignmentQueuesResponseSuccess
2631
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRoutingProfileManualAssignmentQueuesResponse]
2632
+ def next_token: () -> ::String
2633
+ def routing_profile_manual_assignment_queue_config_summary_list: () -> ::Array[Types::RoutingProfileManualAssignmentQueueConfigSummary]
2634
+ def last_modified_time: () -> ::Time
2635
+ def last_modified_region: () -> ::String
2636
+ end
2637
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_routing_profile_manual_assignment_queues-instance_method
2638
+ def list_routing_profile_manual_assignment_queues: (
2639
+ instance_id: ::String,
2640
+ routing_profile_id: ::String,
2641
+ ?next_token: ::String,
2642
+ ?max_results: ::Integer
2643
+ ) -> _ListRoutingProfileManualAssignmentQueuesResponseSuccess
2644
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoutingProfileManualAssignmentQueuesResponseSuccess
2645
+
2588
2646
  interface _ListRoutingProfileQueuesResponseSuccess
2589
2647
  include ::Seahorse::Client::_ResponseSuccess[Types::ListRoutingProfileQueuesResponse]
2590
2648
  def next_token: () -> ::String
@@ -3086,11 +3144,15 @@ module Aws
3086
3144
  def search_contacts: (
3087
3145
  instance_id: ::String,
3088
3146
  time_range: {
3089
- type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP"),
3147
+ type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "ENQUEUE_TIMESTAMP"),
3090
3148
  start_time: ::Time,
3091
3149
  end_time: ::Time
3092
3150
  },
3093
3151
  ?search_criteria: {
3152
+ name: {
3153
+ search_text: Array[::String],
3154
+ match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
3155
+ }?,
3094
3156
  agent_ids: Array[::String]?,
3095
3157
  agent_hierarchy_groups: {
3096
3158
  l1_ids: Array[::String]?,
@@ -3106,14 +3168,40 @@ module Aws
3106
3168
  {
3107
3169
  participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR"),
3108
3170
  search_text: Array[::String],
3109
- match_type: ("MATCH_ALL" | "MATCH_ANY")
3171
+ match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
3110
3172
  },
3111
3173
  ],
3112
- match_type: ("MATCH_ALL" | "MATCH_ANY")?
3174
+ match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")?
3113
3175
  }?
3114
3176
  }?,
3115
3177
  initiation_methods: Array[("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND" | "WEBRTC_API" | "AGENT_REPLY" | "FLOW")]?,
3116
3178
  queue_ids: Array[::String]?,
3179
+ routing_criteria: {
3180
+ steps: Array[
3181
+ {
3182
+ agent_criteria: {
3183
+ agent_ids: Array[::String]?,
3184
+ match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")?
3185
+ }?
3186
+ },
3187
+ ]?
3188
+ }?,
3189
+ additional_time_range: {
3190
+ criteria: Array[
3191
+ {
3192
+ time_range: {
3193
+ type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "ENQUEUE_TIMESTAMP"),
3194
+ start_time: ::Time,
3195
+ end_time: ::Time
3196
+ }?,
3197
+ timestamp_condition: {
3198
+ type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "ENQUEUE_TIMESTAMP"),
3199
+ condition_type: ("NOT_EXISTS")
3200
+ }?
3201
+ },
3202
+ ],
3203
+ match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
3204
+ }?,
3117
3205
  searchable_contact_attributes: {
3118
3206
  criteria: Array[
3119
3207
  {
@@ -3121,7 +3209,7 @@ module Aws
3121
3209
  values: Array[::String]
3122
3210
  },
3123
3211
  ],
3124
- match_type: ("MATCH_ALL" | "MATCH_ANY")?
3212
+ match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")?
3125
3213
  }?,
3126
3214
  searchable_segment_attributes: {
3127
3215
  criteria: Array[
@@ -3130,13 +3218,13 @@ module Aws
3130
3218
  values: Array[::String]
3131
3219
  },
3132
3220
  ],
3133
- match_type: ("MATCH_ALL" | "MATCH_ANY")?
3221
+ match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")?
3134
3222
  }?
3135
3223
  },
3136
3224
  ?max_results: ::Integer,
3137
3225
  ?next_token: ::String,
3138
3226
  ?sort: {
3139
- field_name: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "INITIATION_METHOD" | "CHANNEL"),
3227
+ field_name: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "INITIATION_METHOD" | "CHANNEL" | "EXPIRY_TIMESTAMP"),
3140
3228
  order: ("ASCENDING" | "DESCENDING")
3141
3229
  }
3142
3230
  ) -> _SearchContactsResponseSuccess
@@ -3896,7 +3984,11 @@ module Aws
3896
3984
  ?segment_attributes: Hash[::String, {
3897
3985
  value_string: ::String?,
3898
3986
  value_map: Hash[::String, untyped]?,
3899
- value_integer: ::Integer?
3987
+ value_integer: ::Integer?,
3988
+ value_list: Array[
3989
+ untyped,
3990
+ ]?,
3991
+ value_arn: ::String?
3900
3992
  }],
3901
3993
  ?customer_id: ::String
3902
3994
  ) -> _StartChatContactResponseSuccess
@@ -4002,7 +4094,11 @@ module Aws
4002
4094
  ?segment_attributes: Hash[::String, {
4003
4095
  value_string: ::String?,
4004
4096
  value_map: Hash[::String, untyped]?,
4005
- value_integer: ::Integer?
4097
+ value_integer: ::Integer?,
4098
+ value_list: Array[
4099
+ untyped,
4100
+ ]?,
4101
+ value_arn: ::String?
4006
4102
  }],
4007
4103
  ?client_token: ::String
4008
4104
  ) -> _StartEmailContactResponseSuccess
@@ -4026,7 +4122,11 @@ module Aws
4026
4122
  segment_attributes: Hash[::String, {
4027
4123
  value_string: ::String?,
4028
4124
  value_map: Hash[::String, untyped]?,
4029
- value_integer: ::Integer?
4125
+ value_integer: ::Integer?,
4126
+ value_list: Array[
4127
+ untyped,
4128
+ ]?,
4129
+ value_arn: ::String?
4030
4130
  }],
4031
4131
  ?attributes: Hash[::String, ::String],
4032
4132
  contact_flow_id: ::String,
@@ -4158,7 +4258,11 @@ module Aws
4158
4258
  ?segment_attributes: Hash[::String, {
4159
4259
  value_string: ::String?,
4160
4260
  value_map: Hash[::String, untyped]?,
4161
- value_integer: ::Integer?
4261
+ value_integer: ::Integer?,
4262
+ value_list: Array[
4263
+ untyped,
4264
+ ]?,
4265
+ value_arn: ::String?
4162
4266
  }]
4163
4267
  ) -> _StartTaskContactResponseSuccess
4164
4268
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
@@ -4366,7 +4470,11 @@ module Aws
4366
4470
  ?segment_attributes: Hash[::String, {
4367
4471
  value_string: ::String?,
4368
4472
  value_map: Hash[::String, untyped]?,
4369
- value_integer: ::Integer?
4473
+ value_integer: ::Integer?,
4474
+ value_list: Array[
4475
+ untyped,
4476
+ ]?,
4477
+ value_arn: ::String?
4370
4478
  }],
4371
4479
  ?queue_info: {
4372
4480
  id: ::String?
@@ -4803,6 +4911,10 @@ module Aws
4803
4911
  name: ::String,
4804
4912
  ?values: {
4805
4913
  string_list: Array[::String]?
4914
+ },
4915
+ ?purposes: Array[::String],
4916
+ ?attribute_configuration: {
4917
+ enable_value_validation_on_association: bool?
4806
4918
  }
4807
4919
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
4808
4920
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -5241,7 +5353,8 @@ module Aws
5241
5353
  phone_type: ("SOFT_PHONE" | "DESK_PHONE"),
5242
5354
  auto_accept: bool?,
5243
5355
  after_contact_work_time_limit: ::Integer?,
5244
- desk_phone_number: ::String?
5356
+ desk_phone_number: ::String?,
5357
+ persistent_connection: bool?
5245
5358
  },
5246
5359
  user_id: ::String,
5247
5360
  instance_id: ::String
data/sig/types.rbs CHANGED
@@ -214,6 +214,16 @@ module Aws::Connect
214
214
  SENSITIVE: []
215
215
  end
216
216
 
217
+ class AssociateContactWithUserRequest
218
+ attr_accessor instance_id: ::String
219
+ attr_accessor contact_id: ::String
220
+ attr_accessor user_id: ::String
221
+ SENSITIVE: []
222
+ end
223
+
224
+ class AssociateContactWithUserResponse < Aws::EmptyStructure
225
+ end
226
+
217
227
  class AssociateDefaultVocabularyRequest
218
228
  attr_accessor instance_id: ::String
219
229
  attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
@@ -280,6 +290,7 @@ module Aws::Connect
280
290
  attr_accessor instance_id: ::String
281
291
  attr_accessor routing_profile_id: ::String
282
292
  attr_accessor queue_configs: ::Array[Types::RoutingProfileQueueConfig]
293
+ attr_accessor manual_assignment_queue_configs: ::Array[Types::RoutingProfileManualAssignmentQueueConfig]
283
294
  SENSITIVE: []
284
295
  end
285
296
 
@@ -834,7 +845,9 @@ module Aws::Connect
834
845
  attr_accessor disconnect_timestamp: ::Time
835
846
  attr_accessor scheduled_timestamp: ::Time
836
847
  attr_accessor segment_attributes: ::Hash[::String, Types::ContactSearchSummarySegmentAttributeValue]
837
- SENSITIVE: []
848
+ attr_accessor name: ::String
849
+ attr_accessor routing_criteria: Types::RoutingCriteria
850
+ SENSITIVE: [:segment_attributes, :name]
838
851
  end
839
852
 
840
853
  class ContactSearchSummaryAgentInfo
@@ -851,6 +864,7 @@ module Aws::Connect
851
864
 
852
865
  class ContactSearchSummarySegmentAttributeValue
853
866
  attr_accessor value_string: ::String
867
+ attr_accessor value_map: ::Hash[::String, Types::SegmentAttributeValue]
854
868
  SENSITIVE: []
855
869
  end
856
870
 
@@ -1103,6 +1117,8 @@ module Aws::Connect
1103
1117
  attr_accessor instance_id: ::String
1104
1118
  attr_accessor name: ::String
1105
1119
  attr_accessor values: Types::PredefinedAttributeValues
1120
+ attr_accessor purposes: ::Array[::String]
1121
+ attr_accessor attribute_configuration: Types::InputPredefinedAttributeConfiguration
1106
1122
  SENSITIVE: []
1107
1123
  end
1108
1124
 
@@ -1176,6 +1192,7 @@ module Aws::Connect
1176
1192
  attr_accessor description: ::String
1177
1193
  attr_accessor default_outbound_queue_id: ::String
1178
1194
  attr_accessor queue_configs: ::Array[Types::RoutingProfileQueueConfig]
1195
+ attr_accessor manual_assignment_queue_configs: ::Array[Types::RoutingProfileManualAssignmentQueueConfig]
1179
1196
  attr_accessor media_concurrencies: ::Array[Types::MediaConcurrency]
1180
1197
  attr_accessor tags: ::Hash[::String, ::String]
1181
1198
  attr_accessor agent_availability_timer: ("TIME_SINCE_LAST_ACTIVITY" | "TIME_SINCE_LAST_INBOUND")
@@ -2060,6 +2077,7 @@ module Aws::Connect
2060
2077
  attr_accessor instance_id: ::String
2061
2078
  attr_accessor routing_profile_id: ::String
2062
2079
  attr_accessor queue_references: ::Array[Types::RoutingProfileQueueReference]
2080
+ attr_accessor manual_assignment_queue_references: ::Array[Types::RoutingProfileQueueReference]
2063
2081
  SENSITIVE: []
2064
2082
  end
2065
2083
 
@@ -2957,6 +2975,11 @@ module Aws::Connect
2957
2975
  SENSITIVE: [:subject, :body]
2958
2976
  end
2959
2977
 
2978
+ class InputPredefinedAttributeConfiguration
2979
+ attr_accessor enable_value_validation_on_association: bool
2980
+ SENSITIVE: []
2981
+ end
2982
+
2960
2983
  class Instance
2961
2984
  attr_accessor id: ::String
2962
2985
  attr_accessor arn: ::String
@@ -3568,6 +3591,22 @@ module Aws::Connect
3568
3591
  SENSITIVE: []
3569
3592
  end
3570
3593
 
3594
+ class ListRoutingProfileManualAssignmentQueuesRequest
3595
+ attr_accessor instance_id: ::String
3596
+ attr_accessor routing_profile_id: ::String
3597
+ attr_accessor next_token: ::String
3598
+ attr_accessor max_results: ::Integer
3599
+ SENSITIVE: []
3600
+ end
3601
+
3602
+ class ListRoutingProfileManualAssignmentQueuesResponse
3603
+ attr_accessor next_token: ::String
3604
+ attr_accessor routing_profile_manual_assignment_queue_config_summary_list: ::Array[Types::RoutingProfileManualAssignmentQueueConfigSummary]
3605
+ attr_accessor last_modified_time: ::Time
3606
+ attr_accessor last_modified_region: ::String
3607
+ SENSITIVE: []
3608
+ end
3609
+
3571
3610
  class ListRoutingProfileQueuesRequest
3572
3611
  attr_accessor instance_id: ::String
3573
3612
  attr_accessor routing_profile_id: ::String
@@ -3893,6 +3932,12 @@ module Aws::Connect
3893
3932
  SENSITIVE: []
3894
3933
  end
3895
3934
 
3935
+ class NameCriteria
3936
+ attr_accessor search_text: ::Array[::String]
3937
+ attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
3938
+ SENSITIVE: []
3939
+ end
3940
+
3896
3941
  class NewSessionDetails
3897
3942
  attr_accessor supported_messaging_content_types: ::Array[::String]
3898
3943
  attr_accessor participant_details: Types::ParticipantDetails
@@ -4076,11 +4121,19 @@ module Aws::Connect
4076
4121
  class PredefinedAttribute
4077
4122
  attr_accessor name: ::String
4078
4123
  attr_accessor values: Types::PredefinedAttributeValues
4124
+ attr_accessor purposes: ::Array[::String]
4125
+ attr_accessor attribute_configuration: Types::PredefinedAttributeConfiguration
4079
4126
  attr_accessor last_modified_time: ::Time
4080
4127
  attr_accessor last_modified_region: ::String
4081
4128
  SENSITIVE: []
4082
4129
  end
4083
4130
 
4131
+ class PredefinedAttributeConfiguration
4132
+ attr_accessor enable_value_validation_on_association: bool
4133
+ attr_accessor is_read_only: bool
4134
+ SENSITIVE: []
4135
+ end
4136
+
4084
4137
  class PredefinedAttributeSearchCriteria
4085
4138
  attr_accessor or_conditions: ::Array[Types::PredefinedAttributeSearchCriteria]
4086
4139
  attr_accessor and_conditions: ::Array[Types::PredefinedAttributeSearchCriteria]
@@ -4593,12 +4646,27 @@ module Aws::Connect
4593
4646
  attr_accessor default_outbound_queue_id: ::String
4594
4647
  attr_accessor tags: ::Hash[::String, ::String]
4595
4648
  attr_accessor number_of_associated_queues: ::Integer
4649
+ attr_accessor number_of_associated_manual_assignment_queues: ::Integer
4596
4650
  attr_accessor number_of_associated_users: ::Integer
4597
4651
  attr_accessor agent_availability_timer: ("TIME_SINCE_LAST_ACTIVITY" | "TIME_SINCE_LAST_INBOUND")
4598
4652
  attr_accessor last_modified_time: ::Time
4599
4653
  attr_accessor last_modified_region: ::String
4600
4654
  attr_accessor is_default: bool
4601
4655
  attr_accessor associated_queue_ids: ::Array[::String]
4656
+ attr_accessor associated_manual_assignment_queue_ids: ::Array[::String]
4657
+ SENSITIVE: []
4658
+ end
4659
+
4660
+ class RoutingProfileManualAssignmentQueueConfig
4661
+ attr_accessor queue_reference: Types::RoutingProfileQueueReference
4662
+ SENSITIVE: []
4663
+ end
4664
+
4665
+ class RoutingProfileManualAssignmentQueueConfigSummary
4666
+ attr_accessor queue_id: ::String
4667
+ attr_accessor queue_arn: ::String
4668
+ attr_accessor queue_name: ::String
4669
+ attr_accessor channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
4602
4670
  SENSITIVE: []
4603
4671
  end
4604
4672
 
@@ -4771,6 +4839,18 @@ module Aws::Connect
4771
4839
  SENSITIVE: []
4772
4840
  end
4773
4841
 
4842
+ class SearchContactsAdditionalTimeRange
4843
+ attr_accessor criteria: ::Array[Types::SearchContactsAdditionalTimeRangeCriteria]
4844
+ attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
4845
+ SENSITIVE: []
4846
+ end
4847
+
4848
+ class SearchContactsAdditionalTimeRangeCriteria
4849
+ attr_accessor time_range: Types::SearchContactsTimeRange
4850
+ attr_accessor timestamp_condition: Types::SearchContactsTimestampCondition
4851
+ SENSITIVE: []
4852
+ end
4853
+
4774
4854
  class SearchContactsRequest
4775
4855
  attr_accessor instance_id: ::String
4776
4856
  attr_accessor time_range: Types::SearchContactsTimeRange
@@ -4789,19 +4869,28 @@ module Aws::Connect
4789
4869
  end
4790
4870
 
4791
4871
  class SearchContactsTimeRange
4792
- attr_accessor type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP")
4872
+ attr_accessor type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "ENQUEUE_TIMESTAMP")
4793
4873
  attr_accessor start_time: ::Time
4794
4874
  attr_accessor end_time: ::Time
4795
4875
  SENSITIVE: []
4796
4876
  end
4797
4877
 
4878
+ class SearchContactsTimestampCondition
4879
+ attr_accessor type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "ENQUEUE_TIMESTAMP")
4880
+ attr_accessor condition_type: ("NOT_EXISTS")
4881
+ SENSITIVE: []
4882
+ end
4883
+
4798
4884
  class SearchCriteria
4885
+ attr_accessor name: Types::NameCriteria
4799
4886
  attr_accessor agent_ids: ::Array[::String]
4800
4887
  attr_accessor agent_hierarchy_groups: Types::AgentHierarchyGroups
4801
4888
  attr_accessor channels: ::Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]
4802
4889
  attr_accessor contact_analysis: Types::ContactAnalysis
4803
4890
  attr_accessor initiation_methods: ::Array[("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND" | "WEBRTC_API" | "AGENT_REPLY" | "FLOW")]
4804
4891
  attr_accessor queue_ids: ::Array[::String]
4892
+ attr_accessor routing_criteria: Types::SearchableRoutingCriteria
4893
+ attr_accessor additional_time_range: Types::SearchContactsAdditionalTimeRange
4805
4894
  attr_accessor searchable_contact_attributes: Types::SearchableContactAttributes
4806
4895
  attr_accessor searchable_segment_attributes: Types::SearchableSegmentAttributes
4807
4896
  SENSITIVE: []
@@ -5013,9 +5102,15 @@ module Aws::Connect
5013
5102
  SENSITIVE: []
5014
5103
  end
5015
5104
 
5105
+ class SearchableAgentCriteriaStep
5106
+ attr_accessor agent_ids: ::Array[::String]
5107
+ attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
5108
+ SENSITIVE: []
5109
+ end
5110
+
5016
5111
  class SearchableContactAttributes
5017
5112
  attr_accessor criteria: ::Array[Types::SearchableContactAttributesCriteria]
5018
- attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
5113
+ attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
5019
5114
  SENSITIVE: []
5020
5115
  end
5021
5116
 
@@ -5025,9 +5120,19 @@ module Aws::Connect
5025
5120
  SENSITIVE: [:key]
5026
5121
  end
5027
5122
 
5123
+ class SearchableRoutingCriteria
5124
+ attr_accessor steps: ::Array[Types::SearchableRoutingCriteriaStep]
5125
+ SENSITIVE: []
5126
+ end
5127
+
5128
+ class SearchableRoutingCriteriaStep
5129
+ attr_accessor agent_criteria: Types::SearchableAgentCriteriaStep
5130
+ SENSITIVE: []
5131
+ end
5132
+
5028
5133
  class SearchableSegmentAttributes
5029
5134
  attr_accessor criteria: ::Array[Types::SearchableSegmentAttributesCriteria]
5030
- attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
5135
+ attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
5031
5136
  SENSITIVE: []
5032
5137
  end
5033
5138
 
@@ -5095,6 +5200,8 @@ module Aws::Connect
5095
5200
  attr_accessor value_string: ::String
5096
5201
  attr_accessor value_map: ::Hash[::String, Types::SegmentAttributeValue]
5097
5202
  attr_accessor value_integer: ::Integer
5203
+ attr_accessor value_list: ::Array[Types::SegmentAttributeValue]
5204
+ attr_accessor value_arn: ::String
5098
5205
  SENSITIVE: []
5099
5206
  end
5100
5207
 
@@ -5173,7 +5280,7 @@ module Aws::Connect
5173
5280
  end
5174
5281
 
5175
5282
  class Sort
5176
- attr_accessor field_name: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "INITIATION_METHOD" | "CHANNEL")
5283
+ attr_accessor field_name: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "INITIATION_METHOD" | "CHANNEL" | "EXPIRY_TIMESTAMP")
5177
5284
  attr_accessor order: ("ASCENDING" | "DESCENDING")
5178
5285
  SENSITIVE: []
5179
5286
  end
@@ -5654,14 +5761,14 @@ module Aws::Connect
5654
5761
 
5655
5762
  class Transcript
5656
5763
  attr_accessor criteria: ::Array[Types::TranscriptCriteria]
5657
- attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
5764
+ attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
5658
5765
  SENSITIVE: []
5659
5766
  end
5660
5767
 
5661
5768
  class TranscriptCriteria
5662
5769
  attr_accessor participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")
5663
5770
  attr_accessor search_text: ::Array[::String]
5664
- attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
5771
+ attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
5665
5772
  SENSITIVE: []
5666
5773
  end
5667
5774
 
@@ -5974,6 +6081,8 @@ module Aws::Connect
5974
6081
  attr_accessor instance_id: ::String
5975
6082
  attr_accessor name: ::String
5976
6083
  attr_accessor values: Types::PredefinedAttributeValues
6084
+ attr_accessor purposes: ::Array[::String]
6085
+ attr_accessor attribute_configuration: Types::InputPredefinedAttributeConfiguration
5977
6086
  SENSITIVE: []
5978
6087
  end
5979
6088
 
@@ -6330,6 +6439,7 @@ module Aws::Connect
6330
6439
  attr_accessor auto_accept: bool
6331
6440
  attr_accessor after_contact_work_time_limit: ::Integer
6332
6441
  attr_accessor desk_phone_number: ::String
6442
+ attr_accessor persistent_connection: bool
6333
6443
  SENSITIVE: []
6334
6444
  end
6335
6445
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.215.0
4
+ version: 1.218.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services