aws-sdk-connect 1.224.0 → 1.225.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: 5a5d18897e400adfba7627353ad140d09b12afe5489a71436fee7b088e91365d
4
- data.tar.gz: 921698aaf37ccc95173ee40447c510c36c066bd6d5f1dd0ddcf0ff6f69c71299
3
+ metadata.gz: f54b21c409b8e6605097543e7c445b3268f5f4c44479222efe1cc4ffe5782cd1
4
+ data.tar.gz: 618793bb3f5538a5e94417702c8ea8bfc0d78a7769a579cdacd10a5f5542ff65
5
5
  SHA512:
6
- metadata.gz: d3d7f3399f99ec59fafa3015eb9101102429f6db291533b049d579dd50f533d90fd99b634d1f0dc9f52670f2bd61b2d5687068f49c418f301009658a61be3473
7
- data.tar.gz: d230f6c7f34f44e15a6fc1fc656cd4709bb42ab74093b0595b53c89c4bf4cb4f89c4c9e3011d961c93e93c3a9c5a34ff085cbb1ccda43e4efd68bf24c3bc9270
6
+ metadata.gz: 251ea227026da2ece77d62b2a3ae41b872a09e01157febcd89e382d24c2eb8d363e00891523d49832976481107f5082c5b4f2e2e28a58bdf428b410940263ef5
7
+ data.tar.gz: 70753afcdbea8feb353eb41840030f6c09ee0415d8f01668338843ea03ef37e1a87ec692de456cdc91fac107fdbceb6df54e0e76b84d4bb8e4d5d0b90b4ba614
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.225.0 (2025-11-20)
5
+ ------------------
6
+
7
+ * Feature - Add optional ability to exclude users from send notification actions for Contact Lens Rules.
8
+
4
9
  1.224.0 (2025-11-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.224.0
1
+ 1.225.0
@@ -3761,6 +3761,12 @@ module Aws::Connect
3761
3761
  # },
3762
3762
  # user_ids: ["UserId"],
3763
3763
  # },
3764
+ # exclusion: {
3765
+ # user_tags: {
3766
+ # "String" => "String",
3767
+ # },
3768
+ # user_ids: ["UserId"],
3769
+ # },
3764
3770
  # },
3765
3771
  # create_case_action: {
3766
3772
  # fields: [ # required
@@ -7023,6 +7029,10 @@ module Aws::Connect
7023
7029
  # resp.rule.actions[0].send_notification_action.recipient.user_tags["String"] #=> String
7024
7030
  # resp.rule.actions[0].send_notification_action.recipient.user_ids #=> Array
7025
7031
  # resp.rule.actions[0].send_notification_action.recipient.user_ids[0] #=> String
7032
+ # resp.rule.actions[0].send_notification_action.exclusion.user_tags #=> Hash
7033
+ # resp.rule.actions[0].send_notification_action.exclusion.user_tags["String"] #=> String
7034
+ # resp.rule.actions[0].send_notification_action.exclusion.user_ids #=> Array
7035
+ # resp.rule.actions[0].send_notification_action.exclusion.user_ids[0] #=> String
7026
7036
  # resp.rule.actions[0].create_case_action.fields #=> Array
7027
7037
  # resp.rule.actions[0].create_case_action.fields[0].id #=> String
7028
7038
  # resp.rule.actions[0].create_case_action.fields[0].value.boolean_value #=> Boolean
@@ -18622,8 +18632,10 @@ module Aws::Connect
18622
18632
  # and then puts the contact in queue, the call is then routed to the
18623
18633
  # agent, like any other inbound case.
18624
18634
  #
18625
- # There is a 60-second dialing timeout for this operation. If the call
18626
- # is not connected after 60 seconds, it fails.
18635
+ # Dialing timeout for this operation can be configured with the
18636
+ # “RingTimeoutInSeconds” parameter. If not specified, the default
18637
+ # dialing timeout will be 60 seconds which means if the call is not
18638
+ # connected within 60 seconds, it fails.
18627
18639
  #
18628
18640
  # <note markdown="1"> UK numbers with a 447 prefix are not allowed by default. Before you
18629
18641
  # can dial these UK mobile numbers, you must submit a service quota
@@ -22106,6 +22118,12 @@ module Aws::Connect
22106
22118
  # },
22107
22119
  # user_ids: ["UserId"],
22108
22120
  # },
22121
+ # exclusion: {
22122
+ # user_tags: {
22123
+ # "String" => "String",
22124
+ # },
22125
+ # user_ids: ["UserId"],
22126
+ # },
22109
22127
  # },
22110
22128
  # create_case_action: {
22111
22129
  # fields: [ # required
@@ -22942,7 +22960,7 @@ module Aws::Connect
22942
22960
  tracer: tracer
22943
22961
  )
