aws-sdk-connect 1.62.0 → 1.65.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8deb48c1fd05f6633fc2af044fd51bb6cdeb7e733a03d8da8c3c5400aa2247d
4
- data.tar.gz: 2d9e195593891334168f568bcf0da136b30b817250b3fb41455b773cad5081a6
3
+ metadata.gz: 2f9c9d264e10e758700610dce316e5485b0a25108937fd81edc2740c51ceeae0
4
+ data.tar.gz: d0e9f82a3af088060a4e020ea171ffbc49d134083a7defab9d0c611171cd2d5f
5
5
  SHA512:
6
- metadata.gz: 5bbabe59990cebe8aee0cfb8ff2ac49c0401f04e30c275e0e3fcdee931f576a3b337c714292dfabf0231977596ded25596f2e3071eb22d37da7f5398dce77587
7
- data.tar.gz: c00653f806453b566725372706162c43bff656ed1bccb4a99602260db010516767e270dae9a34cfb67c6209f394f8b45b0fa19434d4aa0705df5cb42dd47b76b
6
+ metadata.gz: 6d2a90b96c50f20ec1e8d127403b2b3f668cd83401ee4fb8eb708feed87c5567642948b062722d41dbaab3008b238fa5e8d059217a04c2e3105287bbded7de81
7
+ data.tar.gz: c823d303501aaad2b78ee58593649351141b58195a32b3c3aa6e0d8ce923d47799ee282c2b6e1cda9ce5e87b2d33f7c83dbf925942bf7e4266f9688432e822e7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.64.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.63.0 (2022-01-27)
15
+ ------------------
16
+
17
+ * Feature - This release adds support for configuring a custom chat duration when starting a new chat session via the StartChatContact API. The default value for chat duration is 25 hours, minimum configurable value is 1 hour (60 minutes) and maximum configurable value is 7 days (10,080 minutes).
18
+
4
19
  1.62.0 (2022-01-25)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.65.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::Connect
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -5134,7 +5138,7 @@ module Aws::Connect
5134
5138
  # [CreateParticipantConnection][1] with WEBSOCKET and
5135
5139
  # CONNECTION\_CREDENTIALS.
5136
5140
  #
5137
- # A 429 error occurs in two situations:
5141
+ # A 429 error occurs in the following situations:
5138
5142
  #
5139
5143
  # * API rate limit is exceeded. API TPS throttling returns a
5140
5144
  # `TooManyRequests` exception.
@@ -5142,6 +5146,11 @@ module Aws::Connect
5142
5146
  # * The [quota for concurrent active chats][2] is exceeded. Active chat
5143
5147
  # throttling returns a `LimitExceededException`.
5144
5148
  #
5149
+ # If you use the `ChatDurationInMinutes` parameter and receive a 400
5150
+ # error, your account may not support the ability to configure custom
5151
+ # chat durations. For more information, contact Amazon Web Services
5152
+ # Support.
5153
+ #
5145
5154
  # For more information about chat, see [Chat][3] in the *Amazon Connect
5146
5155
  # Administrator Guide*.
5147
5156
  #
@@ -5187,6 +5196,12 @@ module Aws::Connect
5187
5196
  # **A suitable default value is auto-generated.** You should normally
5188
5197
  # not need to pass this option.**
5189
5198
  #
5199
+ # @option params [Integer] :chat_duration_in_minutes
5200
+ # The total duration of the newly started chat session. If not
5201
+ # specified, the chat session duration defaults to 25 hour. The minumum
5202
+ # configurable time is 60 minutes. The maximum configurable time is
5203
+ # 10,080 minutes (7 days).
5204
+ #
5190
5205
  # @return [Types::StartChatContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5191
5206
  #
5192
5207
  # * {Types::StartChatContactResponse#contact_id #contact_id} => String
@@ -5209,6 +5224,7 @@ module Aws::Connect
5209
5224
  # content: "ChatContent", # required
5210
5225
  # },
5211
5226
  # client_token: "ClientToken",
5227
+ # chat_duration_in_minutes: 1,
5212
5228
  # })
5213
5229
  #
5214
5230
  # @example Response structure
@@ -5985,7 +6001,7 @@ module Aws::Connect
5985
6001
  # The identifier of the contact flow.
