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
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
|
|
@@ -656,6 +667,7 @@ module Aws::Connect
|
|
656
667
|
attr_accessor recordings: ::Array[Types::RecordingInfo]
|
657
668
|
attr_accessor disconnect_reason: ::String
|
658
669
|
attr_accessor contact_evaluations: ::Hash[::String, Types::ContactEvaluation]
|
670
|
+
attr_accessor task_template_info: Types::TaskTemplateInfoV2
|
659
671
|
attr_accessor contact_details: Types::ContactDetails
|
660
672
|
attr_accessor attributes: ::Hash[::String, ::String]
|
661
673
|
SENSITIVE: [:name, :description]
|
@@ -834,7 +846,9 @@ module Aws::Connect
|
|
834
846
|
attr_accessor disconnect_timestamp: ::Time
|
835
847
|
attr_accessor scheduled_timestamp: ::Time
|
836
848
|
attr_accessor segment_attributes: ::Hash[::String, Types::ContactSearchSummarySegmentAttributeValue]
|
837
|
-
|
849
|
+
attr_accessor name: ::String
|
850
|
+
attr_accessor routing_criteria: Types::RoutingCriteria
|
851
|
+
SENSITIVE: [:segment_attributes, :name]
|
838
852
|
end
|
839
853
|
|
840
854
|
class ContactSearchSummaryAgentInfo
|
@@ -851,6 +865,7 @@ module Aws::Connect
|
|
851
865
|
|
852
866
|
class ContactSearchSummarySegmentAttributeValue
|
853
867
|
attr_accessor value_string: ::String
|
868
|
+
attr_accessor value_map: ::Hash[::String, Types::SegmentAttributeValue]
|
854
869
|
SENSITIVE: []
|
855
870
|
end
|
856
871
|
|
@@ -1178,6 +1193,7 @@ module Aws::Connect
|
|
1178
1193
|
attr_accessor description: ::String
|
1179
1194
|
attr_accessor default_outbound_queue_id: ::String
|
1180
1195
|
attr_accessor queue_configs: ::Array[Types::RoutingProfileQueueConfig]
|
1196
|
+
attr_accessor manual_assignment_queue_configs: ::Array[Types::RoutingProfileManualAssignmentQueueConfig]
|
1181
1197
|
attr_accessor media_concurrencies: ::Array[Types::MediaConcurrency]
|
1182
1198
|
attr_accessor tags: ::Hash[::String, ::String]
|
1183
1199
|
attr_accessor agent_availability_timer: ("TIME_SINCE_LAST_ACTIVITY" | "TIME_SINCE_LAST_INBOUND")
|
@@ -2062,6 +2078,7 @@ module Aws::Connect
|
|
2062
2078
|
attr_accessor instance_id: ::String
|
2063
2079
|
attr_accessor routing_profile_id: ::String
|
2064
2080
|
attr_accessor queue_references: ::Array[Types::RoutingProfileQueueReference]
|
2081
|
+
attr_accessor manual_assignment_queue_references: ::Array[Types::RoutingProfileQueueReference]
|
2065
2082
|
SENSITIVE: []
|
2066
2083
|
end
|
2067
2084
|
|
@@ -3575,6 +3592,22 @@ module Aws::Connect
|
|
3575
3592
|
SENSITIVE: []
|
3576
3593
|
end
|
3577
3594
|
|
3595
|
+
class ListRoutingProfileManualAssignmentQueuesRequest
|
3596
|
+
attr_accessor instance_id: ::String
|
3597
|
+
attr_accessor routing_profile_id: ::String
|
3598
|
+
attr_accessor next_token: ::String
|
3599
|
+
attr_accessor max_results: ::Integer
|
3600
|
+
SENSITIVE: []
|
3601
|
+
end
|
3602
|
+
|
3603
|
+
class ListRoutingProfileManualAssignmentQueuesResponse
|
3604
|
+
attr_accessor next_token: ::String
|
3605
|
+
attr_accessor routing_profile_manual_assignment_queue_config_summary_list: ::Array[Types::RoutingProfileManualAssignmentQueueConfigSummary]
|
3606
|
+
attr_accessor last_modified_time: ::Time
|
3607
|
+
attr_accessor last_modified_region: ::String
|
3608
|
+
SENSITIVE: []
|
3609
|
+
end
|
3610
|
+
|
3578
3611
|
class ListRoutingProfileQueuesRequest
|
3579
3612
|
attr_accessor instance_id: ::String
|
3580
3613
|
attr_accessor routing_profile_id: ::String
|
@@ -3900,6 +3933,12 @@ module Aws::Connect
|
|
3900
3933
|
SENSITIVE: []
|
3901
3934
|
end
|
3902
3935
|
|
3936
|
+
class NameCriteria
|
3937
|
+
attr_accessor search_text: ::Array[::String]
|
3938
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
3939
|
+
SENSITIVE: []
|
3940
|
+
end
|
3941
|
+
|
3903
3942
|
class NewSessionDetails
|
3904
3943
|
attr_accessor supported_messaging_content_types: ::Array[::String]
|
3905
3944
|
attr_accessor participant_details: Types::ParticipantDetails
|
@@ -4608,12 +4647,27 @@ module Aws::Connect
|
|
4608
4647
|
attr_accessor default_outbound_queue_id: ::String
|
4609
4648
|
attr_accessor tags: ::Hash[::String, ::String]
|
4610
4649
|
attr_accessor number_of_associated_queues: ::Integer
|
4650
|
+
attr_accessor number_of_associated_manual_assignment_queues: ::Integer
|
4611
4651
|
attr_accessor number_of_associated_users: ::Integer
|
4612
4652
|
attr_accessor agent_availability_timer: ("TIME_SINCE_LAST_ACTIVITY" | "TIME_SINCE_LAST_INBOUND")
|
4613
4653
|
attr_accessor last_modified_time: ::Time
|
4614
4654
|
attr_accessor last_modified_region: ::String
|
4615
4655
|
attr_accessor is_default: bool
|
4616
4656
|
attr_accessor associated_queue_ids: ::Array[::String]
|
4657
|
+
attr_accessor associated_manual_assignment_queue_ids: ::Array[::String]
|
4658
|
+
SENSITIVE: []
|
4659
|
+
end
|
4660
|
+
|
4661
|
+
class RoutingProfileManualAssignmentQueueConfig
|
4662
|
+
attr_accessor queue_reference: Types::RoutingProfileQueueReference
|
4663
|
+
SENSITIVE: []
|
4664
|
+
end
|
4665
|
+
|
4666
|
+
class RoutingProfileManualAssignmentQueueConfigSummary
|
4667
|
+
attr_accessor queue_id: ::String
|
4668
|
+
attr_accessor queue_arn: ::String
|
4669
|
+
attr_accessor queue_name: ::String
|
4670
|
+
attr_accessor channel: ("VOICE" | "CHAT" | "TASK" | "EMAIL")
|
4617
4671
|
SENSITIVE: []
|
4618
4672
|
end
|
4619
4673
|
|
@@ -4786,6 +4840,18 @@ module Aws::Connect
|
|
4786
4840
|
SENSITIVE: []
|
4787
4841
|
end
|
4788
4842
|
|
4843
|
+
class SearchContactsAdditionalTimeRange
|
4844
|
+
attr_accessor criteria: ::Array[Types::SearchContactsAdditionalTimeRangeCriteria]
|
4845
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
4846
|
+
SENSITIVE: []
|
4847
|
+
end
|
4848
|
+
|
4849
|
+
class SearchContactsAdditionalTimeRangeCriteria
|
4850
|
+
attr_accessor time_range: Types::SearchContactsTimeRange
|
4851
|
+
attr_accessor timestamp_condition: Types::SearchContactsTimestampCondition
|
4852
|
+
SENSITIVE: []
|
4853
|
+
end
|
4854
|
+
|
4789
4855
|
class SearchContactsRequest
|
4790
4856
|
attr_accessor instance_id: ::String
|
4791
4857
|
attr_accessor time_range: Types::SearchContactsTimeRange
|
@@ -4804,19 +4870,28 @@ module Aws::Connect
|
|
4804
4870
|
end
|
4805
4871
|
|
4806
4872
|
class SearchContactsTimeRange
|
4807
|
-
attr_accessor type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP")
|
4873
|
+
attr_accessor type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "ENQUEUE_TIMESTAMP")
|
4808
4874
|
attr_accessor start_time: ::Time
|
4809
4875
|
attr_accessor end_time: ::Time
|
4810
4876
|
SENSITIVE: []
|
4811
4877
|
end
|
4812
4878
|
|
4879
|
+
class SearchContactsTimestampCondition
|
4880
|
+
attr_accessor type: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "ENQUEUE_TIMESTAMP")
|
4881
|
+
attr_accessor condition_type: ("NOT_EXISTS")
|
4882
|
+
SENSITIVE: []
|
4883
|
+
end
|
4884
|
+
|
4813
4885
|
class SearchCriteria
|
4886
|
+
attr_accessor name: Types::NameCriteria
|
4814
4887
|
attr_accessor agent_ids: ::Array[::String]
|
4815
4888
|
attr_accessor agent_hierarchy_groups: Types::AgentHierarchyGroups
|
4816
4889
|
attr_accessor channels: ::Array[("VOICE" | "CHAT" | "TASK" | "EMAIL")]
|
4817
4890
|
attr_accessor contact_analysis: Types::ContactAnalysis
|
4818
4891
|
attr_accessor initiation_methods: ::Array[("INBOUND" | "OUTBOUND" | "TRANSFER" | "QUEUE_TRANSFER" | "CALLBACK" | "API" | "DISCONNECT" | "MONITOR" | "EXTERNAL_OUTBOUND" | "WEBRTC_API" | "AGENT_REPLY" | "FLOW")]
|
4819
4892
|
attr_accessor queue_ids: ::Array[::String]
|
4893
|
+
attr_accessor routing_criteria: Types::SearchableRoutingCriteria
|
4894
|
+
attr_accessor additional_time_range: Types::SearchContactsAdditionalTimeRange
|
4820
4895
|
attr_accessor searchable_contact_attributes: Types::SearchableContactAttributes
|
4821
4896
|
attr_accessor searchable_segment_attributes: Types::SearchableSegmentAttributes
|
4822
4897
|
SENSITIVE: []
|
@@ -5028,9 +5103,15 @@ module Aws::Connect
|
|
5028
5103
|
SENSITIVE: []
|
5029
5104
|
end
|
5030
5105
|
|
5106
|
+
class SearchableAgentCriteriaStep
|
5107
|
+
attr_accessor agent_ids: ::Array[::String]
|
5108
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
5109
|
+
SENSITIVE: []
|
5110
|
+
end
|
5111
|
+
|
5031
5112
|
class SearchableContactAttributes
|
5032
5113
|
attr_accessor criteria: ::Array[Types::SearchableContactAttributesCriteria]
|
5033
|
-
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
|
5114
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
5034
5115
|
SENSITIVE: []
|
5035
5116
|
end
|
5036
5117
|
|
@@ -5040,9 +5121,19 @@ module Aws::Connect
|
|
5040
5121
|
SENSITIVE: [:key]
|
5041
5122
|
end
|
5042
5123
|
|
5124
|
+
class SearchableRoutingCriteria
|
5125
|
+
attr_accessor steps: ::Array[Types::SearchableRoutingCriteriaStep]
|
5126
|
+
SENSITIVE: []
|
5127
|
+
end
|
5128
|
+
|
5129
|
+
class SearchableRoutingCriteriaStep
|
5130
|
+
attr_accessor agent_criteria: Types::SearchableAgentCriteriaStep
|
5131
|
+
SENSITIVE: []
|
5132
|
+
end
|
5133
|
+
|
5043
5134
|
class SearchableSegmentAttributes
|
5044
5135
|
attr_accessor criteria: ::Array[Types::SearchableSegmentAttributesCriteria]
|
5045
|
-
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
|
5136
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
5046
5137
|
SENSITIVE: []
|
5047
5138
|
end
|
5048
5139
|
|
@@ -5190,7 +5281,7 @@ module Aws::Connect
|
|
5190
5281
|
end
|
5191
5282
|
|
5192
5283
|
class Sort
|
5193
|
-
attr_accessor field_name: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "INITIATION_METHOD" | "CHANNEL")
|
5284
|
+
attr_accessor field_name: ("INITIATION_TIMESTAMP" | "SCHEDULED_TIMESTAMP" | "CONNECTED_TO_AGENT_TIMESTAMP" | "DISCONNECT_TIMESTAMP" | "INITIATION_METHOD" | "CHANNEL" | "EXPIRY_TIMESTAMP")
|
5194
5285
|
attr_accessor order: ("ASCENDING" | "DESCENDING")
|
5195
5286
|
SENSITIVE: []
|
5196
5287
|
end
|
@@ -5591,6 +5682,12 @@ module Aws::Connect
|
|
5591
5682
|
SENSITIVE: []
|
5592
5683
|
end
|
5593
5684
|
|
5685
|
+
class TaskTemplateInfoV2
|
5686
|
+
attr_accessor arn: ::String
|
5687
|
+
attr_accessor name: ::String
|
5688
|
+
SENSITIVE: []
|
5689
|
+
end
|
5690
|
+
|
5594
5691
|
class TaskTemplateMetadata
|
5595
5692
|
attr_accessor id: ::String
|
5596
5693
|
attr_accessor arn: ::String
|
@@ -5671,14 +5768,14 @@ module Aws::Connect
|
|
5671
5768
|
|
5672
5769
|
class Transcript
|
5673
5770
|
attr_accessor criteria: ::Array[Types::TranscriptCriteria]
|
5674
|
-
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
|
5771
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
5675
5772
|
SENSITIVE: []
|
5676
5773
|
end
|
5677
5774
|
|
5678
5775
|
class TranscriptCriteria
|
5679
5776
|
attr_accessor participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")
|
5680
5777
|
attr_accessor search_text: ::Array[::String]
|
5681
|
-
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY")
|
5778
|
+
attr_accessor match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")
|
5682
5779
|
SENSITIVE: []
|
5683
5780
|
end
|
5684
5781
|
|