22944
22962
  context[:gem_name] = 'aws-sdk-connect'
22945
- context[:gem_version] = '1.224.0'
22963
+ context[:gem_version] = '1.225.0'
22946
22964
  Seahorse::Client::Request.new(handlers, context)
22947
22965
  end
22948
22966
 
@@ -6132,6 +6132,7 @@ module Aws::Connect
6132
6132
  SendNotificationActionDefinition.add_member(:content, Shapes::ShapeRef.new(shape: Content, required: true, location_name: "Content"))
6133
6133
  SendNotificationActionDefinition.add_member(:content_type, Shapes::ShapeRef.new(shape: NotificationContentType, required: true, location_name: "ContentType"))
6134
6134
  SendNotificationActionDefinition.add_member(:recipient, Shapes::ShapeRef.new(shape: NotificationRecipientType, required: true, location_name: "Recipient"))
6135
+ SendNotificationActionDefinition.add_member(:exclusion, Shapes::ShapeRef.new(shape: NotificationRecipientType, location_name: "Exclusion"))
6135
6136
  SendNotificationActionDefinition.struct_class = Types::SendNotificationActionDefinition
6136
6137
 
6137
6138
  SendOutboundEmailRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
@@ -24443,6 +24443,10 @@ module Aws::Connect
24443
24443
  # Notification recipient.
24444
24444
  # @return [Types::NotificationRecipientType]
24445
24445
  #
24446
+ # @!attribute [rw] exclusion
24447
+ # Recipients to exclude from notification.
24448
+ # @return [Types::NotificationRecipientType]
24449
+ #
24446
24450
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SendNotificationActionDefinition AWS API Documentation
24447
24451
  #
24448
24452
  class SendNotificationActionDefinition < Struct.new(
@@ -24450,7 +24454,8 @@ module Aws::Connect
24450
24454
  :subject,
24451
24455
  :content,
24452
24456
  :content_type,
24453
- :recipient)
24457
+ :recipient,
24458
+ :exclusion)
24454
24459
  SENSITIVE = []
24455
24460
  include Aws::Structure
24456
24461
  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.224.0'
57
+ GEM_VERSION = '1.225.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -994,7 +994,11 @@ module Aws
994
994
  recipient: {
995
995
  user_tags: Hash[::String, ::String]?,
996
996
  user_ids: Array[::String]?
997
- }
997
+ },
998
+ exclusion: {
999
+ user_tags: Hash[::String, ::String]?,
1000
+ user_ids: Array[::String]?
1001
+ }?
998
1002
  }?,
999
1003
  create_case_action: {
1000
1004
  fields: Array[
@@ -5418,7 +5422,11 @@ module Aws
5418
5422
  recipient: {
5419
5423
  user_tags: Hash[::String, ::String]?,
5420
5424
  user_ids: Array[::String]?
5421
- }
5425
+ },
5426
+ exclusion: {
5427
+ user_tags: Hash[::String, ::String]?,
5428
+ user_ids: Array[::String]?
5429
+ }?
5422
5430
  }?,
5423
5431
  create_case_action: {
5424
5432
  fields: Array[
data/sig/types.rbs CHANGED
@@ -5612,6 +5612,7 @@ module Aws::Connect
5612
5612
  attr_accessor content: ::String
5613
5613
  attr_accessor content_type: ("PLAIN_TEXT")
5614
5614
  attr_accessor recipient: Types::NotificationRecipientType
5615
+ attr_accessor exclusion: Types::NotificationRecipientType
5615
5616
  SENSITIVE: []
5616
5617
  end
5617
5618
 
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.224.0
4
+ version: 1.225.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services