aws-sdk-connect 1.211.0 → 1.212.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 +19 -11
- data/lib/aws-sdk-connect/client_api.rb +2 -0
- data/lib/aws-sdk-connect/types.rb +20 -5
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +5 -1
- 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: bdd70b931c9ede9df21f536a347a303509cbc4e3394d147d764b38a6afa01d38
|
4
|
+
data.tar.gz: ebe5fc26d39dc3da000fb78dc0cb132a156b7e11c52ec581f7c1d4e247ef34a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6d6c87ba07cfc97ce6c68ff0f0c9d63bd9db19325669972d9ce9957cb1049dfca78da04eaec0887ba65a4792b9a0adc871a8da1c1fcb3ea9ba585ae2376dca5
|
7
|
+
data.tar.gz: 264bfdda7b1bffdbe4685aaa0aa6d82a2908a1ff57dfbb45cedacb59e830f36a3b24d12f1bbfde871067a89c592e7317dd6119819dab92c068ca5acf6f83125e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.212.0
|
@@ -2669,13 +2669,15 @@ module Aws::Connect
|
|
2669
2669
|
req.send_request(options)
|
2670
2670
|
end
|
2671
2671
|
|
2672
|
-
# Adds a new participant into an on-going chat contact
|
2673
|
-
# information, see [Customize chat flow experiences by
|
2674
|
-
# custom participants][1]
|
2672
|
+
# Adds a new participant into an on-going chat contact or webRTC call.
|
2673
|
+
# For more information, see [Customize chat flow experiences by
|
2674
|
+
# integrating custom participants][1] or [Enable multi-user web, in-app,
|
2675
|
+
# and video calling][2].
|
2675
2676
|
#
|
2676
2677
|
#
|
2677
2678
|
#
|
2678
2679
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-customize-flow.html
|
2680
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/enable-multiuser-inapp.html
|
2679
2681
|
#
|
2680
2682
|
# @option params [required, String] :instance_id
|
2681
2683
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -2686,8 +2688,11 @@ module Aws::Connect
|
|
2686
2688
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
2687
2689
|
#
|
2688
2690
|
# @option params [required, String] :contact_id
|
2689
|
-
# The identifier of the contact in this instance of Amazon Connect.
|
2690
|
-
# contacts in the CHAT channel
|
2691
|
+
# The identifier of the contact in this instance of Amazon Connect.
|
2692
|
+
# Supports contacts in the CHAT channel and VOICE (WebRTC) channels. For
|
2693
|
+
# WebRTC calls, this should be the initial contact ID that was generated
|
2694
|
+
# when the contact was first created (from the StartWebRTCContact API)
|
2695
|
+
# in the VOICE channel
|
2691
2696
|
#
|
2692
2697
|
# @option params [String] :client_token
|
2693
2698
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -2705,9 +2710,8 @@ module Aws::Connect
|
|
2705
2710
|
# @option params [required, Types::ParticipantDetailsToAdd] :participant_details
|
2706
2711
|
# Information identifying the participant.
|
2707
2712
|
#
|
2708
|
-
# The only
|
2709
|
-
#
|
2710
|
-
# `DisplayName` is **Required**.
|
2713
|
+
# The only valid value for `ParticipantRole` is `CUSTOM_BOT` for chat
|
2714
|
+
# contact and `CUSTOMER` for voice contact.
|
2711
2715
|
#
|
2712
2716
|
# @return [Types::CreateParticipantResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2713
2717
|
#
|
@@ -2723,6 +2727,10 @@ module Aws::Connect
|
|
2723
2727
|
# participant_details: { # required
|
2724
2728
|
# participant_role: "AGENT", # accepts AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR
|
2725
2729
|
# display_name: "DisplayName",
|
2730
|
+
# participant_capabilities: {
|
2731
|
+
# video: "SEND", # accepts SEND
|
2732
|
+
# screen_share: "SEND", # accepts SEND
|
2733
|
+
# },
|
2726
2734
|
# },
|
2727
2735
|
# })
|
2728
2736
|
#
|
@@ -7809,10 +7817,10 @@ module Aws::Connect
|
|
7809
7817
|
# * If the response is slow due to large result sets, try these
|
7810
7818
|
# approaches:
|
7811
7819
|
#
|
7812
|
-
# * Narrow the time range of your request
|
7813
|
-
#
|
7814
7820
|
# * Add filters to reduce the amount of data returned
|
7815
7821
|
#
|
7822
|
+
# ^
|
7823
|
+
#
|
7816
7824
|
# </note>
|
7817
7825
|
#
|
7818
7826
|
#
|
@@ -21535,7 +21543,7 @@ module Aws::Connect
|
|
21535
21543
|
tracer: tracer
|
21536
21544
|
)
|
21537
21545
|
context[:gem_name] = 'aws-sdk-connect'
|
21538
|
-
context[:gem_version] = '1.
|
21546
|
+
context[:gem_version] = '1.212.0'
|
21539
21547
|
Seahorse::Client::Request.new(handlers, context)
|
21540
21548
|
end
|
21541
21549
|
|
@@ -4666,6 +4666,7 @@ module Aws::Connect
|
|
4666
4666
|
|
4667
4667
|
ParticipantDetailsToAdd.add_member(:participant_role, Shapes::ShapeRef.new(shape: ParticipantRole, location_name: "ParticipantRole"))
|
4668
4668
|
ParticipantDetailsToAdd.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
4669
|
+
ParticipantDetailsToAdd.add_member(:participant_capabilities, Shapes::ShapeRef.new(shape: ParticipantCapabilities, location_name: "ParticipantCapabilities"))
|
4669
4670
|
ParticipantDetailsToAdd.struct_class = Types::ParticipantDetailsToAdd
|
4670
4671
|
|
4671
4672
|
ParticipantMetrics.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantId, location_name: "ParticipantId"))
|
@@ -7214,6 +7215,7 @@ module Aws::Connect
|
|
7214
7215
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
7215
7216
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
7216
7217
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
7218
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
7217
7219
|
end)
|
7218
7220
|
|
7219
7221
|
api.add_operation(:create_persistent_contact_association, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4592,7 +4592,10 @@ module Aws::Connect
|
|
4592
4592
|
#
|
4593
4593
|
# @!attribute [rw] contact_id
|
4594
4594
|
# The identifier of the contact in this instance of Amazon Connect.
|
4595
|
-
#
|
4595
|
+
# Supports contacts in the CHAT channel and VOICE (WebRTC) channels.
|
4596
|
+
# For WebRTC calls, this should be the initial contact ID that was
|
4597
|
+
# generated when the contact was first created (from the
|
4598
|
+
# StartWebRTCContact API) in the VOICE channel
|
4596
4599
|
# @return [String]
|
4597
4600
|
#
|
4598
4601
|
# @!attribute [rw] client_token
|
@@ -4612,9 +4615,8 @@ module Aws::Connect
|
|
4612
4615
|
# @!attribute [rw] participant_details
|
4613
4616
|
# Information identifying the participant.
|
4614
4617
|
#
|
4615
|
-
# The only
|
4616
|
-
#
|
4617
|
-
# `DisplayName` is **Required**.
|
4618
|
+
# The only valid value for `ParticipantRole` is `CUSTOM_BOT` for chat
|
4619
|
+
# contact and `CUSTOMER` for voice contact.
|
4618
4620
|
# @return [Types::ParticipantDetailsToAdd]
|
4619
4621
|
#
|
4620
4622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateParticipantRequest AWS API Documentation
|
@@ -18019,11 +18021,24 @@ module Aws::Connect
|
|
18019
18021
|
# The display name of the participant.
|
18020
18022
|
# @return [String]
|
18021
18023
|
#
|
18024
|
+
# @!attribute [rw] participant_capabilities
|
18025
|
+
# The configuration for the allowed video and screen sharing
|
18026
|
+
# capabilities for participants present over the call. For more
|
18027
|
+
# information, see [Set up in-app, web, video calling, and screen
|
18028
|
+
# sharing capabilities][1] in the *Amazon Connect Administrator
|
18029
|
+
# Guide*.
|
18030
|
+
#
|
18031
|
+
#
|
18032
|
+
#
|
18033
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/inapp-calling.html
|
18034
|
+
# @return [Types::ParticipantCapabilities]
|
18035
|
+
#
|
18022
18036
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ParticipantDetailsToAdd AWS API Documentation
|
18023
18037
|
#
|
18024
18038
|
class ParticipantDetailsToAdd < Struct.new(
|
18025
18039
|
:participant_role,
|
18026
|
-
:display_name
|
18040
|
+
:display_name,
|
18041
|
+
:participant_capabilities)
|
18027
18042
|
SENSITIVE = []
|
18028
18043
|
include Aws::Structure
|
18029
18044
|
end
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -687,7 +687,11 @@ module Aws
|
|
687
687
|
?client_token: ::String,
|
688
688
|
participant_details: {
|
689
689
|
participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")?,
|
690
|
-
display_name: ::String
|
690
|
+
display_name: ::String?,
|
691
|
+
participant_capabilities: {
|
692
|
+
video: ("SEND")?,
|
693
|
+
screen_share: ("SEND")?
|
694
|
+
}?
|
691
695
|
}
|
692
696
|
) -> _CreateParticipantResponseSuccess
|
693
697
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateParticipantResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -3985,6 +3985,7 @@ module Aws::Connect
|
|
3985
3985
|
class ParticipantDetailsToAdd
|
3986
3986
|
attr_accessor participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")
|
3987
3987
|
attr_accessor display_name: ::String
|
3988
|
+
attr_accessor participant_capabilities: Types::ParticipantCapabilities
|
3988
3989
|
SENSITIVE: []
|
3989
3990
|
end
|
3990
3991
|
|