packages feed

amazonka-ses 1.4.2 → 1.4.3

raw patch · 47 files changed

+552/−1202 lines, 47 filesdep ~amazonka-coredep ~amazonka-sesdep ~amazonka-testPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: amazonka-core, amazonka-ses, amazonka-test

API changes (from Hackage documentation)

Files

README.md view
@@ -8,20 +8,16 @@  ## Version -`1.4.2`+`1.4.3`   ## Description  Amazon Simple Email Service -This is the API Reference for Amazon Simple Email Service (Amazon SES).-This documentation is intended to be used in conjunction with the-<http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html Amazon SES Developer Guide>.+This is the API Reference for Amazon Simple Email Service (Amazon SES). This documentation is intended to be used in conjunction with the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html Amazon SES Developer Guide>. -For a list of Amazon SES endpoints to use in service requests, see-<http://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html Regions and Amazon SES>-in the Amazon SES Developer Guide.+For a list of Amazon SES endpoints to use in service requests, see <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html Regions and Amazon SES> in the Amazon SES Developer Guide.  Documentation is available via [Hackage](http://hackage.haskell.org/package/amazonka-ses) and the [AWS API Reference](https://aws.amazon.com/documentation/).
amazonka-ses.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-ses-version:               1.4.2+version:               1.4.3 synopsis:              Amazon Simple Email Service SDK. homepage:              https://github.com/brendanhay/amazonka bug-reports:           https://github.com/brendanhay/amazonka/issues@@ -15,13 +15,9 @@ description:     Amazon Simple Email Service -    This is the API Reference for Amazon Simple Email Service (Amazon SES).-    This documentation is intended to be used in conjunction with the-    <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html Amazon SES Developer Guide>.+    This is the API Reference for Amazon Simple Email Service (Amazon SES). This documentation is intended to be used in conjunction with the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html Amazon SES Developer Guide>. -    For a list of Amazon SES endpoints to use in service requests, see-    <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html Regions and Amazon SES>-    in the Amazon SES Developer Guide.+    For a list of Amazon SES endpoints to use in service requests, see <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html Regions and Amazon SES> in the Amazon SES Developer Guide.     .     The types from this library are intended to be used with     <http://hackage.haskell.org/package/amazonka amazonka>, which provides@@ -98,7 +94,7 @@         , Network.AWS.SES.Types.Sum      build-depends:-          amazonka-core == 1.4.2.*+          amazonka-core == 1.4.3.*         , base          >= 4.7     && < 5  test-suite amazonka-ses-test@@ -118,9 +114,9 @@         , Test.AWS.SES.Internal      build-depends:-          amazonka-core == 1.4.2.*-        , amazonka-test == 1.4.2.*-        , amazonka-ses == 1.4.2.*+          amazonka-core == 1.4.3.*+        , amazonka-test == 1.4.3.*+        , amazonka-ses == 1.4.3.*         , base         , bytestring         , tasty
gen/Network/AWS/SES.hs view
@@ -13,13 +13,9 @@ -- -- Amazon Simple Email Service ----- This is the API Reference for Amazon Simple Email Service (Amazon SES).--- This documentation is intended to be used in conjunction with the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html Amazon SES Developer Guide>.+-- This is the API Reference for Amazon Simple Email Service (Amazon SES). This documentation is intended to be used in conjunction with the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html Amazon SES Developer Guide>. ----- For a list of Amazon SES endpoints to use in service requests, see--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html Regions and Amazon SES>--- in the Amazon SES Developer Guide.+-- For a list of Amazon SES endpoints to use in service requests, see <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html Regions and Amazon SES> in the Amazon SES Developer Guide. module Network.AWS.SES     (     -- * Service Configuration
gen/Network/AWS/SES/CloneReceiptRuleSet.hs view
@@ -18,12 +18,9 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Creates a receipt rule set by cloning an existing one. All receipt rules--- and configurations are copied to the new receipt rule set and are--- completely independent of the source rule set.+-- Creates a receipt rule set by cloning an existing one. All receipt rules and configurations are copied to the new receipt rule set and are completely independent of the source rule set. ----- For information about setting up rule sets, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html Amazon SES Developer Guide>.+-- For information about setting up rule sets, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.CloneReceiptRuleSet@@ -74,8 +71,7 @@  -- | The name of the rule set to create. The name must: ----- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.),---     underscores (_), or dashes (-).+-- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-). -- -   Start and end with a letter or number. -- -   Contain less than 64 characters. cRuleSetName :: Lens' CloneReceiptRuleSet Text
gen/Network/AWS/SES/CreateReceiptFilter.hs view
@@ -20,8 +20,7 @@ -- -- Creates a new IP address filter. ----- For information about setting up IP address filters, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html Amazon SES Developer Guide>.+-- For information about setting up IP address filters, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.CreateReceiptFilter@@ -64,9 +63,7 @@     { _crfFilter = pFilter_     } --- | A data structure that describes the IP address filter to create, which--- consists of a name, an IP address range, and whether to allow or block--- mail from it.+-- | A data structure that describes the IP address filter to create, which consists of a name, an IP address range, and whether to allow or block mail from it. crfFilter :: Lens' CreateReceiptFilter ReceiptFilter crfFilter = lens _crfFilter (\ s a -> s{_crfFilter = a}); 
gen/Network/AWS/SES/CreateReceiptRule.hs view
@@ -20,8 +20,7 @@ -- -- Creates a receipt rule. ----- For information about setting up receipt rules, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html Amazon SES Developer Guide>.+-- For information about setting up receipt rules, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.CreateReceiptRule@@ -75,9 +74,7 @@     , _crrRule = pRule_     } --- | The name of an existing rule after which the new rule will be placed. If--- this parameter is null, the new rule will be inserted at the beginning--- of the rule list.+-- | The name of an existing rule after which the new rule will be placed. If this parameter is null, the new rule will be inserted at the beginning of the rule list. crrAfter :: Lens' CreateReceiptRule (Maybe Text) crrAfter = lens _crrAfter (\ s a -> s{_crrAfter = a}); @@ -85,8 +82,7 @@ crrRuleSetName :: Lens' CreateReceiptRule Text crrRuleSetName = lens _crrRuleSetName (\ s a -> s{_crrRuleSetName = a}); --- | A data structure that contains the specified rule\'s name, actions,--- recipients, domains, enabled status, scan status, and TLS policy.+-- | A data structure that contains the specified rule\'s name, actions, recipients, domains, enabled status, scan status, and TLS policy. crrRule :: Lens' CreateReceiptRule ReceiptRule crrRule = lens _crrRule (\ s a -> s{_crrRule = a}); 
gen/Network/AWS/SES/CreateReceiptRuleSet.hs view
@@ -20,8 +20,7 @@ -- -- Creates an empty receipt rule set. ----- For information about setting up receipt rule sets, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html Amazon SES Developer Guide>.+-- For information about setting up receipt rule sets, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.CreateReceiptRuleSet@@ -66,8 +65,7 @@  -- | The name of the rule set to create. The name must: ----- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.),---     underscores (_), or dashes (-).+-- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-). -- -   Start and end with a letter or number. -- -   Contain less than 64 characters. crrsRuleSetName :: Lens' CreateReceiptRuleSet Text
gen/Network/AWS/SES/DeleteIdentity.hs view
@@ -18,8 +18,7 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Deletes the specified identity (email address or domain) from the list--- of verified identities.+-- Deletes the specified identity (email address or domain) from the list of verified identities. -- -- This action is throttled at one request per second. module Network.AWS.SES.DeleteIdentity@@ -62,8 +61,7 @@     { _diIdentity = pIdentity_     } --- | The identity to be removed from the list of identities for the AWS--- Account.+-- | The identity to be removed from the list of identities for the AWS Account. diIdentity :: Lens' DeleteIdentity Text diIdentity = lens _diIdentity (\ s a -> s{_diIdentity = a}); 
gen/Network/AWS/SES/DeleteIdentityPolicy.hs view
@@ -18,17 +18,11 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Deletes the specified sending authorization policy for the given--- identity (email address or domain). This API returns successfully even--- if a policy with the specified name does not exist.+-- Deletes the specified sending authorization policy for the given identity (email address or domain). This API returns successfully even if a policy with the specified name does not exist. ----- This API is for the identity owner only. If you have not verified the--- identity, this API will return an error.+-- This API is for the identity owner only. If you have not verified the identity, this API will return an error. ----- Sending authorization is a feature that enables an identity owner to--- authorize other senders to use its identities. For information about--- using sending authorization, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+-- Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.DeleteIdentityPolicy@@ -77,10 +71,7 @@     , _dipPolicyName = pPolicyName_     } --- | The identity that is associated with the policy that you want to delete.--- You can specify the identity by using its name or by using its Amazon--- Resource Name (ARN). Examples: 'user\'example.com', 'example.com',--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'.+-- | The identity that is associated with the policy that you want to delete. You can specify the identity by using its name or by using its Amazon Resource Name (ARN). Examples: 'user\'example.com', 'example.com', 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'. -- -- To successfully call this API, you must own the identity. dipIdentity :: Lens' DeleteIdentityPolicy Text
gen/Network/AWS/SES/DeleteReceiptFilter.hs view
@@ -20,8 +20,7 @@ -- -- Deletes the specified IP address filter. ----- For information about managing IP address filters, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html Amazon SES Developer Guide>.+-- For information about managing IP address filters, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.DeleteReceiptFilter
gen/Network/AWS/SES/DeleteReceiptRule.hs view
@@ -20,8 +20,7 @@ -- -- Deletes the specified receipt rule. ----- For information about managing receipt rules, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html Amazon SES Developer Guide>.+-- For information about managing receipt rules, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.DeleteReceiptRule@@ -70,8 +69,7 @@     , _delRuleName = pRuleName_     } --- | The name of the receipt rule set that contains the receipt rule to--- delete.+-- | The name of the receipt rule set that contains the receipt rule to delete. delRuleSetName :: Lens' DeleteReceiptRule Text delRuleSetName = lens _delRuleSetName (\ s a -> s{_delRuleSetName = a}); 
gen/Network/AWS/SES/DeleteReceiptRuleSet.hs view
@@ -18,13 +18,11 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Deletes the specified receipt rule set and all of the receipt rules it--- contains.+-- Deletes the specified receipt rule set and all of the receipt rules it contains. -- -- The currently active rule set cannot be deleted. ----- For information about managing receipt rule sets, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>.+-- For information about managing receipt rule sets, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.DeleteReceiptRuleSet
gen/Network/AWS/SES/DeleteVerifiedEmailAddress.hs view
@@ -20,9 +20,7 @@ -- -- Deletes the specified email address from the list of verified addresses. ----- The DeleteVerifiedEmailAddress action is deprecated as of the May 15,--- 2012 release of Domain Verification. The DeleteIdentity action is now--- preferred.+-- The DeleteVerifiedEmailAddress action is deprecated as of the May 15, 2012 release of Domain Verification. The DeleteIdentity action is now preferred. -- -- This action is throttled at one request per second. module Network.AWS.SES.DeleteVerifiedEmailAddress
gen/Network/AWS/SES/DescribeActiveReceiptRuleSet.hs view
@@ -18,11 +18,9 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Returns the metadata and receipt rules for the receipt rule set that is--- currently active.+-- Returns the metadata and receipt rules for the receipt rule set that is currently active. ----- For information about setting up receipt rule sets, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html Amazon SES Developer Guide>.+-- For information about setting up receipt rule sets, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.DescribeActiveReceiptRuleSet@@ -121,9 +119,7 @@ darrsrsRules :: Lens' DescribeActiveReceiptRuleSetResponse [ReceiptRule] darrsrsRules = lens _darrsrsRules (\ s a -> s{_darrsrsRules = a}) . _Default . _Coerce; --- | The metadata for the currently active receipt rule set. The metadata--- consists of the rule set name and a timestamp of when the rule set was--- created.+-- | The metadata for the currently active receipt rule set. The metadata consists of the rule set name and a timestamp of when the rule set was created. darrsrsMetadata :: Lens' DescribeActiveReceiptRuleSetResponse (Maybe ReceiptRuleSetMetadata) darrsrsMetadata = lens _darrsrsMetadata (\ s a -> s{_darrsrsMetadata = a}); 
gen/Network/AWS/SES/DescribeReceiptRule.hs view
@@ -20,8 +20,7 @@ -- -- Returns the details of the specified receipt rule. ----- For information about setting up receipt rules, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html Amazon SES Developer Guide>.+-- For information about setting up receipt rules, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.DescribeReceiptRule@@ -129,9 +128,7 @@     , _drrrsResponseStatus = pResponseStatus_     } --- | A data structure that contains the specified receipt rule\'s name,--- actions, recipients, domains, enabled status, scan status, and Transport--- Layer Security (TLS) policy.+-- | A data structure that contains the specified receipt rule\'s name, actions, recipients, domains, enabled status, scan status, and Transport Layer Security (TLS) policy. drrrsRule :: Lens' DescribeReceiptRuleResponse (Maybe ReceiptRule) drrrsRule = lens _drrrsRule (\ s a -> s{_drrrsRule = a}); 
gen/Network/AWS/SES/DescribeReceiptRuleSet.hs view
@@ -20,8 +20,7 @@ -- -- Returns the details of the specified receipt rule set. ----- For information about managing receipt rule sets, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>.+-- For information about managing receipt rule sets, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.DescribeReceiptRuleSet@@ -127,13 +126,11 @@     , _desrsResponseStatus = pResponseStatus_     } --- | A list of the receipt rules that belong to the specified receipt rule--- set.+-- | A list of the receipt rules that belong to the specified receipt rule set. desrsRules :: Lens' DescribeReceiptRuleSetResponse [ReceiptRule] desrsRules = lens _desrsRules (\ s a -> s{_desrsRules = a}) . _Default . _Coerce; --- | The metadata for the receipt rule set, which consists of the rule set--- name and the timestamp of when the rule set was created.+-- | The metadata for the receipt rule set, which consists of the rule set name and the timestamp of when the rule set was created. desrsMetadata :: Lens' DescribeReceiptRuleSetResponse (Maybe ReceiptRuleSetMetadata) desrsMetadata = lens _desrsMetadata (\ s a -> s{_desrsMetadata = a}); 
gen/Network/AWS/SES/GetIdentityDkimAttributes.hs view
@@ -18,27 +18,17 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- 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 for Easy DKIM signing, and whether Amazon SES has--- successfully verified that these tokens have been published.+-- 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 for Easy DKIM signing, and whether Amazon SES has successfully verified that these tokens have been published. ----- This action takes a list of identities as input and returns the--- following information for each:+-- This action takes a list of identities as input and returns the following information for each: -- -- -   Whether Easy DKIM signing is enabled or disabled.--- -   A set of DKIM tokens that represent the identity. If the identity is---     an email address, the tokens represent the domain of that address.--- -   Whether Amazon SES has successfully verified the DKIM tokens---     published in the domain\'s DNS. This information is only returned---     for domain name identities, not for email addresses.+-- -   A set of DKIM tokens that represent the identity. If the identity is an email address, the tokens represent the domain of that address.+-- -   Whether Amazon SES has successfully verified the DKIM tokens published in the domain\'s DNS. This information is only returned for domain name identities, not for email addresses. ----- This action is throttled at one request per second and can only get DKIM--- attributes for up to 100 identities at a time.+-- This action is throttled at one request per second and can only get DKIM attributes for up to 100 identities at a time. ----- For more information about creating DNS records using DKIM tokens, go to--- the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html Amazon SES Developer Guide>.+-- For more information about creating DNS records using DKIM tokens, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html Amazon SES Developer Guide>. module Network.AWS.SES.GetIdentityDkimAttributes     (     -- * Creating a Request@@ -79,8 +69,7 @@     { _gidaIdentities = mempty     } --- | A list of one or more verified identities - email addresses, domains, or--- both.+-- | A list of one or more verified identities - email addresses, domains, or both. gidaIdentities :: Lens' GetIdentityDkimAttributes [Text] gidaIdentities = lens _gidaIdentities (\ s a -> s{_gidaIdentities = a}) . _Coerce; 
gen/Network/AWS/SES/GetIdentityMailFromDomainAttributes.hs view
@@ -18,11 +18,9 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Returns the custom MAIL FROM attributes for a list of identities (email--- addresses and\/or domains).+-- Returns the custom MAIL FROM attributes for a list of identities (email addresses and\/or domains). ----- This action is throttled at one request per second and can only get--- custom MAIL FROM attributes for up to 100 identities at a time.+-- This action is throttled at one request per second and can only get custom MAIL FROM attributes for up to 100 identities at a time. module Network.AWS.SES.GetIdentityMailFromDomainAttributes     (     -- * Creating a Request
gen/Network/AWS/SES/GetIdentityNotificationAttributes.hs view
@@ -18,14 +18,11 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Given a list of verified identities (email addresses and\/or domains),--- returns a structure describing identity notification attributes.+-- Given a list of verified identities (email addresses and\/or domains), returns a structure describing identity notification attributes. ----- This action is throttled at one request per second and can only get--- notification attributes for up to 100 identities at a time.+-- This action is throttled at one request per second and can only get notification attributes for up to 100 identities at a time. ----- For more information about using notifications with Amazon SES, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html Amazon SES Developer Guide>.+-- For more information about using notifications with Amazon SES, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html Amazon SES Developer Guide>. module Network.AWS.SES.GetIdentityNotificationAttributes     (     -- * Creating a Request@@ -66,10 +63,7 @@     { _ginaIdentities = mempty     } --- | A list of one or more identities. You can specify an identity by using--- its name or by using its Amazon Resource Name (ARN). Examples:--- 'user\'example.com', 'example.com',--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'.+-- | A list of one or more identities. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: 'user\'example.com', 'example.com', 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'. ginaIdentities :: Lens' GetIdentityNotificationAttributes [Text] ginaIdentities = lens _ginaIdentities (\ s a -> s{_ginaIdentities = a}) . _Coerce; 
gen/Network/AWS/SES/GetIdentityPolicies.hs view
@@ -18,18 +18,11 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Returns the requested sending authorization policies for the given--- identity (email address or domain). The policies are returned as a map--- of policy names to policy contents. You can retrieve a maximum of 20--- policies at a time.+-- Returns the requested sending authorization policies for the given identity (email address or domain). The policies are returned as a map of policy names to policy contents. You can retrieve a maximum of 20 policies at a time. ----- This API is for the identity owner only. If you have not verified the--- identity, this API will return an error.+-- This API is for the identity owner only. If you have not verified the identity, this API will return an error. ----- Sending authorization is a feature that enables an identity owner to--- authorize other senders to use its identities. For information about--- using sending authorization, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+-- Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.GetIdentityPolicies@@ -78,19 +71,13 @@     , _gipPolicyNames = mempty     } --- | The identity for which the policies will be retrieved. You can specify--- an identity by using its name or by using its Amazon Resource Name--- (ARN). Examples: 'user\'example.com', 'example.com',--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'.+-- | The identity for which the policies will be retrieved. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: 'user\'example.com', 'example.com', 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'. -- -- To successfully call this API, you must own the identity. gipIdentity :: Lens' GetIdentityPolicies Text gipIdentity = lens _gipIdentity (\ s a -> s{_gipIdentity = a}); --- | A list of the names of policies to be retrieved. You can retrieve a--- maximum of 20 policies at a time. If you do not know the names of the--- policies that are attached to the identity, you can use--- 'ListIdentityPolicies'.+-- | A list of the names of policies to be retrieved. You can retrieve a maximum of 20 policies at a time. If you do not know the names of the policies that are attached to the identity, you can use 'ListIdentityPolicies'. gipPolicyNames :: Lens' GetIdentityPolicies [Text] gipPolicyNames = lens _gipPolicyNames (\ s a -> s{_gipPolicyNames = a}) . _Coerce; 
gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs view
@@ -18,12 +18,9 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Given a list of identities (email addresses and\/or domains), returns--- the verification status and (for domain identities) the verification--- token for each identity.+-- Given a list of identities (email addresses and\/or domains), returns the verification status and (for domain identities) the verification token for each identity. ----- This action is throttled at one request per second and can only get--- verification attributes for up to 100 identities at a time.+-- This action is throttled at one request per second and can only get verification attributes for up to 100 identities at a time. module Network.AWS.SES.GetIdentityVerificationAttributes     (     -- * Creating a Request
gen/Network/AWS/SES/GetSendQuota.hs view
@@ -113,11 +113,9 @@     , _gsqrsResponseStatus = pResponseStatus_     } --- | The maximum number of emails that Amazon SES can accept from the user\'s--- account per second.+-- | The maximum number of emails that Amazon SES can accept from the user\'s account per second. ----- The rate at which Amazon SES accepts the user\'s messages might be less--- than the maximum send rate.+-- The rate at which Amazon SES accepts the user\'s messages might be less than the maximum send rate. gsqrsMaxSendRate :: Lens' GetSendQuotaResponse (Maybe Double) gsqrsMaxSendRate = lens _gsqrsMaxSendRate (\ s a -> s{_gsqrsMaxSendRate = a}); @@ -125,8 +123,7 @@ gsqrsSentLast24Hours :: Lens' GetSendQuotaResponse (Maybe Double) gsqrsSentLast24Hours = lens _gsqrsSentLast24Hours (\ s a -> s{_gsqrsSentLast24Hours = a}); --- | The maximum number of emails the user is allowed to send in a 24-hour--- interval. A value of -1 signifies an unlimited quota.+-- | The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota. gsqrsMax24HourSend :: Lens' GetSendQuotaResponse (Maybe Double) gsqrsMax24HourSend = lens _gsqrsMax24HourSend (\ s a -> s{_gsqrsMax24HourSend = a}); 
gen/Network/AWS/SES/GetSendStatistics.hs view
@@ -18,11 +18,9 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Returns the user\'s sending statistics. The result is a list of data--- points, representing the last two weeks of sending activity.+-- Returns the user\'s sending statistics. The result is a list of data points, representing the last two weeks of sending activity. ----- Each data point in the list contains statistics for a 15-minute--- interval.+-- Each data point in the list contains statistics for a 15-minute interval. -- -- This action is throttled at one request per second. module Network.AWS.SES.GetSendStatistics
gen/Network/AWS/SES/ListIdentities.hs view
@@ -18,8 +18,7 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Returns a list containing all of the identities (email addresses and--- domains) for a specific AWS Account, regardless of verification status.+-- Returns a list containing all of the identities (email addresses and domains) for a specific AWS Account, regardless of verification status. -- -- This action is throttled at one request per second. --@@ -76,9 +75,7 @@     , _liMaxItems = Nothing     } --- | The type of the identities to list. Possible values are \"EmailAddress\"--- and \"Domain\". If this parameter is omitted, then all identities will--- be listed.+-- | The type of the identities to list. Possible values are \"EmailAddress\" and \"Domain\". If this parameter is omitted, then all identities will be listed. liIdentityType :: Lens' ListIdentities (Maybe IdentityType) liIdentityType = lens _liIdentityType (\ s a -> s{_liIdentityType = a}); @@ -86,8 +83,7 @@ liNextToken :: Lens' ListIdentities (Maybe Text) liNextToken = lens _liNextToken (\ s a -> s{_liNextToken = a}); --- | The maximum number of identities per page. Possible values are 1-1000--- inclusive.+-- | The maximum number of identities per page. Possible values are 1-1000 inclusive. liMaxItems :: Lens' ListIdentities (Maybe Int) liMaxItems = lens _liMaxItems (\ s a -> s{_liMaxItems = a}); 
gen/Network/AWS/SES/ListIdentityPolicies.hs view
@@ -18,18 +18,11 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Returns a list of sending authorization policies that are attached to--- the given identity (email address or domain). This API returns only a--- list. If you want the actual policy content, you can use--- 'GetIdentityPolicies'.+-- Returns a list of sending authorization policies that are attached to the given identity (email address or domain). This API returns only a list. If you want the actual policy content, you can use 'GetIdentityPolicies'. ----- This API is for the identity owner only. If you have not verified the--- identity, this API will return an error.+-- This API is for the identity owner only. If you have not verified the identity, this API will return an error. ----- Sending authorization is a feature that enables an identity owner to--- authorize other senders to use its identities. For information about--- using sending authorization, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+-- Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.ListIdentityPolicies@@ -73,11 +66,7 @@     { _lipIdentity = pIdentity_     } --- | The identity that is associated with the policy for which the policies--- will be listed. You can specify an identity by using its name or by--- using its Amazon Resource Name (ARN). Examples: 'user\'example.com',--- 'example.com',--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'.+-- | The identity that is associated with the policy for which the policies will be listed. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: 'user\'example.com', 'example.com', 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'. -- -- To successfully call this API, you must own the identity. lipIdentity :: Lens' ListIdentityPolicies Text
gen/Network/AWS/SES/ListReceiptFilters.hs view
@@ -20,8 +20,7 @@ -- -- Lists the IP address filters associated with your account. ----- For information about managing IP address filters, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html Amazon SES Developer Guide>.+-- For information about managing IP address filters, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.ListReceiptFilters@@ -107,8 +106,7 @@     , _lrfrsResponseStatus = pResponseStatus_     } --- | A list of IP address filter data structures, which each consist of a--- name, an IP address range, and whether to allow or block mail from it.+-- | A list of IP address filter data structures, which each consist of a name, an IP address range, and whether to allow or block mail from it. lrfrsFilters :: Lens' ListReceiptFiltersResponse [ReceiptFilter] lrfrsFilters = lens _lrfrsFilters (\ s a -> s{_lrfrsFilters = a}) . _Default . _Coerce; 
gen/Network/AWS/SES/ListReceiptRuleSets.hs view
@@ -18,13 +18,9 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Lists the receipt rule sets that exist under your AWS account. If there--- are additional receipt rule sets to be retrieved, you will receive a--- 'NextToken' that you can provide to the next call to--- 'ListReceiptRuleSets' to retrieve the additional entries.+-- Lists the receipt rule sets that exist under your AWS account. If there are additional receipt rule sets to be retrieved, you will receive a 'NextToken' that you can provide to the next call to 'ListReceiptRuleSets' to retrieve the additional entries. ----- For information about managing receipt rule sets, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>.+-- For information about managing receipt rule sets, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.ListReceiptRuleSets@@ -68,8 +64,7 @@     { _lrrsNextToken = Nothing     } --- | A token returned from a previous call to 'ListReceiptRuleSets' to--- indicate the position in the receipt rule set list.+-- | A token returned from a previous call to 'ListReceiptRuleSets' to indicate the position in the receipt rule set list. lrrsNextToken :: Lens' ListReceiptRuleSets (Maybe Text) lrrsNextToken = lens _lrrsNextToken (\ s a -> s{_lrrsNextToken = a}); @@ -129,15 +124,11 @@     , _lrrsrsResponseStatus = pResponseStatus_     } --- | The metadata for the currently active receipt rule set. The metadata--- consists of the rule set name and the timestamp of when the rule set was--- created.+-- | The metadata for the currently active receipt rule set. The metadata consists of the rule set name and the timestamp of when the rule set was created. lrrsrsRuleSets :: Lens' ListReceiptRuleSetsResponse [ReceiptRuleSetMetadata] lrrsrsRuleSets = lens _lrrsrsRuleSets (\ s a -> s{_lrrsrsRuleSets = a}) . _Default . _Coerce; --- | A token indicating that there are additional receipt rule sets available--- to be listed. Pass this token to successive calls of--- 'ListReceiptRuleSets' to retrieve up to 100 receipt rule sets at a time.+-- | A token indicating that there are additional receipt rule sets available to be listed. Pass this token to successive calls of 'ListReceiptRuleSets' to retrieve up to 100 receipt rule sets at a time. lrrsrsNextToken :: Lens' ListReceiptRuleSetsResponse (Maybe Text) lrrsrsNextToken = lens _lrrsrsNextToken (\ s a -> s{_lrrsrsNextToken = a}); 
gen/Network/AWS/SES/ListVerifiedEmailAddresses.hs view
@@ -18,12 +18,9 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Returns a list containing all of the email addresses that have been--- verified.+-- Returns a list containing all of the email addresses that have been verified. ----- The ListVerifiedEmailAddresses action is deprecated as of the May 15,--- 2012 release of Domain Verification. The ListIdentities action is now--- preferred.+-- The ListVerifiedEmailAddresses action is deprecated as of the May 15, 2012 release of Domain Verification. The ListIdentities action is now preferred. -- -- This action is throttled at one request per second. module Network.AWS.SES.ListVerifiedEmailAddresses
gen/Network/AWS/SES/PutIdentityPolicy.hs view
@@ -18,16 +18,11 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Adds or updates a sending authorization policy for the specified--- identity (email address or domain).+-- Adds or updates a sending authorization policy for the specified identity (email address or domain). ----- This API is for the identity owner only. If you have not verified the--- identity, this API will return an error.+-- This API is for the identity owner only. If you have not verified the identity, this API will return an error. ----- Sending authorization is a feature that enables an identity owner to--- authorize other senders to use its identities. For information about--- using sending authorization, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+-- Sending authorization is a feature that enables an identity owner to authorize other senders to use its identities. For information about using sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.PutIdentityPolicy@@ -82,10 +77,7 @@     , _pipPolicy = pPolicy_     } --- | The identity to which the policy will apply. You can specify an identity--- by using its name or by using its Amazon Resource Name (ARN). Examples:--- 'user\'example.com', 'example.com',--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'.+-- | The identity to which the policy will apply. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: 'user\'example.com', 'example.com', 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'. -- -- To successfully call this API, you must own the identity. pipIdentity :: Lens' PutIdentityPolicy Text@@ -93,16 +85,13 @@  -- | The name of the policy. ----- The policy name cannot exceed 64 characters and can only include--- alphanumeric characters, dashes, and underscores.+-- The policy name cannot exceed 64 characters and can only include alphanumeric characters, dashes, and underscores. pipPolicyName :: Lens' PutIdentityPolicy Text pipPolicyName = lens _pipPolicyName (\ s a -> s{_pipPolicyName = a});  -- | The text of the policy in JSON format. The policy cannot exceed 4 KB. ----- For information about the syntax of sending authorization policies, see--- the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-policies.html Amazon SES Developer Guide>.+-- For information about the syntax of sending authorization policies, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-policies.html Amazon SES Developer Guide>. pipPolicy :: Lens' PutIdentityPolicy Text pipPolicy = lens _pipPolicy (\ s a -> s{_pipPolicy = a}); 
gen/Network/AWS/SES/ReorderReceiptRuleSet.hs view
@@ -20,12 +20,9 @@ -- -- Reorders the receipt rules within a receipt rule set. ----- All of the rules in the rule set must be represented in this request.--- That is, this API will return an error if the reorder request doesn\'t--- explicitly position all of the rules.+-- All of the rules in the rule set must be represented in this request. That is, this API will return an error if the reorder request doesn\'t explicitly position all of the rules. ----- For information about managing receipt rule sets, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>.+-- For information about managing receipt rule sets, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.ReorderReceiptRuleSet@@ -77,8 +74,7 @@ rrrsRuleSetName :: Lens' ReorderReceiptRuleSet Text rrrsRuleSetName = lens _rrrsRuleSetName (\ s a -> s{_rrrsRuleSetName = a}); --- | A list of the specified receipt rule set\'s receipt rules in the order--- that you want to put them.+-- | A list of the specified receipt rule set\'s receipt rules in the order that you want to put them. rrrsRuleNames :: Lens' ReorderReceiptRuleSet [Text] rrrsRuleNames = lens _rrrsRuleNames (\ s a -> s{_rrrsRuleNames = a}) . _Coerce; 
gen/Network/AWS/SES/SendBounce.hs view
@@ -18,15 +18,11 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Generates and sends a bounce message to the sender of an email you--- received through Amazon SES. You can only use this API on an email up to--- 24 hours after you receive it.+-- Generates and sends a bounce message to the sender of an email you received through Amazon SES. You can only use this API on an email up to 24 hours after you receive it. ----- You cannot use this API to send generic bounces for mail that was not--- received by Amazon SES.+-- You cannot use this API to send generic bounces for mail that was not received by Amazon SES. ----- For information about receiving email through Amazon SES, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>.+-- For information about receiving email through Amazon SES, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.SendBounce@@ -96,22 +92,15 @@     , _sbBouncedRecipientInfoList = mempty     } --- | Message-related DSN fields. If not specified, Amazon SES will choose the--- values.+-- | Message-related DSN fields. If not specified, Amazon SES will choose the values. sbMessageDsn :: Lens' SendBounce (Maybe MessageDsn) sbMessageDsn = lens _sbMessageDsn (\ s a -> s{_sbMessageDsn = a}); --- | Human-readable text for the bounce message to explain the failure. If--- not specified, the text will be auto-generated based on the bounced--- recipient information.+-- | Human-readable text for the bounce message to explain the failure. If not specified, the text will be auto-generated based on the bounced recipient information. sbExplanation :: Lens' SendBounce (Maybe Text) sbExplanation = lens _sbExplanation (\ s a -> s{_sbExplanation = a}); --- | This parameter is used only for sending authorization. It is the ARN of--- the identity that is associated with the sending authorization policy--- that permits you to use the address in the \"From\" header of the--- bounce. For more information about sending authorization, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+-- | This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the address in the \"From\" header of the bounce. For more information about sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. sbBounceSenderARN :: Lens' SendBounce (Maybe Text) sbBounceSenderARN = lens _sbBounceSenderARN (\ s a -> s{_sbBounceSenderARN = a}); @@ -119,15 +108,11 @@ sbOriginalMessageId :: Lens' SendBounce Text sbOriginalMessageId = lens _sbOriginalMessageId (\ s a -> s{_sbOriginalMessageId = a}); --- | The address to use in the \"From\" header of the bounce message. This--- must be an identity that you have verified with Amazon SES.+-- | The address to use in the \"From\" header of the bounce message. This must be an identity that you have verified with Amazon SES. sbBounceSender :: Lens' SendBounce Text sbBounceSender = lens _sbBounceSender (\ s a -> s{_sbBounceSender = a}); --- | A list of recipients of the bounced message, including the information--- required to create the Delivery Status Notifications (DSNs) for the--- recipients. You must specify at least one 'BouncedRecipientInfo' in the--- list.+-- | A list of recipients of the bounced message, including the information required to create the Delivery Status Notifications (DSNs) for the recipients. You must specify at least one 'BouncedRecipientInfo' in the list. sbBouncedRecipientInfoList :: Lens' SendBounce [BouncedRecipientInfo] sbBouncedRecipientInfoList = lens _sbBouncedRecipientInfoList (\ s a -> s{_sbBouncedRecipientInfoList = a}) . _Coerce; 
gen/Network/AWS/SES/SendEmail.hs view
@@ -18,31 +18,14 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Composes an email message based on input data, and then immediately--- queues the message for sending.+-- Composes an email message based on input data, and then immediately queues the message for sending. -- -- There are several important points to know about 'SendEmail': ----- -   You can only send email from verified email addresses and domains;---     otherwise, you will get an \"Email address not verified\" error. If---     your account is still in the Amazon SES sandbox, you must also---     verify every recipient email address except for the recipients---     provided by the Amazon SES mailbox simulator. For more information,---     go to the---     <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html Amazon SES Developer Guide>.--- -   The total size of the message cannot exceed 10 MB. This includes any---     attachments that are part of the message.--- -   Amazon SES has a limit on the total number of recipients per---     message. The combined number of To:, CC: and BCC: email addresses---     cannot exceed 50. If you need to send an email message to a larger---     audience, you can divide your recipient list into groups of 50 or---     fewer, and then call Amazon SES repeatedly to send the message to---     each group.--- -   For every message that you send, the total number of recipients---     (To:, CC: and BCC:) is counted against your sending quota - the---     maximum number of emails you can send in a 24-hour period. For---     information about your sending quota, go to the---     <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html Amazon SES Developer Guide>.+-- -   You can only send email from verified email addresses and domains; otherwise, you will get an \"Email address not verified\" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html Amazon SES Developer Guide>.+-- -   The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message.+-- -   Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group.+-- -   For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html Amazon SES Developer Guide>. module Network.AWS.SES.SendEmail     (     -- * Creating a Request@@ -116,73 +99,35 @@     , _seMessage = pMessage_     } --- | The email address to which bounces and complaints are to be forwarded--- when feedback forwarding is enabled. If the message cannot be delivered--- to the recipient, then an error message will be returned from the--- recipient\'s ISP; this message will then be forwarded to the email--- address specified by the 'ReturnPath' parameter. The 'ReturnPath'--- parameter is never overwritten. This email address must be either--- individually verified with Amazon SES, or from a domain that has been--- verified with Amazon SES.+-- | The email address to which bounces and complaints are to be forwarded when feedback forwarding is enabled. If the message cannot be delivered to the recipient, then an error message will be returned from the recipient\'s ISP; this message will then be forwarded to the email address specified by the 'ReturnPath' parameter. The 'ReturnPath' parameter is never overwritten. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES. seReturnPath :: Lens' SendEmail (Maybe Text) seReturnPath = lens _seReturnPath (\ s a -> s{_seReturnPath = a}); --- | This parameter is used only for sending authorization. It is the ARN of--- the identity that is associated with the sending authorization policy--- that permits you to send for the email address specified in the 'Source'--- parameter.+-- | This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to send for the email address specified in the 'Source' parameter. ----- For example, if the owner of 'example.com' (which has ARN--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com') attaches a--- policy to it that authorizes you to send from 'user\'example.com', then--- you would specify the 'SourceArn' to be--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com', and the--- 'Source' to be 'user\'example.com'.+-- For example, if the owner of 'example.com' (which has ARN 'arn:aws:ses:us-east-1:123456789012:identity\/example.com') attaches a policy to it that authorizes you to send from 'user\'example.com', then you would specify the 'SourceArn' to be 'arn:aws:ses:us-east-1:123456789012:identity\/example.com', and the 'Source' to be 'user\'example.com'. ----- For more information about sending authorization, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+-- For more information about sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. seSourceARN :: Lens' SendEmail (Maybe Text) seSourceARN = lens _seSourceARN (\ s a -> s{_seSourceARN = a}); --- | This parameter is used only for sending authorization. It is the ARN of--- the identity that is associated with the sending authorization policy--- that permits you to use the email address specified in the 'ReturnPath'--- parameter.+-- | This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the email address specified in the 'ReturnPath' parameter. ----- For example, if the owner of 'example.com' (which has ARN--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com') attaches a--- policy to it that authorizes you to use 'feedback\'example.com', then--- you would specify the 'ReturnPathArn' to be--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com', and the--- 'ReturnPath' to be 'feedback\'example.com'.+-- For example, if the owner of 'example.com' (which has ARN 'arn:aws:ses:us-east-1:123456789012:identity\/example.com') attaches a policy to it that authorizes you to use 'feedback\'example.com', then you would specify the 'ReturnPathArn' to be 'arn:aws:ses:us-east-1:123456789012:identity\/example.com', and the 'ReturnPath' to be 'feedback\'example.com'. ----- For more information about sending authorization, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+-- For more information about sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. seReturnPathARN :: Lens' SendEmail (Maybe Text) seReturnPathARN = lens _seReturnPathARN (\ s a -> s{_seReturnPathARN = a}); --- | The reply-to email address(es) for the message. If the recipient replies--- to the message, each reply-to address will receive the reply.+-- | The reply-to email address(es) for the message. If the recipient replies to the message, each reply-to address will receive the reply. seReplyToAddresses :: Lens' SendEmail [Text] seReplyToAddresses = lens _seReplyToAddresses (\ s a -> s{_seReplyToAddresses = a}) . _Default . _Coerce; --- | The email address that is sending the email. This email address must be--- either individually verified with Amazon SES, or from a domain that has--- been verified with Amazon SES. For information about verifying--- identities, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html Amazon SES Developer Guide>.+-- | The email address that is sending the email. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES. For information about verifying identities, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html Amazon SES Developer Guide>. ----- If you are sending on behalf of another user and have been permitted to--- do so by a sending authorization policy, then you must also specify the--- 'SourceArn' parameter. For more information about sending authorization,--- see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+-- If you are sending on behalf of another user and have been permitted to do so by a sending authorization policy, then you must also specify the 'SourceArn' parameter. For more information about sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. ----- In all cases, the email address must be 7-bit ASCII. If the text must--- contain any other characters, then you must use MIME encoded-word syntax--- (RFC 2047) instead of a literal string. MIME encoded-word syntax uses--- the following form: '=?charset?encoding?encoded-text?='. For more--- information, see <http://tools.ietf.org/html/rfc2047 RFC 2047>.+-- In all cases, the email address must be 7-bit ASCII. If the text must contain any other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of a literal string. MIME encoded-word syntax uses the following form: '=?charset?encoding?encoded-text?='. For more information, see <http://tools.ietf.org/html/rfc2047 RFC 2047>. seSource :: Lens' SendEmail Text seSource = lens _seSource (\ s a -> s{_seSource = a}); 
gen/Network/AWS/SES/SendRawEmail.hs view
@@ -18,57 +18,22 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- 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 cannot be sent.+-- 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 cannot be sent. -- -- There are several important points to know about 'SendRawEmail': ----- -   You can only send email from verified email addresses and domains;---     otherwise, you will get an \"Email address not verified\" error. If---     your account is still in the Amazon SES sandbox, you must also---     verify every recipient email address except for the recipients---     provided by the Amazon SES mailbox simulator. For more information,---     go to the---     <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html Amazon SES Developer Guide>.--- -   The total size of the message cannot exceed 10 MB. This includes any---     attachments that are part of the message.--- -   Amazon SES has a limit on the total number of recipients per---     message. The combined number of To:, CC: and BCC: email addresses---     cannot exceed 50. If you need to send an email message to a larger---     audience, you can divide your recipient list into groups of 50 or---     fewer, and then call Amazon SES repeatedly to send the message to---     each group.--- -   The To:, CC:, and BCC: headers in the raw message can contain a---     group list. Note that each recipient in a group list counts towards---     the 50-recipient limit.--- -   For every message that you send, the total number of recipients---     (To:, CC: and BCC:) is counted against your sending quota - the---     maximum number of emails you can send in a 24-hour period. For---     information about your sending quota, go to the---     <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html Amazon SES Developer Guide>.--- -   If you are using sending authorization to send on behalf of another---     user, 'SendRawEmail' enables you to specify the cross-account---     identity for the email\'s \"Source,\" \"From,\" and \"Return-Path\"---     parameters in one of two ways: you can pass optional parameters---     'SourceArn', 'FromArn', and\/or 'ReturnPathArn' to the API, or you---     can include the following X-headers in the header of your raw email:+-- -   You can only send email from verified email addresses and domains; otherwise, you will get an \"Email address not verified\" error. If your account is still in the Amazon SES sandbox, you must also verify every recipient email address except for the recipients provided by the Amazon SES mailbox simulator. For more information, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html Amazon SES Developer Guide>.+-- -   The total size of the message cannot exceed 10 MB. This includes any attachments that are part of the message.+-- -   Amazon SES has a limit on the total number of recipients per message. The combined number of To:, CC: and BCC: email addresses cannot exceed 50. If you need to send an email message to a larger audience, you can divide your recipient list into groups of 50 or fewer, and then call Amazon SES repeatedly to send the message to each group.+-- -   The To:, CC:, and BCC: headers in the raw message can contain a group list. Note that each recipient in a group list counts towards the 50-recipient limit.+-- -   For every message that you send, the total number of recipients (To:, CC: and BCC:) is counted against your sending quota - the maximum number of emails you can send in a 24-hour period. For information about your sending quota, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html Amazon SES Developer Guide>.+-- -   If you are using sending authorization to send on behalf of another user, 'SendRawEmail' enables you to specify the cross-account identity for the email\'s \"Source,\" \"From,\" and \"Return-Path\" parameters in one of two ways: you can pass optional parameters 'SourceArn', 'FromArn', and\/or 'ReturnPathArn' to the API, or you can include the following X-headers in the header of your raw email: --     -   'X-SES-SOURCE-ARN' --     -   'X-SES-FROM-ARN' --     -   'X-SES-RETURN-PATH-ARN' -----     Do not include these X-headers in the DKIM signature, because they---     are removed by Amazon SES before sending the email.---     For the most common sending authorization use case, we recommend---     that you specify the 'SourceIdentityArn' and do not specify either---     the 'FromIdentityArn' or 'ReturnPathIdentityArn'. (The same note---     applies to the corresponding X-headers.) If you only specify the---     'SourceIdentityArn', Amazon SES will simply set the \"From\" address---     and the \"Return Path\" address to the identity specified in---     'SourceIdentityArn'. For more information about sending---     authorization, see the---     <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+--     Do not include these X-headers in the DKIM signature, because they are removed by Amazon SES before sending the email.+--     For the most common sending authorization use case, we recommend that you specify the 'SourceIdentityArn' and do not specify either the 'FromIdentityArn' or 'ReturnPathIdentityArn'. (The same note applies to the corresponding X-headers.) If you only specify the 'SourceIdentityArn', Amazon SES will simply set the \"From\" address and the \"Return Path\" address to the identity specified in 'SourceIdentityArn'. For more information about sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. module Network.AWS.SES.SendRawEmail     (     -- * Creating a Request@@ -135,99 +100,52 @@     , _sreRawMessage = pRawMessage_     } --- | This parameter is used only for sending authorization. It is the ARN of--- the identity that is associated with the sending authorization policy--- that permits you to send for the email address specified in the 'Source'--- parameter.+-- | This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to send for the email address specified in the 'Source' parameter. ----- For example, if the owner of 'example.com' (which has ARN--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com') attaches a--- policy to it that authorizes you to send from 'user\'example.com', then--- you would specify the 'SourceArn' to be--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com', and the--- 'Source' to be 'user\'example.com'.+-- For example, if the owner of 'example.com' (which has ARN 'arn:aws:ses:us-east-1:123456789012:identity\/example.com') attaches a policy to it that authorizes you to send from 'user\'example.com', then you would specify the 'SourceArn' to be 'arn:aws:ses:us-east-1:123456789012:identity\/example.com', and the 'Source' to be 'user\'example.com'. ----- Instead of using this parameter, you can use the X-header--- 'X-SES-SOURCE-ARN' in the raw message of the email. If you use both the--- 'SourceArn' parameter and the corresponding X-header, Amazon SES uses--- the value of the 'SourceArn' parameter.+-- Instead of using this parameter, you can use the X-header 'X-SES-SOURCE-ARN' in the raw message of the email. If you use both the 'SourceArn' parameter and the corresponding X-header, Amazon SES uses the value of the 'SourceArn' parameter. ----- For information about when to use this parameter, see the description of--- 'SendRawEmail' in this guide, or see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html Amazon SES Developer Guide>.+-- For information about when to use this parameter, see the description of 'SendRawEmail' in this guide, or see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html Amazon SES Developer Guide>. sreSourceARN :: Lens' SendRawEmail (Maybe Text) sreSourceARN = lens _sreSourceARN (\ s a -> s{_sreSourceARN = a}); --- | A list of destinations for the message, consisting of To:, CC:, and BCC:--- addresses.+-- | A list of destinations for the message, consisting of To:, CC:, and BCC: addresses. sreDestinations :: Lens' SendRawEmail [Text] sreDestinations = lens _sreDestinations (\ s a -> s{_sreDestinations = a}) . _Default . _Coerce; --- | This parameter is used only for sending authorization. It is the ARN of--- the identity that is associated with the sending authorization policy--- that permits you to use the email address specified in the 'ReturnPath'--- parameter.+-- | This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the email address specified in the 'ReturnPath' parameter. ----- For example, if the owner of 'example.com' (which has ARN--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com') attaches a--- policy to it that authorizes you to use 'feedback\'example.com', then--- you would specify the 'ReturnPathArn' to be--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com', and the--- 'ReturnPath' to be 'feedback\'example.com'.+-- For example, if the owner of 'example.com' (which has ARN 'arn:aws:ses:us-east-1:123456789012:identity\/example.com') attaches a policy to it that authorizes you to use 'feedback\'example.com', then you would specify the 'ReturnPathArn' to be 'arn:aws:ses:us-east-1:123456789012:identity\/example.com', and the 'ReturnPath' to be 'feedback\'example.com'. ----- Instead of using this parameter, you can use the X-header--- 'X-SES-RETURN-PATH-ARN' in the raw message of the email. If you use both--- the 'ReturnPathArn' parameter and the corresponding X-header, Amazon SES--- uses the value of the 'ReturnPathArn' parameter.+-- Instead of using this parameter, you can use the X-header 'X-SES-RETURN-PATH-ARN' in the raw message of the email. If you use both the 'ReturnPathArn' parameter and the corresponding X-header, Amazon SES uses the value of the 'ReturnPathArn' parameter. ----- For information about when to use this parameter, see the description of--- 'SendRawEmail' in this guide, or see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html Amazon SES Developer Guide>.+-- For information about when to use this parameter, see the description of 'SendRawEmail' in this guide, or see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html Amazon SES Developer Guide>. sreReturnPathARN :: Lens' SendRawEmail (Maybe Text) sreReturnPathARN = lens _sreReturnPathARN (\ s a -> s{_sreReturnPathARN = a}); --- | The identity\'s email address. If you do not provide a value for this--- parameter, you must specify a \"From\" address in the raw text of the--- message. (You can also specify both.)+-- | The identity\'s email address. If you do not provide a value for this parameter, you must specify a \"From\" address in the raw text of the message. (You can also specify both.) ----- By default, the string must be 7-bit ASCII. If the text must contain any--- other characters, then you must use MIME encoded-word syntax (RFC 2047)--- instead of a literal string. MIME encoded-word syntax uses the following--- form: '=?charset?encoding?encoded-text?='. For more information, see--- <http://tools.ietf.org/html/rfc2047 RFC 2047>.+-- By default, the string must be 7-bit ASCII. If the text must contain any other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of a literal string. MIME encoded-word syntax uses the following form: '=?charset?encoding?encoded-text?='. For more information, see <http://tools.ietf.org/html/rfc2047 RFC 2047>. ----- If you specify the 'Source' parameter and have feedback forwarding--- enabled, then bounces and complaints will be sent to this email address.--- This takes precedence over any /Return-Path/ header that you might--- include in the raw text of the message.+-- If you specify the 'Source' parameter and have feedback forwarding enabled, then bounces and complaints will be sent to this email address. This takes precedence over any /Return-Path/ header that you might include in the raw text of the message. sreSource :: Lens' SendRawEmail (Maybe Text) sreSource = lens _sreSource (\ s a -> s{_sreSource = a}); --- | This parameter is used only for sending authorization. It is the ARN of--- the identity that is associated with the sending authorization policy--- that permits you to specify a particular \"From\" address in the header--- of the raw email.+-- | This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to specify a particular \"From\" address in the header of the raw email. ----- Instead of using this parameter, you can use the X-header--- 'X-SES-FROM-ARN' in the raw message of the email. If you use both the--- 'FromArn' parameter and the corresponding X-header, Amazon SES uses the--- value of the 'FromArn' parameter.+-- Instead of using this parameter, you can use the X-header 'X-SES-FROM-ARN' in the raw message of the email. If you use both the 'FromArn' parameter and the corresponding X-header, Amazon SES uses the value of the 'FromArn' parameter. ----- For information about when to use this parameter, see the description of--- 'SendRawEmail' in this guide, or see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html Amazon SES Developer Guide>.+-- For information about when to use this parameter, see the description of 'SendRawEmail' in this guide, or see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization-delegate-sender-tasks-email.html Amazon SES Developer Guide>. sreFromARN :: Lens' SendRawEmail (Maybe Text) sreFromARN = lens _sreFromARN (\ s a -> s{_sreFromARN = a}); --- | The raw text of the message. The client is responsible for ensuring the--- following:+-- | The raw text of the message. The client is responsible for ensuring the following: -- -- -   Message must contain a header and a body, separated by a blank line. -- -   All required header fields must be present. -- -   Each part of a multipart MIME message must be formatted properly.--- -   MIME content types must be among those supported by Amazon SES. For---     more information, go to the---     <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mime-types.html Amazon SES Developer Guide>.+-- -   MIME content types must be among those supported by Amazon SES. For more information, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mime-types.html Amazon SES Developer Guide>. -- -   Content must be base64-encoded, if MIME requires it. sreRawMessage :: Lens' SendRawEmail RawMessage sreRawMessage = lens _sreRawMessage (\ s a -> s{_sreRawMessage = a});
gen/Network/AWS/SES/SetActiveReceiptRuleSet.hs view
@@ -20,11 +20,9 @@ -- -- Sets the specified receipt rule set as the active receipt rule set. ----- To disable your email-receiving through Amazon SES completely, you can--- call this API with RuleSetName set to null.+-- To disable your email-receiving through Amazon SES completely, you can call this API with RuleSetName set to null. ----- For information about managing receipt rule sets, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>.+-- For information about managing receipt rule sets, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.SetActiveReceiptRuleSet@@ -66,8 +64,7 @@     { _sarrsRuleSetName = Nothing     } --- | The name of the receipt rule set to make active. Setting this value to--- null disables all email receiving.+-- | The name of the receipt rule set to make active. Setting this value to null disables all email receiving. sarrsRuleSetName :: Lens' SetActiveReceiptRuleSet (Maybe Text) sarrsRuleSetName = lens _sarrsRuleSetName (\ s a -> s{_sarrsRuleSetName = a}); 
gen/Network/AWS/SES/SetIdentityDkimEnabled.hs view
@@ -20,21 +20,14 @@ -- -- Enables or disables Easy DKIM signing of email sent from an identity: ----- -   If Easy DKIM signing is enabled for a domain name identity (e.g.,---     'example.com'), then Amazon SES will DKIM-sign all email sent by---     addresses under that domain name (e.g., 'user\'example.com').--- -   If Easy DKIM signing is enabled for an email address, then Amazon---     SES will DKIM-sign all email sent by that email address.+-- -   If Easy DKIM signing is enabled for a domain name identity (e.g., 'example.com'), then Amazon SES will DKIM-sign all email sent by addresses under that domain name (e.g., 'user\'example.com').+-- -   If Easy DKIM signing is enabled for an email address, then Amazon SES will DKIM-sign all email sent by that email address. ----- For email addresses (e.g., 'user\'example.com'), you can only enable--- Easy DKIM signing if the corresponding domain (e.g., 'example.com') has--- been set up for Easy DKIM using the AWS Console or the--- 'VerifyDomainDkim' action.+-- For email addresses (e.g., 'user\'example.com'), you can only enable Easy DKIM signing if the corresponding domain (e.g., 'example.com') has been set up for Easy DKIM using the AWS Console or the 'VerifyDomainDkim' action. -- -- This action is throttled at one request per second. ----- For more information about Easy DKIM signing, go to the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html Amazon SES Developer Guide>.+-- For more information about Easy DKIM signing, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html Amazon SES Developer Guide>. module Network.AWS.SES.SetIdentityDkimEnabled     (     -- * Creating a Request@@ -85,8 +78,7 @@ sideIdentity :: Lens' SetIdentityDkimEnabled Text sideIdentity = lens _sideIdentity (\ s a -> s{_sideIdentity = a}); --- | Sets whether DKIM signing is enabled for an identity. Set to 'true' to--- enable DKIM signing for this identity; 'false' to disable it.+-- | Sets whether DKIM signing is enabled for an identity. Set to 'true' to enable DKIM signing for this identity; 'false' to disable it. sideDkimEnabled :: Lens' SetIdentityDkimEnabled Bool sideDkimEnabled = lens _sideDkimEnabled (\ s a -> s{_sideDkimEnabled = a}); 
gen/Network/AWS/SES/SetIdentityFeedbackForwardingEnabled.hs view
@@ -18,19 +18,13 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Given an identity (email address or domain), enables or disables whether--- Amazon SES forwards bounce and complaint notifications as email.--- Feedback forwarding can only be disabled when Amazon Simple Notification--- Service (Amazon SNS) topics are specified for both bounces and--- complaints.+-- Given an identity (email address or domain), enables or disables whether Amazon SES forwards bounce and complaint notifications as email. Feedback forwarding can only be disabled when Amazon Simple Notification Service (Amazon SNS) topics are specified for both bounces and complaints. ----- Feedback forwarding does not apply to delivery notifications. Delivery--- notifications are only available through Amazon SNS.+-- Feedback forwarding does not apply to delivery notifications. Delivery notifications are only available through Amazon SNS. -- -- This action is throttled at one request per second. ----- For more information about using notifications with Amazon SES, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html Amazon SES Developer Guide>.+-- For more information about using notifications with Amazon SES, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html Amazon SES Developer Guide>. module Network.AWS.SES.SetIdentityFeedbackForwardingEnabled     (     -- * Creating a Request@@ -77,18 +71,11 @@     , _siffeForwardingEnabled = pForwardingEnabled_     } --- | The identity for which to set bounce and complaint notification--- forwarding. Examples: 'user\'example.com', 'example.com'.+-- | The identity for which to set bounce and complaint notification forwarding. Examples: 'user\'example.com', 'example.com'. siffeIdentity :: Lens' SetIdentityFeedbackForwardingEnabled Text siffeIdentity = lens _siffeIdentity (\ s a -> s{_siffeIdentity = a}); --- | Sets whether Amazon SES will forward bounce and complaint notifications--- as email. 'true' specifies that Amazon SES will forward bounce and--- complaint notifications as email, in addition to any Amazon SNS topic--- publishing otherwise specified. 'false' specifies that Amazon SES will--- publish bounce and complaint notifications only through Amazon SNS. This--- value can only be set to 'false' when Amazon SNS topics are set for both--- 'Bounce' and 'Complaint' notification types.+-- | Sets whether Amazon SES will forward bounce and complaint notifications as email. 'true' specifies that Amazon SES will forward bounce and complaint notifications as email, in addition to any Amazon SNS topic publishing otherwise specified. 'false' specifies that Amazon SES will publish bounce and complaint notifications only through Amazon SNS. This value can only be set to 'false' when Amazon SNS topics are set for both 'Bounce' and 'Complaint' notification types. siffeForwardingEnabled :: Lens' SetIdentityFeedbackForwardingEnabled Bool siffeForwardingEnabled = lens _siffeForwardingEnabled (\ s a -> s{_siffeForwardingEnabled = a}); 
gen/Network/AWS/SES/SetIdentityMailFromDomain.hs view
@@ -18,14 +18,9 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Enables or disables the custom MAIL FROM domain setup for a verified--- identity (email address or domain).+-- Enables or disables the custom MAIL FROM domain setup for a verified identity (email address or domain). ----- To send emails using the specified MAIL FROM domain, you must add an MX--- record to your MAIL FROM domain\'s DNS settings. If you want your emails--- to pass Sender Policy Framework (SPF) checks, you must also add or--- update an SPF record. For more information, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-set.html Amazon SES Developer Guide>.+-- To send emails using the specified MAIL FROM domain, you must add an MX record to your MAIL FROM domain\'s DNS settings. If you want your emails to pass Sender Policy Framework (SPF) checks, you must also add or update an SPF record. For more information, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-set.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.SetIdentityMailFromDomain@@ -78,30 +73,17 @@     , _simfdIdentity = pIdentity_     } --- | The custom MAIL FROM domain that you want the verified identity to use.--- The MAIL FROM domain must 1) be a subdomain of the verified identity, 2)--- not be used in a \"From\" address if the MAIL FROM domain is the--- destination of email feedback forwarding (for more information, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html Amazon SES Developer Guide>),--- and 3) not be used to receive emails. A value of 'null' disables the--- custom MAIL FROM setting for the identity.+-- | The custom MAIL FROM domain that you want the verified identity to use. The MAIL FROM domain must 1) be a subdomain of the verified identity, 2) not be used in a \"From\" address if the MAIL FROM domain is the destination of email feedback forwarding (for more information, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from.html Amazon SES Developer Guide>), and 3) not be used to receive emails. A value of 'null' disables the custom MAIL FROM setting for the identity. simfdMailFromDomain :: Lens' SetIdentityMailFromDomain (Maybe Text) simfdMailFromDomain = lens _simfdMailFromDomain (\ s a -> s{_simfdMailFromDomain = a}); --- | The action that you want Amazon SES to take if it cannot successfully--- read the required MX record when you send an email. If you choose--- 'UseDefaultValue', Amazon SES will use amazonses.com (or a subdomain of--- that) as the MAIL FROM domain. If you choose 'RejectMessage', Amazon SES--- will return a 'MailFromDomainNotVerified' error and not send the email.+-- | The action that you want Amazon SES to take if it cannot successfully read the required MX record when you send an email. If you choose 'UseDefaultValue', Amazon SES will use amazonses.com (or a subdomain of that) as the MAIL FROM domain. If you choose 'RejectMessage', Amazon SES will return a 'MailFromDomainNotVerified' error and not send the email. ----- The action specified in 'BehaviorOnMXFailure' is taken when the custom--- MAIL FROM domain setup is in the 'Pending', 'Failed', and--- 'TemporaryFailure' states.+-- The action specified in 'BehaviorOnMXFailure' is taken when the custom MAIL FROM domain setup is in the 'Pending', 'Failed', and 'TemporaryFailure' states. simfdBehaviorOnMXFailure :: Lens' SetIdentityMailFromDomain (Maybe BehaviorOnMXFailure) simfdBehaviorOnMXFailure = lens _simfdBehaviorOnMXFailure (\ s a -> s{_simfdBehaviorOnMXFailure = a}); --- | The verified identity for which you want to enable or disable the--- specified custom MAIL FROM domain.+-- | The verified identity for which you want to enable or disable the specified custom MAIL FROM domain. simfdIdentity :: Lens' SetIdentityMailFromDomain Text simfdIdentity = lens _simfdIdentity (\ s a -> s{_simfdIdentity = a}); 
gen/Network/AWS/SES/SetIdentityNotificationTopic.hs view
@@ -18,19 +18,13 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Given an identity (email address or domain), sets the Amazon Simple--- Notification Service (Amazon SNS) topic to which Amazon SES will publish--- bounce, complaint, and\/or delivery notifications for emails sent with--- that identity as the 'Source'.+-- Given an identity (email address or domain), sets the Amazon Simple Notification Service (Amazon SNS) topic to which Amazon SES will publish bounce, complaint, and\/or delivery notifications for emails sent with that identity as the 'Source'. ----- Unless feedback forwarding is enabled, you must specify Amazon SNS--- topics for bounce and complaint notifications. For more information, see--- 'SetIdentityFeedbackForwardingEnabled'.+-- Unless feedback forwarding is enabled, you must specify Amazon SNS topics for bounce and complaint notifications. For more information, see 'SetIdentityFeedbackForwardingEnabled'. -- -- This action is throttled at one request per second. ----- For more information about feedback notification, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html Amazon SES Developer Guide>.+-- For more information about feedback notification, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html Amazon SES Developer Guide>. module Network.AWS.SES.SetIdentityNotificationTopic     (     -- * Creating a Request@@ -82,21 +76,15 @@     , _sintNotificationType = pNotificationType_     } --- | The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter--- is omitted from the request or a null value is passed, 'SnsTopic' is--- cleared and publishing is disabled.+-- | The Amazon Resource Name (ARN) of the Amazon SNS topic. If the parameter is omitted from the request or a null value is passed, 'SnsTopic' is cleared and publishing is disabled. sintSNSTopic :: Lens' SetIdentityNotificationTopic (Maybe Text) sintSNSTopic = lens _sintSNSTopic (\ s a -> s{_sintSNSTopic = a}); --- | The identity for which the Amazon SNS topic will be set. You can specify--- an identity by using its name or by using its Amazon Resource Name--- (ARN). Examples: 'user\'example.com', 'example.com',--- 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'.+-- | The identity for which the Amazon SNS topic will be set. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: 'user\'example.com', 'example.com', 'arn:aws:ses:us-east-1:123456789012:identity\/example.com'. sintIdentity :: Lens' SetIdentityNotificationTopic Text sintIdentity = lens _sintIdentity (\ s a -> s{_sintIdentity = a}); --- | The type of notifications that will be published to the specified Amazon--- SNS topic.+-- | The type of notifications that will be published to the specified Amazon SNS topic. sintNotificationType :: Lens' SetIdentityNotificationTopic NotificationType sintNotificationType = lens _sintNotificationType (\ s a -> s{_sintNotificationType = a}); 
gen/Network/AWS/SES/SetReceiptRulePosition.hs view
@@ -20,8 +20,7 @@ -- -- Sets the position of the specified receipt rule in the receipt rule set. ----- For information about managing receipt rules, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html Amazon SES Developer Guide>.+-- For information about managing receipt rules, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.SetReceiptRulePosition@@ -75,13 +74,11 @@     , _srrpRuleName = pRuleName_     } --- | The name of the receipt rule after which to place the specified receipt--- rule.+-- | The name of the receipt rule after which to place the specified receipt rule. srrpAfter :: Lens' SetReceiptRulePosition (Maybe Text) srrpAfter = lens _srrpAfter (\ s a -> s{_srrpAfter = a}); --- | The name of the receipt rule set that contains the receipt rule to--- reposition.+-- | The name of the receipt rule set that contains the receipt rule to reposition. srrpRuleSetName :: Lens' SetReceiptRulePosition Text srrpRuleSetName = lens _srrpRuleSetName (\ s a -> s{_srrpRuleSetName = a}); 
gen/Network/AWS/SES/Types.hs view
@@ -300,8 +300,7 @@ _RuleDoesNotExistException =     _ServiceError . hasStatus 400 . hasCode "RuleDoesNotExist" --- | Indicates that the action failed, and the message could not be sent.--- Check the error stack for more information about what caused the error.+-- | Indicates that the action failed, and the message could not be sent. Check the error stack for more information about what caused the error. _MessageRejected :: AsError a => Getting (First ServiceError) a ServiceError _MessageRejected = _ServiceError . hasStatus 400 . hasCode "MessageRejected" @@ -310,43 +309,28 @@ _RuleSetDoesNotExistException =     _ServiceError . hasStatus 400 . hasCode "RuleSetDoesNotExist" --- | Indicates that the message could not be sent because Amazon SES could--- not read the MX record required to use the specified MAIL FROM domain.--- For information about editing the custom MAIL FROM domain settings for--- an identity, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-edit.html Amazon SES Developer Guide>.+-- | Indicates that the message could not be sent because Amazon SES could not read the MX record required to use the specified MAIL FROM domain. For information about editing the custom MAIL FROM domain settings for an identity, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-edit.html Amazon SES Developer Guide>. _MailFromDomainNotVerifiedException :: AsError a => Getting (First ServiceError) a ServiceError _MailFromDomainNotVerifiedException =     _ServiceError .     hasStatus 400 . hasCode "MailFromDomainNotVerifiedException" --- | Indicates that the provided AWS Lambda function is invalid, or that--- Amazon SES could not execute the provided function, possibly due to--- permissions issues. For information about giving permissions, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>.+-- | Indicates that the provided AWS Lambda function is invalid, or that Amazon SES could not execute the provided function, possibly due to permissions issues. For information about giving permissions, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>. _InvalidLambdaFunctionException :: AsError a => Getting (First ServiceError) a ServiceError _InvalidLambdaFunctionException =     _ServiceError . hasStatus 400 . hasCode "InvalidLambdaFunction" --- | Indicates that the provided policy is invalid. Check the error stack for--- more information about what caused the error.+-- | Indicates that the provided policy is invalid. Check the error stack for more information about what caused the error. _InvalidPolicyException :: AsError a => Getting (First ServiceError) a ServiceError _InvalidPolicyException =     _ServiceError . hasStatus 400 . hasCode "InvalidPolicy" --- | Indicates that the provided Amazon S3 bucket or AWS KMS encryption key--- is invalid, or that Amazon SES could not publish to the bucket, possibly--- due to permissions issues. For information about giving permissions, see--- the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>.+-- | Indicates that the provided Amazon S3 bucket or AWS KMS encryption key is invalid, or that Amazon SES could not publish to the bucket, possibly due to permissions issues. For information about giving permissions, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>. _InvalidS3ConfigurationException :: AsError a => Getting (First ServiceError) a ServiceError _InvalidS3ConfigurationException =     _ServiceError . hasStatus 400 . hasCode "InvalidS3Configuration" --- | Indicates that the provided Amazon SNS topic is invalid, or that Amazon--- SES could not publish to the topic, possibly due to permissions issues.--- For information about giving permissions, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>.+-- | Indicates that the provided Amazon SNS topic is invalid, or that Amazon SES could not publish to the topic, possibly due to permissions issues. For information about giving permissions, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>. _InvalidSNSTopicException :: AsError a => Getting (First ServiceError) a ServiceError _InvalidSNSTopicException =     _ServiceError . hasStatus 400 . hasCode "InvalidSnsTopic"@@ -356,9 +340,7 @@ _AlreadyExistsException =     _ServiceError . hasStatus 400 . hasCode "AlreadyExists" --- | Indicates that a resource could not be created due to service limits.--- For a list of Amazon SES limits, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html Amazon SES Developer Guide>.+-- | Indicates that a resource could not be created due to service limits. For a list of Amazon SES limits, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/limits.html Amazon SES Developer Guide>. _LimitExceededException :: AsError a => Getting (First ServiceError) a ServiceError _LimitExceededException =     _ServiceError . hasStatus 400 . hasCode "LimitExceeded"
gen/Network/AWS/SES/Types/Product.hs view
@@ -21,11 +21,9 @@ import           Network.AWS.Prelude import           Network.AWS.SES.Types.Sum --- | When included in a receipt rule, this action adds a header to the--- received email.+-- | When included in a receipt rule, this action adds a header to the received email. ----- For information about adding a header using a receipt rule, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-add-header.html Amazon SES Developer Guide>.+-- For information about adding a header using a receipt rule, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-add-header.html Amazon SES Developer Guide>. -- -- /See:/ 'addHeaderAction' smart constructor. data AddHeaderAction = AddHeaderAction'@@ -50,14 +48,11 @@     , _ahaHeaderValue = pHeaderValue_     } --- | The name of the header to add. Must be between 1 and 50 characters,--- inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters and--- dashes only.+-- | The name of the header to add. Must be between 1 and 50 characters, inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters and dashes only. ahaHeaderName :: Lens' AddHeaderAction Text ahaHeaderName = lens _ahaHeaderName (\ s a -> s{_ahaHeaderName = a}); --- | Must be less than 2048 characters, and must not contain newline--- characters (\"\\r\" or \"\\n\").+-- | Must be less than 2048 characters, and must not contain newline characters (\"\\r\" or \"\\n\"). ahaHeaderValue :: Lens' AddHeaderAction Text ahaHeaderValue = lens _ahaHeaderValue (\ s a -> s{_ahaHeaderValue = a}); @@ -76,9 +71,7 @@               ["HeaderName" =: _ahaHeaderName,                "HeaderValue" =: _ahaHeaderValue] --- | Represents the body of the message. You can specify text, HTML, or both.--- If you use both, then the message should display correctly in the widest--- variety of email clients.+-- | Represents the body of the message. You can specify text, HTML, or both. If you use both, then the message should display correctly in the widest variety of email clients. -- -- /See:/ 'body' smart constructor. data Body = Body'@@ -101,15 +94,11 @@     , _bHTML = Nothing     } --- | The content of the message, in text format. Use this for text-based--- email clients, or clients on high-latency networks (such as mobile--- devices).+-- | The content of the message, in text format. Use this for text-based email clients, or clients on high-latency networks (such as mobile devices). bText :: Lens' Body (Maybe Content) bText = lens _bText (\ s a -> s{_bText = a}); --- | The content of the message, in HTML format. Use this for email clients--- that can process HTML. You can include clickable links, formatted text,--- and much more in an HTML message.+-- | The content of the message, in HTML format. Use this for email clients that can process HTML. You can include clickable links, formatted text, and much more in an HTML message. bHTML :: Lens' Body (Maybe Content) bHTML = lens _bHTML (\ s a -> s{_bHTML = a}); @@ -121,13 +110,9 @@         toQuery Body'{..}           = mconcat ["Text" =: _bText, "Html" =: _bHTML] --- | When included in a receipt rule, this action rejects the received email--- by returning a bounce response to the sender and, optionally, publishes--- a notification to Amazon Simple Notification Service (Amazon SNS).+-- | When included in a receipt rule, this action rejects the received email by returning a bounce response to the sender and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS). ----- For information about sending a bounce message in response to a received--- email, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-bounce.html Amazon SES Developer Guide>.+-- For information about sending a bounce message in response to a received email, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-bounce.html Amazon SES Developer Guide>. -- -- /See:/ 'bounceAction' smart constructor. data BounceAction = BounceAction'@@ -165,21 +150,15 @@     , _baSender = pSender_     } --- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when--- the bounce action is taken. An example of an Amazon SNS topic ARN is--- 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about--- Amazon SNS topics, see the--- <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>.+-- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the bounce action is taken. An example of an Amazon SNS topic ARN is 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about Amazon SNS topics, see the <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>. baTopicARN :: Lens' BounceAction (Maybe Text) baTopicARN = lens _baTopicARN (\ s a -> s{_baTopicARN = a}); --- | The SMTP enhanced status code, as defined by--- <https://tools.ietf.org/html/rfc3463 RFC 3463>.+-- | The SMTP enhanced status code, as defined by <https://tools.ietf.org/html/rfc3463 RFC 3463>. baStatusCode :: Lens' BounceAction (Maybe Text) baStatusCode = lens _baStatusCode (\ s a -> s{_baStatusCode = a}); --- | The SMTP reply code, as defined by--- <https://tools.ietf.org/html/rfc5321 RFC 5321>.+-- | The SMTP reply code, as defined by <https://tools.ietf.org/html/rfc5321 RFC 5321>. baSmtpReplyCode :: Lens' BounceAction Text baSmtpReplyCode = lens _baSmtpReplyCode (\ s a -> s{_baSmtpReplyCode = a}); @@ -187,8 +166,7 @@ baMessage :: Lens' BounceAction Text baMessage = lens _baMessage (\ s a -> s{_baMessage = a}); --- | The email address of the sender of the bounced email. This is the--- address from which the bounce message will be sent.+-- | The email address of the sender of the bounced email. This is the address from which the bounce message will be sent. baSender :: Lens' BounceAction Text baSender = lens _baSender (\ s a -> s{_baSender = a}); @@ -212,12 +190,9 @@                "SmtpReplyCode" =: _baSmtpReplyCode,                "Message" =: _baMessage, "Sender" =: _baSender] --- | Recipient-related information to include in the Delivery Status--- Notification (DSN) when an email that Amazon SES receives on your behalf--- bounces.+-- | Recipient-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces. ----- For information about receiving email through Amazon SES, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>.+-- For information about receiving email through Amazon SES, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>. -- -- /See:/ 'bouncedRecipientInfo' smart constructor. data BouncedRecipientInfo = BouncedRecipientInfo'@@ -249,22 +224,15 @@     , _briRecipient = pRecipient_     } --- | The reason for the bounce. You must provide either this parameter or--- 'RecipientDsnFields'.+-- | The reason for the bounce. You must provide either this parameter or 'RecipientDsnFields'. briBounceType :: Lens' BouncedRecipientInfo (Maybe BounceType) briBounceType = lens _briBounceType (\ s a -> s{_briBounceType = a}); --- | Recipient-related DSN fields, most of which would normally be filled in--- automatically when provided with a 'BounceType'. You must provide either--- this parameter or 'BounceType'.+-- | Recipient-related DSN fields, most of which would normally be filled in automatically when provided with a 'BounceType'. You must provide either this parameter or 'BounceType'. briRecipientDsnFields :: Lens' BouncedRecipientInfo (Maybe RecipientDsnFields) briRecipientDsnFields = lens _briRecipientDsnFields (\ s a -> s{_briRecipientDsnFields = a}); --- | This parameter is used only for sending authorization. It is the ARN of--- the identity that is associated with the sending authorization policy--- that permits you to receive email for the recipient of the bounced--- email. For more information about sending authorization, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>.+-- | This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to receive email for the recipient of the bounced email. For more information about sending authorization, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html Amazon SES Developer Guide>. briRecipientARN :: Lens' BouncedRecipientInfo (Maybe Text) briRecipientARN = lens _briRecipientARN (\ s a -> s{_briRecipientARN = a}); @@ -286,10 +254,7 @@  -- | Represents textual data, plus an optional character set specification. ----- By default, the text must be 7-bit ASCII, due to the constraints of the--- SMTP protocol. If the text must contain any other characters, then you--- must also specify a character set. Examples include UTF-8, ISO-8859-1,--- and Shift_JIS.+-- By default, the text must be 7-bit ASCII, due to the constraints of the SMTP protocol. If the text must contain any other characters, then you must also specify a character set. Examples include UTF-8, ISO-8859-1, and Shift_JIS. -- -- /See:/ 'content' smart constructor. data Content = Content'@@ -329,14 +294,9 @@         toQuery Content'{..}           = mconcat ["Charset" =: _cCharset, "Data" =: _cData] --- | Represents the destination of the message, consisting of To:, CC:, and--- BCC: fields.+-- | Represents the destination of the message, consisting of To:, CC:, and BCC: fields. ----- By default, the string must be 7-bit ASCII. If the text must contain any--- other characters, then you must use MIME encoded-word syntax (RFC 2047)--- instead of a literal string. MIME encoded-word syntax uses the following--- form: '=?charset?encoding?encoded-text?='. For more information, see--- <http://tools.ietf.org/html/rfc2047 RFC 2047>.+-- By default, the string must be 7-bit ASCII. If the text must contain any other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of a literal string. MIME encoded-word syntax uses the following form: '=?charset?encoding?encoded-text?='. For more information, see <http://tools.ietf.org/html/rfc2047 RFC 2047>. -- -- /See:/ 'destination' smart constructor. data Destination = Destination'@@ -389,11 +349,9 @@                "ToAddresses" =:                  toQuery (toQueryList "member" <$> _dToAddresses)] --- | Additional X-headers to include in the Delivery Status Notification--- (DSN) when an email that Amazon SES receives on your behalf bounces.+-- | Additional X-headers to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces. ----- For information about receiving email through Amazon SES, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>.+-- For information about receiving email through Amazon SES, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>. -- -- /See:/ 'extensionField' smart constructor. data ExtensionField = ExtensionField'@@ -418,14 +376,11 @@     , _efValue = pValue_     } --- | The name of the header to add. Must be between 1 and 50 characters,--- inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters and--- dashes only.+-- | The name of the header to add. Must be between 1 and 50 characters, inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters and dashes only. efName :: Lens' ExtensionField Text efName = lens _efName (\ s a -> s{_efName = a}); --- | The value of the header to add. Must be less than 2048 characters, and--- must not contain newline characters (\"\\r\" or \"\\n\").+-- | The value of the header to add. Must be less than 2048 characters, and must not contain newline characters (\"\\r\" or \"\\n\"). efValue :: Lens' ExtensionField Text efValue = lens _efValue (\ s a -> s{_efValue = a}); @@ -466,28 +421,17 @@     , _idaDkimVerificationStatus = pDkimVerificationStatus_     } --- | A set of character strings that represent the domain\'s identity. Using--- these tokens, you will need to create DNS CNAME records that point to--- DKIM public keys hosted by Amazon SES. Amazon Web Services will--- eventually detect that you have updated your DNS records; this detection--- process may take up to 72 hours. Upon successful detection, Amazon SES--- will be able to DKIM-sign email originating from that domain. (This only--- applies to domain identities, not email address identities.)+-- | A set of character strings that represent the domain\'s identity. Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign email originating from that domain. (This only applies to domain identities, not email address identities.) ----- For more information about creating DNS records using DKIM tokens, go to--- the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html Amazon SES Developer Guide>.+-- For more information about creating DNS records using DKIM tokens, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html Amazon SES Developer Guide>. idaDkimTokens :: Lens' IdentityDkimAttributes [Text] idaDkimTokens = lens _idaDkimTokens (\ s a -> s{_idaDkimTokens = a}) . _Default . _Coerce; --- | True if DKIM signing is enabled for email sent from the identity; false--- otherwise.+-- | True if DKIM signing is enabled for email sent from the identity; false otherwise. idaDkimEnabled :: Lens' IdentityDkimAttributes Bool idaDkimEnabled = lens _idaDkimEnabled (\ s a -> s{_idaDkimEnabled = a}); --- | Describes whether Amazon SES has successfully verified the DKIM DNS--- records (tokens) published in the domain name\'s DNS. (This only applies--- to domain identities, not email address identities.)+-- | Describes whether Amazon SES has successfully verified the DKIM DNS records (tokens) published in the domain name\'s DNS. (This only applies to domain identities, not email address identities.) idaDkimVerificationStatus :: Lens' IdentityDkimAttributes VerificationStatus idaDkimVerificationStatus = lens _idaDkimVerificationStatus (\ s a -> s{_idaDkimVerificationStatus = a}); @@ -503,8 +447,7 @@  instance NFData IdentityDkimAttributes --- | Represents the custom MAIL FROM domain attributes of a verified identity--- (email address or domain).+-- | Represents the custom MAIL FROM domain attributes of a verified identity (email address or domain). -- -- /See:/ 'identityMailFromDomainAttributes' smart constructor. data IdentityMailFromDomainAttributes = IdentityMailFromDomainAttributes'@@ -538,24 +481,13 @@ imfdaMailFromDomain :: Lens' IdentityMailFromDomainAttributes Text imfdaMailFromDomain = lens _imfdaMailFromDomain (\ s a -> s{_imfdaMailFromDomain = a}); --- | The state that indicates whether Amazon SES has successfully read the MX--- record required for custom MAIL FROM domain setup. If the state is--- 'Success', Amazon SES uses the specified custom MAIL FROM domain when--- the verified identity sends an email. All other states indicate that--- Amazon SES takes the action described by 'BehaviorOnMXFailure'.+-- | The state that indicates whether Amazon SES has successfully read the MX record required for custom MAIL FROM domain setup. If the state is 'Success', Amazon SES uses the specified custom MAIL FROM domain when the verified identity sends an email. All other states indicate that Amazon SES takes the action described by 'BehaviorOnMXFailure'. imfdaMailFromDomainStatus :: Lens' IdentityMailFromDomainAttributes CustomMailFromStatus imfdaMailFromDomainStatus = lens _imfdaMailFromDomainStatus (\ s a -> s{_imfdaMailFromDomainStatus = a}); --- | The action that Amazon SES takes if it cannot successfully read the--- required MX record when you send an email. A value of 'UseDefaultValue'--- indicates that if Amazon SES cannot read the required MX record, it uses--- amazonses.com (or a subdomain of that) as the MAIL FROM domain. A value--- of 'RejectMessage' indicates that if Amazon SES cannot read the required--- MX record, Amazon SES returns a 'MailFromDomainNotVerified' error and--- does not send the email.+-- | The action that Amazon SES takes if it cannot successfully read the required MX record when you send an email. A value of 'UseDefaultValue' indicates that if Amazon SES cannot read the required MX record, it uses amazonses.com (or a subdomain of that) as the MAIL FROM domain. A value of 'RejectMessage' indicates that if Amazon SES cannot read the required MX record, Amazon SES returns a 'MailFromDomainNotVerified' error and does not send the email. ----- The custom MAIL FROM setup states that result in this behavior are--- 'Pending', 'Failed', and 'TemporaryFailure'.+-- The custom MAIL FROM setup states that result in this behavior are 'Pending', 'Failed', and 'TemporaryFailure'. imfdaBehaviorOnMXFailure :: Lens' IdentityMailFromDomainAttributes BehaviorOnMXFailure imfdaBehaviorOnMXFailure = lens _imfdaBehaviorOnMXFailure (\ s a -> s{_imfdaBehaviorOnMXFailure = a}); @@ -571,10 +503,7 @@  instance NFData IdentityMailFromDomainAttributes --- | Represents the notification attributes of an identity, including whether--- an identity has Amazon Simple Notification Service (Amazon SNS) topics--- set for bounce, complaint, and\/or delivery notifications, and whether--- feedback forwarding is enabled for bounce and complaint notifications.+-- | Represents the notification attributes of an identity, including whether an identity has Amazon Simple Notification Service (Amazon SNS) topics set for bounce, complaint, and\/or delivery notifications, and whether feedback forwarding is enabled for bounce and complaint notifications. -- -- /See:/ 'identityNotificationAttributes' smart constructor. data IdentityNotificationAttributes = IdentityNotificationAttributes'@@ -609,26 +538,19 @@     , _inaForwardingEnabled = pForwardingEnabled_     } --- | The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES--- will publish bounce notifications.+-- | The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish bounce notifications. inaBounceTopic :: Lens' IdentityNotificationAttributes Text inaBounceTopic = lens _inaBounceTopic (\ s a -> s{_inaBounceTopic = a}); --- | The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES--- will publish complaint notifications.+-- | The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish complaint notifications. inaComplaintTopic :: Lens' IdentityNotificationAttributes Text inaComplaintTopic = lens _inaComplaintTopic (\ s a -> s{_inaComplaintTopic = a}); --- | The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES--- will publish delivery notifications.+-- | The Amazon Resource Name (ARN) of the Amazon SNS topic where Amazon SES will publish delivery notifications. inaDeliveryTopic :: Lens' IdentityNotificationAttributes Text inaDeliveryTopic = lens _inaDeliveryTopic (\ s a -> s{_inaDeliveryTopic = a}); --- | Describes whether Amazon SES will forward bounce and complaint--- notifications as email. 'true' indicates that Amazon SES will forward--- bounce and complaint notifications as email, while 'false' indicates--- that bounce and complaint notifications will be published only to the--- specified bounce and complaint Amazon SNS topics.+-- | Describes whether Amazon SES will forward bounce and complaint notifications as email. 'true' indicates that Amazon SES will forward bounce and complaint notifications as email, while 'false' indicates that bounce and complaint notifications will be published only to the specified bounce and complaint Amazon SNS topics. inaForwardingEnabled :: Lens' IdentityNotificationAttributes Bool inaForwardingEnabled = lens _inaForwardingEnabled (\ s a -> s{_inaForwardingEnabled = a}); @@ -667,13 +589,11 @@     , _ivaVerificationStatus = pVerificationStatus_     } --- | The verification token for a domain identity. Null for email address--- identities.+-- | The verification token for a domain identity. Null for email address identities. ivaVerificationToken :: Lens' IdentityVerificationAttributes (Maybe Text) ivaVerificationToken = lens _ivaVerificationToken (\ s a -> s{_ivaVerificationToken = a}); --- | The verification status of the identity: \"Pending\", \"Success\",--- \"Failed\", or \"TemporaryFailure\".+-- | The verification status of the identity: \"Pending\", \"Success\", \"Failed\", or \"TemporaryFailure\". ivaVerificationStatus :: Lens' IdentityVerificationAttributes VerificationStatus ivaVerificationStatus = lens _ivaVerificationStatus (\ s a -> s{_ivaVerificationStatus = a}); @@ -687,18 +607,11 @@  instance NFData IdentityVerificationAttributes --- | When included in a receipt rule, this action calls an AWS Lambda--- function and, optionally, publishes a notification to Amazon Simple--- Notification Service (Amazon SNS).+-- | When included in a receipt rule, this action calls an AWS Lambda function and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS). ----- To enable Amazon SES to call your AWS Lambda function or to publish to--- an Amazon SNS topic of another account, Amazon SES must have permission--- to access those resources. For information about giving permissions, see--- the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>.+-- To enable Amazon SES to call your AWS Lambda function or to publish to an Amazon SNS topic of another account, Amazon SES must have permission to access those resources. For information about giving permissions, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>. ----- For information about using AWS Lambda actions in receipt rules, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-lambda.html Amazon SES Developer Guide>.+-- For information about using AWS Lambda actions in receipt rules, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-lambda.html Amazon SES Developer Guide>. -- -- /See:/ 'lambdaAction' smart constructor. data LambdaAction = LambdaAction'@@ -726,33 +639,17 @@     , _laFunctionARN = pFunctionARN_     } --- | The invocation type of the AWS Lambda function. An invocation type of--- 'RequestResponse' means that the execution of the function will--- immediately result in a response, and a value of 'Event' means that the--- function will be invoked asynchronously. The default value is 'Event'.--- For information about AWS Lambda invocation types, see the--- <http://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html AWS Lambda Developer Guide>.+-- | The invocation type of the AWS Lambda function. An invocation type of 'RequestResponse' means that the execution of the function will immediately result in a response, and a value of 'Event' means that the function will be invoked asynchronously. The default value is 'Event'. For information about AWS Lambda invocation types, see the <http://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html AWS Lambda Developer Guide>. ----- There is a 30-second timeout on 'RequestResponse' invocations. You--- should use 'Event' invocation in most cases. Use 'RequestResponse' only--- when you want to make a mail flow decision, such as whether to stop the--- receipt rule or the receipt rule set.+-- There is a 30-second timeout on 'RequestResponse' invocations. You should use 'Event' invocation in most cases. Use 'RequestResponse' only when you want to make a mail flow decision, such as whether to stop the receipt rule or the receipt rule set. laInvocationType :: Lens' LambdaAction (Maybe InvocationType) laInvocationType = lens _laInvocationType (\ s a -> s{_laInvocationType = a}); --- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when--- the Lambda action is taken. An example of an Amazon SNS topic ARN is--- 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about--- Amazon SNS topics, see the--- <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>.+-- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the Lambda action is taken. An example of an Amazon SNS topic ARN is 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about Amazon SNS topics, see the <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>. laTopicARN :: Lens' LambdaAction (Maybe Text) laTopicARN = lens _laTopicARN (\ s a -> s{_laTopicARN = a}); --- | The Amazon Resource Name (ARN) of the AWS Lambda function. An example of--- an AWS Lambda function ARN is--- 'arn:aws:lambda:us-west-2:account-id:function:MyFunction'. For more--- information about AWS Lambda, see the--- <http://docs.aws.amazon.com/lambda/latest/dg/welcome.html AWS Lambda Developer Guide>.+-- | The Amazon Resource Name (ARN) of the AWS Lambda function. An example of an AWS Lambda function ARN is 'arn:aws:lambda:us-west-2:account-id:function:MyFunction'. For more information about AWS Lambda, see the <http://docs.aws.amazon.com/lambda/latest/dg/welcome.html AWS Lambda Developer Guide>. laFunctionARN :: Lens' LambdaAction Text laFunctionARN = lens _laFunctionARN (\ s a -> s{_laFunctionARN = a}); @@ -798,8 +695,7 @@     , _mBody = pBody_     } --- | The subject of the message: A short summary of the content, which will--- appear in the recipient\'s inbox.+-- | The subject of the message: A short summary of the content, which will appear in the recipient\'s inbox. mSubject :: Lens' Message Content mSubject = lens _mSubject (\ s a -> s{_mSubject = a}); @@ -815,12 +711,9 @@         toQuery Message'{..}           = mconcat ["Subject" =: _mSubject, "Body" =: _mBody] --- | Message-related information to include in the Delivery Status--- Notification (DSN) when an email that Amazon SES receives on your behalf--- bounces.+-- | Message-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces. ----- For information about receiving email through Amazon SES, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>.+-- For information about receiving email through Amazon SES, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>. -- -- /See:/ 'messageDsn' smart constructor. data MessageDsn = MessageDsn'@@ -848,9 +741,7 @@     , _mdReportingMta = pReportingMta_     } --- | When the message was received by the reporting mail transfer agent--- (MTA), in <https://www.ietf.org/rfc/rfc0822.txt RFC 822> date-time--- format.+-- | When the message was received by the reporting mail transfer agent (MTA), in <https://www.ietf.org/rfc/rfc0822.txt RFC 822> date-time format. mdArrivalDate :: Lens' MessageDsn (Maybe UTCTime) mdArrivalDate = lens _mdArrivalDate (\ s a -> s{_mdArrivalDate = a}) . mapping _Time; @@ -858,10 +749,7 @@ mdExtensionFields :: Lens' MessageDsn [ExtensionField] mdExtensionFields = lens _mdExtensionFields (\ s a -> s{_mdExtensionFields = a}) . _Default . _Coerce; --- | The reporting MTA that attempted to deliver the message, formatted as--- specified in <https://tools.ietf.org/html/rfc3464 RFC 3464>--- ('mta-name-type; mta-name'). The default value is--- 'dns; inbound-smtp.[region].amazonaws.com'.+-- | The reporting MTA that attempted to deliver the message, formatted as specified in <https://tools.ietf.org/html/rfc3464 RFC 3464> ('mta-name-type; mta-name'). The default value is 'dns; inbound-smtp.[region].amazonaws.com'. mdReportingMta :: Lens' MessageDsn Text mdReportingMta = lens _mdReportingMta (\ s a -> s{_mdReportingMta = a}); @@ -898,23 +786,15 @@     { _rmData = _Base64 # pData_     } --- | The raw data of the message. The client must ensure that the message--- format complies with Internet email standards regarding email header--- fields, MIME types, MIME encoding, and base64 encoding (if necessary).+-- | The raw data of the message. The client must ensure that the message format complies with Internet email standards regarding email header fields, MIME types, MIME encoding, and base64 encoding (if necessary). ----- The To:, CC:, and BCC: headers in the raw message can contain a group--- list.+-- The To:, CC:, and BCC: headers in the raw message can contain a group list. ----- If you are using 'SendRawEmail' with sending authorization, you can--- include X-headers in the raw message to specify the \"Source,\"--- \"From,\" and \"Return-Path\" addresses. For more information, see the--- documentation for 'SendRawEmail'.+-- If you are using 'SendRawEmail' with sending authorization, you can include X-headers in the raw message to specify the \"Source,\" \"From,\" and \"Return-Path\" addresses. For more information, see the documentation for 'SendRawEmail'. ----- Do not include these X-headers in the DKIM signature, because they are--- removed by Amazon SES before sending the email.+-- Do not include these X-headers in the DKIM signature, because they are removed by Amazon SES before sending the email. ----- For more information, go to the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html Amazon SES Developer Guide>.+-- For more information, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-raw.html Amazon SES Developer Guide>. -- -- /Note:/ This 'Lens' automatically encodes and decodes Base64 data, -- despite what the AWS documentation might say.@@ -931,12 +811,9 @@ instance ToQuery RawMessage where         toQuery RawMessage'{..} = mconcat ["Data" =: _rmData] --- | An action that Amazon SES can take when it receives an email on behalf--- of one or more email addresses or domains that you own. An instance of--- this data type can represent only one action.+-- | An action that Amazon SES can take when it receives an email on behalf of one or more email addresses or domains that you own. An instance of this data type can represent only one action. ----- For information about setting up receipt rules, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html Amazon SES Developer Guide>.+-- For information about setting up receipt rules, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html Amazon SES Developer Guide>. -- -- /See:/ 'receiptAction' smart constructor. data ReceiptAction = ReceiptAction'@@ -987,29 +864,23 @@ raSNSAction :: Lens' ReceiptAction (Maybe SNSAction) raSNSAction = lens _raSNSAction (\ s a -> s{_raSNSAction = a}); --- | Calls Amazon WorkMail and, optionally, publishes a notification to--- Amazon SNS.+-- | Calls Amazon WorkMail and, optionally, publishes a notification to Amazon SNS. raWorkmailAction :: Lens' ReceiptAction (Maybe WorkmailAction) raWorkmailAction = lens _raWorkmailAction (\ s a -> s{_raWorkmailAction = a}); --- | Rejects the received email by returning a bounce response to the sender--- and, optionally, publishes a notification to Amazon Simple Notification--- Service (Amazon SNS).+-- | Rejects the received email by returning a bounce response to the sender and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS). raBounceAction :: Lens' ReceiptAction (Maybe BounceAction) raBounceAction = lens _raBounceAction (\ s a -> s{_raBounceAction = a}); --- | Calls an AWS Lambda function, and optionally, publishes a notification--- to Amazon SNS.+-- | Calls an AWS Lambda function, and optionally, publishes a notification to Amazon SNS. raLambdaAction :: Lens' ReceiptAction (Maybe LambdaAction) raLambdaAction = lens _raLambdaAction (\ s a -> s{_raLambdaAction = a}); --- | Terminates the evaluation of the receipt rule set and optionally--- publishes a notification to Amazon SNS.+-- | Terminates the evaluation of the receipt rule set and optionally publishes a notification to Amazon SNS. raStopAction :: Lens' ReceiptAction (Maybe StopAction) raStopAction = lens _raStopAction (\ s a -> s{_raStopAction = a}); --- | Saves the received message to an Amazon Simple Storage Service (Amazon--- S3) bucket and, optionally, publishes a notification to Amazon SNS.+-- | Saves the received message to an Amazon Simple Storage Service (Amazon S3) bucket and, optionally, publishes a notification to Amazon SNS. raS3Action :: Lens' ReceiptAction (Maybe S3Action) raS3Action = lens _raS3Action (\ s a -> s{_raS3Action = a}); @@ -1038,11 +909,9 @@                "StopAction" =: _raStopAction,                "S3Action" =: _raS3Action] --- | A receipt IP address filter enables you to specify whether to accept or--- reject mail originating from an IP address or range of IP addresses.+-- | A receipt IP address filter enables you to specify whether to accept or reject mail originating from an IP address or range of IP addresses. ----- For information about setting up IP address filters, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html Amazon SES Developer Guide>.+-- For information about setting up IP address filters, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html Amazon SES Developer Guide>. -- -- /See:/ 'receiptFilter' smart constructor. data ReceiptFilter = ReceiptFilter'@@ -1069,15 +938,13 @@  -- | The name of the IP address filter. The name must: ----- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.),---     underscores (_), or dashes (-).+-- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-). -- -   Start and end with a letter or number. -- -   Contain less than 64 characters. rfName :: Lens' ReceiptFilter Text rfName = lens _rfName (\ s a -> s{_rfName = a}); --- | A structure that provides the IP addresses to block or allow, and--- whether to block or allow incoming mail from them.+-- | A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them. rfIPFilter :: Lens' ReceiptFilter ReceiptIPFilter rfIPFilter = lens _rfIPFilter (\ s a -> s{_rfIPFilter = a}); @@ -1095,11 +962,9 @@           = mconcat               ["Name" =: _rfName, "IpFilter" =: _rfIPFilter] --- | A receipt IP address filter enables you to specify whether to accept or--- reject mail originating from an IP address or range of IP addresses.+-- | A receipt IP address filter enables you to specify whether to accept or reject mail originating from an IP address or range of IP addresses. ----- For information about setting up IP address filters, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html Amazon SES Developer Guide>.+-- For information about setting up IP address filters, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html Amazon SES Developer Guide>. -- -- /See:/ 'receiptIPFilter' smart constructor. data ReceiptIPFilter = ReceiptIPFilter'@@ -1124,16 +989,11 @@     , _rifCIdR = pCIdR_     } --- | Indicates whether to block or allow incoming mail from the specified IP--- addresses.+-- | Indicates whether to block or allow incoming mail from the specified IP addresses. rifPolicy :: Lens' ReceiptIPFilter ReceiptFilterPolicy rifPolicy = lens _rifPolicy (\ s a -> s{_rifPolicy = a}); --- | A single IP address or a range of IP addresses that you want to block or--- allow, specified in Classless Inter-Domain Routing (CIDR) notation. An--- example of a single email address is 10.0.0.1. An example of a range of--- IP addresses is 10.0.0.1\/24. For more information about CIDR notation,--- see <https://tools.ietf.org/html/rfc2317 RFC 2317>.+-- | A single IP address or a range of IP addresses that you want to block or allow, specified in Classless Inter-Domain Routing (CIDR) notation. An example of a single email address is 10.0.0.1. An example of a range of IP addresses is 10.0.0.1\/24. For more information about CIDR notation, see <https://tools.ietf.org/html/rfc2317 RFC 2317>. rifCIdR :: Lens' ReceiptIPFilter Text rifCIdR = lens _rifCIdR (\ s a -> s{_rifCIdR = a}); @@ -1151,17 +1011,11 @@           = mconcat               ["Policy" =: _rifPolicy, "Cidr" =: _rifCIdR] --- | Receipt rules enable you to specify which actions Amazon SES should take--- when it receives mail on behalf of one or more email addresses or--- domains that you own.+-- | Receipt rules enable you to specify which actions Amazon SES should take when it receives mail on behalf of one or more email addresses or domains that you own. ----- Each receipt rule defines a set of email addresses or domains to which--- it applies. If the email addresses or domains match at least one--- recipient address of the message, Amazon SES executes all of the receipt--- rule\'s actions on the message.+-- Each receipt rule defines a set of email addresses or domains to which it applies. If the email addresses or domains match at least one recipient address of the message, Amazon SES executes all of the receipt rule\'s actions on the message. ----- For information about setting up receipt rules, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html Amazon SES Developer Guide>.+-- For information about setting up receipt rules, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html Amazon SES Developer Guide>. -- -- /See:/ 'receiptRule' smart constructor. data ReceiptRule = ReceiptRule'@@ -1201,8 +1055,7 @@     , _rrName = pName_     } --- | If 'true', then messages to which this receipt rule applies are scanned--- for spam and viruses. The default value is 'false'.+-- | If 'true', then messages to which this receipt rule applies are scanned for spam and viruses. The default value is 'false'. rrScanEnabled :: Lens' ReceiptRule (Maybe Bool) rrScanEnabled = lens _rrScanEnabled (\ s a -> s{_rrScanEnabled = a}); @@ -1210,29 +1063,21 @@ rrEnabled :: Lens' ReceiptRule (Maybe Bool) rrEnabled = lens _rrEnabled (\ s a -> s{_rrEnabled = a}); --- | An ordered list of actions to perform on messages that match at least--- one of the recipient email addresses or domains specified in the receipt--- rule.+-- | An ordered list of actions to perform on messages that match at least one of the recipient email addresses or domains specified in the receipt rule. rrActions :: Lens' ReceiptRule [ReceiptAction] rrActions = lens _rrActions (\ s a -> s{_rrActions = a}) . _Default . _Coerce; --- | The recipient domains and email addresses to which the receipt rule--- applies. If this field is not specified, this rule will match all--- recipients under all verified domains.+-- | The recipient domains and email addresses to which the receipt rule applies. If this field is not specified, this rule will match all recipients under all verified domains. rrRecipients :: Lens' ReceiptRule [Text] rrRecipients = lens _rrRecipients (\ s a -> s{_rrRecipients = a}) . _Default . _Coerce; --- | Specifies whether Amazon SES should require that incoming email is--- delivered over a connection encrypted with Transport Layer Security--- (TLS). If this parameter is set to 'Require', Amazon SES will bounce--- emails that are not received over TLS. The default is 'Optional'.+-- | Specifies whether Amazon SES should require that incoming email is delivered over a connection encrypted with Transport Layer Security (TLS). If this parameter is set to 'Require', Amazon SES will bounce emails that are not received over TLS. The default is 'Optional'. rrTLSPolicy :: Lens' ReceiptRule (Maybe TLSPolicy) rrTLSPolicy = lens _rrTLSPolicy (\ s a -> s{_rrTLSPolicy = a});  -- | The name of the receipt rule. The name must: ----- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.),---     underscores (_), or dashes (-).+-- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-). -- -   Start and end with a letter or number. -- -   Contain less than 64 characters. rrName :: Lens' ReceiptRule Text@@ -1267,12 +1112,9 @@  -- | Information about a receipt rule set. ----- A receipt rule set is a collection of rules that specify what Amazon SES--- should do with mail it receives on behalf of your account\'s verified--- domains.+-- A receipt rule set is a collection of rules that specify what Amazon SES should do with mail it receives on behalf of your account\'s verified domains. ----- For information about setting up receipt rule sets, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html Amazon SES Developer Guide>.+-- For information about setting up receipt rule sets, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html Amazon SES Developer Guide>. -- -- /See:/ 'receiptRuleSetMetadata' smart constructor. data ReceiptRuleSetMetadata = ReceiptRuleSetMetadata'@@ -1297,8 +1139,7 @@  -- | The name of the receipt rule set. The name must: ----- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.),---     underscores (_), or dashes (-).+-- -   Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-). -- -   Start and end with a letter or number. -- -   Contain less than 64 characters. rrsmName :: Lens' ReceiptRuleSetMetadata (Maybe Text)@@ -1317,12 +1158,9 @@  instance NFData ReceiptRuleSetMetadata --- | Recipient-related information to include in the Delivery Status--- Notification (DSN) when an email that Amazon SES receives on your behalf--- bounces.+-- | Recipient-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces. ----- For information about receiving email through Amazon SES, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>.+-- For information about receiving email through Amazon SES, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html Amazon SES Developer Guide>. -- -- /See:/ 'recipientDsnFields' smart constructor. data RecipientDsnFields = RecipientDsnFields'@@ -1367,28 +1205,17 @@     , _rdfStatus = pStatus_     } --- | An extended explanation of what went wrong; this is usually an SMTP--- response. See <https://tools.ietf.org/html/rfc3463 RFC 3463> for the--- correct formatting of this parameter.+-- | An extended explanation of what went wrong; this is usually an SMTP response. See <https://tools.ietf.org/html/rfc3463 RFC 3463> for the correct formatting of this parameter. rdfDiagnosticCode :: Lens' RecipientDsnFields (Maybe Text) rdfDiagnosticCode = lens _rdfDiagnosticCode (\ s a -> s{_rdfDiagnosticCode = a}); --- | The MTA to which the remote MTA attempted to deliver the message,--- formatted as specified in <https://tools.ietf.org/html/rfc3464 RFC 3464>--- ('mta-name-type; mta-name'). This parameter typically applies only to--- propagating synchronous bounces.+-- | The MTA to which the remote MTA attempted to deliver the message, formatted as specified in <https://tools.ietf.org/html/rfc3464 RFC 3464> ('mta-name-type; mta-name'). This parameter typically applies only to propagating synchronous bounces. rdfRemoteMta :: Lens' RecipientDsnFields (Maybe Text) rdfRemoteMta = lens _rdfRemoteMta (\ s a -> s{_rdfRemoteMta = a}); --- | The email address to which the message was ultimately delivered. This--- corresponds to the 'Final-Recipient' in the DSN. If not specified,--- 'FinalRecipient' will be set to the 'Recipient' specified in the--- 'BouncedRecipientInfo' structure. Either 'FinalRecipient' or the--- recipient in 'BouncedRecipientInfo' must be a recipient of the original--- bounced message.+-- | The email address to which the message was ultimately delivered. This corresponds to the 'Final-Recipient' in the DSN. If not specified, 'FinalRecipient' will be set to the 'Recipient' specified in the 'BouncedRecipientInfo' structure. Either 'FinalRecipient' or the recipient in 'BouncedRecipientInfo' must be a recipient of the original bounced message. ----- Do not prepend the 'FinalRecipient' email address with 'rfc 822;', as--- described in <https://tools.ietf.org/html/rfc3798 RFC 3798>.+-- Do not prepend the 'FinalRecipient' email address with 'rfc 822;', as described in <https://tools.ietf.org/html/rfc3798 RFC 3798>. rdfFinalRecipient :: Lens' RecipientDsnFields (Maybe Text) rdfFinalRecipient = lens _rdfFinalRecipient (\ s a -> s{_rdfFinalRecipient = a}); @@ -1396,19 +1223,15 @@ rdfExtensionFields :: Lens' RecipientDsnFields [ExtensionField] rdfExtensionFields = lens _rdfExtensionFields (\ s a -> s{_rdfExtensionFields = a}) . _Default . _Coerce; --- | The time the final delivery attempt was made, in--- <https://www.ietf.org/rfc/rfc0822.txt RFC 822> date-time format.+-- | The time the final delivery attempt was made, in <https://www.ietf.org/rfc/rfc0822.txt RFC 822> date-time format. rdfLastAttemptDate :: Lens' RecipientDsnFields (Maybe UTCTime) rdfLastAttemptDate = lens _rdfLastAttemptDate (\ s a -> s{_rdfLastAttemptDate = a}) . mapping _Time; --- | The action performed by the reporting mail transfer agent (MTA) as a--- result of its attempt to deliver the message to the recipient address.--- This is required by <https://tools.ietf.org/html/rfc3464 RFC 3464>.+-- | The action performed by the reporting mail transfer agent (MTA) as a result of its attempt to deliver the message to the recipient address. This is required by <https://tools.ietf.org/html/rfc3464 RFC 3464>. rdfAction :: Lens' RecipientDsnFields DsnAction rdfAction = lens _rdfAction (\ s a -> s{_rdfAction = a}); --- | The status code that indicates what went wrong. This is required by--- <https://tools.ietf.org/html/rfc3464 RFC 3464>.+-- | The status code that indicates what went wrong. This is required by <https://tools.ietf.org/html/rfc3464 RFC 3464>. rdfStatus :: Lens' RecipientDsnFields Text rdfStatus = lens _rdfStatus (\ s a -> s{_rdfStatus = a}); @@ -1428,23 +1251,13 @@                "LastAttemptDate" =: _rdfLastAttemptDate,                "Action" =: _rdfAction, "Status" =: _rdfStatus] --- | When included in a receipt rule, this action saves the received message--- to an Amazon Simple Storage Service (Amazon S3) bucket and, optionally,--- publishes a notification to Amazon Simple Notification Service (Amazon--- SNS).+-- | When included in a receipt rule, this action saves the received message to an Amazon Simple Storage Service (Amazon S3) bucket and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS). ----- To enable Amazon SES to write emails to your Amazon S3 bucket, use an--- AWS KMS key to encrypt your emails, or publish to an Amazon SNS topic of--- another account, Amazon SES must have permission to access those--- resources. For information about giving permissions, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>.+-- To enable Amazon SES to write emails to your Amazon S3 bucket, use an AWS KMS key to encrypt your emails, or publish to an Amazon SNS topic of another account, Amazon SES must have permission to access those resources. For information about giving permissions, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>. ----- When you save your emails to an Amazon S3 bucket, the maximum email size--- (including headers) is 30 MB. Emails larger than that will bounce.+-- When you save your emails to an Amazon S3 bucket, the maximum email size (including headers) is 30 MB. Emails larger than that will bounce. ----- For information about specifying Amazon S3 actions in receipt rules, see--- the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-s3.html Amazon SES Developer Guide>.+-- For information about specifying Amazon S3 actions in receipt rules, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-s3.html Amazon SES Developer Guide>. -- -- /See:/ 's3Action' smart constructor. data S3Action = S3Action'@@ -1476,55 +1289,22 @@     , _s3BucketName = pBucketName_     } --- | The customer master key that Amazon SES should use to encrypt your--- emails before saving them to the Amazon S3 bucket. You can use the--- default master key or a custom master key you created in AWS KMS as--- follows:+-- | The customer master key that Amazon SES should use to encrypt your emails before saving them to the Amazon S3 bucket. You can use the default master key or a custom master key you created in AWS KMS as follows: ----- -   To use the default master key, provide an ARN in the form of---     'arn:aws:kms:REGION:ACCOUNT-ID-WITHOUT-HYPHENS:alias\/aws\/ses'. For---     example, if your AWS account ID is 123456789012 and you want to use---     the default master key in the US West (Oregon) region, the ARN of---     the default master key would be---     'arn:aws:kms:us-west-2:123456789012:alias\/aws\/ses'. If you use the---     default master key, you don\'t need to perform any extra steps to---     give Amazon SES permission to use the key.--- -   To use a custom master key you created in AWS KMS, provide the ARN---     of the master key and ensure that you add a statement to your key\'s---     policy to give Amazon SES permission to use it. For more information---     about giving permissions, see the---     <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>.+-- -   To use the default master key, provide an ARN in the form of 'arn:aws:kms:REGION:ACCOUNT-ID-WITHOUT-HYPHENS:alias\/aws\/ses'. For example, if your AWS account ID is 123456789012 and you want to use the default master key in the US West (Oregon) region, the ARN of the default master key would be 'arn:aws:kms:us-west-2:123456789012:alias\/aws\/ses'. If you use the default master key, you don\'t need to perform any extra steps to give Amazon SES permission to use the key.+-- -   To use a custom master key you created in AWS KMS, provide the ARN of the master key and ensure that you add a statement to your key\'s policy to give Amazon SES permission to use it. For more information about giving permissions, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>. ----- For more information about key policies, see the--- <http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html AWS KMS Developer Guide>.--- If you do not specify a master key, Amazon SES will not encrypt your--- emails.+-- For more information about key policies, see the <http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html AWS KMS Developer Guide>. If you do not specify a master key, Amazon SES will not encrypt your emails. ----- Your mail is encrypted by Amazon SES using the Amazon S3 encryption--- client before the mail is submitted to Amazon S3 for storage. It is not--- encrypted using Amazon S3 server-side encryption. This means that you--- must use the Amazon S3 encryption client to decrypt the email after--- retrieving it from Amazon S3, as the service has no access to use your--- AWS KMS keys for decryption. This encryption client is currently--- available with the <https://aws.amazon.com/sdk-for-java/ AWS Java SDK>--- and <https://aws.amazon.com/sdk-for-ruby/ AWS Ruby SDK> only. For more--- information about client-side encryption using AWS KMS master keys, see--- the--- <http://alpha-docs-aws.amazon.com/AmazonS3/latest/dev/UsingClientSideEncryption.html Amazon S3 Developer Guide>.+-- Your mail is encrypted by Amazon SES using the Amazon S3 encryption client before the mail is submitted to Amazon S3 for storage. It is not encrypted using Amazon S3 server-side encryption. This means that you must use the Amazon S3 encryption client to decrypt the email after retrieving it from Amazon S3, as the service has no access to use your AWS KMS keys for decryption. This encryption client is currently available with the <https://aws.amazon.com/sdk-for-java/ AWS Java SDK> and <https://aws.amazon.com/sdk-for-ruby/ AWS Ruby SDK> only. For more information about client-side encryption using AWS KMS master keys, see the <http://alpha-docs-aws.amazon.com/AmazonS3/latest/dev/UsingClientSideEncryption.html Amazon S3 Developer Guide>. s3KMSKeyARN :: Lens' S3Action (Maybe Text) s3KMSKeyARN = lens _s3KMSKeyARN (\ s a -> s{_s3KMSKeyARN = a}); --- | The ARN of the Amazon SNS topic to notify when the message is saved to--- the Amazon S3 bucket. An example of an Amazon SNS topic ARN is--- 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about--- Amazon SNS topics, see the--- <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>.+-- | The ARN of the Amazon SNS topic to notify when the message is saved to the Amazon S3 bucket. An example of an Amazon SNS topic ARN is 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about Amazon SNS topics, see the <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>. s3TopicARN :: Lens' S3Action (Maybe Text) s3TopicARN = lens _s3TopicARN (\ s a -> s{_s3TopicARN = a}); --- | The key prefix of the Amazon S3 bucket. The key prefix is similar to a--- directory name that enables you to store similar data under the same--- directory in a bucket.+-- | The key prefix of the Amazon S3 bucket. The key prefix is similar to a directory name that enables you to store similar data under the same directory in a bucket. s3ObjectKeyPrefix :: Lens' S3Action (Maybe Text) s3ObjectKeyPrefix = lens _s3ObjectKeyPrefix (\ s a -> s{_s3ObjectKeyPrefix = a}); @@ -1551,27 +1331,13 @@                "ObjectKeyPrefix" =: _s3ObjectKeyPrefix,                "BucketName" =: _s3BucketName] --- | When included in a receipt rule, this action publishes a notification to--- Amazon Simple Notification Service (Amazon SNS). This action includes a--- complete copy of the email content in the Amazon SNS notifications.--- Amazon SNS notifications for all other actions simply provide--- information about the email. They do not include the email content--- itself.+-- | When included in a receipt rule, this action publishes a notification to Amazon Simple Notification Service (Amazon SNS). This action includes a complete copy of the email content in the Amazon SNS notifications. Amazon SNS notifications for all other actions simply provide information about the email. They do not include the email content itself. ----- If you own the Amazon SNS topic, you don\'t need to do anything to give--- Amazon SES permission to publish emails to it. However, if you don\'t--- own the Amazon SNS topic, you need to attach a policy to the topic to--- give Amazon SES permissions to access it. For information about giving--- permissions, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>.+-- If you own the Amazon SNS topic, you don\'t need to do anything to give Amazon SES permission to publish emails to it. However, if you don\'t own the Amazon SNS topic, you need to attach a policy to the topic to give Amazon SES permissions to access it. For information about giving permissions, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html Amazon SES Developer Guide>. ----- You can only publish emails that are 150 KB or less (including the--- header) to Amazon SNS. Larger emails will bounce. If you anticipate--- emails larger than 150 KB, use the S3 action instead.+-- You can only publish emails that are 150 KB or less (including the header) to Amazon SNS. Larger emails will bounce. If you anticipate emails larger than 150 KB, use the S3 action instead. ----- For information about using a receipt rule to publish an Amazon SNS--- notification, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-sns.html Amazon SES Developer Guide>.+-- For information about using a receipt rule to publish an Amazon SNS notification, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-sns.html Amazon SES Developer Guide>. -- -- /See:/ 'snsAction' smart constructor. data SNSAction = SNSAction'@@ -1595,18 +1361,11 @@     , _saTopicARN = pTopicARN_     } --- | The encoding to use for the email within the Amazon SNS notification.--- UTF-8 is easier to use, but may not preserve all special characters when--- a message was encoded with a different encoding format. Base64 preserves--- all special characters. The default value is UTF-8.+-- | The encoding to use for the email within the Amazon SNS notification. UTF-8 is easier to use, but may not preserve all special characters when a message was encoded with a different encoding format. Base64 preserves all special characters. The default value is UTF-8. saEncoding :: Lens' SNSAction (Maybe SNSActionEncoding) saEncoding = lens _saEncoding (\ s a -> s{_saEncoding = a}); --- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify. An--- example of an Amazon SNS topic ARN is--- 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about--- Amazon SNS topics, see the--- <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>.+-- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify. An example of an Amazon SNS topic ARN is 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about Amazon SNS topics, see the <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>. saTopicARN :: Lens' SNSAction Text saTopicARN = lens _saTopicARN (\ s a -> s{_saTopicARN = a}); @@ -1625,8 +1384,7 @@               ["Encoding" =: _saEncoding,                "TopicArn" =: _saTopicARN] --- | Represents sending statistics data. Each 'SendDataPoint' contains--- statistics for a 15-minute period of sending activity.+-- | Represents sending statistics data. Each 'SendDataPoint' contains statistics for a 15-minute period of sending activity. -- -- /See:/ 'sendDataPoint' smart constructor. data SendDataPoint = SendDataPoint'@@ -1693,12 +1451,9 @@  instance NFData SendDataPoint --- | When included in a receipt rule, this action terminates the evaluation--- of the receipt rule set and, optionally, publishes a notification to--- Amazon Simple Notification Service (Amazon SNS).+-- | When included in a receipt rule, this action terminates the evaluation of the receipt rule set and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS). ----- For information about setting a stop action in a receipt rule, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-stop.html Amazon SES Developer Guide>.+-- For information about setting a stop action in a receipt rule, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-stop.html Amazon SES Developer Guide>. -- -- /See:/ 'stopAction' smart constructor. data StopAction = StopAction'@@ -1722,16 +1477,11 @@     , _sScope = pScope_     } --- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when--- the stop action is taken. An example of an Amazon SNS topic ARN is--- 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about--- Amazon SNS topics, see the--- <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>.+-- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the stop action is taken. An example of an Amazon SNS topic ARN is 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about Amazon SNS topics, see the <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>. sTopicARN :: Lens' StopAction (Maybe Text) sTopicARN = lens _sTopicARN (\ s a -> s{_sTopicARN = a}); --- | The scope to which the Stop action applies. That is, what is being--- stopped.+-- | The scope to which the Stop action applies. That is, what is being stopped. sScope :: Lens' StopAction StopScope sScope = lens _sScope (\ s a -> s{_sScope = a}); @@ -1749,14 +1499,9 @@           = mconcat               ["TopicArn" =: _sTopicARN, "Scope" =: _sScope] --- | When included in a receipt rule, this action calls Amazon WorkMail and,--- optionally, publishes a notification to Amazon Simple Notification--- Service (Amazon SNS). You will typically not use this action directly--- because Amazon WorkMail adds the rule automatically during its setup--- procedure.+-- | When included in a receipt rule, this action calls Amazon WorkMail and, optionally, publishes a notification to Amazon Simple Notification Service (Amazon SNS). You will typically not use this action directly because Amazon WorkMail adds the rule automatically during its setup procedure. ----- For information using a receipt rule to call Amazon WorkMail, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-workmail.html Amazon SES Developer Guide>.+-- For information using a receipt rule to call Amazon WorkMail, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-action-workmail.html Amazon SES Developer Guide>. -- -- /See:/ 'workmailAction' smart constructor. data WorkmailAction = WorkmailAction'@@ -1780,19 +1525,11 @@     , _waOrganizationARN = pOrganizationARN_     } --- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when--- the WorkMail action is called. An example of an Amazon SNS topic ARN is--- 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about--- Amazon SNS topics, see the--- <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>.+-- | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the WorkMail action is called. An example of an Amazon SNS topic ARN is 'arn:aws:sns:us-west-2:123456789012:MyTopic'. For more information about Amazon SNS topics, see the <http://docs.aws.amazon.com/sns/latest/dg/CreateTopic.html Amazon SNS Developer Guide>. waTopicARN :: Lens' WorkmailAction (Maybe Text) waTopicARN = lens _waTopicARN (\ s a -> s{_waTopicARN = a}); --- | The ARN of the Amazon WorkMail organization. An example of an Amazon--- WorkMail organization ARN is--- 'arn:aws:workmail:us-west-2:123456789012:organization\/m-68755160c4cb4e29a2b2f8fb58f359d7'.--- For information about Amazon WorkMail organizations, see the--- <http://docs.aws.amazon.com/workmail/latest/adminguide/organizations_overview.html Amazon WorkMail Administrator Guide>.+-- | The ARN of the Amazon WorkMail organization. An example of an Amazon WorkMail organization ARN is 'arn:aws:workmail:us-west-2:123456789012:organization\/m-68755160c4cb4e29a2b2f8fb58f359d7'. For information about Amazon WorkMail organizations, see the <http://docs.aws.amazon.com/workmail/latest/adminguide/organizations_overview.html Amazon WorkMail Administrator Guide>. waOrganizationARN :: Lens' WorkmailAction Text waOrganizationARN = lens _waOrganizationARN (\ s a -> s{_waOrganizationARN = a}); 
gen/Network/AWS/SES/UpdateReceiptRule.hs view
@@ -20,8 +20,7 @@ -- -- Updates a receipt rule. ----- For information about managing receipt rules, see the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html Amazon SES Developer Guide>.+-- For information about managing receipt rules, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html Amazon SES Developer Guide>. -- -- This action is throttled at one request per second. module Network.AWS.SES.UpdateReceiptRule
gen/Network/AWS/SES/VerifyDomainDkim.hs view
@@ -18,22 +18,13 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- 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 create DNS CNAME records that point to DKIM public keys--- hosted by Amazon SES. Amazon Web Services will eventually detect that--- you have updated your DNS records; this detection process may take up to--- 72 hours. Upon successful detection, Amazon SES will be able to--- DKIM-sign email originating from that domain.+-- 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 create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign email originating from that domain. -- -- This action is throttled at one request per second. ----- To enable or disable Easy DKIM signing for a domain, use the--- 'SetIdentityDkimEnabled' action.+-- To enable or disable Easy DKIM signing for a domain, use the 'SetIdentityDkimEnabled' action. ----- For more information about creating DNS records using DKIM tokens, go to--- the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html Amazon SES Developer Guide>.+-- For more information about creating DNS records using DKIM tokens, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html Amazon SES Developer Guide>. module Network.AWS.SES.VerifyDomainDkim     (     -- * Creating a Request@@ -133,19 +124,11 @@ vddrsResponseStatus :: Lens' VerifyDomainDkimResponse Int vddrsResponseStatus = lens _vddrsResponseStatus (\ s a -> s{_vddrsResponseStatus = a}); --- | A set of character strings that represent the domain\'s identity. If the--- identity is an email address, the tokens represent the domain of that--- address.+-- | A set of character strings that represent the domain\'s identity. If the identity is an email address, the tokens represent the domain of that address. ----- Using these tokens, you will need to create DNS CNAME records that point--- to DKIM public keys hosted by Amazon SES. Amazon Web Services will--- eventually detect that you have updated your DNS records; this detection--- process may take up to 72 hours. Upon successful detection, Amazon SES--- will be able to DKIM-sign emails originating from that domain.+-- Using these tokens, you will need to create DNS CNAME records that point to DKIM public keys hosted by Amazon SES. Amazon Web Services will eventually detect that you have updated your DNS records; this detection process may take up to 72 hours. Upon successful detection, Amazon SES will be able to DKIM-sign emails originating from that domain. ----- For more information about creating DNS records using DKIM tokens, go to--- the--- <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html Amazon SES Developer Guide>.+-- For more information about creating DNS records using DKIM tokens, go to the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html Amazon SES Developer Guide>. vddrsDkimTokens :: Lens' VerifyDomainDkimResponse [Text] vddrsDkimTokens = lens _vddrsDkimTokens (\ s a -> s{_vddrsDkimTokens = a}) . _Coerce; 
gen/Network/AWS/SES/VerifyDomainIdentity.hs view
@@ -120,8 +120,7 @@ vdirsResponseStatus :: Lens' VerifyDomainIdentityResponse Int vdirsResponseStatus = lens _vdirsResponseStatus (\ s a -> s{_vdirsResponseStatus = a}); --- | A TXT record that must be placed in the DNS settings for the domain, in--- order to complete domain verification.+-- | A TXT record that must be placed in the DNS settings for the domain, in order to complete domain verification. vdirsVerificationToken :: Lens' VerifyDomainIdentityResponse Text vdirsVerificationToken = lens _vdirsVerificationToken (\ s a -> s{_vdirsVerificationToken = a}); 
gen/Network/AWS/SES/VerifyEmailAddress.hs view
@@ -18,12 +18,9 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Verifies an email address. This action causes a confirmation email--- message to be sent to the specified address.+-- Verifies an email address. This action causes a confirmation email message to be sent to the specified address. ----- The VerifyEmailAddress action is deprecated as of the May 15, 2012--- release of Domain Verification. The VerifyEmailIdentity action is now--- preferred.+-- The VerifyEmailAddress action is deprecated as of the May 15, 2012 release of Domain Verification. The VerifyEmailIdentity action is now preferred. -- -- This action is throttled at one request per second. module Network.AWS.SES.VerifyEmailAddress
gen/Network/AWS/SES/VerifyEmailIdentity.hs view
@@ -18,8 +18,7 @@ -- Stability   : auto-generated -- Portability : non-portable (GHC extensions) ----- Verifies an email address. This action causes a confirmation email--- message to be sent to the specified address.+-- Verifies an email address. This action causes a confirmation email message to be sent to the specified address. -- -- This action is throttled at one request per second. module Network.AWS.SES.VerifyEmailIdentity
test/Test/AWS/Gen/SES.hs view
@@ -28,253 +28,253 @@ -- fixtures :: TestTree -- fixtures = --     [ testGroup "request"---         [ testCreateReceiptRuleSet $+--         [ requestCreateReceiptRuleSet $ --             createReceiptRuleSet -----         , testGetSendQuota $+--         , requestGetSendQuota $ --             getSendQuota -----         , testPutIdentityPolicy $+--         , requestPutIdentityPolicy $ --             putIdentityPolicy -----         , testDeleteIdentityPolicy $+--         , requestDeleteIdentityPolicy $ --             deleteIdentityPolicy -----         , testGetIdentityNotificationAttributes $+--         , requestGetIdentityNotificationAttributes $ --             getIdentityNotificationAttributes -----         , testListIdentityPolicies $+--         , requestListIdentityPolicies $ --             listIdentityPolicies -----         , testSetIdentityDkimEnabled $+--         , requestSetIdentityDkimEnabled $ --             setIdentityDkimEnabled -----         , testListReceiptFilters $+--         , requestListReceiptFilters $ --             listReceiptFilters -----         , testDescribeReceiptRuleSet $+--         , requestDescribeReceiptRuleSet $ --             describeReceiptRuleSet -----         , testGetIdentityMailFromDomainAttributes $+--         , requestGetIdentityMailFromDomainAttributes $ --             getIdentityMailFromDomainAttributes -----         , testCreateReceiptFilter $+--         , requestCreateReceiptFilter $ --             createReceiptFilter -----         , testSetIdentityMailFromDomain $+--         , requestSetIdentityMailFromDomain $ --             setIdentityMailFromDomain -----         , testSetIdentityFeedbackForwardingEnabled $+--         , requestSetIdentityFeedbackForwardingEnabled $ --             setIdentityFeedbackForwardingEnabled -----         , testGetIdentityVerificationAttributes $+--         , requestGetIdentityVerificationAttributes $ --             getIdentityVerificationAttributes -----         , testGetIdentityPolicies $+--         , requestGetIdentityPolicies $ --             getIdentityPolicies -----         , testVerifyDomainIdentity $+--         , requestVerifyDomainIdentity $ --             verifyDomainIdentity -----         , testReorderReceiptRuleSet $+--         , requestReorderReceiptRuleSet $ --             reorderReceiptRuleSet -----         , testListReceiptRuleSets $+--         , requestListReceiptRuleSets $ --             listReceiptRuleSets -----         , testDeleteReceiptRuleSet $+--         , requestDeleteReceiptRuleSet $ --             deleteReceiptRuleSet -----         , testSetReceiptRulePosition $+--         , requestSetReceiptRulePosition $ --             setReceiptRulePosition -----         , testSendBounce $+--         , requestSendBounce $ --             sendBounce -----         , testGetIdentityDkimAttributes $+--         , requestGetIdentityDkimAttributes $ --             getIdentityDkimAttributes -----         , testVerifyDomainDkim $+--         , requestVerifyDomainDkim $ --             verifyDomainDkim -----         , testSendRawEmail $+--         , requestSendRawEmail $ --             sendRawEmail -----         , testGetSendStatistics $+--         , requestGetSendStatistics $ --             getSendStatistics -----         , testDeleteIdentity $+--         , requestDeleteIdentity $ --             deleteIdentity -----         , testDescribeReceiptRule $+--         , requestDescribeReceiptRule $ --             describeReceiptRule -----         , testListIdentities $+--         , requestListIdentities $ --             listIdentities -----         , testVerifyEmailIdentity $+--         , requestVerifyEmailIdentity $ --             verifyEmailIdentity -----         , testVerifyEmailAddress $+--         , requestVerifyEmailAddress $ --             verifyEmailAddress -----         , testDeleteVerifiedEmailAddress $+--         , requestDeleteVerifiedEmailAddress $ --             deleteVerifiedEmailAddress -----         , testDeleteReceiptFilter $+--         , requestDeleteReceiptFilter $ --             deleteReceiptFilter -----         , testListVerifiedEmailAddresses $+--         , requestListVerifiedEmailAddresses $ --             listVerifiedEmailAddresses -----         , testSetIdentityNotificationTopic $+--         , requestSetIdentityNotificationTopic $ --             setIdentityNotificationTopic -----         , testSendEmail $+--         , requestSendEmail $ --             sendEmail -----         , testDeleteReceiptRule $+--         , requestDeleteReceiptRule $ --             deleteReceiptRule -----         , testUpdateReceiptRule $+--         , requestUpdateReceiptRule $ --             updateReceiptRule -----         , testCloneReceiptRuleSet $+--         , requestCloneReceiptRuleSet $ --             cloneReceiptRuleSet -----         , testCreateReceiptRule $+--         , requestCreateReceiptRule $ --             createReceiptRule -----         , testSetActiveReceiptRuleSet $+--         , requestSetActiveReceiptRuleSet $ --             setActiveReceiptRuleSet -----         , testDescribeActiveReceiptRuleSet $+--         , requestDescribeActiveReceiptRuleSet $ --             describeActiveReceiptRuleSet -- --           ]  --     , testGroup "response"---         [ testCreateReceiptRuleSetResponse $+--         [ responseCreateReceiptRuleSet $ --             createReceiptRuleSetResponse -----         , testGetSendQuotaResponse $+--         , responseGetSendQuota $ --             getSendQuotaResponse -----         , testPutIdentityPolicyResponse $+--         , responsePutIdentityPolicy $ --             putIdentityPolicyResponse -----         , testDeleteIdentityPolicyResponse $+--         , responseDeleteIdentityPolicy $ --             deleteIdentityPolicyResponse -----         , testGetIdentityNotificationAttributesResponse $+--         , responseGetIdentityNotificationAttributes $ --             getIdentityNotificationAttributesResponse -----         , testListIdentityPoliciesResponse $+--         , responseListIdentityPolicies $ --             listIdentityPoliciesResponse -----         , testSetIdentityDkimEnabledResponse $+--         , responseSetIdentityDkimEnabled $ --             setIdentityDkimEnabledResponse -----         , testListReceiptFiltersResponse $+--         , responseListReceiptFilters $ --             listReceiptFiltersResponse -----         , testDescribeReceiptRuleSetResponse $+--         , responseDescribeReceiptRuleSet $ --             describeReceiptRuleSetResponse -----         , testGetIdentityMailFromDomainAttributesResponse $+--         , responseGetIdentityMailFromDomainAttributes $ --             getIdentityMailFromDomainAttributesResponse -----         , testCreateReceiptFilterResponse $+--         , responseCreateReceiptFilter $ --             createReceiptFilterResponse -----         , testSetIdentityMailFromDomainResponse $+--         , responseSetIdentityMailFromDomain $ --             setIdentityMailFromDomainResponse -----         , testSetIdentityFeedbackForwardingEnabledResponse $+--         , responseSetIdentityFeedbackForwardingEnabled $ --             setIdentityFeedbackForwardingEnabledResponse -----         , testGetIdentityVerificationAttributesResponse $+--         , responseGetIdentityVerificationAttributes $ --             getIdentityVerificationAttributesResponse -----         , testGetIdentityPoliciesResponse $+--         , responseGetIdentityPolicies $ --             getIdentityPoliciesResponse -----         , testVerifyDomainIdentityResponse $+--         , responseVerifyDomainIdentity $ --             verifyDomainIdentityResponse -----         , testReorderReceiptRuleSetResponse $+--         , responseReorderReceiptRuleSet $ --             reorderReceiptRuleSetResponse -----         , testListReceiptRuleSetsResponse $+--         , responseListReceiptRuleSets $ --             listReceiptRuleSetsResponse -----         , testDeleteReceiptRuleSetResponse $+--         , responseDeleteReceiptRuleSet $ --             deleteReceiptRuleSetResponse -----         , testSetReceiptRulePositionResponse $+--         , responseSetReceiptRulePosition $ --             setReceiptRulePositionResponse -----         , testSendBounceResponse $+--         , responseSendBounce $ --             sendBounceResponse -----         , testGetIdentityDkimAttributesResponse $+--         , responseGetIdentityDkimAttributes $ --             getIdentityDkimAttributesResponse -----         , testVerifyDomainDkimResponse $+--         , responseVerifyDomainDkim $ --             verifyDomainDkimResponse -----         , testSendRawEmailResponse $+--         , responseSendRawEmail $ --             sendRawEmailResponse -----         , testGetSendStatisticsResponse $+--         , responseGetSendStatistics $ --             getSendStatisticsResponse -----         , testDeleteIdentityResponse $+--         , responseDeleteIdentity $ --             deleteIdentityResponse -----         , testDescribeReceiptRuleResponse $+--         , responseDescribeReceiptRule $ --             describeReceiptRuleResponse -----         , testListIdentitiesResponse $+--         , responseListIdentities $ --             listIdentitiesResponse -----         , testVerifyEmailIdentityResponse $+--         , responseVerifyEmailIdentity $ --             verifyEmailIdentityResponse -----         , testVerifyEmailAddressResponse $+--         , responseVerifyEmailAddress $ --             verifyEmailAddressResponse -----         , testDeleteVerifiedEmailAddressResponse $+--         , responseDeleteVerifiedEmailAddress $ --             deleteVerifiedEmailAddressResponse -----         , testDeleteReceiptFilterResponse $+--         , responseDeleteReceiptFilter $ --             deleteReceiptFilterResponse -----         , testListVerifiedEmailAddressesResponse $+--         , responseListVerifiedEmailAddresses $ --             listVerifiedEmailAddressesResponse -----         , testSetIdentityNotificationTopicResponse $+--         , responseSetIdentityNotificationTopic $ --             setIdentityNotificationTopicResponse -----         , testSendEmailResponse $+--         , responseSendEmail $ --             sendEmailResponse -----         , testDeleteReceiptRuleResponse $+--         , responseDeleteReceiptRule $ --             deleteReceiptRuleResponse -----         , testUpdateReceiptRuleResponse $+--         , responseUpdateReceiptRule $ --             updateReceiptRuleResponse -----         , testCloneReceiptRuleSetResponse $+--         , responseCloneReceiptRuleSet $ --             cloneReceiptRuleSetResponse -----         , testCreateReceiptRuleResponse $+--         , responseCreateReceiptRule $ --             createReceiptRuleResponse -----         , testSetActiveReceiptRuleSetResponse $+--         , responseSetActiveReceiptRuleSet $ --             setActiveReceiptRuleSetResponse -----         , testDescribeActiveReceiptRuleSetResponse $+--         , responseDescribeActiveReceiptRuleSet $ --             describeActiveReceiptRuleSetResponse -- --           ]@@ -282,495 +282,495 @@  -- Requests -testCreateReceiptRuleSet :: CreateReceiptRuleSet -> TestTree-testCreateReceiptRuleSet = req+requestCreateReceiptRuleSet :: CreateReceiptRuleSet -> TestTree+requestCreateReceiptRuleSet = req     "CreateReceiptRuleSet"     "fixture/CreateReceiptRuleSet.yaml" -testGetSendQuota :: GetSendQuota -> TestTree-testGetSendQuota = req+requestGetSendQuota :: GetSendQuota -> TestTree+requestGetSendQuota = req     "GetSendQuota"     "fixture/GetSendQuota.yaml" -testPutIdentityPolicy :: PutIdentityPolicy -> TestTree-testPutIdentityPolicy = req+requestPutIdentityPolicy :: PutIdentityPolicy -> TestTree+requestPutIdentityPolicy = req     "PutIdentityPolicy"     "fixture/PutIdentityPolicy.yaml" -testDeleteIdentityPolicy :: DeleteIdentityPolicy -> TestTree-testDeleteIdentityPolicy = req+requestDeleteIdentityPolicy :: DeleteIdentityPolicy -> TestTree+requestDeleteIdentityPolicy = req     "DeleteIdentityPolicy"     "fixture/DeleteIdentityPolicy.yaml" -testGetIdentityNotificationAttributes :: GetIdentityNotificationAttributes -> TestTree-testGetIdentityNotificationAttributes = req+requestGetIdentityNotificationAttributes :: GetIdentityNotificationAttributes -> TestTree+requestGetIdentityNotificationAttributes = req     "GetIdentityNotificationAttributes"     "fixture/GetIdentityNotificationAttributes.yaml" -testListIdentityPolicies :: ListIdentityPolicies -> TestTree-testListIdentityPolicies = req+requestListIdentityPolicies :: ListIdentityPolicies -> TestTree+requestListIdentityPolicies = req     "ListIdentityPolicies"     "fixture/ListIdentityPolicies.yaml" -testSetIdentityDkimEnabled :: SetIdentityDkimEnabled -> TestTree-testSetIdentityDkimEnabled = req+requestSetIdentityDkimEnabled :: SetIdentityDkimEnabled -> TestTree+requestSetIdentityDkimEnabled = req     "SetIdentityDkimEnabled"     "fixture/SetIdentityDkimEnabled.yaml" -testListReceiptFilters :: ListReceiptFilters -> TestTree-testListReceiptFilters = req+requestListReceiptFilters :: ListReceiptFilters -> TestTree+requestListReceiptFilters = req     "ListReceiptFilters"     "fixture/ListReceiptFilters.yaml" -testDescribeReceiptRuleSet :: DescribeReceiptRuleSet -> TestTree-testDescribeReceiptRuleSet = req+requestDescribeReceiptRuleSet :: DescribeReceiptRuleSet -> TestTree+requestDescribeReceiptRuleSet = req     "DescribeReceiptRuleSet"     "fixture/DescribeReceiptRuleSet.yaml" -testGetIdentityMailFromDomainAttributes :: GetIdentityMailFromDomainAttributes -> TestTree-testGetIdentityMailFromDomainAttributes = req+requestGetIdentityMailFromDomainAttributes :: GetIdentityMailFromDomainAttributes -> TestTree+requestGetIdentityMailFromDomainAttributes = req     "GetIdentityMailFromDomainAttributes"     "fixture/GetIdentityMailFromDomainAttributes.yaml" -testCreateReceiptFilter :: CreateReceiptFilter -> TestTree-testCreateReceiptFilter = req+requestCreateReceiptFilter :: CreateReceiptFilter -> TestTree+requestCreateReceiptFilter = req     "CreateReceiptFilter"     "fixture/CreateReceiptFilter.yaml" -testSetIdentityMailFromDomain :: SetIdentityMailFromDomain -> TestTree-testSetIdentityMailFromDomain = req+requestSetIdentityMailFromDomain :: SetIdentityMailFromDomain -> TestTree+requestSetIdentityMailFromDomain = req     "SetIdentityMailFromDomain"     "fixture/SetIdentityMailFromDomain.yaml" -testSetIdentityFeedbackForwardingEnabled :: SetIdentityFeedbackForwardingEnabled -> TestTree-testSetIdentityFeedbackForwardingEnabled = req+requestSetIdentityFeedbackForwardingEnabled :: SetIdentityFeedbackForwardingEnabled -> TestTree+requestSetIdentityFeedbackForwardingEnabled = req     "SetIdentityFeedbackForwardingEnabled"     "fixture/SetIdentityFeedbackForwardingEnabled.yaml" -testGetIdentityVerificationAttributes :: GetIdentityVerificationAttributes -> TestTree-testGetIdentityVerificationAttributes = req+requestGetIdentityVerificationAttributes :: GetIdentityVerificationAttributes -> TestTree+requestGetIdentityVerificationAttributes = req     "GetIdentityVerificationAttributes"     "fixture/GetIdentityVerificationAttributes.yaml" -testGetIdentityPolicies :: GetIdentityPolicies -> TestTree-testGetIdentityPolicies = req+requestGetIdentityPolicies :: GetIdentityPolicies -> TestTree+requestGetIdentityPolicies = req     "GetIdentityPolicies"     "fixture/GetIdentityPolicies.yaml" -testVerifyDomainIdentity :: VerifyDomainIdentity -> TestTree-testVerifyDomainIdentity = req+requestVerifyDomainIdentity :: VerifyDomainIdentity -> TestTree+requestVerifyDomainIdentity = req     "VerifyDomainIdentity"     "fixture/VerifyDomainIdentity.yaml" -testReorderReceiptRuleSet :: ReorderReceiptRuleSet -> TestTree-testReorderReceiptRuleSet = req+requestReorderReceiptRuleSet :: ReorderReceiptRuleSet -> TestTree+requestReorderReceiptRuleSet = req     "ReorderReceiptRuleSet"     "fixture/ReorderReceiptRuleSet.yaml" -testListReceiptRuleSets :: ListReceiptRuleSets -> TestTree-testListReceiptRuleSets = req+requestListReceiptRuleSets :: ListReceiptRuleSets -> TestTree+requestListReceiptRuleSets = req     "ListReceiptRuleSets"     "fixture/ListReceiptRuleSets.yaml" -testDeleteReceiptRuleSet :: DeleteReceiptRuleSet -> TestTree-testDeleteReceiptRuleSet = req+requestDeleteReceiptRuleSet :: DeleteReceiptRuleSet -> TestTree+requestDeleteReceiptRuleSet = req     "DeleteReceiptRuleSet"     "fixture/DeleteReceiptRuleSet.yaml" -testSetReceiptRulePosition :: SetReceiptRulePosition -> TestTree-testSetReceiptRulePosition = req+requestSetReceiptRulePosition :: SetReceiptRulePosition -> TestTree+requestSetReceiptRulePosition = req     "SetReceiptRulePosition"     "fixture/SetReceiptRulePosition.yaml" -testSendBounce :: SendBounce -> TestTree-testSendBounce = req+requestSendBounce :: SendBounce -> TestTree+requestSendBounce = req     "SendBounce"     "fixture/SendBounce.yaml" -testGetIdentityDkimAttributes :: GetIdentityDkimAttributes -> TestTree-testGetIdentityDkimAttributes = req+requestGetIdentityDkimAttributes :: GetIdentityDkimAttributes -> TestTree+requestGetIdentityDkimAttributes = req     "GetIdentityDkimAttributes"     "fixture/GetIdentityDkimAttributes.yaml" -testVerifyDomainDkim :: VerifyDomainDkim -> TestTree-testVerifyDomainDkim = req+requestVerifyDomainDkim :: VerifyDomainDkim -> TestTree+requestVerifyDomainDkim = req     "VerifyDomainDkim"     "fixture/VerifyDomainDkim.yaml" -testSendRawEmail :: SendRawEmail -> TestTree-testSendRawEmail = req+requestSendRawEmail :: SendRawEmail -> TestTree+requestSendRawEmail = req     "SendRawEmail"     "fixture/SendRawEmail.yaml" -testGetSendStatistics :: GetSendStatistics -> TestTree-testGetSendStatistics = req+requestGetSendStatistics :: GetSendStatistics -> TestTree+requestGetSendStatistics = req     "GetSendStatistics"     "fixture/GetSendStatistics.yaml" -testDeleteIdentity :: DeleteIdentity -> TestTree-testDeleteIdentity = req+requestDeleteIdentity :: DeleteIdentity -> TestTree+requestDeleteIdentity = req     "DeleteIdentity"     "fixture/DeleteIdentity.yaml" -testDescribeReceiptRule :: DescribeReceiptRule -> TestTree-testDescribeReceiptRule = req+requestDescribeReceiptRule :: DescribeReceiptRule -> TestTree+requestDescribeReceiptRule = req     "DescribeReceiptRule"     "fixture/DescribeReceiptRule.yaml" -testListIdentities :: ListIdentities -> TestTree-testListIdentities = req+requestListIdentities :: ListIdentities -> TestTree+requestListIdentities = req     "ListIdentities"     "fixture/ListIdentities.yaml" -testVerifyEmailIdentity :: VerifyEmailIdentity -> TestTree-testVerifyEmailIdentity = req+requestVerifyEmailIdentity :: VerifyEmailIdentity -> TestTree+requestVerifyEmailIdentity = req     "VerifyEmailIdentity"     "fixture/VerifyEmailIdentity.yaml" -testVerifyEmailAddress :: VerifyEmailAddress -> TestTree-testVerifyEmailAddress = req+requestVerifyEmailAddress :: VerifyEmailAddress -> TestTree+requestVerifyEmailAddress = req     "VerifyEmailAddress"     "fixture/VerifyEmailAddress.yaml" -testDeleteVerifiedEmailAddress :: DeleteVerifiedEmailAddress -> TestTree-testDeleteVerifiedEmailAddress = req+requestDeleteVerifiedEmailAddress :: DeleteVerifiedEmailAddress -> TestTree+requestDeleteVerifiedEmailAddress = req     "DeleteVerifiedEmailAddress"     "fixture/DeleteVerifiedEmailAddress.yaml" -testDeleteReceiptFilter :: DeleteReceiptFilter -> TestTree-testDeleteReceiptFilter = req+requestDeleteReceiptFilter :: DeleteReceiptFilter -> TestTree+requestDeleteReceiptFilter = req     "DeleteReceiptFilter"     "fixture/DeleteReceiptFilter.yaml" -testListVerifiedEmailAddresses :: ListVerifiedEmailAddresses -> TestTree-testListVerifiedEmailAddresses = req+requestListVerifiedEmailAddresses :: ListVerifiedEmailAddresses -> TestTree+requestListVerifiedEmailAddresses = req     "ListVerifiedEmailAddresses"     "fixture/ListVerifiedEmailAddresses.yaml" -testSetIdentityNotificationTopic :: SetIdentityNotificationTopic -> TestTree-testSetIdentityNotificationTopic = req+requestSetIdentityNotificationTopic :: SetIdentityNotificationTopic -> TestTree+requestSetIdentityNotificationTopic = req     "SetIdentityNotificationTopic"     "fixture/SetIdentityNotificationTopic.yaml" -testSendEmail :: SendEmail -> TestTree-testSendEmail = req+requestSendEmail :: SendEmail -> TestTree+requestSendEmail = req     "SendEmail"     "fixture/SendEmail.yaml" -testDeleteReceiptRule :: DeleteReceiptRule -> TestTree-testDeleteReceiptRule = req+requestDeleteReceiptRule :: DeleteReceiptRule -> TestTree+requestDeleteReceiptRule = req     "DeleteReceiptRule"     "fixture/DeleteReceiptRule.yaml" -testUpdateReceiptRule :: UpdateReceiptRule -> TestTree-testUpdateReceiptRule = req+requestUpdateReceiptRule :: UpdateReceiptRule -> TestTree+requestUpdateReceiptRule = req     "UpdateReceiptRule"     "fixture/UpdateReceiptRule.yaml" -testCloneReceiptRuleSet :: CloneReceiptRuleSet -> TestTree-testCloneReceiptRuleSet = req+requestCloneReceiptRuleSet :: CloneReceiptRuleSet -> TestTree+requestCloneReceiptRuleSet = req     "CloneReceiptRuleSet"     "fixture/CloneReceiptRuleSet.yaml" -testCreateReceiptRule :: CreateReceiptRule -> TestTree-testCreateReceiptRule = req+requestCreateReceiptRule :: CreateReceiptRule -> TestTree+requestCreateReceiptRule = req     "CreateReceiptRule"     "fixture/CreateReceiptRule.yaml" -testSetActiveReceiptRuleSet :: SetActiveReceiptRuleSet -> TestTree-testSetActiveReceiptRuleSet = req+requestSetActiveReceiptRuleSet :: SetActiveReceiptRuleSet -> TestTree+requestSetActiveReceiptRuleSet = req     "SetActiveReceiptRuleSet"     "fixture/SetActiveReceiptRuleSet.yaml" -testDescribeActiveReceiptRuleSet :: DescribeActiveReceiptRuleSet -> TestTree-testDescribeActiveReceiptRuleSet = req+requestDescribeActiveReceiptRuleSet :: DescribeActiveReceiptRuleSet -> TestTree+requestDescribeActiveReceiptRuleSet = req     "DescribeActiveReceiptRuleSet"     "fixture/DescribeActiveReceiptRuleSet.yaml"  -- Responses -testCreateReceiptRuleSetResponse :: CreateReceiptRuleSetResponse -> TestTree-testCreateReceiptRuleSetResponse = res+responseCreateReceiptRuleSet :: CreateReceiptRuleSetResponse -> TestTree+responseCreateReceiptRuleSet = res     "CreateReceiptRuleSetResponse"     "fixture/CreateReceiptRuleSetResponse.proto"     ses     (Proxy :: Proxy CreateReceiptRuleSet) -testGetSendQuotaResponse :: GetSendQuotaResponse -> TestTree-testGetSendQuotaResponse = res+responseGetSendQuota :: GetSendQuotaResponse -> TestTree+responseGetSendQuota = res     "GetSendQuotaResponse"     "fixture/GetSendQuotaResponse.proto"     ses     (Proxy :: Proxy GetSendQuota) -testPutIdentityPolicyResponse :: PutIdentityPolicyResponse -> TestTree-testPutIdentityPolicyResponse = res+responsePutIdentityPolicy :: PutIdentityPolicyResponse -> TestTree+responsePutIdentityPolicy = res     "PutIdentityPolicyResponse"     "fixture/PutIdentityPolicyResponse.proto"     ses     (Proxy :: Proxy PutIdentityPolicy) -testDeleteIdentityPolicyResponse :: DeleteIdentityPolicyResponse -> TestTree-testDeleteIdentityPolicyResponse = res+responseDeleteIdentityPolicy :: DeleteIdentityPolicyResponse -> TestTree+responseDeleteIdentityPolicy = res     "DeleteIdentityPolicyResponse"     "fixture/DeleteIdentityPolicyResponse.proto"     ses     (Proxy :: Proxy DeleteIdentityPolicy) -testGetIdentityNotificationAttributesResponse :: GetIdentityNotificationAttributesResponse -> TestTree-testGetIdentityNotificationAttributesResponse = res+responseGetIdentityNotificationAttributes :: GetIdentityNotificationAttributesResponse -> TestTree+responseGetIdentityNotificationAttributes = res     "GetIdentityNotificationAttributesResponse"     "fixture/GetIdentityNotificationAttributesResponse.proto"     ses     (Proxy :: Proxy GetIdentityNotificationAttributes) -testListIdentityPoliciesResponse :: ListIdentityPoliciesResponse -> TestTree-testListIdentityPoliciesResponse = res+responseListIdentityPolicies :: ListIdentityPoliciesResponse -> TestTree+responseListIdentityPolicies = res     "ListIdentityPoliciesResponse"     "fixture/ListIdentityPoliciesResponse.proto"     ses     (Proxy :: Proxy ListIdentityPolicies) -testSetIdentityDkimEnabledResponse :: SetIdentityDkimEnabledResponse -> TestTree-testSetIdentityDkimEnabledResponse = res+responseSetIdentityDkimEnabled :: SetIdentityDkimEnabledResponse -> TestTree+responseSetIdentityDkimEnabled = res     "SetIdentityDkimEnabledResponse"     "fixture/SetIdentityDkimEnabledResponse.proto"     ses     (Proxy :: Proxy SetIdentityDkimEnabled) -testListReceiptFiltersResponse :: ListReceiptFiltersResponse -> TestTree-testListReceiptFiltersResponse = res+responseListReceiptFilters :: ListReceiptFiltersResponse -> TestTree+responseListReceiptFilters = res     "ListReceiptFiltersResponse"     "fixture/ListReceiptFiltersResponse.proto"     ses     (Proxy :: Proxy ListReceiptFilters) -testDescribeReceiptRuleSetResponse :: DescribeReceiptRuleSetResponse -> TestTree-testDescribeReceiptRuleSetResponse = res+responseDescribeReceiptRuleSet :: DescribeReceiptRuleSetResponse -> TestTree+responseDescribeReceiptRuleSet = res     "DescribeReceiptRuleSetResponse"     "fixture/DescribeReceiptRuleSetResponse.proto"     ses     (Proxy :: Proxy DescribeReceiptRuleSet) -testGetIdentityMailFromDomainAttributesResponse :: GetIdentityMailFromDomainAttributesResponse -> TestTree-testGetIdentityMailFromDomainAttributesResponse = res+responseGetIdentityMailFromDomainAttributes :: GetIdentityMailFromDomainAttributesResponse -> TestTree+responseGetIdentityMailFromDomainAttributes = res     "GetIdentityMailFromDomainAttributesResponse"     "fixture/GetIdentityMailFromDomainAttributesResponse.proto"     ses     (Proxy :: Proxy GetIdentityMailFromDomainAttributes) -testCreateReceiptFilterResponse :: CreateReceiptFilterResponse -> TestTree-testCreateReceiptFilterResponse = res+responseCreateReceiptFilter :: CreateReceiptFilterResponse -> TestTree+responseCreateReceiptFilter = res     "CreateReceiptFilterResponse"     "fixture/CreateReceiptFilterResponse.proto"     ses     (Proxy :: Proxy CreateReceiptFilter) -testSetIdentityMailFromDomainResponse :: SetIdentityMailFromDomainResponse -> TestTree-testSetIdentityMailFromDomainResponse = res+responseSetIdentityMailFromDomain :: SetIdentityMailFromDomainResponse -> TestTree+responseSetIdentityMailFromDomain = res     "SetIdentityMailFromDomainResponse"     "fixture/SetIdentityMailFromDomainResponse.proto"     ses     (Proxy :: Proxy SetIdentityMailFromDomain) -testSetIdentityFeedbackForwardingEnabledResponse :: SetIdentityFeedbackForwardingEnabledResponse -> TestTree-testSetIdentityFeedbackForwardingEnabledResponse = res+responseSetIdentityFeedbackForwardingEnabled :: SetIdentityFeedbackForwardingEnabledResponse -> TestTree+responseSetIdentityFeedbackForwardingEnabled = res     "SetIdentityFeedbackForwardingEnabledResponse"     "fixture/SetIdentityFeedbackForwardingEnabledResponse.proto"     ses     (Proxy :: Proxy SetIdentityFeedbackForwardingEnabled) -testGetIdentityVerificationAttributesResponse :: GetIdentityVerificationAttributesResponse -> TestTree-testGetIdentityVerificationAttributesResponse = res+responseGetIdentityVerificationAttributes :: GetIdentityVerificationAttributesResponse -> TestTree+responseGetIdentityVerificationAttributes = res     "GetIdentityVerificationAttributesResponse"     "fixture/GetIdentityVerificationAttributesResponse.proto"     ses     (Proxy :: Proxy GetIdentityVerificationAttributes) -testGetIdentityPoliciesResponse :: GetIdentityPoliciesResponse -> TestTree-testGetIdentityPoliciesResponse = res+responseGetIdentityPolicies :: GetIdentityPoliciesResponse -> TestTree+responseGetIdentityPolicies = res     "GetIdentityPoliciesResponse"     "fixture/GetIdentityPoliciesResponse.proto"     ses     (Proxy :: Proxy GetIdentityPolicies) -testVerifyDomainIdentityResponse :: VerifyDomainIdentityResponse -> TestTree-testVerifyDomainIdentityResponse = res+responseVerifyDomainIdentity :: VerifyDomainIdentityResponse -> TestTree+responseVerifyDomainIdentity = res     "VerifyDomainIdentityResponse"     "fixture/VerifyDomainIdentityResponse.proto"     ses     (Proxy :: Proxy VerifyDomainIdentity) -testReorderReceiptRuleSetResponse :: ReorderReceiptRuleSetResponse -> TestTree-testReorderReceiptRuleSetResponse = res+responseReorderReceiptRuleSet :: ReorderReceiptRuleSetResponse -> TestTree+responseReorderReceiptRuleSet = res     "ReorderReceiptRuleSetResponse"     "fixture/ReorderReceiptRuleSetResponse.proto"     ses     (Proxy :: Proxy ReorderReceiptRuleSet) -testListReceiptRuleSetsResponse :: ListReceiptRuleSetsResponse -> TestTree-testListReceiptRuleSetsResponse = res+responseListReceiptRuleSets :: ListReceiptRuleSetsResponse -> TestTree+responseListReceiptRuleSets = res     "ListReceiptRuleSetsResponse"     "fixture/ListReceiptRuleSetsResponse.proto"     ses     (Proxy :: Proxy ListReceiptRuleSets) -testDeleteReceiptRuleSetResponse :: DeleteReceiptRuleSetResponse -> TestTree-testDeleteReceiptRuleSetResponse = res+responseDeleteReceiptRuleSet :: DeleteReceiptRuleSetResponse -> TestTree+responseDeleteReceiptRuleSet = res     "DeleteReceiptRuleSetResponse"     "fixture/DeleteReceiptRuleSetResponse.proto"     ses     (Proxy :: Proxy DeleteReceiptRuleSet) -testSetReceiptRulePositionResponse :: SetReceiptRulePositionResponse -> TestTree-testSetReceiptRulePositionResponse = res+responseSetReceiptRulePosition :: SetReceiptRulePositionResponse -> TestTree+responseSetReceiptRulePosition = res     "SetReceiptRulePositionResponse"     "fixture/SetReceiptRulePositionResponse.proto"     ses     (Proxy :: Proxy SetReceiptRulePosition) -testSendBounceResponse :: SendBounceResponse -> TestTree-testSendBounceResponse = res+responseSendBounce :: SendBounceResponse -> TestTree+responseSendBounce = res     "SendBounceResponse"     "fixture/SendBounceResponse.proto"     ses     (Proxy :: Proxy SendBounce) -testGetIdentityDkimAttributesResponse :: GetIdentityDkimAttributesResponse -> TestTree-testGetIdentityDkimAttributesResponse = res+responseGetIdentityDkimAttributes :: GetIdentityDkimAttributesResponse -> TestTree+responseGetIdentityDkimAttributes = res     "GetIdentityDkimAttributesResponse"     "fixture/GetIdentityDkimAttributesResponse.proto"     ses     (Proxy :: Proxy GetIdentityDkimAttributes) -testVerifyDomainDkimResponse :: VerifyDomainDkimResponse -> TestTree-testVerifyDomainDkimResponse = res+responseVerifyDomainDkim :: VerifyDomainDkimResponse -> TestTree+responseVerifyDomainDkim = res     "VerifyDomainDkimResponse"     "fixture/VerifyDomainDkimResponse.proto"     ses     (Proxy :: Proxy VerifyDomainDkim) -testSendRawEmailResponse :: SendRawEmailResponse -> TestTree-testSendRawEmailResponse = res+responseSendRawEmail :: SendRawEmailResponse -> TestTree+responseSendRawEmail = res     "SendRawEmailResponse"     "fixture/SendRawEmailResponse.proto"     ses     (Proxy :: Proxy SendRawEmail) -testGetSendStatisticsResponse :: GetSendStatisticsResponse -> TestTree-testGetSendStatisticsResponse = res+responseGetSendStatistics :: GetSendStatisticsResponse -> TestTree+responseGetSendStatistics = res     "GetSendStatisticsResponse"     "fixture/GetSendStatisticsResponse.proto"     ses     (Proxy :: Proxy GetSendStatistics) -testDeleteIdentityResponse :: DeleteIdentityResponse -> TestTree-testDeleteIdentityResponse = res+responseDeleteIdentity :: DeleteIdentityResponse -> TestTree+responseDeleteIdentity = res     "DeleteIdentityResponse"     "fixture/DeleteIdentityResponse.proto"     ses     (Proxy :: Proxy DeleteIdentity) -testDescribeReceiptRuleResponse :: DescribeReceiptRuleResponse -> TestTree-testDescribeReceiptRuleResponse = res+responseDescribeReceiptRule :: DescribeReceiptRuleResponse -> TestTree+responseDescribeReceiptRule = res     "DescribeReceiptRuleResponse"     "fixture/DescribeReceiptRuleResponse.proto"     ses     (Proxy :: Proxy DescribeReceiptRule) -testListIdentitiesResponse :: ListIdentitiesResponse -> TestTree-testListIdentitiesResponse = res+responseListIdentities :: ListIdentitiesResponse -> TestTree+responseListIdentities = res     "ListIdentitiesResponse"     "fixture/ListIdentitiesResponse.proto"     ses     (Proxy :: Proxy ListIdentities) -testVerifyEmailIdentityResponse :: VerifyEmailIdentityResponse -> TestTree-testVerifyEmailIdentityResponse = res+responseVerifyEmailIdentity :: VerifyEmailIdentityResponse -> TestTree+responseVerifyEmailIdentity = res     "VerifyEmailIdentityResponse"     "fixture/VerifyEmailIdentityResponse.proto"     ses     (Proxy :: Proxy VerifyEmailIdentity) -testVerifyEmailAddressResponse :: VerifyEmailAddressResponse -> TestTree-testVerifyEmailAddressResponse = res+responseVerifyEmailAddress :: VerifyEmailAddressResponse -> TestTree+responseVerifyEmailAddress = res     "VerifyEmailAddressResponse"     "fixture/VerifyEmailAddressResponse.proto"     ses     (Proxy :: Proxy VerifyEmailAddress) -testDeleteVerifiedEmailAddressResponse :: DeleteVerifiedEmailAddressResponse -> TestTree-testDeleteVerifiedEmailAddressResponse = res+responseDeleteVerifiedEmailAddress :: DeleteVerifiedEmailAddressResponse -> TestTree+responseDeleteVerifiedEmailAddress = res     "DeleteVerifiedEmailAddressResponse"     "fixture/DeleteVerifiedEmailAddressResponse.proto"     ses     (Proxy :: Proxy DeleteVerifiedEmailAddress) -testDeleteReceiptFilterResponse :: DeleteReceiptFilterResponse -> TestTree-testDeleteReceiptFilterResponse = res+responseDeleteReceiptFilter :: DeleteReceiptFilterResponse -> TestTree+responseDeleteReceiptFilter = res     "DeleteReceiptFilterResponse"     "fixture/DeleteReceiptFilterResponse.proto"     ses     (Proxy :: Proxy DeleteReceiptFilter) -testListVerifiedEmailAddressesResponse :: ListVerifiedEmailAddressesResponse -> TestTree-testListVerifiedEmailAddressesResponse = res+responseListVerifiedEmailAddresses :: ListVerifiedEmailAddressesResponse -> TestTree+responseListVerifiedEmailAddresses = res     "ListVerifiedEmailAddressesResponse"     "fixture/ListVerifiedEmailAddressesResponse.proto"     ses     (Proxy :: Proxy ListVerifiedEmailAddresses) -testSetIdentityNotificationTopicResponse :: SetIdentityNotificationTopicResponse -> TestTree-testSetIdentityNotificationTopicResponse = res+responseSetIdentityNotificationTopic :: SetIdentityNotificationTopicResponse -> TestTree+responseSetIdentityNotificationTopic = res     "SetIdentityNotificationTopicResponse"     "fixture/SetIdentityNotificationTopicResponse.proto"     ses     (Proxy :: Proxy SetIdentityNotificationTopic) -testSendEmailResponse :: SendEmailResponse -> TestTree-testSendEmailResponse = res+responseSendEmail :: SendEmailResponse -> TestTree+responseSendEmail = res     "SendEmailResponse"     "fixture/SendEmailResponse.proto"     ses     (Proxy :: Proxy SendEmail) -testDeleteReceiptRuleResponse :: DeleteReceiptRuleResponse -> TestTree-testDeleteReceiptRuleResponse = res+responseDeleteReceiptRule :: DeleteReceiptRuleResponse -> TestTree+responseDeleteReceiptRule = res     "DeleteReceiptRuleResponse"     "fixture/DeleteReceiptRuleResponse.proto"     ses     (Proxy :: Proxy DeleteReceiptRule) -testUpdateReceiptRuleResponse :: UpdateReceiptRuleResponse -> TestTree-testUpdateReceiptRuleResponse = res+responseUpdateReceiptRule :: UpdateReceiptRuleResponse -> TestTree+responseUpdateReceiptRule = res     "UpdateReceiptRuleResponse"     "fixture/UpdateReceiptRuleResponse.proto"     ses     (Proxy :: Proxy UpdateReceiptRule) -testCloneReceiptRuleSetResponse :: CloneReceiptRuleSetResponse -> TestTree-testCloneReceiptRuleSetResponse = res+responseCloneReceiptRuleSet :: CloneReceiptRuleSetResponse -> TestTree+responseCloneReceiptRuleSet = res     "CloneReceiptRuleSetResponse"     "fixture/CloneReceiptRuleSetResponse.proto"     ses     (Proxy :: Proxy CloneReceiptRuleSet) -testCreateReceiptRuleResponse :: CreateReceiptRuleResponse -> TestTree-testCreateReceiptRuleResponse = res+responseCreateReceiptRule :: CreateReceiptRuleResponse -> TestTree+responseCreateReceiptRule = res     "CreateReceiptRuleResponse"     "fixture/CreateReceiptRuleResponse.proto"     ses     (Proxy :: Proxy CreateReceiptRule) -testSetActiveReceiptRuleSetResponse :: SetActiveReceiptRuleSetResponse -> TestTree-testSetActiveReceiptRuleSetResponse = res+responseSetActiveReceiptRuleSet :: SetActiveReceiptRuleSetResponse -> TestTree+responseSetActiveReceiptRuleSet = res     "SetActiveReceiptRuleSetResponse"     "fixture/SetActiveReceiptRuleSetResponse.proto"     ses     (Proxy :: Proxy SetActiveReceiptRuleSet) -testDescribeActiveReceiptRuleSetResponse :: DescribeActiveReceiptRuleSetResponse -> TestTree-testDescribeActiveReceiptRuleSetResponse = res+responseDescribeActiveReceiptRuleSet :: DescribeActiveReceiptRuleSetResponse -> TestTree+responseDescribeActiveReceiptRuleSet = res     "DescribeActiveReceiptRuleSetResponse"     "fixture/DescribeActiveReceiptRuleSetResponse.proto"     ses