amazonka-iam-0.0.2: gen/Network/AWS/IAM/DeleteLoginProfile.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.DeleteLoginProfile
-- 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)
-- | Deletes the password for the specified user, which terminates the user's
-- ability to access AWS services through the AWS Management Console.
--
-- Deleting a user's password does not prevent a user from accessing IAM
-- through the command line interface or the API. To prevent all user access you
-- must also either make the access key inactive or delete it. For more
-- information about making keys inactive or deleting them, see 'UpdateAccessKey'
-- and 'DeleteAccessKey'.
--
-- <http://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteLoginProfile.html>
module Network.AWS.IAM.DeleteLoginProfile
(
-- * Request
DeleteLoginProfile
-- ** Request constructor
, deleteLoginProfile
-- ** Request lenses
, dlpUserName
-- * Response
, DeleteLoginProfileResponse
-- ** Response constructor
, deleteLoginProfileResponse
) where
import Network.AWS.Prelude
import Network.AWS.Request.Query
import Network.AWS.IAM.Types
import qualified GHC.Exts
newtype DeleteLoginProfile = DeleteLoginProfile
{ _dlpUserName :: Text
} deriving (Eq, Ord, Show, Monoid, IsString)
-- | 'DeleteLoginProfile' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'dlpUserName' @::@ 'Text'
--
deleteLoginProfile :: Text -- ^ 'dlpUserName'
-> DeleteLoginProfile
deleteLoginProfile p1 = DeleteLoginProfile
{ _dlpUserName = p1
}
-- | The name of the user whose password you want to delete.
dlpUserName :: Lens' DeleteLoginProfile Text
dlpUserName = lens _dlpUserName (\s a -> s { _dlpUserName = a })
data DeleteLoginProfileResponse = DeleteLoginProfileResponse
deriving (Eq, Ord, Show, Generic)
-- | 'DeleteLoginProfileResponse' constructor.
deleteLoginProfileResponse :: DeleteLoginProfileResponse
deleteLoginProfileResponse = DeleteLoginProfileResponse
instance ToPath DeleteLoginProfile where
toPath = const "/"
instance ToQuery DeleteLoginProfile where
toQuery DeleteLoginProfile{..} = mconcat
[ "UserName" =? _dlpUserName
]
instance ToHeaders DeleteLoginProfile
instance AWSRequest DeleteLoginProfile where
type Sv DeleteLoginProfile = IAM
type Rs DeleteLoginProfile = DeleteLoginProfileResponse
request = post "DeleteLoginProfile"
response = nullResponse DeleteLoginProfileResponse