aws-sdk-connect 1.169.0 → 1.179.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 +50 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +383 -56
- data/lib/aws-sdk-connect/client_api.rb +71 -0
- data/lib/aws-sdk-connect/endpoints.rb +266 -1020
- data/lib/aws-sdk-connect/plugins/endpoints.rb +20 -6
- data/lib/aws-sdk-connect/types.rb +320 -22
- data/lib/aws-sdk-connect.rb +15 -11
- data/sig/client.rbs +72 -7
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +61 -8
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bc68422d6cba63a041912c0bb9ed4e59e03768aa10709ada6ef96b0496a29f7
|
4
|
+
data.tar.gz: 9d8bc377d9f64c20f6eaa7c4262ebb70796fd81cd4fe435566404669f7d37ff5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb5fee7fa89604f272d7a2729510f5c8f0f6c71579bd3d9ac36b3682415d3389dc7181d36e544e5538adb36cad3a5cbe608556c0a79cdb30ad01ecf5b0848412
|
7
|
+
data.tar.gz: 5e7c7c22374821d3330a4388e0a49ecf729b4f88789a4de5288d30876621b64b2864c842277df1b5bc0fdb5041bb85fbdc97189ef36682518638122aef4b484d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,56 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.179.0 (2024-09-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon Connect introduces StartOutboundChatContact API allowing customers to initiate outbound chat contacts
|
8
|
+
|
9
|
+
1.178.0 (2024-09-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.177.0 (2024-09-23)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.176.0 (2024-09-20)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
24
|
+
1.175.0 (2024-09-11)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
28
|
+
|
29
|
+
1.174.0 (2024-09-10)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
33
|
+
|
34
|
+
1.173.0 (2024-09-05)
|
35
|
+
------------------
|
36
|
+
|
37
|
+
* Feature - Amazon Connect Custom Vocabulary now supports Catalan (Spain), Danish (Denmark), Dutch (Netherlands), Finnish (Finland), Indonesian (Indonesia), Malay (Malaysia), Norwegian Bokmal (Norway), Polish (Poland), Swedish (Sweden), and Tagalog/Filipino (Philippines).
|
38
|
+
|
39
|
+
1.172.0 (2024-09-03)
|
40
|
+
------------------
|
41
|
+
|
42
|
+
* Feature - Release ReplicaConfiguration as part of DescribeInstance
|
43
|
+
|
44
|
+
1.171.0 (2024-08-09)
|
45
|
+
------------------
|
46
|
+
|
47
|
+
* Feature - This release supports adding RoutingCriteria via UpdateContactRoutingData public API.
|
48
|
+
|
49
|
+
1.170.0 (2024-08-08)
|
50
|
+
------------------
|
51
|
+
|
52
|
+
* Feature - This release fixes a regression in number of access control tags that are allowed to be added to a security profile in Amazon Connect. You can now add up to four access control tags on a single security profile.
|
53
|
+
|
4
54
|
1.169.0 (2024-07-23)
|
5
55
|
------------------
|
6
56
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.179.0
|