aws-sdk-connect 1.216.0 → 1.217.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 +216 -162
- data/lib/aws-sdk-connect/client_api.rb +2 -0
- data/lib/aws-sdk-connect/types.rb +191 -158
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +1 -0
- metadata +1 -1
@@ -962,6 +962,7 @@ module Aws::Connect
|
|
962
962
|
Permission = Shapes::StringShape.new(name: 'Permission')
|
963
963
|
PermissionsList = Shapes::ListShape.new(name: 'PermissionsList')
|
964
964
|
PersistentChat = Shapes::StructureShape.new(name: 'PersistentChat')
|
965
|
+
PersistentConnection = Shapes::BooleanShape.new(name: 'PersistentConnection')
|
965
966
|
PhoneNumber = Shapes::StringShape.new(name: 'PhoneNumber')
|
966
967
|
PhoneNumberCountryCode = Shapes::StringShape.new(name: 'PhoneNumberCountryCode')
|
967
968
|
PhoneNumberCountryCodes = Shapes::ListShape.new(name: 'PhoneNumberCountryCodes')
|
@@ -6607,6 +6608,7 @@ module Aws::Connect
|
|
6607
6608
|
UserPhoneConfig.add_member(:auto_accept, Shapes::ShapeRef.new(shape: AutoAccept, location_name: "AutoAccept"))
|
6608
6609
|
UserPhoneConfig.add_member(:after_contact_work_time_limit, Shapes::ShapeRef.new(shape: AfterContactWorkTimeLimit, location_name: "AfterContactWorkTimeLimit"))
|
6609
6610
|
UserPhoneConfig.add_member(:desk_phone_number, Shapes::ShapeRef.new(shape: PhoneNumber, location_name: "DeskPhoneNumber"))
|
6611
|
+
UserPhoneConfig.add_member(:persistent_connection, Shapes::ShapeRef.new(shape: PersistentConnection, location_name: "PersistentConnection", metadata: {"box" => true}))
|
6610
6612
|
UserPhoneConfig.struct_class = Types::UserPhoneConfig
|
6611
6613
|
|
6612
6614
|
UserProficiency.add_member(:attribute_name, Shapes::ShapeRef.new(shape: PredefinedAttributeName, required: true, location_name: "AttributeName"))
|