aws-sdk-ses 1.25.0 → 1.26.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ses.rb +1 -1
- data/lib/aws-sdk-ses/client.rb +23 -22
- data/lib/aws-sdk-ses/types.rb +10 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07a530ef1cc6f02fa32b7a747a83acd0319dc539
|
4
|
+
data.tar.gz: a0bc49a04cf60d0a36c9d30f409ae10ccbb63686
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d9b39298d6fd70e760dfe6af7b8b694a021fd10cc2114af9ffab08ea708da82f34638ca83ee26c9feefb6b043fab7e2890cab26af2d84a18fd02af840119b38
|
7
|
+
data.tar.gz: 2d66faaaf4f6b44ab256c3ef2af736d8384ee4522a07c5469fcf6ba83b0e22296ff98d2f8cf4414e09be853e44d059cd5365143b59808b5a165e8383efba1a5e
|
data/lib/aws-sdk-ses.rb
CHANGED
data/lib/aws-sdk-ses/client.rb
CHANGED
@@ -3409,17 +3409,16 @@ module Aws::SES
|
|
3409
3409
|
#
|
3410
3410
|
# * `X-SES-RETURN-PATH-ARN`
|
3411
3411
|
#
|
3412
|
-
#
|
3413
|
-
#
|
3414
|
-
#
|
3415
|
-
#
|
3416
|
-
#
|
3417
|
-
#
|
3418
|
-
#
|
3419
|
-
#
|
3420
|
-
#
|
3421
|
-
#
|
3422
|
-
# SES][5] in the *Amazon SES Developer Guide.*
|
3412
|
+
# Don't include these X-headers in the DKIM signature. Amazon SES
|
3413
|
+
# removes these before it sends the email.
|
3414
|
+
#
|
3415
|
+
# If you only specify the `SourceIdentityArn` parameter, Amazon SES
|
3416
|
+
# sets the From and Return-Path addresses to the same identity that
|
3417
|
+
# you specified.
|
3418
|
+
#
|
3419
|
+
# For more information about sending authorization, see the [Using
|
3420
|
+
# Sending Authorization with Amazon SES][5] in the *Amazon SES
|
3421
|
+
# Developer Guide.*
|
3423
3422
|
#
|
3424
3423
|
# * For every message that you send, the total number of recipients
|
3425
3424
|
# (including each recipient in the To:, CC: and BCC: fields) is
|
@@ -3899,19 +3898,21 @@ module Aws::SES
|
|
3899
3898
|
req.send_request(options)
|
3900
3899
|
end
|
3901
3900
|
|
3902
|
-
# Enables or disables Easy DKIM signing of email sent from an identity
|
3901
|
+
# Enables or disables Easy DKIM signing of email sent from an identity.
|
3902
|
+
# If Easy DKIM signing is enabled for a domain, then Amazon SES uses
|
3903
|
+
# DKIM to sign all email that it sends from addresses on that domain. If
|
3904
|
+
# Easy DKIM signing is enabled for an email address, then Amazon SES
|
3905
|
+
# uses DKIM to sign all email it sends from that address.
|
3903
3906
|
#
|
3904
|
-
#
|
3905
|
-
#
|
3906
|
-
#
|
3907
|
+
# <note markdown="1"> For email addresses (for example, `user@example.com`), you can only
|
3908
|
+
# enable DKIM signing if the corresponding domain (in this case,
|
3909
|
+
# `example.com`) has been set up to use Easy DKIM.
|
3907
3910
|
#
|
3908
|
-
#
|
3909
|
-
# SES will DKIM-sign all email sent by that email address.
|
3911
|
+
# </note>
|
3910
3912
|
#
|
3911
|
-
#
|
3912
|
-
#
|
3913
|
-
#
|
3914
|
-
# the `VerifyDomainDkim` operation.
|
3913
|
+
# You can enable DKIM signing for an identity at any time after you
|
3914
|
+
# start the verification process for the identity, even if the
|
3915
|
+
# verification process isn't complete.
|
3915
3916
|
#
|
3916
3917
|
# You can execute this operation no more than once per second.
|
3917
3918
|
#
|
@@ -4972,7 +4973,7 @@ module Aws::SES
|
|
4972
4973
|
params: params,
|
4973
4974
|
config: config)
|
4974
4975
|
context[:gem_name] = 'aws-sdk-ses'
|
4975
|
-
context[:gem_version] = '1.
|
4976
|
+
context[:gem_version] = '1.26.0'
|
4976
4977
|
Seahorse::Client::Request.new(handlers, context)
|
4977
4978
|
end
|
4978
4979
|
|
data/lib/aws-sdk-ses/types.rb
CHANGED
@@ -1724,15 +1724,15 @@ module Aws::SES
|
|
1724
1724
|
# }
|
1725
1725
|
#
|
1726
1726
|
# @!attribute [rw] to_addresses
|
1727
|
-
# The To:
|
1727
|
+
# The recipients to place on the To: line of the message.
|
1728
1728
|
# @return [Array<String>]
|
1729
1729
|
#
|
1730
1730
|
# @!attribute [rw] cc_addresses
|
1731
|
-
# The CC:
|
1731
|
+
# The recipients to place on the CC: line of the message.
|
1732
1732
|
# @return [Array<String>]
|
1733
1733
|
#
|
1734
1734
|
# @!attribute [rw] bcc_addresses
|
1735
|
-
# The BCC:
|
1735
|
+
# The recipients to place on the BCC: line of the message.
|
1736
1736
|
# @return [Array<String>]
|
1737
1737
|
#
|
1738
1738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/Destination AWS API Documentation
|
@@ -2795,9 +2795,12 @@ module Aws::SES
|
|
2795
2795
|
# templates for your account.
|
2796
2796
|
#
|
2797
2797
|
# For more information about custom verification email templates, see
|
2798
|
-
# [Using Custom Verification Email
|
2799
|
-
#
|
2800
|
-
#
|
2798
|
+
# [Using Custom Verification Email Templates][1] in the *Amazon SES
|
2799
|
+
# Developer Guide*.
|
2800
|
+
#
|
2801
|
+
#
|
2802
|
+
#
|
2803
|
+
# [1]: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/custom-verification-emails.html
|
2801
2804
|
#
|
2802
2805
|
# @note When making an API call, you may pass ListCustomVerificationEmailTemplatesRequest
|
2803
2806
|
# data as a hash:
|
@@ -5515,7 +5518,7 @@ module Aws::SES
|
|
5515
5518
|
# }
|
5516
5519
|
#
|
5517
5520
|
# @!attribute [rw] scope
|
5518
|
-
# The
|
5521
|
+
# The scope of the StopAction. The only acceptable value is `RuleSet`.
|
5519
5522
|
# @return [String]
|
5520
5523
|
#
|
5521
5524
|
# @!attribute [rw] topic_arn
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.26.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|