aws-sdk-ses 1.48.0 → 1.50.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -30,14 +30,6 @@ module Aws::SES
30
30
  #
31
31
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-add-header.html
32
32
  #
33
- # @note When making an API call, you may pass AddHeaderAction
34
- # data as a hash:
35
- #
36
- # {
37
- # header_name: "HeaderName", # required
38
- # header_value: "HeaderValue", # required
39
- # }
40
- #
41
33
  # @!attribute [rw] header_name
42
34
  # The name of the header to add. Must be between 1 and 50 characters,
43
35
  # inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters
@@ -78,20 +70,6 @@ module Aws::SES
78
70
  # both. If you use both, then the message should display correctly in
79
71
  # the widest variety of email clients.
80
72
  #
81
- # @note When making an API call, you may pass Body
82
- # data as a hash:
83
- #
84
- # {
85
- # text: {
86
- # data: "MessageData", # required
87
- # charset: "Charset",
88
- # },
89
- # html: {
90
- # data: "MessageData", # required
91
- # charset: "Charset",
92
- # },
93
- # }
94
- #
95
73
  # @!attribute [rw] text
96
74
  # The content of the message, in text format. Use this for text-based
97
75
  # email clients, or clients on high-latency networks (such as mobile
@@ -125,17 +103,6 @@ module Aws::SES
125
103
  #
126
104
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-bounce.html
127
105
  #
128
- # @note When making an API call, you may pass BounceAction
129
- # data as a hash:
130
- #
131
- # {
132
- # topic_arn: "AmazonResourceName",
133
- # smtp_reply_code: "BounceSmtpReplyCode", # required
134
- # status_code: "BounceStatusCode",
135
- # message: "BounceMessage", # required
136
- # sender: "Address", # required
137
- # }
138
- #
139
106
  # @!attribute [rw] topic_arn
140
107
  # The Amazon Resource Name (ARN) of the Amazon SNS topic to notify
141
108
  # when the bounce action is taken. An example of an Amazon SNS topic
@@ -196,29 +163,6 @@ module Aws::SES
196
163
  #
197
164
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
198
165
  #
199
- # @note When making an API call, you may pass BouncedRecipientInfo
200
- # data as a hash:
201
- #
202
- # {
203
- # recipient: "Address", # required
204
- # recipient_arn: "AmazonResourceName",
205
- # bounce_type: "DoesNotExist", # accepts DoesNotExist, MessageTooLarge, ExceededQuota, ContentRejected, Undefined, TemporaryFailure
206
- # recipient_dsn_fields: {
207
- # final_recipient: "Address",
208
- # action: "failed", # required, accepts failed, delayed, delivered, relayed, expanded
209
- # remote_mta: "RemoteMta",
210
- # status: "DsnStatus", # required
211
- # diagnostic_code: "DiagnosticCode",
212
- # last_attempt_date: Time.now,
213
- # extension_fields: [
214
- # {
215
- # name: "ExtensionFieldName", # required
216
- # value: "ExtensionFieldValue", # required
217
- # },
218
- # ],
219
- # },
220
- # }
221
- #
222
166
  # @!attribute [rw] recipient
223
167
  # The email address of the recipient of the bounced email.
224
168
  # @return [String]
@@ -260,24 +204,6 @@ module Aws::SES
260
204
  # An array that contains one or more Destinations, as well as the tags
261
205
  # and replacement data associated with each of those Destinations.
262
206
  #
263
- # @note When making an API call, you may pass BulkEmailDestination
264
- # data as a hash:
265
- #
266
- # {
267
- # destination: { # required
268
- # to_addresses: ["Address"],
269
- # cc_addresses: ["Address"],
270
- # bcc_addresses: ["Address"],
271
- # },
272
- # replacement_tags: [
273
- # {
274
- # name: "MessageTagName", # required
275
- # value: "MessageTagValue", # required
276
- # },
277
- # ],
278
- # replacement_template_data: "TemplateData",
279
- # }
280
- #
281
207
  # @!attribute [rw] destination
282
208
  # Represents the destination of the message, consisting of To:, CC:,
283
209
  # and BCC: fields.
@@ -332,50 +258,49 @@ module Aws::SES
332
258
  #
333
259
  # Possible values for this parameter include:
334
260
  #
335
- # * `Success`\: Amazon SES accepted the message, and will attempt to
261
+ # * `Success`: Amazon SES accepted the message, and will attempt to
336
262
  # deliver it to the recipients.
337
263
  #
338
- # * `MessageRejected`\: The message was rejected because it contained
339
- # a virus.
264
+ # * `MessageRejected`: The message was rejected because it contained a
265
+ # virus.
340
266
  #
341
- # * `MailFromDomainNotVerified`\: The sender's email address or
342
- # domain was not verified.
267
+ # * `MailFromDomainNotVerified`: The sender's email address or domain
268
+ # was not verified.
343
269
  #
344
- # * `ConfigurationSetDoesNotExist`\: The configuration set you
270
+ # * `ConfigurationSetDoesNotExist`: The configuration set you
345
271
  # specified does not exist.
346
272
  #
347
- # * `TemplateDoesNotExist`\: The template you specified does not
348
- # exist.
273
+ # * `TemplateDoesNotExist`: The template you specified does not exist.
349
274
  #
350
- # * `AccountSuspended`\: Your account has been shut down because of
275
+ # * `AccountSuspended`: Your account has been shut down because of
351
276
  # issues related to your email sending practices.
352
277
  #
353
- # * `AccountThrottled`\: The number of emails you can send has been
278
+ # * `AccountThrottled`: The number of emails you can send has been
354
279
  # reduced because your account has exceeded its allocated sending
355
280
  # limit.
356
281
  #
357
- # * `AccountDailyQuotaExceeded`\: You have reached or exceeded the
282
+ # * `AccountDailyQuotaExceeded`: You have reached or exceeded the
358
283
  # maximum number of emails you can send from your account in a
359
284
  # 24-hour period.
360
285
  #
361
- # * `InvalidSendingPoolName`\: The configuration set you specified
286
+ # * `InvalidSendingPoolName`: The configuration set you specified
362
287
  # refers to an IP pool that does not exist.
363
288
  #
364
- # * `AccountSendingPaused`\: Email sending for the Amazon SES account
289
+ # * `AccountSendingPaused`: Email sending for the Amazon SES account
365
290
  # was disabled using the UpdateAccountSendingEnabled operation.
366
291
  #
367
- # * `ConfigurationSetSendingPaused`\: Email sending for this
292
+ # * `ConfigurationSetSendingPaused`: Email sending for this
368
293
  # configuration set was disabled using the
369
294
  # UpdateConfigurationSetSendingEnabled operation.
370
295
  #
371
- # * `InvalidParameterValue`\: One or more of the parameters you
296
+ # * `InvalidParameterValue`: One or more of the parameters you
372
297
  # specified when calling this operation was invalid. See the error
373
298
  # message for additional information.
374
299
  #
375
- # * `TransientFailure`\: Amazon SES was unable to process your request
300
+ # * `TransientFailure`: Amazon SES was unable to process your request
376
301
  # because of a temporary issue.
377
302
  #
378
- # * `Failed`\: Amazon SES was unable to process your request. See the
303
+ # * `Failed`: Amazon SES was unable to process your request. See the
379
304
  # error message for additional information.
380
305
  # @return [String]
381
306
  #
@@ -422,14 +347,6 @@ module Aws::SES
422
347
  #
423
348
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
424
349
  #
425
- # @note When making an API call, you may pass CloneReceiptRuleSetRequest
426
- # data as a hash:
427
- #
428
- # {
429
- # rule_set_name: "ReceiptRuleSetName", # required
430
- # original_rule_set_name: "ReceiptRuleSetName", # required
431
- # }
432
- #
433
350
  # @!attribute [rw] rule_set_name
434
351
  # The name of the rule set to create. The name must:
435
352
  #
@@ -472,19 +389,6 @@ module Aws::SES
472
389
  #
473
390
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
474
391
  #
475
- # @note When making an API call, you may pass CloudWatchDestination
476
- # data as a hash:
477
- #
478
- # {
479
- # dimension_configurations: [ # required
480
- # {
481
- # dimension_name: "DimensionName", # required
482
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
483
- # default_dimension_value: "DefaultDimensionValue", # required
484
- # },
485
- # ],
486
- # }
487
- #
488
392
  # @!attribute [rw] dimension_configurations
489
393
  # A list of dimensions upon which to categorize your emails when you
490
394
  # publish email sending events to Amazon CloudWatch.
@@ -508,15 +412,6 @@ module Aws::SES
508
412
  #
509
413
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
510
414
  #
511
- # @note When making an API call, you may pass CloudWatchDimensionConfiguration
512
- # data as a hash:
513
- #
514
- # {
515
- # dimension_name: "DimensionName", # required
516
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
517
- # default_dimension_value: "DefaultDimensionValue", # required
518
- # }
519
- #
520
415
  # @!attribute [rw] dimension_name
521
416
  # The name of an Amazon CloudWatch dimension associated with an email
522
417
  # sending metric. The name must:
@@ -568,13 +463,6 @@ module Aws::SES
568
463
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/using-configuration-sets.html
569
464
  # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/
570
465
  #
571
- # @note When making an API call, you may pass ConfigurationSet
572
- # data as a hash:
573
- #
574
- # {
575
- # name: "ConfigurationSetName", # required
576
- # }
577
- #
578
466
  # @!attribute [rw] name
