amazonka-sns-1.6.0: gen/Network/AWS/SNS/RemovePermission.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.SNS.RemovePermission
-- Copyright : (c) 2013-2018 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Removes a statement from a topic's access control policy.
--
--
module Network.AWS.SNS.RemovePermission
(
-- * Creating a Request
removePermission
, RemovePermission
-- * Request Lenses
, rpTopicARN
, rpLabel
-- * Destructuring the Response
, removePermissionResponse
, RemovePermissionResponse
) where
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
import Network.AWS.SNS.Types
import Network.AWS.SNS.Types.Product
-- | Input for RemovePermission action.
--
--
--
-- /See:/ 'removePermission' smart constructor.
data RemovePermission = RemovePermission'
{ _rpTopicARN :: !Text
, _rpLabel :: !Text
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'RemovePermission' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'rpTopicARN' - The ARN of the topic whose access control policy you wish to modify.
--
-- * 'rpLabel' - The unique label of the statement you want to remove.
removePermission
:: Text -- ^ 'rpTopicARN'
-> Text -- ^ 'rpLabel'
-> RemovePermission
removePermission pTopicARN_ pLabel_ =
RemovePermission' {_rpTopicARN = pTopicARN_, _rpLabel = pLabel_}
-- | The ARN of the topic whose access control policy you wish to modify.
rpTopicARN :: Lens' RemovePermission Text
rpTopicARN = lens _rpTopicARN (\ s a -> s{_rpTopicARN = a})
-- | The unique label of the statement you want to remove.
rpLabel :: Lens' RemovePermission Text
rpLabel = lens _rpLabel (\ s a -> s{_rpLabel = a})
instance AWSRequest RemovePermission where
type Rs RemovePermission = RemovePermissionResponse
request = postQuery sns
response = receiveNull RemovePermissionResponse'
instance Hashable RemovePermission where
instance NFData RemovePermission where
instance ToHeaders RemovePermission where
toHeaders = const mempty
instance ToPath RemovePermission where
toPath = const "/"
instance ToQuery RemovePermission where
toQuery RemovePermission'{..}
= mconcat
["Action" =: ("RemovePermission" :: ByteString),
"Version" =: ("2010-03-31" :: ByteString),
"TopicArn" =: _rpTopicARN, "Label" =: _rpLabel]
-- | /See:/ 'removePermissionResponse' smart constructor.
data RemovePermissionResponse =
RemovePermissionResponse'
deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'RemovePermissionResponse' with the minimum fields required to make a request.
--
removePermissionResponse
:: RemovePermissionResponse
removePermissionResponse = RemovePermissionResponse'
instance NFData RemovePermissionResponse where