{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- Module : Network.AWS.IAM.RemoveUserFromGroup -- Copyright : (c) 2013-2014 Brendan Hay -- License : This Source Code Form is subject to the terms of -- the Mozilla Public License, v. 2.0. -- A copy of the MPL can be found in the LICENSE file or -- you can obtain it at http://mozilla.org/MPL/2.0/. -- Maintainer : Brendan Hay -- Stability : experimental -- Portability : non-portable (GHC extensions) -- -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Removes the specified user from the specified group. -- -- module Network.AWS.IAM.RemoveUserFromGroup ( -- * Request RemoveUserFromGroup -- ** Request constructor , removeUserFromGroup -- ** Request lenses , rufgGroupName , rufgUserName -- * Response , RemoveUserFromGroupResponse -- ** Response constructor , removeUserFromGroupResponse ) where import Network.AWS.Prelude import Network.AWS.Request.Query import Network.AWS.IAM.Types import qualified GHC.Exts data RemoveUserFromGroup = RemoveUserFromGroup { _rufgGroupName :: Text , _rufgUserName :: Text } deriving (Eq, Ord, Read, Show) -- | 'RemoveUserFromGroup' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'rufgGroupName' @::@ 'Text' -- -- * 'rufgUserName' @::@ 'Text' -- removeUserFromGroup :: Text -- ^ 'rufgGroupName' -> Text -- ^ 'rufgUserName' -> RemoveUserFromGroup removeUserFromGroup p1 p2 = RemoveUserFromGroup { _rufgGroupName = p1 , _rufgUserName = p2 } -- | The name of the group to update. rufgGroupName :: Lens' RemoveUserFromGroup Text rufgGroupName = lens _rufgGroupName (\s a -> s { _rufgGroupName = a }) -- | The name of the user to remove. rufgUserName :: Lens' RemoveUserFromGroup Text rufgUserName = lens _rufgUserName (\s a -> s { _rufgUserName = a }) data RemoveUserFromGroupResponse = RemoveUserFromGroupResponse deriving (Eq, Ord, Read, Show, Generic) -- | 'RemoveUserFromGroupResponse' constructor. removeUserFromGroupResponse :: RemoveUserFromGroupResponse removeUserFromGroupResponse = RemoveUserFromGroupResponse instance ToPath RemoveUserFromGroup where toPath = const "/" instance ToQuery RemoveUserFromGroup where toQuery RemoveUserFromGroup{..} = mconcat [ "GroupName" =? _rufgGroupName , "UserName" =? _rufgUserName ] instance ToHeaders RemoveUserFromGroup instance AWSRequest RemoveUserFromGroup where type Sv RemoveUserFromGroup = IAM type Rs RemoveUserFromGroup = RemoveUserFromGroupResponse request = post "RemoveUserFromGroup" response = nullResponse RemoveUserFromGroupResponse