579
467
  # The name of the configuration set. The name must meet the following
580
468
  # requirements:
@@ -647,14 +535,6 @@ module Aws::SES
647
535
  # you must also specify a character set. Examples include UTF-8,
648
536
  # ISO-8859-1, and Shift\_JIS.
649
537
  #
650
- # @note When making an API call, you may pass Content
651
- # data as a hash:
652
- #
653
- # {
654
- # data: "MessageData", # required
655
- # charset: "Charset",
656
- # }
657
- #
658
538
  # @!attribute [rw] data
659
539
  # The textual data of the content.
660
540
  # @return [String]
@@ -683,34 +563,6 @@ module Aws::SES
683
563
  #
684
564
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
685
565
  #
686
- # @note When making an API call, you may pass CreateConfigurationSetEventDestinationRequest
687
- # data as a hash:
688
- #
689
- # {
690
- # configuration_set_name: "ConfigurationSetName", # required
691
- # event_destination: { # required
692
- # name: "EventDestinationName", # required
693
- # enabled: false,
694
- # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click, renderingFailure
695
- # kinesis_firehose_destination: {
696
- # iam_role_arn: "AmazonResourceName", # required
697
- # delivery_stream_arn: "AmazonResourceName", # required
698
- # },
699
- # cloud_watch_destination: {
700
- # dimension_configurations: [ # required
701
- # {
702
- # dimension_name: "DimensionName", # required
703
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
704
- # default_dimension_value: "DefaultDimensionValue", # required
705
- # },
706
- # ],
707
- # },
708
- # sns_destination: {
709
- # topic_arn: "AmazonResourceName", # required
710
- # },
711
- # },
712
- # }
713
- #
714
566
  # @!attribute [rw] configuration_set_name
715
567
  # The name of the configuration set that the event destination should
716
568
  # be associated with.
@@ -744,15 +596,6 @@ module Aws::SES
744
596
  #
745
597
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
746
598
  #
747
- # @note When making an API call, you may pass CreateConfigurationSetRequest
748
- # data as a hash:
749
- #
750
- # {
751
- # configuration_set: { # required
752
- # name: "ConfigurationSetName", # required
753
- # },
754
- # }
755
- #
756
599
  # @!attribute [rw] configuration_set
757
600
  # A data structure that contains the name of the configuration set.
758
601
  # @return [Types::ConfigurationSet]
@@ -774,16 +617,6 @@ module Aws::SES
774
617
  # Represents a request to create an open and click tracking option
775
618
  # object in a configuration set.
776
619
  #
777
- # @note When making an API call, you may pass CreateConfigurationSetTrackingOptionsRequest
778
- # data as a hash:
779
- #
780
- # {
781
- # configuration_set_name: "ConfigurationSetName", # required
782
- # tracking_options: { # required
783
- # custom_redirect_domain: "CustomRedirectDomain",
784
- # },
785
- # }
786
- #
787
620
  # @!attribute [rw] configuration_set_name
788
621
  # The name of the configuration set that the tracking options should
789
622
  # be associated with.
@@ -819,18 +652,6 @@ module Aws::SES
819
652
 
820
653
  # Represents a request to create a custom verification email template.
821
654
  #
822
- # @note When making an API call, you may pass CreateCustomVerificationEmailTemplateRequest
823
- # data as a hash:
824
- #
825
- # {
826
- # template_name: "TemplateName", # required
827
- # from_email_address: "FromAddress", # required
828
- # template_subject: "Subject", # required
829
- # template_content: "TemplateContent", # required
830
- # success_redirection_url: "SuccessRedirectionURL", # required
831
- # failure_redirection_url: "FailureRedirectionURL", # required
832
- # }
833
- #
834
655
  # @!attribute [rw] template_name
835
656
  # The name of the custom verification email template.
836
657
  # @return [String]
@@ -886,19 +707,6 @@ module Aws::SES
886
707
  #
887
708
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
888
709
  #
889
- # @note When making an API call, you may pass CreateReceiptFilterRequest
890
- # data as a hash:
891
- #
892
- # {
893
- # filter: { # required
894
- # name: "ReceiptFilterName", # required
895
- # ip_filter: { # required
896
- # policy: "Block", # required, accepts Block, Allow
897
- # cidr: "Cidr", # required
898
- # },
899
- # },
900
- # }
901
- #
902
710
  # @!attribute [rw] filter
903
711
  # A data structure that describes the IP address filter to create,
904
712
  # which consists of a name, an IP address range, and whether to allow
@@ -927,59 +735,6 @@ module Aws::SES
927
735
  #
928
736
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
929
737
  #
930
- # @note When making an API call, you may pass CreateReceiptRuleRequest
931
- # data as a hash:
932
- #
933
- # {
934
- # rule_set_name: "ReceiptRuleSetName", # required
935
- # after: "ReceiptRuleName",
936
- # rule: { # required
937
- # name: "ReceiptRuleName", # required
938
- # enabled: false,
939
- # tls_policy: "Require", # accepts Require, Optional
940
- # recipients: ["Recipient"],
941
- # actions: [
942
- # {
943
- # s3_action: {
944
- # topic_arn: "AmazonResourceName",
945
- # bucket_name: "S3BucketName", # required
946
- # object_key_prefix: "S3KeyPrefix",
947
- # kms_key_arn: "AmazonResourceName",
948
- # },
949
- # bounce_action: {
950
- # topic_arn: "AmazonResourceName",
951
- # smtp_reply_code: "BounceSmtpReplyCode", # required
952
- # status_code: "BounceStatusCode",
953
- # message: "BounceMessage", # required
954
- # sender: "Address", # required
955
- # },
956
- # workmail_action: {
957
- # topic_arn: "AmazonResourceName",
958
- # organization_arn: "AmazonResourceName", # required
959
- # },
960
- # lambda_action: {
961
- # topic_arn: "AmazonResourceName",
962
- # function_arn: "AmazonResourceName", # required
963
- # invocation_type: "Event", # accepts Event, RequestResponse
964
- # },
965
- # stop_action: {
966
- # scope: "RuleSet", # required, accepts RuleSet
967
- # topic_arn: "AmazonResourceName",
968
- # },
969
- # add_header_action: {
970
- # header_name: "HeaderName", # required
971
- # header_value: "HeaderValue", # required
972
- # },
973
- # sns_action: {
974
- # topic_arn: "AmazonResourceName", # required
975
- # encoding: "UTF-8", # accepts UTF-8, Base64
976
- # },
977
- # },
978
- # ],
979
- # scan_enabled: false,
980
- # },
981
- # }
982
- #
983
738
  # @!attribute [rw] rule_set_name
984
739
  # The name of the rule set that the receipt rule will be added to.
985
740
  # @return [String]
@@ -1019,13 +774,6 @@ module Aws::SES
1019
774
  #
1020
775
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1021
776
  #
1022
- # @note When making an API call, you may pass CreateReceiptRuleSetRequest
1023
- # data as a hash:
1024
- #
1025
- # {
1026
- # rule_set_name: "ReceiptRuleSetName", # required
1027
- # }
1028
- #
1029
777
  # @!attribute [rw] rule_set_name
1030
778
  # The name of the rule set to create. The name must:
1031
779
  #
@@ -1058,18 +806,6 @@ module Aws::SES
1058
806
  #
1059
807
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
1060
808
  #
1061
- # @note When making an API call, you may pass CreateTemplateRequest
1062
- # data as a hash:
1063
- #
1064
- # {
1065
- # template: { # required
1066
- # template_name: "TemplateName", # required
1067
- # subject_part: "SubjectPart",
1068
- # text_part: "TextPart",
1069
- # html_part: "HtmlPart",
1070
- # },
1071
- # }
1072
- #
1073
809
  # @!attribute [rw] template
1074
810
  # The content of the email, composed of a subject line, an HTML part,
1075
811
  # and a text-only part.
@@ -1172,14 +908,6 @@ module Aws::SES
1172
908
  #
1173
909
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1174
910
  #
1175
- # @note When making an API call, you may pass DeleteConfigurationSetEventDestinationRequest
1176
- # data as a hash:
1177
- #
1178
- # {
1179
- # configuration_set_name: "ConfigurationSetName", # required
1180
- # event_destination_name: "EventDestinationName", # required
1181
- # }
1182
- #
1183
911
  # @!attribute [rw] configuration_set_name
1184
912
  # The name of the configuration set from which to delete the event
1185
913
  # destination.
@@ -1212,13 +940,6 @@ module Aws::SES
1212
940
  #
1213
941
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1214
942
  #
1215
- # @note When making an API call, you may pass DeleteConfigurationSetRequest
1216
- # data as a hash:
1217
- #
1218
- # {
1219
- # configuration_set_name: "ConfigurationSetName", # required
1220
- # }
1221
- #
1222
943
  # @!attribute [rw] configuration_set_name
1223
944
  # The name of the configuration set to delete.
1224
945
  # @return [String]
@@ -1240,13 +961,6 @@ module Aws::SES
1240
961
  # Represents a request to delete open and click tracking options in a
1241
962
  # configuration set.
1242
963
  #
1243
- # @note When making an API call, you may pass DeleteConfigurationSetTrackingOptionsRequest
1244
- # data as a hash:
1245
- #
1246
- # {
1247
- # configuration_set_name: "ConfigurationSetName", # required
1248
- # }
1249
- #
1250
964
  # @!attribute [rw] configuration_set_name
