aws-sdk-sesv2 1.63.0 → 1.64.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: 0ef48ef98a4ae4954f5ea6474fe33a2b78cbec93309dfabd5e87f371404e330a
4
- data.tar.gz: e7c46dbe75d6f0d38a7ef7ea1f96e1b562cb997e2a20b8c5811961db11910e0e
3
+ metadata.gz: 94dc4bc753251a3c3189b30ec740771309a9e9d758b8611d05a31225a96d446a
4
+ data.tar.gz: b26b5ac1779942c70ed6e8e5974cd410a440d65211619c1331f30d204511e98e
5
5
  SHA512:
6
- metadata.gz: 00c4c87db22d72afc609abd70fe75bd57117c4f481b131d0bc8e556903ed17b23c68130aa31af89d5ad974de8035e7075f2d806afd5196b34a592d320d34b4d8
7
- data.tar.gz: b41795a9dfa861f43a763c5b6fa2ee25feb1dad6481ab42306bbc83971d0ab03d08e18bfed1c48ccc03cefe619b04f35ebb26475dcfd23bd4c3b8ec8d15a925f
6
+ metadata.gz: b3acfa47cfe8b7983c7bd8d7533ea1c268e0bb249ca55d512c7f11ce892a294d53dae840f48309ae0b79e86f21f49d2f16274d599c592dc42280d5bd930df537
7
+ data.tar.gz: 66019a97808747a16f8052467fbfa0654c903684fc1c5f805a26c3b1290c75d5f6c1282fb014c3c6977ae813abfe766acfede55f2701b9620003452af399d8d6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.0 (2024-10-15)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for email maximum delivery seconds that allows senders to control the time within which their emails are attempted for delivery.
8
+
4
9
  1.63.0 (2024-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.64.0
@@ -584,6 +584,7 @@ module Aws::SESV2
584
584
  # delivery_options: {
585
585
  # tls_policy: "REQUIRE", # accepts REQUIRE, OPTIONAL
586
586
  # sending_pool_name: "PoolName",
587
+ # max_delivery_seconds: 1,
587
588
  # },
588
589
  # reputation_options: {
589
590
  # reputation_metrics_enabled: false,
@@ -1767,6 +1768,7 @@ module Aws::SESV2
1767
1768
  # resp.tracking_options.https_policy #=> String, one of "REQUIRE", "REQUIRE_OPEN_ONLY", "OPTIONAL"
1768
1769
  # resp.delivery_options.tls_policy #=> String, one of "REQUIRE", "OPTIONAL"
1769
1770
  # resp.delivery_options.sending_pool_name #=> String
1771
+ # resp.delivery_options.max_delivery_seconds #=> Integer
1770
1772
  # resp.reputation_options.reputation_metrics_enabled #=> Boolean
1771
1773
  # resp.reputation_options.last_fresh_start #=> Time
1772
1774
  # resp.sending_options.sending_enabled #=> Boolean
@@ -3753,6 +3755,12 @@ module Aws::SESV2
3753
3755
  # The name of the dedicated IP pool to associate with the configuration
3754
3756
  # set.
3755
3757
  #
3758
+ # @option params [Integer] :max_delivery_seconds
3759
+ # The maximum amount of time, in seconds, that Amazon SES API v2 will
3760
+ # attempt delivery of email. If specified, the value must greater than
3761
+ # or equal to 300 seconds (5 minutes) and less than or equal to 50400
3762
+ # seconds (840 minutes).
3763
+ #
3756
3764
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3757
3765
  #
3758
3766
  # @example Request syntax with placeholder values
@@ -3761,6 +3769,7 @@ module Aws::SESV2
3761
3769
  # configuration_set_name: "ConfigurationSetName", # required
3762
3770
  # tls_policy: "REQUIRE", # accepts REQUIRE, OPTIONAL
3763
3771
  # sending_pool_name: "SendingPoolName",
3772
+ # max_delivery_seconds: 1,
3764
3773
  # })
3765
3774
  #
3766
3775
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutConfigurationSetDeliveryOptions AWS API Documentation
@@ -5176,7 +5185,7 @@ module Aws::SESV2
5176
5185
  tracer: tracer
5177
5186
  )
5178
5187
  context[:gem_name] = 'aws-sdk-sesv2'
5179
- context[:gem_version] = '1.63.0'
5188
+ context[:gem_version] = '1.64.0'
5180
5189
  Seahorse::Client::Request.new(handlers, context)
5181
5190
  end
5182
5191
 
@@ -317,6 +317,7 @@ module Aws::SESV2
317
317
  MailFromDomainStatus = Shapes::StringShape.new(name: 'MailFromDomainStatus')
318
318
  MailType = Shapes::StringShape.new(name: 'MailType')
319
319
  Max24HourSend = Shapes::FloatShape.new(name: 'Max24HourSend')
320
+ MaxDeliverySeconds = Shapes::IntegerShape.new(name: 'MaxDeliverySeconds')
320
321
  MaxItems = Shapes::IntegerShape.new(name: 'MaxItems')
321
322
  MaxSendRate = Shapes::FloatShape.new(name: 'MaxSendRate')
322
323
  Message = Shapes::StructureShape.new(name: 'Message')
@@ -817,6 +818,7 @@ module Aws::SESV2
817
818
 
818
819
  DeliveryOptions.add_member(:tls_policy, Shapes::ShapeRef.new(shape: TlsPolicy, location_name: "TlsPolicy"))
819
820
  DeliveryOptions.add_member(:sending_pool_name, Shapes::ShapeRef.new(shape: PoolName, location_name: "SendingPoolName"))
821
+ DeliveryOptions.add_member(:max_delivery_seconds, Shapes::ShapeRef.new(shape: MaxDeliverySeconds, location_name: "MaxDeliverySeconds"))
820
822
  DeliveryOptions.struct_class = Types::DeliveryOptions
821
823
 
822
824
  Destination.add_member(:to_addresses, Shapes::ShapeRef.new(shape: EmailAddressList, location_name: "ToAddresses"))
@@ -1499,6 +1501,7 @@ module Aws::SESV2
1499
1501
  PutConfigurationSetDeliveryOptionsRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, required: true, location: "uri", location_name: "ConfigurationSetName"))
1500
1502
  PutConfigurationSetDeliveryOptionsRequest.add_member(:tls_policy, Shapes::ShapeRef.new(shape: TlsPolicy, location_name: "TlsPolicy"))
1501
1503
  PutConfigurationSetDeliveryOptionsRequest.add_member(:sending_pool_name, Shapes::ShapeRef.new(shape: SendingPoolName, location_name: "SendingPoolName"))
1504
+ PutConfigurationSetDeliveryOptionsRequest.add_member(:max_delivery_seconds, Shapes::ShapeRef.new(shape: MaxDeliverySeconds, location_name: "MaxDeliverySeconds"))
1502
1505
  PutConfigurationSetDeliveryOptionsRequest.struct_class = Types::PutConfigurationSetDeliveryOptionsRequest
1503
1506
 
1504
1507
  PutConfigurationSetDeliveryOptionsResponse.struct_class = Types::PutConfigurationSetDeliveryOptionsResponse
@@ -1694,11 +1694,19 @@ module Aws::SESV2
1694
1694
  # configuration set.
1695
1695
  # @return [String]
1696
1696
  #
1697
+ # @!attribute [rw] max_delivery_seconds
1698
+ # The maximum amount of time, in seconds, that Amazon SES API v2 will
1699
+ # attempt delivery of email. If specified, the value must greater than
1700
+ # or equal to 300 seconds (5 minutes) and less than or equal to 50400
1701
+ # seconds (840 minutes).
1702
+ # @return [Integer]
1703
+ #
1697
1704
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeliveryOptions AWS API Documentation
1698
1705
  #
1699
1706
  class DeliveryOptions < Struct.new(
1700
1707
  :tls_policy,
1701
- :sending_pool_name)
1708
+ :sending_pool_name,
1709
+ :max_delivery_seconds)
1702
1710
  SENSITIVE = []
1703
1711
  include Aws::Structure
1704
1712
  end
@@ -5471,12 +5479,20 @@ module Aws::SESV2
5471
5479
  # configuration set.
5472
5480
  # @return [String]
5473
5481
  #
5482
+ # @!attribute [rw] max_delivery_seconds
5483
+ # The maximum amount of time, in seconds, that Amazon SES API v2 will
5484
+ # attempt delivery of email. If specified, the value must greater than
5485
+ # or equal to 300 seconds (5 minutes) and less than or equal to 50400
5486
+ # seconds (840 minutes).
5487
+ # @return [Integer]
5488
+ #
5474
5489
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutConfigurationSetDeliveryOptionsRequest AWS API Documentation
5475
5490
  #
5476
5491
  class PutConfigurationSetDeliveryOptionsRequest < Struct.new(
5477
5492
  :configuration_set_name,
5478
5493
  :tls_policy,
5479
- :sending_pool_name)
5494
+ :sending_pool_name,
5495
+ :max_delivery_seconds)
5480
5496
  SENSITIVE = []
5481
5497
  include Aws::Structure
5482
5498
  end
data/lib/aws-sdk-sesv2.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::SESV2
54
54
  autoload :EndpointProvider, 'aws-sdk-sesv2/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-sesv2/endpoints'
56
56
 
57
- GEM_VERSION = '1.63.0'
57
+ GEM_VERSION = '1.64.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -116,7 +116,8 @@ module Aws
116
116
  },
117
117
  ?delivery_options: {
118
118
  tls_policy: ("REQUIRE" | "OPTIONAL")?,
119
- sending_pool_name: ::String?
119
+ sending_pool_name: ::String?,
120
+ max_delivery_seconds: ::Integer?
120
121
  },
121
122
  ?reputation_options: {
122
123
  reputation_metrics_enabled: bool?,
@@ -1054,7 +1055,8 @@ module Aws
1054
1055
  def put_configuration_set_delivery_options: (
1055
1056
  configuration_set_name: ::String,
1056
1057
  ?tls_policy: ("REQUIRE" | "OPTIONAL"),
1057
- ?sending_pool_name: ::String
1058
+ ?sending_pool_name: ::String,
1059
+ ?max_delivery_seconds: ::Integer
1058
1060
  ) -> _PutConfigurationSetDeliveryOptionsResponseSuccess
1059
1061
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetDeliveryOptionsResponseSuccess
1060
1062
 
data/sig/types.rbs CHANGED
@@ -424,6 +424,7 @@ module Aws::SESV2
424
424
  class DeliveryOptions
425
425
  attr_accessor tls_policy: ("REQUIRE" | "OPTIONAL")
426
426
  attr_accessor sending_pool_name: ::String
427
+ attr_accessor max_delivery_seconds: ::Integer
427
428
  SENSITIVE: []
428
429
  end
429
430
 
@@ -1279,6 +1280,7 @@ module Aws::SESV2
1279
1280
  attr_accessor configuration_set_name: ::String
1280
1281
  attr_accessor tls_policy: ("REQUIRE" | "OPTIONAL")
1281
1282
  attr_accessor sending_pool_name: ::String
1283
+ attr_accessor max_delivery_seconds: ::Integer
1282
1284
  SENSITIVE: []
1283
1285
  end
1284
1286
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sesv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.63.0
4
+ version: 1.64.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-09-27 00:00:00.000000000 Z
11
+ date: 2024-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core