amazonka-appstream-2.0: gen/Amazonka/AppStream/DeleteUser.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.AppStream.DeleteUser
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Deletes a user from the user pool.
module Amazonka.AppStream.DeleteUser
( -- * Creating a Request
DeleteUser (..),
newDeleteUser,
-- * Request Lenses
deleteUser_userName,
deleteUser_authenticationType,
-- * Destructuring the Response
DeleteUserResponse (..),
newDeleteUserResponse,
-- * Response Lenses
deleteUserResponse_httpStatus,
)
where
import Amazonka.AppStream.Types
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newDeleteUser' smart constructor.
data DeleteUser = DeleteUser'
{ -- | The email address of the user.
--
-- Users\' email addresses are case-sensitive.
userName :: Data.Sensitive Prelude.Text,
-- | The authentication type for the user. You must specify USERPOOL.
authenticationType :: AuthenticationType
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteUser' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'userName', 'deleteUser_userName' - The email address of the user.
--
-- Users\' email addresses are case-sensitive.
--
-- 'authenticationType', 'deleteUser_authenticationType' - The authentication type for the user. You must specify USERPOOL.
newDeleteUser ::
-- | 'userName'
Prelude.Text ->
-- | 'authenticationType'
AuthenticationType ->
DeleteUser
newDeleteUser pUserName_ pAuthenticationType_ =
DeleteUser'
{ userName =
Data._Sensitive Lens.# pUserName_,
authenticationType = pAuthenticationType_
}
-- | The email address of the user.
--
-- Users\' email addresses are case-sensitive.
deleteUser_userName :: Lens.Lens' DeleteUser Prelude.Text
deleteUser_userName = Lens.lens (\DeleteUser' {userName} -> userName) (\s@DeleteUser' {} a -> s {userName = a} :: DeleteUser) Prelude.. Data._Sensitive
-- | The authentication type for the user. You must specify USERPOOL.
deleteUser_authenticationType :: Lens.Lens' DeleteUser AuthenticationType
deleteUser_authenticationType = Lens.lens (\DeleteUser' {authenticationType} -> authenticationType) (\s@DeleteUser' {} a -> s {authenticationType = a} :: DeleteUser)
instance Core.AWSRequest DeleteUser where
type AWSResponse DeleteUser = DeleteUserResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveEmpty
( \s h x ->
DeleteUserResponse'
Prelude.<$> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable DeleteUser where
hashWithSalt _salt DeleteUser' {..} =
_salt
`Prelude.hashWithSalt` userName
`Prelude.hashWithSalt` authenticationType
instance Prelude.NFData DeleteUser where
rnf DeleteUser' {..} =
Prelude.rnf userName
`Prelude.seq` Prelude.rnf authenticationType
instance Data.ToHeaders DeleteUser where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "PhotonAdminProxyService.DeleteUser" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON DeleteUser where
toJSON DeleteUser' {..} =
Data.object
( Prelude.catMaybes
[ Prelude.Just ("UserName" Data..= userName),
Prelude.Just
("AuthenticationType" Data..= authenticationType)
]
)
instance Data.ToPath DeleteUser where
toPath = Prelude.const "/"
instance Data.ToQuery DeleteUser where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newDeleteUserResponse' smart constructor.
data DeleteUserResponse = DeleteUserResponse'
{ -- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteUserResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'httpStatus', 'deleteUserResponse_httpStatus' - The response's http status code.
newDeleteUserResponse ::
-- | 'httpStatus'
Prelude.Int ->
DeleteUserResponse
newDeleteUserResponse pHttpStatus_ =
DeleteUserResponse' {httpStatus = pHttpStatus_}
-- | The response's http status code.
deleteUserResponse_httpStatus :: Lens.Lens' DeleteUserResponse Prelude.Int
deleteUserResponse_httpStatus = Lens.lens (\DeleteUserResponse' {httpStatus} -> httpStatus) (\s@DeleteUserResponse' {} a -> s {httpStatus = a} :: DeleteUserResponse)
instance Prelude.NFData DeleteUserResponse where
rnf DeleteUserResponse' {..} = Prelude.rnf httpStatus