1251
965
  # The name of the configuration set from which you want to delete the
1252
966
  # tracking options.
@@ -1269,13 +983,6 @@ module Aws::SES
1269
983
  # Represents a request to delete an existing custom verification email
1270
984
  # template.
1271
985
  #
1272
- # @note When making an API call, you may pass DeleteCustomVerificationEmailTemplateRequest
1273
- # data as a hash:
1274
- #
1275
- # {
1276
- # template_name: "TemplateName", # required
1277
- # }
1278
- #
1279
986
  # @!attribute [rw] template_name
1280
987
  # The name of the custom verification email template that you want to
1281
988
  # delete.
@@ -1298,14 +1005,6 @@ module Aws::SES
1298
1005
  #
1299
1006
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
1300
1007
  #
1301
- # @note When making an API call, you may pass DeleteIdentityPolicyRequest
1302
- # data as a hash:
1303
- #
1304
- # {
1305
- # identity: "Identity", # required
1306
- # policy_name: "PolicyName", # required
1307
- # }
1308
- #
1309
1008
  # @!attribute [rw] identity
1310
1009
  # The identity that is associated with the policy that you want to
1311
1010
  # delete. You can specify the identity by using its name or by using
@@ -1338,13 +1037,6 @@ module Aws::SES
1338
1037
  # Represents a request to delete one of your Amazon SES identities (an
1339
1038
  # email address or domain).
1340
1039
  #
1341
- # @note When making an API call, you may pass DeleteIdentityRequest
1342
- # data as a hash:
1343
- #
1344
- # {
1345
- # identity: "Identity", # required
1346
- # }
1347
- #
1348
1040
  # @!attribute [rw] identity
1349
1041
  # The identity to be removed from the list of identities for the AWS
1350
1042
  # Account.
@@ -1372,13 +1064,6 @@ module Aws::SES
1372
1064
  #
1373
1065
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1374
1066
  #
1375
- # @note When making an API call, you may pass DeleteReceiptFilterRequest
1376
- # data as a hash:
1377
- #
1378
- # {
1379
- # filter_name: "ReceiptFilterName", # required
1380
- # }
1381
- #
1382
1067
  # @!attribute [rw] filter_name
1383
1068
  # The name of the IP address filter to delete.
1384
1069
  # @return [String]
@@ -1405,14 +1090,6 @@ module Aws::SES
1405
1090
  #
1406
1091
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1407
1092
  #
1408
- # @note When making an API call, you may pass DeleteReceiptRuleRequest
1409
- # data as a hash:
1410
- #
1411
- # {
1412
- # rule_set_name: "ReceiptRuleSetName", # required
1413
- # rule_name: "ReceiptRuleName", # required
1414
- # }
1415
- #
1416
1093
  # @!attribute [rw] rule_set_name
1417
1094
  # The name of the receipt rule set that contains the receipt rule to
1418
1095
  # delete.
@@ -1446,13 +1123,6 @@ module Aws::SES
1446
1123
  #
1447
1124
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1448
1125
  #
1449
- # @note When making an API call, you may pass DeleteReceiptRuleSetRequest
1450
- # data as a hash:
1451
- #
1452
- # {
1453
- # rule_set_name: "ReceiptRuleSetName", # required
1454
- # }
1455
- #
1456
1126
  # @!attribute [rw] rule_set_name
1457
1127
  # The name of the receipt rule set to delete.
1458
1128
  # @return [String]
@@ -1478,13 +1148,6 @@ module Aws::SES
1478
1148
  #
1479
1149
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
1480
1150
  #
1481
- # @note When making an API call, you may pass DeleteTemplateRequest
1482
- # data as a hash:
1483
- #
1484
- # {
1485
- # template_name: "TemplateName", # required
1486
- # }
1487
- #
1488
1151
  # @!attribute [rw] template_name
1489
1152
  # The name of the template to be deleted.
1490
1153
  # @return [String]
@@ -1504,13 +1167,6 @@ module Aws::SES
1504
1167
  # Represents a request to delete an email address from the list of email
1505
1168
  # addresses you have attempted to verify under your AWS account.
1506
1169
  #
1507
- # @note When making an API call, you may pass DeleteVerifiedEmailAddressRequest
1508
- # data as a hash:
1509
- #
1510
- # {
1511
- # email_address: "Address", # required
1512
- # }
1513
- #
1514
1170
  # @!attribute [rw] email_address
1515
1171
  # An email address to be removed from the list of verified addresses.
1516
1172
  # @return [String]
@@ -1526,13 +1182,6 @@ module Aws::SES
1526
1182
  # Specifies whether messages that use the configuration set are required
1527
1183
  # to use Transport Layer Security (TLS).
1528
1184
  #
1529
- # @note When making an API call, you may pass DeliveryOptions
1530
- # data as a hash:
1531
- #
1532
- # {
1533
- # tls_policy: "Require", # accepts Require, Optional
1534
- # }
1535
- #
1536
1185
  # @!attribute [rw] tls_policy
1537
1186
  # Specifies whether messages that use the configuration set are
1538
1187
  # required to use Transport Layer Security (TLS). If the value is
@@ -1595,14 +1244,6 @@ module Aws::SES
1595
1244
  #
1596
1245
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1597
1246
  #
1598
- # @note When making an API call, you may pass DescribeConfigurationSetRequest
1599
- # data as a hash:
1600
- #
1601
- # {
1602
- # configuration_set_name: "ConfigurationSetName", # required
1603
- # configuration_set_attribute_names: ["eventDestinations"], # accepts eventDestinations, trackingOptions, deliveryOptions, reputationOptions
1604
- # }
1605
- #
1606
1247
  # @!attribute [rw] configuration_set_name
1607
1248
  # The name of the configuration set to describe.
1608
1249
  # @return [String]
@@ -1672,14 +1313,6 @@ module Aws::SES
1672
1313
  #
1673
1314
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1674
1315
  #
1675
- # @note When making an API call, you may pass DescribeReceiptRuleRequest
1676
- # data as a hash:
1677
- #
1678
- # {
1679
- # rule_set_name: "ReceiptRuleSetName", # required
1680
- # rule_name: "ReceiptRuleName", # required
1681
- # }
1682
- #
1683
1316
  # @!attribute [rw] rule_set_name
1684
1317
  # The name of the receipt rule set that the receipt rule belongs to.
1685
1318
  # @return [String]
@@ -1721,13 +1354,6 @@ module Aws::SES
1721
1354
  #
1722
1355
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
1723
1356
  #
1724
- # @note When making an API call, you may pass DescribeReceiptRuleSetRequest
1725
- # data as a hash:
1726
- #
1727
- # {
1728
- # rule_set_name: "ReceiptRuleSetName", # required
1729
- # }
1730
- #
1731
1357
  # @!attribute [rw] rule_set_name
1732
1358
  # The name of the receipt rule set to describe.
1733
1359
  # @return [String]
@@ -1779,15 +1405,6 @@ module Aws::SES
1779
1405
  # [2]: https://en.wikipedia.org/wiki/Email_address#Local-part
1780
1406
  # [3]: https://tools.ietf.org/html/rfc3492.html
1781
1407
  #
1782
- # @note When making an API call, you may pass Destination
1783
- # data as a hash:
1784
- #
1785
- # {
1786
- # to_addresses: ["Address"],
1787
- # cc_addresses: ["Address"],
1788
- # bcc_addresses: ["Address"],
1789
- # }
1790
- #
1791
1408
  # @!attribute [rw] to_addresses
1792
1409
  # The recipients to place on the To: line of the message.
1793
1410
  # @return [Array<String>]
@@ -1830,31 +1447,6 @@ module Aws::SES
1830
1447
  #
1831
1448
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
1832
1449
  #
1833
- # @note When making an API call, you may pass EventDestination
1834
- # data as a hash:
1835
- #
1836
- # {
1837
- # name: "EventDestinationName", # required
1838
- # enabled: false,
1839
- # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click, renderingFailure
1840
- # kinesis_firehose_destination: {
1841
- # iam_role_arn: "AmazonResourceName", # required
1842
- # delivery_stream_arn: "AmazonResourceName", # required
1843
- # },
1844
- # cloud_watch_destination: {
1845
- # dimension_configurations: [ # required
1846
- # {
1847
- # dimension_name: "DimensionName", # required
1848
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
1849
- # default_dimension_value: "DefaultDimensionValue", # required
1850
- # },
1851
- # ],
1852
- # },
1853
- # sns_destination: {
1854
- # topic_arn: "AmazonResourceName", # required
1855
- # },
1856
- # }
1857
- #
1858
1450
  # @!attribute [rw] name
1859
1451
  # The name of the event destination. The name must:
1860
1452
  #
@@ -1955,14 +1547,6 @@ module Aws::SES
1955
1547
  #
1956
1548
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
1957
1549
  #
1958
- # @note When making an API call, you may pass ExtensionField
1959
- # data as a hash:
1960
- #
1961
- # {
1962
- # name: "ExtensionFieldName", # required
1963
- # value: "ExtensionFieldValue", # required
1964
- # }
1965
- #
1966
1550
  # @!attribute [rw] name
1967
1551
  # The name of the header to add. Must be between 1 and 50 characters,
1968
1552
  # inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters
@@ -2019,13 +1603,6 @@ module Aws::SES
2019
1603
  # Represents a request to retrieve an existing custom verification email
