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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +287 -11
- data/lib/aws-sdk-connect/client_api.rb +126 -2
- data/lib/aws-sdk-connect/types.rb +338 -7
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +87 -8
- data/sig/types.rbs +97 -7
- metadata +1 -1
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]
|
@@ -836,6 +855,14 @@ module Aws
|
|
836
855
|
delay: ::Integer
|
837
856
|
},
|
838
857
|
],
|
858
|
+
?manual_assignment_queue_configs: Array[
|
859
|
+
{
|
860
|
+
queue_reference: {
|
861
|
+
queue_id: ::String,
|
862
|
+
channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
|
863
|
+
}
|
864
|
+
},
|
865
|
+
],
|
839
866
|
media_concurrencies: Array[
|
840
867
|
{
|
841
868
|
channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL"),
|
@@ -1798,7 +1825,13 @@ module Aws
|
|
1798
1825
|
def disassociate_routing_profile_queues: (
|
1799
1826
|
instance_id: ::String,
|
1800
1827
|
routing_profile_id: ::String,
|
1801
|
-
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[
|
1802
1835
|
{
|
1803
1836
|
queue_id: ::String,
|
1804
1837
|
channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
|
@@ -2594,6 +2627,22 @@ module Aws
|
|
2594
2627
|
) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
|
2595
2628
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
|
2596
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
|
+
|
2597
2646
|
interface _ListRoutingProfileQueuesResponseSuccess
|
2598
2647
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRoutingProfileQueuesResponse]
|
2599
2648
|
def next_token: () -> ::String
|
@@ -3095,11 +3144,15 @@ module Aws
|
|
3095
3144
|
def search_contacts: (
|
3096
3145
|
instance_id: ::String,
|
3097
3146
|
time_range: {
|
3098
|
-
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"),
|
3099
3148
|
start_time: ::Time,
|
3100
3149
|
end_time: ::Time
|
3101
3150
|
},
|
3102
3151
|
?search_criteria: {
|
3152
|
+
name: {
|
3153
|
+
search_text: Array[::String],
|
3154
|
+
match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
3155
|
+
}?,
|
3103
3156
|
agent_ids: Array[::String]?,
|
3104
3157
|
agent_hierarchy_groups: {
|
3105
3158
|
l1_ids: Array[::String]?,
|
@@ -3115,14 +3168,40 @@ module Aws
|
|
3115
3168
|
{
|
3116
3169
|
participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR"),
|
3117
3170
|
search_text: Array[::String],
|
3118
|
-
match_type: ("MATCH_ALL" | "MATCH_ANY")
|
3171
|
+
match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
3119
3172
|
},
|
3120
3173
|
],
|
3121
|
-
match_type: ("MATCH_ALL" | "MATCH_ANY")?
|
3174
|
+
match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")?
|
3122
3175
|
}?
|
3123
3176
|
}?,
|
3124
3177
|
initiation_methods: Array[("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND" | "WEBRTC_API" | "AGENT_REPLY" | "FLOW")]?,
|
3125
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
|
+
}?,
|
3126
3205
|
searchable_contact_attributes: {
|
3127
3206
|
criteria: Array[
|
3128
3207
|
{
|
@@ -3130,7 +3209,7 @@ module Aws
|
|
3130
3209
|
values: Array[::String]
|
3131
3210
|
},
|
3132
3211
|
],
|
3133
|
-
match_type: ("MATCH_ALL" | "MATCH_ANY")?
|
3212
|
+
match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")?
|
3134
3213
|
}?,
|
3135
3214
|
searchable_segment_attributes: {
|
3136
3215
|
criteria: Array[
|
@@ -3139,13 +3218,13 @@ module Aws
|
|
3139
3218
|
values: Array[::String]
|
3140
3219
|
},
|
3141
3220
|
],
|
3142
|
-
match_type: ("MATCH_ALL" | "MATCH_ANY")?
|
3221
|
+
match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")?
|
3143
3222
|
}?
|
3144
3223
|
},
|
3145
3224
|
?max_results: ::Integer,
|
3146
3225
|
?next_token: ::String,
|
3147
3226
|
?sort: {
|
3148
|
-
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"),
|
3149
3228
|
order: ("ASCENDING" | "DESCENDING")
|
3150
3229
|
}
|
3151
3230
|
) -> _SearchContactsResponseSuccess
|
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
|
-
|
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
|
|
@@ -1178,6 +1192,7 @@ module Aws::Connect
|
|
1178
1192
|
attr_accessor description: ::String
|
1179
1193
|
attr_accessor default_outbound_queue_id: ::String
|
1180
1194
|
attr_accessor queue_configs: ::Array[Types::RoutingProfileQueueConfig]
|
1195
|
+
attr_accessor manual_assignment_queue_configs: ::Array[Types::RoutingProfileManualAssignmentQueueConfig]
|
1181
1196
|
attr_accessor media_concurrencies: ::Array[Types::MediaConcurrency]
|
1182
1197
|
attr_accessor tags: ::Hash[::String, ::String]
|
1183
1198
|
attr_accessor agent_availability_timer: ("TIME_SINCE_LAST_ACTIVITY" | "TIME_SINCE_LAST_INBOUND")
|
@@ -2062,6 +2077,7 @@ module Aws::Connect
|
|
2062
2077
|
attr_accessor instance_id: ::String
|
2063
2078
|
attr_accessor routing_profile_id: ::String
|
2064
2079
|
attr_accessor queue_references: ::Array[Types::RoutingProfileQueueReference]
|
2080
|
+
attr_accessor manual_assignment_queue_references: ::Array[Types::RoutingProfileQueueReference]
|
2065
2081
|
SENSITIVE: []
|
2066
2082
|
end
|
2067
2083
|
|
@@ -3575,6 +3591,22 @@ module Aws::Connect
|
|
3575
3591
|
SENSITIVE: []
|
3576
3592
|
end
|
3577
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
|
+
|
3578
3610
|
class ListRoutingProfileQueuesRequest
|
3579
3611
|
attr_accessor instance_id: ::String
|
3580
3612
|
attr_accessor routing_profile_id: ::String
|
@@ -3900,6 +3932,12 @@ module Aws::Connect
|
|
3900
3932
|
SENSITIVE: []
|
3901
3933
|
end
|
3902
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
|
+
|
3903
3941
|
class NewSessionDetails
|
3904
3942
|
attr_accessor supported_messaging_content_types: ::Array[::String]
|
3905
3943
|
attr_accessor participant_details: Types::ParticipantDetails
|
@@ -4608,12 +4646,27 @@ module Aws::Connect
|
|
4608
4646
|
attr_accessor default_outbound_queue_id: ::String
|
4609
4647
|
attr_accessor tags: ::Hash[::String, ::String]
|
4610
4648
|
attr_accessor number_of_associated_queues: ::Integer
|
4649
|
+
attr_accessor number_of_associated_manual_assignment_queues: ::Integer
|
4611
4650
|
attr_accessor number_of_associated_users: ::Integer
|
4612
4651
|
attr_accessor agent_availability_timer: ("TIME_SINCE_LAST_ACTIVITY" | "TIME_SINCE_LAST_INBOUND")
|
4613
4652
|
attr_accessor last_modified_time: ::Time
|
4614
4653
|
attr_accessor last_modified_region: ::String
|
4615
4654
|
attr_accessor is_default: bool
|
4616
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")
|
4617
4670
|
SENSITIVE: []
|
4618
4671
|
end
|
4619
4672
|
|
@@ -4786,6 +4839,18 @@ module Aws::Connect
|
|
4786
4839
|
SENSITIVE: []
|
4787
4840
|
end
|
4788
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
|
+
|
4789
4854
|
class SearchContactsRequest
|
4790
4855
|
attr_accessor instance_id: ::String
|
4791
4856
|
attr_accessor time_range: Types::SearchContactsTimeRange
|
@@ -4804,19 +4869,28 @@ module Aws::Connect
|
|
4804
4869
|
end
|
4805
4870
|
|
4806
4871
|
class SearchContactsTimeRange
|
4807
|
-
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")
|
4808
4873
|
attr_accessor start_time: ::Time
|
4809
4874
|
attr_accessor end_time: ::Time
|
4810
4875
|
SENSITIVE: []
|
4811
4876
|
end
|
4812
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
|
+
|
4813
4884
|
class SearchCriteria
|
4885
|
+
attr_accessor name: Types::NameCriteria
|
4814
4886
|
attr_accessor agent_ids: ::Array[::String]
|
4815
4887
|
attr_accessor agent_hierarchy_groups: Types::AgentHierarchyGroups
|
4816
4888
|
attr_accessor channels: ::Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]
|
4817
4889
|
attr_accessor contact_analysis: Types::ContactAnalysis
|
4818
4890
|
attr_accessor initiation_methods: ::Array[("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND" | "WEBRTC_API" | "AGENT_REPLY" | "FLOW")]
|
4819
4891
|
attr_accessor queue_ids: ::Array[::String]
|
4892
|
+
attr_accessor routing_criteria: Types::SearchableRoutingCriteria
|
4893
|
+
attr_accessor additional_time_range: Types::SearchContactsAdditionalTimeRange
|
4820
4894
|
attr_accessor searchable_contact_attributes: Types::SearchableContactAttributes
|
4821
4895
|
attr_accessor searchable_segment_attributes: Types::SearchableSegmentAttributes
|
4822
4896
|
SENSITIVE: []
|
@@ -5028,9 +5102,15 @@ module Aws::Connect
|
|
5028
5102
|
SENSITIVE: []
|
5029
5103
|
end
|
5030
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
|
+
|
5031
5111
|
class SearchableContactAttributes
|
5032
5112
|
attr_accessor criteria: ::Array[Types::SearchableContactAttributesCriteria]
|
5033
|
-
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
|
5113
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
5034
5114
|
SENSITIVE: []
|
5035
5115
|
end
|
5036
5116
|
|
@@ -5040,9 +5120,19 @@ module Aws::Connect
|
|
5040
5120
|
SENSITIVE: [:key]
|
5041
5121
|
end
|
5042
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
|
+
|
5043
5133
|
class SearchableSegmentAttributes
|
5044
5134
|
attr_accessor criteria: ::Array[Types::SearchableSegmentAttributesCriteria]
|
5045
|
-
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
|
5135
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
5046
5136
|
SENSITIVE: []
|
5047
5137
|
end
|
5048
5138
|
|
@@ -5190,7 +5280,7 @@ module Aws::Connect
|
|
5190
5280
|
end
|
5191
5281
|
|
5192
5282
|
class Sort
|
5193
|
-
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")
|
5194
5284
|
attr_accessor order: ("ASCENDING" | "DESCENDING")
|
5195
5285
|
SENSITIVE: []
|
5196
5286
|
end
|
@@ -5671,14 +5761,14 @@ module Aws::Connect
|
|
5671
5761
|
|
5672
5762
|
class Transcript
|
5673
5763
|
attr_accessor criteria: ::Array[Types::TranscriptCriteria]
|
5674
|
-
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
|
5764
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
5675
5765
|
SENSITIVE: []
|
5676
5766
|
end
|
5677
5767
|
|
5678
5768
|
class TranscriptCriteria
|
5679
5769
|
attr_accessor participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")
|
5680
5770
|
attr_accessor search_text: ::Array[::String]
|
5681
|
-
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
|
5771
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
5682
5772
|
SENSITIVE: []
|
5683
5773
|
end
|
5684
5774
|
|