aws-sdk-ses 1.54.0 → 1.55.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ses/client.rb +380 -382
- data/lib/aws-sdk-ses/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-ses/types.rb +580 -527
- data/lib/aws-sdk-ses.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ses/client.rb
CHANGED
@@ -399,17 +399,18 @@ module Aws::SES
|
|
399
399
|
#
|
400
400
|
#
|
401
401
|
#
|
402
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
402
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html#receiving-email-concepts-rules
|
403
403
|
#
|
404
404
|
# @option params [required, String] :rule_set_name
|
405
|
-
# The name of the rule set to create. The name must
|
405
|
+
# The name of the rule set to create. The name must meet the following
|
406
|
+
# requirements:
|
406
407
|
#
|
407
|
-
# *
|
408
|
-
#
|
408
|
+
# * Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores
|
409
|
+
# (\_), or dashes (-).
|
409
410
|
#
|
410
411
|
# * Start and end with a letter or number.
|
411
412
|
#
|
412
|
-
# * Contain
|
413
|
+
# * Contain 64 characters or fewer.
|
413
414
|
#
|
414
415
|
# @option params [required, String] :original_rule_set_name
|
415
416
|
# The name of the rule set to clone.
|
@@ -452,7 +453,7 @@ module Aws::SES
|
|
452
453
|
#
|
453
454
|
#
|
454
455
|
#
|
455
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
456
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html
|
456
457
|
#
|
457
458
|
# @option params [required, Types::ConfigurationSet] :configuration_set
|
458
459
|
# A data structure that contains the name of the configuration set.
|
@@ -484,24 +485,24 @@ module Aws::SES
|
|
484
485
|
#
|
485
486
|
# </note>
|
486
487
|
#
|
487
|
-
# An event destination is the
|
488
|
-
# the email sending events associated with a
|
489
|
-
# information about using configuration sets, see
|
490
|
-
# Developer Guide][1].
|
488
|
+
# An event destination is the Amazon Web Services service to which
|
489
|
+
# Amazon SES publishes the email sending events associated with a
|
490
|
+
# configuration set. For information about using configuration sets, see
|
491
|
+
# the [Amazon SES Developer Guide][1].
|
491
492
|
#
|
492
493
|
# You can execute this operation no more than once per second.
|
493
494
|
#
|
494
495
|
#
|
495
496
|
#
|
496
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
497
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html
|
497
498
|
#
|
498
499
|
# @option params [required, String] :configuration_set_name
|
499
500
|
# The name of the configuration set that the event destination should be
|
500
501
|
# associated with.
|
501
502
|
#
|
502
503
|
# @option params [required, Types::EventDestination] :event_destination
|
503
|
-
# An object that describes the
|
504
|
-
# information
|
504
|
+
# An object that describes the Amazon Web Services service that email
|
505
|
+
# sending event where information is published.
|
505
506
|
#
|
506
507
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
507
508
|
#
|
@@ -551,7 +552,7 @@ module Aws::SES
|
|
551
552
|
#
|
552
553
|
#
|
553
554
|
#
|
554
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
555
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/configure-custom-open-click-domains.html
|
555
556
|
#
|
556
557
|
# @option params [required, String] :configuration_set_name
|
557
558
|
# The name of the configuration set that the tracking options should be
|
@@ -567,7 +568,7 @@ module Aws::SES
|
|
567
568
|
#
|
568
569
|
#
|
569
570
|
#
|
570
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
571
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/configure-custom-open-click-domains.html
|
571
572
|
#
|
572
573
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
573
574
|
#
|
@@ -599,7 +600,7 @@ module Aws::SES
|
|
599
600
|
#
|
600
601
|
#
|
601
602
|
#
|
602
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
603
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
603
604
|
#
|
604
605
|
# @option params [required, String] :template_name
|
605
606
|
# The name of the custom verification email template.
|
@@ -618,7 +619,7 @@ module Aws::SES
|
|
618
619
|
#
|
619
620
|
#
|
620
621
|
#
|
621
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
622
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
622
623
|
#
|
623
624
|
# @option params [required, String] :success_redirection_url
|
624
625
|
# The URL that the recipient of the verification email is sent to if his
|
@@ -659,7 +660,7 @@ module Aws::SES
|
|
659
660
|
#
|
660
661
|
#
|
661
662
|
#
|
662
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
663
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-ip-filtering-console-walkthrough.html
|
663
664
|
#
|
664
665
|
# @option params [required, Types::ReceiptFilter] :filter
|
665
666
|
# A data structure that describes the IP address filter to create, which
|
@@ -713,15 +714,15 @@ module Aws::SES
|
|
713
714
|
#
|
714
715
|
#
|
715
716
|
#
|
716
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
717
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
717
718
|
#
|
718
719
|
# @option params [required, String] :rule_set_name
|
719
|
-
# The name of the rule set
|
720
|
+
# The name of the rule set where the receipt rule is added.
|
720
721
|
#
|
721
722
|
# @option params [String] :after
|
722
|
-
# The name of an existing rule after which the new rule
|
723
|
-
#
|
724
|
-
#
|
723
|
+
# The name of an existing rule after which the new rule is placed. If
|
724
|
+
# this parameter is null, the new rule is inserted at the beginning of
|
725
|
+
# the rule list.
|
725
726
|
#
|
726
727
|
# @option params [required, Types::ReceiptRule] :rule
|
727
728
|
# A data structure that contains the specified rule's name, actions,
|
@@ -823,17 +824,18 @@ module Aws::SES
|
|
823
824
|
#
|
824
825
|
#
|
825
826
|
#
|
826
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
827
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html#receiving-email-concepts-rules
|
827
828
|
#
|
828
829
|
# @option params [required, String] :rule_set_name
|
829
|
-
# The name of the rule set to create. The name must
|
830
|
+
# The name of the rule set to create. The name must meet the following
|
831
|
+
# requirements:
|
830
832
|
#
|
831
|
-
# *
|
832
|
-
#
|
833
|
+
# * Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores
|
834
|
+
# (\_), or dashes (-).
|
833
835
|
#
|
834
836
|
# * Start and end with a letter or number.
|
835
837
|
#
|
836
|
-
# * Contain
|
838
|
+
# * Contain 64 characters or fewer.
|
837
839
|
#
|
838
840
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
839
841
|
#
|
@@ -862,19 +864,18 @@ module Aws::SES
|
|
862
864
|
end
|
863
865
|
|
864
866
|
# Creates an email template. Email templates enable you to send
|
865
|
-
# personalized email to one or more destinations in a single
|
866
|
-
#
|
867
|
-
# Guide][1].
|
867
|
+
# personalized email to one or more destinations in a single operation.
|
868
|
+
# For more information, see the [Amazon SES Developer Guide][1].
|
868
869
|
#
|
869
870
|
# You can execute this operation no more than once per second.
|
870
871
|
#
|
871
872
|
#
|
872
873
|
#
|
873
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
874
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/send-personalized-email-api.html
|
874
875
|
#
|
875
876
|
# @option params [required, Types::Template] :template
|
876
|
-
# The content of the email, composed of a subject line
|
877
|
-
#
|
877
|
+
# The content of the email, composed of a subject line and either an
|
878
|
+
# HTML part or a text-only part.
|
878
879
|
#
|
879
880
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
880
881
|
#
|
@@ -906,7 +907,7 @@ module Aws::SES
|
|
906
907
|
#
|
907
908
|
#
|
908
909
|
#
|
909
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
910
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html
|
910
911
|
#
|
911
912
|
# @option params [required, String] :configuration_set_name
|
912
913
|
# The name of the configuration set to delete.
|
@@ -937,7 +938,7 @@ module Aws::SES
|
|
937
938
|
#
|
938
939
|
#
|
939
940
|
#
|
940
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
941
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html
|
941
942
|
#
|
942
943
|
# @option params [required, String] :configuration_set_name
|
943
944
|
# The name of the configuration set from which to delete the event
|
@@ -972,7 +973,7 @@ module Aws::SES
|
|
972
973
|
# subdomain of your own to handle these events. For information about
|
973
974
|
# using custom domains, see the [Amazon SES Developer Guide][1].
|
974
975
|
#
|
975
|
-
# <note markdown="1"> Deleting this kind of association
|
976
|
+
# <note markdown="1"> Deleting this kind of association results in emails sent using the
|
976
977
|
# specified configuration set to capture open and click events using the
|
977
978
|
# standard, Amazon SES-operated domains.
|
978
979
|
#
|
@@ -980,11 +981,10 @@ module Aws::SES
|
|
980
981
|
#
|
981
982
|
#
|
982
983
|
#
|
983
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
984
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/configure-custom-open-click-domains.html
|
984
985
|
#
|
985
986
|
# @option params [required, String] :configuration_set_name
|
986
|
-
# The name of the configuration set
|
987
|
-
# tracking options.
|
987
|
+
# The name of the configuration set.
|
988
988
|
#
|
989
989
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
990
990
|
#
|
@@ -1013,11 +1013,10 @@ module Aws::SES
|
|
1013
1013
|
#
|
1014
1014
|
#
|
1015
1015
|
#
|
1016
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1016
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
1017
1017
|
#
|
1018
1018
|
# @option params [required, String] :template_name
|
1019
|
-
# The name of the custom verification email template
|
1020
|
-
# delete.
|
1019
|
+
# The name of the custom verification email template to delete.
|
1021
1020
|
#
|
1022
1021
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1023
1022
|
#
|
@@ -1042,8 +1041,8 @@ module Aws::SES
|
|
1042
1041
|
# You can execute this operation no more than once per second.
|
1043
1042
|
#
|
1044
1043
|
# @option params [required, String] :identity
|
1045
|
-
# The identity to be removed from the list of identities for the
|
1046
|
-
#
|
1044
|
+
# The identity to be removed from the list of identities for the Amazon
|
1045
|
+
# Web Services account.
|
1047
1046
|
#
|
1048
1047
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1049
1048
|
#
|
@@ -1073,11 +1072,11 @@ module Aws::SES
|
|
1073
1072
|
end
|
1074
1073
|
|
1075
1074
|
# Deletes the specified sending authorization policy for the given
|
1076
|
-
# identity (an email address or a domain). This
|
1077
|
-
# even if a policy with the specified name does not exist.
|
1075
|
+
# identity (an email address or a domain). This operation returns
|
1076
|
+
# successfully even if a policy with the specified name does not exist.
|
1078
1077
|
#
|
1079
|
-
# <note markdown="1"> This
|
1080
|
-
# identity,
|
1078
|
+
# <note markdown="1"> This operation is for the identity owner only. If you have not
|
1079
|
+
# verified the identity, it returns an error.
|
1081
1080
|
#
|
1082
1081
|
# </note>
|
1083
1082
|
#
|
@@ -1089,16 +1088,15 @@ module Aws::SES
|
|
1089
1088
|
#
|
1090
1089
|
#
|
1091
1090
|
#
|
1092
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1091
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
1093
1092
|
#
|
1094
1093
|
# @option params [required, String] :identity
|
1095
|
-
# The identity that is associated with the policy
|
1096
|
-
#
|
1097
|
-
#
|
1098
|
-
# `example.com`,
|
1094
|
+
# The identity that is associated with the policy to delete. You can
|
1095
|
+
# specify the identity by using its name or by using its Amazon Resource
|
1096
|
+
# Name (ARN). Examples: `user@example.com`, `example.com`,
|
1099
1097
|
# `arn:aws:ses:us-east-1:123456789012:identity/example.com`.
|
1100
1098
|
#
|
1101
|
-
# To successfully call this
|
1099
|
+
# To successfully call this operation, you must own the identity.
|
1102
1100
|
#
|
1103
1101
|
# @option params [required, String] :policy_name
|
1104
1102
|
# The name of the policy to be deleted.
|
@@ -1140,7 +1138,7 @@ module Aws::SES
|
|
1140
1138
|
#
|
1141
1139
|
#
|
1142
1140
|
#
|
1143
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1141
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-ip-filtering-console-walkthrough.html
|
1144
1142
|
#
|
1145
1143
|
# @option params [required, String] :filter_name
|
1146
1144
|
# The name of the IP address filter to delete.
|
@@ -1180,7 +1178,7 @@ module Aws::SES
|
|
1180
1178
|
#
|
1181
1179
|
#
|
1182
1180
|
#
|
1183
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1181
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
1184
1182
|
#
|
1185
1183
|
# @option params [required, String] :rule_set_name
|
1186
1184
|
# The name of the receipt rule set that contains the receipt rule to
|
@@ -1231,7 +1229,7 @@ module Aws::SES
|
|
1231
1229
|
#
|
1232
1230
|
#
|
1233
1231
|
#
|
1234
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1232
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
1235
1233
|
#
|
1236
1234
|
# @option params [required, String] :rule_set_name
|
1237
1235
|
# The name of the receipt rule set to delete.
|
@@ -1329,7 +1327,7 @@ module Aws::SES
|
|
1329
1327
|
#
|
1330
1328
|
#
|
1331
1329
|
#
|
1332
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1330
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html#receiving-email-concepts-rules
|
1333
1331
|
#
|
1334
1332
|
# @return [Types::DescribeActiveReceiptRuleSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1335
1333
|
#
|
@@ -1418,7 +1416,7 @@ module Aws::SES
|
|
1418
1416
|
#
|
1419
1417
|
#
|
1420
1418
|
#
|
1421
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1419
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html
|
1422
1420
|
#
|
1423
1421
|
# @option params [required, String] :configuration_set_name
|
1424
1422
|
# The name of the configuration set to describe.
|
@@ -1480,7 +1478,7 @@ module Aws::SES
|
|
1480
1478
|
#
|
1481
1479
|
#
|
1482
1480
|
#
|
1483
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1481
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
1484
1482
|
#
|
1485
1483
|
# @option params [required, String] :rule_set_name
|
1486
1484
|
# The name of the receipt rule set that the receipt rule belongs to.
|
@@ -1575,7 +1573,7 @@ module Aws::SES
|
|
1575
1573
|
#
|
1576
1574
|
#
|
1577
1575
|
#
|
1578
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1576
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
1579
1577
|
#
|
1580
1578
|
# @option params [required, String] :rule_set_name
|
1581
1579
|
# The name of the receipt rule set to describe.
|
@@ -1667,7 +1665,7 @@ module Aws::SES
|
|
1667
1665
|
end
|
1668
1666
|
|
1669
1667
|
# Returns the email sending status of the Amazon SES account for the
|
1670
|
-
# current
|
1668
|
+
# current Region.
|
1671
1669
|
#
|
1672
1670
|
# You can execute this operation no more than once per second.
|
1673
1671
|
#
|
@@ -1712,11 +1710,10 @@ module Aws::SES
|
|
1712
1710
|
#
|
1713
1711
|
#
|
1714
1712
|
#
|
1715
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1713
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
1716
1714
|
#
|
1717
1715
|
# @option params [required, String] :template_name
|
1718
|
-
# The name of the custom verification email template
|
1719
|
-
# retrieve.
|
1716
|
+
# The name of the custom verification email template to retrieve.
|
1720
1717
|
#
|
1721
1718
|
# @return [Types::GetCustomVerificationEmailTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1722
1719
|
#
|
@@ -1776,7 +1773,7 @@ module Aws::SES
|
|
1776
1773
|
#
|
1777
1774
|
#
|
1778
1775
|
#
|
1779
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1776
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/send-email-authentication-dkim-easy-managing.html
|
1780
1777
|
#
|
1781
1778
|
# @option params [required, Array<String>] :identities
|
1782
1779
|
# A list of one or more verified identities - email addresses, domains,
|
@@ -1908,7 +1905,7 @@ module Aws::SES
|
|
1908
1905
|
#
|
1909
1906
|
#
|
1910
1907
|
#
|
1911
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1908
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity-using-notifications.html
|
1912
1909
|
#
|
1913
1910
|
# @option params [required, Array<String>] :identities
|
1914
1911
|
# A list of one or more identities. You can specify an identity by using
|
@@ -1977,8 +1974,8 @@ module Aws::SES
|
|
1977
1974
|
# a map of policy names to policy contents. You can retrieve a maximum
|
1978
1975
|
# of 20 policies at a time.
|
1979
1976
|
#
|
1980
|
-
# <note markdown="1"> This
|
1981
|
-
# identity,
|
1977
|
+
# <note markdown="1"> This operation is for the identity owner only. If you have not
|
1978
|
+
# verified the identity, it returns an error.
|
1982
1979
|
#
|
1983
1980
|
# </note>
|
1984
1981
|
#
|
@@ -1990,15 +1987,15 @@ module Aws::SES
|
|
1990
1987
|
#
|
1991
1988
|
#
|
1992
1989
|
#
|
1993
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
1990
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
1994
1991
|
#
|
1995
1992
|
# @option params [required, String] :identity
|
1996
|
-
# The identity for which the policies
|
1997
|
-
#
|
1998
|
-
#
|
1993
|
+
# The identity for which the policies are retrieved. You can specify an
|
1994
|
+
# identity by using its name or by using its Amazon Resource Name (ARN).
|
1995
|
+
# Examples: `user@example.com`, `example.com`,
|
1999
1996
|
# `arn:aws:ses:us-east-1:123456789012:identity/example.com`.
|
2000
1997
|
#
|
2001
|
-
# To successfully call this
|
1998
|
+
# To successfully call this operation, you must own the identity.
|
2002
1999
|
#
|
2003
2000
|
# @option params [required, Array<String>] :policy_names
|
2004
2001
|
# A list of the names of policies to be retrieved. You can retrieve a
|
@@ -2059,18 +2056,17 @@ module Aws::SES
|
|
2059
2056
|
# Amazon SES sent to that address. If the email address owner clicks the
|
2060
2057
|
# link within 24 hours, the verification status of the email address
|
2061
2058
|
# changes to "Success". If the link is not clicked within 24 hours,
|
2062
|
-
# the verification status changes to "Failed." In that case,
|
2063
|
-
#
|
2064
|
-
#
|
2059
|
+
# the verification status changes to "Failed." In that case, to verify
|
2060
|
+
# the email address, you must restart the verification process from the
|
2061
|
+
# beginning.
|
2065
2062
|
#
|
2066
2063
|
# For domain identities, the domain's verification status is
|
2067
2064
|
# "Pending" as Amazon SES searches for the required TXT record in the
|
2068
2065
|
# DNS settings of the domain. When Amazon SES detects the record, the
|
2069
2066
|
# domain's verification status changes to "Success". If Amazon SES is
|
2070
2067
|
# unable to detect the record within 72 hours, the domain's
|
2071
|
-
# verification status changes to "Failed." In that case,
|
2072
|
-
#
|
2073
|
-
# from the beginning.
|
2068
|
+
# verification status changes to "Failed." In that case, to verify the
|
2069
|
+
# domain, you must restart the verification process from the beginning.
|
2074
2070
|
#
|
2075
2071
|
# This operation is throttled at one request per second and can only get
|
2076
2072
|
# verification attributes for up to 100 identities at a time.
|
@@ -2169,10 +2165,10 @@ module Aws::SES
|
|
2169
2165
|
req.send_request(options)
|
2170
2166
|
end
|
2171
2167
|
|
2172
|
-
# Provides sending statistics for the current
|
2173
|
-
# a list of data points, representing the last two
|
2174
|
-
# activity. Each data point in the list contains
|
2175
|
-
# 15-minute period of time.
|
2168
|
+
# Provides sending statistics for the current Amazon Web Services
|
2169
|
+
# Region. The result is a list of data points, representing the last two
|
2170
|
+
# weeks of sending activity. Each data point in the list contains
|
2171
|
+
# statistics for a 15-minute period of time.
|
2176
2172
|
#
|
2177
2173
|
# You can execute this operation no more than once per second.
|
2178
2174
|
#
|
@@ -2239,7 +2235,7 @@ module Aws::SES
|
|
2239
2235
|
# You can execute this operation no more than once per second.
|
2240
2236
|
#
|
2241
2237
|
# @option params [required, String] :template_name
|
2242
|
-
# The name of the template
|
2238
|
+
# The name of the template to retrieve.
|
2243
2239
|
#
|
2244
2240
|
# @return [Types::GetTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2245
2241
|
#
|
@@ -2268,21 +2264,21 @@ module Aws::SES
|
|
2268
2264
|
end
|
2269
2265
|
|
2270
2266
|
# Provides a list of the configuration sets associated with your Amazon
|
2271
|
-
# SES account in the current
|
2272
|
-
# configuration sets, see [Monitoring Your Amazon SES
|
2273
|
-
# Activity][1] in the *Amazon SES Developer Guide.*
|
2267
|
+
# SES account in the current Amazon Web Services Region. For information
|
2268
|
+
# about using configuration sets, see [Monitoring Your Amazon SES
|
2269
|
+
# Sending Activity][1] in the *Amazon SES Developer Guide.*
|
2274
2270
|
#
|
2275
2271
|
# You can execute this operation no more than once per second. This
|
2276
|
-
# operation
|
2277
|
-
#
|
2278
|
-
#
|
2279
|
-
#
|
2280
|
-
#
|
2281
|
-
#
|
2272
|
+
# operation returns up to 1,000 configuration sets each time it is run.
|
2273
|
+
# If your Amazon SES account has more than 1,000 configuration sets,
|
2274
|
+
# this operation also returns `NextToken`. You can then execute the
|
2275
|
+
# `ListConfigurationSets` operation again, passing the `NextToken`
|
2276
|
+
# parameter and the value of the NextToken element to retrieve
|
2277
|
+
# additional results.
|
2282
2278
|
#
|
2283
2279
|
#
|
2284
2280
|
#
|
2285
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2281
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html
|
2286
2282
|
#
|
2287
2283
|
# @option params [String] :next_token
|
2288
2284
|
# A token returned from a previous call to `ListConfigurationSets` to
|
@@ -2320,7 +2316,7 @@ module Aws::SES
|
|
2320
2316
|
end
|
2321
2317
|
|
2322
2318
|
# Lists the existing custom verification email templates for your
|
2323
|
-
# account in the current
|
2319
|
+
# account in the current Amazon Web Services Region.
|
2324
2320
|
#
|
2325
2321
|
# For more information about custom verification email templates, see
|
2326
2322
|
# [Using Custom Verification Email Templates][1] in the *Amazon SES
|
@@ -2330,7 +2326,7 @@ module Aws::SES
|
|
2330
2326
|
#
|
2331
2327
|
#
|
2332
2328
|
#
|
2333
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2329
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
2334
2330
|
#
|
2335
2331
|
# @option params [String] :next_token
|
2336
2332
|
# An array the contains the name and creation time stamp for each
|
@@ -2340,7 +2336,7 @@ module Aws::SES
|
|
2340
2336
|
# The maximum number of custom verification email templates to return.
|
2341
2337
|
# This value must be at least 1 and less than or equal to 50. If you do
|
2342
2338
|
# not specify a value, or if you specify a value less than 1 or greater
|
2343
|
-
# than 50, the operation
|
2339
|
+
# than 50, the operation returns up to 50 results.
|
2344
2340
|
#
|
2345
2341
|
# @return [Types::ListCustomVerificationEmailTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2346
2342
|
#
|
@@ -2376,15 +2372,27 @@ module Aws::SES
|
|
2376
2372
|
end
|
2377
2373
|
|
2378
2374
|
# Returns a list containing all of the identities (email addresses and
|
2379
|
-
# domains) for your
|
2380
|
-
# verification status.
|
2375
|
+
# domains) for your Amazon Web Services account in the current Amazon
|
2376
|
+
# Web Services Region, regardless of verification status.
|
2381
2377
|
#
|
2382
2378
|
# You can execute this operation no more than once per second.
|
2383
2379
|
#
|
2380
|
+
# <note markdown="1"> It's recommended that for successive pagination calls of this API,
|
2381
|
+
# you continue to the use the same parameter/value pairs as used in the
|
2382
|
+
# original call, e.g., if you used `IdentityType=Domain` in the the
|
2383
|
+
# original call and received a `NextToken` in the response, you should
|
2384
|
+
# continue providing the `IdentityType=Domain` parameter for further
|
2385
|
+
# `NextToken` calls; however, if you didn't provide the `IdentityType`
|
2386
|
+
# parameter in the original call, then continue to not provide it for
|
2387
|
+
# successive pagination calls. Using this protocol will ensure
|
2388
|
+
# consistent results.
|
2389
|
+
#
|
2390
|
+
# </note>
|
2391
|
+
#
|
2384
2392
|
# @option params [String] :identity_type
|
2385
2393
|
# The type of the identities to list. Possible values are
|
2386
2394
|
# "EmailAddress" and "Domain". If this parameter is omitted, then
|
2387
|
-
# all identities
|
2395
|
+
# all identities are listed.
|
2388
2396
|
#
|
2389
2397
|
# @option params [String] :next_token
|
2390
2398
|
# The token to use for pagination.
|
@@ -2443,12 +2451,12 @@ module Aws::SES
|
|
2443
2451
|
end
|
2444
2452
|
|
2445
2453
|
# Returns a list of sending authorization policies that are attached to
|
2446
|
-
# the given identity (an email address or a domain). This
|
2447
|
-
# only a list.
|
2454
|
+
# the given identity (an email address or a domain). This operation
|
2455
|
+
# returns only a list. To get the actual policy content, use
|
2448
2456
|
# `GetIdentityPolicies`.
|
2449
2457
|
#
|
2450
|
-
# <note markdown="1"> This
|
2451
|
-
# identity,
|
2458
|
+
# <note markdown="1"> This operation is for the identity owner only. If you have not
|
2459
|
+
# verified the identity, it returns an error.
|
2452
2460
|
#
|
2453
2461
|
# </note>
|
2454
2462
|
#
|
@@ -2460,16 +2468,16 @@ module Aws::SES
|
|
2460
2468
|
#
|
2461
2469
|
#
|
2462
2470
|
#
|
2463
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2471
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
2464
2472
|
#
|
2465
2473
|
# @option params [required, String] :identity
|
2466
2474
|
# The identity that is associated with the policy for which the policies
|
2467
|
-
#
|
2468
|
-
#
|
2475
|
+
# are listed. You can specify an identity by using its name or by using
|
2476
|
+
# its Amazon Resource Name (ARN). Examples: `user@example.com`,
|
2469
2477
|
# `example.com`,
|
2470
2478
|
# `arn:aws:ses:us-east-1:123456789012:identity/example.com`.
|
2471
2479
|
#
|
2472
|
-
# To successfully call this
|
2480
|
+
# To successfully call this operation, you must own the identity.
|
2473
2481
|
#
|
2474
2482
|
# @return [Types::ListIdentityPoliciesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2475
2483
|
#
|
@@ -2511,8 +2519,8 @@ module Aws::SES
|
|
2511
2519
|
req.send_request(options)
|
2512
2520
|
end
|
2513
2521
|
|
2514
|
-
# Lists the IP address filters associated with your
|
2515
|
-
# current
|
2522
|
+
# Lists the IP address filters associated with your Amazon Web Services
|
2523
|
+
# account in the current Amazon Web Services Region.
|
2516
2524
|
#
|
2517
2525
|
# For information about managing IP address filters, see the [Amazon SES
|
2518
2526
|
# Developer Guide][1].
|
@@ -2521,7 +2529,7 @@ module Aws::SES
|
|
2521
2529
|
#
|
2522
2530
|
#
|
2523
2531
|
#
|
2524
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2532
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-ip-filtering-console-walkthrough.html
|
2525
2533
|
#
|
2526
2534
|
# @return [Types::ListReceiptFiltersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2527
2535
|
#
|
@@ -2564,10 +2572,11 @@ module Aws::SES
|
|
2564
2572
|
req.send_request(options)
|
2565
2573
|
end
|
2566
2574
|
|
2567
|
-
# Lists the receipt rule sets that exist under your
|
2568
|
-
# current
|
2569
|
-
#
|
2570
|
-
#
|
2575
|
+
# Lists the receipt rule sets that exist under your Amazon Web Services
|
2576
|
+
# account in the current Amazon Web Services Region. If there are
|
2577
|
+
# additional receipt rule sets to be retrieved, you receive a
|
2578
|
+
# `NextToken` that you can provide to the next call to
|
2579
|
+
# `ListReceiptRuleSets` to retrieve the additional entries.
|
2571
2580
|
#
|
2572
2581
|
# For information about managing receipt rule sets, see the [Amazon SES
|
2573
2582
|
# Developer Guide][1].
|
@@ -2576,7 +2585,7 @@ module Aws::SES
|
|
2576
2585
|
#
|
2577
2586
|
#
|
2578
2587
|
#
|
2579
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2588
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
2580
2589
|
#
|
2581
2590
|
# @option params [String] :next_token
|
2582
2591
|
# A token returned from a previous call to `ListReceiptRuleSets` to
|
@@ -2630,7 +2639,7 @@ module Aws::SES
|
|
2630
2639
|
end
|
2631
2640
|
|
2632
2641
|
# Lists the email templates present in your Amazon SES account in the
|
2633
|
-
# current
|
2642
|
+
# current Amazon Web Services Region.
|
2634
2643
|
#
|
2635
2644
|
# You can execute this operation no more than once per second.
|
2636
2645
|
#
|
@@ -2640,9 +2649,9 @@ module Aws::SES
|
|
2640
2649
|
#
|
2641
2650
|
# @option params [Integer] :max_items
|
2642
2651
|
# The maximum number of templates to return. This value must be at least
|
2643
|
-
# 1 and less than or equal to
|
2644
|
-
#
|
2645
|
-
#
|
2652
|
+
# 1 and less than or equal to 100. If more than 100 items are requested,
|
2653
|
+
# the page size will automatically set to 100. If you do not specify a
|
2654
|
+
# value, 10 is the default page size.
|
2646
2655
|
#
|
2647
2656
|
# @return [Types::ListTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2648
2657
|
#
|
@@ -2712,8 +2721,7 @@ module Aws::SES
|
|
2712
2721
|
# Adds or updates the delivery options for a configuration set.
|
2713
2722
|
#
|
2714
2723
|
# @option params [required, String] :configuration_set_name
|
2715
|
-
# The name of the configuration set
|
2716
|
-
# delivery options for.
|
2724
|
+
# The name of the configuration set.
|
2717
2725
|
#
|
2718
2726
|
# @option params [Types::DeliveryOptions] :delivery_options
|
2719
2727
|
# Specifies whether messages that use the configuration set are required
|
@@ -2742,8 +2750,8 @@ module Aws::SES
|
|
2742
2750
|
# Adds or updates a sending authorization policy for the specified
|
2743
2751
|
# identity (an email address or a domain).
|
2744
2752
|
#
|
2745
|
-
# <note markdown="1"> This
|
2746
|
-
# identity,
|
2753
|
+
# <note markdown="1"> This operation is for the identity owner only. If you have not
|
2754
|
+
# verified the identity, it returns an error.
|
2747
2755
|
#
|
2748
2756
|
# </note>
|
2749
2757
|
#
|
@@ -2755,15 +2763,15 @@ module Aws::SES
|
|
2755
2763
|
#
|
2756
2764
|
#
|
2757
2765
|
#
|
2758
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2766
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
2759
2767
|
#
|
2760
2768
|
# @option params [required, String] :identity
|
2761
|
-
# The identity that the policy
|
2769
|
+
# The identity to which that the policy applies. You can specify an
|
2762
2770
|
# identity by using its name or by using its Amazon Resource Name (ARN).
|
2763
2771
|
# Examples: `user@example.com`, `example.com`,
|
2764
2772
|
# `arn:aws:ses:us-east-1:123456789012:identity/example.com`.
|
2765
2773
|
#
|
2766
|
-
# To successfully call this
|
2774
|
+
# To successfully call this operation, you must own the identity.
|
2767
2775
|
#
|
2768
2776
|
# @option params [required, String] :policy_name
|
2769
2777
|
# The name of the policy.
|
@@ -2779,7 +2787,7 @@ module Aws::SES
|
|
2779
2787
|
#
|
2780
2788
|
#
|
2781
2789
|
#
|
2782
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2790
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization-policies.html
|
2783
2791
|
#
|
2784
2792
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2785
2793
|
#
|
@@ -2814,8 +2822,8 @@ module Aws::SES
|
|
2814
2822
|
# Reorders the receipt rules within a receipt rule set.
|
2815
2823
|
#
|
2816
2824
|
# <note markdown="1"> All of the rules in the rule set must be represented in this request.
|
2817
|
-
# That is,
|
2818
|
-
#
|
2825
|
+
# That is, it is error if the reorder request doesn't explicitly
|
2826
|
+
# position all of the rules.
|
2819
2827
|
#
|
2820
2828
|
# </note>
|
2821
2829
|
#
|
@@ -2826,14 +2834,13 @@ module Aws::SES
|
|
2826
2834
|
#
|
2827
2835
|
#
|
2828
2836
|
#
|
2829
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2837
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
2830
2838
|
#
|
2831
2839
|
# @option params [required, String] :rule_set_name
|
2832
2840
|
# The name of the receipt rule set to reorder.
|
2833
2841
|
#
|
2834
2842
|
# @option params [required, Array<String>] :rule_names
|
2835
|
-
#
|
2836
|
-
# that you want to put them.
|
2843
|
+
# The specified receipt rule set's receipt rules, in order.
|
2837
2844
|
#
|
2838
2845
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2839
2846
|
#
|
@@ -2867,11 +2874,11 @@ module Aws::SES
|
|
2867
2874
|
end
|
2868
2875
|
|
2869
2876
|
# Generates and sends a bounce message to the sender of an email you
|
2870
|
-
# received through Amazon SES. You can only use this
|
2871
|
-
# to 24 hours after you receive it.
|
2877
|
+
# received through Amazon SES. You can only use this operation on an
|
2878
|
+
# email up to 24 hours after you receive it.
|
2872
2879
|
#
|
2873
|
-
# <note markdown="1"> You cannot use this
|
2874
|
-
# received by Amazon SES.
|
2880
|
+
# <note markdown="1"> You cannot use this operation to send generic bounces for mail that
|
2881
|
+
# was not received by Amazon SES.
|
2875
2882
|
#
|
2876
2883
|
# </note>
|
2877
2884
|
#
|
@@ -2882,7 +2889,7 @@ module Aws::SES
|
|
2882
2889
|
#
|
2883
2890
|
#
|
2884
2891
|
#
|
2885
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2892
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email.html
|
2886
2893
|
#
|
2887
2894
|
# @option params [required, String] :original_message_id
|
2888
2895
|
# The message ID of the message to be bounced.
|
@@ -2893,12 +2900,12 @@ module Aws::SES
|
|
2893
2900
|
#
|
2894
2901
|
# @option params [String] :explanation
|
2895
2902
|
# Human-readable text for the bounce message to explain the failure. If
|
2896
|
-
# not specified, the text
|
2903
|
+
# not specified, the text is auto-generated based on the bounced
|
2897
2904
|
# recipient information.
|
2898
2905
|
#
|
2899
2906
|
# @option params [Types::MessageDsn] :message_dsn
|
2900
|
-
# Message-related DSN fields. If not specified, Amazon SES
|
2901
|
-
#
|
2907
|
+
# Message-related DSN fields. If not specified, Amazon SES chooses the
|
2908
|
+
# values.
|
2902
2909
|
#
|
2903
2910
|
# @option params [required, Array<Types::BouncedRecipientInfo>] :bounced_recipient_info_list
|
2904
2911
|
# A list of recipients of the bounced message, including the information
|
@@ -2915,7 +2922,7 @@ module Aws::SES
|
|
2915
2922
|
#
|
2916
2923
|
#
|
2917
2924
|
#
|
2918
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
2925
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
2919
2926
|
#
|
2920
2927
|
# @return [Types::SendBounceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2921
2928
|
#
|
@@ -2977,16 +2984,16 @@ module Aws::SES
|
|
2977
2984
|
# Composes an email message to multiple destinations. The message body
|
2978
2985
|
# is created using an email template.
|
2979
2986
|
#
|
2980
|
-
#
|
2981
|
-
#
|
2987
|
+
# To send email using this operation, your call must meet the following
|
2988
|
+
# requirements:
|
2982
2989
|
#
|
2983
2990
|
# * The call must refer to an existing email template. You can create
|
2984
|
-
# email templates using
|
2991
|
+
# email templates using CreateTemplate.
|
2985
2992
|
#
|
2986
2993
|
# * The message must be sent from a verified email address or domain.
|
2987
2994
|
#
|
2988
|
-
# * If your account is still in the Amazon SES sandbox, you may
|
2989
|
-
#
|
2995
|
+
# * If your account is still in the Amazon SES sandbox, you may send
|
2996
|
+
# only to verified addresses or domains, or to email addresses
|
2990
2997
|
# associated with the Amazon SES Mailbox Simulator. For more
|
2991
2998
|
# information, see [Verifying Email Addresses and Domains][1] in the
|
2992
2999
|
# *Amazon SES Developer Guide.*
|
@@ -2998,8 +3005,8 @@ module Aws::SES
|
|
2998
3005
|
# address, or a BCC: address. If a recipient email address is invalid
|
2999
3006
|
# (that is, it is not in the format
|
3000
3007
|
# *UserName@\[SubDomain.\]Domain.TopLevelDomain*), the entire message
|
3001
|
-
#
|
3002
|
-
#
|
3008
|
+
# is rejected, even if the message contains other recipients that are
|
3009
|
+
# valid.
|
3003
3010
|
#
|
3004
3011
|
# * The message may not include more than 50 recipients, across the To:,
|
3005
3012
|
# CC: and BCC: fields. If you need to send an email message to a
|
@@ -3007,12 +3014,12 @@ module Aws::SES
|
|
3007
3014
|
# 50 or fewer, and then call the `SendBulkTemplatedEmail` operation
|
3008
3015
|
# several times to send the message to each group.
|
3009
3016
|
#
|
3010
|
-
# * The number of destinations you can contact in a single call
|
3011
|
-
#
|
3017
|
+
# * The number of destinations you can contact in a single call can be
|
3018
|
+
# limited by your account's maximum sending rate.
|
3012
3019
|
#
|
3013
3020
|
#
|
3014
3021
|
#
|
3015
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3022
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/verify-addresses-and-domains.html
|
3016
3023
|
#
|
3017
3024
|
# @option params [required, String] :source
|
3018
3025
|
# The email address that is sending the email. This email address must
|
@@ -3026,26 +3033,26 @@ module Aws::SES
|
|
3026
3033
|
# authorization, see the [Amazon SES Developer Guide][2].
|
3027
3034
|
#
|
3028
3035
|
# <note markdown="1"> Amazon SES does not support the SMTPUTF8 extension, as described in
|
3029
|
-
# [RFC6531][3]. For this reason, the
|
3030
|
-
#
|
3031
|
-
#
|
3032
|
-
#
|
3033
|
-
#
|
3034
|
-
#
|
3035
|
-
#
|
3036
|
-
# syntax, as described in [
|
3037
|
-
# the
|
3036
|
+
# [RFC6531][3]. For this reason, the email address string must be 7-bit
|
3037
|
+
# ASCII. If you want to send to or from email addresses that contain
|
3038
|
+
# Unicode characters in the domain part of an address, you must encode
|
3039
|
+
# the domain using Punycode. Punycode is not permitted in the local part
|
3040
|
+
# of the email address (the part before the @ sign) nor in the
|
3041
|
+
# "friendly from" name. If you want to use Unicode characters in the
|
3042
|
+
# "friendly from" name, you must encode the "friendly from" name
|
3043
|
+
# using MIME encoded-word syntax, as described in [Sending raw email
|
3044
|
+
# using the Amazon SES API][4]. For more information about Punycode, see
|
3045
|
+
# [RFC 3492][5].
|
3038
3046
|
#
|
3039
3047
|
# </note>
|
3040
3048
|
#
|
3041
3049
|
#
|
3042
3050
|
#
|
3043
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3044
|
-
# [2]: https://docs.aws.amazon.com/ses/latest/
|
3051
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html
|
3052
|
+
# [2]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3045
3053
|
# [3]: https://tools.ietf.org/html/rfc6531
|
3046
|
-
# [4]: https://
|
3047
|
-
# [5]:
|
3048
|
-
# [6]: https://tools.ietf.org/html/rfc2047
|
3054
|
+
# [4]: https://docs.aws.amazon.com/ses/latest/dg/send-email-raw.html
|
3055
|
+
# [5]: http://tools.ietf.org/html/rfc3492
|
3049
3056
|
#
|
3050
3057
|
# @option params [String] :source_arn
|
3051
3058
|
# This parameter is used only for sending authorization. It is the ARN
|
@@ -3065,21 +3072,21 @@ module Aws::SES
|
|
3065
3072
|
#
|
3066
3073
|
#
|
3067
3074
|
#
|
3068
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3075
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3069
3076
|
#
|
3070
3077
|
# @option params [Array<String>] :reply_to_addresses
|
3071
3078
|
# The reply-to email address(es) for the message. If the recipient
|
3072
|
-
# replies to the message, each reply-to address
|
3079
|
+
# replies to the message, each reply-to address receives the reply.
|
3073
3080
|
#
|
3074
3081
|
# @option params [String] :return_path
|
3075
|
-
# The email address that bounces and complaints
|
3076
|
-
#
|
3077
|
-
#
|
3078
|
-
#
|
3079
|
-
#
|
3080
|
-
#
|
3081
|
-
#
|
3082
|
-
#
|
3082
|
+
# The email address that bounces and complaints are forwarded to when
|
3083
|
+
# feedback forwarding is enabled. If the message cannot be delivered to
|
3084
|
+
# the recipient, then an error message is returned from the recipient's
|
3085
|
+
# ISP; this message is forwarded to the email address specified by the
|
3086
|
+
# `ReturnPath` parameter. The `ReturnPath` parameter is never
|
3087
|
+
# overwritten. This email address must be either individually verified
|
3088
|
+
# with Amazon SES, or from a domain that has been verified with Amazon
|
3089
|
+
# SES.
|
3083
3090
|
#
|
3084
3091
|
# @option params [String] :return_path_arn
|
3085
3092
|
# This parameter is used only for sending authorization. It is the ARN
|
@@ -3099,7 +3106,7 @@ module Aws::SES
|
|
3099
3106
|
#
|
3100
3107
|
#
|
3101
3108
|
#
|
3102
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3109
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3103
3110
|
#
|
3104
3111
|
# @option params [String] :configuration_set_name
|
3105
3112
|
# The name of the configuration set to use when you send an email using
|
@@ -3126,8 +3133,8 @@ module Aws::SES
|
|
3126
3133
|
#
|
3127
3134
|
# @option params [required, Array<Types::BulkEmailDestination>] :destinations
|
3128
3135
|
# One or more `Destination` objects. All of the recipients in a
|
3129
|
-
# `Destination`
|
3130
|
-
#
|
3136
|
+
# `Destination` receive the same version of the email. You can specify
|
3137
|
+
# up to 50 `Destination` objects within a `Destinations` array.
|
3131
3138
|
#
|
3132
3139
|
# @return [Types::SendBulkTemplatedEmailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3133
3140
|
#
|
@@ -3186,9 +3193,9 @@ module Aws::SES
|
|
3186
3193
|
end
|
3187
3194
|
|
3188
3195
|
# Adds an email address to the list of identities for your Amazon SES
|
3189
|
-
# account in the current
|
3190
|
-
# result of executing this operation, a customized
|
3191
|
-
# sent to the specified address.
|
3196
|
+
# account in the current Amazon Web Services Region and attempts to
|
3197
|
+
# verify it. As a result of executing this operation, a customized
|
3198
|
+
# verification email is sent to the specified address.
|
3192
3199
|
#
|
3193
3200
|
# To use this operation, you must first create a custom verification
|
3194
3201
|
# email template. For more information about creating and using custom
|
@@ -3199,7 +3206,7 @@ module Aws::SES
|
|
3199
3206
|
#
|
3200
3207
|
#
|
3201
3208
|
#
|
3202
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3209
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
3203
3210
|
#
|
3204
3211
|
# @option params [required, String] :email_address
|
3205
3212
|
# The email address to verify.
|
@@ -3237,14 +3244,13 @@ module Aws::SES
|
|
3237
3244
|
req.send_request(options)
|
3238
3245
|
end
|
3239
3246
|
|
3240
|
-
# Composes an email message and immediately queues it for sending.
|
3241
|
-
#
|
3242
|
-
#
|
3247
|
+
# Composes an email message and immediately queues it for sending. To
|
3248
|
+
# send email using this operation, your message must meet the following
|
3249
|
+
# requirements:
|
3243
3250
|
#
|
3244
3251
|
# * The message must be sent from a verified email address or domain. If
|
3245
3252
|
# you attempt to send email using a non-verified address or domain,
|
3246
|
-
# the operation
|
3247
|
-
# error.
|
3253
|
+
# the operation results in an "Email address not verified" error.
|
3248
3254
|
#
|
3249
3255
|
# * If your account is still in the Amazon SES sandbox, you may only
|
3250
3256
|
# send to verified addresses or domains, or to email addresses
|
@@ -3258,7 +3264,7 @@ module Aws::SES
|
|
3258
3264
|
# recipient address can be a To: address, a CC: address, or a BCC:
|
3259
3265
|
# address. If a recipient email address is invalid (that is, it is not
|
3260
3266
|
# in the format *UserName@\[SubDomain.\]Domain.TopLevelDomain*), the
|
3261
|
-
# entire message
|
3267
|
+
# entire message is rejected, even if the message contains other
|
3262
3268
|
# recipients that are valid.
|
3263
3269
|
#
|
3264
3270
|
# * The message may not include more than 50 recipients, across the To:,
|
@@ -3276,8 +3282,8 @@ module Aws::SES
|
|
3276
3282
|
#
|
3277
3283
|
#
|
3278
3284
|
#
|
3279
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3280
|
-
# [2]: https://docs.aws.amazon.com/ses/latest/
|
3285
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/verify-addresses-and-domains.html
|
3286
|
+
# [2]: https://docs.aws.amazon.com/ses/latest/dg/manage-sending-quotas.html
|
3281
3287
|
#
|
3282
3288
|
# @option params [required, String] :source
|
3283
3289
|
# The email address that is sending the email. This email address must
|
@@ -3291,26 +3297,26 @@ module Aws::SES
|
|
3291
3297
|
# authorization, see the [Amazon SES Developer Guide][2].
|
3292
3298
|
#
|
3293
3299
|
# <note markdown="1"> Amazon SES does not support the SMTPUTF8 extension, as described in
|
3294
|
-
# [RFC6531][3]. For this reason, the
|
3295
|
-
#
|
3296
|
-
#
|
3297
|
-
#
|
3298
|
-
#
|
3299
|
-
#
|
3300
|
-
#
|
3301
|
-
# syntax, as described in [
|
3302
|
-
# the
|
3300
|
+
# [RFC6531][3]. For this reason, the email address string must be 7-bit
|
3301
|
+
# ASCII. If you want to send to or from email addresses that contain
|
3302
|
+
# Unicode characters in the domain part of an address, you must encode
|
3303
|
+
# the domain using Punycode. Punycode is not permitted in the local part
|
3304
|
+
# of the email address (the part before the @ sign) nor in the
|
3305
|
+
# "friendly from" name. If you want to use Unicode characters in the
|
3306
|
+
# "friendly from" name, you must encode the "friendly from" name
|
3307
|
+
# using MIME encoded-word syntax, as described in [Sending raw email
|
3308
|
+
# using the Amazon SES API][4]. For more information about Punycode, see
|
3309
|
+
# [RFC 3492][5].
|
3303
3310
|
#
|
3304
3311
|
# </note>
|
3305
3312
|
#
|
3306
3313
|
#
|
3307
3314
|
#
|
3308
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3309
|
-
# [2]: https://docs.aws.amazon.com/ses/latest/
|
3315
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html
|
3316
|
+
# [2]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3310
3317
|
# [3]: https://tools.ietf.org/html/rfc6531
|
3311
|
-
# [4]: https://
|
3312
|
-
# [5]:
|
3313
|
-
# [6]: https://tools.ietf.org/html/rfc2047
|
3318
|
+
# [4]: https://docs.aws.amazon.com/ses/latest/dg/send-email-raw.html
|
3319
|
+
# [5]: http://tools.ietf.org/html/rfc3492
|
3314
3320
|
#
|
3315
3321
|
# @option params [required, Types::Destination] :destination
|
3316
3322
|
# The destination for this email, composed of To:, CC:, and BCC: fields.
|
@@ -3320,17 +3326,17 @@ module Aws::SES
|
|
3320
3326
|
#
|
3321
3327
|
# @option params [Array<String>] :reply_to_addresses
|
3322
3328
|
# The reply-to email address(es) for the message. If the recipient
|
3323
|
-
# replies to the message, each reply-to address
|
3329
|
+
# replies to the message, each reply-to address receives the reply.
|
3324
3330
|
#
|
3325
3331
|
# @option params [String] :return_path
|
3326
|
-
# The email address that bounces and complaints
|
3327
|
-
#
|
3328
|
-
#
|
3329
|
-
#
|
3330
|
-
#
|
3331
|
-
#
|
3332
|
-
#
|
3333
|
-
#
|
3332
|
+
# The email address that bounces and complaints are forwarded to when
|
3333
|
+
# feedback forwarding is enabled. If the message cannot be delivered to
|
3334
|
+
# the recipient, then an error message is returned from the recipient's
|
3335
|
+
# ISP; this message is forwarded to the email address specified by the
|
3336
|
+
# `ReturnPath` parameter. The `ReturnPath` parameter is never
|
3337
|
+
# overwritten. This email address must be either individually verified
|
3338
|
+
# with Amazon SES, or from a domain that has been verified with Amazon
|
3339
|
+
# SES.
|
3334
3340
|
#
|
3335
3341
|
# @option params [String] :source_arn
|
3336
3342
|
# This parameter is used only for sending authorization. It is the ARN
|
@@ -3350,7 +3356,7 @@ module Aws::SES
|
|
3350
3356
|
#
|
3351
3357
|
#
|
3352
3358
|
#
|
3353
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3359
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3354
3360
|
#
|
3355
3361
|
# @option params [String] :return_path_arn
|
3356
3362
|
# This parameter is used only for sending authorization. It is the ARN
|
@@ -3370,7 +3376,7 @@ module Aws::SES
|
|
3370
3376
|
#
|
3371
3377
|
#
|
3372
3378
|
#
|
3373
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3379
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3374
3380
|
#
|
3375
3381
|
# @option params [Array<Types::MessageTag>] :tags
|
3376
3382
|
# A list of tags, in the form of name/value pairs, to apply to an email
|
@@ -3485,10 +3491,10 @@ module Aws::SES
|
|
3485
3491
|
|
3486
3492
|
# Composes an email message and immediately queues it for sending.
|
3487
3493
|
#
|
3488
|
-
# This operation is more flexible than the `SendEmail`
|
3489
|
-
#
|
3490
|
-
#
|
3491
|
-
# example, when you
|
3494
|
+
# This operation is more flexible than the `SendEmail` operation. When
|
3495
|
+
# you use the `SendRawEmail` operation, you can specify the headers of
|
3496
|
+
# the message as well as its content. This flexibility is useful, for
|
3497
|
+
# example, when you need to send a multipart MIME email (such a message
|
3492
3498
|
# that contains both a text and an HTML version). You can also use this
|
3493
3499
|
# operation to send messages that include attachments.
|
3494
3500
|
#
|
@@ -3534,17 +3540,17 @@ module Aws::SES
|
|
3534
3540
|
# `SendRawEmail` operation:
|
3535
3541
|
#
|
3536
3542
|
# * Although you can customize the message headers when using the
|
3537
|
-
# `SendRawEmail` operation, Amazon SES
|
3538
|
-
#
|
3539
|
-
#
|
3540
|
-
#
|
3543
|
+
# `SendRawEmail` operation, Amazon SES automatically applies its own
|
3544
|
+
# `Message-ID` and `Date` headers; if you passed these headers when
|
3545
|
+
# creating the message, they are overwritten by the values that Amazon
|
3546
|
+
# SES provides.
|
3541
3547
|
#
|
3542
3548
|
# * If you are using sending authorization to send on behalf of another
|
3543
3549
|
# user, `SendRawEmail` enables you to specify the cross-account
|
3544
3550
|
# identity for the email's Source, From, and Return-Path parameters
|
3545
3551
|
# in one of two ways: you can pass optional parameters `SourceArn`,
|
3546
|
-
# `FromArn`, and/or `ReturnPathArn
|
3547
|
-
#
|
3552
|
+
# `FromArn`, and/or `ReturnPathArn`, or you can include the following
|
3553
|
+
# X-headers in the header of your raw email:
|
3548
3554
|
#
|
3549
3555
|
# * `X-SES-SOURCE-ARN`
|
3550
3556
|
#
|
@@ -3572,12 +3578,12 @@ module Aws::SES
|
|
3572
3578
|
#
|
3573
3579
|
#
|
3574
3580
|
#
|
3575
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3576
|
-
# [2]: https://docs.aws.amazon.com/ses/latest/
|
3577
|
-
# [3]: https://docs.aws.amazon.com/ses/latest/
|
3578
|
-
# [4]: https://docs.aws.amazon.com/ses/latest/
|
3579
|
-
# [5]: https://docs.aws.amazon.com/ses/latest/
|
3580
|
-
# [6]: https://docs.aws.amazon.com/ses/latest/
|
3581
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/verify-addresses-and-domains.html
|
3582
|
+
# [2]: https://docs.aws.amazon.com/ses/latest/dg/request-production-access.html
|
3583
|
+
# [3]: https://docs.aws.amazon.com/ses/latest/dg/send-an-email-from-console.html
|
3584
|
+
# [4]: https://docs.aws.amazon.com/ses/latest/dg/send-email-raw.html#send-email-mime-encoding
|
3585
|
+
# [5]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3586
|
+
# [6]: https://docs.aws.amazon.com/ses/latest/dg/manage-sending-quotas.html
|
3581
3587
|
#
|
3582
3588
|
# @option params [String] :source
|
3583
3589
|
# The identity's email address. If you do not provide a value for this
|
@@ -3585,29 +3591,29 @@ module Aws::SES
|
|
3585
3591
|
# message. (You can also specify both.)
|
3586
3592
|
#
|
3587
3593
|
# <note markdown="1"> Amazon SES does not support the SMTPUTF8 extension, as described
|
3588
|
-
# in[RFC6531][1]. For this reason, the
|
3589
|
-
#
|
3590
|
-
#
|
3591
|
-
#
|
3592
|
-
#
|
3593
|
-
#
|
3594
|
-
#
|
3595
|
-
# syntax, as described in [
|
3596
|
-
# the
|
3594
|
+
# in[RFC6531][1]. For this reason, the email address string must be
|
3595
|
+
# 7-bit ASCII. If you want to send to or from email addresses that
|
3596
|
+
# contain Unicode characters in the domain part of an address, you must
|
3597
|
+
# encode the domain using Punycode. Punycode is not permitted in the
|
3598
|
+
# local part of the email address (the part before the @ sign) nor in
|
3599
|
+
# the "friendly from" name. If you want to use Unicode characters in
|
3600
|
+
# the "friendly from" name, you must encode the "friendly from" name
|
3601
|
+
# using MIME encoded-word syntax, as described in [Sending raw email
|
3602
|
+
# using the Amazon SES API][2]. For more information about Punycode, see
|
3603
|
+
# [RFC 3492][3].
|
3597
3604
|
#
|
3598
3605
|
# </note>
|
3599
3606
|
#
|
3600
3607
|
# If you specify the `Source` parameter and have feedback forwarding
|
3601
|
-
# enabled, then bounces and complaints
|
3602
|
-
#
|
3603
|
-
#
|
3608
|
+
# enabled, then bounces and complaints are sent to this email address.
|
3609
|
+
# This takes precedence over any Return-Path header that you might
|
3610
|
+
# include in the raw text of the message.
|
3604
3611
|
#
|
3605
3612
|
#
|
3606
3613
|
#
|
3607
3614
|
# [1]: https://tools.ietf.org/html/rfc6531
|
3608
|
-
# [2]: https://
|
3609
|
-
# [3]:
|
3610
|
-
# [4]: https://tools.ietf.org/html/rfc2047
|
3615
|
+
# [2]: https://docs.aws.amazon.com/ses/latest/dg/send-email-raw.html
|
3616
|
+
# [3]: http://tools.ietf.org/html/rfc3492
|
3611
3617
|
#
|
3612
3618
|
# @option params [Array<String>] :destinations
|
3613
3619
|
# A list of destinations for the message, consisting of To:, CC:, and
|
@@ -3640,8 +3646,8 @@ module Aws::SES
|
|
3640
3646
|
#
|
3641
3647
|
#
|
3642
3648
|
#
|
3643
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3644
|
-
# [2]: https://docs.aws.amazon.com/ses/latest/
|
3649
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/mime-types.html
|
3650
|
+
# [2]: https://docs.aws.amazon.com/ses/latest/dg/send-email-raw.html
|
3645
3651
|
# [3]: https://tools.ietf.org/html/rfc5321#section-4.5.3.1.6
|
3646
3652
|
#
|
3647
3653
|
# @option params [String] :from_arn
|
@@ -3663,7 +3669,7 @@ module Aws::SES
|
|
3663
3669
|
#
|
3664
3670
|
#
|
3665
3671
|
#
|
3666
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3672
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization-delegate-sender-tasks-email.html
|
3667
3673
|
#
|
3668
3674
|
# @option params [String] :source_arn
|
3669
3675
|
# This parameter is used only for sending authorization. It is the ARN
|
@@ -3691,7 +3697,7 @@ module Aws::SES
|
|
3691
3697
|
#
|
3692
3698
|
#
|
3693
3699
|
#
|
3694
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3700
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization-delegate-sender-tasks-email.html
|
3695
3701
|
#
|
3696
3702
|
# @option params [String] :return_path_arn
|
3697
3703
|
# This parameter is used only for sending authorization. It is the ARN
|
@@ -3719,7 +3725,7 @@ module Aws::SES
|
|
3719
3725
|
#
|
3720
3726
|
#
|
3721
3727
|
#
|
3722
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3728
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization-delegate-sender-tasks-email.html
|
3723
3729
|
#
|
3724
3730
|
# @option params [Array<Types::MessageTag>] :tags
|
3725
3731
|
# A list of tags, in the form of name/value pairs, to apply to an email
|
@@ -3793,8 +3799,8 @@ module Aws::SES
|
|
3793
3799
|
# Composes an email message using an email template and immediately
|
3794
3800
|
# queues it for sending.
|
3795
3801
|
#
|
3796
|
-
#
|
3797
|
-
#
|
3802
|
+
# To send email using this operation, your call must meet the following
|
3803
|
+
# requirements:
|
3798
3804
|
#
|
3799
3805
|
# * The call must refer to an existing email template. You can create
|
3800
3806
|
# email templates using the CreateTemplate operation.
|
@@ -3810,18 +3816,18 @@ module Aws::SES
|
|
3810
3816
|
# * The maximum message size is 10 MB.
|
3811
3817
|
#
|
3812
3818
|
# * Calls to the `SendTemplatedEmail` operation may only include one
|
3813
|
-
# `Destination` parameter. A destination is a set of recipients
|
3814
|
-
#
|
3815
|
-
#
|
3816
|
-
#
|
3819
|
+
# `Destination` parameter. A destination is a set of recipients that
|
3820
|
+
# receives the same version of the email. The `Destination` parameter
|
3821
|
+
# can include up to 50 recipients, across the To:, CC: and BCC:
|
3822
|
+
# fields.
|
3817
3823
|
#
|
3818
3824
|
# * The `Destination` parameter must include at least one recipient
|
3819
3825
|
# email address. The recipient address can be a To: address, a CC:
|
3820
3826
|
# address, or a BCC: address. If a recipient email address is invalid
|
3821
3827
|
# (that is, it is not in the format
|
3822
3828
|
# *UserName@\[SubDomain.\]Domain.TopLevelDomain*), the entire message
|
3823
|
-
#
|
3824
|
-
#
|
3829
|
+
# is rejected, even if the message contains other recipients that are
|
3830
|
+
# valid.
|
3825
3831
|
#
|
3826
3832
|
# If your call to the `SendTemplatedEmail` operation includes all of the
|
3827
3833
|
# required parameters, Amazon SES accepts it and returns a Message ID.
|
@@ -3837,8 +3843,8 @@ module Aws::SES
|
|
3837
3843
|
#
|
3838
3844
|
#
|
3839
3845
|
#
|
3840
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3841
|
-
# [2]: https://docs.aws.amazon.com/ses/latest/
|
3846
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/verify-addresses-and-domains.html
|
3847
|
+
# [2]: https://docs.aws.amazon.com/ses/latest/dg/send-personalized-email-api.html
|
3842
3848
|
#
|
3843
3849
|
# @option params [required, String] :source
|
3844
3850
|
# The email address that is sending the email. This email address must
|
@@ -3852,26 +3858,26 @@ module Aws::SES
|
|
3852
3858
|
# authorization, see the [Amazon SES Developer Guide][2].
|
3853
3859
|
#
|
3854
3860
|
# <note markdown="1"> Amazon SES does not support the SMTPUTF8 extension, as described in
|
3855
|
-
# [RFC6531][3].
|
3856
|
-
#
|
3857
|
-
#
|
3858
|
-
#
|
3859
|
-
#
|
3860
|
-
#
|
3861
|
-
#
|
3862
|
-
# syntax, as described in
|
3863
|
-
# the
|
3861
|
+
# [RFC6531][3]. for this reason, The email address string must be 7-bit
|
3862
|
+
# ASCII. If you want to send to or from email addresses that contain
|
3863
|
+
# Unicode characters in the domain part of an address, you must encode
|
3864
|
+
# the domain using Punycode. Punycode is not permitted in the local part
|
3865
|
+
# of the email address (the part before the @ sign) nor in the
|
3866
|
+
# "friendly from" name. If you want to use Unicode characters in the
|
3867
|
+
# "friendly from" name, you must encode the "friendly from" name
|
3868
|
+
# using MIME encoded-word syntax, as described in [Sending raw email
|
3869
|
+
# using the Amazon SES API][4]. For more information about Punycode, see
|
3870
|
+
# [RFC 3492][5].
|
3864
3871
|
#
|
3865
3872
|
# </note>
|
3866
3873
|
#
|
3867
3874
|
#
|
3868
3875
|
#
|
3869
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3870
|
-
# [2]: https://docs.aws.amazon.com/ses/latest/
|
3876
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html
|
3877
|
+
# [2]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3871
3878
|
# [3]: https://tools.ietf.org/html/rfc6531
|
3872
|
-
# [4]: https://
|
3873
|
-
# [5]:
|
3874
|
-
# [6]: https://tools.ietf.org/html/rfc2047
|
3879
|
+
# [4]: https://docs.aws.amazon.com/ses/latest/dg/send-email-raw.html
|
3880
|
+
# [5]: http://tools.ietf.org/html/rfc3492
|
3875
3881
|
#
|
3876
3882
|
# @option params [required, Types::Destination] :destination
|
3877
3883
|
# The destination for this email, composed of To:, CC:, and BCC: fields.
|
@@ -3880,17 +3886,17 @@ module Aws::SES
|
|
3880
3886
|
#
|
3881
3887
|
# @option params [Array<String>] :reply_to_addresses
|
3882
3888
|
# The reply-to email address(es) for the message. If the recipient
|
3883
|
-
# replies to the message, each reply-to address
|
3889
|
+
# replies to the message, each reply-to address receives the reply.
|
3884
3890
|
#
|
3885
3891
|
# @option params [String] :return_path
|
3886
|
-
# The email address that bounces and complaints
|
3887
|
-
#
|
3888
|
-
#
|
3889
|
-
#
|
3890
|
-
#
|
3891
|
-
#
|
3892
|
-
#
|
3893
|
-
#
|
3892
|
+
# The email address that bounces and complaints are forwarded to when
|
3893
|
+
# feedback forwarding is enabled. If the message cannot be delivered to
|
3894
|
+
# the recipient, then an error message is returned from the recipient's
|
3895
|
+
# ISP; this message is forwarded to the email address specified by the
|
3896
|
+
# `ReturnPath` parameter. The `ReturnPath` parameter is never
|
3897
|
+
# overwritten. This email address must be either individually verified
|
3898
|
+
# with Amazon SES, or from a domain that has been verified with Amazon
|
3899
|
+
# SES.
|
3894
3900
|
#
|
3895
3901
|
# @option params [String] :source_arn
|
3896
3902
|
# This parameter is used only for sending authorization. It is the ARN
|
@@ -3910,7 +3916,7 @@ module Aws::SES
|
|
3910
3916
|
#
|
3911
3917
|
#
|
3912
3918
|
#
|
3913
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3919
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3914
3920
|
#
|
3915
3921
|
# @option params [String] :return_path_arn
|
3916
3922
|
# This parameter is used only for sending authorization. It is the ARN
|
@@ -3930,7 +3936,7 @@ module Aws::SES
|
|
3930
3936
|
#
|
3931
3937
|
#
|
3932
3938
|
#
|
3933
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
3939
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/sending-authorization.html
|
3934
3940
|
#
|
3935
3941
|
# @option params [Array<Types::MessageTag>] :tags
|
3936
3942
|
# A list of tags, in the form of name/value pairs, to apply to an email
|
@@ -3998,7 +4004,7 @@ module Aws::SES
|
|
3998
4004
|
# Sets the specified receipt rule set as the active receipt rule set.
|
3999
4005
|
#
|
4000
4006
|
# <note markdown="1"> To disable your email-receiving through Amazon SES completely, you can
|
4001
|
-
# call this
|
4007
|
+
# call this operation with `RuleSetName` set to null.
|
4002
4008
|
#
|
4003
4009
|
# </note>
|
4004
4010
|
#
|
@@ -4009,7 +4015,7 @@ module Aws::SES
|
|
4009
4015
|
#
|
4010
4016
|
#
|
4011
4017
|
#
|
4012
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4018
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
4013
4019
|
#
|
4014
4020
|
# @option params [String] :rule_set_name
|
4015
4021
|
# The name of the receipt rule set to make active. Setting this value to
|
@@ -4064,7 +4070,7 @@ module Aws::SES
|
|
4064
4070
|
#
|
4065
4071
|
#
|
4066
4072
|
#
|
4067
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4073
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/send-email-authentication-dkim-easy.html
|
4068
4074
|
#
|
4069
4075
|
# @option params [required, String] :identity
|
4070
4076
|
# The identity for which DKIM signing should be enabled or disabled.
|
@@ -4119,21 +4125,20 @@ module Aws::SES
|
|
4119
4125
|
#
|
4120
4126
|
#
|
4121
4127
|
#
|
4122
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4128
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity-using-notifications.html
|
4123
4129
|
#
|
4124
4130
|
# @option params [required, String] :identity
|
4125
4131
|
# The identity for which to set bounce and complaint notification
|
4126
4132
|
# forwarding. Examples: `user@example.com`, `example.com`.
|
4127
4133
|
#
|
4128
4134
|
# @option params [required, Boolean] :forwarding_enabled
|
4129
|
-
# Sets whether Amazon SES
|
4130
|
-
#
|
4131
|
-
#
|
4132
|
-
#
|
4133
|
-
#
|
4134
|
-
#
|
4135
|
-
#
|
4136
|
-
# types.
|
4135
|
+
# Sets whether Amazon SES forwards bounce and complaint notifications as
|
4136
|
+
# email. `true` specifies that Amazon SES forwards bounce and complaint
|
4137
|
+
# notifications as email, in addition to any Amazon SNS topic publishing
|
4138
|
+
# otherwise specified. `false` specifies that Amazon SES publishes
|
4139
|
+
# bounce and complaint notifications only through Amazon SNS. This value
|
4140
|
+
# can only be set to `false` when Amazon SNS topics are set for both
|
4141
|
+
# `Bounce` and `Complaint` notification types.
|
4137
4142
|
#
|
4138
4143
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4139
4144
|
#
|
@@ -4174,7 +4179,7 @@ module Aws::SES
|
|
4174
4179
|
#
|
4175
4180
|
#
|
4176
4181
|
#
|
4177
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4182
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity-using-notifications.html
|
4178
4183
|
#
|
4179
4184
|
# @option params [required, String] :identity
|
4180
4185
|
# The identity for which to enable or disable headers in notifications.
|
@@ -4187,9 +4192,9 @@ module Aws::SES
|
|
4187
4192
|
# @option params [required, Boolean] :enabled
|
4188
4193
|
# Sets whether Amazon SES includes the original email headers in Amazon
|
4189
4194
|
# SNS notifications of the specified notification type. A value of
|
4190
|
-
# `true` specifies that Amazon SES
|
4191
|
-
#
|
4192
|
-
#
|
4195
|
+
# `true` specifies that Amazon SES includes headers in notifications,
|
4196
|
+
# and a value of `false` specifies that Amazon SES does not include
|
4197
|
+
# headers in notifications.
|
4193
4198
|
#
|
4194
4199
|
# This value can only be set when `NotificationType` is already set to
|
4195
4200
|
# use a particular Amazon SNS topic.
|
@@ -4229,41 +4234,40 @@ module Aws::SES
|
|
4229
4234
|
# identity (an email address or a domain).
|
4230
4235
|
#
|
4231
4236
|
# To send emails using the specified MAIL FROM domain, you must add an
|
4232
|
-
# MX record to your MAIL FROM domain's DNS settings.
|
4233
|
-
# emails
|
4234
|
-
# or update an SPF record. For more information, see the [Amazon SES
|
4237
|
+
# MX record to your MAIL FROM domain's DNS settings. To ensure that
|
4238
|
+
# your emails pass Sender Policy Framework (SPF) checks, you must also
|
4239
|
+
# add or update an SPF record. For more information, see the [Amazon SES
|
4235
4240
|
# Developer Guide][1].
|
4236
4241
|
#
|
4237
4242
|
# You can execute this operation no more than once per second.
|
4238
4243
|
#
|
4239
4244
|
#
|
4240
4245
|
#
|
4241
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4246
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/mail-from.html
|
4242
4247
|
#
|
4243
4248
|
# @option params [required, String] :identity
|
4244
|
-
# The verified identity
|
4245
|
-
# specified custom MAIL FROM domain.
|
4249
|
+
# The verified identity.
|
4246
4250
|
#
|
4247
4251
|
# @option params [String] :mail_from_domain
|
4248
|
-
# The custom MAIL FROM domain
|
4249
|
-
#
|
4250
|
-
#
|
4251
|
-
#
|
4252
|
-
#
|
4253
|
-
#
|
4254
|
-
#
|
4252
|
+
# The custom MAIL FROM domain for the verified identity to use. The MAIL
|
4253
|
+
# FROM domain must 1) be a subdomain of the verified identity, 2) not be
|
4254
|
+
# used in a "From" address if the MAIL FROM domain is the destination
|
4255
|
+
# of email feedback forwarding (for more information, see the [Amazon
|
4256
|
+
# SES Developer Guide][1]), and 3) not be used to receive emails. A
|
4257
|
+
# value of `null` disables the custom MAIL FROM setting for the
|
4258
|
+
# identity.
|
4255
4259
|
#
|
4256
4260
|
#
|
4257
4261
|
#
|
4258
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4262
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/mail-from.html
|
4259
4263
|
#
|
4260
4264
|
# @option params [String] :behavior_on_mx_failure
|
4261
|
-
# The action
|
4262
|
-
#
|
4263
|
-
# `UseDefaultValue`, Amazon SES
|
4264
|
-
#
|
4265
|
-
#
|
4266
|
-
#
|
4265
|
+
# The action for Amazon SES to take if it cannot successfully read the
|
4266
|
+
# required MX record when you send an email. If you choose
|
4267
|
+
# `UseDefaultValue`, Amazon SES uses amazonses.com (or a subdomain of
|
4268
|
+
# that) as the MAIL FROM domain. If you choose `RejectMessage`, Amazon
|
4269
|
+
# SES returns a `MailFromDomainNotVerified` error and not send the
|
4270
|
+
# email.
|
4267
4271
|
#
|
4268
4272
|
# The action specified in `BehaviorOnMXFailure` is taken when the custom
|
4269
4273
|
# MAIL FROM domain setup is in the `Pending`, `Failed`, and
|
@@ -4314,11 +4318,10 @@ module Aws::SES
|
|
4314
4318
|
#
|
4315
4319
|
#
|
4316
4320
|
#
|
4317
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4321
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity-using-notifications.html
|
4318
4322
|
#
|
4319
4323
|
# @option params [required, String] :identity
|
4320
|
-
# The identity (email address or domain)
|
4321
|
-
# SNS topic for.
|
4324
|
+
# The identity (email address or domain) for the Amazon SNS topic.
|
4322
4325
|
#
|
4323
4326
|
# You can only specify a verified identity for this parameter.
|
4324
4327
|
#
|
@@ -4328,8 +4331,8 @@ module Aws::SES
|
|
4328
4331
|
# `arn:aws:ses:us-east-1:123456789012:identity/example.com`.
|
4329
4332
|
#
|
4330
4333
|
# @option params [required, String] :notification_type
|
4331
|
-
# The type of notifications that
|
4332
|
-
#
|
4334
|
+
# The type of notifications that are published to the specified Amazon
|
4335
|
+
# SNS topic.
|
4333
4336
|
#
|
4334
4337
|
# @option params [String] :sns_topic
|
4335
4338
|
# The Amazon Resource Name (ARN) of the Amazon SNS topic. If the
|
@@ -4377,7 +4380,7 @@ module Aws::SES
|
|
4377
4380
|
#
|
4378
4381
|
#
|
4379
4382
|
#
|
4380
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4383
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
4381
4384
|
#
|
4382
4385
|
# @option params [required, String] :rule_set_name
|
4383
4386
|
# The name of the receipt rule set that contains the receipt rule to
|
@@ -4426,7 +4429,7 @@ module Aws::SES
|
|
4426
4429
|
# You can execute this operation no more than once per second.
|
4427
4430
|
#
|
4428
4431
|
# @option params [required, String] :template_name
|
4429
|
-
# The name of the template
|
4432
|
+
# The name of the template to render.
|
4430
4433
|
#
|
4431
4434
|
# @option params [required, String] :template_data
|
4432
4435
|
# A list of replacement values to apply to the template. This parameter
|
@@ -4458,17 +4461,17 @@ module Aws::SES
|
|
4458
4461
|
end
|
4459
4462
|
|
4460
4463
|
# Enables or disables email sending across your entire Amazon SES
|
4461
|
-
# account in the current
|
4462
|
-
# conjunction with Amazon CloudWatch alarms to temporarily
|
4463
|
-
# sending across your Amazon SES account in a given
|
4464
|
-
# reputation metrics (such as your bounce or
|
4465
|
-
# certain thresholds.
|
4464
|
+
# account in the current Amazon Web Services Region. You can use this
|
4465
|
+
# operation in conjunction with Amazon CloudWatch alarms to temporarily
|
4466
|
+
# pause email sending across your Amazon SES account in a given Amazon
|
4467
|
+
# Web Services Region when reputation metrics (such as your bounce or
|
4468
|
+
# complaint rates) reach certain thresholds.
|
4466
4469
|
#
|
4467
4470
|
# You can execute this operation no more than once per second.
|
4468
4471
|
#
|
4469
4472
|
# @option params [Boolean] :enabled
|
4470
4473
|
# Describes whether email sending is enabled or disabled for your Amazon
|
4471
|
-
# SES account in the current
|
4474
|
+
# SES account in the current Amazon Web Services Region.
|
4472
4475
|
#
|
4473
4476
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4474
4477
|
#
|
@@ -4514,15 +4517,13 @@ module Aws::SES
|
|
4514
4517
|
#
|
4515
4518
|
#
|
4516
4519
|
#
|
4517
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4520
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html
|
4518
4521
|
#
|
4519
4522
|
# @option params [required, String] :configuration_set_name
|
4520
|
-
# The name of the configuration set that contains the event destination
|
4521
|
-
# that you want to update.
|
4523
|
+
# The name of the configuration set that contains the event destination.
|
4522
4524
|
#
|
4523
4525
|
# @option params [required, Types::EventDestination] :event_destination
|
4524
|
-
# The event destination object
|
4525
|
-
# configuration set.
|
4526
|
+
# The event destination object.
|
4526
4527
|
#
|
4527
4528
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4528
4529
|
#
|
@@ -4563,21 +4564,21 @@ module Aws::SES
|
|
4563
4564
|
end
|
4564
4565
|
|
4565
4566
|
# Enables or disables the publishing of reputation metrics for emails
|
4566
|
-
# sent using a specific configuration set in a given
|
4567
|
-
# Reputation metrics include bounce and complaint rates. These
|
4568
|
-
# are published to Amazon CloudWatch. By using CloudWatch, you
|
4569
|
-
# create alarms when bounce or complaint rates exceed certain
|
4567
|
+
# sent using a specific configuration set in a given Amazon Web Services
|
4568
|
+
# Region. Reputation metrics include bounce and complaint rates. These
|
4569
|
+
# metrics are published to Amazon CloudWatch. By using CloudWatch, you
|
4570
|
+
# can create alarms when bounce or complaint rates exceed certain
|
4570
4571
|
# thresholds.
|
4571
4572
|
#
|
4572
4573
|
# You can execute this operation no more than once per second.
|
4573
4574
|
#
|
4574
4575
|
# @option params [required, String] :configuration_set_name
|
4575
|
-
# The name of the configuration set
|
4576
|
+
# The name of the configuration set to update.
|
4576
4577
|
#
|
4577
4578
|
# @option params [required, Boolean] :enabled
|
4578
|
-
# Describes whether or not Amazon SES
|
4579
|
-
#
|
4580
|
-
#
|
4579
|
+
# Describes whether or not Amazon SES publishes reputation metrics for
|
4580
|
+
# the configuration set, such as bounce and complaint rates, to Amazon
|
4581
|
+
# CloudWatch.
|
4581
4582
|
#
|
4582
4583
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4583
4584
|
#
|
@@ -4608,16 +4609,16 @@ module Aws::SES
|
|
4608
4609
|
end
|
4609
4610
|
|
4610
4611
|
# Enables or disables email sending for messages sent using a specific
|
4611
|
-
# configuration set in a given
|
4612
|
-
# conjunction with Amazon CloudWatch alarms to
|
4613
|
-
# sending for a configuration set when the
|
4614
|
-
# configuration set (such as your bounce on
|
4615
|
-
# certain thresholds.
|
4612
|
+
# configuration set in a given Amazon Web Services Region. You can use
|
4613
|
+
# this operation in conjunction with Amazon CloudWatch alarms to
|
4614
|
+
# temporarily pause email sending for a configuration set when the
|
4615
|
+
# reputation metrics for that configuration set (such as your bounce on
|
4616
|
+
# complaint rate) exceed certain thresholds.
|
4616
4617
|
#
|
4617
4618
|
# You can execute this operation no more than once per second.
|
4618
4619
|
#
|
4619
4620
|
# @option params [required, String] :configuration_set_name
|
4620
|
-
# The name of the configuration set
|
4621
|
+
# The name of the configuration set to update.
|
4621
4622
|
#
|
4622
4623
|
# @option params [required, Boolean] :enabled
|
4623
4624
|
# Describes whether email sending is enabled or disabled for the
|
@@ -4661,11 +4662,10 @@ module Aws::SES
|
|
4661
4662
|
#
|
4662
4663
|
#
|
4663
4664
|
#
|
4664
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4665
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/configure-custom-open-click-domains.html
|
4665
4666
|
#
|
4666
4667
|
# @option params [required, String] :configuration_set_name
|
4667
|
-
# The name of the configuration set
|
4668
|
-
# custom tracking domain.
|
4668
|
+
# The name of the configuration set.
|
4669
4669
|
#
|
4670
4670
|
# @option params [required, Types::TrackingOptions] :tracking_options
|
4671
4671
|
# A domain that is used to redirect email recipients to an Amazon
|
@@ -4677,7 +4677,7 @@ module Aws::SES
|
|
4677
4677
|
#
|
4678
4678
|
#
|
4679
4679
|
#
|
4680
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4680
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/configure-custom-open-click-domains.html
|
4681
4681
|
#
|
4682
4682
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4683
4683
|
#
|
@@ -4709,11 +4709,10 @@ module Aws::SES
|
|
4709
4709
|
#
|
4710
4710
|
#
|
4711
4711
|
#
|
4712
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4712
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
4713
4713
|
#
|
4714
4714
|
# @option params [required, String] :template_name
|
4715
|
-
# The name of the custom verification email template
|
4716
|
-
# update.
|
4715
|
+
# The name of the custom verification email template to update.
|
4717
4716
|
#
|
4718
4717
|
# @option params [String] :from_email_address
|
4719
4718
|
# The email address that the custom verification email is sent from.
|
@@ -4729,7 +4728,7 @@ module Aws::SES
|
|
4729
4728
|
#
|
4730
4729
|
#
|
4731
4730
|
#
|
4732
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4731
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#send-email-verify-address-custom
|
4733
4732
|
#
|
4734
4733
|
# @option params [String] :success_redirection_url
|
4735
4734
|
# The URL that the recipient of the verification email is sent to if his
|
@@ -4770,7 +4769,7 @@ module Aws::SES
|
|
4770
4769
|
#
|
4771
4770
|
#
|
4772
4771
|
#
|
4773
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4772
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-console-walkthrough.html
|
4774
4773
|
#
|
4775
4774
|
# @option params [required, String] :rule_set_name
|
4776
4775
|
# The name of the receipt rule set that the receipt rule belongs to.
|
@@ -4864,19 +4863,18 @@ module Aws::SES
|
|
4864
4863
|
end
|
4865
4864
|
|
4866
4865
|
# Updates an email template. Email templates enable you to send
|
4867
|
-
# personalized email to one or more destinations in a single
|
4868
|
-
#
|
4869
|
-
# Guide][1].
|
4866
|
+
# personalized email to one or more destinations in a single operation.
|
4867
|
+
# For more information, see the [Amazon SES Developer Guide][1].
|
4870
4868
|
#
|
4871
4869
|
# You can execute this operation no more than once per second.
|
4872
4870
|
#
|
4873
4871
|
#
|
4874
4872
|
#
|
4875
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4873
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/send-personalized-email-api.html
|
4876
4874
|
#
|
4877
4875
|
# @option params [required, Types::Template] :template
|
4878
|
-
# The content of the email, composed of a subject line
|
4879
|
-
#
|
4876
|
+
# The content of the email, composed of a subject line and either an
|
4877
|
+
# HTML part or a text-only part.
|
4880
4878
|
#
|
4881
4879
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4882
4880
|
#
|
@@ -4936,8 +4934,8 @@ module Aws::SES
|
|
4936
4934
|
#
|
4937
4935
|
#
|
4938
4936
|
#
|
4939
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4940
|
-
# [2]: https://docs.aws.amazon.com/ses/latest/
|
4937
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#verify-domain-procedure
|
4938
|
+
# [2]: https://docs.aws.amazon.com/ses/latest/dg/send-email-authentication-dkim-easy.html
|
4941
4939
|
#
|
4942
4940
|
# @option params [required, String] :domain
|
4943
4941
|
# The name of the domain to be verified for Easy DKIM signing.
|
@@ -4985,15 +4983,15 @@ module Aws::SES
|
|
4985
4983
|
end
|
4986
4984
|
|
4987
4985
|
# Adds a domain to the list of identities for your Amazon SES account in
|
4988
|
-
# the current
|
4989
|
-
# about verifying domains, see [Verifying Email
|
4990
|
-
# Domains][1] in the *Amazon SES Developer Guide.*
|
4986
|
+
# the current Amazon Web Services Region and attempts to verify it. For
|
4987
|
+
# more information about verifying domains, see [Verifying Email
|
4988
|
+
# Addresses and Domains][1] in the *Amazon SES Developer Guide.*
|
4991
4989
|
#
|
4992
4990
|
# You can execute this operation no more than once per second.
|
4993
4991
|
#
|
4994
4992
|
#
|
4995
4993
|
#
|
4996
|
-
# [1]: https://docs.aws.amazon.com/ses/latest/
|
4994
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/dg/verify-addresses-and-domains.html
|
4997
4995
|
#
|
4998
4996
|
# @option params [required, String] :domain
|
4999
4997
|
# The domain to be verified.
|
@@ -5068,9 +5066,9 @@ module Aws::SES
|
|
5068
5066
|
end
|
5069
5067
|
|
5070
5068
|
# Adds an email address to the list of identities for your Amazon SES
|
5071
|
-
# account in the current
|
5072
|
-
# result of executing this operation, a verification
|
5073
|
-
# the specified address.
|
5069
|
+
# account in the current Amazon Web Services Region and attempts to
|
5070
|
+
# verify it. As a result of executing this operation, a verification
|
5071
|
+
# email is sent to the specified address.
|
5074
5072
|
#
|
5075
5073
|
# You can execute this operation no more than once per second.
|
5076
5074
|
#
|
@@ -5116,7 +5114,7 @@ module Aws::SES
|
|
5116
5114
|
params: params,
|
5117
5115
|
config: config)
|
5118
5116
|
context[:gem_name] = 'aws-sdk-ses'
|
5119
|
-
context[:gem_version] = '1.
|
5117
|
+
context[:gem_version] = '1.55.0'
|
5120
5118
|
Seahorse::Client::Request.new(handlers, context)
|
5121
5119
|
end
|
5122
5120
|
|