2020
1604
  # template.
2021
1605
  #
2022
- # @note When making an API call, you may pass GetCustomVerificationEmailTemplateRequest
2023
- # data as a hash:
2024
- #
2025
- # {
2026
- # template_name: "TemplateName", # required
2027
- # }
2028
- #
2029
1606
  # @!attribute [rw] template_name
2030
1607
  # The name of the custom verification email template that you want to
2031
1608
  # retrieve.
@@ -2091,13 +1668,6 @@ module Aws::SES
2091
1668
  #
2092
1669
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
2093
1670
  #
2094
- # @note When making an API call, you may pass GetIdentityDkimAttributesRequest
2095
- # data as a hash:
2096
- #
2097
- # {
2098
- # identities: ["Identity"], # required
2099
- # }
2100
- #
2101
1671
  # @!attribute [rw] identities
2102
1672
  # A list of one or more verified identities - email addresses,
2103
1673
  # domains, or both.
@@ -2136,13 +1706,6 @@ module Aws::SES
2136
1706
  #
2137
1707
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
2138
1708
  #
2139
- # @note When making an API call, you may pass GetIdentityMailFromDomainAttributesRequest
2140
- # data as a hash:
2141
- #
2142
- # {
2143
- # identities: ["Identity"], # required
2144
- # }
2145
- #
2146
1709
  # @!attribute [rw] identities
2147
1710
  # A list of one or more identities.
2148
1711
  # @return [Array<String>]
@@ -2177,13 +1740,6 @@ module Aws::SES
2177
1740
  #
2178
1741
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html
2179
1742
  #
2180
- # @note When making an API call, you may pass GetIdentityNotificationAttributesRequest
2181
- # data as a hash:
2182
- #
2183
- # {
2184
- # identities: ["Identity"], # required
2185
- # }
2186
- #
2187
1743
  # @!attribute [rw] identities
2188
1744
  # A list of one or more identities. You can specify an identity by
2189
1745
  # using its name or by using its Amazon Resource Name (ARN). Examples:
@@ -2222,14 +1778,6 @@ module Aws::SES
2222
1778
  #
2223
1779
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
2224
1780
  #
2225
- # @note When making an API call, you may pass GetIdentityPoliciesRequest
2226
- # data as a hash:
2227
- #
2228
- # {
2229
- # identity: "Identity", # required
2230
- # policy_names: ["PolicyName"], # required
2231
- # }
2232
- #
2233
1781
  # @!attribute [rw] identity
2234
1782
  # The identity for which the policies will be retrieved. You can
2235
1783
  # specify an identity by using its name or by using its Amazon
@@ -2278,13 +1826,6 @@ module Aws::SES
2278
1826
  #
2279
1827
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
2280
1828
  #
2281
- # @note When making an API call, you may pass GetIdentityVerificationAttributesRequest
2282
- # data as a hash:
2283
- #
2284
- # {
2285
- # identities: ["Identity"], # required
2286
- # }
2287
- #
2288
1829
  # @!attribute [rw] identities
2289
1830
  # A list of identities.
2290
1831
  # @return [Array<String>]
@@ -2360,13 +1901,6 @@ module Aws::SES
2360
1901
  include Aws::Structure
2361
1902
  end
2362
1903
 
2363
- # @note When making an API call, you may pass GetTemplateRequest
2364
- # data as a hash:
2365
- #
2366
- # {
2367
- # template_name: "TemplateName", # required
2368
- # }
2369
- #
2370
1904
  # @!attribute [rw] template_name
2371
1905
  # The name of the template you want to retrieve.
2372
1906
  # @return [String]
@@ -2760,14 +2294,6 @@ module Aws::SES
2760
2294
  #
2761
2295
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
2762
2296
  #
2763
- # @note When making an API call, you may pass KinesisFirehoseDestination
2764
- # data as a hash:
2765
- #
2766
- # {
2767
- # iam_role_arn: "AmazonResourceName", # required
2768
- # delivery_stream_arn: "AmazonResourceName", # required
2769
- # }
2770
- #
2771
2297
  # @!attribute [rw] iam_role_arn
2772
2298
  # The ARN of the IAM role under which Amazon SES publishes email
2773
2299
  # sending events to the Amazon Kinesis Firehose stream.
@@ -2804,15 +2330,6 @@ module Aws::SES
2804
2330
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
2805
2331
  # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-lambda.html
2806
2332
  #
2807
- # @note When making an API call, you may pass LambdaAction
2808
- # data as a hash:
2809
- #
2810
- # {
2811
- # topic_arn: "AmazonResourceName",
2812
- # function_arn: "AmazonResourceName", # required
2813
- # invocation_type: "Event", # accepts Event, RequestResponse
2814
- # }
2815
- #
2816
2333
  # @!attribute [rw] topic_arn
2817
2334
  # The Amazon Resource Name (ARN) of the Amazon SNS topic to notify
2818
2335
  # when the Lambda action is taken. An example of an Amazon SNS topic
@@ -2886,14 +2403,6 @@ module Aws::SES
2886
2403
  #
2887
2404
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
2888
2405
  #
2889
- # @note When making an API call, you may pass ListConfigurationSetsRequest
2890
- # data as a hash:
2891
- #
2892
- # {
2893
- # next_token: "NextToken",
2894
- # max_items: 1,
2895
- # }
2896
- #
2897
2406
  # @!attribute [rw] next_token
2898
2407
  # A token returned from a previous call to `ListConfigurationSets` to
2899
2408
  # indicate the position of the configuration set in the configuration
@@ -2952,14 +2461,6 @@ module Aws::SES
2952
2461
  #
2953
2462
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html
2954
2463
  #
2955
- # @note When making an API call, you may pass ListCustomVerificationEmailTemplatesRequest
2956
- # data as a hash:
2957
- #
2958
- # {
2959
- # next_token: "NextToken",
2960
- # max_results: 1,
2961
- # }
2962
- #
2963
2464
  # @!attribute [rw] next_token
2964
2465
  # An array the contains the name and creation time stamp for each
2965
2466
  # template in your Amazon SES account.
@@ -3008,15 +2509,6 @@ module Aws::SES
3008
2509
  # addresses and domains) that you have attempted to verify under your
3009
2510
  # AWS account, regardless of verification status.
3010
2511
  #
3011
- # @note When making an API call, you may pass ListIdentitiesRequest
3012
- # data as a hash:
3013
- #
3014
- # {
3015
- # identity_type: "EmailAddress", # accepts EmailAddress, Domain
3016
- # next_token: "NextToken",
3017
- # max_items: 1,
3018
- # }
3019
- #
3020
2512
  # @!attribute [rw] identity_type
3021
2513
  # The type of the identities to list. Possible values are
3022
2514
  # "EmailAddress" and "Domain". If this parameter is omitted, then
@@ -3072,13 +2564,6 @@ module Aws::SES
3072
2564
  #
3073
2565
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
3074
2566
  #
3075
- # @note When making an API call, you may pass ListIdentityPoliciesRequest
3076
- # data as a hash:
3077
- #
3078
- # {
3079
- # identity: "Identity", # required
3080
- # }
3081
- #
3082
2567
  # @!attribute [rw] identity
3083
2568
  # The identity that is associated with the policy for which the
3084
2569
  # policies will be listed. You can specify an identity by using its
@@ -3152,13 +2637,6 @@ module Aws::SES
3152
2637
  #
3153
2638
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
3154
2639
  #
3155
- # @note When making an API call, you may pass ListReceiptRuleSetsRequest
3156
- # data as a hash:
3157
- #
3158
- # {
3159
- # next_token: "NextToken",
3160
- # }
3161
- #
3162
2640
  # @!attribute [rw] next_token
3163
2641
  # A token returned from a previous call to `ListReceiptRuleSets` to
3164
2642
  # indicate the position in the receipt rule set list.
@@ -3196,14 +2674,6 @@ module Aws::SES
3196
2674
  include Aws::Structure
3197
2675
  end
3198
2676
 
3199
- # @note When making an API call, you may pass ListTemplatesRequest
3200
- # data as a hash:
3201
- #
3202
- # {
3203
- # next_token: "NextToken",
3204
- # max_items: 1,
3205
- # }
3206
- #
3207
2677
  # @!attribute [rw] next_token
3208
2678
  # A token returned from a previous call to `ListTemplates` to indicate
3209
2679
  # the position in the list of email templates.
@@ -3275,26 +2745,6 @@ module Aws::SES
3275
2745
 
3276
2746
  # Represents the message to be sent, composed of a subject and a body.
3277
2747
  #
3278
- # @note When making an API call, you may pass Message
3279
- # data as a hash:
3280
- #
3281
- # {
3282
- # subject: { # required
3283
- # data: "MessageData", # required
3284
- # charset: "Charset",
3285
- # },
3286
- # body: { # required
3287
- # text: {
3288
- # data: "MessageData", # required
3289
- # charset: "Charset",
3290
- # },
3291
- # html: {
3292
- # data: "MessageData", # required
3293
- # charset: "Charset",
3294
- # },
3295
- # },
3296
- # }
3297
- #
3298
2748
  # @!attribute [rw] subject
3299
2749
  # The subject of the message: A short summary of the content, which
3300
2750
  # will appear in the recipient's inbox.
@@ -3324,20 +2774,6 @@ module Aws::SES
3324
2774
  #
3325
2775
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
3326
2776
  #
3327
- # @note When making an API call, you may pass MessageDsn
3328
- # data as a hash:
3329
- #
3330
- # {
3331
- # reporting_mta: "ReportingMta", # required
3332
- # arrival_date: Time.now,
3333
- # extension_fields: [
3334
- # {
3335
- # name: "ExtensionFieldName", # required
3336
- # value: "ExtensionFieldValue", # required
3337
- # },
3338
- # ],
3339
- # }
3340
- #
3341
2777
  # @!attribute [rw] reporting_mta
3342
2778
  # The reporting MTA that attempted to deliver the message, formatted
3343
2779
  # as specified in [RFC 3464][1] (`mta-name-type; mta-name`). The
@@ -3390,14 +2826,6 @@ module Aws::SES
3390
2826
  #
3391
2827
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
3392
2828
  #
3393
- # @note When making an API call, you may pass MessageTag
3394
- # data as a hash:
3395
- #
3396
- # {
3397
- # name: "MessageTagName", # required
3398
- # value: "MessageTagValue", # required
3399
- # }
3400
- #
3401
2829
  # @!attribute [rw] name
3402
2830
  # The name of the tag. The name must:
3403
2831
  #
@@ -3449,16 +2877,6 @@ module Aws::SES
3449
2877
 
3450
2878
  # A request to modify the delivery options for a configuration set.
3451
2879
  #
3452
- # @note When making an API call, you may pass PutConfigurationSetDeliveryOptionsRequest
3453
- # data as a hash:
3454
- #
3455
- # {
3456
- # configuration_set_name: "ConfigurationSetName", # required
3457
- # delivery_options: {
3458
- # tls_policy: "Require", # accepts Require, Optional
3459
- # },
3460
- # }
3461
- #
3462
2880
  # @!attribute [rw] configuration_set_name
3463
2881
  # The name of the configuration set that you want to specify the
3464
2882
  # delivery options for.
@@ -3494,15 +2912,6 @@ module Aws::SES
3494
2912
  #
3495
2913
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
3496
2914
  #
3497
- # @note When making an API call, you may pass PutIdentityPolicyRequest
3498
- # data as a hash:
3499
- #
3500
- # {
3501
- # identity: "Identity", # required
3502
- # policy_name: "PolicyName", # required
3503
- # policy: "Policy", # required
3504
- # }
3505
- #
3506
2915
  # @!attribute [rw] identity
3507
2916
  # The identity that the policy will apply to. You can specify an
3508
2917
  # identity by using its name or by using its Amazon Resource Name
@@ -3549,13 +2958,6 @@ module Aws::SES
3549
2958
 
3550
2959
  # Represents the raw data of the message.
3551
2960
  #
3552
- # @note When making an API call, you may pass RawMessage
3553
- # data as a hash:
3554
- #
3555
- # {
3556
- # data: "data", # required
3557
- # }
3558
- #
3559
2961
  # @!attribute [rw] data
3560
2962
  # The raw data of the message. This data needs to base64-encoded if
3561
2963
  # you are accessing Amazon SES directly through the HTTPS interface.
@@ -3602,46 +3004,6 @@ module Aws::SES
3602
3004
  #
3603
3005
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html
3604
3006
  #
3605
- # @note When making an API call, you may pass ReceiptAction
3606
- # data as a hash:
3607
- #
3608
- # {
3609
- # s3_action: {
3610
- # topic_arn: "AmazonResourceName",
3611
- # bucket_name: "S3BucketName", # required
3612
- # object_key_prefix: "S3KeyPrefix",
3613
- # kms_key_arn: "AmazonResourceName",
3614
- # },
3615
- # bounce_action: {
3616
- # topic_arn: "AmazonResourceName",
3617
- # smtp_reply_code: "BounceSmtpReplyCode", # required
3618
- # status_code: "BounceStatusCode",
3619
- # message: "BounceMessage", # required
3620
- # sender: "Address", # required
3621
- # },
3622
- # workmail_action: {
3623
- # topic_arn: "AmazonResourceName",
3624
- # organization_arn: "AmazonResourceName", # required
3625
- # },
3626
- # lambda_action: {
3627
- # topic_arn: "AmazonResourceName",
3628
- # function_arn: "AmazonResourceName", # required
3629
- # invocation_type: "Event", # accepts Event, RequestResponse
3630
- # },
3631
- # stop_action: {
3632
- # scope: "RuleSet", # required, accepts RuleSet
3633
- # topic_arn: "AmazonResourceName",
3634
- # },
3635
- # add_header_action: {
3636
- # header_name: "HeaderName", # required
3637
- # header_value: "HeaderValue", # required
3638
- # },
3639
- # sns_action: {
3640
- # topic_arn: "AmazonResourceName", # required
3641
- # encoding: "UTF-8", # accepts UTF-8, Base64
3642
- # },
3643
- # }
3644
- #
3645
3007
  # @!attribute [rw] s3_action
3646
3008
  # Saves the received message to an Amazon Simple Storage Service
3647
3009
  # (Amazon S3) bucket and, optionally, publishes a notification to
@@ -3702,17 +3064,6 @@ module Aws::SES
3702
3064
  #
3703
3065
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html
3704
3066
  #
3705
- # @note When making an API call, you may pass ReceiptFilter
3706
- # data as a hash:
3707
- #
3708
- # {
3709
- # name: "ReceiptFilterName", # required
3710
- # ip_filter: { # required
3711
- # policy: "Block", # required, accepts Block, Allow
3712
- # cidr: "Cidr", # required
3713
- # },
3714
- # }
3715
- #
3716
3067
  # @!attribute [rw] name
3717
3068
  # The name of the IP address filter. The name must:
3718
3069
  #
@@ -3749,14 +3100,6 @@ module Aws::SES
3749
3100
  #
3750
3101
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html
3751
3102
  #
3752
- # @note When making an API call, you may pass ReceiptIpFilter
3753
- # data as a hash:
3754
- #
3755
- # {
3756
- # policy: "Block", # required, accepts Block, Allow
3757
- # cidr: "Cidr", # required
3758
- # }
3759
- #
3760
3103
  # @!attribute [rw] policy
3761
3104
  # Indicates whether to block or allow incoming mail from the specified
3762
3105
  # IP addresses.
@@ -3799,55 +3142,6 @@ module Aws::SES
3799
3142
  #
3800
3143
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html
3801
3144
  #
3802
- # @note When making an API call, you may pass ReceiptRule
3803
- # data as a hash:
3804
- #
3805
- # {
3806
- # name: "ReceiptRuleName", # required
3807
- # enabled: false,
3808
- # tls_policy: "Require", # accepts Require, Optional
3809
- # recipients: ["Recipient"],
3810
- # actions: [
3811
- # {
3812
- # s3_action: {
3813
- # topic_arn: "AmazonResourceName",
3814
- # bucket_name: "S3BucketName", # required
3815
- # object_key_prefix: "S3KeyPrefix",
3816
- # kms_key_arn: "AmazonResourceName",
3817
- # },
3818
- # bounce_action: {
3819
- # topic_arn: "AmazonResourceName",
3820
- # smtp_reply_code: "BounceSmtpReplyCode", # required
3821
- # status_code: "BounceStatusCode",
3822
- # message: "BounceMessage", # required
3823
- # sender: "Address", # required
3824
- # },
3825
- # workmail_action: {
3826
- # topic_arn: "AmazonResourceName",
3827
- # organization_arn: "AmazonResourceName", # required
3828
- # },
3829
- # lambda_action: {
3830
- # topic_arn: "AmazonResourceName",
3831
- # function_arn: "AmazonResourceName", # required
3832
- # invocation_type: "Event", # accepts Event, RequestResponse
3833
- # },
3834
- # stop_action: {
3835
- # scope: "RuleSet", # required, accepts RuleSet
3836
- # topic_arn: "AmazonResourceName",
3837
- # },
3838
- # add_header_action: {
3839
- # header_name: "HeaderName", # required
3840
- # header_value: "HeaderValue", # required
3841
- # },
3842
- # sns_action: {
3843
- # topic_arn: "AmazonResourceName", # required
3844
- # encoding: "UTF-8", # accepts UTF-8, Base64
3845
- # },
3846
- # },
3847
- # ],
3848
- # scan_enabled: false,
3849
- # }
3850
- #
3851
3145
  # @!attribute [rw] name
3852
3146
  # The name of the receipt rule. The name must:
3853
3147
  #
@@ -3948,24 +3242,6 @@ module Aws::SES
3948
3242
  #
3949
3243
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
3950
3244
  #
3951
- # @note When making an API call, you may pass RecipientDsnFields
3952
- # data as a hash:
3953
- #
3954
- # {
3955
- # final_recipient: "Address",
3956
- # action: "failed", # required, accepts failed, delayed, delivered, relayed, expanded
3957
- # remote_mta: "RemoteMta",
3958
- # status: "DsnStatus", # required
3959
- # diagnostic_code: "DiagnosticCode",
3960
- # last_attempt_date: Time.now,
3961
- # extension_fields: [
3962
- # {
3963
- # name: "ExtensionFieldName", # required
3964
- # value: "ExtensionFieldValue", # required
3965
- # },
3966
- # ],
3967
- # }
3968
- #
3969
3245
  # @!attribute [rw] final_recipient
3970
3246
  # The email address that the message was ultimately delivered to. This