5986
6002
  #
5987
6003
  # @option params [String] :name
5988
- # The name of the contact flow.
6004
+ # TThe name of the contact flow.
5989
6005
  #
5990
6006
  # @option params [String] :description
5991
6007
  # The description of the contact flow.
@@ -7038,7 +7054,7 @@ module Aws::Connect
7038
7054
  params: params,
7039
7055
  config: config)
7040
7056
  context[:gem_name] = 'aws-sdk-connect'
7041
- context[:gem_version] = '1.62.0'
7057
+ context[:gem_version] = '1.65.0'
7042
7058
  Seahorse::Client::Request.new(handlers, context)
7043
7059
  end
7044
7060
 
@@ -61,6 +61,7 @@ module Aws::Connect
61
61
  Channels = Shapes::ListShape.new(name: 'Channels')
62
62
  ChatContent = Shapes::StringShape.new(name: 'ChatContent')
63
63
  ChatContentType = Shapes::StringShape.new(name: 'ChatContentType')
64
+ ChatDurationInMinutes = Shapes::IntegerShape.new(name: 'ChatDurationInMinutes')
64
65
  ChatMessage = Shapes::StructureShape.new(name: 'ChatMessage')
65
66
  ChatStreamingConfiguration = Shapes::StructureShape.new(name: 'ChatStreamingConfiguration')
66
67
  ChatStreamingEndpointARN = Shapes::StringShape.new(name: 'ChatStreamingEndpointARN')
@@ -1862,6 +1863,7 @@ module Aws::Connect
1862
1863
  StartChatContactRequest.add_member(:participant_details, Shapes::ShapeRef.new(shape: ParticipantDetails, required: true, location_name: "ParticipantDetails"))
1863
1864
  StartChatContactRequest.add_member(:initial_message, Shapes::ShapeRef.new(shape: ChatMessage, location_name: "InitialMessage"))
1864
1865
  StartChatContactRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
1866
+ StartChatContactRequest.add_member(:chat_duration_in_minutes, Shapes::ShapeRef.new(shape: ChatDurationInMinutes, location_name: "ChatDurationInMinutes"))
1865
1867
  StartChatContactRequest.struct_class = Types::StartChatContactRequest
1866
1868
 
1867
1869
  StartChatContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
@@ -7526,6 +7526,7 @@ module Aws::Connect
7526
7526
  # content: "ChatContent", # required
7527
7527
  # },
7528
7528
  # client_token: "ClientToken",
7529
+ # chat_duration_in_minutes: 1,
7529
7530
  # }
7530
7531
  #
7531
7532
  # @!attribute [rw] instance_id
@@ -7570,6 +7571,13 @@ module Aws::Connect
7570
7571
  # not need to pass this option.
7571
7572
  # @return [String]
7572
7573
  #
7574
+ # @!attribute [rw] chat_duration_in_minutes
7575
+ # The total duration of the newly started chat session. If not
7576
+ # specified, the chat session duration defaults to 25 hour. The
7577
+ # minumum configurable time is 60 minutes. The maximum configurable
7578
+ # time is 10,080 minutes (7 days).
7579
+ # @return [Integer]
7580
+ #
7573
7581
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactRequest AWS API Documentation
7574
7582
  #
7575
7583
  class StartChatContactRequest < Struct.new(
@@ -7578,7 +7586,8 @@ module Aws::Connect
7578
7586
  :attributes,
7579
7587
  :participant_details,
7580
7588
  :initial_message,
7581
- :client_token)
7589
+ :client_token,
7590
+ :chat_duration_in_minutes)
7582
7591
  SENSITIVE = []
7583
7592
  include Aws::Structure
7584
7593
  end
@@ -8338,7 +8347,7 @@ module Aws::Connect
8338
8347
  # @return [String]
8339
8348
  #
8340
8349
  # @!attribute [rw] name
8341
- # The name of the contact flow.
8350
+ # TThe name of the contact flow.
8342
8351
  # @return [String]
8343
8352
  #
8344
8353
  # @!attribute [rw] description
@@ -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.62.0'
51
+ GEM_VERSION = '1.65.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.62.0
4
+ version: 1.65.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-01-25 00:00:00.000000000 Z
11
+ date: 2022-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement