aws-sdk-connect 1.198.0 → 1.199.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 +26 -10
- data/lib/aws-sdk-connect/client_api.rb +1 -0
- data/lib/aws-sdk-connect/types.rb +25 -5
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- 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: 95b8b0bac800d69b47c47b5ad1d0aa3bda12d0ab2facfc8d6c51082090230089
|
4
|
+
data.tar.gz: 59daaa2c4c68b710e6129d19b953c3388bca3b4fa767b4b3d573464b3dab088e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 240c630b35f406fda1f27f0518ad07f2072a7b2a376181ca1fd4c6146a1edae7b55a1b268315af488767bbb56d72399c57aefcaae1a9da2d1443efd18450f49c
|
7
|
+
data.tar.gz: 603467496379b16d37d223fa209166b107ec21535eb50ac683a52b4ecbd732aa65893e14fc5f22806b53b117f836415c859c169a7befaed78cc06d7834fea8de
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.199.0
|
@@ -1797,7 +1797,8 @@ module Aws::Connect
|
|
1797
1797
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
1798
1798
|
#
|
1799
1799
|
# @option params [String] :related_contact_id
|
1800
|
-
# The identifier
|
1800
|
+
# The unique identifier for an Amazon Connect contact. This identifier
|
1801
|
+
# is related to the contact starting.
|
1801
1802
|
#
|
1802
1803
|
# @option params [Hash<String,String>] :attributes
|
1803
1804
|
# A custom key-value pair using an attribute map. The attributes are
|
@@ -1860,6 +1861,16 @@ module Aws::Connect
|
|
1860
1861
|
#
|
1861
1862
|
# </note>
|
1862
1863
|
#
|
1864
|
+
# @option params [String] :previous_contact_id
|
1865
|
+
# The ID of the previous contact when creating a transfer contact. This
|
1866
|
+
# value can be provided only for external audio contacts. For more
|
1867
|
+
# information, see [Integrate Amazon Connect Contact Lens with external
|
1868
|
+
# voice systems][1] in the *Amazon Connect Administrator Guide*.
|
1869
|
+
#
|
1870
|
+
#
|
1871
|
+
#
|
1872
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
1873
|
+
#
|
1863
1874
|
# @return [Types::CreateContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1864
1875
|
#
|
1865
1876
|
# * {Types::CreateContactResponse#contact_id #contact_id} => String
|
@@ -1903,6 +1914,7 @@ module Aws::Connect
|
|
1903
1914
|
# value_integer: 1,
|
1904
1915
|
# },
|
1905
1916
|
# },
|
1917
|
+
# previous_contact_id: "ContactId",
|
1906
1918
|
# })
|
1907
1919
|
#
|
1908
1920
|
# @example Response structure
|
@@ -12247,7 +12259,11 @@ module Aws::Connect
|
|
12247
12259
|
req.send_request(options)
|
12248
12260
|
end
|
12249
12261
|
|
12250
|
-
# Provides a list of analysis segments for a real-time analysis
|
12262
|
+
# Provides a list of analysis segments for a real-time chat analysis
|
12263
|
+
# session. This API supports CHAT channels only.
|
12264
|
+
#
|
12265
|
+
# This API does not support VOICE. If you attempt to use it for VOICE,
|
12266
|
+
# an `InvalidRequestException` occurs.
|
12251
12267
|
#
|
12252
12268
|
# @option params [required, String] :instance_id
|
12253
12269
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -17761,16 +17777,16 @@ module Aws::Connect
|
|
17761
17777
|
req.send_request(options)
|
17762
17778
|
end
|
17763
17779
|
|
17764
|
-
# Transfers contacts from one agent or queue to
|
17765
|
-
# at any point after a contact is created. You
|
17766
|
-
# another queue by providing the flow which
|
17767
|
-
# the destination queue. This gives you more
|
17768
|
-
# handling and helps you adhere to the service
|
17769
|
-
# guaranteed to your customers.
|
17780
|
+
# Transfers `TASK` or `EMAIL` contacts from one agent or queue to
|
17781
|
+
# another agent or queue at any point after a contact is created. You
|
17782
|
+
# can transfer a contact to another queue by providing the flow which
|
17783
|
+
# orchestrates the contact to the destination queue. This gives you more
|
17784
|
+
# control over contact handling and helps you adhere to the service
|
17785
|
+
# level agreement (SLA) guaranteed to your customers.
|
17770
17786
|
#
|
17771
17787
|
# Note the following requirements:
|
17772
17788
|
#
|
17773
|
-
# * Transfer is supported for only `TASK` contacts.
|
17789
|
+
# * Transfer is supported for only `TASK` and `EMAIL` contacts.
|
17774
17790
|
#
|
17775
17791
|
# * Do not use both `QueueId` and `UserId` in the same call.
|
17776
17792
|
#
|
@@ -21000,7 +21016,7 @@ module Aws::Connect
|
|
21000
21016
|
tracer: tracer
|
21001
21017
|
)
|
21002
21018
|
context[:gem_name] = 'aws-sdk-connect'
|
21003
|
-
context[:gem_version] = '1.
|
21019
|
+
context[:gem_version] = '1.199.0'
|
21004
21020
|
Seahorse::Client::Request.new(handlers, context)
|
21005
21021
|
end
|
21006
21022
|
|
@@ -2262,6 +2262,7 @@ module Aws::Connect
|
|
2262
2262
|
CreateContactRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
2263
2263
|
CreateContactRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
2264
2264
|
CreateContactRequest.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: SegmentAttributes, location_name: "SegmentAttributes"))
|
2265
|
+
CreateContactRequest.add_member(:previous_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "PreviousContactId"))
|
2265
2266
|
CreateContactRequest.struct_class = Types::CreateContactRequest
|
2266
2267
|
|
2267
2268
|
CreateContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
@@ -2461,8 +2461,10 @@ module Aws::Connect
|
|
2461
2461
|
# @return [Time]
|
2462
2462
|
#
|
2463
2463
|
# @!attribute [rw] disconnect_timestamp
|
2464
|
-
# The
|
2465
|
-
#
|
2464
|
+
# The date and time that the customer endpoint disconnected from the
|
2465
|
+
# current contact, in UTC time. In transfer scenarios, the
|
2466
|
+
# DisconnectTimestamp of the previous contact indicates the date and
|
2467
|
+
# time when that contact ended.
|
2466
2468
|
# @return [Time]
|
2467
2469
|
#
|
2468
2470
|
# @!attribute [rw] last_update_timestamp
|
@@ -3722,7 +3724,8 @@ module Aws::Connect
|
|
3722
3724
|
# @return [String]
|
3723
3725
|
#
|
3724
3726
|
# @!attribute [rw] related_contact_id
|
3725
|
-
# The identifier
|
3727
|
+
# The unique identifier for an Amazon Connect contact. This identifier
|
3728
|
+
# is related to the contact starting.
|
3726
3729
|
# @return [String]
|
3727
3730
|
#
|
3728
3731
|
# @!attribute [rw] attributes
|
@@ -3799,6 +3802,18 @@ module Aws::Connect
|
|
3799
3802
|
# </note>
|
3800
3803
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
3801
3804
|
#
|
3805
|
+
# @!attribute [rw] previous_contact_id
|
3806
|
+
# The ID of the previous contact when creating a transfer contact.
|
3807
|
+
# This value can be provided only for external audio contacts. For
|
3808
|
+
# more information, see [Integrate Amazon Connect Contact Lens with
|
3809
|
+
# external voice systems][1] in the *Amazon Connect Administrator
|
3810
|
+
# Guide*.
|
3811
|
+
#
|
3812
|
+
#
|
3813
|
+
#
|
3814
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-integration.html
|
3815
|
+
# @return [String]
|
3816
|
+
#
|
3802
3817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactRequest AWS API Documentation
|
3803
3818
|
#
|
3804
3819
|
class CreateContactRequest < Struct.new(
|
@@ -3814,7 +3829,8 @@ module Aws::Connect
|
|
3814
3829
|
:initiate_as,
|
3815
3830
|
:name,
|
3816
3831
|
:description,
|
3817
|
-
:segment_attributes
|
3832
|
+
:segment_attributes,
|
3833
|
+
:previous_contact_id)
|
3818
3834
|
SENSITIVE = [:name, :description]
|
3819
3835
|
include Aws::Structure
|
3820
3836
|
end
|
@@ -15409,7 +15425,11 @@ module Aws::Connect
|
|
15409
15425
|
end
|
15410
15426
|
|
15411
15427
|
# @!attribute [rw] channel
|
15412
|
-
# The channel of the contact.
|
15428
|
+
# The channel of the contact.
|
15429
|
+
#
|
15430
|
+
# Only `CHAT` is supported. This API does not support `VOICE`. If you
|
15431
|
+
# attempt to use it for the VOICE channel, an
|
15432
|
+
# `InvalidRequestException` error occurs.
|
15413
15433
|
# @return [String]
|
15414
15434
|
#
|
15415
15435
|
# @!attribute [rw] status
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -433,7 +433,8 @@ module Aws
|
|
433
433
|
value_string: ::String?,
|
434
434
|
value_map: Hash[::String, untyped]?,
|
435
435
|
value_integer: ::Integer?
|
436
|
-
}]
|
436
|
+
}],
|
437
|
+
?previous_contact_id: ::String
|
437
438
|
) -> _CreateContactResponseSuccess
|
438
439
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactResponseSuccess
|
439
440
|
|
data/sig/types.rbs
CHANGED
@@ -873,6 +873,7 @@ module Aws::Connect
|
|
873
873
|
attr_accessor name: ::String
|
874
874
|
attr_accessor description: ::String
|
875
875
|
attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
|
876
|
+
attr_accessor previous_contact_id: ::String
|
876
877
|
SENSITIVE: [:name, :description]
|
877
878
|
end
|
878
879
|
|
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.199.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: 2025-
|
11
|
+
date: 2025-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|