aws-sdk-ses 1.28.0 → 1.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-ses.rb +3 -1
- data/lib/aws-sdk-ses/client.rb +40 -24
- data/lib/aws-sdk-ses/client_api.rb +2 -0
- data/lib/aws-sdk-ses/customizations.rb +1 -0
- data/lib/aws-sdk-ses/errors.rb +2 -0
- data/lib/aws-sdk-ses/resource.rb +3 -7
- data/lib/aws-sdk-ses/types.rb +163 -0
- data/lib/aws-sdk-ses/waiters.rb +63 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5780db2fdb21f93f38bf593b614f909600413912ea493ca17dae57757a4f3ea3
|
4
|
+
data.tar.gz: a2d20ba6e5b510f4f83e6847fda4a1247cb06314c9bb50c57f62dae83caf2e49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2edf213f7d0eb05619addbbaf88639ca3f09fbd3204960860fc6ba1e3c1eafb627a26e9e12b46eea90cc05f9d27ec8ddbf20fdc315d803bdc7dabee0d6e10dbe
|
7
|
+
data.tar.gz: 213b828dd3689c3465c3dde961be2a33a10f4bfc3607083fefb75005e81def405f9a395f60d49373cc085a0d9c950c22bbee01f1e88f694093ee55c3fbed72fb
|
data/lib/aws-sdk-ses.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-ses/customizations'
|
|
46
48
|
# @service
|
47
49
|
module Aws::SES
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.33.0'
|
50
52
|
|
51
53
|
end
|
data/lib/aws-sdk-ses/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:ses)
|
|
32
35
|
module Aws::SES
|
33
36
|
# An API client for SES. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::SES::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::SES
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::SES
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::SES
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::SES
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::SES
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -265,8 +273,7 @@ module Aws::SES
|
|
265
273
|
#
|
266
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
275
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
270
277
|
#
|
271
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
279
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +285,7 @@ module Aws::SES
|
|
278
285
|
# request body. This option has no effect unless the request has
|
279
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
287
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
288
|
+
# request on the session.
|
282
289
|
#
|
283
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -2032,6 +2039,11 @@ module Aws::SES
|
|
2032
2039
|
# resp.verification_attributes["Identity"].verification_status #=> String, one of "Pending", "Success", "Failed", "TemporaryFailure", "NotStarted"
|
2033
2040
|
# resp.verification_attributes["Identity"].verification_token #=> String
|
2034
2041
|
#
|
2042
|
+
#
|
2043
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2044
|
+
#
|
2045
|
+
# * identity_exists
|
2046
|
+
#
|
2035
2047
|
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/GetIdentityVerificationAttributes AWS API Documentation
|
2036
2048
|
#
|
2037
2049
|
# @overload get_identity_verification_attributes(params = {})
|
@@ -2259,6 +2271,8 @@ module Aws::SES
|
|
2259
2271
|
# * {Types::ListCustomVerificationEmailTemplatesResponse#custom_verification_email_templates #custom_verification_email_templates} => Array<Types::CustomVerificationEmailTemplate>
|
2260
2272
|
# * {Types::ListCustomVerificationEmailTemplatesResponse#next_token #next_token} => String
|
2261
2273
|
#
|
2274
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2275
|
+
#
|
2262
2276
|
# @example Request syntax with placeholder values
|
2263
2277
|
#
|
2264
2278
|
# resp = client.list_custom_verification_email_templates({
|
@@ -2308,6 +2322,8 @@ module Aws::SES
|
|
2308
2322
|
# * {Types::ListIdentitiesResponse#identities #identities} => Array<String>
|
2309
2323
|
# * {Types::ListIdentitiesResponse#next_token #next_token} => String
|
2310
2324
|
#
|
2325
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2326
|
+
#
|
2311
2327
|
#
|
2312
2328
|
# @example Example: ListIdentities
|
2313
2329
|
#
|
@@ -5024,7 +5040,7 @@ module Aws::SES
|
|
5024
5040
|
params: params,
|
5025
5041
|
config: config)
|
5026
5042
|
context[:gem_name] = 'aws-sdk-ses'
|
5027
|
-
context[:gem_version] = '1.
|
5043
|
+
context[:gem_version] = '1.33.0'
|
5028
5044
|
Seahorse::Client::Request.new(handlers, context)
|
5029
5045
|
end
|
5030
5046
|
|
@@ -5090,9 +5106,9 @@ module Aws::SES
|
|
5090
5106
|
# The following table lists the valid waiter names, the operations they call,
|
5091
5107
|
# and the default `:delay` and `:max_attempts` values.
|
5092
5108
|
#
|
5093
|
-
# | waiter_name | params
|
5094
|
-
# | --------------- |
|
5095
|
-
# | identity_exists | {#get_identity_verification_attributes} | 3 | 20 |
|
5109
|
+
# | waiter_name | params | :delay | :max_attempts |
|
5110
|
+
# | --------------- | --------------------------------------------- | -------- | ------------- |
|
5111
|
+
# | identity_exists | {Client#get_identity_verification_attributes} | 3 | 20 |
|
5096
5112
|
#
|
5097
5113
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
5098
5114
|
# because the waiter has entered a state that it will not transition
|
data/lib/aws-sdk-ses/errors.rb
CHANGED
data/lib/aws-sdk-ses/resource.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::SES
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::SES::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::SES::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::SES::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
data/lib/aws-sdk-ses/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -52,6 +54,7 @@ module Aws::SES
|
|
52
54
|
class AddHeaderAction < Struct.new(
|
53
55
|
:header_name,
|
54
56
|
:header_value)
|
57
|
+
SENSITIVE = []
|
55
58
|
include Aws::Structure
|
56
59
|
end
|
57
60
|
|
@@ -67,6 +70,7 @@ module Aws::SES
|
|
67
70
|
#
|
68
71
|
class AlreadyExistsException < Struct.new(
|
69
72
|
:name)
|
73
|
+
SENSITIVE = []
|
70
74
|
include Aws::Structure
|
71
75
|
end
|
72
76
|
|
@@ -105,6 +109,7 @@ module Aws::SES
|
|
105
109
|
class Body < Struct.new(
|
106
110
|
:text,
|
107
111
|
:html)
|
112
|
+
SENSITIVE = []
|
108
113
|
include Aws::Structure
|
109
114
|
end
|
110
115
|
|
@@ -176,6 +181,7 @@ module Aws::SES
|
|
176
181
|
:status_code,
|
177
182
|
:message,
|
178
183
|
:sender)
|
184
|
+
SENSITIVE = []
|
179
185
|
include Aws::Structure
|
180
186
|
end
|
181
187
|
|
@@ -247,6 +253,7 @@ module Aws::SES
|
|
247
253
|
:recipient_arn,
|
248
254
|
:bounce_type,
|
249
255
|
:recipient_dsn_fields)
|
256
|
+
SENSITIVE = []
|
250
257
|
include Aws::Structure
|
251
258
|
end
|
252
259
|
|
@@ -312,6 +319,7 @@ module Aws::SES
|
|
312
319
|
:destination,
|
313
320
|
:replacement_tags,
|
314
321
|
:replacement_template_data)
|
322
|
+
SENSITIVE = []
|
315
323
|
include Aws::Structure
|
316
324
|
end
|
317
325
|
|
@@ -387,6 +395,7 @@ module Aws::SES
|
|
387
395
|
:status,
|
388
396
|
:error,
|
389
397
|
:message_id)
|
398
|
+
SENSITIVE = []
|
390
399
|
include Aws::Structure
|
391
400
|
end
|
392
401
|
|
@@ -401,6 +410,7 @@ module Aws::SES
|
|
401
410
|
#
|
402
411
|
class CannotDeleteException < Struct.new(
|
403
412
|
:name)
|
413
|
+
SENSITIVE = []
|
404
414
|
include Aws::Structure
|
405
415
|
end
|
406
416
|
|
@@ -440,6 +450,7 @@ module Aws::SES
|
|
440
450
|
class CloneReceiptRuleSetRequest < Struct.new(
|
441
451
|
:rule_set_name,
|
442
452
|
:original_rule_set_name)
|
453
|
+
SENSITIVE = []
|
443
454
|
include Aws::Structure
|
444
455
|
end
|
445
456
|
|
@@ -483,6 +494,7 @@ module Aws::SES
|
|
483
494
|
#
|
484
495
|
class CloudWatchDestination < Struct.new(
|
485
496
|
:dimension_configurations)
|
497
|
+
SENSITIVE = []
|
486
498
|
include Aws::Structure
|
487
499
|
end
|
488
500
|
|
@@ -540,6 +552,7 @@ module Aws::SES
|
|
540
552
|
:dimension_name,
|
541
553
|
:dimension_value_source,
|
542
554
|
:default_dimension_value)
|
555
|
+
SENSITIVE = []
|
543
556
|
include Aws::Structure
|
544
557
|
end
|
545
558
|
|
@@ -576,6 +589,7 @@ module Aws::SES
|
|
576
589
|
#
|
577
590
|
class ConfigurationSet < Struct.new(
|
578
591
|
:name)
|
592
|
+
SENSITIVE = []
|
579
593
|
include Aws::Structure
|
580
594
|
end
|
581
595
|
|
@@ -590,6 +604,7 @@ module Aws::SES
|
|
590
604
|
#
|
591
605
|
class ConfigurationSetAlreadyExistsException < Struct.new(
|
592
606
|
:configuration_set_name)
|
607
|
+
SENSITIVE = []
|
593
608
|
include Aws::Structure
|
594
609
|
end
|
595
610
|
|
@@ -603,6 +618,7 @@ module Aws::SES
|
|
603
618
|
#
|
604
619
|
class ConfigurationSetDoesNotExistException < Struct.new(
|
605
620
|
:configuration_set_name)
|
621
|
+
SENSITIVE = []
|
606
622
|
include Aws::Structure
|
607
623
|
end
|
608
624
|
|
@@ -620,6 +636,7 @@ module Aws::SES
|
|
620
636
|
#
|
621
637
|
class ConfigurationSetSendingPausedException < Struct.new(
|
622
638
|
:configuration_set_name)
|
639
|
+
SENSITIVE = []
|
623
640
|
include Aws::Structure
|
624
641
|
end
|
625
642
|
|
@@ -651,6 +668,7 @@ module Aws::SES
|
|
651
668
|
class Content < Struct.new(
|
652
669
|
:data,
|
653
670
|
:charset)
|
671
|
+
SENSITIVE = []
|
654
672
|
include Aws::Structure
|
655
673
|
end
|
656
674
|
|
@@ -708,6 +726,7 @@ module Aws::SES
|
|
708
726
|
class CreateConfigurationSetEventDestinationRequest < Struct.new(
|
709
727
|
:configuration_set_name,
|
710
728
|
:event_destination)
|
729
|
+
SENSITIVE = []
|
711
730
|
include Aws::Structure
|
712
731
|
end
|
713
732
|
|
@@ -742,6 +761,7 @@ module Aws::SES
|
|
742
761
|
#
|
743
762
|
class CreateConfigurationSetRequest < Struct.new(
|
744
763
|
:configuration_set)
|
764
|
+
SENSITIVE = []
|
745
765
|
include Aws::Structure
|
746
766
|
end
|
747
767
|
|
@@ -787,6 +807,7 @@ module Aws::SES
|
|
787
807
|
class CreateConfigurationSetTrackingOptionsRequest < Struct.new(
|
788
808
|
:configuration_set_name,
|
789
809
|
:tracking_options)
|
810
|
+
SENSITIVE = []
|
790
811
|
include Aws::Structure
|
791
812
|
end
|
792
813
|
|
@@ -853,6 +874,7 @@ module Aws::SES
|
|
853
874
|
:template_content,
|
854
875
|
:success_redirection_url,
|
855
876
|
:failure_redirection_url)
|
877
|
+
SENSITIVE = []
|
856
878
|
include Aws::Structure
|
857
879
|
end
|
858
880
|
|
@@ -887,6 +909,7 @@ module Aws::SES
|
|
887
909
|
#
|
888
910
|
class CreateReceiptFilterRequest < Struct.new(
|
889
911
|
:filter)
|
912
|
+
SENSITIVE = []
|
890
913
|
include Aws::Structure
|
891
914
|
end
|
892
915
|
|
@@ -978,6 +1001,7 @@ module Aws::SES
|
|
978
1001
|
:rule_set_name,
|
979
1002
|
:after,
|
980
1003
|
:rule)
|
1004
|
+
SENSITIVE = []
|
981
1005
|
include Aws::Structure
|
982
1006
|
end
|
983
1007
|
|
@@ -1017,6 +1041,7 @@ module Aws::SES
|
|
1017
1041
|
#
|
1018
1042
|
class CreateReceiptRuleSetRequest < Struct.new(
|
1019
1043
|
:rule_set_name)
|
1044
|
+
SENSITIVE = []
|
1020
1045
|
include Aws::Structure
|
1021
1046
|
end
|
1022
1047
|
|
@@ -1054,6 +1079,7 @@ module Aws::SES
|
|
1054
1079
|
#
|
1055
1080
|
class CreateTemplateRequest < Struct.new(
|
1056
1081
|
:template)
|
1082
|
+
SENSITIVE = []
|
1057
1083
|
include Aws::Structure
|
1058
1084
|
end
|
1059
1085
|
|
@@ -1100,6 +1126,7 @@ module Aws::SES
|
|
1100
1126
|
:template_subject,
|
1101
1127
|
:success_redirection_url,
|
1102
1128
|
:failure_redirection_url)
|
1129
|
+
SENSITIVE = []
|
1103
1130
|
include Aws::Structure
|
1104
1131
|
end
|
1105
1132
|
|
@@ -1115,6 +1142,7 @@ module Aws::SES
|
|
1115
1142
|
#
|
1116
1143
|
class CustomVerificationEmailTemplateAlreadyExistsException < Struct.new(
|
1117
1144
|
:custom_verification_email_template_name)
|
1145
|
+
SENSITIVE = []
|
1118
1146
|
include Aws::Structure
|
1119
1147
|
end
|
1120
1148
|
|
@@ -1130,6 +1158,7 @@ module Aws::SES
|
|
1130
1158
|
#
|
1131
1159
|
class CustomVerificationEmailTemplateDoesNotExistException < Struct.new(
|
1132
1160
|
:custom_verification_email_template_name)
|
1161
|
+
SENSITIVE = []
|
1133
1162
|
include Aws::Structure
|
1134
1163
|
end
|
1135
1164
|
|
@@ -1165,6 +1194,7 @@ module Aws::SES
|
|
1165
1194
|
class DeleteConfigurationSetEventDestinationRequest < Struct.new(
|
1166
1195
|
:configuration_set_name,
|
1167
1196
|
:event_destination_name)
|
1197
|
+
SENSITIVE = []
|
1168
1198
|
include Aws::Structure
|
1169
1199
|
end
|
1170
1200
|
|
@@ -1197,6 +1227,7 @@ module Aws::SES
|
|
1197
1227
|
#
|
1198
1228
|
class DeleteConfigurationSetRequest < Struct.new(
|
1199
1229
|
:configuration_set_name)
|
1230
|
+
SENSITIVE = []
|
1200
1231
|
include Aws::Structure
|
1201
1232
|
end
|
1202
1233
|
|
@@ -1225,6 +1256,7 @@ module Aws::SES
|
|
1225
1256
|
#
|
1226
1257
|
class DeleteConfigurationSetTrackingOptionsRequest < Struct.new(
|
1227
1258
|
:configuration_set_name)
|
1259
|
+
SENSITIVE = []
|
1228
1260
|
include Aws::Structure
|
1229
1261
|
end
|
1230
1262
|
|
@@ -1253,6 +1285,7 @@ module Aws::SES
|
|
1253
1285
|
#
|
1254
1286
|
class DeleteCustomVerificationEmailTemplateRequest < Struct.new(
|
1255
1287
|
:template_name)
|
1288
|
+
SENSITIVE = []
|
1256
1289
|
include Aws::Structure
|
1257
1290
|
end
|
1258
1291
|
|
@@ -1292,6 +1325,7 @@ module Aws::SES
|
|
1292
1325
|
class DeleteIdentityPolicyRequest < Struct.new(
|
1293
1326
|
:identity,
|
1294
1327
|
:policy_name)
|
1328
|
+
SENSITIVE = []
|
1295
1329
|
include Aws::Structure
|
1296
1330
|
end
|
1297
1331
|
|
@@ -1320,6 +1354,7 @@ module Aws::SES
|
|
1320
1354
|
#
|
1321
1355
|
class DeleteIdentityRequest < Struct.new(
|
1322
1356
|
:identity)
|
1357
|
+
SENSITIVE = []
|
1323
1358
|
include Aws::Structure
|
1324
1359
|
end
|
1325
1360
|
|
@@ -1352,6 +1387,7 @@ module Aws::SES
|
|
1352
1387
|
#
|
1353
1388
|
class DeleteReceiptFilterRequest < Struct.new(
|
1354
1389
|
:filter_name)
|
1390
|
+
SENSITIVE = []
|
1355
1391
|
include Aws::Structure
|
1356
1392
|
end
|
1357
1393
|
|
@@ -1391,6 +1427,7 @@ module Aws::SES
|
|
1391
1427
|
class DeleteReceiptRuleRequest < Struct.new(
|
1392
1428
|
:rule_set_name,
|
1393
1429
|
:rule_name)
|
1430
|
+
SENSITIVE = []
|
1394
1431
|
include Aws::Structure
|
1395
1432
|
end
|
1396
1433
|
|
@@ -1424,6 +1461,7 @@ module Aws::SES
|
|
1424
1461
|
#
|
1425
1462
|
class DeleteReceiptRuleSetRequest < Struct.new(
|
1426
1463
|
:rule_set_name)
|
1464
|
+
SENSITIVE = []
|
1427
1465
|
include Aws::Structure
|
1428
1466
|
end
|
1429
1467
|
|
@@ -1455,6 +1493,7 @@ module Aws::SES
|
|
1455
1493
|
#
|
1456
1494
|
class DeleteTemplateRequest < Struct.new(
|
1457
1495
|
:template_name)
|
1496
|
+
SENSITIVE = []
|
1458
1497
|
include Aws::Structure
|
1459
1498
|
end
|
1460
1499
|
|
@@ -1480,6 +1519,7 @@ module Aws::SES
|
|
1480
1519
|
#
|
1481
1520
|
class DeleteVerifiedEmailAddressRequest < Struct.new(
|
1482
1521
|
:email_address)
|
1522
|
+
SENSITIVE = []
|
1483
1523
|
include Aws::Structure
|
1484
1524
|
end
|
1485
1525
|
|
@@ -1505,6 +1545,7 @@ module Aws::SES
|
|
1505
1545
|
#
|
1506
1546
|
class DeliveryOptions < Struct.new(
|
1507
1547
|
:tls_policy)
|
1548
|
+
SENSITIVE = []
|
1508
1549
|
include Aws::Structure
|
1509
1550
|
end
|
1510
1551
|
|
@@ -1541,6 +1582,7 @@ module Aws::SES
|
|
1541
1582
|
class DescribeActiveReceiptRuleSetResponse < Struct.new(
|
1542
1583
|
:metadata,
|
1543
1584
|
:rules)
|
1585
|
+
SENSITIVE = []
|
1544
1586
|
include Aws::Structure
|
1545
1587
|
end
|
1546
1588
|
|
@@ -1574,6 +1616,7 @@ module Aws::SES
|
|
1574
1616
|
class DescribeConfigurationSetRequest < Struct.new(
|
1575
1617
|
:configuration_set_name,
|
1576
1618
|
:configuration_set_attribute_names)
|
1619
|
+
SENSITIVE = []
|
1577
1620
|
include Aws::Structure
|
1578
1621
|
end
|
1579
1622
|
|
@@ -1617,6 +1660,7 @@ module Aws::SES
|
|
1617
1660
|
:tracking_options,
|
1618
1661
|
:delivery_options,
|
1619
1662
|
:reputation_options)
|
1663
|
+
SENSITIVE = []
|
1620
1664
|
include Aws::Structure
|
1621
1665
|
end
|
1622
1666
|
|
@@ -1649,6 +1693,7 @@ module Aws::SES
|
|
1649
1693
|
class DescribeReceiptRuleRequest < Struct.new(
|
1650
1694
|
:rule_set_name,
|
1651
1695
|
:rule_name)
|
1696
|
+
SENSITIVE = []
|
1652
1697
|
include Aws::Structure
|
1653
1698
|
end
|
1654
1699
|
|
@@ -1664,6 +1709,7 @@ module Aws::SES
|
|
1664
1709
|
#
|
1665
1710
|
class DescribeReceiptRuleResponse < Struct.new(
|
1666
1711
|
:rule)
|
1712
|
+
SENSITIVE = []
|
1667
1713
|
include Aws::Structure
|
1668
1714
|
end
|
1669
1715
|
|
@@ -1690,6 +1736,7 @@ module Aws::SES
|
|
1690
1736
|
#
|
1691
1737
|
class DescribeReceiptRuleSetRequest < Struct.new(
|
1692
1738
|
:rule_set_name)
|
1739
|
+
SENSITIVE = []
|
1693
1740
|
include Aws::Structure
|
1694
1741
|
end
|
1695
1742
|
|
@@ -1710,6 +1757,7 @@ module Aws::SES
|
|
1710
1757
|
class DescribeReceiptRuleSetResponse < Struct.new(
|
1711
1758
|
:metadata,
|
1712
1759
|
:rules)
|
1760
|
+
SENSITIVE = []
|
1713
1761
|
include Aws::Structure
|
1714
1762
|
end
|
1715
1763
|
|
@@ -1758,6 +1806,7 @@ module Aws::SES
|
|
1758
1806
|
:to_addresses,
|
1759
1807
|
:cc_addresses,
|
1760
1808
|
:bcc_addresses)
|
1809
|
+
SENSITIVE = []
|
1761
1810
|
include Aws::Structure
|
1762
1811
|
end
|
1763
1812
|
|
@@ -1853,6 +1902,7 @@ module Aws::SES
|
|
1853
1902
|
:kinesis_firehose_destination,
|
1854
1903
|
:cloud_watch_destination,
|
1855
1904
|
:sns_destination)
|
1905
|
+
SENSITIVE = []
|
1856
1906
|
include Aws::Structure
|
1857
1907
|
end
|
1858
1908
|
|
@@ -1872,6 +1922,7 @@ module Aws::SES
|
|
1872
1922
|
class EventDestinationAlreadyExistsException < Struct.new(
|
1873
1923
|
:configuration_set_name,
|
1874
1924
|
:event_destination_name)
|
1925
|
+
SENSITIVE = []
|
1875
1926
|
include Aws::Structure
|
1876
1927
|
end
|
1877
1928
|
|
@@ -1890,6 +1941,7 @@ module Aws::SES
|
|
1890
1941
|
class EventDestinationDoesNotExistException < Struct.new(
|
1891
1942
|
:configuration_set_name,
|
1892
1943
|
:event_destination_name)
|
1944
|
+
SENSITIVE = []
|
1893
1945
|
include Aws::Structure
|
1894
1946
|
end
|
1895
1947
|
|
@@ -1927,6 +1979,7 @@ module Aws::SES
|
|
1927
1979
|
class ExtensionField < Struct.new(
|
1928
1980
|
:name,
|
1929
1981
|
:value)
|
1982
|
+
SENSITIVE = []
|
1930
1983
|
include Aws::Structure
|
1931
1984
|
end
|
1932
1985
|
|
@@ -1943,6 +1996,7 @@ module Aws::SES
|
|
1943
1996
|
#
|
1944
1997
|
class FromEmailAddressNotVerifiedException < Struct.new(
|
1945
1998
|
:from_email_address)
|
1999
|
+
SENSITIVE = []
|
1946
2000
|
include Aws::Structure
|
1947
2001
|
end
|
1948
2002
|
|
@@ -1958,6 +2012,7 @@ module Aws::SES
|
|
1958
2012
|
#
|
1959
2013
|
class GetAccountSendingEnabledResponse < Struct.new(
|
1960
2014
|
:enabled)
|
2015
|
+
SENSITIVE = []
|
1961
2016
|
include Aws::Structure
|
1962
2017
|
end
|
1963
2018
|
|
@@ -1980,6 +2035,7 @@ module Aws::SES
|
|
1980
2035
|
#
|
1981
2036
|
class GetCustomVerificationEmailTemplateRequest < Struct.new(
|
1982
2037
|
:template_name)
|
2038
|
+
SENSITIVE = []
|
1983
2039
|
include Aws::Structure
|
1984
2040
|
end
|
1985
2041
|
|
@@ -2020,6 +2076,7 @@ module Aws::SES
|
|
2020
2076
|
:template_content,
|
2021
2077
|
:success_redirection_url,
|
2022
2078
|
:failure_redirection_url)
|
2079
|
+
SENSITIVE = []
|
2023
2080
|
include Aws::Structure
|
2024
2081
|
end
|
2025
2082
|
|
@@ -2050,6 +2107,7 @@ module Aws::SES
|
|
2050
2107
|
#
|
2051
2108
|
class GetIdentityDkimAttributesRequest < Struct.new(
|
2052
2109
|
:identities)
|
2110
|
+
SENSITIVE = []
|
2053
2111
|
include Aws::Structure
|
2054
2112
|
end
|
2055
2113
|
|
@@ -2066,6 +2124,7 @@ module Aws::SES
|
|
2066
2124
|
#
|
2067
2125
|
class GetIdentityDkimAttributesResponse < Struct.new(
|
2068
2126
|
:dkim_attributes)
|
2127
|
+
SENSITIVE = []
|
2069
2128
|
include Aws::Structure
|
2070
2129
|
end
|
2071
2130
|
|
@@ -2092,6 +2151,7 @@ module Aws::SES
|
|
2092
2151
|
#
|
2093
2152
|
class GetIdentityMailFromDomainAttributesRequest < Struct.new(
|
2094
2153
|
:identities)
|
2154
|
+
SENSITIVE = []
|
2095
2155
|
include Aws::Structure
|
2096
2156
|
end
|
2097
2157
|
|
@@ -2105,6 +2165,7 @@ module Aws::SES
|
|
2105
2165
|
#
|
2106
2166
|
class GetIdentityMailFromDomainAttributesResponse < Struct.new(
|
2107
2167
|
:mail_from_domain_attributes)
|
2168
|
+
SENSITIVE = []
|
2108
2169
|
include Aws::Structure
|
2109
2170
|
end
|
2110
2171
|
|
@@ -2134,6 +2195,7 @@ module Aws::SES
|
|
2134
2195
|
#
|
2135
2196
|
class GetIdentityNotificationAttributesRequest < Struct.new(
|
2136
2197
|
:identities)
|
2198
|
+
SENSITIVE = []
|
2137
2199
|
include Aws::Structure
|
2138
2200
|
end
|
2139
2201
|
|
@@ -2147,6 +2209,7 @@ module Aws::SES
|
|
2147
2209
|
#
|
2148
2210
|
class GetIdentityNotificationAttributesResponse < Struct.new(
|
2149
2211
|
:notification_attributes)
|
2212
|
+
SENSITIVE = []
|
2150
2213
|
include Aws::Structure
|
2151
2214
|
end
|
2152
2215
|
|
@@ -2188,6 +2251,7 @@ module Aws::SES
|
|
2188
2251
|
class GetIdentityPoliciesRequest < Struct.new(
|
2189
2252
|
:identity,
|
2190
2253
|
:policy_names)
|
2254
|
+
SENSITIVE = []
|
2191
2255
|
include Aws::Structure
|
2192
2256
|
end
|
2193
2257
|
|
@@ -2201,6 +2265,7 @@ module Aws::SES
|
|
2201
2265
|
#
|
2202
2266
|
class GetIdentityPoliciesResponse < Struct.new(
|
2203
2267
|
:policies)
|
2268
|
+
SENSITIVE = []
|
2204
2269
|
include Aws::Structure
|
2205
2270
|
end
|
2206
2271
|
|
@@ -2228,6 +2293,7 @@ module Aws::SES
|
|
2228
2293
|
#
|
2229
2294
|
class GetIdentityVerificationAttributesRequest < Struct.new(
|
2230
2295
|
:identities)
|
2296
|
+
SENSITIVE = []
|
2231
2297
|
include Aws::Structure
|
2232
2298
|
end
|
2233
2299
|
|
@@ -2242,6 +2308,7 @@ module Aws::SES
|
|
2242
2308
|
#
|
2243
2309
|
class GetIdentityVerificationAttributesResponse < Struct.new(
|
2244
2310
|
:verification_attributes)
|
2311
|
+
SENSITIVE = []
|
2245
2312
|
include Aws::Structure
|
2246
2313
|
end
|
2247
2314
|
|
@@ -2273,6 +2340,7 @@ module Aws::SES
|
|
2273
2340
|
:max_24_hour_send,
|
2274
2341
|
:max_send_rate,
|
2275
2342
|
:sent_last_24_hours)
|
2343
|
+
SENSITIVE = []
|
2276
2344
|
include Aws::Structure
|
2277
2345
|
end
|
2278
2346
|
|
@@ -2288,6 +2356,7 @@ module Aws::SES
|
|
2288
2356
|
#
|
2289
2357
|
class GetSendStatisticsResponse < Struct.new(
|
2290
2358
|
:send_data_points)
|
2359
|
+
SENSITIVE = []
|
2291
2360
|
include Aws::Structure
|
2292
2361
|
end
|
2293
2362
|
|
@@ -2306,6 +2375,7 @@ module Aws::SES
|
|
2306
2375
|
#
|
2307
2376
|
class GetTemplateRequest < Struct.new(
|
2308
2377
|
:template_name)
|
2378
|
+
SENSITIVE = []
|
2309
2379
|
include Aws::Structure
|
2310
2380
|
end
|
2311
2381
|
|
@@ -2318,6 +2388,7 @@ module Aws::SES
|
|
2318
2388
|
#
|
2319
2389
|
class GetTemplateResponse < Struct.new(
|
2320
2390
|
:template)
|
2391
|
+
SENSITIVE = []
|
2321
2392
|
include Aws::Structure
|
2322
2393
|
end
|
2323
2394
|
|
@@ -2359,6 +2430,7 @@ module Aws::SES
|
|
2359
2430
|
:dkim_enabled,
|
2360
2431
|
:dkim_verification_status,
|
2361
2432
|
:dkim_tokens)
|
2433
|
+
SENSITIVE = []
|
2362
2434
|
include Aws::Structure
|
2363
2435
|
end
|
2364
2436
|
|
@@ -2397,6 +2469,7 @@ module Aws::SES
|
|
2397
2469
|
:mail_from_domain,
|
2398
2470
|
:mail_from_domain_status,
|
2399
2471
|
:behavior_on_mx_failure)
|
2472
|
+
SENSITIVE = []
|
2400
2473
|
include Aws::Structure
|
2401
2474
|
end
|
2402
2475
|
|
@@ -2463,6 +2536,7 @@ module Aws::SES
|
|
2463
2536
|
:headers_in_bounce_notifications_enabled,
|
2464
2537
|
:headers_in_complaint_notifications_enabled,
|
2465
2538
|
:headers_in_delivery_notifications_enabled)
|
2539
|
+
SENSITIVE = []
|
2466
2540
|
include Aws::Structure
|
2467
2541
|
end
|
2468
2542
|
|
@@ -2483,6 +2557,7 @@ module Aws::SES
|
|
2483
2557
|
class IdentityVerificationAttributes < Struct.new(
|
2484
2558
|
:verification_status,
|
2485
2559
|
:verification_token)
|
2560
|
+
SENSITIVE = []
|
2486
2561
|
include Aws::Structure
|
2487
2562
|
end
|
2488
2563
|
|
@@ -2502,6 +2577,7 @@ module Aws::SES
|
|
2502
2577
|
class InvalidCloudWatchDestinationException < Struct.new(
|
2503
2578
|
:configuration_set_name,
|
2504
2579
|
:event_destination_name)
|
2580
|
+
SENSITIVE = []
|
2505
2581
|
include Aws::Structure
|
2506
2582
|
end
|
2507
2583
|
|
@@ -2534,6 +2610,7 @@ module Aws::SES
|
|
2534
2610
|
class InvalidFirehoseDestinationException < Struct.new(
|
2535
2611
|
:configuration_set_name,
|
2536
2612
|
:event_destination_name)
|
2613
|
+
SENSITIVE = []
|
2537
2614
|
include Aws::Structure
|
2538
2615
|
end
|
2539
2616
|
|
@@ -2554,6 +2631,7 @@ module Aws::SES
|
|
2554
2631
|
#
|
2555
2632
|
class InvalidLambdaFunctionException < Struct.new(
|
2556
2633
|
:function_arn)
|
2634
|
+
SENSITIVE = []
|
2557
2635
|
include Aws::Structure
|
2558
2636
|
end
|
2559
2637
|
|
@@ -2575,6 +2653,7 @@ module Aws::SES
|
|
2575
2653
|
#
|
2576
2654
|
class InvalidRenderingParameterException < Struct.new(
|
2577
2655
|
:template_name)
|
2656
|
+
SENSITIVE = []
|
2578
2657
|
include Aws::Structure
|
2579
2658
|
end
|
2580
2659
|
|
@@ -2595,6 +2674,7 @@ module Aws::SES
|
|
2595
2674
|
#
|
2596
2675
|
class InvalidS3ConfigurationException < Struct.new(
|
2597
2676
|
:bucket)
|
2677
|
+
SENSITIVE = []
|
2598
2678
|
include Aws::Structure
|
2599
2679
|
end
|
2600
2680
|
|
@@ -2614,6 +2694,7 @@ module Aws::SES
|
|
2614
2694
|
class InvalidSNSDestinationException < Struct.new(
|
2615
2695
|
:configuration_set_name,
|
2616
2696
|
:event_destination_name)
|
2697
|
+
SENSITIVE = []
|
2617
2698
|
include Aws::Structure
|
2618
2699
|
end
|
2619
2700
|
|
@@ -2634,6 +2715,7 @@ module Aws::SES
|
|
2634
2715
|
#
|
2635
2716
|
class InvalidSnsTopicException < Struct.new(
|
2636
2717
|
:topic)
|
2718
|
+
SENSITIVE = []
|
2637
2719
|
include Aws::Structure
|
2638
2720
|
end
|
2639
2721
|
|
@@ -2648,6 +2730,7 @@ module Aws::SES
|
|
2648
2730
|
#
|
2649
2731
|
class InvalidTemplateException < Struct.new(
|
2650
2732
|
:template_name)
|
2733
|
+
SENSITIVE = []
|
2651
2734
|
include Aws::Structure
|
2652
2735
|
end
|
2653
2736
|
|
@@ -2700,6 +2783,7 @@ module Aws::SES
|
|
2700
2783
|
class KinesisFirehoseDestination < Struct.new(
|
2701
2784
|
:iam_role_arn,
|
2702
2785
|
:delivery_stream_arn)
|
2786
|
+
SENSITIVE = []
|
2703
2787
|
include Aws::Structure
|
2704
2788
|
end
|
2705
2789
|
|
@@ -2777,6 +2861,7 @@ module Aws::SES
|
|
2777
2861
|
:topic_arn,
|
2778
2862
|
:function_arn,
|
2779
2863
|
:invocation_type)
|
2864
|
+
SENSITIVE = []
|
2780
2865
|
include Aws::Structure
|
2781
2866
|
end
|
2782
2867
|
|
@@ -2824,6 +2909,7 @@ module Aws::SES
|
|
2824
2909
|
class ListConfigurationSetsRequest < Struct.new(
|
2825
2910
|
:next_token,
|
2826
2911
|
:max_items)
|
2912
|
+
SENSITIVE = []
|
2827
2913
|
include Aws::Structure
|
2828
2914
|
end
|
2829
2915
|
|
@@ -2851,6 +2937,7 @@ module Aws::SES
|
|
2851
2937
|
class ListConfigurationSetsResponse < Struct.new(
|
2852
2938
|
:configuration_sets,
|
2853
2939
|
:next_token)
|
2940
|
+
SENSITIVE = []
|
2854
2941
|
include Aws::Structure
|
2855
2942
|
end
|
2856
2943
|
|
@@ -2890,6 +2977,7 @@ module Aws::SES
|
|
2890
2977
|
class ListCustomVerificationEmailTemplatesRequest < Struct.new(
|
2891
2978
|
:next_token,
|
2892
2979
|
:max_results)
|
2980
|
+
SENSITIVE = []
|
2893
2981
|
include Aws::Structure
|
2894
2982
|
end
|
2895
2983
|
|
@@ -2912,6 +3000,7 @@ module Aws::SES
|
|
2912
3000
|
class ListCustomVerificationEmailTemplatesResponse < Struct.new(
|
2913
3001
|
:custom_verification_email_templates,
|
2914
3002
|
:next_token)
|
3003
|
+
SENSITIVE = []
|
2915
3004
|
include Aws::Structure
|
2916
3005
|
end
|
2917
3006
|
|
@@ -2949,6 +3038,7 @@ module Aws::SES
|
|
2949
3038
|
:identity_type,
|
2950
3039
|
:next_token,
|
2951
3040
|
:max_items)
|
3041
|
+
SENSITIVE = []
|
2952
3042
|
include Aws::Structure
|
2953
3043
|
end
|
2954
3044
|
|
@@ -2968,6 +3058,7 @@ module Aws::SES
|
|
2968
3058
|
class ListIdentitiesResponse < Struct.new(
|
2969
3059
|
:identities,
|
2970
3060
|
:next_token)
|
3061
|
+
SENSITIVE = []
|
2971
3062
|
include Aws::Structure
|
2972
3063
|
end
|
2973
3064
|
|
@@ -3002,6 +3093,7 @@ module Aws::SES
|
|
3002
3093
|
#
|
3003
3094
|
class ListIdentityPoliciesRequest < Struct.new(
|
3004
3095
|
:identity)
|
3096
|
+
SENSITIVE = []
|
3005
3097
|
include Aws::Structure
|
3006
3098
|
end
|
3007
3099
|
|
@@ -3016,6 +3108,7 @@ module Aws::SES
|
|
3016
3108
|
#
|
3017
3109
|
class ListIdentityPoliciesResponse < Struct.new(
|
3018
3110
|
:policy_names)
|
3111
|
+
SENSITIVE = []
|
3019
3112
|
include Aws::Structure
|
3020
3113
|
end
|
3021
3114
|
|
@@ -3046,6 +3139,7 @@ module Aws::SES
|
|
3046
3139
|
#
|
3047
3140
|
class ListReceiptFiltersResponse < Struct.new(
|
3048
3141
|
:filters)
|
3142
|
+
SENSITIVE = []
|
3049
3143
|
include Aws::Structure
|
3050
3144
|
end
|
3051
3145
|
|
@@ -3074,6 +3168,7 @@ module Aws::SES
|
|
3074
3168
|
#
|
3075
3169
|
class ListReceiptRuleSetsRequest < Struct.new(
|
3076
3170
|
:next_token)
|
3171
|
+
SENSITIVE = []
|
3077
3172
|
include Aws::Structure
|
3078
3173
|
end
|
3079
3174
|
|
@@ -3097,6 +3192,7 @@ module Aws::SES
|
|
3097
3192
|
class ListReceiptRuleSetsResponse < Struct.new(
|
3098
3193
|
:rule_sets,
|
3099
3194
|
:next_token)
|
3195
|
+
SENSITIVE = []
|
3100
3196
|
include Aws::Structure
|
3101
3197
|
end
|
3102
3198
|
|
@@ -3125,6 +3221,7 @@ module Aws::SES
|
|
3125
3221
|
class ListTemplatesRequest < Struct.new(
|
3126
3222
|
:next_token,
|
3127
3223
|
:max_items)
|
3224
|
+
SENSITIVE = []
|
3128
3225
|
include Aws::Structure
|
3129
3226
|
end
|
3130
3227
|
|
@@ -3144,6 +3241,7 @@ module Aws::SES
|
|
3144
3241
|
class ListTemplatesResponse < Struct.new(
|
3145
3242
|
:templates_metadata,
|
3146
3243
|
:next_token)
|
3244
|
+
SENSITIVE = []
|
3147
3245
|
include Aws::Structure
|
3148
3246
|
end
|
3149
3247
|
|
@@ -3158,6 +3256,7 @@ module Aws::SES
|
|
3158
3256
|
#
|
3159
3257
|
class ListVerifiedEmailAddressesResponse < Struct.new(
|
3160
3258
|
:verified_email_addresses)
|
3259
|
+
SENSITIVE = []
|
3161
3260
|
include Aws::Structure
|
3162
3261
|
end
|
3163
3262
|
|
@@ -3210,6 +3309,7 @@ module Aws::SES
|
|
3210
3309
|
class Message < Struct.new(
|
3211
3310
|
:subject,
|
3212
3311
|
:body)
|
3312
|
+
SENSITIVE = []
|
3213
3313
|
include Aws::Structure
|
3214
3314
|
end
|
3215
3315
|
|
@@ -3267,6 +3367,7 @@ module Aws::SES
|
|
3267
3367
|
:reporting_mta,
|
3268
3368
|
:arrival_date,
|
3269
3369
|
:extension_fields)
|
3370
|
+
SENSITIVE = []
|
3270
3371
|
include Aws::Structure
|
3271
3372
|
end
|
3272
3373
|
|
@@ -3320,6 +3421,7 @@ module Aws::SES
|
|
3320
3421
|
class MessageTag < Struct.new(
|
3321
3422
|
:name,
|
3322
3423
|
:value)
|
3424
|
+
SENSITIVE = []
|
3323
3425
|
include Aws::Structure
|
3324
3426
|
end
|
3325
3427
|
|
@@ -3335,6 +3437,7 @@ module Aws::SES
|
|
3335
3437
|
#
|
3336
3438
|
class MissingRenderingAttributeException < Struct.new(
|
3337
3439
|
:template_name)
|
3440
|
+
SENSITIVE = []
|
3338
3441
|
include Aws::Structure
|
3339
3442
|
end
|
3340
3443
|
|
@@ -3371,6 +3474,7 @@ module Aws::SES
|
|
3371
3474
|
class PutConfigurationSetDeliveryOptionsRequest < Struct.new(
|
3372
3475
|
:configuration_set_name,
|
3373
3476
|
:delivery_options)
|
3477
|
+
SENSITIVE = []
|
3374
3478
|
include Aws::Structure
|
3375
3479
|
end
|
3376
3480
|
|
@@ -3433,6 +3537,7 @@ module Aws::SES
|
|
3433
3537
|
:identity,
|
3434
3538
|
:policy_name,
|
3435
3539
|
:policy)
|
3540
|
+
SENSITIVE = []
|
3436
3541
|
include Aws::Structure
|
3437
3542
|
end
|
3438
3543
|
|
@@ -3482,6 +3587,7 @@ module Aws::SES
|
|
3482
3587
|
#
|
3483
3588
|
class RawMessage < Struct.new(
|
3484
3589
|
:data)
|
3590
|
+
SENSITIVE = []
|
3485
3591
|
include Aws::Structure
|
3486
3592
|
end
|
3487
3593
|
|
@@ -3581,6 +3687,7 @@ module Aws::SES
|
|
3581
3687
|
:stop_action,
|
3582
3688
|
:add_header_action,
|
3583
3689
|
:sns_action)
|
3690
|
+
SENSITIVE = []
|
3584
3691
|
include Aws::Structure
|
3585
3692
|
end
|
3586
3693
|
|
@@ -3627,6 +3734,7 @@ module Aws::SES
|
|
3627
3734
|
class ReceiptFilter < Struct.new(
|
3628
3735
|
:name,
|
3629
3736
|
:ip_filter)
|
3737
|
+
SENSITIVE = []
|
3630
3738
|
include Aws::Structure
|
3631
3739
|
end
|
3632
3740
|
|
@@ -3671,6 +3779,7 @@ module Aws::SES
|
|
3671
3779
|
class ReceiptIpFilter < Struct.new(
|
3672
3780
|
:policy,
|
3673
3781
|
:cidr)
|
3782
|
+
SENSITIVE = []
|
3674
3783
|
include Aws::Structure
|
3675
3784
|
end
|
3676
3785
|
|
@@ -3787,6 +3896,7 @@ module Aws::SES
|
|
3787
3896
|
:recipients,
|
3788
3897
|
:actions,
|
3789
3898
|
:scan_enabled)
|
3899
|
+
SENSITIVE = []
|
3790
3900
|
include Aws::Structure
|
3791
3901
|
end
|
3792
3902
|
|
@@ -3823,6 +3933,7 @@ module Aws::SES
|
|
3823
3933
|
class ReceiptRuleSetMetadata < Struct.new(
|
3824
3934
|
:name,
|
3825
3935
|
:created_timestamp)
|
3936
|
+
SENSITIVE = []
|
3826
3937
|
include Aws::Structure
|
3827
3938
|
end
|
3828
3939
|
|
@@ -3936,6 +4047,7 @@ module Aws::SES
|
|
3936
4047
|
:diagnostic_code,
|
3937
4048
|
:last_attempt_date,
|
3938
4049
|
:extension_fields)
|
4050
|
+
SENSITIVE = []
|
3939
4051
|
include Aws::Structure
|
3940
4052
|
end
|
3941
4053
|
|
@@ -3969,6 +4081,7 @@ module Aws::SES
|
|
3969
4081
|
class ReorderReceiptRuleSetRequest < Struct.new(
|
3970
4082
|
:rule_set_name,
|
3971
4083
|
:rule_names)
|
4084
|
+
SENSITIVE = []
|
3972
4085
|
include Aws::Structure
|
3973
4086
|
end
|
3974
4087
|
|
@@ -4020,6 +4133,7 @@ module Aws::SES
|
|
4020
4133
|
:sending_enabled,
|
4021
4134
|
:reputation_metrics_enabled,
|
4022
4135
|
:last_fresh_start)
|
4136
|
+
SENSITIVE = []
|
4023
4137
|
include Aws::Structure
|
4024
4138
|
end
|
4025
4139
|
|
@@ -4033,6 +4147,7 @@ module Aws::SES
|
|
4033
4147
|
#
|
4034
4148
|
class RuleDoesNotExistException < Struct.new(
|
4035
4149
|
:name)
|
4150
|
+
SENSITIVE = []
|
4036
4151
|
include Aws::Structure
|
4037
4152
|
end
|
4038
4153
|
|
@@ -4046,6 +4161,7 @@ module Aws::SES
|
|
4046
4161
|
#
|
4047
4162
|
class RuleSetDoesNotExistException < Struct.new(
|
4048
4163
|
:name)
|
4164
|
+
SENSITIVE = []
|
4049
4165
|
include Aws::Structure
|
4050
4166
|
end
|
4051
4167
|
|
@@ -4158,6 +4274,7 @@ module Aws::SES
|
|
4158
4274
|
:bucket_name,
|
4159
4275
|
:object_key_prefix,
|
4160
4276
|
:kms_key_arn)
|
4277
|
+
SENSITIVE = []
|
4161
4278
|
include Aws::Structure
|
4162
4279
|
end
|
4163
4280
|
|
@@ -4218,6 +4335,7 @@ module Aws::SES
|
|
4218
4335
|
class SNSAction < Struct.new(
|
4219
4336
|
:topic_arn,
|
4220
4337
|
:encoding)
|
4338
|
+
SENSITIVE = []
|
4221
4339
|
include Aws::Structure
|
4222
4340
|
end
|
4223
4341
|
|
@@ -4255,6 +4373,7 @@ module Aws::SES
|
|
4255
4373
|
#
|
4256
4374
|
class SNSDestination < Struct.new(
|
4257
4375
|
:topic_arn)
|
4376
|
+
SENSITIVE = []
|
4258
4377
|
include Aws::Structure
|
4259
4378
|
end
|
4260
4379
|
|
@@ -4350,6 +4469,7 @@ module Aws::SES
|
|
4350
4469
|
:message_dsn,
|
4351
4470
|
:bounced_recipient_info_list,
|
4352
4471
|
:bounce_sender_arn)
|
4472
|
+
SENSITIVE = []
|
4353
4473
|
include Aws::Structure
|
4354
4474
|
end
|
4355
4475
|
|
@@ -4363,6 +4483,7 @@ module Aws::SES
|
|
4363
4483
|
#
|
4364
4484
|
class SendBounceResponse < Struct.new(
|
4365
4485
|
:message_id)
|
4486
|
+
SENSITIVE = []
|
4366
4487
|
include Aws::Structure
|
4367
4488
|
end
|
4368
4489
|
|
@@ -4555,6 +4676,7 @@ module Aws::SES
|
|
4555
4676
|
:template_arn,
|
4556
4677
|
:default_template_data,
|
4557
4678
|
:destinations)
|
4679
|
+
SENSITIVE = []
|
4558
4680
|
include Aws::Structure
|
4559
4681
|
end
|
4560
4682
|
|
@@ -4567,6 +4689,7 @@ module Aws::SES
|
|
4567
4689
|
#
|
4568
4690
|
class SendBulkTemplatedEmailResponse < Struct.new(
|
4569
4691
|
:status)
|
4692
|
+
SENSITIVE = []
|
4570
4693
|
include Aws::Structure
|
4571
4694
|
end
|
4572
4695
|
|
@@ -4602,6 +4725,7 @@ module Aws::SES
|
|
4602
4725
|
:email_address,
|
4603
4726
|
:template_name,
|
4604
4727
|
:configuration_set_name)
|
4728
|
+
SENSITIVE = []
|
4605
4729
|
include Aws::Structure
|
4606
4730
|
end
|
4607
4731
|
|
@@ -4617,6 +4741,7 @@ module Aws::SES
|
|
4617
4741
|
#
|
4618
4742
|
class SendCustomVerificationEmailResponse < Struct.new(
|
4619
4743
|
:message_id)
|
4744
|
+
SENSITIVE = []
|
4620
4745
|
include Aws::Structure
|
4621
4746
|
end
|
4622
4747
|
|
@@ -4651,6 +4776,7 @@ module Aws::SES
|
|
4651
4776
|
:bounces,
|
4652
4777
|
:complaints,
|
4653
4778
|
:rejects)
|
4779
|
+
SENSITIVE = []
|
4654
4780
|
include Aws::Structure
|
4655
4781
|
end
|
4656
4782
|
|
@@ -4827,6 +4953,7 @@ module Aws::SES
|
|
4827
4953
|
:return_path_arn,
|
4828
4954
|
:tags,
|
4829
4955
|
:configuration_set_name)
|
4956
|
+
SENSITIVE = []
|
4830
4957
|
include Aws::Structure
|
4831
4958
|
end
|
4832
4959
|
|
@@ -4840,6 +4967,7 @@ module Aws::SES
|
|
4840
4967
|
#
|
4841
4968
|
class SendEmailResponse < Struct.new(
|
4842
4969
|
:message_id)
|
4970
|
+
SENSITIVE = []
|
4843
4971
|
include Aws::Structure
|
4844
4972
|
end
|
4845
4973
|
|
@@ -5043,6 +5171,7 @@ module Aws::SES
|
|
5043
5171
|
:return_path_arn,
|
5044
5172
|
:tags,
|
5045
5173
|
:configuration_set_name)
|
5174
|
+
SENSITIVE = []
|
5046
5175
|
include Aws::Structure
|
5047
5176
|
end
|
5048
5177
|
|
@@ -5057,6 +5186,7 @@ module Aws::SES
|
|
5057
5186
|
#
|
5058
5187
|
class SendRawEmailResponse < Struct.new(
|
5059
5188
|
:message_id)
|
5189
|
+
SENSITIVE = []
|
5060
5190
|
include Aws::Structure
|
5061
5191
|
end
|
5062
5192
|
|
@@ -5233,6 +5363,7 @@ module Aws::SES
|
|
5233
5363
|
:template,
|
5234
5364
|
:template_arn,
|
5235
5365
|
:template_data)
|
5366
|
+
SENSITIVE = []
|
5236
5367
|
include Aws::Structure
|
5237
5368
|
end
|
5238
5369
|
|
@@ -5245,6 +5376,7 @@ module Aws::SES
|
|
5245
5376
|
#
|
5246
5377
|
class SendTemplatedEmailResponse < Struct.new(
|
5247
5378
|
:message_id)
|
5379
|
+
SENSITIVE = []
|
5248
5380
|
include Aws::Structure
|
5249
5381
|
end
|
5250
5382
|
|
@@ -5272,6 +5404,7 @@ module Aws::SES
|
|
5272
5404
|
#
|
5273
5405
|
class SetActiveReceiptRuleSetRequest < Struct.new(
|
5274
5406
|
:rule_set_name)
|
5407
|
+
SENSITIVE = []
|
5275
5408
|
include Aws::Structure
|
5276
5409
|
end
|
5277
5410
|
|
@@ -5311,6 +5444,7 @@ module Aws::SES
|
|
5311
5444
|
class SetIdentityDkimEnabledRequest < Struct.new(
|
5312
5445
|
:identity,
|
5313
5446
|
:dkim_enabled)
|
5447
|
+
SENSITIVE = []
|
5314
5448
|
include Aws::Structure
|
5315
5449
|
end
|
5316
5450
|
|
@@ -5358,6 +5492,7 @@ module Aws::SES
|
|
5358
5492
|
class SetIdentityFeedbackForwardingEnabledRequest < Struct.new(
|
5359
5493
|
:identity,
|
5360
5494
|
:forwarding_enabled)
|
5495
|
+
SENSITIVE = []
|
5361
5496
|
include Aws::Structure
|
5362
5497
|
end
|
5363
5498
|
|
@@ -5412,6 +5547,7 @@ module Aws::SES
|
|
5412
5547
|
:identity,
|
5413
5548
|
:notification_type,
|
5414
5549
|
:enabled)
|
5550
|
+
SENSITIVE = []
|
5415
5551
|
include Aws::Structure
|
5416
5552
|
end
|
5417
5553
|
|
@@ -5476,6 +5612,7 @@ module Aws::SES
|
|
5476
5612
|
:identity,
|
5477
5613
|
:mail_from_domain,
|
5478
5614
|
:behavior_on_mx_failure)
|
5615
|
+
SENSITIVE = []
|
5479
5616
|
include Aws::Structure
|
5480
5617
|
end
|
5481
5618
|
|
@@ -5532,6 +5669,7 @@ module Aws::SES
|
|
5532
5669
|
:identity,
|
5533
5670
|
:notification_type,
|
5534
5671
|
:sns_topic)
|
5672
|
+
SENSITIVE = []
|
5535
5673
|
include Aws::Structure
|
5536
5674
|
end
|
5537
5675
|
|
@@ -5579,6 +5717,7 @@ module Aws::SES
|
|
5579
5717
|
:rule_set_name,
|
5580
5718
|
:rule_name,
|
5581
5719
|
:after)
|
5720
|
+
SENSITIVE = []
|
5582
5721
|
include Aws::Structure
|
5583
5722
|
end
|
5584
5723
|
|
@@ -5628,6 +5767,7 @@ module Aws::SES
|
|
5628
5767
|
class StopAction < Struct.new(
|
5629
5768
|
:scope,
|
5630
5769
|
:topic_arn)
|
5770
|
+
SENSITIVE = []
|
5631
5771
|
include Aws::Structure
|
5632
5772
|
end
|
5633
5773
|
|
@@ -5670,6 +5810,7 @@ module Aws::SES
|
|
5670
5810
|
:subject_part,
|
5671
5811
|
:text_part,
|
5672
5812
|
:html_part)
|
5813
|
+
SENSITIVE = []
|
5673
5814
|
include Aws::Structure
|
5674
5815
|
end
|
5675
5816
|
|
@@ -5683,6 +5824,7 @@ module Aws::SES
|
|
5683
5824
|
#
|
5684
5825
|
class TemplateDoesNotExistException < Struct.new(
|
5685
5826
|
:template_name)
|
5827
|
+
SENSITIVE = []
|
5686
5828
|
include Aws::Structure
|
5687
5829
|
end
|
5688
5830
|
|
@@ -5701,6 +5843,7 @@ module Aws::SES
|
|
5701
5843
|
class TemplateMetadata < Struct.new(
|
5702
5844
|
:name,
|
5703
5845
|
:created_timestamp)
|
5846
|
+
SENSITIVE = []
|
5704
5847
|
include Aws::Structure
|
5705
5848
|
end
|
5706
5849
|
|
@@ -5728,6 +5871,7 @@ module Aws::SES
|
|
5728
5871
|
class TestRenderTemplateRequest < Struct.new(
|
5729
5872
|
:template_name,
|
5730
5873
|
:template_data)
|
5874
|
+
SENSITIVE = []
|
5731
5875
|
include Aws::Structure
|
5732
5876
|
end
|
5733
5877
|
|
@@ -5741,6 +5885,7 @@ module Aws::SES
|
|
5741
5885
|
#
|
5742
5886
|
class TestRenderTemplateResponse < Struct.new(
|
5743
5887
|
:rendered_template)
|
5888
|
+
SENSITIVE = []
|
5744
5889
|
include Aws::Structure
|
5745
5890
|
end
|
5746
5891
|
|
@@ -5771,6 +5916,7 @@ module Aws::SES
|
|
5771
5916
|
#
|
5772
5917
|
class TrackingOptions < Struct.new(
|
5773
5918
|
:custom_redirect_domain)
|
5919
|
+
SENSITIVE = []
|
5774
5920
|
include Aws::Structure
|
5775
5921
|
end
|
5776
5922
|
|
@@ -5786,6 +5932,7 @@ module Aws::SES
|
|
5786
5932
|
#
|
5787
5933
|
class TrackingOptionsAlreadyExistsException < Struct.new(
|
5788
5934
|
:configuration_set_name)
|
5935
|
+
SENSITIVE = []
|
5789
5936
|
include Aws::Structure
|
5790
5937
|
end
|
5791
5938
|
|
@@ -5801,6 +5948,7 @@ module Aws::SES
|
|
5801
5948
|
#
|
5802
5949
|
class TrackingOptionsDoesNotExistException < Struct.new(
|
5803
5950
|
:configuration_set_name)
|
5951
|
+
SENSITIVE = []
|
5804
5952
|
include Aws::Structure
|
5805
5953
|
end
|
5806
5954
|
|
@@ -5823,6 +5971,7 @@ module Aws::SES
|
|
5823
5971
|
#
|
5824
5972
|
class UpdateAccountSendingEnabledRequest < Struct.new(
|
5825
5973
|
:enabled)
|
5974
|
+
SENSITIVE = []
|
5826
5975
|
include Aws::Structure
|
5827
5976
|
end
|
5828
5977
|
|
@@ -5878,6 +6027,7 @@ module Aws::SES
|
|
5878
6027
|
class UpdateConfigurationSetEventDestinationRequest < Struct.new(
|
5879
6028
|
:configuration_set_name,
|
5880
6029
|
:event_destination)
|
6030
|
+
SENSITIVE = []
|
5881
6031
|
include Aws::Structure
|
5882
6032
|
end
|
5883
6033
|
|
@@ -5913,6 +6063,7 @@ module Aws::SES
|
|
5913
6063
|
class UpdateConfigurationSetReputationMetricsEnabledRequest < Struct.new(
|
5914
6064
|
:configuration_set_name,
|
5915
6065
|
:enabled)
|
6066
|
+
SENSITIVE = []
|
5916
6067
|
include Aws::Structure
|
5917
6068
|
end
|
5918
6069
|
|
@@ -5941,6 +6092,7 @@ module Aws::SES
|
|
5941
6092
|
class UpdateConfigurationSetSendingEnabledRequest < Struct.new(
|
5942
6093
|
:configuration_set_name,
|
5943
6094
|
:enabled)
|
6095
|
+
SENSITIVE = []
|
5944
6096
|
include Aws::Structure
|
5945
6097
|
end
|
5946
6098
|
|
@@ -5980,6 +6132,7 @@ module Aws::SES
|
|
5980
6132
|
class UpdateConfigurationSetTrackingOptionsRequest < Struct.new(
|
5981
6133
|
:configuration_set_name,
|
5982
6134
|
:tracking_options)
|
6135
|
+
SENSITIVE = []
|
5983
6136
|
include Aws::Structure
|
5984
6137
|
end
|
5985
6138
|
|
@@ -6048,6 +6201,7 @@ module Aws::SES
|
|
6048
6201
|
:template_content,
|
6049
6202
|
:success_redirection_url,
|
6050
6203
|
:failure_redirection_url)
|
6204
|
+
SENSITIVE = []
|
6051
6205
|
include Aws::Structure
|
6052
6206
|
end
|
6053
6207
|
|
@@ -6124,6 +6278,7 @@ module Aws::SES
|
|
6124
6278
|
class UpdateReceiptRuleRequest < Struct.new(
|
6125
6279
|
:rule_set_name,
|
6126
6280
|
:rule)
|
6281
|
+
SENSITIVE = []
|
6127
6282
|
include Aws::Structure
|
6128
6283
|
end
|
6129
6284
|
|
@@ -6154,6 +6309,7 @@ module Aws::SES
|
|
6154
6309
|
#
|
6155
6310
|
class UpdateTemplateRequest < Struct.new(
|
6156
6311
|
:template)
|
6312
|
+
SENSITIVE = []
|
6157
6313
|
include Aws::Structure
|
6158
6314
|
end
|
6159
6315
|
|
@@ -6184,6 +6340,7 @@ module Aws::SES
|
|
6184
6340
|
#
|
6185
6341
|
class VerifyDomainDkimRequest < Struct.new(
|
6186
6342
|
:domain)
|
6343
|
+
SENSITIVE = []
|
6187
6344
|
include Aws::Structure
|
6188
6345
|
end
|
6189
6346
|
|
@@ -6215,6 +6372,7 @@ module Aws::SES
|
|
6215
6372
|
#
|
6216
6373
|
class VerifyDomainDkimResponse < Struct.new(
|
6217
6374
|
:dkim_tokens)
|
6375
|
+
SENSITIVE = []
|
6218
6376
|
include Aws::Structure
|
6219
6377
|
end
|
6220
6378
|
|
@@ -6242,6 +6400,7 @@ module Aws::SES
|
|
6242
6400
|
#
|
6243
6401
|
class VerifyDomainIdentityRequest < Struct.new(
|
6244
6402
|
:domain)
|
6403
|
+
SENSITIVE = []
|
6245
6404
|
include Aws::Structure
|
6246
6405
|
end
|
6247
6406
|
|
@@ -6265,6 +6424,7 @@ module Aws::SES
|
|
6265
6424
|
#
|
6266
6425
|
class VerifyDomainIdentityResponse < Struct.new(
|
6267
6426
|
:verification_token)
|
6427
|
+
SENSITIVE = []
|
6268
6428
|
include Aws::Structure
|
6269
6429
|
end
|
6270
6430
|
|
@@ -6291,6 +6451,7 @@ module Aws::SES
|
|
6291
6451
|
#
|
6292
6452
|
class VerifyEmailAddressRequest < Struct.new(
|
6293
6453
|
:email_address)
|
6454
|
+
SENSITIVE = []
|
6294
6455
|
include Aws::Structure
|
6295
6456
|
end
|
6296
6457
|
|
@@ -6317,6 +6478,7 @@ module Aws::SES
|
|
6317
6478
|
#
|
6318
6479
|
class VerifyEmailIdentityRequest < Struct.new(
|
6319
6480
|
:email_address)
|
6481
|
+
SENSITIVE = []
|
6320
6482
|
include Aws::Structure
|
6321
6483
|
end
|
6322
6484
|
|
@@ -6376,6 +6538,7 @@ module Aws::SES
|
|
6376
6538
|
class WorkmailAction < Struct.new(
|
6377
6539
|
:topic_arn,
|
6378
6540
|
:organization_arn)
|
6541
|
+
SENSITIVE = []
|
6379
6542
|
include Aws::Structure
|
6380
6543
|
end
|
6381
6544
|
|