3971
3247
  # corresponds to the `Final-Recipient` in the DSN. If not specified,
@@ -4059,14 +3335,6 @@ module Aws::SES
4059
3335
  #
4060
3336
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
4061
3337
  #
4062
- # @note When making an API call, you may pass ReorderReceiptRuleSetRequest
4063
- # data as a hash:
4064
- #
4065
- # {
4066
- # rule_set_name: "ReceiptRuleSetName", # required
4067
- # rule_names: ["ReceiptRuleName"], # required
4068
- # }
4069
- #
4070
3338
  # @!attribute [rw] rule_set_name
4071
3339
  # The name of the receipt rule set to reorder.
4072
3340
  # @return [String]
@@ -4190,16 +3458,6 @@ module Aws::SES
4190
3458
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
4191
3459
  # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-s3.html
4192
3460
  #
4193
- # @note When making an API call, you may pass S3Action
4194
- # data as a hash:
4195
- #
4196
- # {
4197
- # topic_arn: "AmazonResourceName",
4198
- # bucket_name: "S3BucketName", # required
4199
- # object_key_prefix: "S3KeyPrefix",
4200
- # kms_key_arn: "AmazonResourceName",
4201
- # }
4202
- #
4203
3461
  # @!attribute [rw] topic_arn
4204
3462
  # The ARN of the Amazon SNS topic to notify when the message is saved
4205
3463
  # to the Amazon S3 bucket. An example of an Amazon SNS topic ARN is
@@ -4303,14 +3561,6 @@ module Aws::SES
4303
3561
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
4304
3562
  # [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-sns.html
4305
3563
  #
4306
- # @note When making an API call, you may pass SNSAction
4307
- # data as a hash:
4308
- #
4309
- # {
4310
- # topic_arn: "AmazonResourceName", # required
4311
- # encoding: "UTF-8", # accepts UTF-8, Base64
4312
- # }
4313
- #
4314
3564
  # @!attribute [rw] topic_arn
4315
3565
  # The Amazon Resource Name (ARN) of the Amazon SNS topic to notify. An
4316
3566
  # example of an Amazon SNS topic ARN is
@@ -4351,13 +3601,6 @@ module Aws::SES
4351
3601
  #
4352
3602
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
4353
3603
  #
4354
- # @note When making an API call, you may pass SNSDestination
4355
- # data as a hash:
4356
- #
4357
- # {
4358
- # topic_arn: "AmazonResourceName", # required
4359
- # }
4360
- #
4361
3604
  # @!attribute [rw] topic_arn
4362
3605
  # The ARN of the Amazon SNS topic that email sending events will be
4363
3606
  # published to. An example of an Amazon SNS topic ARN is
@@ -4380,47 +3623,6 @@ module Aws::SES
4380
3623
  # Represents a request to send a bounce message to the sender of an
4381
3624
  # email you received through Amazon SES.
4382
3625
  #
4383
- # @note When making an API call, you may pass SendBounceRequest
4384
- # data as a hash:
4385
- #
4386
- # {
4387
- # original_message_id: "MessageId", # required
4388
- # bounce_sender: "Address", # required
4389
- # explanation: "Explanation",
4390
- # message_dsn: {
4391
- # reporting_mta: "ReportingMta", # required
4392
- # arrival_date: Time.now,
4393
- # extension_fields: [
4394
- # {
4395
- # name: "ExtensionFieldName", # required
4396
- # value: "ExtensionFieldValue", # required
4397
- # },
4398
- # ],
4399
- # },
4400
- # bounced_recipient_info_list: [ # required
4401
- # {
4402
- # recipient: "Address", # required
4403
- # recipient_arn: "AmazonResourceName",
4404
- # bounce_type: "DoesNotExist", # accepts DoesNotExist, MessageTooLarge, ExceededQuota, ContentRejected, Undefined, TemporaryFailure
4405
- # recipient_dsn_fields: {
4406
- # final_recipient: "Address",
4407
- # action: "failed", # required, accepts failed, delayed, delivered, relayed, expanded
4408
- # remote_mta: "RemoteMta",
4409
- # status: "DsnStatus", # required
4410
- # diagnostic_code: "DiagnosticCode",
4411
- # last_attempt_date: Time.now,
4412
- # extension_fields: [
4413
- # {
4414
- # name: "ExtensionFieldName", # required
4415
- # value: "ExtensionFieldValue", # required
4416
- # },
4417
- # ],
4418
- # },
4419
- # },
4420
- # ],
4421
- # bounce_sender_arn: "AmazonResourceName",
4422
- # }
4423
- #
4424
3626
  # @!attribute [rw] original_message_id
4425
3627
  # The message ID of the message to be bounced.
4426
3628
  # @return [String]
@@ -4495,43 +3697,6 @@ module Aws::SES
4495
3697
  #
4496
3698
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
4497
3699
  #
4498
- # @note When making an API call, you may pass SendBulkTemplatedEmailRequest
4499
- # data as a hash:
4500
- #
4501
- # {
4502
- # source: "Address", # required
4503
- # source_arn: "AmazonResourceName",
4504
- # reply_to_addresses: ["Address"],
4505
- # return_path: "Address",
4506
- # return_path_arn: "AmazonResourceName",
4507
- # configuration_set_name: "ConfigurationSetName",
4508
- # default_tags: [
4509
- # {
4510
- # name: "MessageTagName", # required
4511
- # value: "MessageTagValue", # required
4512
- # },
4513
- # ],
4514
- # template: "TemplateName", # required
4515
- # template_arn: "AmazonResourceName",
4516
- # default_template_data: "TemplateData",
4517
- # destinations: [ # required
4518
- # {
4519
- # destination: { # required
4520
- # to_addresses: ["Address"],
4521
- # cc_addresses: ["Address"],
4522
- # bcc_addresses: ["Address"],
4523
- # },
4524
- # replacement_tags: [
4525
- # {
4526
- # name: "MessageTagName", # required
4527
- # value: "MessageTagValue", # required
4528
- # },
4529
- # ],
4530
- # replacement_template_data: "TemplateData",
4531
- # },
4532
- # ],
4533
- # }
4534
- #
4535
3700
  # @!attribute [rw] source
4536
3701
  # The email address that is sending the email. This email address must
4537
3702
  # be either individually verified with Amazon SES, or from a domain
@@ -4696,15 +3861,6 @@ module Aws::SES
4696
3861
  # Represents a request to send a custom verification email to a
4697
3862
  # specified recipient.
4698
3863
  #
4699
- # @note When making an API call, you may pass SendCustomVerificationEmailRequest
4700
- # data as a hash:
4701
- #
4702
- # {
4703
- # email_address: "Address", # required
4704
- # template_name: "TemplateName", # required
4705
- # configuration_set_name: "ConfigurationSetName",
4706
- # }
4707
- #
4708
3864
  # @!attribute [rw] email_address
4709
3865
  # The email address to verify.
4710
3866
  # @return [String]
@@ -4787,45 +3943,6 @@ module Aws::SES
4787
3943
  #
4788
3944
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-formatted.html
4789
3945
  #
4790
- # @note When making an API call, you may pass SendEmailRequest
4791
- # data as a hash:
4792
- #
4793
- # {
4794
- # source: "Address", # required
4795
- # destination: { # required
4796
- # to_addresses: ["Address"],
4797
- # cc_addresses: ["Address"],
4798
- # bcc_addresses: ["Address"],
4799
- # },
4800
- # message: { # required
4801
- # subject: { # required
4802
- # data: "MessageData", # required
4803
- # charset: "Charset",
4804
- # },
4805
- # body: { # required
4806
- # text: {
4807
- # data: "MessageData", # required
4808
- # charset: "Charset",
4809
- # },
4810
- # html: {
4811
- # data: "MessageData", # required
4812
- # charset: "Charset",
4813
- # },
4814
- # },
4815
- # },
4816
- # reply_to_addresses: ["Address"],
4817
- # return_path: "Address",
4818
- # source_arn: "AmazonResourceName",
4819
- # return_path_arn: "AmazonResourceName",
4820
- # tags: [
4821
- # {
4822
- # name: "MessageTagName", # required
4823
- # value: "MessageTagValue", # required
4824
- # },
4825
- # ],
4826
- # configuration_set_name: "ConfigurationSetName",
4827
- # }
4828
- #
4829
3946
  # @!attribute [rw] source
4830
3947
  # The email address that is sending the email. This email address must
4831
3948
  # be either individually verified with Amazon SES, or from a domain
@@ -4978,27 +4095,6 @@ module Aws::SES
4978
4095
  #
4979
4096
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html
4980
4097
  #
4981
- # @note When making an API call, you may pass SendRawEmailRequest
4982
- # data as a hash:
4983
- #
4984
- # {
4985
- # source: "Address",
4986
- # destinations: ["Address"],
4987
- # raw_message: { # required
4988
- # data: "data", # required
4989
- # },
4990
- # from_arn: "AmazonResourceName",
4991
- # source_arn: "AmazonResourceName",
4992
- # return_path_arn: "AmazonResourceName",
4993
- # tags: [
4994
- # {
4995
- # name: "MessageTagName", # required
4996
- # value: "MessageTagValue", # required
4997
- # },
4998
- # ],
4999
- # configuration_set_name: "ConfigurationSetName",
5000
- # }
5001
- #
5002
4098
  # @!attribute [rw] source
5003
4099
  # The identity's email address. If you do not provide a value for
