aws-sdk-connectcampaignsv2 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9457b35932b6de6db9bb03fab3ef7449cc1a694ea61dd09e1f6818693e3df3f0
4
- data.tar.gz: aaa557251ef0324b24afdc8509dca1f08a31894f1bf11f754ae65facc1f8942e
3
+ metadata.gz: e46e2672bd27d6d51a018a648dc77d29a08143693749a52e12d806d9fb9aa86a
4
+ data.tar.gz: 07fedcc90a76603b45fc84b58b0b20204129b8c1bdbe03cc3ba7c830bec7cd03
5
5
  SHA512:
6
- metadata.gz: 03d8d819bc26500f9fd05a953f13f42a62491c887e73c84cf9d02279f50747d6d11efadaec470ebc56a2a05dd1b8c05c1f819ebf7cee23e90d5b0d56ee8ad166
7
- data.tar.gz: 8456e2eda1d27ba59176137e48ccc6e236263d8396c390fb2ef0c853ed8539069e293bc0b1f0dd89d736e7b62d2acac9085cb13b798ea315e7f647167062acc6
6
+ metadata.gz: 2568c35b0c87511ead3ce36de897690c2d6c84282db877bfe5e4dc43751747d8252887a5686a6867875c822b099c967030c46574da77b2fbb39135d793cfa0e9
7
+ data.tar.gz: 942a02a7fc769980083d2dbda6791407cb114c6a936498fd781b4324de8efba4060c79e97509ec9e93cd0fdd44bfa173e93d2f95f79b333572537aa405b302ad
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2025-11-19)
5
+ ------------------
6
+
7
+ * Feature - This release added support for ring timer configuration for campaign calls.
8
+
4
9
  1.15.0 (2025-10-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.16.0
@@ -545,6 +545,7 @@ module Aws::ConnectCampaignsV2
545
545
  # enable_answer_machine_detection: false, # required
546
546
  # await_answer_machine_prompt: false,
547
547
  # },
548
+ # ring_timeout: 1,
548
549
  # },
549
550
  # },
550
551
  # sms: {
@@ -904,6 +905,7 @@ module Aws::ConnectCampaignsV2
904
905
  # resp.campaign.channel_subtype_config.telephony.default_outbound_config.connect_source_phone_number #=> String
905
906
  # resp.campaign.channel_subtype_config.telephony.default_outbound_config.answer_machine_detection_config.enable_answer_machine_detection #=> Boolean
906
907
  # resp.campaign.channel_subtype_config.telephony.default_outbound_config.answer_machine_detection_config.await_answer_machine_prompt #=> Boolean
908
+ # resp.campaign.channel_subtype_config.telephony.default_outbound_config.ring_timeout #=> Integer
907
909
  # resp.campaign.channel_subtype_config.sms.capacity #=> Float
908
910
  # resp.campaign.channel_subtype_config.sms.default_outbound_config.connect_source_phone_number_arn #=> String
909
911
  # resp.campaign.channel_subtype_config.sms.default_outbound_config.wisdom_template_arn #=> String
@@ -1374,6 +1376,7 @@ module Aws::ConnectCampaignsV2
1374
1376
  # enable_answer_machine_detection: false, # required
1375
1377
  # await_answer_machine_prompt: false,
1376
1378
  # },
1379
+ # ring_timeout: 1,
1377
1380
  # },
1378
1381
  # sms: {
1379
1382
  # destination_phone_number: "DestinationPhoneNumber", # required
@@ -1665,6 +1668,7 @@ module Aws::ConnectCampaignsV2
1665
1668
  # enable_answer_machine_detection: false, # required
1666
1669
  # await_answer_machine_prompt: false,
1667
1670
  # },
1671
+ # ring_timeout: 1,
1668
1672
  # },
1669
1673
  # },
1670
1674
  # sms: {
@@ -1967,7 +1971,7 @@ module Aws::ConnectCampaignsV2
1967
1971
  tracer: tracer
1968
1972
  )
1969
1973
  context[:gem_name] = 'aws-sdk-connectcampaignsv2'
1970
- context[:gem_version] = '1.15.0'
1974
+ context[:gem_version] = '1.16.0'
1971
1975
  Seahorse::Client::Request.new(handlers, context)
1972
1976
  end
1973
1977
 
@@ -161,6 +161,7 @@ module Aws::ConnectCampaignsV2
161
161
  RestrictedPeriodName = Shapes::StringShape.new(name: 'RestrictedPeriodName')
162
162
  RestrictedPeriods = Shapes::UnionShape.new(name: 'RestrictedPeriods')
163
163
  ResumeCampaignRequest = Shapes::StructureShape.new(name: 'ResumeCampaignRequest')
164
+ RingTimeout = Shapes::IntegerShape.new(name: 'RingTimeout')
164
165
  Schedule = Shapes::StructureShape.new(name: 'Schedule')
165
166
  ServiceLinkedRoleArn = Shapes::StringShape.new(name: 'ServiceLinkedRoleArn')
166
167
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
@@ -704,11 +705,13 @@ module Aws::ConnectCampaignsV2
704
705
  TelephonyChannelSubtypeParameters.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "attributes"))
705
706
  TelephonyChannelSubtypeParameters.add_member(:connect_source_phone_number, Shapes::ShapeRef.new(shape: SourcePhoneNumber, location_name: "connectSourcePhoneNumber"))
706
707
  TelephonyChannelSubtypeParameters.add_member(:answer_machine_detection_config, Shapes::ShapeRef.new(shape: AnswerMachineDetectionConfig, location_name: "answerMachineDetectionConfig"))
