aws-sdk-connect 1.93.0 → 1.95.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +17 -1
- data/lib/aws-sdk-connect/client_api.rb +9 -0
- data/lib/aws-sdk-connect/endpoint_provider.rb +3 -0
- data/lib/aws-sdk-connect/types.rb +69 -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: 4fa699ce6ebe3964d2fa3cf3c84c73294d78a7c43c1d81f0f555fb8fb2c7657e
|
4
|
+
data.tar.gz: 77b8506f12db26a3a31ac0cb436ec37c9d7829794b54bdfe70ab191993b8084e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0db89fbe27aa041edb734635c762b94c0151472036b3655de89ca4fca6dd583421d8471ae7a710c93aceca6cb083bd043038b634fd1c89687e04dc86a481665
|
7
|
+
data.tar.gz: a7ea0e6cc4e4d94eab35cc6650c6ebaaa07202f987e35acaab1d729b3b69feb563d22bbb46b97b4a8c7293b3c1ae83e503ecc7d085f5a42a563ee27e73eb4166
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.95.0 (2023-02-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Enabled FIPS endpoints for GovCloud (US) regions in SDK.
|
8
|
+
|
9
|
+
1.94.0 (2023-01-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon Connect Chat introduces Persistent Chat, allowing customers to resume previous conversations with context and transcripts carried over from previous chats, eliminating the need to repeat themselves and allowing agents to provide personalized service with access to entire conversation history.
|
13
|
+
|
4
14
|
1.93.0 (2023-01-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.95.0
|
@@ -2640,6 +2640,7 @@ module Aws::Connect
|
|
2640
2640
|
# resp.contact.disconnect_timestamp #=> Time
|
2641
2641
|
# resp.contact.last_update_timestamp #=> Time
|
2642
2642
|
# resp.contact.scheduled_timestamp #=> Time
|
2643
|
+
# resp.contact.related_contact_id #=> String
|
2643
2644
|
#
|
2644
2645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContact AWS API Documentation
|
2645
2646
|
#
|
@@ -7345,11 +7346,21 @@ module Aws::Connect
|
|
7345
7346
|
# application/json]`, `[text/markdown, text/plain]`, `[text/plain,
|
7346
7347
|
# application/json]`.
|
7347
7348
|
#
|
7349
|
+
# @option params [Types::PersistentChat] :persistent_chat
|
7350
|
+
# Enable persistent chats. For more information about enabling
|
7351
|
+
# persistent chat, and for example use cases and how to configure for
|
7352
|
+
# them, see [Enable persistent chat][1].
|
7353
|
+
#
|
7354
|
+
#
|
7355
|
+
#
|
7356
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html
|
7357
|
+
#
|
7348
7358
|
# @return [Types::StartChatContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7349
7359
|
#
|
7350
7360
|
# * {Types::StartChatContactResponse#contact_id #contact_id} => String
|
7351
7361
|
# * {Types::StartChatContactResponse#participant_id #participant_id} => String
|
7352
7362
|
# * {Types::StartChatContactResponse#participant_token #participant_token} => String
|
7363
|
+
# * {Types::StartChatContactResponse#continued_from_contact_id #continued_from_contact_id} => String
|
7353
7364
|
#
|
7354
7365
|
# @example Request syntax with placeholder values
|
7355
7366
|
#
|
@@ -7369,6 +7380,10 @@ module Aws::Connect
|
|
7369
7380
|
# client_token: "ClientToken",
|
7370
7381
|
# chat_duration_in_minutes: 1,
|
7371
7382
|
# supported_messaging_content_types: ["SupportedMessagingContentType"],
|
7383
|
+
# persistent_chat: {
|
7384
|
+
# rehydration_type: "ENTIRE_PAST_SESSION", # accepts ENTIRE_PAST_SESSION, FROM_SEGMENT
|
7385
|
+
# source_contact_id: "ContactId",
|
7386
|
+
# },
|
7372
7387
|
# })
|
7373
7388
|
#
|
7374
7389
|
# @example Response structure
|
@@ -7376,6 +7391,7 @@ module Aws::Connect
|
|
7376
7391
|
# resp.contact_id #=> String
|
7377
7392
|
# resp.participant_id #=> String
|
7378
7393
|
# resp.participant_token #=> String
|
7394
|
+
# resp.continued_from_contact_id #=> String
|
7379
7395
|
#
|
7380
7396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContact AWS API Documentation
|
7381
7397
|
#
|
@@ -9740,7 +9756,7 @@ module Aws::Connect
|
|
9740
9756
|
params: params,
|
9741
9757
|
config: config)
|
9742
9758
|
context[:gem_name] = 'aws-sdk-connect'
|
9743
|
-
context[:gem_version] = '1.
|
9759
|
+
context[:gem_version] = '1.95.0'
|
9744
9760
|
Seahorse::Client::Request.new(handlers, context)
|
9745
9761
|
end
|
9746
9762
|
|
@@ -457,6 +457,7 @@ module Aws::Connect
|
|
457
457
|
Password = Shapes::StringShape.new(name: 'Password')
|
458
458
|
Percentage = Shapes::IntegerShape.new(name: 'Percentage')
|
459
459
|
PermissionsList = Shapes::ListShape.new(name: 'PermissionsList')
|
460
|
+
PersistentChat = Shapes::StructureShape.new(name: 'PersistentChat')
|
460
461
|
PhoneNumber = Shapes::StringShape.new(name: 'PhoneNumber')
|
461
462
|
PhoneNumberCountryCode = Shapes::StringShape.new(name: 'PhoneNumberCountryCode')
|
462
463
|
PhoneNumberCountryCodes = Shapes::ListShape.new(name: 'PhoneNumberCountryCodes')
|
@@ -525,6 +526,7 @@ module Aws::Connect
|
|
525
526
|
ReferenceType = Shapes::StringShape.new(name: 'ReferenceType')
|
526
527
|
ReferenceTypes = Shapes::ListShape.new(name: 'ReferenceTypes')
|
527
528
|
ReferenceValue = Shapes::StringShape.new(name: 'ReferenceValue')
|
529
|
+
RehydrationType = Shapes::StringShape.new(name: 'RehydrationType')
|
528
530
|
ReleasePhoneNumberRequest = Shapes::StructureShape.new(name: 'ReleasePhoneNumberRequest')
|
529
531
|
ReplicateInstanceRequest = Shapes::StructureShape.new(name: 'ReplicateInstanceRequest')
|
530
532
|
ReplicateInstanceResponse = Shapes::StructureShape.new(name: 'ReplicateInstanceResponse')
|
@@ -966,6 +968,7 @@ module Aws::Connect
|
|
966
968
|
Contact.add_member(:disconnect_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "DisconnectTimestamp"))
|
967
969
|
Contact.add_member(:last_update_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "LastUpdateTimestamp"))
|
968
970
|
Contact.add_member(:scheduled_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "ScheduledTimestamp"))
|
971
|
+
Contact.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
|
969
972
|
Contact.struct_class = Types::Contact
|
970
973
|
|
971
974
|
ContactFilter.add_member(:contact_states, Shapes::ShapeRef.new(shape: ContactStates, location_name: "ContactStates"))
|
@@ -2227,6 +2230,10 @@ module Aws::Connect
|
|
2227
2230
|
|
2228
2231
|
PermissionsList.member = Shapes::ShapeRef.new(shape: SecurityProfilePermission)
|
2229
2232
|
|
2233
|
+
PersistentChat.add_member(:rehydration_type, Shapes::ShapeRef.new(shape: RehydrationType, location_name: "RehydrationType"))
|
2234
|
+
PersistentChat.add_member(:source_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "SourceContactId"))
|
2235
|
+
PersistentChat.struct_class = Types::PersistentChat
|
2236
|
+
|
2230
2237
|
PhoneNumberCountryCodes.member = Shapes::ShapeRef.new(shape: PhoneNumberCountryCode)
|
2231
2238
|
|
2232
2239
|
PhoneNumberQuickConnectConfig.add_member(:phone_number, Shapes::ShapeRef.new(shape: PhoneNumber, required: true, location_name: "PhoneNumber"))
|
@@ -2661,11 +2668,13 @@ module Aws::Connect
|
|
2661
2668
|
StartChatContactRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
2662
2669
|
StartChatContactRequest.add_member(:chat_duration_in_minutes, Shapes::ShapeRef.new(shape: ChatDurationInMinutes, location_name: "ChatDurationInMinutes"))
|
2663
2670
|
StartChatContactRequest.add_member(:supported_messaging_content_types, Shapes::ShapeRef.new(shape: SupportedMessagingContentTypes, location_name: "SupportedMessagingContentTypes"))
|
2671
|
+
StartChatContactRequest.add_member(:persistent_chat, Shapes::ShapeRef.new(shape: PersistentChat, location_name: "PersistentChat"))
|
2664
2672
|
StartChatContactRequest.struct_class = Types::StartChatContactRequest
|
2665
2673
|
|
2666
2674
|
StartChatContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
2667
2675
|
StartChatContactResponse.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantId, location_name: "ParticipantId"))
|
2668
2676
|
StartChatContactResponse.add_member(:participant_token, Shapes::ShapeRef.new(shape: ParticipantToken, location_name: "ParticipantToken"))
|
2677
|
+
StartChatContactResponse.add_member(:continued_from_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContinuedFromContactId"))
|
2669
2678
|
StartChatContactResponse.struct_class = Types::StartChatContactResponse
|
2670
2679
|
|
2671
2680
|
StartContactRecordingRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
@@ -32,6 +32,9 @@ module Aws::Connect
|
|
32
32
|
end
|
33
33
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://connect.#{region}.amazonaws.com", headers: {}, properties: {})
|
37
|
+
end
|
35
38
|
return Aws::Endpoints::Endpoint.new(url: "https://connect-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
39
|
end
|
37
40
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -845,6 +845,14 @@ module Aws::Connect
|
|
845
845
|
# the inbound flow.
|
846
846
|
# @return [Time]
|
847
847
|
#
|
848
|
+
# @!attribute [rw] related_contact_id
|
849
|
+
# The contactId that is [related][1] to this contact.
|
850
|
+
#
|
851
|
+
#
|
852
|
+
#
|
853
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html#relatedcontactid
|
854
|
+
# @return [String]
|
855
|
+
#
|
848
856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Contact AWS API Documentation
|
849
857
|
#
|
850
858
|
class Contact < Struct.new(
|
@@ -861,7 +869,8 @@ module Aws::Connect
|
|
861
869
|
:initiation_timestamp,
|
862
870
|
:disconnect_timestamp,
|
863
871
|
:last_update_timestamp,
|
864
|
-
:scheduled_timestamp
|
872
|
+
:scheduled_timestamp,
|
873
|
+
:related_contact_id)
|
865
874
|
SENSITIVE = []
|
866
875
|
include Aws::Structure
|
867
876
|
end
|
@@ -7149,6 +7158,46 @@ module Aws::Connect
|
|
7149
7158
|
class Unknown < ParticipantTimerValue; end
|
7150
7159
|
end
|
7151
7160
|
|
7161
|
+
# Enable persistent chats. For more information about enabling
|
7162
|
+
# persistent chat, and for example use cases and how to configure for
|
7163
|
+
# them, see [Enable persistent chat][1].
|
7164
|
+
#
|
7165
|
+
#
|
7166
|
+
#
|
7167
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html
|
7168
|
+
#
|
7169
|
+
# @!attribute [rw] rehydration_type
|
7170
|
+
# The contactId that is used for rehydration depends on the
|
7171
|
+
# rehydration type. RehydrationType is required for persistent chat.
|
7172
|
+
#
|
7173
|
+
# * `ENTIRE_PAST_SESSION`\: Rehydrates a chat from the most recently
|
7174
|
+
# terminated past chat contact of the specified past ended chat
|
7175
|
+
# session. To use this type, provide the `initialContactId` of the
|
7176
|
+
# past ended chat session in the `sourceContactId` field. In this
|
7177
|
+
# type, Amazon Connect determines the most recent chat contact on
|
7178
|
+
# the specified chat session that has ended, and uses it to start a
|
7179
|
+
# persistent chat.
|
7180
|
+
#
|
7181
|
+
# * `FROM_SEGMENT`\: Rehydrates a chat from the past chat contact that
|
7182
|
+
# is specified in the `sourceContactId` field.
|
7183
|
+
#
|
7184
|
+
# The actual contactId used for rehydration is provided in the
|
7185
|
+
# response of this API.
|
7186
|
+
# @return [String]
|
7187
|
+
#
|
7188
|
+
# @!attribute [rw] source_contact_id
|
7189
|
+
# The contactId from which a persistent chat session must be started.
|
7190
|
+
# @return [String]
|
7191
|
+
#
|
7192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PersistentChat AWS API Documentation
|
7193
|
+
#
|
7194
|
+
class PersistentChat < Struct.new(
|
7195
|
+
:rehydration_type,
|
7196
|
+
:source_contact_id)
|
7197
|
+
SENSITIVE = []
|
7198
|
+
include Aws::Structure
|
7199
|
+
end
|
7200
|
+
|
7152
7201
|
# Contains information about a phone number for a quick connect.
|
7153
7202
|
#
|
7154
7203
|
# @!attribute [rw] phone_number
|
@@ -9141,6 +9190,16 @@ module Aws::Connect
|
|
9141
9190
|
# application/json]`.
|
9142
9191
|
# @return [Array<String>]
|
9143
9192
|
#
|
9193
|
+
# @!attribute [rw] persistent_chat
|
9194
|
+
# Enable persistent chats. For more information about enabling
|
9195
|
+
# persistent chat, and for example use cases and how to configure for
|
9196
|
+
# them, see [Enable persistent chat][1].
|
9197
|
+
#
|
9198
|
+
#
|
9199
|
+
#
|
9200
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html
|
9201
|
+
# @return [Types::PersistentChat]
|
9202
|
+
#
|
9144
9203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactRequest AWS API Documentation
|
9145
9204
|
#
|
9146
9205
|
class StartChatContactRequest < Struct.new(
|
@@ -9151,7 +9210,8 @@ module Aws::Connect
|
|
9151
9210
|
:initial_message,
|
9152
9211
|
:client_token,
|
9153
9212
|
:chat_duration_in_minutes,
|
9154
|
-
:supported_messaging_content_types
|
9213
|
+
:supported_messaging_content_types,
|
9214
|
+
:persistent_chat)
|
9155
9215
|
SENSITIVE = []
|
9156
9216
|
include Aws::Structure
|
9157
9217
|
end
|
@@ -9175,12 +9235,18 @@ module Aws::Connect
|
|
9175
9235
|
# [1]: https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html
|
9176
9236
|
# @return [String]
|
9177
9237
|
#
|
9238
|
+
# @!attribute [rw] continued_from_contact_id
|
9239
|
+
# The contactId from which a persistent chat session is started. This
|
9240
|
+
# field is populated only for persistent chats.
|
9241
|
+
# @return [String]
|
9242
|
+
#
|
9178
9243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactResponse AWS API Documentation
|
9179
9244
|
#
|
9180
9245
|
class StartChatContactResponse < Struct.new(
|
9181
9246
|
:contact_id,
|
9182
9247
|
:participant_id,
|
9183
|
-
:participant_token
|
9248
|
+
:participant_token,
|
9249
|
+
:continued_from_contact_id)
|
9184
9250
|
SENSITIVE = []
|
9185
9251
|
include Aws::Structure
|
9186
9252
|
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.95.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-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|