amazonka-ses-1.4.0: gen/Network/AWS/SES/DeleteIdentityPolicy.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.DeleteIdentityPolicy
-- 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)
--
-- 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.
--
-- 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
(
-- * Creating a Request
deleteIdentityPolicy
, DeleteIdentityPolicy
-- * Request Lenses
, dipIdentity
, dipPolicyName
-- * Destructuring the Response
, deleteIdentityPolicyResponse
, DeleteIdentityPolicyResponse
-- * Response Lenses
, diprsResponseStatus
) 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
-- | /See:/ 'deleteIdentityPolicy' smart constructor.
data DeleteIdentityPolicy = DeleteIdentityPolicy'
{ _dipIdentity :: !Text
, _dipPolicyName :: !Text
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DeleteIdentityPolicy' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'dipIdentity'
--
-- * 'dipPolicyName'
deleteIdentityPolicy
:: Text -- ^ 'dipIdentity'
-> Text -- ^ 'dipPolicyName'
-> DeleteIdentityPolicy
deleteIdentityPolicy pIdentity_ pPolicyName_ =
DeleteIdentityPolicy'
{ _dipIdentity = pIdentity_
, _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'.
--
-- To successfully call this API, you must own the identity.
dipIdentity :: Lens' DeleteIdentityPolicy Text
dipIdentity = lens _dipIdentity (\ s a -> s{_dipIdentity = a});
-- | The name of the policy to be deleted.
dipPolicyName :: Lens' DeleteIdentityPolicy Text
dipPolicyName = lens _dipPolicyName (\ s a -> s{_dipPolicyName = a});
instance AWSRequest DeleteIdentityPolicy where
type Rs DeleteIdentityPolicy =
DeleteIdentityPolicyResponse
request = postQuery ses
response
= receiveXMLWrapper "DeleteIdentityPolicyResult"
(\ s h x ->
DeleteIdentityPolicyResponse' <$>
(pure (fromEnum s)))
instance Hashable DeleteIdentityPolicy
instance ToHeaders DeleteIdentityPolicy where
toHeaders = const mempty
instance ToPath DeleteIdentityPolicy where
toPath = const "/"
instance ToQuery DeleteIdentityPolicy where
toQuery DeleteIdentityPolicy'{..}
= mconcat
["Action" =: ("DeleteIdentityPolicy" :: ByteString),
"Version" =: ("2010-12-01" :: ByteString),
"Identity" =: _dipIdentity,
"PolicyName" =: _dipPolicyName]
-- | /See:/ 'deleteIdentityPolicyResponse' smart constructor.
newtype DeleteIdentityPolicyResponse = DeleteIdentityPolicyResponse'
{ _diprsResponseStatus :: Int
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DeleteIdentityPolicyResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'diprsResponseStatus'
deleteIdentityPolicyResponse
:: Int -- ^ 'diprsResponseStatus'
-> DeleteIdentityPolicyResponse
deleteIdentityPolicyResponse pResponseStatus_ =
DeleteIdentityPolicyResponse'
{ _diprsResponseStatus = pResponseStatus_
}
-- | The response status code.
diprsResponseStatus :: Lens' DeleteIdentityPolicyResponse Int
diprsResponseStatus = lens _diprsResponseStatus (\ s a -> s{_diprsResponseStatus = a});