aws-sdk-connect 1.164.0 → 1.166.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 +373 -125
- data/lib/aws-sdk-connect/client_api.rb +127 -1
- data/lib/aws-sdk-connect/endpoints.rb +42 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-connect/types.rb +490 -124
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +36 -0
- data/sig/types.rbs +72 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7566d86da467fd0113485aa43132fe6894ce8203a48ee530d29ada6c4de7204c
|
4
|
+
data.tar.gz: 2b0bad53d4503e534155901f6747263e46296fb8110f575029bda66774b089fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d0ab3b8bdbdc7b974ad1fb32ac68f95f19e4d55e313725e152c94d43e712608e3fd5c637d75339da53ced56266b005a0dd41dcda3193d276c9ec98deac73b3a
|
7
|
+
data.tar.gz: 8e7e1011d04fce8ac56484d615d8a16aa6b90daaac24a2d1c9b50819547e1e22f0d1da489dc2ed33157c06bc7a8c56f29a1f52147bc5581f5ae5f3101678bda0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.166.0 (2024-07-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Authentication profiles are Amazon Connect resources (in gated preview) that allow you to configure authentication settings for users in your contact center. This release adds support for new ListAuthenticationProfiles, DescribeAuthenticationProfile and UpdateAuthenticationProfile APIs.
|
8
|
+
|
9
|
+
1.165.0 (2024-06-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release supports showing PreferredAgentRouting step via DescribeContact API.
|
13
|
+
|
4
14
|
1.164.0 (2024-06-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.166.0
|