aws-sdk-connect 1.228.0 → 1.229.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 +14 -1
- data/lib/aws-sdk-connect/client_api.rb +1 -0
- data/lib/aws-sdk-connect/types.rb +5 -0
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +8 -0
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 33cf587e8db93280fd479936f27c61e6c28504acd2916b4eacc8f3751838b184
|
|
4
|
+
data.tar.gz: d0d0d0a315cafd1e90a012a1d89faefd926cbf81ffca3bfec154dcc142a2f4eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2d56a38789668bd9a9b89e842cc923d34c2908034779a7491c4d7e8ea011928b2a8faec9dc78064c0f670198c0c6661ae0d62bdc18924dc58668e1351f8ebe3
|
|
7
|
+
data.tar.gz: 379e2a18d0641b61df029afc39cb9348e5aec305e2b667ca2f27158e608e1430af55e0431cdaeff5283616ee9957f738c8842d208784723df2ed6dc7aad7c51e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.229.0 (2025-12-15)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Connect now supports outbound WhatsApp contacts via the Send message block or StartOutboundChatContact API. Send proactive messages for surveys, reminders, and updates. Offer customers the option to switch to WhatsApp while in queue, eliminating hold time.
|
|
8
|
+
|
|
4
9
|
1.228.0 (2025-12-12)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.229.0
|
|
@@ -21626,6 +21626,9 @@ module Aws::Connect
|
|
|
21626
21626
|
# @option params [Types::ChatMessage] :initial_system_message
|
|
21627
21627
|
# A chat message.
|
|
21628
21628
|
#
|
|
21629
|
+
# @option params [Types::TemplatedMessageConfig] :initial_templated_system_message
|
|
21630
|
+
# Information about template message configuration.
|
|
21631
|
+
#
|
|
21629
21632
|
# @option params [String] :related_contact_id
|
|
21630
21633
|
# The unique identifier for an Amazon Connect contact. This identifier
|
|
21631
21634
|
# is related to the contact starting.
|
|
@@ -21713,6 +21716,16 @@ module Aws::Connect
|
|
|
21713
21716
|
# content_type: "ChatContentType", # required
|
|
21714
21717
|
# content: "ChatContent", # required
|
|
21715
21718
|
# },
|
|
21719
|
+
# initial_templated_system_message: {
|
|
21720
|
+
# knowledge_base_id: "MessageTemplateKnowledgeBaseId", # required
|
|
21721
|
+
# message_template_id: "MessageTemplateId", # required
|
|
21722
|
+
# template_attributes: { # required
|
|
21723
|
+
# custom_attributes: {
|
|
21724
|
+
# "AttributeName" => "AttributeValue",
|
|
21725
|
+
# },
|
|
21726
|
+
# customer_profile_attributes: "CustomerProfileAttributesSerialized",
|
|
21727
|
+
# },
|
|
21728
|
+
# },
|
|
21716
21729
|
# related_contact_id: "ContactId",
|
|
21717
21730
|
# supported_messaging_content_types: ["SupportedMessagingContentType"],
|
|
21718
21731
|
# client_token: "ClientToken",
|
|
@@ -26806,7 +26819,7 @@ module Aws::Connect
|
|
|
26806
26819
|
tracer: tracer
|
|
26807
26820
|
)
|
|
26808
26821
|
context[:gem_name] = 'aws-sdk-connect'
|
|
26809
|
-
context[:gem_version] = '1.
|
|
26822
|
+
context[:gem_version] = '1.229.0'
|
|
26810
26823
|
Seahorse::Client::Request.new(handlers, context)
|
|
26811
26824
|
end
|
|
26812
26825
|
|
|
@@ -7427,6 +7427,7 @@ module Aws::Connect
|
|
|
7427
7427
|
StartOutboundChatContactRequest.add_member(:chat_duration_in_minutes, Shapes::ShapeRef.new(shape: ChatDurationInMinutes, location_name: "ChatDurationInMinutes"))
|
|
7428
7428
|
StartOutboundChatContactRequest.add_member(:participant_details, Shapes::ShapeRef.new(shape: ParticipantDetails, location_name: "ParticipantDetails"))
|
|
7429
7429
|
StartOutboundChatContactRequest.add_member(:initial_system_message, Shapes::ShapeRef.new(shape: ChatMessage, location_name: "InitialSystemMessage"))
|
|
7430
|
+
StartOutboundChatContactRequest.add_member(:initial_templated_system_message, Shapes::ShapeRef.new(shape: TemplatedMessageConfig, location_name: "InitialTemplatedSystemMessage"))
|
|
7430
7431
|
StartOutboundChatContactRequest.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
|
|
7431
7432
|
StartOutboundChatContactRequest.add_member(:supported_messaging_content_types, Shapes::ShapeRef.new(shape: SupportedMessagingContentTypes, location_name: "SupportedMessagingContentTypes"))
|
|
7432
7433
|
StartOutboundChatContactRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
@@ -29483,6 +29483,10 @@ module Aws::Connect
|
|
|
29483
29483
|
# A chat message.
|
|
29484
29484
|
# @return [Types::ChatMessage]
|
|
29485
29485
|
#
|
|
29486
|
+
# @!attribute [rw] initial_templated_system_message
|
|
29487
|
+
# Information about template message configuration.
|
|
29488
|
+
# @return [Types::TemplatedMessageConfig]
|
|
29489
|
+
#
|
|
29486
29490
|
# @!attribute [rw] related_contact_id
|
|
29487
29491
|
# The unique identifier for an Amazon Connect contact. This identifier
|
|
29488
29492
|
# is related to the contact starting.
|
|
@@ -29540,6 +29544,7 @@ module Aws::Connect
|
|
|
29540
29544
|
:chat_duration_in_minutes,
|
|
29541
29545
|
:participant_details,
|
|
29542
29546
|
:initial_system_message,
|
|
29547
|
+
:initial_templated_system_message,
|
|
29543
29548
|
:related_contact_id,
|
|
29544
29549
|
:supported_messaging_content_types,
|
|
29545
29550
|
:client_token)
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -5391,6 +5391,14 @@ module Aws
|
|
|
5391
5391
|
content_type: ::String,
|
|
5392
5392
|
content: ::String
|
|
5393
5393
|
},
|
|
5394
|
+
?initial_templated_system_message: {
|
|
5395
|
+
knowledge_base_id: ::String,
|
|
5396
|
+
message_template_id: ::String,
|
|
5397
|
+
template_attributes: {
|
|
5398
|
+
custom_attributes: Hash[::String, ::String]?,
|
|
5399
|
+
customer_profile_attributes: ::String?
|
|
5400
|
+
}
|
|
5401
|
+
},
|
|
5394
5402
|
?related_contact_id: ::String,
|
|
5395
5403
|
?supported_messaging_content_types: Array[::String],
|
|
5396
5404
|
?client_token: ::String
|
data/sig/types.rbs
CHANGED
|
@@ -6860,6 +6860,7 @@ module Aws::Connect
|
|
|
6860
6860
|
attr_accessor chat_duration_in_minutes: ::Integer
|
|
6861
6861
|
attr_accessor participant_details: Types::ParticipantDetails
|
|
6862
6862
|
attr_accessor initial_system_message: Types::ChatMessage
|
|
6863
|
+
attr_accessor initial_templated_system_message: Types::TemplatedMessageConfig
|
|
6863
6864
|
attr_accessor related_contact_id: ::String
|
|
6864
6865
|
attr_accessor supported_messaging_content_types: ::Array[::String]
|
|
6865
6866
|
attr_accessor client_token: ::String
|