aws-sdk-sesv2 1.17.0 → 1.21.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sesv2/client.rb +119 -113
- data/lib/aws-sdk-sesv2/client_api.rb +7 -2
- data/lib/aws-sdk-sesv2/types.rb +226 -185
- data/lib/aws-sdk-sesv2.rb +1 -1
- metadata +8 -9
data/lib/aws-sdk-sesv2/types.rb
CHANGED
@@ -367,11 +367,11 @@ module Aws::SESV2
|
|
367
367
|
#
|
368
368
|
# @!attribute [rw] dimension_value_source
|
369
369
|
# The location where the Amazon SES API v2 finds the value of a
|
370
|
-
# dimension to publish to Amazon CloudWatch.
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
370
|
+
# dimension to publish to Amazon CloudWatch. To use the message tags
|
371
|
+
# that you specify using an `X-SES-MESSAGE-TAGS` header or a parameter
|
372
|
+
# to the `SendEmail` or `SendRawEmail` API, choose `messageTag`. To
|
373
|
+
# use your own email headers, choose `emailHeader`. To use link tags,
|
374
|
+
# choose `linkTags`.
|
375
375
|
# @return [String]
|
376
376
|
#
|
377
377
|
# @!attribute [rw] default_dimension_value
|
@@ -479,8 +479,8 @@ module Aws::SESV2
|
|
479
479
|
# @return [String]
|
480
480
|
#
|
481
481
|
# @!attribute [rw] contact_list_import_action
|
482
|
-
# >The type of action
|
483
|
-
#
|
482
|
+
# >The type of action to perform on the addresses. The following
|
483
|
+
# are the possible values:
|
484
484
|
#
|
485
485
|
# * PUT: add the addresses to the contact list. If the record already
|
486
486
|
# exists, it will override it with the new value.
|
@@ -563,8 +563,7 @@ module Aws::SESV2
|
|
563
563
|
# }
|
564
564
|
#
|
565
565
|
# @!attribute [rw] configuration_set_name
|
566
|
-
# The name of the configuration set
|
567
|
-
# destination to.
|
566
|
+
# The name of the configuration set .
|
568
567
|
# @return [String]
|
569
568
|
#
|
570
569
|
# @!attribute [rw] event_destination_name
|
@@ -626,7 +625,9 @@ module Aws::SESV2
|
|
626
625
|
# }
|
627
626
|
#
|
628
627
|
# @!attribute [rw] configuration_set_name
|
629
|
-
# The name of the configuration set.
|
628
|
+
# The name of the configuration set. The name can contain up to 64
|
629
|
+
# alphanumeric characters, including letters, numbers, hyphens (-) and
|
630
|
+
# underscores (\_) only.
|
630
631
|
# @return [String]
|
631
632
|
#
|
632
633
|
# @!attribute [rw] tracking_options
|
@@ -650,8 +651,8 @@ module Aws::SESV2
|
|
650
651
|
# @return [Types::SendingOptions]
|
651
652
|
#
|
652
653
|
# @!attribute [rw] tags
|
653
|
-
# An array of objects that define the tags (keys and values)
|
654
|
-
#
|
654
|
+
# An array of objects that define the tags (keys and values) to
|
655
|
+
# associate with the configuration set.
|
655
656
|
# @return [Array<Types::Tag>]
|
656
657
|
#
|
657
658
|
# @!attribute [rw] suppression_options
|
@@ -1022,7 +1023,7 @@ module Aws::SESV2
|
|
1022
1023
|
# }
|
1023
1024
|
#
|
1024
1025
|
# @!attribute [rw] email_identity
|
1025
|
-
# The email identity
|
1026
|
+
# The email identity.
|
1026
1027
|
# @return [String]
|
1027
1028
|
#
|
1028
1029
|
# @!attribute [rw] policy_name
|
@@ -1076,26 +1077,27 @@ module Aws::SESV2
|
|
1076
1077
|
# },
|
1077
1078
|
# ],
|
1078
1079
|
# dkim_signing_attributes: {
|
1079
|
-
# domain_signing_selector: "Selector",
|
1080
|
-
# domain_signing_private_key: "PrivateKey",
|
1080
|
+
# domain_signing_selector: "Selector",
|
1081
|
+
# domain_signing_private_key: "PrivateKey",
|
1082
|
+
# next_signing_key_length: "RSA_1024_BIT", # accepts RSA_1024_BIT, RSA_2048_BIT
|
1081
1083
|
# },
|
1082
1084
|
# configuration_set_name: "ConfigurationSetName",
|
1083
1085
|
# }
|
1084
1086
|
#
|
1085
1087
|
# @!attribute [rw] email_identity
|
1086
|
-
# The email address or domain
|
1088
|
+
# The email address or domain to verify.
|
1087
1089
|
# @return [String]
|
1088
1090
|
#
|
1089
1091
|
# @!attribute [rw] tags
|
1090
|
-
# An array of objects that define the tags (keys and values)
|
1091
|
-
#
|
1092
|
+
# An array of objects that define the tags (keys and values) to
|
1093
|
+
# associate with the email identity.
|
1092
1094
|
# @return [Array<Types::Tag>]
|
1093
1095
|
#
|
1094
1096
|
# @!attribute [rw] dkim_signing_attributes
|
1095
1097
|
# If your request includes this object, Amazon SES configures the
|
1096
1098
|
# identity to use Bring Your Own DKIM (BYODKIM) for DKIM
|
1097
|
-
# authentication purposes,
|
1098
|
-
# DKIM][1].
|
1099
|
+
# authentication purposes, or, configures the key length to be used
|
1100
|
+
# for [Easy DKIM][1].
|
1099
1101
|
#
|
1100
1102
|
# You can only specify this object if the email identity is a domain,
|
1101
1103
|
# as opposed to an address.
|
@@ -1128,7 +1130,8 @@ module Aws::SESV2
|
|
1128
1130
|
# If the email identity is an email address, this object is empty.
|
1129
1131
|
#
|
1130
1132
|
# @!attribute [rw] identity_type
|
1131
|
-
# The email identity type.
|
1133
|
+
# The email identity type. Note: the `MANAGED_DOMAIN` identity type is
|
1134
|
+
# not supported.
|
1132
1135
|
# @return [String]
|
1133
1136
|
#
|
1134
1137
|
# @!attribute [rw] verified_for_sending_status
|
@@ -1176,7 +1179,7 @@ module Aws::SESV2
|
|
1176
1179
|
# }
|
1177
1180
|
#
|
1178
1181
|
# @!attribute [rw] template_name
|
1179
|
-
# The name of the template
|
1182
|
+
# The name of the template.
|
1180
1183
|
# @return [String]
|
1181
1184
|
#
|
1182
1185
|
# @!attribute [rw] template_content
|
@@ -1378,11 +1381,11 @@ module Aws::SESV2
|
|
1378
1381
|
#
|
1379
1382
|
# @!attribute [rw] configuration_set_name
|
1380
1383
|
# The name of the configuration set that contains the event
|
1381
|
-
# destination
|
1384
|
+
# destination to delete.
|
1382
1385
|
# @return [String]
|
1383
1386
|
#
|
1384
1387
|
# @!attribute [rw] event_destination_name
|
1385
|
-
# The name of the event destination
|
1388
|
+
# The name of the event destination to delete.
|
1386
1389
|
# @return [String]
|
1387
1390
|
#
|
1388
1391
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteConfigurationSetEventDestinationRequest AWS API Documentation
|
@@ -1411,7 +1414,7 @@ module Aws::SESV2
|
|
1411
1414
|
# }
|
1412
1415
|
#
|
1413
1416
|
# @!attribute [rw] configuration_set_name
|
1414
|
-
# The name of the configuration set
|
1417
|
+
# The name of the configuration set.
|
1415
1418
|
# @return [String]
|
1416
1419
|
#
|
1417
1420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteConfigurationSetRequest AWS API Documentation
|
@@ -1558,7 +1561,7 @@ module Aws::SESV2
|
|
1558
1561
|
# }
|
1559
1562
|
#
|
1560
1563
|
# @!attribute [rw] email_identity
|
1561
|
-
# The email identity
|
1564
|
+
# The email identity.
|
1562
1565
|
# @return [String]
|
1563
1566
|
#
|
1564
1567
|
# @!attribute [rw] policy_name
|
@@ -1597,8 +1600,7 @@ module Aws::SESV2
|
|
1597
1600
|
# }
|
1598
1601
|
#
|
1599
1602
|
# @!attribute [rw] email_identity
|
1600
|
-
# The identity (that is, the email address or domain)
|
1601
|
-
# delete.
|
1603
|
+
# The identity (that is, the email address or domain) to delete.
|
1602
1604
|
# @return [String]
|
1603
1605
|
#
|
1604
1606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeleteEmailIdentityRequest AWS API Documentation
|
@@ -1747,8 +1749,8 @@ module Aws::SESV2
|
|
1747
1749
|
# @return [String]
|
1748
1750
|
#
|
1749
1751
|
# @!attribute [rw] sending_pool_name
|
1750
|
-
# The name of the dedicated IP pool
|
1751
|
-
#
|
1752
|
+
# The name of the dedicated IP pool to associate with the
|
1753
|
+
# configuration set.
|
1752
1754
|
# @return [String]
|
1753
1755
|
#
|
1754
1756
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DeliveryOptions AWS API Documentation
|
@@ -1762,6 +1764,21 @@ module Aws::SESV2
|
|
1762
1764
|
|
1763
1765
|
# An object that describes the recipients for an email.
|
1764
1766
|
#
|
1767
|
+
# <note markdown="1"> Amazon SES does not support the SMTPUTF8 extension, as described in
|
1768
|
+
# [RFC6531][1]. For this reason, the *local part* of a destination email
|
1769
|
+
# address (the part of the email address that precedes the @ sign) may
|
1770
|
+
# only contain [7-bit ASCII characters][2]. If the *domain part* of an
|
1771
|
+
# address (the part after the @ sign) contains non-ASCII characters,
|
1772
|
+
# they must be encoded using Punycode, as described in [RFC3492][3].
|
1773
|
+
#
|
1774
|
+
# </note>
|
1775
|
+
#
|
1776
|
+
#
|
1777
|
+
#
|
1778
|
+
# [1]: https://tools.ietf.org/html/rfc6531
|
1779
|
+
# [2]: https://en.wikipedia.org/wiki/Email_address#Local-part
|
1780
|
+
# [3]: https://tools.ietf.org/html/rfc3492.html
|
1781
|
+
#
|
1765
1782
|
# @note When making an API call, you may pass Destination
|
1766
1783
|
# data as a hash:
|
1767
1784
|
#
|
@@ -1864,7 +1881,7 @@ module Aws::SESV2
|
|
1864
1881
|
#
|
1865
1882
|
# @!attribute [rw] signing_attributes_origin
|
1866
1883
|
# A string that indicates how DKIM was configured for the identity.
|
1867
|
-
#
|
1884
|
+
# These are the possible values:
|
1868
1885
|
#
|
1869
1886
|
# * `AWS_SES` – Indicates that DKIM was configured for the identity by
|
1870
1887
|
# using [Easy DKIM][1].
|
@@ -1877,45 +1894,70 @@ module Aws::SESV2
|
|
1877
1894
|
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
|
1878
1895
|
# @return [String]
|
1879
1896
|
#
|
1897
|
+
# @!attribute [rw] next_signing_key_length
|
1898
|
+
# \[Easy DKIM\] The key length of the future DKIM key pair to be
|
1899
|
+
# generated. This can be changed at most once per day.
|
1900
|
+
# @return [String]
|
1901
|
+
#
|
1902
|
+
# @!attribute [rw] current_signing_key_length
|
1903
|
+
# \[Easy DKIM\] The key length of the DKIM key pair in use.
|
1904
|
+
# @return [String]
|
1905
|
+
#
|
1906
|
+
# @!attribute [rw] last_key_generation_timestamp
|
1907
|
+
# \[Easy DKIM\] The last time a key pair was generated for this
|
1908
|
+
# identity.
|
1909
|
+
# @return [Time]
|
1910
|
+
#
|
1880
1911
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DkimAttributes AWS API Documentation
|
1881
1912
|
#
|
1882
1913
|
class DkimAttributes < Struct.new(
|
1883
1914
|
:signing_enabled,
|
1884
1915
|
:status,
|
1885
1916
|
:tokens,
|
1886
|
-
:signing_attributes_origin
|
1917
|
+
:signing_attributes_origin,
|
1918
|
+
:next_signing_key_length,
|
1919
|
+
:current_signing_key_length,
|
1920
|
+
:last_key_generation_timestamp)
|
1887
1921
|
SENSITIVE = []
|
1888
1922
|
include Aws::Structure
|
1889
1923
|
end
|
1890
1924
|
|
1891
|
-
# An object that contains
|
1892
|
-
#
|
1925
|
+
# An object that contains configuration for Bring Your Own DKIM
|
1926
|
+
# (BYODKIM), or, for Easy DKIM
|
1893
1927
|
#
|
1894
1928
|
# @note When making an API call, you may pass DkimSigningAttributes
|
1895
1929
|
# data as a hash:
|
1896
1930
|
#
|
1897
1931
|
# {
|
1898
|
-
# domain_signing_selector: "Selector",
|
1899
|
-
# domain_signing_private_key: "PrivateKey",
|
1932
|
+
# domain_signing_selector: "Selector",
|
1933
|
+
# domain_signing_private_key: "PrivateKey",
|
1934
|
+
# next_signing_key_length: "RSA_1024_BIT", # accepts RSA_1024_BIT, RSA_2048_BIT
|
1900
1935
|
# }
|
1901
1936
|
#
|
1902
1937
|
# @!attribute [rw] domain_signing_selector
|
1903
|
-
# A string that's used to identify a public
|
1904
|
-
# configuration for a domain.
|
1938
|
+
# \[Bring Your Own DKIM\] A string that's used to identify a public
|
1939
|
+
# key in the DNS configuration for a domain.
|
1905
1940
|
# @return [String]
|
1906
1941
|
#
|
1907
1942
|
# @!attribute [rw] domain_signing_private_key
|
1908
|
-
# A private key that's used to generate a
|
1943
|
+
# \[Bring Your Own DKIM\] A private key that's used to generate a
|
1944
|
+
# DKIM signature.
|
1909
1945
|
#
|
1910
|
-
# The private key must use 1024-bit RSA encryption, and must
|
1911
|
-
# encoded using base64 encoding.
|
1946
|
+
# The private key must use 1024 or 2048-bit RSA encryption, and must
|
1947
|
+
# be encoded using base64 encoding.
|
1948
|
+
# @return [String]
|
1949
|
+
#
|
1950
|
+
# @!attribute [rw] next_signing_key_length
|
1951
|
+
# \[Easy DKIM\] The key length of the future DKIM key pair to be
|
1952
|
+
# generated. This can be changed at most once per day.
|
1912
1953
|
# @return [String]
|
1913
1954
|
#
|
1914
1955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/DkimSigningAttributes AWS API Documentation
|
1915
1956
|
#
|
1916
1957
|
class DkimSigningAttributes < Struct.new(
|
1917
1958
|
:domain_signing_selector,
|
1918
|
-
:domain_signing_private_key
|
1959
|
+
:domain_signing_private_key,
|
1960
|
+
:next_signing_key_length)
|
1919
1961
|
SENSITIVE = [:domain_signing_private_key]
|
1920
1962
|
include Aws::Structure
|
1921
1963
|
end
|
@@ -2041,8 +2083,9 @@ module Aws::SESV2
|
|
2041
2083
|
# }
|
2042
2084
|
#
|
2043
2085
|
# @!attribute [rw] domain
|
2044
|
-
# A verified domain that’s associated with your
|
2045
|
-
# currently has an active Deliverability dashboard
|
2086
|
+
# A verified domain that’s associated with your Amazon Web Services
|
2087
|
+
# account and currently has an active Deliverability dashboard
|
2088
|
+
# subscription.
|
2046
2089
|
# @return [String]
|
2047
2090
|
#
|
2048
2091
|
# @!attribute [rw] subscription_start_date
|
@@ -2441,7 +2484,7 @@ module Aws::SESV2
|
|
2441
2484
|
class GetAccountRequest < Aws::EmptyStructure; end
|
2442
2485
|
|
2443
2486
|
# A list of details about the email-sending capabilities of your Amazon
|
2444
|
-
# SES account in the current
|
2487
|
+
# SES account in the current Amazon Web Services Region.
|
2445
2488
|
#
|
2446
2489
|
# @!attribute [rw] dedicated_ip_auto_warmup_enabled
|
2447
2490
|
# Indicates whether or not the automatic warm-up feature is enabled
|
@@ -2467,7 +2510,7 @@ module Aws::SESV2
|
|
2467
2510
|
#
|
2468
2511
|
# @!attribute [rw] production_access_enabled
|
2469
2512
|
# Indicates whether or not your account has production access in the
|
2470
|
-
# current
|
2513
|
+
# current Amazon Web Services Region.
|
2471
2514
|
#
|
2472
2515
|
# If the value is `false`, then your account is in the *sandbox*. When
|
2473
2516
|
# your account is in the sandbox, you can only send email to verified
|
@@ -2484,18 +2527,19 @@ module Aws::SESV2
|
|
2484
2527
|
#
|
2485
2528
|
# @!attribute [rw] send_quota
|
2486
2529
|
# An object that contains information about the per-day and per-second
|
2487
|
-
# sending limits for your Amazon SES account in the current
|
2488
|
-
# Region.
|
2530
|
+
# sending limits for your Amazon SES account in the current Amazon Web
|
2531
|
+
# Services Region.
|
2489
2532
|
# @return [Types::SendQuota]
|
2490
2533
|
#
|
2491
2534
|
# @!attribute [rw] sending_enabled
|
2492
2535
|
# Indicates whether or not email sending is enabled for your Amazon
|
2493
|
-
# SES account in the current
|
2536
|
+
# SES account in the current Amazon Web Services Region.
|
2494
2537
|
# @return [Boolean]
|
2495
2538
|
#
|
2496
2539
|
# @!attribute [rw] suppression_attributes
|
2497
2540
|
# An object that contains information about the email address
|
2498
|
-
# suppression preferences for your account in the current
|
2541
|
+
# suppression preferences for your account in the current Amazon Web
|
2542
|
+
# Services Region.
|
2499
2543
|
# @return [Types::SuppressionAttributes]
|
2500
2544
|
#
|
2501
2545
|
# @!attribute [rw] details
|
@@ -2603,8 +2647,7 @@ module Aws::SESV2
|
|
2603
2647
|
# }
|
2604
2648
|
#
|
2605
2649
|
# @!attribute [rw] configuration_set_name
|
2606
|
-
# The name of the configuration set
|
2607
|
-
# information about.
|
2650
|
+
# The name of the configuration set.
|
2608
2651
|
# @return [String]
|
2609
2652
|
#
|
2610
2653
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetConfigurationSetRequest AWS API Documentation
|
@@ -2873,7 +2916,7 @@ module Aws::SESV2
|
|
2873
2916
|
# @!attribute [rw] ip
|
2874
2917
|
# The IP address that you want to obtain more information about. The
|
2875
2918
|
# value you specify has to be a dedicated IP address that's
|
2876
|
-
# assocaited with your
|
2919
|
+
# assocaited with your Amazon Web Services account.
|
2877
2920
|
# @return [String]
|
2878
2921
|
#
|
2879
2922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetDedicatedIpRequest AWS API Documentation
|
@@ -2939,11 +2982,11 @@ module Aws::SESV2
|
|
2939
2982
|
end
|
2940
2983
|
|
2941
2984
|
# Information about the dedicated IP addresses that are associated with
|
2942
|
-
# your
|
2985
|
+
# your Amazon Web Services account.
|
2943
2986
|
#
|
2944
2987
|
# @!attribute [rw] dedicated_ips
|
2945
|
-
# A list of dedicated IP addresses that are associated with your
|
2946
|
-
# account.
|
2988
|
+
# A list of dedicated IP addresses that are associated with your
|
2989
|
+
# Amazon Web Services account.
|
2947
2990
|
# @return [Array<Types::DedicatedIp>]
|
2948
2991
|
#
|
2949
2992
|
# @!attribute [rw] next_token
|
@@ -2963,16 +3006,16 @@ module Aws::SESV2
|
|
2963
3006
|
end
|
2964
3007
|
|
2965
3008
|
# Retrieve information about the status of the Deliverability dashboard
|
2966
|
-
# for your
|
2967
|
-
# you gain access to reputation, deliverability,
|
2968
|
-
# your domains. You also gain the ability to
|
2969
|
-
# placement tests.
|
3009
|
+
# for your Amazon Web Services account. When the Deliverability
|
3010
|
+
# dashboard is enabled, you gain access to reputation, deliverability,
|
3011
|
+
# and other metrics for your domains. You also gain the ability to
|
3012
|
+
# perform predictive inbox placement tests.
|
2970
3013
|
#
|
2971
3014
|
# When you use the Deliverability dashboard, you pay a monthly
|
2972
3015
|
# subscription charge, in addition to any other fees that you accrue by
|
2973
|
-
# using Amazon SES and other
|
2974
|
-
# the features and cost of a Deliverability dashboard
|
2975
|
-
# [Amazon Pinpoint Pricing][1].
|
3016
|
+
# using Amazon SES and other Amazon Web Services services. For more
|
3017
|
+
# information about the features and cost of a Deliverability dashboard
|
3018
|
+
# subscription, see [Amazon Pinpoint Pricing][1].
|
2976
3019
|
#
|
2977
3020
|
#
|
2978
3021
|
#
|
@@ -3206,7 +3249,7 @@ module Aws::SESV2
|
|
3206
3249
|
# }
|
3207
3250
|
#
|
3208
3251
|
# @!attribute [rw] email_identity
|
3209
|
-
# The email identity
|
3252
|
+
# The email identity.
|
3210
3253
|
# @return [String]
|
3211
3254
|
#
|
3212
3255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailIdentityPoliciesRequest AWS API Documentation
|
@@ -3241,7 +3284,7 @@ module Aws::SESV2
|
|
3241
3284
|
# }
|
3242
3285
|
#
|
3243
3286
|
# @!attribute [rw] email_identity
|
3244
|
-
# The email identity
|
3287
|
+
# The email identity.
|
3245
3288
|
# @return [String]
|
3246
3289
|
#
|
3247
3290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailIdentityRequest AWS API Documentation
|
@@ -3255,7 +3298,8 @@ module Aws::SESV2
|
|
3255
3298
|
# Details about an email identity.
|
3256
3299
|
#
|
3257
3300
|
# @!attribute [rw] identity_type
|
3258
|
-
# The email identity type.
|
3301
|
+
# The email identity type. Note: the `MANAGED_DOMAIN` identity type is
|
3302
|
+
# not supported.
|
3259
3303
|
# @return [String]
|
3260
3304
|
#
|
3261
3305
|
# @!attribute [rw] feedback_forwarding_status
|
@@ -3334,7 +3378,7 @@ module Aws::SESV2
|
|
3334
3378
|
# }
|
3335
3379
|
#
|
3336
3380
|
# @!attribute [rw] template_name
|
3337
|
-
# The name of the template
|
3381
|
+
# The name of the template.
|
3338
3382
|
# @return [String]
|
3339
3383
|
#
|
3340
3384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/GetEmailTemplateRequest AWS API Documentation
|
@@ -3348,7 +3392,7 @@ module Aws::SESV2
|
|
3348
3392
|
# The following element is returned by the service.
|
3349
3393
|
#
|
3350
3394
|
# @!attribute [rw] template_name
|
3351
|
-
# The name of the template
|
3395
|
+
# The name of the template.
|
3352
3396
|
# @return [String]
|
3353
3397
|
#
|
3354
3398
|
# @!attribute [rw] template_content
|
@@ -3482,15 +3526,8 @@ module Aws::SESV2
|
|
3482
3526
|
# Information about an email identity.
|
3483
3527
|
#
|
3484
3528
|
# @!attribute [rw] identity_type
|
3485
|
-
# The email identity type.
|
3486
|
-
#
|
3487
|
-
#
|
3488
|
-
# * `EMAIL_ADDRESS` – The identity is an email address.
|
3489
|
-
#
|
3490
|
-
# * `DOMAIN` – The identity is a domain.
|
3491
|
-
#
|
3492
|
-
# * `MANAGED_DOMAIN` – The identity is a domain that is managed by
|
3493
|
-
# AWS.
|
3529
|
+
# The email identity type. Note: the `MANAGED_DOMAIN` type is not
|
3530
|
+
# supported for email identity types.
|
3494
3531
|
# @return [String]
|
3495
3532
|
#
|
3496
3533
|
# @!attribute [rw] identity_name
|
@@ -3611,9 +3648,9 @@ module Aws::SESV2
|
|
3611
3648
|
end
|
3612
3649
|
|
3613
3650
|
# An object that contains information about the inbox placement data
|
3614
|
-
# settings for a verified domain that’s associated with your
|
3615
|
-
# account. This data is available only if you enabled the
|
3616
|
-
# dashboard for the domain.
|
3651
|
+
# settings for a verified domain that’s associated with your Amazon Web
|
3652
|
+
# Services account. This data is available only if you enabled the
|
3653
|
+
# Deliverability dashboard for the domain.
|
3617
3654
|
#
|
3618
3655
|
# @note When making an API call, you may pass InboxPlacementTrackingOption
|
3619
3656
|
# data as a hash:
|
@@ -3709,7 +3746,7 @@ module Aws::SESV2
|
|
3709
3746
|
class LimitExceededException < Aws::EmptyStructure; end
|
3710
3747
|
|
3711
3748
|
# A request to obtain a list of configuration sets for your Amazon SES
|
3712
|
-
# account in the current
|
3749
|
+
# account in the current Amazon Web Services Region.
|
3713
3750
|
#
|
3714
3751
|
# @note When making an API call, you may pass ListConfigurationSetsRequest
|
3715
3752
|
# data as a hash:
|
@@ -3741,11 +3778,11 @@ module Aws::SESV2
|
|
3741
3778
|
end
|
3742
3779
|
|
3743
3780
|
# A list of configuration sets in your Amazon SES account in the current
|
3744
|
-
#
|
3781
|
+
# Amazon Web Services Region.
|
3745
3782
|
#
|
3746
3783
|
# @!attribute [rw] configuration_sets
|
3747
3784
|
# An array that contains all of the configuration sets in your Amazon
|
3748
|
-
# SES account in the current
|
3785
|
+
# SES account in the current Amazon Web Services Region.
|
3749
3786
|
# @return [Array<String>]
|
3750
3787
|
#
|
3751
3788
|
# @!attribute [rw] next_token
|
@@ -4012,7 +4049,7 @@ module Aws::SESV2
|
|
4012
4049
|
#
|
4013
4050
|
# @!attribute [rw] dedicated_ip_pools
|
4014
4051
|
# A list of all of the dedicated IP pools that are associated with
|
4015
|
-
# your
|
4052
|
+
# your Amazon Web Services account in the current Region.
|
4016
4053
|
# @return [Array<String>]
|
4017
4054
|
#
|
4018
4055
|
# @!attribute [rw] next_token
|
@@ -4176,10 +4213,10 @@ module Aws::SESV2
|
|
4176
4213
|
include Aws::Structure
|
4177
4214
|
end
|
4178
4215
|
|
4179
|
-
# A request to list all of the email identities associated with your
|
4180
|
-
# account. This list includes identities that
|
4181
|
-
# identities that are unverified, and
|
4182
|
-
# the past, but are no longer verified.
|
4216
|
+
# A request to list all of the email identities associated with your
|
4217
|
+
# Amazon Web Services account. This list includes identities that
|
4218
|
+
# you've already verified, identities that are unverified, and
|
4219
|
+
# identities that were verified in the past, but are no longer verified.
|
4183
4220
|
#
|
4184
4221
|
# @note When making an API call, you may pass ListEmailIdentitiesRequest
|
4185
4222
|
# data as a hash:
|
@@ -4219,7 +4256,7 @@ module Aws::SESV2
|
|
4219
4256
|
#
|
4220
4257
|
# @!attribute [rw] email_identities
|
4221
4258
|
# An array that includes all of the email identities associated with
|
4222
|
-
# your
|
4259
|
+
# your Amazon Web Services account.
|
4223
4260
|
# @return [Array<Types::IdentityInfo>]
|
4224
4261
|
#
|
4225
4262
|
# @!attribute [rw] next_token
|
@@ -4239,8 +4276,8 @@ module Aws::SESV2
|
|
4239
4276
|
end
|
4240
4277
|
|
4241
4278
|
# Represents a request to list the email templates present in your
|
4242
|
-
# Amazon SES account in the current
|
4243
|
-
# see the [Amazon SES Developer Guide][1].
|
4279
|
+
# Amazon SES account in the current Amazon Web Services Region. For more
|
4280
|
+
# information, see the [Amazon SES Developer Guide][1].
|
4244
4281
|
#
|
4245
4282
|
#
|
4246
4283
|
#
|
@@ -4532,12 +4569,12 @@ module Aws::SESV2
|
|
4532
4569
|
# @return [String]
|
4533
4570
|
#
|
4534
4571
|
# @!attribute [rw] behavior_on_mx_failure
|
4535
|
-
# The action
|
4536
|
-
#
|
4537
|
-
#
|
4538
|
-
#
|
4539
|
-
#
|
4540
|
-
#
|
4572
|
+
# The action to take if the required MX record can't be found when
|
4573
|
+
# you send an email. When you set this value to `UseDefaultValue`, the
|
4574
|
+
# mail is sent using *amazonses.com* as the MAIL FROM domain. When you
|
4575
|
+
# set this value to `RejectMessage`, the Amazon SES API v2 returns a
|
4576
|
+
# `MailFromDomainNotVerified` error, and doesn't attempt to deliver
|
4577
|
+
# the email.
|
4541
4578
|
#
|
4542
4579
|
# These behaviors are taken when the custom MAIL FROM domain
|
4543
4580
|
# configuration is in the `Pending`, `Failed`, and `TemporaryFailure`
|
@@ -4707,8 +4744,8 @@ module Aws::SESV2
|
|
4707
4744
|
# }
|
4708
4745
|
#
|
4709
4746
|
# @!attribute [rw] application_arn
|
4710
|
-
# The Amazon Resource Name (ARN) of the Amazon Pinpoint project
|
4711
|
-
#
|
4747
|
+
# The Amazon Resource Name (ARN) of the Amazon Pinpoint project to
|
4748
|
+
# send email events to.
|
4712
4749
|
# @return [String]
|
4713
4750
|
#
|
4714
4751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PinpointDestination AWS API Documentation
|
@@ -4771,8 +4808,8 @@ module Aws::SESV2
|
|
4771
4808
|
# @!attribute [rw] auto_warmup_enabled
|
4772
4809
|
# Enables or disables the automatic warm-up feature for dedicated IP
|
4773
4810
|
# addresses that are associated with your Amazon SES account in the
|
4774
|
-
# current
|
4775
|
-
# feature, or set to `false` to disable it.
|
4811
|
+
# current Amazon Web Services Region. Set to `true` to enable the
|
4812
|
+
# automatic warm-up feature, or set to `false` to disable it.
|
4776
4813
|
# @return [Boolean]
|
4777
4814
|
#
|
4778
4815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutAccountDedicatedIpWarmupAttributesRequest AWS API Documentation
|
@@ -4828,7 +4865,7 @@ module Aws::SESV2
|
|
4828
4865
|
#
|
4829
4866
|
# @!attribute [rw] production_access_enabled
|
4830
4867
|
# Indicates whether or not your account should have production access
|
4831
|
-
# in the current
|
4868
|
+
# in the current Amazon Web Services Region.
|
4832
4869
|
#
|
4833
4870
|
# If the value is `false`, then your account is in the *sandbox*. When
|
4834
4871
|
# your account is in the sandbox, you can only send email to verified
|
@@ -4877,8 +4914,9 @@ module Aws::SESV2
|
|
4877
4914
|
# `true` to enable email sending, or set to `false` to disable email
|
4878
4915
|
# sending.
|
4879
4916
|
#
|
4880
|
-
# <note markdown="1"> If
|
4881
|
-
# this operation to resume your account's ability to
|
4917
|
+
# <note markdown="1"> If Amazon Web Services paused your account's ability to send email,
|
4918
|
+
# you can't use this operation to resume your account's ability to
|
4919
|
+
# send email.
|
4882
4920
|
#
|
4883
4921
|
# </note>
|
4884
4922
|
# @return [Boolean]
|
@@ -4948,8 +4986,8 @@ module Aws::SESV2
|
|
4948
4986
|
# }
|
4949
4987
|
#
|
4950
4988
|
# @!attribute [rw] configuration_set_name
|
4951
|
-
# The name of the configuration set
|
4952
|
-
#
|
4989
|
+
# The name of the configuration set to associate with a dedicated IP
|
4990
|
+
# pool.
|
4953
4991
|
# @return [String]
|
4954
4992
|
#
|
4955
4993
|
# @!attribute [rw] tls_policy
|
@@ -4961,8 +4999,8 @@ module Aws::SESV2
|
|
4961
4999
|
# @return [String]
|
4962
5000
|
#
|
4963
5001
|
# @!attribute [rw] sending_pool_name
|
4964
|
-
# The name of the dedicated IP pool
|
4965
|
-
#
|
5002
|
+
# The name of the dedicated IP pool to associate with the
|
5003
|
+
# configuration set.
|
4966
5004
|
# @return [String]
|
4967
5005
|
#
|
4968
5006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutConfigurationSetDeliveryOptionsRequest AWS API Documentation
|
@@ -4994,8 +5032,7 @@ module Aws::SESV2
|
|
4994
5032
|
# }
|
4995
5033
|
#
|
4996
5034
|
# @!attribute [rw] configuration_set_name
|
4997
|
-
# The name of the configuration set
|
4998
|
-
# reputation metric tracking for.
|
5035
|
+
# The name of the configuration set.
|
4999
5036
|
# @return [String]
|
5000
5037
|
#
|
5001
5038
|
# @!attribute [rw] reputation_metrics_enabled
|
@@ -5032,8 +5069,8 @@ module Aws::SESV2
|
|
5032
5069
|
# }
|
5033
5070
|
#
|
5034
5071
|
# @!attribute [rw] configuration_set_name
|
5035
|
-
# The name of the configuration set
|
5036
|
-
#
|
5072
|
+
# The name of the configuration set to enable or disable email sending
|
5073
|
+
# for.
|
5037
5074
|
# @return [String]
|
5038
5075
|
#
|
5039
5076
|
# @!attribute [rw] sending_enabled
|
@@ -5069,8 +5106,8 @@ module Aws::SESV2
|
|
5069
5106
|
# }
|
5070
5107
|
#
|
5071
5108
|
# @!attribute [rw] configuration_set_name
|
5072
|
-
# The name of the configuration set
|
5073
|
-
#
|
5109
|
+
# The name of the configuration set to change the suppression list
|
5110
|
+
# preferences for.
|
5074
5111
|
# @return [String]
|
5075
5112
|
#
|
5076
5113
|
# @!attribute [rw] suppressed_reasons
|
@@ -5115,12 +5152,11 @@ module Aws::SESV2
|
|
5115
5152
|
# }
|
5116
5153
|
#
|
5117
5154
|
# @!attribute [rw] configuration_set_name
|
5118
|
-
# The name of the configuration set
|
5119
|
-
# tracking domain to.
|
5155
|
+
# The name of the configuration set.
|
5120
5156
|
# @return [String]
|
5121
5157
|
#
|
5122
5158
|
# @!attribute [rw] custom_redirect_domain
|
5123
|
-
# The domain
|
5159
|
+
# The domain to use to track open and click events.
|
5124
5160
|
# @return [String]
|
5125
5161
|
#
|
5126
5162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutConfigurationSetTrackingOptionsRequest AWS API Documentation
|
@@ -5152,7 +5188,7 @@ module Aws::SESV2
|
|
5152
5188
|
# @!attribute [rw] ip
|
5153
5189
|
# The IP address that you want to move to the dedicated IP pool. The
|
5154
5190
|
# value you specify has to be a dedicated IP address that's
|
5155
|
-
# associated with your
|
5191
|
+
# associated with your Amazon Web Services account.
|
5156
5192
|
# @return [String]
|
5157
5193
|
#
|
5158
5194
|
# @!attribute [rw] destination_pool_name
|
@@ -5222,9 +5258,9 @@ module Aws::SESV2
|
|
5222
5258
|
#
|
5223
5259
|
# When you use the Deliverability dashboard, you pay a monthly
|
5224
5260
|
# subscription charge, in addition to any other fees that you accrue by
|
5225
|
-
# using Amazon SES and other
|
5226
|
-
# the features and cost of a Deliverability dashboard
|
5227
|
-
# [Amazon Pinpoint Pricing][1].
|
5261
|
+
# using Amazon SES and other Amazon Web Services services. For more
|
5262
|
+
# information about the features and cost of a Deliverability dashboard
|
5263
|
+
# subscription, see [Amazon Pinpoint Pricing][1].
|
5228
5264
|
#
|
5229
5265
|
#
|
5230
5266
|
#
|
@@ -5284,13 +5320,11 @@ module Aws::SESV2
|
|
5284
5320
|
# }
|
5285
5321
|
#
|
5286
5322
|
# @!attribute [rw] email_identity
|
5287
|
-
# The email address or domain
|
5288
|
-
# configuration set.
|
5323
|
+
# The email address or domain to associate with a configuration set.
|
5289
5324
|
# @return [String]
|
5290
5325
|
#
|
5291
5326
|
# @!attribute [rw] configuration_set_name
|
5292
|
-
# The configuration set
|
5293
|
-
# identity.
|
5327
|
+
# The configuration set to associate with an email identity.
|
5294
5328
|
# @return [String]
|
5295
5329
|
#
|
5296
5330
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutEmailIdentityConfigurationSetAttributesRequest AWS API Documentation
|
@@ -5321,7 +5355,7 @@ module Aws::SESV2
|
|
5321
5355
|
# }
|
5322
5356
|
#
|
5323
5357
|
# @!attribute [rw] email_identity
|
5324
|
-
# The email identity
|
5358
|
+
# The email identity.
|
5325
5359
|
# @return [String]
|
5326
5360
|
#
|
5327
5361
|
# @!attribute [rw] signing_enabled
|
@@ -5357,18 +5391,19 @@ module Aws::SESV2
|
|
5357
5391
|
# email_identity: "Identity", # required
|
5358
5392
|
# signing_attributes_origin: "AWS_SES", # required, accepts AWS_SES, EXTERNAL
|
5359
5393
|
# signing_attributes: {
|
5360
|
-
# domain_signing_selector: "Selector",
|
5361
|
-
# domain_signing_private_key: "PrivateKey",
|
5394
|
+
# domain_signing_selector: "Selector",
|
5395
|
+
# domain_signing_private_key: "PrivateKey",
|
5396
|
+
# next_signing_key_length: "RSA_1024_BIT", # accepts RSA_1024_BIT, RSA_2048_BIT
|
5362
5397
|
# },
|
5363
5398
|
# }
|
5364
5399
|
#
|
5365
5400
|
# @!attribute [rw] email_identity
|
5366
|
-
# The email identity
|
5401
|
+
# The email identity.
|
5367
5402
|
# @return [String]
|
5368
5403
|
#
|
5369
5404
|
# @!attribute [rw] signing_attributes_origin
|
5370
|
-
# The method
|
5371
|
-
#
|
5405
|
+
# The method to use to configure DKIM for the identity. There are the
|
5406
|
+
# following possible values:
|
5372
5407
|
#
|
5373
5408
|
# * `AWS_SES` – Configure DKIM for the identity by using [Easy
|
5374
5409
|
# DKIM][1].
|
@@ -5383,9 +5418,13 @@ module Aws::SESV2
|
|
5383
5418
|
#
|
5384
5419
|
# @!attribute [rw] signing_attributes
|
5385
5420
|
# An object that contains information about the private key and
|
5386
|
-
# selector that you want to use to configure DKIM for the identity
|
5387
|
-
#
|
5388
|
-
#
|
5421
|
+
# selector that you want to use to configure DKIM for the identity for
|
5422
|
+
# Bring Your Own DKIM (BYODKIM) for the identity, or, configures the
|
5423
|
+
# key length to be used for [Easy DKIM][1].
|
5424
|
+
#
|
5425
|
+
#
|
5426
|
+
#
|
5427
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html
|
5389
5428
|
# @return [Types::DkimSigningAttributes]
|
5390
5429
|
#
|
5391
5430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/PutEmailIdentityDkimSigningAttributesRequest AWS API Documentation
|
@@ -5481,8 +5520,7 @@ module Aws::SESV2
|
|
5481
5520
|
# }
|
5482
5521
|
#
|
5483
5522
|
# @!attribute [rw] email_identity
|
5484
|
-
# The email identity
|
5485
|
-
# feedback forwarding for.
|
5523
|
+
# The email identity.
|
5486
5524
|
# @return [String]
|
5487
5525
|
#
|
5488
5526
|
# @!attribute [rw] email_forwarding_enabled
|
@@ -5529,8 +5567,7 @@ module Aws::SESV2
|
|
5529
5567
|
# }
|
5530
5568
|
#
|
5531
5569
|
# @!attribute [rw] email_identity
|
5532
|
-
# The verified email identity
|
5533
|
-
# FROM domain for.
|
5570
|
+
# The verified email identity.
|
5534
5571
|
# @return [String]
|
5535
5572
|
#
|
5536
5573
|
# @!attribute [rw] mail_from_domain
|
@@ -5546,12 +5583,12 @@ module Aws::SESV2
|
|
5546
5583
|
# @return [String]
|
5547
5584
|
#
|
5548
5585
|
# @!attribute [rw] behavior_on_mx_failure
|
5549
|
-
# The action
|
5550
|
-
#
|
5551
|
-
#
|
5552
|
-
#
|
5553
|
-
#
|
5554
|
-
#
|
5586
|
+
# The action to take if the required MX record isn't found when you
|
5587
|
+
# send an email. When you set this value to `UseDefaultValue`, the
|
5588
|
+
# mail is sent using *amazonses.com* as the MAIL FROM domain. When you
|
5589
|
+
# set this value to `RejectMessage`, the Amazon SES API v2 returns a
|
5590
|
+
# `MailFromDomainNotVerified` error, and doesn't attempt to deliver
|
5591
|
+
# the email.
|
5555
5592
|
#
|
5556
5593
|
# These behaviors are taken when the custom MAIL FROM domain
|
5557
5594
|
# configuration is in the `Pending`, `Failed`, and `TemporaryFailure`
|
@@ -5708,7 +5745,8 @@ module Aws::SESV2
|
|
5708
5745
|
end
|
5709
5746
|
|
5710
5747
|
# Enable or disable collection of reputation metrics for emails that you
|
5711
|
-
# send using this configuration set in the current
|
5748
|
+
# send using this configuration set in the current Amazon Web Services
|
5749
|
+
# Region.
|
5712
5750
|
#
|
5713
5751
|
# @note When making an API call, you may pass ReputationOptions
|
5714
5752
|
# data as a hash:
|
@@ -5826,8 +5864,8 @@ module Aws::SESV2
|
|
5826
5864
|
# }
|
5827
5865
|
#
|
5828
5866
|
# @!attribute [rw] from_email_address
|
5829
|
-
# The email address
|
5830
|
-
#
|
5867
|
+
# The email address to use as the "From" address for the email. The
|
5868
|
+
# address that you specify has to be verified.
|
5831
5869
|
# @return [String]
|
5832
5870
|
#
|
5833
5871
|
# @!attribute [rw] from_email_address_identity_arn
|
@@ -5899,8 +5937,7 @@ module Aws::SESV2
|
|
5899
5937
|
# @return [Array<Types::BulkEmailEntry>]
|
5900
5938
|
#
|
5901
5939
|
# @!attribute [rw] configuration_set_name
|
5902
|
-
# The name of the configuration set
|
5903
|
-
# the email.
|
5940
|
+
# The name of the configuration set to use when sending the email.
|
5904
5941
|
# @return [String]
|
5905
5942
|
#
|
5906
5943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/SendBulkEmailRequest AWS API Documentation
|
@@ -5922,7 +5959,8 @@ module Aws::SESV2
|
|
5922
5959
|
# The following data is returned in JSON format by the service.
|
5923
5960
|
#
|
5924
5961
|
# @!attribute [rw] bulk_email_entry_results
|
5925
|
-
#
|
5962
|
+
# One object per intended recipient. Check each response object and
|
5963
|
+
# retry any messages with a failure status.
|
5926
5964
|
# @return [Array<Types::BulkEmailEntryResult>]
|
5927
5965
|
#
|
5928
5966
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/SendBulkEmailResponse AWS API Documentation
|
@@ -6045,8 +6083,8 @@ module Aws::SESV2
|
|
6045
6083
|
# }
|
6046
6084
|
#
|
6047
6085
|
# @!attribute [rw] from_email_address
|
6048
|
-
# The email address
|
6049
|
-
#
|
6086
|
+
# The email address to use as the "From" address for the email. The
|
6087
|
+
# address that you specify has to be verified.
|
6050
6088
|
# @return [String]
|
6051
6089
|
#
|
6052
6090
|
# @!attribute [rw] from_email_address_identity_arn
|
@@ -6122,8 +6160,7 @@ module Aws::SESV2
|
|
6122
6160
|
# @return [Array<Types::MessageTag>]
|
6123
6161
|
#
|
6124
6162
|
# @!attribute [rw] configuration_set_name
|
6125
|
-
# The name of the configuration set
|
6126
|
-
# the email.
|
6163
|
+
# The name of the configuration set to use when sending the email.
|
6127
6164
|
# @return [String]
|
6128
6165
|
#
|
6129
6166
|
# @!attribute [rw] list_management_options
|
@@ -6172,23 +6209,25 @@ module Aws::SESV2
|
|
6172
6209
|
end
|
6173
6210
|
|
6174
6211
|
# An object that contains information about the per-day and per-second
|
6175
|
-
# sending limits for your Amazon SES account in the current
|
6212
|
+
# sending limits for your Amazon SES account in the current Amazon Web
|
6213
|
+
# Services Region.
|
6176
6214
|
#
|
6177
6215
|
# @!attribute [rw] max_24_hour_send
|
6178
|
-
# The maximum number of emails that you can send in the current
|
6179
|
-
# Region over a 24-hour period. This value is also called
|
6180
|
-
# *sending quota*.
|
6216
|
+
# The maximum number of emails that you can send in the current Amazon
|
6217
|
+
# Web Services Region over a 24-hour period. This value is also called
|
6218
|
+
# your *sending quota*.
|
6181
6219
|
# @return [Float]
|
6182
6220
|
#
|
6183
6221
|
# @!attribute [rw] max_send_rate
|
6184
6222
|
# The maximum number of emails that you can send per second in the
|
6185
|
-
# current
|
6186
|
-
# rate* or your *maximum TPS (transactions per
|
6223
|
+
# current Amazon Web Services Region. This value is also called your
|
6224
|
+
# *maximum sending rate* or your *maximum TPS (transactions per
|
6225
|
+
# second) rate*.
|
6187
6226
|
# @return [Float]
|
6188
6227
|
#
|
6189
6228
|
# @!attribute [rw] sent_last_24_hours
|
6190
6229
|
# The number of emails sent from your Amazon SES account in the
|
6191
|
-
# current
|
6230
|
+
# current Amazon Web Services Region over the past 24 hours.
|
6192
6231
|
# @return [Float]
|
6193
6232
|
#
|
6194
6233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/SendQuota AWS API Documentation
|
@@ -6202,7 +6241,7 @@ module Aws::SESV2
|
|
6202
6241
|
end
|
6203
6242
|
|
6204
6243
|
# Used to enable or disable email sending for messages that use this
|
6205
|
-
# configuration set in the current
|
6244
|
+
# configuration set in the current Amazon Web Services Region.
|
6206
6245
|
#
|
6207
6246
|
# @note When making an API call, you may pass SendingOptions
|
6208
6247
|
# data as a hash:
|
@@ -6243,9 +6282,9 @@ module Aws::SESV2
|
|
6243
6282
|
# }
|
6244
6283
|
#
|
6245
6284
|
# @!attribute [rw] topic_arn
|
6246
|
-
# The Amazon Resource Name (ARN) of the Amazon SNS topic
|
6247
|
-
#
|
6248
|
-
#
|
6285
|
+
# The Amazon Resource Name (ARN) of the Amazon SNS topic to publish
|
6286
|
+
# email events to. For more information about Amazon SNS topics, see
|
6287
|
+
# the [Amazon SNS Developer Guide][1].
|
6249
6288
|
#
|
6250
6289
|
#
|
6251
6290
|
#
|
@@ -6343,7 +6382,8 @@ module Aws::SESV2
|
|
6343
6382
|
end
|
6344
6383
|
|
6345
6384
|
# An object that contains information about the email address
|
6346
|
-
# suppression preferences for your account in the current
|
6385
|
+
# suppression preferences for your account in the current Amazon Web
|
6386
|
+
# Services Region.
|
6347
6387
|
#
|
6348
6388
|
# @!attribute [rw] suppressed_reasons
|
6349
6389
|
# A list that contains the reasons that email addresses will be
|
@@ -6377,8 +6417,8 @@ module Aws::SESV2
|
|
6377
6417
|
# }
|
6378
6418
|
#
|
6379
6419
|
# @!attribute [rw] suppression_list_import_action
|
6380
|
-
# The type of action
|
6381
|
-
#
|
6420
|
+
# The type of action to perform on the address. The following are
|
6421
|
+
# possible values:
|
6382
6422
|
#
|
6383
6423
|
# * PUT: add the addresses to the suppression list. If the record
|
6384
6424
|
# already exists, it will override it with the new value.
|
@@ -6446,16 +6486,17 @@ module Aws::SESV2
|
|
6446
6486
|
# * For each associated resource, each tag key must be unique and it can
|
6447
6487
|
# have only one value.
|
6448
6488
|
#
|
6449
|
-
# * The `aws:` prefix is reserved for use by
|
6450
|
-
# any tag keys or values that you define. In addition,
|
6451
|
-
# or remove tag keys or values that use this prefix.
|
6452
|
-
# this prefix don’t count against the limit of 50 tags
|
6489
|
+
# * The `aws:` prefix is reserved for use by Amazon Web Services; you
|
6490
|
+
# can’t use it in any tag keys or values that you define. In addition,
|
6491
|
+
# you can't edit or remove tag keys or values that use this prefix.
|
6492
|
+
# Tags that use this prefix don’t count against the limit of 50 tags
|
6493
|
+
# per resource.
|
6453
6494
|
#
|
6454
6495
|
# * You can associate tags with public or shared resources, but the tags
|
6455
|
-
# are available only for your
|
6456
|
-
# share the resource. In addition, the tags are
|
6457
|
-
# resources that are located in the specified
|
6458
|
-
# account.
|
6496
|
+
# are available only for your Amazon Web Services account, not any
|
6497
|
+
# other accounts that share the resource. In addition, the tags are
|
6498
|
+
# available only for resources that are located in the specified
|
6499
|
+
# Amazon Web Services Region for your Amazon Web Services account.
|
6459
6500
|
#
|
6460
6501
|
# @note When making an API call, you may pass Tag
|
6461
6502
|
# data as a hash:
|
@@ -6579,7 +6620,7 @@ module Aws::SESV2
|
|
6579
6620
|
# }
|
6580
6621
|
#
|
6581
6622
|
# @!attribute [rw] template_name
|
6582
|
-
# The name of the template
|
6623
|
+
# The name of the template.
|
6583
6624
|
# @return [String]
|
6584
6625
|
#
|
6585
6626
|
# @!attribute [rw] template_data
|
@@ -6726,9 +6767,9 @@ module Aws::SESV2
|
|
6726
6767
|
# If your email contains links, those links are changed slightly in
|
6727
6768
|
# order to track when recipients click them.
|
6728
6769
|
#
|
6729
|
-
# These images and links include references to a domain operated by
|
6730
|
-
# You can optionally configure the Amazon SES to
|
6731
|
-
# operate for these images and links.
|
6770
|
+
# These images and links include references to a domain operated by
|
6771
|
+
# Amazon Web Services. You can optionally configure the Amazon SES to
|
6772
|
+
# use a domain that you operate for these images and links.
|
6732
6773
|
#
|
6733
6774
|
# @note When making an API call, you may pass TrackingOptions
|
6734
6775
|
# data as a hash:
|
@@ -6738,7 +6779,7 @@ module Aws::SESV2
|
|
6738
6779
|
# }
|
6739
6780
|
#
|
6740
6781
|
# @!attribute [rw] custom_redirect_domain
|
6741
|
-
# The domain
|
6782
|
+
# The domain to use for tracking open and click events.
|
6742
6783
|
# @return [String]
|
6743
6784
|
#
|
6744
6785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/TrackingOptions AWS API Documentation
|
@@ -6822,11 +6863,11 @@ module Aws::SESV2
|
|
6822
6863
|
#
|
6823
6864
|
# @!attribute [rw] configuration_set_name
|
6824
6865
|
# The name of the configuration set that contains the event
|
6825
|
-
# destination
|
6866
|
+
# destination to modify.
|
6826
6867
|
# @return [String]
|
6827
6868
|
#
|
6828
6869
|
# @!attribute [rw] event_destination_name
|
6829
|
-
# The name of the event destination
|
6870
|
+
# The name of the event destination.
|
6830
6871
|
# @return [String]
|
6831
6872
|
#
|
6832
6873
|
# @!attribute [rw] event_destination
|
@@ -7036,7 +7077,7 @@ module Aws::SESV2
|
|
7036
7077
|
# }
|
7037
7078
|
#
|
7038
7079
|
# @!attribute [rw] email_identity
|
7039
|
-
# The email identity
|
7080
|
+
# The email identity.
|
7040
7081
|
# @return [String]
|
7041
7082
|
#
|
7042
7083
|
# @!attribute [rw] policy_name
|
@@ -7095,7 +7136,7 @@ module Aws::SESV2
|
|
7095
7136
|
# }
|
7096
7137
|
#
|
7097
7138
|
# @!attribute [rw] template_name
|
7098
|
-
# The name of the template
|
7139
|
+
# The name of the template.
|
7099
7140
|
# @return [String]
|
7100
7141
|
#
|
7101
7142
|
# @!attribute [rw] template_content
|