aws-sdk-connectparticipant 1.13.0 → 1.17.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: a76ec8e00103a1ba20eb4c65d764c285f5cea1a238a180d55d5b6f1cf21188d7
4
- data.tar.gz: 838615f5ad82805cc46c66bd7727d596fae47f00ba93bc37761d2a268bc616e8
3
+ metadata.gz: a98dab386eef0189e11be1141b487d04123b897992cfa11e07cb2b48fe502362
4
+ data.tar.gz: b0e154a58151a940ff3b6d87d6858930bf3083ca11ff7c822d9efea0630283a5
5
5
  SHA512:
6
- metadata.gz: bb8199afda1d04f99a056834ddb8879a739416e5e17a0c6229d68e067b36d94f8c9f3ad1695d9e3b3346607c5ea8acce35c2774c941a0c097a8490be4e26f643
7
- data.tar.gz: f47b322b71dcc43f20c1ec4b9ec8fbe985cb04169ea18cd9c15517bbb1ab949d067772698739dde9364d5423511acde688e339fd4ca9006a51afef24f9f66eee
6
+ metadata.gz: cfcb2a67f99a354cba89c75301cee93247597e2fbf33fdf61b643032ba428b078ff93a89fcc79a3aa199c757c71736333b3600668dce21a225777bee3070f517
7
+ data.tar.gz: 8f94bf517d2d63bc6444ac47ee89a2c9466b3bf031dcb5a10abc7243ccd2b40795c1dd4b0698ef7f555373e90c3b3c8d89f154e8cb19e171b8e652e3d6a67950
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.17.0 (2021-11-03)
5
+ ------------------
6
+
7
+ * Feature - This release adds a new boolean attribute - Connect Participant - to the CreateParticipantConnection API, which can be used to mark the participant as connected.
8
+
9
+ 1.16.0 (2021-10-28)
10
+ ------------------
11
+
12
+ * Feature - This release adds a new boolean attribute - Connect Participant - to the CreateParticipantConnection API, which can be used to mark the participant as connected.
13
+
14
+ 1.15.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.14.0 (2021-09-01)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.13.0 (2021-07-30)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.17.0
@@ -330,6 +330,13 @@ module Aws::ConnectParticipant
330
330
  # Allows you to confirm that the attachment has been uploaded using the
331
331
  # pre-signed URL provided in StartAttachmentUpload API.
332
332
  #
333
+ # The Amazon Connect Participant Service APIs do not use [Signature
334
+ # Version 4 authentication][1].
335
+ #
336
+ #
337
+ #
338
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
339
+ #
333
340
  # @option params [required, Array<String>] :attachment_ids
334
341
  # A list of unique identifiers for the attachments.
335
342
  #
@@ -382,14 +389,28 @@ module Aws::ConnectParticipant
382
389
  # ConnectionExpiry parameter, clients need to call this API again to
383
390
  # obtain a new websocket URL and perform the same steps as before.
384
391
  #
392
+ # **Message streaming support**\: This API can also be used together
393
+ # with the [StartContactStreaming][1] API to create a participant
394
+ # connection for chat contacts that are not using a websocket. For more
395
+ # information about message streaming, [Enable real-time chat message
396
+ # streaming][2] in the *Amazon Connect Administrator Guide*.
397
+ #
398
+ # **Feature specifications**\: For information about feature
399
+ # specifications, such as the allowed number of open websocket
400
+ # connections per participant, see [Feature specifications][3] in the
401
+ # *Amazon Connect Administrator Guide*.
402
+ #
385
403
  # <note markdown="1"> The Amazon Connect Participant Service APIs do not use [Signature
386
- # Version 4 authentication][1].
404
+ # Version 4 authentication][4].
387
405
  #
388
406
  # </note>
389
407
  #
390
408
  #
391
409
  #
392
- # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
410
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartContactStreaming.html
411
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-message-streaming.html
412
+ # [3]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#feature-limits
413
+ # [4]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
393
414
  #
394
415
  # @option params [required, Array<String>] :type
395
416
  # Type of connection information required.
@@ -397,13 +418,17 @@ module Aws::ConnectParticipant
397
418
  # @option params [required, String] :participant_token
398
419
  # This is a header parameter.
399
420
  #
400
- # The Participant Token as obtained from [StartChatContact][1] API
421
+ # The ParticipantToken as obtained from [StartChatContact][1] API
401
422
  # response.
402
423
  #
403
424
  #
404
425
  #
405
426
  # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartChatContact.html
406
427
  #
428
+ # @option params [Boolean] :connect_participant
429
+ # Amazon Connect Participant is used to mark the participant as
430
+ # connected for message streaming.
431
+ #
407
432
  # @return [Types::CreateParticipantConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
408
433
  #
409
434
  # * {Types::CreateParticipantConnectionResponse#websocket #websocket} => Types::Websocket
@@ -414,6 +439,7 @@ module Aws::ConnectParticipant
414
439
  # resp = client.create_participant_connection({
415
440
  # type: ["WEBSOCKET"], # required, accepts WEBSOCKET, CONNECTION_CREDENTIALS
416
441
  # participant_token: "ParticipantToken", # required
442
+ # connect_participant: false,
417
443
  # })
418
444
  #
419
445
  # @example Response structure
@@ -474,6 +500,13 @@ module Aws::ConnectParticipant
474
500
  # Provides a pre-signed URL for download of a completed attachment. This
475
501
  # is an asynchronous API for use with active contacts.
476
502
  #
503
+ # The Amazon Connect Participant Service APIs do not use [Signature
504
+ # Version 4 authentication][1].
505
+ #
506
+ #
507
+ #
508
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
509
+ #
477
510
  # @option params [required, String] :attachment_id
478
511
  # A unique identifier for the attachment.
479
512
  #
@@ -659,11 +692,9 @@ module Aws::ConnectParticipant
659
692
  # Sends a message. Note that ConnectionToken is used for invoking this
660
693
  # API instead of ParticipantToken.
661
694
  #
662
- # <note markdown="1"> The Amazon Connect Participant Service APIs do not use [Signature
695
+ # The Amazon Connect Participant Service APIs do not use [Signature
663
696
  # Version 4 authentication][1].
664
697
  #
665
- # </note>
666
- #
667
698
  #
668
699
  #
669
700
  # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
@@ -715,6 +746,13 @@ module Aws::ConnectParticipant
715
746
  # Provides a pre-signed Amazon S3 URL in response for uploading the file
716
747
  # directly to S3.
717
748
  #
749
+ # The Amazon Connect Participant Service APIs do not use [Signature
750
+ # Version 4 authentication][1].
751
+ #
752
+ #
753
+ #
754
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
755
+ #
718
756
  # @option params [required, String] :content_type
719
757
  # Describes the MIME file type of the attachment. For a list of
720
758
  # supported file types, see [Feature specifications][1] in the *Amazon
@@ -785,7 +823,7 @@ module Aws::ConnectParticipant
785
823
  params: params,
786
824
  config: config)
787
825
  context[:gem_name] = 'aws-sdk-connectparticipant'
788
- context[:gem_version] = '1.13.0'
826
+ context[:gem_version] = '1.17.0'
789
827
  Seahorse::Client::Request.new(handlers, context)
790
828
  end
791
829
 
@@ -21,6 +21,7 @@ module Aws::ConnectParticipant
21
21
  AttachmentName = Shapes::StringShape.new(name: 'AttachmentName')
22
22
  AttachmentSizeInBytes = Shapes::IntegerShape.new(name: 'AttachmentSizeInBytes')
23
23
  Attachments = Shapes::ListShape.new(name: 'Attachments')
24
+ Bool = Shapes::BooleanShape.new(name: 'Bool')
24
25
  ChatContent = Shapes::StringShape.new(name: 'ChatContent')
25
26
  ChatContentType = Shapes::StringShape.new(name: 'ChatContentType')
26
27
  ChatItemId = Shapes::StringShape.new(name: 'ChatItemId')
@@ -109,6 +110,7 @@ module Aws::ConnectParticipant
109
110
 
110
111
  CreateParticipantConnectionRequest.add_member(:type, Shapes::ShapeRef.new(shape: ConnectionTypeList, required: true, location_name: "Type"))
111
112
  CreateParticipantConnectionRequest.add_member(:participant_token, Shapes::ShapeRef.new(shape: ParticipantToken, required: true, location: "header", location_name: "X-Amz-Bearer"))
113
+ CreateParticipantConnectionRequest.add_member(:connect_participant, Shapes::ShapeRef.new(shape: Bool, location_name: "ConnectParticipant"))
112
114
  CreateParticipantConnectionRequest.struct_class = Types::CreateParticipantConnectionRequest
113
115
 
114
116
  CreateParticipantConnectionResponse.add_member(:websocket, Shapes::ShapeRef.new(shape: Websocket, location_name: "Websocket"))
@@ -140,6 +140,7 @@ module Aws::ConnectParticipant
140
140
  # {
141
141
  # type: ["WEBSOCKET"], # required, accepts WEBSOCKET, CONNECTION_CREDENTIALS
142
142
  # participant_token: "ParticipantToken", # required
143
+ # connect_participant: false,
143
144
  # }
144
145
  #
145
146
  # @!attribute [rw] type
@@ -149,7 +150,7 @@ module Aws::ConnectParticipant
149
150
  # @!attribute [rw] participant_token
150
151
  # This is a header parameter.
151
152
  #
152
- # The Participant Token as obtained from [StartChatContact][1] API
153
+ # The ParticipantToken as obtained from [StartChatContact][1] API
153
154
  # response.
154
155
  #
155
156
  #
@@ -157,11 +158,17 @@ module Aws::ConnectParticipant
157
158
  # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartChatContact.html
158
159
  # @return [String]
159
160
  #
161
+ # @!attribute [rw] connect_participant
162
+ # Amazon Connect Participant is used to mark the participant as
163
+ # connected for message streaming.
164
+ # @return [Boolean]
165
+ #
160
166
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectparticipant-2018-09-07/CreateParticipantConnectionRequest AWS API Documentation
161
167
  #
162
168
  class CreateParticipantConnectionRequest < Struct.new(
163
169
  :type,
164
- :participant_token)
170
+ :participant_token,
171
+ :connect_participant)
165
172
  SENSITIVE = []
166
173
  include Aws::Structure
167
174
  end
@@ -245,8 +252,12 @@ module Aws::ConnectParticipant
245
252
  end
246
253
 
247
254
  # @!attribute [rw] url
248
- # The pre-signed URL using which file would be downloaded from Amazon
249
- # S3 by the API caller.
255
+ # This is the pre-signed URL that can be used for uploading the file
256
+ # to Amazon S3 when used in response to [StartAttachmentUpload][1].
257
+ #
258
+ #
259
+ #
260
+ # [1]: https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html
250
261
  # @return [String]
251
262
  #
252
263
  # @!attribute [rw] url_expiry
@@ -689,8 +700,12 @@ module Aws::ConnectParticipant
689
700
  # Fields to be used while uploading the attachment.
690
701
  #
691
702
  # @!attribute [rw] url
692
- # The pre-signed URL using which file would be downloaded from Amazon
693
- # S3 by the API caller.
703
+ # This is the pre-signed URL that can be used for uploading the file
704
+ # to Amazon S3 when used in response to [StartAttachmentUpload][1].
705
+ #
706
+ #
707
+ #
708
+ # [1]: https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html
694
709
  # @return [String]
695
710
  #
696
711
  # @!attribute [rw] url_expiry
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-connectparticipant/customizations'
48
48
  # @!group service
49
49
  module Aws::ConnectParticipant
50
50
 
51
- GEM_VERSION = '1.13.0'
51
+ GEM_VERSION = '1.17.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectparticipant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.17.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: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-11-03 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.119.0
22
+ version: 3.121.2
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.119.0
32
+ version: 3.121.2
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="