aws-sdk-connect 1.100.0 → 1.101.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 +19 -2
- data/lib/aws-sdk-connect/client_api.rb +6 -0
- data/lib/aws-sdk-connect/types.rb +42 -3
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1726ff9c191d9464cfe306339becbb2a822ae41de4c758f62d59a5cecb48a742
|
|
4
|
+
data.tar.gz: 592a3cdf2839854beb6ddced1fe5e077e0814c30b8e9fbedcd8cd18ea09af4c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6218d62f8d77123a39281b416efd8c17f202941142a56844011df7a65e608fdf88212e7c808426a5c41a949fb76f568a83ddc907594b719b2c3cf52a8a579794
|
|
7
|
+
data.tar.gz: 3c67ec51c87b90589f1a71b57522c9b96261d53448cc755d7a8b99bddbe5431ccc185a6056174c70ed858f86257ea4a0f59173d189c8f2de57c8751df3e25cd5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.101.0 (2023-04-10)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds the ability to configure an agent's routing profile to receive contacts from multiple channels at the same time via extending the UpdateRoutingProfileConcurrency, CreateRoutingProfile and DescribeRoutingProfile APIs.
|
|
8
|
+
|
|
4
9
|
1.100.0 (2023-03-27)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.101.0
|
|
@@ -1531,6 +1531,9 @@ module Aws::Connect
|
|
|
1531
1531
|
# {
|
|
1532
1532
|
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK
|
|
1533
1533
|
# concurrency: 1, # required
|
|
1534
|
+
# cross_channel_behavior: {
|
|
1535
|
+
# behavior_type: "ROUTE_CURRENT_CHANNEL_ONLY", # required, accepts ROUTE_CURRENT_CHANNEL_ONLY, ROUTE_ANY_CHANNEL
|
|
1536
|
+
# },
|
|
1534
1537
|
# },
|
|
1535
1538
|
# ],
|
|
1536
1539
|
# tags: {
|
|
@@ -3295,6 +3298,7 @@ module Aws::Connect
|
|
|
3295
3298
|
# resp.routing_profile.media_concurrencies #=> Array
|
|
3296
3299
|
# resp.routing_profile.media_concurrencies[0].channel #=> String, one of "VOICE", "CHAT", "TASK"
|
|
3297
3300
|
# resp.routing_profile.media_concurrencies[0].concurrency #=> Integer
|
|
3301
|
+
# resp.routing_profile.media_concurrencies[0].cross_channel_behavior.behavior_type #=> String, one of "ROUTE_CURRENT_CHANNEL_ONLY", "ROUTE_ANY_CHANNEL"
|
|
3298
3302
|
# resp.routing_profile.default_outbound_queue_id #=> String
|
|
3299
3303
|
# resp.routing_profile.tags #=> Hash
|
|
3300
3304
|
# resp.routing_profile.tags["TagKey"] #=> String
|
|
@@ -4841,7 +4845,8 @@ module Aws::Connect
|
|
|
4841
4845
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
|
4842
4846
|
# The timestamp, in UNIX Epoch time format, at which to end the
|
|
4843
4847
|
# reporting interval for the retrieval of historical metrics data. The
|
|
4844
|
-
# time must be later than the start time timestamp.
|
|
4848
|
+
# time must be later than the start time timestamp. It cannot be later
|
|
4849
|
+
# than the current timestamp.
|
|
4845
4850
|
#
|
|
4846
4851
|
# The time range between the start and end time must be less than 24
|
|
4847
4852
|
# hours.
|
|
@@ -5088,12 +5093,20 @@ module Aws::Connect
|
|
|
5088
5093
|
#
|
|
5089
5094
|
# Valid groupings and filters: Queue, Channel, Routing Profile
|
|
5090
5095
|
#
|
|
5096
|
+
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
|
5097
|
+
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
|
5098
|
+
# `LT` (for "Less than").
|
|
5099
|
+
#
|
|
5091
5100
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
|
5092
5101
|
#
|
|
5093
5102
|
# : Unit: Count
|
|
5094
5103
|
#
|
|
5095
5104
|
# Valid groupings and filters: Queue, Channel, Routing Profile
|
|
5096
5105
|
#
|
|
5106
|
+
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
|
5107
|
+
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
|
5108
|
+
# `LT` (for "Less than").
|
|
5109
|
+
#
|
|
5097
5110
|
# SUM\_CONTACTS\_DISCONNECTED
|
|
5098
5111
|
#
|
|
5099
5112
|
# : Valid metric filter key: `DISCONNECT_REASON`
|
|
@@ -7745,6 +7758,7 @@ module Aws::Connect
|
|
|
7745
7758
|
# resp.routing_profiles[0].media_concurrencies #=> Array
|
|
7746
7759
|
# resp.routing_profiles[0].media_concurrencies[0].channel #=> String, one of "VOICE", "CHAT", "TASK"
|
|
7747
7760
|
# resp.routing_profiles[0].media_concurrencies[0].concurrency #=> Integer
|
|
7761
|
+
# resp.routing_profiles[0].media_concurrencies[0].cross_channel_behavior.behavior_type #=> String, one of "ROUTE_CURRENT_CHANNEL_ONLY", "ROUTE_ANY_CHANNEL"
|
|
7748
7762
|
# resp.routing_profiles[0].default_outbound_queue_id #=> String
|
|
7749
7763
|
# resp.routing_profiles[0].tags #=> Hash
|
|
7750
7764
|
# resp.routing_profiles[0].tags["TagKey"] #=> String
|
|
@@ -10004,6 +10018,9 @@ module Aws::Connect
|
|
|
10004
10018
|
# {
|
|
10005
10019
|
# channel: "VOICE", # required, accepts VOICE, CHAT, TASK
|
|
10006
10020
|
# concurrency: 1, # required
|
|
10021
|
+
# cross_channel_behavior: {
|
|
10022
|
+
# behavior_type: "ROUTE_CURRENT_CHANNEL_ONLY", # required, accepts ROUTE_CURRENT_CHANNEL_ONLY, ROUTE_ANY_CHANNEL
|
|
10023
|
+
# },
|
|
10007
10024
|
# },
|
|
10008
10025
|
# ],
|
|
10009
10026
|
# })
|
|
@@ -10773,7 +10790,7 @@ module Aws::Connect
|
|
|
10773
10790
|
params: params,
|
|
10774
10791
|
config: config)
|
|
10775
10792
|
context[:gem_name] = 'aws-sdk-connect'
|
|
10776
|
-
context[:gem_version] = '1.
|
|
10793
|
+
context[:gem_version] = '1.101.0'
|
|
10777
10794
|
Seahorse::Client::Request.new(handlers, context)
|
|
10778
10795
|
end
|
|
10779
10796
|
|
|
@@ -68,6 +68,7 @@ module Aws::Connect
|
|
|
68
68
|
AvailableNumberSummary = Shapes::StructureShape.new(name: 'AvailableNumberSummary')
|
|
69
69
|
AvailableNumbersList = Shapes::ListShape.new(name: 'AvailableNumbersList')
|
|
70
70
|
AwsRegion = Shapes::StringShape.new(name: 'AwsRegion')
|
|
71
|
+
BehaviorType = Shapes::StringShape.new(name: 'BehaviorType')
|
|
71
72
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
72
73
|
BotName = Shapes::StringShape.new(name: 'BotName')
|
|
73
74
|
BucketName = Shapes::StringShape.new(name: 'BucketName')
|
|
@@ -155,6 +156,7 @@ module Aws::Connect
|
|
|
155
156
|
CreateVocabularyRequest = Shapes::StructureShape.new(name: 'CreateVocabularyRequest')
|
|
156
157
|
CreateVocabularyResponse = Shapes::StructureShape.new(name: 'CreateVocabularyResponse')
|
|
157
158
|
Credentials = Shapes::StructureShape.new(name: 'Credentials')
|
|
159
|
+
CrossChannelBehavior = Shapes::StructureShape.new(name: 'CrossChannelBehavior')
|
|
158
160
|
CurrentMetric = Shapes::StructureShape.new(name: 'CurrentMetric')
|
|
159
161
|
CurrentMetricData = Shapes::StructureShape.new(name: 'CurrentMetricData')
|
|
160
162
|
CurrentMetricDataCollections = Shapes::ListShape.new(name: 'CurrentMetricDataCollections')
|
|
@@ -1272,6 +1274,9 @@ module Aws::Connect
|
|
|
1272
1274
|
Credentials.add_member(:refresh_token_expiration, Shapes::ShapeRef.new(shape: timestamp, location_name: "RefreshTokenExpiration"))
|
|
1273
1275
|
Credentials.struct_class = Types::Credentials
|
|
1274
1276
|
|
|
1277
|
+
CrossChannelBehavior.add_member(:behavior_type, Shapes::ShapeRef.new(shape: BehaviorType, required: true, location_name: "BehaviorType"))
|
|
1278
|
+
CrossChannelBehavior.struct_class = Types::CrossChannelBehavior
|
|
1279
|
+
|
|
1275
1280
|
CurrentMetric.add_member(:name, Shapes::ShapeRef.new(shape: CurrentMetricName, location_name: "Name"))
|
|
1276
1281
|
CurrentMetric.add_member(:unit, Shapes::ShapeRef.new(shape: Unit, location_name: "Unit"))
|
|
1277
1282
|
CurrentMetric.struct_class = Types::CurrentMetric
|
|
@@ -2231,6 +2236,7 @@ module Aws::Connect
|
|
|
2231
2236
|
|
|
2232
2237
|
MediaConcurrency.add_member(:channel, Shapes::ShapeRef.new(shape: Channel, required: true, location_name: "Channel"))
|
|
2233
2238
|
MediaConcurrency.add_member(:concurrency, Shapes::ShapeRef.new(shape: Concurrency, required: true, location_name: "Concurrency"))
|
|
2239
|
+
MediaConcurrency.add_member(:cross_channel_behavior, Shapes::ShapeRef.new(shape: CrossChannelBehavior, location_name: "CrossChannelBehavior"))
|
|
2234
2240
|
MediaConcurrency.struct_class = Types::MediaConcurrency
|
|
2235
2241
|
|
|
2236
2242
|
MetricDataCollectionsV2.member = Shapes::ShapeRef.new(shape: MetricDataV2)
|
|
@@ -608,7 +608,8 @@ module Aws::Connect
|
|
|
608
608
|
#
|
|
609
609
|
# @!attribute [rw] content_type
|
|
610
610
|
# The type of the content. Supported types are `text/plain`,
|
|
611
|
-
# `text/markdown`,
|
|
611
|
+
# `text/markdown`, `application/json`, and
|
|
612
|
+
# `application/vnd.amazonaws.connect.message.interactive.response`.
|
|
612
613
|
# @return [String]
|
|
613
614
|
#
|
|
614
615
|
# @!attribute [rw] content
|
|
@@ -619,6 +620,10 @@ module Aws::Connect
|
|
|
619
620
|
#
|
|
620
621
|
# * For `application/json`, the Length Constraints are Minimum of 1,
|
|
621
622
|
# Maximum of 12000.
|
|
623
|
+
#
|
|
624
|
+
# * For
|
|
625
|
+
# `application/vnd.amazonaws.connect.message.interactive.response`,
|
|
626
|
+
# the Length Constraints are Minimum of 1, Maximum of 12288.
|
|
622
627
|
# @return [String]
|
|
623
628
|
#
|
|
624
629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ChatMessage AWS API Documentation
|
|
@@ -2406,6 +2411,23 @@ module Aws::Connect
|
|
|
2406
2411
|
include Aws::Structure
|
|
2407
2412
|
end
|
|
2408
2413
|
|
|
2414
|
+
# Defines the cross-channel routing behavior that allows an agent
|
|
2415
|
+
# working on a contact in one channel to be offered a contact from a
|
|
2416
|
+
# different channel.
|
|
2417
|
+
#
|
|
2418
|
+
# @!attribute [rw] behavior_type
|
|
2419
|
+
# Specifies the other channels that can be routed to an agent handling
|
|
2420
|
+
# their current channel.
|
|
2421
|
+
# @return [String]
|
|
2422
|
+
#
|
|
2423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CrossChannelBehavior AWS API Documentation
|
|
2424
|
+
#
|
|
2425
|
+
class CrossChannelBehavior < Struct.new(
|
|
2426
|
+
:behavior_type)
|
|
2427
|
+
SENSITIVE = []
|
|
2428
|
+
include Aws::Structure
|
|
2429
|
+
end
|
|
2430
|
+
|
|
2409
2431
|
# Contains information about a real-time metric. For a description of
|
|
2410
2432
|
# each metric, see [Real-time Metrics Definitions][1] in the *Amazon
|
|
2411
2433
|
# Connect Administrator Guide*.
|
|
@@ -4631,7 +4653,8 @@ module Aws::Connect
|
|
|
4631
4653
|
# @!attribute [rw] end_time
|
|
4632
4654
|
# The timestamp, in UNIX Epoch time format, at which to end the
|
|
4633
4655
|
# reporting interval for the retrieval of historical metrics data. The
|
|
4634
|
-
# time must be later than the start time timestamp.
|
|
4656
|
+
# time must be later than the start time timestamp. It cannot be later
|
|
4657
|
+
# than the current timestamp.
|
|
4635
4658
|
#
|
|
4636
4659
|
# The time range between the start and end time must be less than 24
|
|
4637
4660
|
# hours.
|
|
@@ -4882,12 +4905,20 @@ module Aws::Connect
|
|
|
4882
4905
|
#
|
|
4883
4906
|
# Valid groupings and filters: Queue, Channel, Routing Profile
|
|
4884
4907
|
#
|
|
4908
|
+
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
|
4909
|
+
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
|
4910
|
+
# `LT` (for "Less than").
|
|
4911
|
+
#
|
|
4885
4912
|
# SUM\_CONTACTS\_ABANDONED\_IN\_X
|
|
4886
4913
|
#
|
|
4887
4914
|
# : Unit: Count
|
|
4888
4915
|
#
|
|
4889
4916
|
# Valid groupings and filters: Queue, Channel, Routing Profile
|
|
4890
4917
|
#
|
|
4918
|
+
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
|
4919
|
+
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
|
4920
|
+
# `LT` (for "Less than").
|
|
4921
|
+
#
|
|
4891
4922
|
# SUM\_CONTACTS\_DISCONNECTED
|
|
4892
4923
|
#
|
|
4893
4924
|
# : Valid metric filter key: `DISCONNECT_REASON`
|
|
@@ -7711,11 +7742,19 @@ module Aws::Connect
|
|
|
7711
7742
|
# Valid Range for `TASK`: Minimum value of 1. Maximum value of 10.
|
|
7712
7743
|
# @return [Integer]
|
|
7713
7744
|
#
|
|
7745
|
+
# @!attribute [rw] cross_channel_behavior
|
|
7746
|
+
# Defines the cross-channel routing behavior for each channel that is
|
|
7747
|
+
# enabled for this Routing Profile. For example, this allows you to
|
|
7748
|
+
# offer an agent a different contact from another channel when they
|
|
7749
|
+
# are currently working with a contact from a Voice channel.
|
|
7750
|
+
# @return [Types::CrossChannelBehavior]
|
|
7751
|
+
#
|
|
7714
7752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/MediaConcurrency AWS API Documentation
|
|
7715
7753
|
#
|
|
7716
7754
|
class MediaConcurrency < Struct.new(
|
|
7717
7755
|
:channel,
|
|
7718
|
-
:concurrency
|
|
7756
|
+
:concurrency,
|
|
7757
|
+
:cross_channel_behavior)
|
|
7719
7758
|
SENSITIVE = []
|
|
7720
7759
|
include Aws::Structure
|
|
7721
7760
|
end
|
data/lib/aws-sdk-connect.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.101.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-04-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|