{-# 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.IAM.DetachUserPolicy -- Copyright : (c) 2013-2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Removes the specified managed policy from the specified user. -- -- A user can also have inline policies embedded with it. To delete an -- inline policy, use the DeleteUserPolicy API. For information about -- policies, refer to -- -- in the /Using IAM/ guide. -- -- /See:/ for DetachUserPolicy. module Network.AWS.IAM.DetachUserPolicy ( -- * Creating a Request detachUserPolicy , DetachUserPolicy -- * Request Lenses , dUserName , dPolicyARN -- * Destructuring the Response , detachUserPolicyResponse , DetachUserPolicyResponse ) where import Network.AWS.IAM.Types import Network.AWS.IAM.Types.Product import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'detachUserPolicy' smart constructor. data DetachUserPolicy = DetachUserPolicy' { _dUserName :: !Text , _dPolicyARN :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'DetachUserPolicy' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dUserName' -- -- * 'dPolicyARN' detachUserPolicy :: Text -- ^ 'dUserName' -> Text -- ^ 'dPolicyARN' -> DetachUserPolicy detachUserPolicy pUserName_ pPolicyARN_ = DetachUserPolicy' { _dUserName = pUserName_ , _dPolicyARN = pPolicyARN_ } -- | The name (friendly name, not ARN) of the user to detach the policy from. dUserName :: Lens' DetachUserPolicy Text dUserName = lens _dUserName (\ s a -> s{_dUserName = a}); -- | Undocumented member. dPolicyARN :: Lens' DetachUserPolicy Text dPolicyARN = lens _dPolicyARN (\ s a -> s{_dPolicyARN = a}); instance AWSRequest DetachUserPolicy where type Rs DetachUserPolicy = DetachUserPolicyResponse request = postQuery iAM response = receiveNull DetachUserPolicyResponse' instance ToHeaders DetachUserPolicy where toHeaders = const mempty instance ToPath DetachUserPolicy where toPath = const "/" instance ToQuery DetachUserPolicy where toQuery DetachUserPolicy'{..} = mconcat ["Action" =: ("DetachUserPolicy" :: ByteString), "Version" =: ("2010-05-08" :: ByteString), "UserName" =: _dUserName, "PolicyArn" =: _dPolicyARN] -- | /See:/ 'detachUserPolicyResponse' smart constructor. data DetachUserPolicyResponse = DetachUserPolicyResponse' deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'DetachUserPolicyResponse' with the minimum fields required to make a request. -- detachUserPolicyResponse :: DetachUserPolicyResponse detachUserPolicyResponse = DetachUserPolicyResponse'