aws-sdk-ses 1.48.0 → 1.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-ses/client.rb +1 -1
- data/lib/aws-sdk-ses/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-ses/types.rb +0 -1194
- data/lib/aws-sdk-ses.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ses/types.rb
CHANGED
@@ -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.
|
@@ -422,14 +348,6 @@ module Aws::SES
|
|
422
348
|
#
|
423
349
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
424
350
|
#
|
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
351
|
# @!attribute [rw] rule_set_name
|
434
352
|
# The name of the rule set to create. The name must:
|
435
353
|
#
|
@@ -472,19 +390,6 @@ module Aws::SES
|
|
472
390
|
#
|
473
391
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
474
392
|
#
|
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
393
|
# @!attribute [rw] dimension_configurations
|
489
394
|
# A list of dimensions upon which to categorize your emails when you
|
490
395
|
# publish email sending events to Amazon CloudWatch.
|
@@ -508,15 +413,6 @@ module Aws::SES
|
|
508
413
|
#
|
509
414
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
510
415
|
#
|
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
416
|
# @!attribute [rw] dimension_name
|
521
417
|
# The name of an Amazon CloudWatch dimension associated with an email
|
522
418
|
# sending metric. The name must:
|
@@ -568,13 +464,6 @@ module Aws::SES
|
|
568
464
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/using-configuration-sets.html
|
569
465
|
# [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/
|
570
466
|
#
|
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
467
|
# @!attribute [rw] name
|
579
468
|
# The name of the configuration set. The name must meet the following
|
580
469
|
# requirements:
|
@@ -647,14 +536,6 @@ module Aws::SES
|
|
647
536
|
# you must also specify a character set. Examples include UTF-8,
|
648
537
|
# ISO-8859-1, and Shift\_JIS.
|
649
538
|
#
|
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
539
|
# @!attribute [rw] data
|
659
540
|
# The textual data of the content.
|
660
541
|
# @return [String]
|
@@ -683,34 +564,6 @@ module Aws::SES
|
|
683
564
|
#
|
684
565
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
685
566
|
#
|
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
567
|
# @!attribute [rw] configuration_set_name
|
715
568
|
# The name of the configuration set that the event destination should
|
716
569
|
# be associated with.
|
@@ -744,15 +597,6 @@ module Aws::SES
|
|
744
597
|
#
|
745
598
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
746
599
|
#
|
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
600
|
# @!attribute [rw] configuration_set
|
757
601
|
# A data structure that contains the name of the configuration set.
|
758
602
|
# @return [Types::ConfigurationSet]
|
@@ -774,16 +618,6 @@ module Aws::SES
|
|
774
618
|
# Represents a request to create an open and click tracking option
|
775
619
|
# object in a configuration set.
|
776
620
|
#
|
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
621
|
# @!attribute [rw] configuration_set_name
|
788
622
|
# The name of the configuration set that the tracking options should
|
789
623
|
# be associated with.
|
@@ -819,18 +653,6 @@ module Aws::SES
|
|
819
653
|
|
820
654
|
# Represents a request to create a custom verification email template.
|
821
655
|
#
|
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
656
|
# @!attribute [rw] template_name
|
835
657
|
# The name of the custom verification email template.
|
836
658
|
# @return [String]
|
@@ -886,19 +708,6 @@ module Aws::SES
|
|
886
708
|
#
|
887
709
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
888
710
|
#
|
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
711
|
# @!attribute [rw] filter
|
903
712
|
# A data structure that describes the IP address filter to create,
|
904
713
|
# which consists of a name, an IP address range, and whether to allow
|
@@ -927,59 +736,6 @@ module Aws::SES
|
|
927
736
|
#
|
928
737
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
929
738
|
#
|
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
739
|
# @!attribute [rw] rule_set_name
|
984
740
|
# The name of the rule set that the receipt rule will be added to.
|
985
741
|
# @return [String]
|
@@ -1019,13 +775,6 @@ module Aws::SES
|
|
1019
775
|
#
|
1020
776
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
1021
777
|
#
|
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
778
|
# @!attribute [rw] rule_set_name
|
1030
779
|
# The name of the rule set to create. The name must:
|
1031
780
|
#
|
@@ -1058,18 +807,6 @@ module Aws::SES
|
|
1058
807
|
#
|
1059
808
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
|
1060
809
|
#
|
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
810
|
# @!attribute [rw] template
|
1074
811
|
# The content of the email, composed of a subject line, an HTML part,
|
1075
812
|
# and a text-only part.
|
@@ -1172,14 +909,6 @@ module Aws::SES
|
|
1172
909
|
#
|
1173
910
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
1174
911
|
#
|
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
912
|
# @!attribute [rw] configuration_set_name
|
1184
913
|
# The name of the configuration set from which to delete the event
|
1185
914
|
# destination.
|
@@ -1212,13 +941,6 @@ module Aws::SES
|
|
1212
941
|
#
|
1213
942
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
1214
943
|
#
|
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
944
|
# @!attribute [rw] configuration_set_name
|
1223
945
|
# The name of the configuration set to delete.
|
1224
946
|
# @return [String]
|
@@ -1240,13 +962,6 @@ module Aws::SES
|
|
1240
962
|
# Represents a request to delete open and click tracking options in a
|
1241
963
|
# configuration set.
|
1242
964
|
#
|
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
965
|
# @!attribute [rw] configuration_set_name
|
1251
966
|
# The name of the configuration set from which you want to delete the
|
1252
967
|
# tracking options.
|
@@ -1269,13 +984,6 @@ module Aws::SES
|
|
1269
984
|
# Represents a request to delete an existing custom verification email
|
1270
985
|
# template.
|
1271
986
|
#
|
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
987
|
# @!attribute [rw] template_name
|
1280
988
|
# The name of the custom verification email template that you want to
|
1281
989
|
# delete.
|
@@ -1298,14 +1006,6 @@ module Aws::SES
|
|
1298
1006
|
#
|
1299
1007
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
|
1300
1008
|
#
|
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
1009
|
# @!attribute [rw] identity
|
1310
1010
|
# The identity that is associated with the policy that you want to
|
1311
1011
|
# delete. You can specify the identity by using its name or by using
|
@@ -1338,13 +1038,6 @@ module Aws::SES
|
|
1338
1038
|
# Represents a request to delete one of your Amazon SES identities (an
|
1339
1039
|
# email address or domain).
|
1340
1040
|
#
|
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
1041
|
# @!attribute [rw] identity
|
1349
1042
|
# The identity to be removed from the list of identities for the AWS
|
1350
1043
|
# Account.
|
@@ -1372,13 +1065,6 @@ module Aws::SES
|
|
1372
1065
|
#
|
1373
1066
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
1374
1067
|
#
|
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
1068
|
# @!attribute [rw] filter_name
|
1383
1069
|
# The name of the IP address filter to delete.
|
1384
1070
|
# @return [String]
|
@@ -1405,14 +1091,6 @@ module Aws::SES
|
|
1405
1091
|
#
|
1406
1092
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
1407
1093
|
#
|
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
1094
|
# @!attribute [rw] rule_set_name
|
1417
1095
|
# The name of the receipt rule set that contains the receipt rule to
|
1418
1096
|
# delete.
|
@@ -1446,13 +1124,6 @@ module Aws::SES
|
|
1446
1124
|
#
|
1447
1125
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
1448
1126
|
#
|
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
1127
|
# @!attribute [rw] rule_set_name
|
1457
1128
|
# The name of the receipt rule set to delete.
|
1458
1129
|
# @return [String]
|
@@ -1478,13 +1149,6 @@ module Aws::SES
|
|
1478
1149
|
#
|
1479
1150
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
|
1480
1151
|
#
|
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
1152
|
# @!attribute [rw] template_name
|
1489
1153
|
# The name of the template to be deleted.
|
1490
1154
|
# @return [String]
|
@@ -1504,13 +1168,6 @@ module Aws::SES
|
|
1504
1168
|
# Represents a request to delete an email address from the list of email
|
1505
1169
|
# addresses you have attempted to verify under your AWS account.
|
1506
1170
|
#
|
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
1171
|
# @!attribute [rw] email_address
|
1515
1172
|
# An email address to be removed from the list of verified addresses.
|
1516
1173
|
# @return [String]
|
@@ -1526,13 +1183,6 @@ module Aws::SES
|
|
1526
1183
|
# Specifies whether messages that use the configuration set are required
|
1527
1184
|
# to use Transport Layer Security (TLS).
|
1528
1185
|
#
|
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
1186
|
# @!attribute [rw] tls_policy
|
1537
1187
|
# Specifies whether messages that use the configuration set are
|
1538
1188
|
# required to use Transport Layer Security (TLS). If the value is
|
@@ -1595,14 +1245,6 @@ module Aws::SES
|
|
1595
1245
|
#
|
1596
1246
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
1597
1247
|
#
|
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
1248
|
# @!attribute [rw] configuration_set_name
|
1607
1249
|
# The name of the configuration set to describe.
|
1608
1250
|
# @return [String]
|
@@ -1672,14 +1314,6 @@ module Aws::SES
|
|
1672
1314
|
#
|
1673
1315
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
1674
1316
|
#
|
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
1317
|
# @!attribute [rw] rule_set_name
|
1684
1318
|
# The name of the receipt rule set that the receipt rule belongs to.
|
1685
1319
|
# @return [String]
|
@@ -1721,13 +1355,6 @@ module Aws::SES
|
|
1721
1355
|
#
|
1722
1356
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
1723
1357
|
#
|
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
1358
|
# @!attribute [rw] rule_set_name
|
1732
1359
|
# The name of the receipt rule set to describe.
|
1733
1360
|
# @return [String]
|
@@ -1779,15 +1406,6 @@ module Aws::SES
|
|
1779
1406
|
# [2]: https://en.wikipedia.org/wiki/Email_address#Local-part
|
1780
1407
|
# [3]: https://tools.ietf.org/html/rfc3492.html
|
1781
1408
|
#
|
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
1409
|
# @!attribute [rw] to_addresses
|
1792
1410
|
# The recipients to place on the To: line of the message.
|
1793
1411
|
# @return [Array<String>]
|
@@ -1830,31 +1448,6 @@ module Aws::SES
|
|
1830
1448
|
#
|
1831
1449
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
1832
1450
|
#
|
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
1451
|
# @!attribute [rw] name
|
1859
1452
|
# The name of the event destination. The name must:
|
1860
1453
|
#
|
@@ -1955,14 +1548,6 @@ module Aws::SES
|
|
1955
1548
|
#
|
1956
1549
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
|
1957
1550
|
#
|
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
1551
|
# @!attribute [rw] name
|
1967
1552
|
# The name of the header to add. Must be between 1 and 50 characters,
|
1968
1553
|
# inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters
|
@@ -2019,13 +1604,6 @@ module Aws::SES
|
|
2019
1604
|
# Represents a request to retrieve an existing custom verification email
|
2020
1605
|
# template.
|
2021
1606
|
#
|
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
1607
|
# @!attribute [rw] template_name
|
2030
1608
|
# The name of the custom verification email template that you want to
|
2031
1609
|
# retrieve.
|
@@ -2091,13 +1669,6 @@ module Aws::SES
|
|
2091
1669
|
#
|
2092
1670
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
|
2093
1671
|
#
|
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
1672
|
# @!attribute [rw] identities
|
2102
1673
|
# A list of one or more verified identities - email addresses,
|
2103
1674
|
# domains, or both.
|
@@ -2136,13 +1707,6 @@ module Aws::SES
|
|
2136
1707
|
#
|
2137
1708
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
|
2138
1709
|
#
|
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
1710
|
# @!attribute [rw] identities
|
2147
1711
|
# A list of one or more identities.
|
2148
1712
|
# @return [Array<String>]
|
@@ -2177,13 +1741,6 @@ module Aws::SES
|
|
2177
1741
|
#
|
2178
1742
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html
|
2179
1743
|
#
|
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
1744
|
# @!attribute [rw] identities
|
2188
1745
|
# A list of one or more identities. You can specify an identity by
|
2189
1746
|
# using its name or by using its Amazon Resource Name (ARN). Examples:
|
@@ -2222,14 +1779,6 @@ module Aws::SES
|
|
2222
1779
|
#
|
2223
1780
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
|
2224
1781
|
#
|
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
1782
|
# @!attribute [rw] identity
|
2234
1783
|
# The identity for which the policies will be retrieved. You can
|
2235
1784
|
# specify an identity by using its name or by using its Amazon
|
@@ -2278,13 +1827,6 @@ module Aws::SES
|
|
2278
1827
|
#
|
2279
1828
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html
|
2280
1829
|
#
|
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
1830
|
# @!attribute [rw] identities
|
2289
1831
|
# A list of identities.
|
2290
1832
|
# @return [Array<String>]
|
@@ -2360,13 +1902,6 @@ module Aws::SES
|
|
2360
1902
|
include Aws::Structure
|
2361
1903
|
end
|
2362
1904
|
|
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
1905
|
# @!attribute [rw] template_name
|
2371
1906
|
# The name of the template you want to retrieve.
|
2372
1907
|
# @return [String]
|
@@ -2760,14 +2295,6 @@ module Aws::SES
|
|
2760
2295
|
#
|
2761
2296
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
2762
2297
|
#
|
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
2298
|
# @!attribute [rw] iam_role_arn
|
2772
2299
|
# The ARN of the IAM role under which Amazon SES publishes email
|
2773
2300
|
# sending events to the Amazon Kinesis Firehose stream.
|
@@ -2804,15 +2331,6 @@ module Aws::SES
|
|
2804
2331
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
|
2805
2332
|
# [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-lambda.html
|
2806
2333
|
#
|
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
2334
|
# @!attribute [rw] topic_arn
|
2817
2335
|
# The Amazon Resource Name (ARN) of the Amazon SNS topic to notify
|
2818
2336
|
# when the Lambda action is taken. An example of an Amazon SNS topic
|
@@ -2886,14 +2404,6 @@ module Aws::SES
|
|
2886
2404
|
#
|
2887
2405
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
2888
2406
|
#
|
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
2407
|
# @!attribute [rw] next_token
|
2898
2408
|
# A token returned from a previous call to `ListConfigurationSets` to
|
2899
2409
|
# indicate the position of the configuration set in the configuration
|
@@ -2952,14 +2462,6 @@ module Aws::SES
|
|
2952
2462
|
#
|
2953
2463
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html
|
2954
2464
|
#
|
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
2465
|
# @!attribute [rw] next_token
|
2964
2466
|
# An array the contains the name and creation time stamp for each
|
2965
2467
|
# template in your Amazon SES account.
|
@@ -3008,15 +2510,6 @@ module Aws::SES
|
|
3008
2510
|
# addresses and domains) that you have attempted to verify under your
|
3009
2511
|
# AWS account, regardless of verification status.
|
3010
2512
|
#
|
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
2513
|
# @!attribute [rw] identity_type
|
3021
2514
|
# The type of the identities to list. Possible values are
|
3022
2515
|
# "EmailAddress" and "Domain". If this parameter is omitted, then
|
@@ -3072,13 +2565,6 @@ module Aws::SES
|
|
3072
2565
|
#
|
3073
2566
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
|
3074
2567
|
#
|
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
2568
|
# @!attribute [rw] identity
|
3083
2569
|
# The identity that is associated with the policy for which the
|
3084
2570
|
# policies will be listed. You can specify an identity by using its
|
@@ -3152,13 +2638,6 @@ module Aws::SES
|
|
3152
2638
|
#
|
3153
2639
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
3154
2640
|
#
|
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
2641
|
# @!attribute [rw] next_token
|
3163
2642
|
# A token returned from a previous call to `ListReceiptRuleSets` to
|
3164
2643
|
# indicate the position in the receipt rule set list.
|
@@ -3196,14 +2675,6 @@ module Aws::SES
|
|
3196
2675
|
include Aws::Structure
|
3197
2676
|
end
|
3198
2677
|
|
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
2678
|
# @!attribute [rw] next_token
|
3208
2679
|
# A token returned from a previous call to `ListTemplates` to indicate
|
3209
2680
|
# the position in the list of email templates.
|
@@ -3275,26 +2746,6 @@ module Aws::SES
|
|
3275
2746
|
|
3276
2747
|
# Represents the message to be sent, composed of a subject and a body.
|
3277
2748
|
#
|
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
2749
|
# @!attribute [rw] subject
|
3299
2750
|
# The subject of the message: A short summary of the content, which
|
3300
2751
|
# will appear in the recipient's inbox.
|
@@ -3324,20 +2775,6 @@ module Aws::SES
|
|
3324
2775
|
#
|
3325
2776
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
|
3326
2777
|
#
|
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
2778
|
# @!attribute [rw] reporting_mta
|
3342
2779
|
# The reporting MTA that attempted to deliver the message, formatted
|
3343
2780
|
# as specified in [RFC 3464][1] (`mta-name-type; mta-name`). The
|
@@ -3390,14 +2827,6 @@ module Aws::SES
|
|
3390
2827
|
#
|
3391
2828
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
3392
2829
|
#
|
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
2830
|
# @!attribute [rw] name
|
3402
2831
|
# The name of the tag. The name must:
|
3403
2832
|
#
|
@@ -3449,16 +2878,6 @@ module Aws::SES
|
|
3449
2878
|
|
3450
2879
|
# A request to modify the delivery options for a configuration set.
|
3451
2880
|
#
|
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
2881
|
# @!attribute [rw] configuration_set_name
|
3463
2882
|
# The name of the configuration set that you want to specify the
|
3464
2883
|
# delivery options for.
|
@@ -3494,15 +2913,6 @@ module Aws::SES
|
|
3494
2913
|
#
|
3495
2914
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html
|
3496
2915
|
#
|
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
2916
|
# @!attribute [rw] identity
|
3507
2917
|
# The identity that the policy will apply to. You can specify an
|
3508
2918
|
# identity by using its name or by using its Amazon Resource Name
|
@@ -3549,13 +2959,6 @@ module Aws::SES
|
|
3549
2959
|
|
3550
2960
|
# Represents the raw data of the message.
|
3551
2961
|
#
|
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
2962
|
# @!attribute [rw] data
|
3560
2963
|
# The raw data of the message. This data needs to base64-encoded if
|
3561
2964
|
# you are accessing Amazon SES directly through the HTTPS interface.
|
@@ -3602,46 +3005,6 @@ module Aws::SES
|
|
3602
3005
|
#
|
3603
3006
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html
|
3604
3007
|
#
|
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
3008
|
# @!attribute [rw] s3_action
|
3646
3009
|
# Saves the received message to an Amazon Simple Storage Service
|
3647
3010
|
# (Amazon S3) bucket and, optionally, publishes a notification to
|
@@ -3702,17 +3065,6 @@ module Aws::SES
|
|
3702
3065
|
#
|
3703
3066
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html
|
3704
3067
|
#
|
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
3068
|
# @!attribute [rw] name
|
3717
3069
|
# The name of the IP address filter. The name must:
|
3718
3070
|
#
|
@@ -3749,14 +3101,6 @@ module Aws::SES
|
|
3749
3101
|
#
|
3750
3102
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html
|
3751
3103
|
#
|
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
3104
|
# @!attribute [rw] policy
|
3761
3105
|
# Indicates whether to block or allow incoming mail from the specified
|
3762
3106
|
# IP addresses.
|
@@ -3799,55 +3143,6 @@ module Aws::SES
|
|
3799
3143
|
#
|
3800
3144
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html
|
3801
3145
|
#
|
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
3146
|
# @!attribute [rw] name
|
3852
3147
|
# The name of the receipt rule. The name must:
|
3853
3148
|
#
|
@@ -3948,24 +3243,6 @@ module Aws::SES
|
|
3948
3243
|
#
|
3949
3244
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html
|
3950
3245
|
#
|
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
3246
|
# @!attribute [rw] final_recipient
|
3970
3247
|
# The email address that the message was ultimately delivered to. This
|
3971
3248
|
# corresponds to the `Final-Recipient` in the DSN. If not specified,
|
@@ -4059,14 +3336,6 @@ module Aws::SES
|
|
4059
3336
|
#
|
4060
3337
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
4061
3338
|
#
|
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
3339
|
# @!attribute [rw] rule_set_name
|
4071
3340
|
# The name of the receipt rule set to reorder.
|
4072
3341
|
# @return [String]
|
@@ -4190,16 +3459,6 @@ module Aws::SES
|
|
4190
3459
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
|
4191
3460
|
# [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-s3.html
|
4192
3461
|
#
|
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
3462
|
# @!attribute [rw] topic_arn
|
4204
3463
|
# The ARN of the Amazon SNS topic to notify when the message is saved
|
4205
3464
|
# to the Amazon S3 bucket. An example of an Amazon SNS topic ARN is
|
@@ -4303,14 +3562,6 @@ module Aws::SES
|
|
4303
3562
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
|
4304
3563
|
# [2]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-sns.html
|
4305
3564
|
#
|
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
3565
|
# @!attribute [rw] topic_arn
|
4315
3566
|
# The Amazon Resource Name (ARN) of the Amazon SNS topic to notify. An
|
4316
3567
|
# example of an Amazon SNS topic ARN is
|
@@ -4351,13 +3602,6 @@ module Aws::SES
|
|
4351
3602
|
#
|
4352
3603
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
4353
3604
|
#
|
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
3605
|
# @!attribute [rw] topic_arn
|
4362
3606
|
# The ARN of the Amazon SNS topic that email sending events will be
|
4363
3607
|
# published to. An example of an Amazon SNS topic ARN is
|
@@ -4380,47 +3624,6 @@ module Aws::SES
|
|
4380
3624
|
# Represents a request to send a bounce message to the sender of an
|
4381
3625
|
# email you received through Amazon SES.
|
4382
3626
|
#
|
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
3627
|
# @!attribute [rw] original_message_id
|
4425
3628
|
# The message ID of the message to be bounced.
|
4426
3629
|
# @return [String]
|
@@ -4495,43 +3698,6 @@ module Aws::SES
|
|
4495
3698
|
#
|
4496
3699
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
|
4497
3700
|
#
|
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
3701
|
# @!attribute [rw] source
|
4536
3702
|
# The email address that is sending the email. This email address must
|
4537
3703
|
# be either individually verified with Amazon SES, or from a domain
|
@@ -4696,15 +3862,6 @@ module Aws::SES
|
|
4696
3862
|
# Represents a request to send a custom verification email to a
|
4697
3863
|
# specified recipient.
|
4698
3864
|
#
|
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
3865
|
# @!attribute [rw] email_address
|
4709
3866
|
# The email address to verify.
|
4710
3867
|
# @return [String]
|
@@ -4787,45 +3944,6 @@ module Aws::SES
|
|
4787
3944
|
#
|
4788
3945
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-formatted.html
|
4789
3946
|
#
|
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
3947
|
# @!attribute [rw] source
|
4830
3948
|
# The email address that is sending the email. This email address must
|
4831
3949
|
# be either individually verified with Amazon SES, or from a domain
|
@@ -4978,27 +4096,6 @@ module Aws::SES
|
|
4978
4096
|
#
|
4979
4097
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html
|
4980
4098
|
#
|
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
4099
|
# @!attribute [rw] source
|
5003
4100
|
# The identity's email address. If you do not provide a value for
|
5004
4101
|
# this parameter, you must specify a "From" address in the raw text
|
@@ -5197,32 +4294,6 @@ module Aws::SES
|
|
5197
4294
|
#
|
5198
4295
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html
|
5199
4296
|
#
|
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
4297
|
# @!attribute [rw] source
|
5227
4298
|
# The email address that is sending the email. This email address must
|
5228
4299
|
# be either individually verified with Amazon SES, or from a domain
|
@@ -5388,13 +4459,6 @@ module Aws::SES
|
|
5388
4459
|
#
|
5389
4460
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
5390
4461
|
#
|
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
4462
|
# @!attribute [rw] rule_set_name
|
5399
4463
|
# The name of the receipt rule set to make active. Setting this value
|
5400
4464
|
# to null disables all email receiving.
|
@@ -5422,14 +4486,6 @@ module Aws::SES
|
|
5422
4486
|
#
|
5423
4487
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
|
5424
4488
|
#
|
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
4489
|
# @!attribute [rw] identity
|
5434
4490
|
# The identity for which DKIM signing should be enabled or disabled.
|
5435
4491
|
# @return [String]
|
@@ -5463,14 +4519,6 @@ module Aws::SES
|
|
5463
4519
|
#
|
5464
4520
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-email.html
|
5465
4521
|
#
|
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
4522
|
# @!attribute [rw] identity
|
5475
4523
|
# The identity for which to set bounce and complaint notification
|
5476
4524
|
# forwarding. Examples: `user@example.com`, `example.com`.
|
@@ -5511,15 +4559,6 @@ module Aws::SES
|
|
5511
4559
|
#
|
5512
4560
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html
|
5513
4561
|
#
|
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
4562
|
# @!attribute [rw] identity
|
5524
4563
|
# The identity for which to enable or disable headers in
|
5525
4564
|
# notifications. Examples: `user@example.com`, `example.com`.
|
@@ -5565,15 +4604,6 @@ module Aws::SES
|
|
5565
4604
|
#
|
5566
4605
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html
|
5567
4606
|
#
|
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
4607
|
# @!attribute [rw] identity
|
5578
4608
|
# The verified identity for which you want to enable or disable the
|
5579
4609
|
# specified custom MAIL FROM domain.
|
@@ -5631,15 +4661,6 @@ module Aws::SES
|
|
5631
4661
|
#
|
5632
4662
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html
|
5633
4663
|
#
|
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
4664
|
# @!attribute [rw] identity
|
5644
4665
|
# The identity (email address or domain) that you want to set the
|
5645
4666
|
# Amazon SNS topic for.
|
@@ -5688,15 +4709,6 @@ module Aws::SES
|
|
5688
4709
|
#
|
5689
4710
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
5690
4711
|
#
|
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
4712
|
# @!attribute [rw] rule_set_name
|
5701
4713
|
# The name of the receipt rule set that contains the receipt rule to
|
5702
4714
|
# reposition.
|
@@ -5738,14 +4750,6 @@ module Aws::SES
|
|
5738
4750
|
#
|
5739
4751
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-stop.html
|
5740
4752
|
#
|
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
4753
|
# @!attribute [rw] scope
|
5750
4754
|
# The scope of the StopAction. The only acceptable value is `RuleSet`.
|
5751
4755
|
# @return [String]
|
@@ -5774,16 +4778,6 @@ module Aws::SES
|
|
5774
4778
|
# The content of the email, composed of a subject line, an HTML part,
|
5775
4779
|
# and a text-only part.
|
5776
4780
|
#
|
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
4781
|
# @!attribute [rw] template_name
|
5788
4782
|
# The name of the template. You will refer to this name when you send
|
5789
4783
|
# email using the `SendTemplatedEmail` or `SendBulkTemplatedEmail`
|
@@ -5847,14 +4841,6 @@ module Aws::SES
|
|
5847
4841
|
include Aws::Structure
|
5848
4842
|
end
|
5849
4843
|
|
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
4844
|
# @!attribute [rw] template_name
|
5859
4845
|
# The name of the template that you want to render.
|
5860
4846
|
# @return [String]
|
@@ -5900,13 +4886,6 @@ module Aws::SES
|
|
5900
4886
|
#
|
5901
4887
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html
|
5902
4888
|
#
|
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
4889
|
# @!attribute [rw] custom_redirect_domain
|
5911
4890
|
# The custom subdomain that will be used to redirect email recipients
|
5912
4891
|
# to the Amazon SES event tracking domain.
|
@@ -5955,13 +4934,6 @@ module Aws::SES
|
|
5955
4934
|
# Represents a request to enable or disable the email sending
|
5956
4935
|
# capabilities for your entire Amazon SES account.
|
5957
4936
|
#
|
5958
|
-
# @note When making an API call, you may pass UpdateAccountSendingEnabledRequest
|
5959
|
-
# data as a hash:
|
5960
|
-
#
|
5961
|
-
# {
|
5962
|
-
# enabled: false,
|
5963
|
-
# }
|
5964
|
-
#
|
5965
4937
|
# @!attribute [rw] enabled
|
5966
4938
|
# Describes whether email sending is enabled or disabled for your
|
5967
4939
|
# Amazon SES account in the current AWS Region.
|
@@ -5984,34 +4956,6 @@ module Aws::SES
|
|
5984
4956
|
#
|
5985
4957
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html
|
5986
4958
|
#
|
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
4959
|
# @!attribute [rw] configuration_set_name
|
6016
4960
|
# The name of the configuration set that contains the event
|
6017
4961
|
# destination that you want to update.
|
@@ -6040,14 +4984,6 @@ module Aws::SES
|
|
6040
4984
|
# Represents a request to modify the reputation metric publishing
|
6041
4985
|
# settings for a configuration set.
|
6042
4986
|
#
|
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
4987
|
# @!attribute [rw] configuration_set_name
|
6052
4988
|
# The name of the configuration set that you want to update.
|
6053
4989
|
# @return [String]
|
@@ -6070,14 +5006,6 @@ module Aws::SES
|
|
6070
5006
|
# Represents a request to enable or disable the email sending
|
6071
5007
|
# capabilities for a specific configuration set.
|
6072
5008
|
#
|
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
5009
|
# @!attribute [rw] configuration_set_name
|
6082
5010
|
# The name of the configuration set that you want to update.
|
6083
5011
|
# @return [String]
|
@@ -6099,16 +5027,6 @@ module Aws::SES
|
|
6099
5027
|
# Represents a request to update the tracking options for a
|
6100
5028
|
# configuration set.
|
6101
5029
|
#
|
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
5030
|
# @!attribute [rw] configuration_set_name
|
6113
5031
|
# The name of the configuration set for which you want to update the
|
6114
5032
|
# custom tracking domain.
|
@@ -6145,18 +5063,6 @@ module Aws::SES
|
|
6145
5063
|
# Represents a request to update an existing custom verification email
|
6146
5064
|
# template.
|
6147
5065
|
#
|
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
5066
|
# @!attribute [rw] template_name
|
6161
5067
|
# The name of the custom verification email template that you want to
|
6162
5068
|
# update.
|
@@ -6213,58 +5119,6 @@ module Aws::SES
|
|
6213
5119
|
#
|
6214
5120
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
|
6215
5121
|
#
|
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
5122
|
# @!attribute [rw] rule_set_name
|
6269
5123
|
# The name of the receipt rule set that the receipt rule belongs to.
|
6270
5124
|
# @return [String]
|
@@ -6288,18 +5142,6 @@ module Aws::SES
|
|
6288
5142
|
#
|
6289
5143
|
class UpdateReceiptRuleResponse < Aws::EmptyStructure; end
|
6290
5144
|
|
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
5145
|
# @!attribute [rw] template
|
6304
5146
|
# The content of the email, composed of a subject line, an HTML part,
|
6305
5147
|
# and a text-only part.
|
@@ -6325,13 +5167,6 @@ module Aws::SES
|
|
6325
5167
|
#
|
6326
5168
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
|
6327
5169
|
#
|
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
5170
|
# @!attribute [rw] domain
|
6336
5171
|
# The name of the domain to be verified for Easy DKIM signing.
|
6337
5172
|
# @return [String]
|
@@ -6385,13 +5220,6 @@ module Aws::SES
|
|
6385
5220
|
#
|
6386
5221
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-domains.html
|
6387
5222
|
#
|
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
5223
|
# @!attribute [rw] domain
|
6396
5224
|
# The domain to be verified.
|
6397
5225
|
# @return [String]
|
@@ -6436,13 +5264,6 @@ module Aws::SES
|
|
6436
5264
|
#
|
6437
5265
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html
|
6438
5266
|
#
|
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
5267
|
# @!attribute [rw] email_address
|
6447
5268
|
# The email address to be verified.
|
6448
5269
|
# @return [String]
|
@@ -6463,13 +5284,6 @@ module Aws::SES
|
|
6463
5284
|
#
|
6464
5285
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses.html
|
6465
5286
|
#
|
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
5287
|
# @!attribute [rw] email_address
|
6474
5288
|
# The email address to be verified.
|
6475
5289
|
# @return [String]
|
@@ -6501,14 +5315,6 @@ module Aws::SES
|
|
6501
5315
|
#
|
6502
5316
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-workmail.html
|
6503
5317
|
#
|
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
5318
|
# @!attribute [rw] topic_arn
|
6513
5319
|
# The Amazon Resource Name (ARN) of the Amazon SNS topic to notify
|
6514
5320
|
# when the WorkMail action is called. An example of an Amazon SNS
|