708
+ TelephonyChannelSubtypeParameters.add_member(:ring_timeout, Shapes::ShapeRef.new(shape: RingTimeout, location_name: "ringTimeout"))
707
709
  TelephonyChannelSubtypeParameters.struct_class = Types::TelephonyChannelSubtypeParameters
708
710
 
709
711
  TelephonyOutboundConfig.add_member(:connect_contact_flow_id, Shapes::ShapeRef.new(shape: ContactFlowId, required: true, location_name: "connectContactFlowId"))
710
712
  TelephonyOutboundConfig.add_member(:connect_source_phone_number, Shapes::ShapeRef.new(shape: SourcePhoneNumber, location_name: "connectSourcePhoneNumber"))
711
713
  TelephonyOutboundConfig.add_member(:answer_machine_detection_config, Shapes::ShapeRef.new(shape: AnswerMachineDetectionConfig, location_name: "answerMachineDetectionConfig"))
714
+ TelephonyOutboundConfig.add_member(:ring_timeout, Shapes::ShapeRef.new(shape: RingTimeout, location_name: "ringTimeout"))
712
715
  TelephonyOutboundConfig.struct_class = Types::TelephonyOutboundConfig
713
716
 
714
717
  TelephonyOutboundMode.add_member(:progressive, Shapes::ShapeRef.new(shape: ProgressiveConfig, location_name: "progressive"))
@@ -2099,13 +2099,18 @@ module Aws::ConnectCampaignsV2
2099
2099
  # Answering Machine Detection config
2100
2100
  # @return [Types::AnswerMachineDetectionConfig]
2101
2101
  #
2102
+ # @!attribute [rw] ring_timeout
2103
+ # Ring timeout for outbound calls
2104
+ # @return [Integer]
2105
+ #
2102
2106
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaignsv2-2024-04-23/TelephonyChannelSubtypeParameters AWS API Documentation
2103
2107
  #
2104
2108
  class TelephonyChannelSubtypeParameters < Struct.new(
2105
2109
  :destination_phone_number,
2106
2110
  :attributes,
2107
2111
  :connect_source_phone_number,
2108
- :answer_machine_detection_config)
2112
+ :answer_machine_detection_config,
2113
+ :ring_timeout)
2109
2114
  SENSITIVE = [:destination_phone_number, :attributes]
2110
2115
  include Aws::Structure
2111
2116
  end
@@ -2126,12 +2131,17 @@ module Aws::ConnectCampaignsV2
2126
2131
  # Answering Machine Detection config
2127
2132
  # @return [Types::AnswerMachineDetectionConfig]
2128
2133
  #
2134
+ # @!attribute [rw] ring_timeout
2135
+ # Ring timeout for outbound calls
2136
+ # @return [Integer]
2137
+ #
2129
2138
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaignsv2-2024-04-23/TelephonyOutboundConfig AWS API Documentation
2130
2139
  #
2131
2140
  class TelephonyOutboundConfig < Struct.new(
2132
2141
  :connect_contact_flow_id,
2133
2142
  :connect_source_phone_number,
2134
- :answer_machine_detection_config)
2143
+ :answer_machine_detection_config,
2144
+ :ring_timeout)
2135
2145
  SENSITIVE = []
2136
2146
  include Aws::Structure
2137
2147
  end
@@ -54,7 +54,7 @@ module Aws::ConnectCampaignsV2
54
54
  autoload :EndpointProvider, 'aws-sdk-connectcampaignsv2/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connectcampaignsv2/endpoints'
56
56
 
57
- GEM_VERSION = '1.15.0'
57
+ GEM_VERSION = '1.16.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -115,7 +115,8 @@ module Aws
115
115
  answer_machine_detection_config: {
116
116
  enable_answer_machine_detection: bool,
117
117
  await_answer_machine_prompt: bool?
118
- }?
118
+ }?,
119
+ ring_timeout: ::Integer?
119
120
  }
120
121
  }?,
121
122
  sms: {
@@ -447,7 +448,8 @@ module Aws
447
448
  answer_machine_detection_config: {
448
449
  enable_answer_machine_detection: bool,
449
450
  await_answer_machine_prompt: bool?
450
- }?
451
+ }?,
452
+ ring_timeout: ::Integer?
451
453
  }?,
452
454
  sms: {
453
455
  destination_phone_number: ::String,
@@ -562,7 +564,8 @@ module Aws
562
564
  answer_machine_detection_config: {
563
565
  enable_answer_machine_detection: bool,
564
566
  await_answer_machine_prompt: bool?
565
- }?
567
+ }?,
568
+ ring_timeout: ::Integer?
566
569
  }
567
570
  }?,
568
571
  sms: {
data/sig/types.rbs CHANGED
@@ -691,6 +691,7 @@ module Aws::ConnectCampaignsV2
691
691
  attr_accessor attributes: ::Hash[::String, ::String]
692
692
  attr_accessor connect_source_phone_number: ::String
693
693
  attr_accessor answer_machine_detection_config: Types::AnswerMachineDetectionConfig
694
+ attr_accessor ring_timeout: ::Integer
694
695
  SENSITIVE: [:destination_phone_number, :attributes]
695
696
  end
696
697
 
@@ -698,6 +699,7 @@ module Aws::ConnectCampaignsV2
698
699
  attr_accessor connect_contact_flow_id: ::String
699
700
  attr_accessor connect_source_phone_number: ::String
700
701
  attr_accessor answer_machine_detection_config: Types::AnswerMachineDetectionConfig
702
+ attr_accessor ring_timeout: ::Integer
701
703
  SENSITIVE: []
702
704
  end
703
705
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectcampaignsv2
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