aws-sdk-connect 1.66.0 → 1.67.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee08dd4ef14c5829c48211658009b4029a1bfd26695da65da3346d9be324196f
4
- data.tar.gz: 4d23c2cc4216d472aa5783fcd0c2c46cb9a7fa76acfe365acb267461f4d24006
3
+ metadata.gz: fe5fe6fc3975de22364cd0e1c90e727851634c881bf615bc5430ca5802e84493
4
+ data.tar.gz: 8cf499683773b2e21b03e7ebc3bc829d004f42e739ba4cd2a8ad6b4bd1ee3d32
5
5
  SHA512:
6
- metadata.gz: e2eaf882db27bbbd2a01ba15eece0ad462ff24a552c9ca5e7845cd4abb6ae38babf831f0d0d32fcaf8d753da93139214432cf7362ac2973f606ef3825e33b25b
7
- data.tar.gz: 28316879d6628b2ca4f4bffb3a095eab2f70527ab805614cae29e54c367eb3b5cb9e18a4169fa2b52dadf70995a8f2202dc5445f50c59db1308e31f5b32ef10a
6
+ metadata.gz: f7fde0574c2897e88e9b90b4c4f974f7f8ae2588de567c5f588672897b6a52b7ebe79539a44795ac1930b1631aecffa084944f63fb41a8653f71aa02f2104114
7
+ data.tar.gz: ad171091580af25be6ff687a96bfadaffd0cd8518bb1339d7306121115fa343dd0570b8a2e919fda30d7933b52ccdc442818dddb1faef0d84d452c0821969f98
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2022-03-11)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for enabling Rich Messaging when starting a new chat session via the StartChatContact API. Rich Messaging enables the following formatting options: bold, italics, hyperlinks, bulleted lists, and numbered lists.
8
+
4
9
  1.66.0 (2022-03-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.67.0
@@ -5202,6 +5202,10 @@ module Aws::Connect
5202
5202
  # configurable time is 60 minutes. The maximum configurable time is
5203
5203
  # 10,080 minutes (7 days).
5204
5204
  #
5205
+ # @option params [Array<String>] :supported_messaging_content_types
5206
+ # The supported chat message content types. Content types can be
5207
+ # text/plain or both text/plain and text/markdown.
5208
+ #
5205
5209
  # @return [Types::StartChatContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5206
5210
  #
5207
5211
  # * {Types::StartChatContactResponse#contact_id #contact_id} => String
@@ -5225,6 +5229,7 @@ module Aws::Connect
5225
5229
  # },
5226
5230
  # client_token: "ClientToken",
5227
5231
  # chat_duration_in_minutes: 1,
5232
+ # supported_messaging_content_types: ["SupportedMessagingContentType"],
5228
5233
  # })
5229
5234
  #
5230
5235
  # @example Response structure
@@ -5242,7 +5247,14 @@ module Aws::Connect
5242
5247
  req.send_request(options)
5243
5248
  end
5244
5249
 
5245
- # Starts recording the contact when the agent joins the call.
5250
+ # Starts recording the contact:
5251
+ #
5252
+ # * If the API is called *before* the agent joins the call, recording
5253
+ # starts when the agent joins the call.
5254
+ #
5255
+ # * If the API is called *after* the agent joins the call, recording
5256
+ # starts at the time of the API call.
5257
+ #
5246
5258
  # StartContactRecording is a one-time action. For example, if you use
5247
5259
  # StopContactRecording to stop recording an ongoing call, you can't use
5248
5260
  # StartContactRecording to restart it. For scenarios where the recording
@@ -5567,7 +5579,16 @@ module Aws::Connect
5567
5579
  req.send_request(options)
5568
5580
  end
5569
5581
 
5570
- # Ends the specified contact.
5582
+ # Ends the specified contact. This call does not work for the following
5583
+ # initiation methods:
5584
+ #
5585
+ # * CALLBACK
5586
+ #
5587
+ # * DISCONNECT
5588
+ #
5589
+ # * TRANSFER
5590
+ #
5591
+ # * QUEUE\_TRANSFER
5571
5592
  #
5572
5593
  # @option params [required, String] :contact_id
5573
5594
  # The ID of the contact.
@@ -7054,7 +7075,7 @@ module Aws::Connect
7054
7075
  params: params,
7055
7076
  config: config)
7056
7077
  context[:gem_name] = 'aws-sdk-connect'
7057
- context[:gem_version] = '1.66.0'
7078
+ context[:gem_version] = '1.67.0'
7058
7079
  Seahorse::Client::Request.new(handlers, context)
7059
7080
  end
7060
7081
 
@@ -462,6 +462,8 @@ module Aws::Connect
462
462
  StorageType = Shapes::StringShape.new(name: 'StorageType')
463
463
  StreamingId = Shapes::StringShape.new(name: 'StreamingId')
464
464
  String = Shapes::StringShape.new(name: 'String')
465
+ SupportedMessagingContentType = Shapes::StringShape.new(name: 'SupportedMessagingContentType')
466
+ SupportedMessagingContentTypes = Shapes::ListShape.new(name: 'SupportedMessagingContentTypes')
465
467
  SuspendContactRecordingRequest = Shapes::StructureShape.new(name: 'SuspendContactRecordingRequest')
466
468
  SuspendContactRecordingResponse = Shapes::StructureShape.new(name: 'SuspendContactRecordingResponse')
467
469
  TagKey = Shapes::StringShape.new(name: 'TagKey')
@@ -1864,6 +1866,7 @@ module Aws::Connect
1864
1866
  StartChatContactRequest.add_member(:initial_message, Shapes::ShapeRef.new(shape: ChatMessage, location_name: "InitialMessage"))
1865
1867
  StartChatContactRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
1866
1868
  StartChatContactRequest.add_member(:chat_duration_in_minutes, Shapes::ShapeRef.new(shape: ChatDurationInMinutes, location_name: "ChatDurationInMinutes"))
1869
+ StartChatContactRequest.add_member(:supported_messaging_content_types, Shapes::ShapeRef.new(shape: SupportedMessagingContentTypes, location_name: "SupportedMessagingContentTypes"))
1867
1870
  StartChatContactRequest.struct_class = Types::StartChatContactRequest
1868
1871
 
1869
1872
  StartChatContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
@@ -1937,6 +1940,8 @@ module Aws::Connect
1937
1940
 
1938
1941
  StopContactStreamingResponse.struct_class = Types::StopContactStreamingResponse
1939
1942
 
1943
+ SupportedMessagingContentTypes.member = Shapes::ShapeRef.new(shape: SupportedMessagingContentType)
1944
+
1940
1945
  SuspendContactRecordingRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
1941
1946
  SuspendContactRecordingRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "ContactId"))
1942
1947
  SuspendContactRecordingRequest.add_member(:initial_contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "InitialContactId"))
@@ -549,7 +549,7 @@ module Aws::Connect
549
549
  # }
550
550
  #
551
551
  # @!attribute [rw] content_type
552
- # The type of the content. Supported types are text and plain.
552
+ # The type of the content. Supported types are `text/plain`.
553
553
  # @return [String]
554
554
  #
555
555
  # @!attribute [rw] content
@@ -7527,6 +7527,7 @@ module Aws::Connect
7527
7527
  # },
7528
7528
  # client_token: "ClientToken",
7529
7529
  # chat_duration_in_minutes: 1,
7530
+ # supported_messaging_content_types: ["SupportedMessagingContentType"],
7530
7531
  # }
7531
7532
  #
7532
7533
  # @!attribute [rw] instance_id
@@ -7578,6 +7579,11 @@ module Aws::Connect
7578
7579
  # time is 10,080 minutes (7 days).
7579
7580
  # @return [Integer]
7580
7581
  #
7582
+ # @!attribute [rw] supported_messaging_content_types
7583
+ # The supported chat message content types. Content types can be
7584
+ # text/plain or both text/plain and text/markdown.
7585
+ # @return [Array<String>]
7586
+ #
7581
7587
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactRequest AWS API Documentation
7582
7588
  #
7583
7589
  class StartChatContactRequest < Struct.new(
@@ -7587,7 +7593,8 @@ module Aws::Connect
7587
7593
  :participant_details,
7588
7594
  :initial_message,
7589
7595
  :client_token,
7590
- :chat_duration_in_minutes)
7596
+ :chat_duration_in_minutes,
7597
+ :supported_messaging_content_types)
7591
7598
  SENSITIVE = []
7592
7599
  include Aws::Structure
7593
7600
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-connect/customizations'
48
48
  # @!group service
49
49
  module Aws::Connect
50
50
 
51
- GEM_VERSION = '1.66.0'
51
+ GEM_VERSION = '1.67.0'
52
52
 
53
53
  end
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.66.0
4
+ version: 1.67.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: 2022-03-04 00:00:00.000000000 Z
11
+ date: 2022-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core