5004
4100
  # this parameter, you must specify a "From" address in the raw text
@@ -5197,32 +4293,6 @@ module Aws::SES
5197
4293
  #
5198
4294
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
5199
4295
  #
5200
- # @note When making an API call, you may pass SendTemplatedEmailRequest
5201
- # data as a hash:
5202
- #
5203
- # {
5204
- # source: "Address", # required
5205
- # destination: { # required
5206
- # to_addresses: ["Address"],
5207
- # cc_addresses: ["Address"],
5208
- # bcc_addresses: ["Address"],
5209
- # },
5210
- # reply_to_addresses: ["Address"],
5211
- # return_path: "Address",
5212
- # source_arn: "AmazonResourceName",
5213
- # return_path_arn: "AmazonResourceName",
5214
- # tags: [
5215
- # {
5216
- # name: "MessageTagName", # required
5217
- # value: "MessageTagValue", # required
5218
- # },
5219
- # ],
5220
- # configuration_set_name: "ConfigurationSetName",
5221
- # template: "TemplateName", # required
5222
- # template_arn: "AmazonResourceName",
5223
- # template_data: "TemplateData", # required
5224
- # }
5225
- #
5226
4296
  # @!attribute [rw] source
5227
4297
  # The email address that is sending the email. This email address must
5228
4298
  # be either individually verified with Amazon SES, or from a domain
@@ -5388,13 +4458,6 @@ module Aws::SES
5388
4458
  #
5389
4459
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
5390
4460
  #
5391
- # @note When making an API call, you may pass SetActiveReceiptRuleSetRequest
5392
- # data as a hash:
5393
- #
5394
- # {
5395
- # rule_set_name: "ReceiptRuleSetName",
5396
- # }
5397
- #
5398
4461
  # @!attribute [rw] rule_set_name
5399
4462
  # The name of the receipt rule set to make active. Setting this value
5400
4463
  # to null disables all email receiving.
@@ -5422,14 +4485,6 @@ module Aws::SES
5422
4485
  #
5423
4486
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
5424
4487
  #
5425
- # @note When making an API call, you may pass SetIdentityDkimEnabledRequest
5426
- # data as a hash:
5427
- #
5428
- # {
5429
- # identity: "Identity", # required
5430
- # dkim_enabled: false, # required
5431
- # }
5432
- #
5433
4488
  # @!attribute [rw] identity
5434
4489
  # The identity for which DKIM signing should be enabled or disabled.
5435
4490
  # @return [String]
@@ -5463,14 +4518,6 @@ module Aws::SES
5463
4518
  #
5464
4519
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-email.html
5465
4520
  #
5466
- # @note When making an API call, you may pass SetIdentityFeedbackForwardingEnabledRequest
5467
- # data as a hash:
5468
- #
5469
- # {
5470
- # identity: "Identity", # required
5471
- # forwarding_enabled: false, # required
5472
- # }
5473
- #
5474
4521
  # @!attribute [rw] identity
5475
4522
  # The identity for which to set bounce and complaint notification
5476
4523
  # forwarding. Examples: `user@example.com`, `example.com`.
@@ -5511,15 +4558,6 @@ module Aws::SES
5511
4558
  #
5512
4559
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html
5513
4560
  #
5514
- # @note When making an API call, you may pass SetIdentityHeadersInNotificationsEnabledRequest
5515
- # data as a hash:
5516
- #
5517
- # {
5518
- # identity: "Identity", # required
5519
- # notification_type: "Bounce", # required, accepts Bounce, Complaint, Delivery
5520
- # enabled: false, # required
5521
- # }
5522
- #
5523
4561
  # @!attribute [rw] identity
5524
4562
  # The identity for which to enable or disable headers in
5525
4563
  # notifications. Examples: `user@example.com`, `example.com`.
@@ -5565,15 +4603,6 @@ module Aws::SES
5565
4603
  #
5566
4604
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
5567
4605
  #
5568
- # @note When making an API call, you may pass SetIdentityMailFromDomainRequest
5569
- # data as a hash:
5570
- #
5571
- # {
5572
- # identity: "Identity", # required
5573
- # mail_from_domain: "MailFromDomainName",
5574
- # behavior_on_mx_failure: "UseDefaultValue", # accepts UseDefaultValue, RejectMessage
5575
- # }
5576
- #
5577
4606
  # @!attribute [rw] identity
5578
4607
  # The verified identity for which you want to enable or disable the
5579
4608
  # specified custom MAIL FROM domain.
@@ -5631,15 +4660,6 @@ module Aws::SES
5631
4660
  #
5632
4661
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html
5633
4662
  #
5634
- # @note When making an API call, you may pass SetIdentityNotificationTopicRequest
5635
- # data as a hash:
5636
- #
5637
- # {
5638
- # identity: "Identity", # required
5639
- # notification_type: "Bounce", # required, accepts Bounce, Complaint, Delivery
5640
- # sns_topic: "NotificationTopic",
5641
- # }
5642
- #
5643
4663
  # @!attribute [rw] identity
5644
4664
  # The identity (email address or domain) that you want to set the
5645
4665
  # Amazon SNS topic for.
@@ -5688,15 +4708,6 @@ module Aws::SES
5688
4708
  #
5689
4709
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
5690
4710
  #
5691
- # @note When making an API call, you may pass SetReceiptRulePositionRequest
5692
- # data as a hash:
5693
- #
5694
- # {
5695
- # rule_set_name: "ReceiptRuleSetName", # required
5696
- # rule_name: "ReceiptRuleName", # required
5697
- # after: "ReceiptRuleName",
5698
- # }
5699
- #
5700
4711
  # @!attribute [rw] rule_set_name
5701
4712
  # The name of the receipt rule set that contains the receipt rule to
5702
4713
  # reposition.
@@ -5738,14 +4749,6 @@ module Aws::SES
5738
4749
  #
5739
4750
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-stop.html
5740
4751
  #
5741
- # @note When making an API call, you may pass StopAction
5742
- # data as a hash:
5743
- #
5744
- # {
5745
- # scope: "RuleSet", # required, accepts RuleSet
5746
- # topic_arn: "AmazonResourceName",
5747
- # }
5748
- #
5749
4752
  # @!attribute [rw] scope
5750
4753
  # The scope of the StopAction. The only acceptable value is `RuleSet`.
5751
4754
  # @return [String]
@@ -5774,16 +4777,6 @@ module Aws::SES
5774
4777
  # The content of the email, composed of a subject line, an HTML part,
5775
4778
  # and a text-only part.
5776
4779
  #
5777
- # @note When making an API call, you may pass Template
5778
- # data as a hash:
5779
- #
5780
- # {
5781
- # template_name: "TemplateName", # required
5782
- # subject_part: "SubjectPart",
5783
- # text_part: "TextPart",
5784
- # html_part: "HtmlPart",
5785
- # }
5786
- #
5787
4780
  # @!attribute [rw] template_name
5788
4781
  # The name of the template. You will refer to this name when you send
5789
4782
  # email using the `SendTemplatedEmail` or `SendBulkTemplatedEmail`
@@ -5847,14 +4840,6 @@ module Aws::SES
5847
4840
  include Aws::Structure
5848
4841
  end
5849
4842
 
5850
- # @note When making an API call, you may pass TestRenderTemplateRequest
5851
- # data as a hash:
5852
- #
5853
- # {
5854
- # template_name: "TemplateName", # required
5855
- # template_data: "TemplateData", # required
5856
- # }
5857
- #
5858
4843
  # @!attribute [rw] template_name
5859
4844
  # The name of the template that you want to render.
5860
4845
  # @return [String]
@@ -5900,13 +4885,6 @@ module Aws::SES
5900
4885
  #
5901
4886
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html
5902
4887
  #
5903
- # @note When making an API call, you may pass TrackingOptions
5904
- # data as a hash:
5905
- #
5906
- # {
5907
- # custom_redirect_domain: "CustomRedirectDomain",
5908
- # }
5909
- #
5910
4888
  # @!attribute [rw] custom_redirect_domain
5911
4889
  # The custom subdomain that will be used to redirect email recipients
5912
4890
  # to the Amazon SES event tracking domain.
@@ -5955,13 +4933,6 @@ module Aws::SES
5955
4933
  # Represents a request to enable or disable the email sending
5956
4934
  # capabilities for your entire Amazon SES account.
5957
4935
  #
5958
- # @note When making an API call, you may pass UpdateAccountSendingEnabledRequest
5959
- # data as a hash:
5960
- #
5961
- # {
5962
- # enabled: false,
5963
- # }
5964
- #
5965
4936
  # @!attribute [rw] enabled
5966
4937
  # Describes whether email sending is enabled or disabled for your
5967
4938
  # Amazon SES account in the current AWS Region.
@@ -5984,34 +4955,6 @@ module Aws::SES
5984
4955
  #
5985
4956
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
5986
4957
  #
