aws-sdk-connectcampaignservice 1.15.0 → 1.16.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-connectcampaignservice/client.rb +4 -1
- data/lib/aws-sdk-connectcampaignservice/client_api.rb +2 -0
- data/lib/aws-sdk-connectcampaignservice/types.rb +6 -1
- data/lib/aws-sdk-connectcampaignservice.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +1 -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: 22787a7c888b29622bb531c4c329ba27e34d8788521cabfed1f1d9482f993971
|
|
4
|
+
data.tar.gz: 32c5aa1aea25be685696fcd3345e09e15b2b468d4d05abbe93fe1b6694dffecd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6ab2f179ebafd80d78a71f64bc57b7d110968e4bf500dd0283a89138331cfe589f5154f442a11cefc95aee86d526c764c7b574da311316610784d698de699c0
|
|
7
|
+
data.tar.gz: a66dfa61631fc2328a324e7359211a71298885676b942d48e3241092e70bc159630bdbe54c82de59df0f3e01e0a5bed250dcccc7313640f7186906a5865a14ee
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.16.0
|
|
@@ -460,6 +460,7 @@ module Aws::ConnectCampaignService
|
|
|
460
460
|
# connect_queue_id: "QueueId",
|
|
461
461
|
# answer_machine_detection_config: {
|
|
462
462
|
# enable_answer_machine_detection: false, # required
|
|
463
|
+
# await_answer_machine_prompt: false,
|
|
463
464
|
# },
|
|
464
465
|
# },
|
|
465
466
|
# tags: {
|
|
@@ -580,6 +581,7 @@ module Aws::ConnectCampaignService
|
|
|
580
581
|
# resp.campaign.outbound_call_config.connect_source_phone_number #=> String
|
|
581
582
|
# resp.campaign.outbound_call_config.connect_queue_id #=> String
|
|
582
583
|
# resp.campaign.outbound_call_config.answer_machine_detection_config.enable_answer_machine_detection #=> Boolean
|
|
584
|
+
# resp.campaign.outbound_call_config.answer_machine_detection_config.await_answer_machine_prompt #=> Boolean
|
|
583
585
|
# resp.campaign.tags #=> Hash
|
|
584
586
|
# resp.campaign.tags["TagKey"] #=> String
|
|
585
587
|
#
|
|
@@ -1118,6 +1120,7 @@ module Aws::ConnectCampaignService
|
|
|
1118
1120
|
# connect_source_phone_number: "SourcePhoneNumber",
|
|
1119
1121
|
# answer_machine_detection_config: {
|
|
1120
1122
|
# enable_answer_machine_detection: false, # required
|
|
1123
|
+
# await_answer_machine_prompt: false,
|
|
1121
1124
|
# },
|
|
1122
1125
|
# })
|
|
1123
1126
|
#
|
|
@@ -1143,7 +1146,7 @@ module Aws::ConnectCampaignService
|
|
|
1143
1146
|
params: params,
|
|
1144
1147
|
config: config)
|
|
1145
1148
|
context[:gem_name] = 'aws-sdk-connectcampaignservice'
|
|
1146
|
-
context[:gem_version] = '1.
|
|
1149
|
+
context[:gem_version] = '1.16.0'
|
|
1147
1150
|
Seahorse::Client::Request.new(handlers, context)
|
|
1148
1151
|
end
|
|
1149
1152
|
|
|
@@ -124,6 +124,7 @@ module Aws::ConnectCampaignService
|
|
|
124
124
|
AgentlessDialerConfig.struct_class = Types::AgentlessDialerConfig
|
|
125
125
|
|
|
126
126
|
AnswerMachineDetectionConfig.add_member(:enable_answer_machine_detection, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enableAnswerMachineDetection"))
|
|
127
|
+
AnswerMachineDetectionConfig.add_member(:await_answer_machine_prompt, Shapes::ShapeRef.new(shape: Boolean, location_name: "awaitAnswerMachinePrompt"))
|
|
127
128
|
AnswerMachineDetectionConfig.struct_class = Types::AnswerMachineDetectionConfig
|
|
128
129
|
|
|
129
130
|
Attributes.key = Shapes::ShapeRef.new(shape: AttributeName)
|
|
@@ -392,6 +393,7 @@ module Aws::ConnectCampaignService
|
|
|
392
393
|
"endpointPrefix" => "connect-campaigns",
|
|
393
394
|
"jsonVersion" => "1.1",
|
|
394
395
|
"protocol" => "rest-json",
|
|
396
|
+
"protocols" => ["rest-json"],
|
|
395
397
|
"serviceFullName" => "AmazonConnectCampaignService",
|
|
396
398
|
"serviceId" => "ConnectCampaigns",
|
|
397
399
|
"signatureVersion" => "v4",
|
|
@@ -50,10 +50,15 @@ module Aws::ConnectCampaignService
|
|
|
50
50
|
# Enable or disable answering machine detection
|
|
51
51
|
# @return [Boolean]
|
|
52
52
|
#
|
|
53
|
+
# @!attribute [rw] await_answer_machine_prompt
|
|
54
|
+
# Enable or disable await answer machine prompt
|
|
55
|
+
# @return [Boolean]
|
|
56
|
+
#
|
|
53
57
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/AnswerMachineDetectionConfig AWS API Documentation
|
|
54
58
|
#
|
|
55
59
|
class AnswerMachineDetectionConfig < Struct.new(
|
|
56
|
-
:enable_answer_machine_detection
|
|
60
|
+
:enable_answer_machine_detection,
|
|
61
|
+
:await_answer_machine_prompt)
|
|
57
62
|
SENSITIVE = []
|
|
58
63
|
include Aws::Structure
|
|
59
64
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -100,7 +100,8 @@ module Aws
|
|
|
100
100
|
connect_source_phone_number: ::String?,
|
|
101
101
|
connect_queue_id: ::String?,
|
|
102
102
|
answer_machine_detection_config: {
|
|
103
|
-
enable_answer_machine_detection: bool
|
|
103
|
+
enable_answer_machine_detection: bool,
|
|
104
|
+
await_answer_machine_prompt: bool?
|
|
104
105
|
}?
|
|
105
106
|
},
|
|
106
107
|
?tags: Hash[::String, ::String]
|
|
@@ -308,7 +309,8 @@ module Aws
|
|
|
308
309
|
?connect_contact_flow_id: ::String,
|
|
309
310
|
?connect_source_phone_number: ::String,
|
|
310
311
|
?answer_machine_detection_config: {
|
|
311
|
-
enable_answer_machine_detection: bool
|
|
312
|
+
enable_answer_machine_detection: bool,
|
|
313
|
+
await_answer_machine_prompt: bool?
|
|
312
314
|
}
|
|
313
315
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
314
316
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
data/sig/types.rbs
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-connectcampaignservice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-04-
|
|
11
|
+
date: 2024-04-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|