aws-sdk-connectparticipant 1.15.0 → 1.19.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: e706f07da1c882a50214dabc6b0fe41d4494ab3ee995680a37df22f13c862ee6
4
- data.tar.gz: 8d4c3423741cb2979ebe1bce8b0b161dad0564eca45d0c4735f5e91b338c8ff9
3
+ metadata.gz: c7556ab487aee7716be92d7a0ce7c591a15a844dbe57ea0810ea2cd817c10041
4
+ data.tar.gz: c41d5a850b25e49449f187f491c44a656cc137723105f0cfa97132dbdda7e106
5
5
  SHA512:
6
- metadata.gz: e9991c03d8d896d00486c5e87b3cbfca644bb8c3f8aa7ef40afac1a6811a2f5529a0a004922b67851a991e8011e58f22a148724e3d8394047f0063ba691d2298
7
- data.tar.gz: cb1eab6257cbe8da8258525e35801ba249ea2eda172d81d8b85aa5a2744d8bee9216dcb4b8184c918d8aaff0cf2caff4565124cadcc13cdc9edb1e7516341d7f
6
+ metadata.gz: e22989fa6cd340ea9f710b494663455e8c3342768827013d9061727bb44c8c6cad35f4310d07e837d082d730a9e843ec8c5b1f10b63a004a6d24ae8aad42ced0
7
+ data.tar.gz: d02696fb796840b57717d895c1c56484477ccfae27cce6a32b7093f4b688afed58e3140550b9244194b59385a73c2c8de48e53e98036dd8455e314adfaecf83f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.18.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.17.0 (2021-11-03)
15
+ ------------------
16
+
17
+ * Feature - This release adds a new boolean attribute - Connect Participant - to the CreateParticipantConnection API, which can be used to mark the participant as connected.
18
+
19
+ 1.16.0 (2021-10-28)
20
+ ------------------
21
+
22
+ * Feature - This release adds a new boolean attribute - Connect Participant - to the CreateParticipantConnection API, which can be used to mark the participant as connected.
23
+
4
24
  1.15.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.19.0
@@ -119,7 +119,9 @@ module Aws::ConnectParticipant
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -275,6 +277,15 @@ module Aws::ConnectParticipant
275
277
  # ** Please note ** When response stubbing is enabled, no HTTP
276
278
  # requests are made, and retries are disabled.
277
279
  #
280
+ # @option options [Boolean] :use_dualstack_endpoint
281
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
282
+ # will be used if available.
283
+ #
284
+ # @option options [Boolean] :use_fips_endpoint
285
+ # When set to `true`, fips compatible endpoints will be used if available.
286
+ # When a `fips` region is used, the region is normalized and this config
287
+ # is set to `true`.
288
+ #
278
289
  # @option options [Boolean] :validate_params (true)
279
290
  # When `true`, request parameters are validated before
280
291
  # sending the request.
@@ -330,6 +341,13 @@ module Aws::ConnectParticipant
330
341
  # Allows you to confirm that the attachment has been uploaded using the
331
342
  # pre-signed URL provided in StartAttachmentUpload API.
332
343
  #
344
+ # The Amazon Connect Participant Service APIs do not use [Signature
345
+ # Version 4 authentication][1].
346
+ #
347
+ #
348
+ #
349
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
350
+ #
333
351
  # @option params [required, Array<String>] :attachment_ids
334
352
  # A list of unique identifiers for the attachments.
335
353
  #
@@ -382,14 +400,28 @@ module Aws::ConnectParticipant
382
400
  # ConnectionExpiry parameter, clients need to call this API again to
383
401
  # obtain a new websocket URL and perform the same steps as before.
384
402
  #
403
+ # **Message streaming support**\: This API can also be used together
404
+ # with the [StartContactStreaming][1] API to create a participant
405
+ # connection for chat contacts that are not using a websocket. For more
406
+ # information about message streaming, [Enable real-time chat message
407
+ # streaming][2] in the *Amazon Connect Administrator Guide*.
408
+ #
409
+ # **Feature specifications**\: For information about feature
410
+ # specifications, such as the allowed number of open websocket
411
+ # connections per participant, see [Feature specifications][3] in the
412
+ # *Amazon Connect Administrator Guide*.
413
+ #
385
414
  # <note markdown="1"> The Amazon Connect Participant Service APIs do not use [Signature
