aws-sdk-connect 1.210.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +19 -31
- data/lib/aws-sdk-connect/client_api.rb +2 -2
- data/lib/aws-sdk-connect/types.rb +22 -19
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +9 -25
- data/sig/types.rbs +1 -2
- 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
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.212.0 (2025-08-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon Connect Service Feature: Add support to enable multi-user in-app, web, and video calling.
|
8
|
+
|
9
|
+
1.211.0 (2025-08-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updating SearchUserHierarchyGroups API
|
13
|
+
|
4
14
|
1.210.0 (2025-08-08)
|
5
15
|
------------------
|
6
16
|
|
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
|
#
|
@@ -14246,10 +14254,6 @@ module Aws::Connect
|
|
14246
14254
|
# tag_value: "String",
|
14247
14255
|
# },
|
14248
14256
|
# ],
|
14249
|
-
# hierarchy_group_condition: {
|
14250
|
-
# value: "String",
|
14251
|
-
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
14252
|
-
# },
|
14253
14257
|
# },
|
14254
14258
|
# ],
|
14255
14259
|
# and_condition: {
|
@@ -14259,10 +14263,6 @@ module Aws::Connect
|
|
14259
14263
|
# tag_value: "String",
|
14260
14264
|
# },
|
14261
14265
|
# ],
|
14262
|
-
# hierarchy_group_condition: {
|
14263
|
-
# value: "String",
|
14264
|
-
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
14265
|
-
# },
|
14266
14266
|
# },
|
14267
14267
|
# tag_condition: {
|
14268
14268
|
# tag_key: "String",
|
@@ -15848,10 +15848,6 @@ module Aws::Connect
|
|
15848
15848
|
# tag_value: "String",
|
15849
15849
|
# },
|
15850
15850
|
# ],
|
15851
|
-
# hierarchy_group_condition: {
|
15852
|
-
# value: "String",
|
15853
|
-
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
15854
|
-
# },
|
15855
15851
|
# },
|
15856
15852
|
# ],
|
15857
15853
|
# and_condition: {
|
@@ -15861,10 +15857,6 @@ module Aws::Connect
|
|
15861
15857
|
# tag_value: "String",
|
15862
15858
|
# },
|
15863
15859
|
# ],
|
15864
|
-
# hierarchy_group_condition: {
|
15865
|
-
# value: "String",
|
15866
|
-
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
15867
|
-
# },
|
15868
15860
|
# },
|
15869
15861
|
# tag_condition: {
|
15870
15862
|
# tag_key: "String",
|
@@ -15888,10 +15880,6 @@ module Aws::Connect
|
|
15888
15880
|
# value: "String",
|
15889
15881
|
# comparison_type: "STARTS_WITH", # accepts STARTS_WITH, CONTAINS, EXACT
|
15890
15882
|
# },
|
15891
|
-
# hierarchy_group_condition: {
|
15892
|
-
# value: "String",
|
15893
|
-
# hierarchy_group_match_type: "EXACT", # accepts EXACT, WITH_CHILD_GROUPS
|
15894
|
-
# },
|
15895
15883
|
# },
|
15896
15884
|
# })
|
15897
15885
|
#
|
@@ -21555,7 +21543,7 @@ module Aws::Connect
|
|
21555
21543
|
tracer: tracer
|
21556
21544
|
)
|
21557
21545
|
context[:gem_name] = 'aws-sdk-connect'
|
21558
|
-
context[:gem_version] = '1.
|
21546
|
+
context[:gem_version] = '1.212.0'
|
21559
21547
|
Seahorse::Client::Request.new(handlers, context)
|
21560
21548
|
end
|
21561
21549
|
|
@@ -2037,7 +2037,6 @@ module Aws::Connect
|
|
2037
2037
|
ClaimedPhoneNumberSummary.struct_class = Types::ClaimedPhoneNumberSummary
|
2038
2038
|
|
2039
2039
|
CommonAttributeAndCondition.add_member(:tag_conditions, Shapes::ShapeRef.new(shape: TagAndConditionList, location_name: "TagConditions"))
|
2040
|
-
CommonAttributeAndCondition.add_member(:hierarchy_group_condition, Shapes::ShapeRef.new(shape: HierarchyGroupCondition, location_name: "HierarchyGroupCondition"))
|
2041
2040
|
CommonAttributeAndCondition.struct_class = Types::CommonAttributeAndCondition
|
2042
2041
|
|
2043
2042
|
CommonAttributeOrConditionList.member = Shapes::ShapeRef.new(shape: CommonAttributeAndCondition)
|
@@ -4667,6 +4666,7 @@ module Aws::Connect
|
|
4667
4666
|
|
4668
4667
|
ParticipantDetailsToAdd.add_member(:participant_role, Shapes::ShapeRef.new(shape: ParticipantRole, location_name: "ParticipantRole"))
|
4669
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"))
|
4670
4670
|
ParticipantDetailsToAdd.struct_class = Types::ParticipantDetailsToAdd
|
4671
4671
|
|
4672
4672
|
ParticipantMetrics.add_member(:participant_id, Shapes::ShapeRef.new(shape: ParticipantId, location_name: "ParticipantId"))
|
@@ -6543,7 +6543,6 @@ module Aws::Connect
|
|
6543
6543
|
UserHierarchyGroupSearchCriteria.add_member(:or_conditions, Shapes::ShapeRef.new(shape: UserHierarchyGroupSearchConditionList, location_name: "OrConditions"))
|
6544
6544
|
UserHierarchyGroupSearchCriteria.add_member(:and_conditions, Shapes::ShapeRef.new(shape: UserHierarchyGroupSearchConditionList, location_name: "AndConditions"))
|
6545
6545
|
UserHierarchyGroupSearchCriteria.add_member(:string_condition, Shapes::ShapeRef.new(shape: StringCondition, location_name: "StringCondition"))
|
6546
|
-
UserHierarchyGroupSearchCriteria.add_member(:hierarchy_group_condition, Shapes::ShapeRef.new(shape: HierarchyGroupCondition, location_name: "HierarchyGroupCondition"))
|
6547
6546
|
UserHierarchyGroupSearchCriteria.struct_class = Types::UserHierarchyGroupSearchCriteria
|
6548
6547
|
|
6549
6548
|
UserHierarchyGroupSearchFilter.add_member(:attribute_filter, Shapes::ShapeRef.new(shape: ControlPlaneAttributeFilter, location_name: "AttributeFilter"))
|
@@ -7216,6 +7215,7 @@ module Aws::Connect
|
|
7216
7215
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
7217
7216
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
7218
7217
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
7218
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
7219
7219
|
end)
|
7220
7220
|
|
7221
7221
|
api.add_operation(:create_persistent_contact_association, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2447,16 +2447,10 @@ module Aws::Connect
|
|
2447
2447
|
# A leaf node condition which can be used to specify a tag condition.
|
2448
2448
|
# @return [Array<Types::TagCondition>]
|
2449
2449
|
#
|
2450
|
-
# @!attribute [rw] hierarchy_group_condition
|
2451
|
-
# A leaf node condition which can be used to specify a hierarchy group
|
2452
|
-
# condition.
|
2453
|
-
# @return [Types::HierarchyGroupCondition]
|
2454
|
-
#
|
2455
2450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CommonAttributeAndCondition AWS API Documentation
|
2456
2451
|
#
|
2457
2452
|
class CommonAttributeAndCondition < Struct.new(
|
2458
|
-
:tag_conditions
|
2459
|
-
:hierarchy_group_condition)
|
2453
|
+
:tag_conditions)
|
2460
2454
|
SENSITIVE = []
|
2461
2455
|
include Aws::Structure
|
2462
2456
|
end
|
@@ -4598,7 +4592,10 @@ module Aws::Connect
|
|
4598
4592
|
#
|
4599
4593
|
# @!attribute [rw] contact_id
|
4600
4594
|
# The identifier of the contact in this instance of Amazon Connect.
|
4601
|
-
#
|
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
|
4602
4599
|
# @return [String]
|
4603
4600
|
#
|
4604
4601
|
# @!attribute [rw] client_token
|
@@ -4618,9 +4615,8 @@ module Aws::Connect
|
|
4618
4615
|
# @!attribute [rw] participant_details
|
4619
4616
|
# Information identifying the participant.
|
4620
4617
|
#
|
4621
|
-
# The only
|
4622
|
-
#
|
4623
|
-
# `DisplayName` is **Required**.
|
4618
|
+
# The only valid value for `ParticipantRole` is `CUSTOM_BOT` for chat
|
4619
|
+
# contact and `CUSTOMER` for voice contact.
|
4624
4620
|
# @return [Types::ParticipantDetailsToAdd]
|
4625
4621
|
#
|
4626
4622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateParticipantRequest AWS API Documentation
|
@@ -18025,11 +18021,24 @@ module Aws::Connect
|
|
18025
18021
|
# The display name of the participant.
|
18026
18022
|
# @return [String]
|
18027
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
|
+
#
|
18028
18036
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ParticipantDetailsToAdd AWS API Documentation
|
18029
18037
|
#
|
18030
18038
|
class ParticipantDetailsToAdd < Struct.new(
|
18031
18039
|
:participant_role,
|
18032
|
-
:display_name
|
18040
|
+
:display_name,
|
18041
|
+
:participant_capabilities)
|
18033
18042
|
SENSITIVE = []
|
18034
18043
|
include Aws::Structure
|
18035
18044
|
end
|
@@ -27577,18 +27586,12 @@ module Aws::Connect
|
|
27577
27586
|
# </note>
|
27578
27587
|
# @return [Types::StringCondition]
|
27579
27588
|
#
|
27580
|
-
# @!attribute [rw] hierarchy_group_condition
|
27581
|
-
# A leaf node condition which can be used to specify a hierarchy group
|
27582
|
-
# condition.
|
27583
|
-
# @return [Types::HierarchyGroupCondition]
|
27584
|
-
#
|
27585
27589
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserHierarchyGroupSearchCriteria AWS API Documentation
|
27586
27590
|
#
|
27587
27591
|
class UserHierarchyGroupSearchCriteria < Struct.new(
|
27588
27592
|
:or_conditions,
|
27589
27593
|
:and_conditions,
|
27590
|
-
:string_condition
|
27591
|
-
:hierarchy_group_condition)
|
27594
|
+
:string_condition)
|
27592
27595
|
SENSITIVE = []
|
27593
27596
|
include Aws::Structure
|
27594
27597
|
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
|
@@ -2917,11 +2921,7 @@ module Aws
|
|
2917
2921
|
tag_key: ::String?,
|
2918
2922
|
tag_value: ::String?
|
2919
2923
|
},
|
2920
|
-
]
|
2921
|
-
hierarchy_group_condition: {
|
2922
|
-
value: ::String?,
|
2923
|
-
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
2924
|
-
}?
|
2924
|
+
]?
|
2925
2925
|
},
|
2926
2926
|
]?,
|
2927
2927
|
and_condition: {
|
@@ -2930,11 +2930,7 @@ module Aws
|
|
2930
2930
|
tag_key: ::String?,
|
2931
2931
|
tag_value: ::String?
|
2932
2932
|
},
|
2933
|
-
]
|
2934
|
-
hierarchy_group_condition: {
|
2935
|
-
value: ::String?,
|
2936
|
-
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
2937
|
-
}?
|
2933
|
+
]?
|
2938
2934
|
}?,
|
2939
2935
|
tag_condition: {
|
2940
2936
|
tag_key: ::String?,
|
@@ -3611,11 +3607,7 @@ module Aws
|
|
3611
3607
|
tag_key: ::String?,
|
3612
3608
|
tag_value: ::String?
|
3613
3609
|
},
|
3614
|
-
]
|
3615
|
-
hierarchy_group_condition: {
|
3616
|
-
value: ::String?,
|
3617
|
-
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
3618
|
-
}?
|
3610
|
+
]?
|
3619
3611
|
},
|
3620
3612
|
]?,
|
3621
3613
|
and_condition: {
|
@@ -3624,11 +3616,7 @@ module Aws
|
|
3624
3616
|
tag_key: ::String?,
|
3625
3617
|
tag_value: ::String?
|
3626
3618
|
},
|
3627
|
-
]
|
3628
|
-
hierarchy_group_condition: {
|
3629
|
-
value: ::String?,
|
3630
|
-
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
3631
|
-
}?
|
3619
|
+
]?
|
3632
3620
|
}?,
|
3633
3621
|
tag_condition: {
|
3634
3622
|
tag_key: ::String?,
|
@@ -3647,10 +3635,6 @@ module Aws
|
|
3647
3635
|
field_name: ::String?,
|
3648
3636
|
value: ::String?,
|
3649
3637
|
comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
|
3650
|
-
}?,
|
3651
|
-
hierarchy_group_condition: {
|
3652
|
-
value: ::String?,
|
3653
|
-
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
3654
3638
|
}?
|
3655
3639
|
}
|
3656
3640
|
) -> _SearchUserHierarchyGroupsResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -573,7 +573,6 @@ module Aws::Connect
|
|
573
573
|
|
574
574
|
class CommonAttributeAndCondition
|
575
575
|
attr_accessor tag_conditions: ::Array[Types::TagCondition]
|
576
|
-
attr_accessor hierarchy_group_condition: Types::HierarchyGroupCondition
|
577
576
|
SENSITIVE: []
|
578
577
|
end
|
579
578
|
|
@@ -3986,6 +3985,7 @@ module Aws::Connect
|
|
3986
3985
|
class ParticipantDetailsToAdd
|
3987
3986
|
attr_accessor participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")
|
3988
3987
|
attr_accessor display_name: ::String
|
3988
|
+
attr_accessor participant_capabilities: Types::ParticipantCapabilities
|
3989
3989
|
SENSITIVE: []
|
3990
3990
|
end
|
3991
3991
|
|
@@ -6284,7 +6284,6 @@ module Aws::Connect
|
|
6284
6284
|
attr_accessor or_conditions: ::Array[Types::UserHierarchyGroupSearchCriteria]
|
6285
6285
|
attr_accessor and_conditions: ::Array[Types::UserHierarchyGroupSearchCriteria]
|
6286
6286
|
attr_accessor string_condition: Types::StringCondition
|
6287
|
-
attr_accessor hierarchy_group_condition: Types::HierarchyGroupCondition
|
6288
6287
|
SENSITIVE: []
|
6289
6288
|
end
|
6290
6289
|
|