aws-sdk-ses 1.98.0 → 1.100.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: '0419ccea360088e4feb974b6b05fec56c21b2cadaecbc919a23d405fc42489ba'
4
- data.tar.gz: 97716bb5c4f3182136898574d01899459e292b94cb955c288c55c9845acee8f9
3
+ metadata.gz: 3d7f6930b3201199f36b33f5fd4c10ca00b3bca047c4ecb1abac631b01941083
4
+ data.tar.gz: 42e0da04ab96940c2b2d9e7eb2910dd8e6725f26f2345e2125a74c47bdd4807e
5
5
  SHA512:
6
- metadata.gz: 1a6b845bba75337cf3dbdb36d026ad0d2e9554def9a39d9bf82df9b6b2834cff009b10abf3e48687a76adcd01afe46ac047d807be12e5509fa0cab572c8c75a3
7
- data.tar.gz: 65c39e8d80421c79c4da3506d0d5019428ef5f2e7aa16d688bd5435c7004acc13ec9f22d9d17be6bcff77e5a9413f2140b3b316ee48a082e21c79044e182cfdc
6
+ metadata.gz: 37177aac81c34cb84af7acaf17af8112a7b65c0978e4999cf52f055c107c8f9c696a7b92ef530c72133b90d3cfe9d80529ce08a4a003d8d4532765c8e6c6c25c
7
+ data.tar.gz: 4042d0d30cf5830501c7c397ce689857bac1712cbc6558e0585c91e85391bf39b7f185a2f9095cfc21396b63e3ec84d0b179d6fc1071bc0d411894e0e7edbb0d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.100.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.99.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.98.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.98.0
1
+ 1.100.0
@@ -199,7 +199,7 @@ module Aws::SES
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::SES
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -5225,7 +5223,7 @@ module Aws::SES
5225
5223
  tracer: tracer
5226
5224
  )
5227
5225
  context[:gem_name] = 'aws-sdk-ses'
5228
- context[:gem_version] = '1.98.0'
5226
+ context[:gem_version] = '1.100.0'
5229
5227
  Seahorse::Client::Request.new(handlers, context)
5230
5228
  end
5231
5229
 
data/lib/aws-sdk-ses.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::SES
55
55
  autoload :EndpointProvider, 'aws-sdk-ses/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ses/endpoints'
57
57
 
58
- GEM_VERSION = '1.98.0'
58
+ GEM_VERSION = '1.100.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -105,27 +105,7 @@ module Aws
105
105
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#create_configuration_set_event_destination-instance_method
106
106
  def create_configuration_set_event_destination: (
107
107
  configuration_set_name: ::String,
108
- event_destination: {
109
- name: ::String,
110
- enabled: bool?,
111
- matching_event_types: Array[("send" | "reject" | "bounce" | "complaint" | "delivery" | "open" | "click" | "renderingFailure")],
112
- kinesis_firehose_destination: {
113
- iam_role_arn: ::String,
114
- delivery_stream_arn: ::String
115
- }?,
116
- cloud_watch_destination: {
117
- dimension_configurations: Array[
118
- {
119
- dimension_name: ::String,
120
- dimension_value_source: ("messageTag" | "emailHeader" | "linkTag"),
121
- default_dimension_value: ::String
122
- },
123
- ]
124
- }?,
125
- sns_destination: {
126
- topic_arn: ::String
127
- }?
128
- }
108
+ event_destination: Params::event_destination
129
109
  ) -> _CreateConfigurationSetEventDestinationResponseSuccess
130
110
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationSetEventDestinationResponseSuccess
131
111
 
@@ -174,56 +154,7 @@ module Aws
174
154
  def create_receipt_rule: (
175
155
  rule_set_name: ::String,
176
156
  ?after: ::String,
177
- rule: {
178
- name: ::String,
179
- enabled: bool?,
180
- tls_policy: ("Require" | "Optional")?,
181
- recipients: Array[::String]?,
182
- actions: Array[
183
- {
184
- s3_action: {
185
- topic_arn: ::String?,
186
- bucket_name: ::String,
187
- object_key_prefix: ::String?,
188
- kms_key_arn: ::String?,
189
- iam_role_arn: ::String?
190
- }?,
191
- bounce_action: {
192
- topic_arn: ::String?,
193
- smtp_reply_code: ::String,
194
- status_code: ::String?,
195
- message: ::String,
196
- sender: ::String
197
- }?,
198
- workmail_action: {
199
- topic_arn: ::String?,
200
- organization_arn: ::String
201
- }?,
202
- lambda_action: {
203
- topic_arn: ::String?,
204
- function_arn: ::String,
205
- invocation_type: ("Event" | "RequestResponse")?
206
- }?,
207
- stop_action: {
208
- scope: ("RuleSet"),
209
- topic_arn: ::String?
210
- }?,
211
- add_header_action: {
212
- header_name: ::String,
213
- header_value: ::String
214
- }?,
215
- sns_action: {
216
- topic_arn: ::String,
217
- encoding: ("UTF-8" | "Base64")?
218
- }?,
219
- connect_action: {
220
- instance_arn: ::String,
221
- iam_role_arn: ::String
222
- }?
223
- },
224
- ]?,
225
- scan_enabled: bool?
226
- }
157
+ rule: Params::receipt_rule
227
158
  ) -> _CreateReceiptRuleResponseSuccess
228
159
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReceiptRuleResponseSuccess
229
160
 
@@ -631,7 +562,7 @@ module Aws
631
562
  {
632
563
  name: ::String,
633
564
  value: ::String
634
- },
565
+ }
635
566
  ]?
636
567
  },
637
568
  bounced_recipient_info_list: Array[
@@ -650,10 +581,10 @@ module Aws
650
581
  {
651
582
  name: ::String,
652
583
  value: ::String
653
- },
584
+ }
654
585
  ]?
655
586
  }?
656
- },
587
+ }
657
588
  ],
658
589
  ?bounce_sender_arn: ::String
659
590
  ) -> _SendBounceResponseSuccess
@@ -675,7 +606,7 @@ module Aws
675
606
  {
676
607
  name: ::String,
677
608
  value: ::String
678
- },
609
+ }
679
610
  ],
680
611
  template: ::String,
681
612
  ?template_arn: ::String,
@@ -691,10 +622,10 @@ module Aws
691
622
  {
692
623
  name: ::String,
693
624
  value: ::String
694
- },
625
+ }
695
626
  ]?,
696
627
  replacement_template_data: ::String?
697
- },
628
+ }
698
629
  ]
699
630
  ) -> _SendBulkTemplatedEmailResponseSuccess
700
631
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendBulkTemplatedEmailResponseSuccess
@@ -747,7 +678,7 @@ module Aws
747
678
  {
748
679
  name: ::String,
749
680
  value: ::String
750
- },
681
+ }
751
682
  ],
752
683
  ?configuration_set_name: ::String
753
684
  ) -> _SendEmailResponseSuccess
@@ -771,7 +702,7 @@ module Aws
771
702
  {
772
703
  name: ::String,
773
704
  value: ::String
774
- },
705
+ }
775
706
  ],
776
707
  ?configuration_set_name: ::String
777
708
  ) -> _SendRawEmailResponseSuccess
@@ -797,7 +728,7 @@ module Aws
797
728
  {
798
729
  name: ::String,
799
730
  value: ::String
800
- },
731
+ }
801
732
  ],
802
733
  ?configuration_set_name: ::String,
803
734
  template: ::String,
@@ -902,27 +833,7 @@ module Aws
902
833
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_configuration_set_event_destination-instance_method
903
834
  def update_configuration_set_event_destination: (
904
835
  configuration_set_name: ::String,
905
- event_destination: {
906
- name: ::String,
907
- enabled: bool?,
908
- matching_event_types: Array[("send" | "reject" | "bounce" | "complaint" | "delivery" | "open" | "click" | "renderingFailure")],
909
- kinesis_firehose_destination: {
910
- iam_role_arn: ::String,
911
- delivery_stream_arn: ::String
912
- }?,
913
- cloud_watch_destination: {
914
- dimension_configurations: Array[
915
- {
916
- dimension_name: ::String,
917
- dimension_value_source: ("messageTag" | "emailHeader" | "linkTag"),
918
- default_dimension_value: ::String
919
- },
920
- ]
921
- }?,
922
- sns_destination: {
923
- topic_arn: ::String
924
- }?
925
- }
836
+ event_destination: Params::event_destination
926
837
  ) -> _UpdateConfigurationSetEventDestinationResponseSuccess
927
838
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationSetEventDestinationResponseSuccess
928
839
 
