amazonka-ses-1.4.5: gen/Network/AWS/SES/SetIdentityNotificationTopic.hs
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Network.AWS.SES.SetIdentityNotificationTopic
-- Copyright : (c) 2013-2016 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Given an identity (an email address or a 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@ .
--
--
-- 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> .
--
module Network.AWS.SES.SetIdentityNotificationTopic
(
-- * Creating a Request
setIdentityNotificationTopic
, SetIdentityNotificationTopic
-- * Request Lenses
, sintSNSTopic
, sintIdentity
, sintNotificationType
-- * Destructuring the Response
, setIdentityNotificationTopicResponse
, SetIdentityNotificationTopicResponse
-- * Response Lenses
, sintrsResponseStatus
) where
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
import Network.AWS.SES.Types
import Network.AWS.SES.Types.Product
-- | Represents a request to specify the Amazon SNS topic to which Amazon SES will publish bounce, complaint, or delivery notifications for emails sent with that identity as the Source. For information about Amazon SES notifications, see the <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications-via-sns.html Amazon SES Developer Guide> .
--
--
--
-- /See:/ 'setIdentityNotificationTopic' smart constructor.
data SetIdentityNotificationTopic = SetIdentityNotificationTopic'
{ _sintSNSTopic :: !(Maybe Text)
, _sintIdentity :: !Text
, _sintNotificationType :: !NotificationType
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'SetIdentityNotificationTopic' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'sintSNSTopic' - 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.
--
-- * 'sintIdentity' - 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@ .
--
-- * 'sintNotificationType' - The type of notifications that will be published to the specified Amazon SNS topic.
setIdentityNotificationTopic
:: Text -- ^ 'sintIdentity'
-> NotificationType -- ^ 'sintNotificationType'
-> SetIdentityNotificationTopic
setIdentityNotificationTopic pIdentity_ pNotificationType_ =
SetIdentityNotificationTopic'
{ _sintSNSTopic = Nothing
, _sintIdentity = pIdentity_
, _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.
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@ .
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.
sintNotificationType :: Lens' SetIdentityNotificationTopic NotificationType
sintNotificationType = lens _sintNotificationType (\ s a -> s{_sintNotificationType = a});
instance AWSRequest SetIdentityNotificationTopic
where
type Rs SetIdentityNotificationTopic =
SetIdentityNotificationTopicResponse
request = postQuery ses
response
= receiveXMLWrapper
"SetIdentityNotificationTopicResult"
(\ s h x ->
SetIdentityNotificationTopicResponse' <$>
(pure (fromEnum s)))
instance Hashable SetIdentityNotificationTopic
instance NFData SetIdentityNotificationTopic
instance ToHeaders SetIdentityNotificationTopic where
toHeaders = const mempty
instance ToPath SetIdentityNotificationTopic where
toPath = const "/"
instance ToQuery SetIdentityNotificationTopic where
toQuery SetIdentityNotificationTopic'{..}
= mconcat
["Action" =:
("SetIdentityNotificationTopic" :: ByteString),
"Version" =: ("2010-12-01" :: ByteString),
"SnsTopic" =: _sintSNSTopic,
"Identity" =: _sintIdentity,
"NotificationType" =: _sintNotificationType]
-- | An empty element returned on a successful request.
--
--
--
-- /See:/ 'setIdentityNotificationTopicResponse' smart constructor.
newtype SetIdentityNotificationTopicResponse = SetIdentityNotificationTopicResponse'
{ _sintrsResponseStatus :: Int
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'SetIdentityNotificationTopicResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'sintrsResponseStatus' - -- | The response status code.
setIdentityNotificationTopicResponse
:: Int -- ^ 'sintrsResponseStatus'
-> SetIdentityNotificationTopicResponse
setIdentityNotificationTopicResponse pResponseStatus_ =
SetIdentityNotificationTopicResponse'
{ _sintrsResponseStatus = pResponseStatus_
}
-- | -- | The response status code.
sintrsResponseStatus :: Lens' SetIdentityNotificationTopicResponse Int
sintrsResponseStatus = lens _sintrsResponseStatus (\ s a -> s{_sintrsResponseStatus = a});
instance NFData SetIdentityNotificationTopicResponse