aws-sdk-connectcampaignservice 1.15.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04c412db6e95f175385bc19a4bc713eb948840451886c41fd3d0d15d33de1c7d
4
- data.tar.gz: 2b656276ad5887cd3b6af8ea14ad7d559680a2054a1bfa1bafe4617574e2ffb7
3
+ metadata.gz: 22787a7c888b29622bb531c4c329ba27e34d8788521cabfed1f1d9482f993971
4
+ data.tar.gz: 32c5aa1aea25be685696fcd3345e09e15b2b468d4d05abbe93fe1b6694dffecd
5
5
  SHA512:
6
- metadata.gz: aeb19b62dbc2cc7aa0f52e2c7222c9e36311769b9c0125449728e5ac4a2a313cc23a1c104787f6af69020341148c3faa8a528c6a74f1e0f6812ef137ca5856d8
7
- data.tar.gz: 8afc3ee0b7a5018a240037d5ab42400a10e957ceb1bc066e22c072d900d74c048b1d9bb7fcddcd2d4aeb5a32a5b00720f75b7dfbcb5bf13b46214a5bd348607a
6
+ metadata.gz: a6ab2f179ebafd80d78a71f64bc57b7d110968e4bf500dd0283a89138331cfe589f5154f442a11cefc95aee86d526c764c7b574da311316610784d698de699c0
7
+ data.tar.gz: a66dfa61631fc2328a324e7359211a71298885676b942d48e3241092e70bc159630bdbe54c82de59df0f3e01e0a5bed250dcccc7313640f7186906a5865a14ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2024-04-26)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for specifying if Answering Machine should wait for prompt sound.
8
+
4
9
  1.15.0 (2024-04-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
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.15.0'
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connectcampaignservice/customizations'
52
52
  # @!group service
53
53
  module Aws::ConnectCampaignService
54
54
 
55
- GEM_VERSION = '1.15.0'
55
+ GEM_VERSION = '1.16.0'
56
56
 
57
57
  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
@@ -21,6 +21,7 @@ module Aws::ConnectCampaignService
21
21
 
22
22
  class AnswerMachineDetectionConfig
23
23
  attr_accessor enable_answer_machine_detection: bool
24
+ attr_accessor await_answer_machine_prompt: bool
24
25
  SENSITIVE: []
25
26
  end
26
27
 
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.15.0
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-25 00:00:00.000000000 Z
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