amazonka-iam-0.2.2: gen/Network/AWS/IAM/DeleteUser.hs
{-# 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.DeleteUser
-- Copyright : (c) 2013-2014 Brendan Hay <brendan.g.hay@gmail.com>
-- 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 <brendan.g.hay@gmail.com>
-- Stability : experimental
-- Portability : non-portable (GHC extensions)
--
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- | Deletes the specified user. The user must not belong to any groups, have any
-- keys or signing certificates, or have any attached policies.
--
-- <http://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteUser.html>
module Network.AWS.IAM.DeleteUser
(
-- * Request
DeleteUser
-- ** Request constructor
, deleteUser
-- ** Request lenses
, duUserName
-- * Response
, DeleteUserResponse
-- ** Response constructor
, deleteUserResponse
) where
import Network.AWS.Prelude
import Network.AWS.Request.Query
import Network.AWS.IAM.Types
import qualified GHC.Exts
newtype DeleteUser = DeleteUser
{ _duUserName :: Text
} deriving (Eq, Ord, Read, Show, Monoid, IsString)
-- | 'DeleteUser' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'duUserName' @::@ 'Text'
--
deleteUser :: Text -- ^ 'duUserName'
-> DeleteUser
deleteUser p1 = DeleteUser
{ _duUserName = p1
}
-- | The name of the user to delete.
duUserName :: Lens' DeleteUser Text
duUserName = lens _duUserName (\s a -> s { _duUserName = a })
data DeleteUserResponse = DeleteUserResponse
deriving (Eq, Ord, Read, Show, Generic)
-- | 'DeleteUserResponse' constructor.
deleteUserResponse :: DeleteUserResponse
deleteUserResponse = DeleteUserResponse
instance ToPath DeleteUser where
toPath = const "/"
instance ToQuery DeleteUser where
toQuery DeleteUser{..} = mconcat
[ "UserName" =? _duUserName
]
instance ToHeaders DeleteUser
instance AWSRequest DeleteUser where
type Sv DeleteUser = IAM
type Rs DeleteUser = DeleteUserResponse
request = post "DeleteUser"
response = nullResponse DeleteUserResponse