amazonka-ses 0.0.4 → 0.0.5
raw patch · 22 files changed
+57/−15 lines, 22 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- README.md +2/−0
- amazonka-ses.cabal +2/−2
- gen/Network/AWS/SES.hs +2/−0
- gen/Network/AWS/SES/DeleteIdentity.hs +2/−0
- gen/Network/AWS/SES/DeleteVerifiedEmailAddress.hs +2/−0
- gen/Network/AWS/SES/GetIdentityDkimAttributes.hs +3/−1
- gen/Network/AWS/SES/GetIdentityNotificationAttributes.hs +3/−1
- gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs +3/−1
- gen/Network/AWS/SES/GetSendQuota.hs +2/−0
- gen/Network/AWS/SES/GetSendStatistics.hs +3/−1
- gen/Network/AWS/SES/ListIdentities.hs +3/−1
- gen/Network/AWS/SES/ListVerifiedEmailAddresses.hs +3/−1
- gen/Network/AWS/SES/SendEmail.hs +3/−1
- gen/Network/AWS/SES/SendRawEmail.hs +3/−1
- gen/Network/AWS/SES/SetIdentityDkimEnabled.hs +2/−0
- gen/Network/AWS/SES/SetIdentityFeedbackForwardingEnabled.hs +2/−0
- gen/Network/AWS/SES/SetIdentityNotificationTopic.hs +2/−0
- gen/Network/AWS/SES/Types.hs +6/−4
- gen/Network/AWS/SES/VerifyDomainDkim.hs +3/−1
- gen/Network/AWS/SES/VerifyDomainIdentity.hs +2/−0
- gen/Network/AWS/SES/VerifyEmailAddress.hs +2/−0
- gen/Network/AWS/SES/VerifyEmailIdentity.hs +2/−0
README.md view
@@ -31,3 +31,5 @@ ## Licence `amazonka-ses` is released under the [Mozilla Public License Version 2.0](http://www.mozilla.org/MPL/).++Parts of the code are derived from AWS service descriptions, licensed under Apache 2.0.
amazonka-ses.cabal view
@@ -1,5 +1,5 @@ name: amazonka-ses-version: 0.0.4+version: 0.0.5 synopsis: Amazon Simple Email Service SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -63,5 +63,5 @@ other-modules: build-depends:- amazonka-core == 0.0.4.*+ amazonka-core == 0.0.5.* , base >= 4.7 && < 5
gen/Network/AWS/SES.hs view
@@ -7,6 +7,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Amazon Simple Email Service (Amazon SES) is a cost-effective outbound-only -- email-sending service built on the reliable and scalable infrastructure that
gen/Network/AWS/SES/DeleteIdentity.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes the specified identity (email address or domain) from the list of -- verified identities.
gen/Network/AWS/SES/DeleteVerifiedEmailAddress.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes the specified email address from the list of verified addresses. --
gen/Network/AWS/SES/GetIdentityDkimAttributes.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns the current status of Easy DKIM signing for an entity. For domain -- name identities, this action also returns the DKIM tokens that are required@@ -61,7 +63,7 @@ import qualified GHC.Exts newtype GetIdentityDkimAttributes = GetIdentityDkimAttributes- { _gidaIdentities :: List "Identities" Text+ { _gidaIdentities :: List "member" Text } deriving (Eq, Ord, Show, Monoid, Semigroup) instance GHC.Exts.IsList GetIdentityDkimAttributes where
gen/Network/AWS/SES/GetIdentityNotificationAttributes.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Given a list of verified identities (email addresses and/or domains), returns -- a structure describing identity notification attributes.@@ -51,7 +53,7 @@ import qualified GHC.Exts newtype GetIdentityNotificationAttributes = GetIdentityNotificationAttributes- { _ginaIdentities :: List "Identities" Text+ { _ginaIdentities :: List "member" Text } deriving (Eq, Ord, Show, Monoid, Semigroup) instance GHC.Exts.IsList GetIdentityNotificationAttributes where
gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Given a list of identities (email addresses and/or domains), returns the -- verification status and (for domain identities) the verification token for@@ -50,7 +52,7 @@ import qualified GHC.Exts newtype GetIdentityVerificationAttributes = GetIdentityVerificationAttributes- { _givaIdentities :: List "Identities" Text+ { _givaIdentities :: List "member" Text } deriving (Eq, Ord, Show, Monoid, Semigroup) instance GHC.Exts.IsList GetIdentityVerificationAttributes where
gen/Network/AWS/SES/GetSendQuota.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns the user's current sending limits. --
gen/Network/AWS/SES/GetSendStatistics.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns the user's sending statistics. The result is a list of data points, -- representing the last two weeks of sending activity.@@ -56,7 +58,7 @@ getSendStatistics = GetSendStatistics newtype GetSendStatisticsResponse = GetSendStatisticsResponse- { _gssrSendDataPoints :: List "SendDataPoints" SendDataPoint+ { _gssrSendDataPoints :: List "member" SendDataPoint } deriving (Eq, Show, Monoid, Semigroup) instance GHC.Exts.IsList GetSendStatisticsResponse where
gen/Network/AWS/SES/ListIdentities.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns a list containing all of the identities (email addresses and domains) -- for a specific AWS Account, regardless of verification status.@@ -89,7 +91,7 @@ liNextToken = lens _liNextToken (\s a -> s { _liNextToken = a }) data ListIdentitiesResponse = ListIdentitiesResponse- { _lirIdentities :: List "Identities" Text+ { _lirIdentities :: List "member" Text , _lirNextToken :: Maybe Text } deriving (Eq, Ord, Show)
gen/Network/AWS/SES/ListVerifiedEmailAddresses.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns a list containing all of the email addresses that have been verified. --@@ -54,7 +56,7 @@ listVerifiedEmailAddresses = ListVerifiedEmailAddresses newtype ListVerifiedEmailAddressesResponse = ListVerifiedEmailAddressesResponse- { _lvearVerifiedEmailAddresses :: List "ToAddresses" Text+ { _lvearVerifiedEmailAddresses :: List "member" Text } deriving (Eq, Ord, Show, Monoid, Semigroup) instance GHC.Exts.IsList ListVerifiedEmailAddressesResponse where
gen/Network/AWS/SES/SendEmail.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Composes an email message based on input data, and then immediately queues -- the message for sending.@@ -69,7 +71,7 @@ data SendEmail = SendEmail { _seDestination :: Destination , _seMessage :: Message- , _seReplyToAddresses :: List "ToAddresses" Text+ , _seReplyToAddresses :: List "member" Text , _seReturnPath :: Maybe Text , _seSource :: Text } deriving (Eq, Show)
gen/Network/AWS/SES/SendRawEmail.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Sends an email message, with header and content specified by the client. The 'SendRawEmail' action is useful for sending multipart MIME emails. The raw text of the -- message must comply with Internet email standards; otherwise, the message@@ -71,7 +73,7 @@ import qualified GHC.Exts data SendRawEmail = SendRawEmail- { _sreDestinations :: List "ToAddresses" Text+ { _sreDestinations :: List "member" Text , _sreRawMessage :: RawMessage , _sreSource :: Maybe Text } deriving (Eq, Show)
gen/Network/AWS/SES/SetIdentityDkimEnabled.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Enables or disables Easy DKIM signing of email sent from an identity: --
gen/Network/AWS/SES/SetIdentityFeedbackForwardingEnabled.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Given an identity (email address or domain), enables or disables whether -- Amazon SES forwards bounce and complaint notifications as email. Feedback
gen/Network/AWS/SES/SetIdentityNotificationTopic.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Given an identity (email address or domain), sets the Amazon Simple -- Notification Service (Amazon SNS) topic to which Amazon SES will publish
gen/Network/AWS/SES/Types.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. module Network.AWS.SES.Types (@@ -125,9 +127,9 @@ ns = "http://ses.amazonaws.com/doc/2010-12-01/" data Destination = Destination- { _dBccAddresses :: List "ToAddresses" Text- , _dCcAddresses :: List "ToAddresses" Text- , _dToAddresses :: List "ToAddresses" Text+ { _dBccAddresses :: List "member" Text+ , _dCcAddresses :: List "member" Text+ , _dToAddresses :: List "member" Text } deriving (Eq, Ord, Show) -- | 'Destination' constructor.@@ -174,7 +176,7 @@ data IdentityDkimAttributes = IdentityDkimAttributes { _idaDkimEnabled :: Bool- , _idaDkimTokens :: List "DkimTokens" Text+ , _idaDkimTokens :: List "member" Text , _idaDkimVerificationStatus :: VerificationStatus } deriving (Eq, Show)
gen/Network/AWS/SES/VerifyDomainDkim.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Returns a set of DKIM tokens for a domain. DKIM /tokens/ are character strings -- that represent your domain's identity. Using these tokens, you will need to@@ -78,7 +80,7 @@ vddDomain = lens _vddDomain (\s a -> s { _vddDomain = a }) newtype VerifyDomainDkimResponse = VerifyDomainDkimResponse- { _vddrDkimTokens :: List "DkimTokens" Text+ { _vddrDkimTokens :: List "member" Text } deriving (Eq, Ord, Show, Monoid, Semigroup) instance GHC.Exts.IsList VerifyDomainDkimResponse where
gen/Network/AWS/SES/VerifyDomainIdentity.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Verifies a domain. --
gen/Network/AWS/SES/VerifyEmailAddress.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Verifies an email address. This action causes a confirmation email message to -- be sent to the specified address.
gen/Network/AWS/SES/VerifyEmailIdentity.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Verifies an email address. This action causes a confirmation email message to -- be sent to the specified address.