@@ -969,56 +880,7 @@ module Aws
969
880
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#update_receipt_rule-instance_method
970
881
  def update_receipt_rule: (
971
882
  rule_set_name: ::String,
972
- rule: {
973
- name: ::String,
974
- enabled: bool?,
975
- tls_policy: ("Require" | "Optional")?,
976
- recipients: Array[::String]?,
977
- actions: Array[
978
- {
979
- s3_action: {
980
- topic_arn: ::String?,
981
- bucket_name: ::String,
982
- object_key_prefix: ::String?,
983
- kms_key_arn: ::String?,
984
- iam_role_arn: ::String?
985
- }?,
986
- bounce_action: {
987
- topic_arn: ::String?,
988
- smtp_reply_code: ::String,
989
- status_code: ::String?,
990
- message: ::String,
991
- sender: ::String
992
- }?,
993
- workmail_action: {
994
- topic_arn: ::String?,
995
- organization_arn: ::String
996
- }?,
997
- lambda_action: {
998
- topic_arn: ::String?,
999
- function_arn: ::String,
1000
- invocation_type: ("Event" | "RequestResponse")?
1001
- }?,
1002
- stop_action: {
1003
- scope: ("RuleSet"),
1004
- topic_arn: ::String?
1005
- }?,
1006
- add_header_action: {
1007
- header_name: ::String,
1008
- header_value: ::String
1009
- }?,
1010
- sns_action: {
1011
- topic_arn: ::String,
1012
- encoding: ("UTF-8" | "Base64")?
1013
- }?,
1014
- connect_action: {
1015
- instance_arn: ::String,
1016
- iam_role_arn: ::String
1017
- }?
1018
- },
1019
- ]?,
1020
- scan_enabled: bool?
1021
- }
883
+ rule: Params::receipt_rule
1022
884
  ) -> _UpdateReceiptRuleResponseSuccess
1023
885
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReceiptRuleResponseSuccess
1024
886
 
data/sig/params.rbs ADDED
@@ -0,0 +1,88 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SES
10
+ module Params
11
+ type event_destination = {
12
+ name: ::String,
13
+ enabled: bool?,
14
+ matching_event_types: Array[("send" | "reject" | "bounce" | "complaint" | "delivery" | "open" | "click" | "renderingFailure")],
15
+ kinesis_firehose_destination: {
16
+ iam_role_arn: ::String,
17
+ delivery_stream_arn: ::String
18
+ }?,
19
+ cloud_watch_destination: {
20
+ dimension_configurations: Array[
21
+ {
22
+ dimension_name: ::String,
23
+ dimension_value_source: ("messageTag" | "emailHeader" | "linkTag"),
24
+ default_dimension_value: ::String
25
+ }
26
+ ]
27
+ }?,
28
+ sns_destination: {
29
+ topic_arn: ::String
30
+ }?
31
+ }
32
+
33
+ type receipt_rule = {
34
+ name: ::String,
35
+ enabled: bool?,
36
+ tls_policy: ("Require" | "Optional")?,
37
+ recipients: Array[::String]?,
38
+ actions: Array[
39
+ Params::receipt_action
40
+ ]?,
41
+ scan_enabled: bool?
42
+ }
43
+
44
+ type receipt_action = {
45
+ s3_action: {
46
+ topic_arn: ::String?,
47
+ bucket_name: ::String,
48
+ object_key_prefix: ::String?,
49
+ kms_key_arn: ::String?,
50
+ iam_role_arn: ::String?
51
+ }?,
52
+ bounce_action: {
53
+ topic_arn: ::String?,
54
+ smtp_reply_code: ::String,
55
+ status_code: ::String?,
56
+ message: ::String,
57
+ sender: ::String
58
+ }?,
59
+ workmail_action: {
60
+ topic_arn: ::String?,
61
+ organization_arn: ::String
62
+ }?,
63
+ lambda_action: {
64
+ topic_arn: ::String?,
65
+ function_arn: ::String,
66
+ invocation_type: ("Event" | "RequestResponse")?
67
+ }?,
68
+ stop_action: {
69
+ scope: ("RuleSet"),
70
+ topic_arn: ::String?
71
+ }?,
72
+ add_header_action: {
73
+ header_name: ::String,
74
+ header_value: ::String
75
+ }?,
76
+ sns_action: {
77
+ topic_arn: ::String,
78
+ encoding: ("UTF-8" | "Base64")?
79
+ }?,
80
+ connect_action: {
81
+ instance_arn: ::String,
82
+ iam_role_arn: ::String
83
+ }?
84
+ }
85
+
86
+ end
87
+ end
88
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ses
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.98.0
4
+ version: 1.100.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-ses/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs