aws-sdk-connectcampaignservice 1.47.0 → 1.48.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41e8e1caf7490a2938311bf7f578baad04bdd6cf8ab60da34695f7e5b0ccfc5e
4
- data.tar.gz: 836e6971d403a4703b14fb28696ebef9b1d02d8fea75700dafddb84a6fa6d59c
3
+ metadata.gz: be76cddcc24753dc6f84fea1ed9f6000a486c7feaf73e9e8fb90513ce3aafc38
4
+ data.tar.gz: 06205b78f709e115fe5954ba04a4568295f1144651d8e892ec939025b73f445e
5
5
  SHA512:
6
- metadata.gz: 50aa513e113469e986eb35394dfa177ac1603654f244d442927c043f4d53640ceb6113e03d39a8589c2a7e7bdf586d52d291021c434a4393981009166236efc0
7
- data.tar.gz: 7fdd910f7adec544cc7f53301096bc99051910aaa0825e75c7c77a8bc6201538024ef457799253f0e401479c80c615f3b55d485f553a64f34dfe976300c60f52
6
+ metadata.gz: 7b840777071854d85924ab1e14b99a5a57707ae8f459b006053ae29f9ee0257b27d9da81d400f111ae5159e72b14f553c20e008563d92841c84a9d222ffe2c0c
7
+ data.tar.gz: a18fddd32e18440a43bcb4e7036f461f3ad8cafa56c90f0b909d37b128eb001b3c90d84f01186477237148013fba6f0b870024789fbf379d899d562079832958
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.47.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -1215,7 +1215,7 @@ module Aws::ConnectCampaignService
1215
1215
  tracer: tracer
1216
1216
  )
1217
1217
  context[:gem_name] = 'aws-sdk-connectcampaignservice'
1218
- context[:gem_version] = '1.47.0'
1218
+ context[:gem_version] = '1.48.0'
1219
1219
  Seahorse::Client::Request.new(handlers, context)
1220
1220
  end
1221
1221
 
@@ -54,7 +54,7 @@ module Aws::ConnectCampaignService
54
54
  autoload :EndpointProvider, 'aws-sdk-connectcampaignservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connectcampaignservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.47.0'
57
+ GEM_VERSION = '1.48.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -88,19 +88,7 @@ module Aws
88
88
  def create_campaign: (
89
89
  name: ::String,
90
90
  connect_instance_id: ::String,
91
- dialer_config: {
92
- progressive_dialer_config: {
93
- bandwidth_allocation: ::Float,
94
- dialing_capacity: ::Float?
95
- }?,
96
- predictive_dialer_config: {
97
- bandwidth_allocation: ::Float,
98
- dialing_capacity: ::Float?
99
- }?,
100
- agentless_dialer_config: {
101
- dialing_capacity: ::Float?
102
- }?
103
- },
91
+ dialer_config: Params::dialer_config,
104
92
  outbound_call_config: {
105
93
  connect_contact_flow_id: ::String,
106
94
  connect_source_phone_number: ::String?,
@@ -231,7 +219,7 @@ module Aws
231
219
  phone_number: ::String,
232
220
  expiration_time: ::Time,
233
221
  attributes: Hash[::String, ::String]
234
- },
222
+ }
235
223
  ]
236
224
  ) -> _PutDialRequestBatchResponseSuccess
237
225
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDialRequestBatchResponseSuccess
@@ -286,19 +274,7 @@ module Aws
286
274
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ConnectCampaignService/Client.html#update_campaign_dialer_config-instance_method
287
275
  def update_campaign_dialer_config: (
288
276
  id: ::String,
289
- dialer_config: {
290
- progressive_dialer_config: {
291
- bandwidth_allocation: ::Float,
292
- dialing_capacity: ::Float?
293
- }?,
294
- predictive_dialer_config: {
295
- bandwidth_allocation: ::Float,
296
- dialing_capacity: ::Float?
297
- }?,
298
- agentless_dialer_config: {
299
- dialing_capacity: ::Float?
300
- }?
301
- }
277
+ dialer_config: Params::dialer_config
302
278
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
303
279
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
304
280
 
data/sig/params.rbs ADDED
@@ -0,0 +1,27 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module ConnectCampaignService
10
+ module Params
11
+ type dialer_config = {
12
+ progressive_dialer_config: {
13
+ bandwidth_allocation: ::Float,
14
+ dialing_capacity: ::Float?
15
+ }?,
16
+ predictive_dialer_config: {
17
+ bandwidth_allocation: ::Float,
18
+ dialing_capacity: ::Float?
19
+ }?,
20
+ agentless_dialer_config: {
21
+ dialing_capacity: ::Float?
22
+ }?
23
+ }
24
+
25
+ end
26
+ end
27
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectcampaignservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.47.0
4
+ version: 1.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-connectcampaignservice/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs