aws-sdk-connect 1.249.0 → 1.250.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: 1664e20c5bea727b8760c107351cced39ae3c3e9bed63d18b23f4b317d76ee20
4
- data.tar.gz: 5df4af6d92d9844f8b858e7748be3d30dd4b383161cfa3c08fb09627152e4d01
3
+ metadata.gz: d4bc41b55e39dbcdb037927accd609b074685951c4b07e11b7e34af31aa5146d
4
+ data.tar.gz: 064521e4140e7b32afea9667774f92436a415e3f225a424e9f6318cef8817154
5
5
  SHA512:
6
- metadata.gz: dc7b9ec213ea175f5ea9fe1607de3de1b0d83add056aaf2b3cca0c87d3940c1bb2c396b2b7c56352ab710e9d922accd695a64ce4dfaf10319db125eda4172e51
7
- data.tar.gz: c79f9d3a1a1cc81bba1da03aeca3b819396724f631774b29ae669d31a1fcc287ad1f6bc85312f4034739a9faefb5f8b7e1e57d24294ef7d8a6df4d84a958ca19
6
+ metadata.gz: e687946fe4691abb0af3968484f11c3e63f36c5846f1a20ffe5810efa66e30c6a168e7a16b40f413f3ff1b1487a1eed2c6fce89c618909fcbb689b37da37c409
7
+ data.tar.gz: eb5c71fb800fda2e0a7fbe9bbc13b631b9590c9e85a7dec42140ed2842646cf6b3df127783c917d0153f2856b6ea6ceeaaeb6e6a96ce43180016357bde981e33
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.250.0 (2026-04-07)
5
+ ------------------
6
+
7
+ * Feature - The voice enhancement mode used by the agent can now be viewed on the contact record via the DescribeContact api.
8
+
4
9
  1.249.0 (2026-04-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.249.0
1
+ 1.250.0
@@ -7523,6 +7523,7 @@ module Aws::Connect
7523
7523
  # resp.contact.agent_info.state_transitions[0].state #=> String, one of "INITIAL", "CONNECTED", "DISCONNECTED", "MISSED"
7524
7524
  # resp.contact.agent_info.state_transitions[0].state_start_timestamp #=> Time
7525
7525
  # resp.contact.agent_info.state_transitions[0].state_end_timestamp #=> Time
7526
+ # resp.contact.agent_info.voice_enhancement_mode #=> String, one of "VOICE_ISOLATION", "NOISE_SUPPRESSION", "NONE"
7526
7527
  # resp.contact.initiation_timestamp #=> Time
7527
7528
  # resp.contact.disconnect_timestamp #=> Time
7528
7529
  # resp.contact.last_update_timestamp #=> Time
@@ -28848,7 +28849,7 @@ module Aws::Connect
28848
28849
  tracer: tracer
28849
28850
  )
28850
28851
  context[:gem_name] = 'aws-sdk-connect'
28851
- context[:gem_version] = '1.249.0'
28852
+ context[:gem_version] = '1.250.0'
28852
28853
  Seahorse::Client::Request.new(handlers, context)
28853
28854
  end
28854
28855
 
@@ -2205,6 +2205,7 @@ module Aws::Connect
2205
2205
  AgentInfo.add_member(:after_contact_work_end_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "AfterContactWorkEndTimestamp"))
2206
2206
  AgentInfo.add_member(:agent_initiated_hold_duration, Shapes::ShapeRef.new(shape: Duration, location_name: "AgentInitiatedHoldDuration"))
2207
2207
  AgentInfo.add_member(:state_transitions, Shapes::ShapeRef.new(shape: StateTransitions, location_name: "StateTransitions"))
2208
+ AgentInfo.add_member(:voice_enhancement_mode, Shapes::ShapeRef.new(shape: VoiceEnhancementMode, location_name: "VoiceEnhancementMode"))
2208
2209
  AgentInfo.struct_class = Types::AgentInfo
2209
2210
 
2210
2211
  AgentQualityMetrics.add_member(:audio, Shapes::ShapeRef.new(shape: AudioQualityMetricsInfo, location_name: "Audio"))
@@ -360,6 +360,13 @@ module Aws::Connect
360
360
  # List of `StateTransition` for a supervisor.
361
361
  # @return [Array<Types::StateTransition>]
362
362
  #
363
+ # @!attribute [rw] voice_enhancement_mode
364
+ # The voice enhancement mode used by the agent as the call is ending.
365
+ # Valid values: VOICE\_ISOLATION \| NOISE\_SUPPRESSION \| NONE. A
366
+ # value of null indicates this mode has not yet been set for this
367
+ # user.
368
+ # @return [String]
369
+ #
363
370
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentInfo AWS API Documentation
364
371
  #
365
372
  class AgentInfo < Struct.new(
@@ -375,7 +382,8 @@ module Aws::Connect
375
382
  :after_contact_work_start_timestamp,
376
383
  :after_contact_work_end_timestamp,
377
384
  :agent_initiated_hold_duration,
378
- :state_transitions)
385
+ :state_transitions,
386
+ :voice_enhancement_mode)
379
387
  SENSITIVE = []
380
388
  include Aws::Structure
381
389
  end
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.249.0'
57
+ GEM_VERSION = '1.250.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -99,6 +99,7 @@ module Aws::Connect
99
99
  attr_accessor after_contact_work_end_timestamp: ::Time
100
100
  attr_accessor agent_initiated_hold_duration: ::Integer
101
101
  attr_accessor state_transitions: ::Array[Types::StateTransition]
102
+ attr_accessor voice_enhancement_mode: ("VOICE_ISOLATION" | "NOISE_SUPPRESSION" | "NONE")
102
103
  SENSITIVE: []
103
104
  end
104
105
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.249.0
4
+ version: 1.250.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services