5987
- # @note When making an API call, you may pass UpdateConfigurationSetEventDestinationRequest
5988
- # data as a hash:
5989
- #
5990
- # {
5991
- # configuration_set_name: "ConfigurationSetName", # required
5992
- # event_destination: { # required
5993
- # name: "EventDestinationName", # required
5994
- # enabled: false,
5995
- # matching_event_types: ["send"], # required, accepts send, reject, bounce, complaint, delivery, open, click, renderingFailure
5996
- # kinesis_firehose_destination: {
5997
- # iam_role_arn: "AmazonResourceName", # required
5998
- # delivery_stream_arn: "AmazonResourceName", # required
5999
- # },
6000
- # cloud_watch_destination: {
6001
- # dimension_configurations: [ # required
6002
- # {
6003
- # dimension_name: "DimensionName", # required
6004
- # dimension_value_source: "messageTag", # required, accepts messageTag, emailHeader, linkTag
6005
- # default_dimension_value: "DefaultDimensionValue", # required
6006
- # },
6007
- # ],
6008
- # },
6009
- # sns_destination: {
6010
- # topic_arn: "AmazonResourceName", # required
6011
- # },
6012
- # },
6013
- # }
6014
- #
6015
4958
  # @!attribute [rw] configuration_set_name
6016
4959
  # The name of the configuration set that contains the event
6017
4960
  # destination that you want to update.
@@ -6040,14 +4983,6 @@ module Aws::SES
6040
4983
  # Represents a request to modify the reputation metric publishing
6041
4984
  # settings for a configuration set.
6042
4985
  #
6043
- # @note When making an API call, you may pass UpdateConfigurationSetReputationMetricsEnabledRequest
6044
- # data as a hash:
6045
- #
6046
- # {
6047
- # configuration_set_name: "ConfigurationSetName", # required
6048
- # enabled: false, # required
6049
- # }
6050
- #
6051
4986
  # @!attribute [rw] configuration_set_name
6052
4987
  # The name of the configuration set that you want to update.
6053
4988
  # @return [String]
@@ -6070,14 +5005,6 @@ module Aws::SES
6070
5005
  # Represents a request to enable or disable the email sending
6071
5006
  # capabilities for a specific configuration set.
6072
5007
  #
6073
- # @note When making an API call, you may pass UpdateConfigurationSetSendingEnabledRequest
6074
- # data as a hash:
6075
- #
6076
- # {
6077
- # configuration_set_name: "ConfigurationSetName", # required
6078
- # enabled: false, # required
6079
- # }
6080
- #
6081
5008
  # @!attribute [rw] configuration_set_name
6082
5009
  # The name of the configuration set that you want to update.
6083
5010
  # @return [String]
@@ -6099,16 +5026,6 @@ module Aws::SES
6099
5026
  # Represents a request to update the tracking options for a
6100
5027
  # configuration set.
6101
5028
  #
6102
- # @note When making an API call, you may pass UpdateConfigurationSetTrackingOptionsRequest
6103
- # data as a hash:
6104
- #
6105
- # {
6106
- # configuration_set_name: "ConfigurationSetName", # required
6107
- # tracking_options: { # required
6108
- # custom_redirect_domain: "CustomRedirectDomain",
6109
- # },
6110
- # }
6111
- #
6112
5029
  # @!attribute [rw] configuration_set_name
6113
5030
  # The name of the configuration set for which you want to update the
6114
5031
  # custom tracking domain.
@@ -6145,18 +5062,6 @@ module Aws::SES
6145
5062
  # Represents a request to update an existing custom verification email
6146
5063
  # template.
6147
5064
  #
6148
- # @note When making an API call, you may pass UpdateCustomVerificationEmailTemplateRequest
6149
- # data as a hash:
6150
- #
6151
- # {
6152
- # template_name: "TemplateName", # required
6153
- # from_email_address: "FromAddress",
6154
- # template_subject: "Subject",
6155
- # template_content: "TemplateContent",
6156
- # success_redirection_url: "SuccessRedirectionURL",
6157
- # failure_redirection_url: "FailureRedirectionURL",
6158
- # }
6159
- #
6160
5065
  # @!attribute [rw] template_name
6161
5066
  # The name of the custom verification email template that you want to
6162
5067
  # update.
@@ -6213,58 +5118,6 @@ module Aws::SES
6213
5118
  #
6214
5119
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
6215
5120
  #
6216
- # @note When making an API call, you may pass UpdateReceiptRuleRequest
6217
- # data as a hash:
6218
- #
6219
- # {
6220
- # rule_set_name: "ReceiptRuleSetName", # required
6221
- # rule: { # required
6222
- # name: "ReceiptRuleName", # required
6223
- # enabled: false,
6224
- # tls_policy: "Require", # accepts Require, Optional
6225
- # recipients: ["Recipient"],
6226
- # actions: [
6227
- # {
6228
- # s3_action: {
6229
- # topic_arn: "AmazonResourceName",
6230
- # bucket_name: "S3BucketName", # required
6231
- # object_key_prefix: "S3KeyPrefix",
6232
- # kms_key_arn: "AmazonResourceName",
6233
- # },
6234
- # bounce_action: {
6235
- # topic_arn: "AmazonResourceName",
6236
- # smtp_reply_code: "BounceSmtpReplyCode", # required
6237
- # status_code: "BounceStatusCode",
6238
- # message: "BounceMessage", # required
6239
- # sender: "Address", # required
6240
- # },
6241
- # workmail_action: {
6242
- # topic_arn: "AmazonResourceName",
6243
- # organization_arn: "AmazonResourceName", # required
6244
- # },
6245
- # lambda_action: {
6246
- # topic_arn: "AmazonResourceName",
6247
- # function_arn: "AmazonResourceName", # required
6248
- # invocation_type: "Event", # accepts Event, RequestResponse
6249
- # },
6250
- # stop_action: {
6251
- # scope: "RuleSet", # required, accepts RuleSet
6252
- # topic_arn: "AmazonResourceName",
6253
- # },
6254
- # add_header_action: {
6255
- # header_name: "HeaderName", # required
6256
- # header_value: "HeaderValue", # required
6257
- # },
6258
- # sns_action: {
6259
- # topic_arn: "AmazonResourceName", # required
6260
- # encoding: "UTF-8", # accepts UTF-8, Base64
6261
- # },
6262
- # },
6263
- # ],
6264
- # scan_enabled: false,
6265
- # },
6266
- # }
6267
- #
6268
5121
  # @!attribute [rw] rule_set_name
6269
5122
  # The name of the receipt rule set that the receipt rule belongs to.
6270
5123
  # @return [String]
@@ -6288,18 +5141,6 @@ module Aws::SES
6288
5141
  #
6289
5142
  class UpdateReceiptRuleResponse < Aws::EmptyStructure; end
6290
5143
 
6291
- # @note When making an API call, you may pass UpdateTemplateRequest
6292
- # data as a hash:
6293
- #
6294
- # {
6295
- # template: { # required
6296
- # template_name: "TemplateName", # required
6297
- # subject_part: "SubjectPart",
6298
- # text_part: "TextPart",
6299
- # html_part: "HtmlPart",
6300
- # },
6301
- # }
6302
- #
6303
5144
  # @!attribute [rw] template
6304
5145
  # The content of the email, composed of a subject line, an HTML part,
6305
5146
  # and a text-only part.
@@ -6325,13 +5166,6 @@ module Aws::SES
6325
5166
  #
6326
5167
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
6327
5168
  #
6328
- # @note When making an API call, you may pass VerifyDomainDkimRequest
6329
- # data as a hash:
6330
- #
6331
- # {
6332
- # domain: "Domain", # required
6333
- # }
6334
- #
6335
5169
  # @!attribute [rw] domain
6336
5170
  # The name of the domain to be verified for Easy DKIM signing.
6337
5171
  # @return [String]
@@ -6385,13 +5219,6 @@ module Aws::SES
6385
5219
  #
6386
5220
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html
6387
5221
  #
6388
- # @note When making an API call, you may pass VerifyDomainIdentityRequest
6389
- # data as a hash:
6390
- #
6391
- # {
6392
- # domain: "Domain", # required
6393
- # }
6394
- #
6395
5222
  # @!attribute [rw] domain
6396
5223
  # The domain to be verified.
6397
5224
  # @return [String]
@@ -6436,13 +5263,6 @@ module Aws::SES
6436
5263
  #
6437
5264
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html
6438
5265
  #
6439
- # @note When making an API call, you may pass VerifyEmailAddressRequest
6440
- # data as a hash:
6441
- #
6442
- # {
6443
- # email_address: "Address", # required
6444
- # }
6445
- #
6446
5266
  # @!attribute [rw] email_address
6447
5267
  # The email address to be verified.
6448
5268
  # @return [String]
@@ -6463,13 +5283,6 @@ module Aws::SES
6463
5283
  #
6464
5284
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html
6465
5285
  #
6466
- # @note When making an API call, you may pass VerifyEmailIdentityRequest
6467
- # data as a hash:
6468
- #
6469
- # {
6470
- # email_address: "Address", # required
6471
- # }
6472
- #
6473
5286
  # @!attribute [rw] email_address
6474
5287
  # The email address to be verified.
6475
5288
  # @return [String]
@@ -6501,14 +5314,6 @@ module Aws::SES
6501
5314
  #
6502
5315
  # [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-workmail.html
6503
5316
  #
6504
- # @note When making an API call, you may pass WorkmailAction
6505
- # data as a hash:
6506
- #
6507
- # {
6508
- # topic_arn: "AmazonResourceName",
6509
- # organization_arn: "AmazonResourceName", # required
6510
- # }
6511
- #
6512
5317
  # @!attribute [rw] topic_arn
6513
5318
  # The Amazon Resource Name (ARN) of the Amazon SNS topic to notify
6514
5319
  # when the WorkMail action is called. An example of an Amazon SNS