386
- # Version 4 authentication][1].
415
+ # Version 4 authentication][4].
387
416
  #
388
417
  # </note>
389
418
  #
390
419
  #
391
420
  #
392
- # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
421
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartContactStreaming.html
422
+ # [2]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-message-streaming.html
423
+ # [3]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#feature-limits
424
+ # [4]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
393
425
  #
394
426
  # @option params [required, Array<String>] :type
395
427
  # Type of connection information required.
@@ -397,13 +429,17 @@ module Aws::ConnectParticipant
397
429
  # @option params [required, String] :participant_token
398
430
  # This is a header parameter.
399
431
  #
400
- # The Participant Token as obtained from [StartChatContact][1] API
432
+ # The ParticipantToken as obtained from [StartChatContact][1] API
401
433
  # response.
402
434
  #
403
435
  #
404
436
  #
405
437
  # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartChatContact.html
406
438
  #
439
+ # @option params [Boolean] :connect_participant
440
+ # Amazon Connect Participant is used to mark the participant as
441
+ # connected for message streaming.
442
+ #
407
443
  # @return [Types::CreateParticipantConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
408
444
  #
409
445
  # * {Types::CreateParticipantConnectionResponse#websocket #websocket} => Types::Websocket
@@ -414,6 +450,7 @@ module Aws::ConnectParticipant
414
450
  # resp = client.create_participant_connection({
415
451
  # type: ["WEBSOCKET"], # required, accepts WEBSOCKET, CONNECTION_CREDENTIALS
416
452
  # participant_token: "ParticipantToken", # required
453
+ # connect_participant: false,
417
454
  # })
418
455
  #
419
456
  # @example Response structure
@@ -474,6 +511,13 @@ module Aws::ConnectParticipant
474
511
  # Provides a pre-signed URL for download of a completed attachment. This
475
512
  # is an asynchronous API for use with active contacts.
476
513
  #
514
+ # The Amazon Connect Participant Service APIs do not use [Signature
515
+ # Version 4 authentication][1].
516
+ #
517
+ #
518
+ #
519
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
520
+ #
477
521
  # @option params [required, String] :attachment_id
478
522
  # A unique identifier for the attachment.
479
523
  #
@@ -659,11 +703,9 @@ module Aws::ConnectParticipant
659
703
  # Sends a message. Note that ConnectionToken is used for invoking this
660
704
  # API instead of ParticipantToken.
661
705
  #
662
- # <note markdown="1"> The Amazon Connect Participant Service APIs do not use [Signature
706
+ # The Amazon Connect Participant Service APIs do not use [Signature
663
707
  # Version 4 authentication][1].
664
708
  #
665
- # </note>
666
- #
667
709
  #
668
710
  #
669
711
  # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
@@ -715,6 +757,13 @@ module Aws::ConnectParticipant
715
757
  # Provides a pre-signed Amazon S3 URL in response for uploading the file
716
758
  # directly to S3.
717
759
  #
760
+ # The Amazon Connect Participant Service APIs do not use [Signature
761
+ # Version 4 authentication][1].
762
+ #
763
+ #
764
+ #
765
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
766
+ #
718
767
  # @option params [required, String] :content_type
719
768
  # Describes the MIME file type of the attachment. For a list of
720
769
  # supported file types, see [Feature specifications][1] in the *Amazon
@@ -785,7 +834,7 @@ module Aws::ConnectParticipant
785
834
  params: params,
786
835
  config: config)
787
836
  context[:gem_name] = 'aws-sdk-connectparticipant'
788
- context[:gem_version] = '1.15.0'
837
+ context[:gem_version] = '1.19.0'
789
838
  Seahorse::Client::Request.new(handlers, context)
790
839
  end
791
840
 
@@ -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.15.0'
51
+ GEM_VERSION = '1.19.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.15.0
4
+ version: 1.19.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-10-18 00:00:00.000000000 Z
11
+ date: 2021-11-30 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.121.2
22
+ version: 3.122.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.121.2
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement