aws-sdk-sesv2 1.62.0 → 1.63.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: 83671cd7507b46a0447a1ed57e97c41b27337094a154cf3a0e019c16f4677565
4
- data.tar.gz: fc1b6f68570ea32018f2cede3728981fe510b983ad7e186c008e1dbcd20d134f
3
+ metadata.gz: 0ef48ef98a4ae4954f5ea6474fe33a2b78cbec93309dfabd5e87f371404e330a
4
+ data.tar.gz: e7c46dbe75d6f0d38a7ef7ea1f96e1b562cb997e2a20b8c5811961db11910e0e
5
5
  SHA512:
6
- metadata.gz: ae0d7e17890d111205ac213cd20fda07b7c8dcd4d54cd450b7726c9ace9a30837dc52ecb56fd3c61a25c9085471c9120952e4e6a49a9a00417cde267b25562e9
7
- data.tar.gz: 317eb1808b311c3f45a949a3343350bf1433741174f0bb37abac633006fc716dc06e242aba8b083c534edf0bbb72a68eed1a81569f18928b9747bfd3d94aee96
6
+ metadata.gz: 00c4c87db22d72afc609abd70fe75bd57117c4f481b131d0bc8e556903ed17b23c68130aa31af89d5ad974de8035e7075f2d806afd5196b34a592d320d34b4d8
7
+ data.tar.gz: b41795a9dfa861f43a763c5b6fa2ee25feb1dad6481ab42306bbc83971d0ab03d08e18bfed1c48ccc03cefe619b04f35ebb26475dcfd23bd4c3b8ec8d15a925f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2024-09-27)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for engagement tracking over Https using custom domains.
8
+
4
9
  1.62.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -579,6 +579,7 @@ module Aws::SESV2
579
579
  # configuration_set_name: "ConfigurationSetName", # required
580
580
  # tracking_options: {
581
581
  # custom_redirect_domain: "CustomRedirectDomain", # required
582
+ # https_policy: "REQUIRE", # accepts REQUIRE, REQUIRE_OPEN_ONLY, OPTIONAL
582
583
  # },
583
584
  # delivery_options: {
584
585
  # tls_policy: "REQUIRE", # accepts REQUIRE, OPTIONAL
@@ -1763,6 +1764,7 @@ module Aws::SESV2
1763
1764
  #
1764
1765
  # resp.configuration_set_name #=> String
1765
1766
  # resp.tracking_options.custom_redirect_domain #=> String
1767
+ # resp.tracking_options.https_policy #=> String, one of "REQUIRE", "REQUIRE_OPEN_ONLY", "OPTIONAL"
1766
1768
  # resp.delivery_options.tls_policy #=> String, one of "REQUIRE", "OPTIONAL"
1767
1769
  # resp.delivery_options.sending_pool_name #=> String
1768
1770
  # resp.reputation_options.reputation_metrics_enabled #=> Boolean
@@ -3876,6 +3878,14 @@ module Aws::SESV2
3876
3878
  # @option params [String] :custom_redirect_domain
3877
3879
  # The domain to use to track open and click events.
3878
3880
  #
3881
+ # @option params [String] :https_policy
3882
+ # The https policy to use for tracking open and click events. If the
3883
+ # value is OPTIONAL or HttpsPolicy is not specified, the open trackers
3884
+ # use HTTP and click tracker use the original protocol of the link. If
3885
+ # the value is REQUIRE, both open and click tracker uses HTTPS and if
3886
+ # the value is REQUIRE\_OPEN\_ONLY open tracker uses HTTPS and link
3887
+ # tracker is same as original protocol of the link.
3888
+ #
3879
3889
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3880
3890
  #
3881
3891
  # @example Request syntax with placeholder values
@@ -3883,6 +3893,7 @@ module Aws::SESV2
3883
3893
  # resp = client.put_configuration_set_tracking_options({
3884
3894
  # configuration_set_name: "ConfigurationSetName", # required
3885
3895
  # custom_redirect_domain: "CustomRedirectDomain",
3896
+ # https_policy: "REQUIRE", # accepts REQUIRE, REQUIRE_OPEN_ONLY, OPTIONAL
3886
3897
  # })
3887
3898
  #
3888
3899
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutConfigurationSetTrackingOptions AWS API Documentation
@@ -5165,7 +5176,7 @@ module Aws::SESV2
5165
5176
  tracer: tracer
5166
5177
  )
5167
5178
  context[:gem_name] = 'aws-sdk-sesv2'
5168
- context[:gem_version] = '1.62.0'
5179
+ context[:gem_version] = '1.63.0'
5169
5180
  Seahorse::Client::Request.new(handlers, context)
5170
5181
  end
5171
5182
 
@@ -243,6 +243,7 @@ module Aws::SESV2
243
243
  GetSuppressedDestinationResponse = Shapes::StructureShape.new(name: 'GetSuppressedDestinationResponse')
244
244
  GuardianAttributes = Shapes::StructureShape.new(name: 'GuardianAttributes')
245
245
  GuardianOptions = Shapes::StructureShape.new(name: 'GuardianOptions')
246
+ HttpsPolicy = Shapes::StringShape.new(name: 'HttpsPolicy')
246
247
  Identity = Shapes::StringShape.new(name: 'Identity')
247
248
  IdentityInfo = Shapes::StructureShape.new(name: 'IdentityInfo')
248
249
  IdentityInfoList = Shapes::ListShape.new(name: 'IdentityInfoList')
@@ -1522,6 +1523,7 @@ module Aws::SESV2
1522
1523
 
1523
1524
  PutConfigurationSetTrackingOptionsRequest.add_member(:configuration_set_name, Shapes::ShapeRef.new(shape: ConfigurationSetName, required: true, location: "uri", location_name: "ConfigurationSetName"))
1524
1525
  PutConfigurationSetTrackingOptionsRequest.add_member(:custom_redirect_domain, Shapes::ShapeRef.new(shape: CustomRedirectDomain, location_name: "CustomRedirectDomain"))
1526
+ PutConfigurationSetTrackingOptionsRequest.add_member(:https_policy, Shapes::ShapeRef.new(shape: HttpsPolicy, location_name: "HttpsPolicy"))
1525
1527
  PutConfigurationSetTrackingOptionsRequest.struct_class = Types::PutConfigurationSetTrackingOptionsRequest
1526
1528
 
1527
1529
  PutConfigurationSetTrackingOptionsResponse.struct_class = Types::PutConfigurationSetTrackingOptionsResponse
@@ -1757,6 +1759,7 @@ module Aws::SESV2
1757
1759
  Topics.member = Shapes::ShapeRef.new(shape: Topic)
1758
1760
 
1759
1761
  TrackingOptions.add_member(:custom_redirect_domain, Shapes::ShapeRef.new(shape: CustomRedirectDomain, required: true, location_name: "CustomRedirectDomain"))
1762
+ TrackingOptions.add_member(:https_policy, Shapes::ShapeRef.new(shape: HttpsPolicy, location_name: "HttpsPolicy"))
1760
1763
  TrackingOptions.struct_class = Types::TrackingOptions
1761
1764
 
1762
1765
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "querystring", location_name: "ResourceArn"))
@@ -5595,11 +5595,21 @@ module Aws::SESV2
5595
5595
  # The domain to use to track open and click events.
5596
5596
  # @return [String]
5597
5597
  #
5598
+ # @!attribute [rw] https_policy
5599
+ # The https policy to use for tracking open and click events. If the
5600
+ # value is OPTIONAL or HttpsPolicy is not specified, the open trackers
5601
+ # use HTTP and click tracker use the original protocol of the link. If
5602
+ # the value is REQUIRE, both open and click tracker uses HTTPS and if
5603
+ # the value is REQUIRE\_OPEN\_ONLY open tracker uses HTTPS and link
5604
+ # tracker is same as original protocol of the link.
5605
+ # @return [String]
5606
+ #
5598
5607
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutConfigurationSetTrackingOptionsRequest AWS API Documentation
5599
5608
  #
5600
5609
  class PutConfigurationSetTrackingOptionsRequest < Struct.new(
5601
5610
  :configuration_set_name,
5602
- :custom_redirect_domain)
5611
+ :custom_redirect_domain,
5612
+ :https_policy)
5603
5613
  SENSITIVE = []
5604
5614
  include Aws::Structure
5605
5615
  end
@@ -7034,10 +7044,15 @@ module Aws::SESV2
7034
7044
  # The domain to use for tracking open and click events.
7035
7045
  # @return [String]
7036
7046
  #
7047
+ # @!attribute [rw] https_policy
7048
+ # The https policy to use for tracking open and click events.
7049
+ # @return [String]
7050
+ #
7037
7051
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/TrackingOptions AWS API Documentation
7038
7052
  #
7039
7053
  class TrackingOptions < Struct.new(
7040
- :custom_redirect_domain)
7054
+ :custom_redirect_domain,
7055
+ :https_policy)
7041
7056
  SENSITIVE = []
7042
7057
  include Aws::Structure
7043
7058
  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.62.0'
57
+ GEM_VERSION = '1.63.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -111,7 +111,8 @@ module Aws
111
111
  def create_configuration_set: (
112
112
  configuration_set_name: ::String,
113
113
  ?tracking_options: {
114
- custom_redirect_domain: ::String
114
+ custom_redirect_domain: ::String,
115
+ https_policy: ("REQUIRE" | "REQUIRE_OPEN_ONLY" | "OPTIONAL")?
115
116
  },
116
117
  ?delivery_options: {
117
118
  tls_policy: ("REQUIRE" | "OPTIONAL")?,
@@ -1093,7 +1094,8 @@ module Aws
1093
1094
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#put_configuration_set_tracking_options-instance_method
1094
1095
  def put_configuration_set_tracking_options: (
1095
1096
  configuration_set_name: ::String,
1096
- ?custom_redirect_domain: ::String
1097
+ ?custom_redirect_domain: ::String,
1098
+ ?https_policy: ("REQUIRE" | "REQUIRE_OPEN_ONLY" | "OPTIONAL")
1097
1099
  ) -> _PutConfigurationSetTrackingOptionsResponseSuccess
1098
1100
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfigurationSetTrackingOptionsResponseSuccess
1099
1101
 
data/sig/types.rbs CHANGED
@@ -1315,6 +1315,7 @@ module Aws::SESV2
1315
1315
  class PutConfigurationSetTrackingOptionsRequest
1316
1316
  attr_accessor configuration_set_name: ::String
1317
1317
  attr_accessor custom_redirect_domain: ::String
1318
+ attr_accessor https_policy: ("REQUIRE" | "REQUIRE_OPEN_ONLY" | "OPTIONAL")
1318
1319
  SENSITIVE: []
1319
1320
  end
1320
1321
 
@@ -1634,6 +1635,7 @@ module Aws::SESV2
1634
1635
 
1635
1636
  class TrackingOptions
1636
1637
  attr_accessor custom_redirect_domain: ::String
1638
+ attr_accessor https_policy: ("REQUIRE" | "REQUIRE_OPEN_ONLY" | "OPTIONAL")
1637
1639
  SENSITIVE: []
1638
1640
  end
1639
1641
 
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.62.0
4
+ version: 1.63.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-24 00:00:00.000000000 Z
11
+ date: 2024-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core