{-# 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 #-}
module Amazonka.Redshift.DeleteAuthenticationProfile
(
DeleteAuthenticationProfile (..),
newDeleteAuthenticationProfile,
deleteAuthenticationProfile_authenticationProfileName,
DeleteAuthenticationProfileResponse (..),
newDeleteAuthenticationProfileResponse,
deleteAuthenticationProfileResponse_authenticationProfileName,
deleteAuthenticationProfileResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import Amazonka.Redshift.Types
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data DeleteAuthenticationProfile = DeleteAuthenticationProfile'
{
DeleteAuthenticationProfile -> Text
authenticationProfileName :: Prelude.Text
}
deriving (DeleteAuthenticationProfile -> DeleteAuthenticationProfile -> Bool
(DeleteAuthenticationProfile
-> DeleteAuthenticationProfile -> Bool)
-> (DeleteAuthenticationProfile
-> DeleteAuthenticationProfile -> Bool)
-> Eq DeleteAuthenticationProfile
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAuthenticationProfile -> DeleteAuthenticationProfile -> Bool
$c/= :: DeleteAuthenticationProfile -> DeleteAuthenticationProfile -> Bool
== :: DeleteAuthenticationProfile -> DeleteAuthenticationProfile -> Bool
$c== :: DeleteAuthenticationProfile -> DeleteAuthenticationProfile -> Bool
Prelude.Eq, ReadPrec [DeleteAuthenticationProfile]
ReadPrec DeleteAuthenticationProfile
Int -> ReadS DeleteAuthenticationProfile
ReadS [DeleteAuthenticationProfile]
(Int -> ReadS DeleteAuthenticationProfile)
-> ReadS [DeleteAuthenticationProfile]
-> ReadPrec DeleteAuthenticationProfile
-> ReadPrec [DeleteAuthenticationProfile]
-> Read DeleteAuthenticationProfile
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAuthenticationProfile]
$creadListPrec :: ReadPrec [DeleteAuthenticationProfile]
readPrec :: ReadPrec DeleteAuthenticationProfile
$creadPrec :: ReadPrec DeleteAuthenticationProfile
readList :: ReadS [DeleteAuthenticationProfile]
$creadList :: ReadS [DeleteAuthenticationProfile]
readsPrec :: Int -> ReadS DeleteAuthenticationProfile
$creadsPrec :: Int -> ReadS DeleteAuthenticationProfile
Prelude.Read, Int -> DeleteAuthenticationProfile -> ShowS
[DeleteAuthenticationProfile] -> ShowS
DeleteAuthenticationProfile -> String
(Int -> DeleteAuthenticationProfile -> ShowS)
-> (DeleteAuthenticationProfile -> String)
-> ([DeleteAuthenticationProfile] -> ShowS)
-> Show DeleteAuthenticationProfile
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAuthenticationProfile] -> ShowS
$cshowList :: [DeleteAuthenticationProfile] -> ShowS
show :: DeleteAuthenticationProfile -> String
$cshow :: DeleteAuthenticationProfile -> String
showsPrec :: Int -> DeleteAuthenticationProfile -> ShowS
$cshowsPrec :: Int -> DeleteAuthenticationProfile -> ShowS
Prelude.Show, (forall x.
DeleteAuthenticationProfile -> Rep DeleteAuthenticationProfile x)
-> (forall x.
Rep DeleteAuthenticationProfile x -> DeleteAuthenticationProfile)
-> Generic DeleteAuthenticationProfile
forall x.
Rep DeleteAuthenticationProfile x -> DeleteAuthenticationProfile
forall x.
DeleteAuthenticationProfile -> Rep DeleteAuthenticationProfile x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteAuthenticationProfile x -> DeleteAuthenticationProfile
$cfrom :: forall x.
DeleteAuthenticationProfile -> Rep DeleteAuthenticationProfile x
Prelude.Generic)
newDeleteAuthenticationProfile ::
Prelude.Text ->
DeleteAuthenticationProfile
newDeleteAuthenticationProfile :: Text -> DeleteAuthenticationProfile
newDeleteAuthenticationProfile
Text
pAuthenticationProfileName_ =
DeleteAuthenticationProfile' :: Text -> DeleteAuthenticationProfile
DeleteAuthenticationProfile'
{ $sel:authenticationProfileName:DeleteAuthenticationProfile' :: Text
authenticationProfileName =
Text
pAuthenticationProfileName_
}
deleteAuthenticationProfile_authenticationProfileName :: Lens.Lens' DeleteAuthenticationProfile Prelude.Text
deleteAuthenticationProfile_authenticationProfileName :: (Text -> f Text)
-> DeleteAuthenticationProfile -> f DeleteAuthenticationProfile
deleteAuthenticationProfile_authenticationProfileName = (DeleteAuthenticationProfile -> Text)
-> (DeleteAuthenticationProfile
-> Text -> DeleteAuthenticationProfile)
-> Lens
DeleteAuthenticationProfile DeleteAuthenticationProfile Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAuthenticationProfile' {Text
authenticationProfileName :: Text
$sel:authenticationProfileName:DeleteAuthenticationProfile' :: DeleteAuthenticationProfile -> Text
authenticationProfileName} -> Text
authenticationProfileName) (\s :: DeleteAuthenticationProfile
s@DeleteAuthenticationProfile' {} Text
a -> DeleteAuthenticationProfile
s {$sel:authenticationProfileName:DeleteAuthenticationProfile' :: Text
authenticationProfileName = Text
a} :: DeleteAuthenticationProfile)
instance Core.AWSRequest DeleteAuthenticationProfile where
type
AWSResponse DeleteAuthenticationProfile =
DeleteAuthenticationProfileResponse
request :: DeleteAuthenticationProfile -> Request DeleteAuthenticationProfile
request = Service
-> DeleteAuthenticationProfile
-> Request DeleteAuthenticationProfile
forall a. ToRequest a => Service -> a -> Request a
Request.postQuery Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteAuthenticationProfile
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteAuthenticationProfile)))
response =
Text
-> (Int
-> ResponseHeaders
-> [Node]
-> Either String (AWSResponse DeleteAuthenticationProfile))
-> Logger
-> Service
-> Proxy DeleteAuthenticationProfile
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteAuthenticationProfile)))
forall (m :: * -> *) a.
MonadResource m =>
Text
-> (Int
-> ResponseHeaders -> [Node] -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveXMLWrapper
Text
"DeleteAuthenticationProfileResult"
( \Int
s ResponseHeaders
h [Node]
x ->
Maybe Text -> Int -> DeleteAuthenticationProfileResponse
DeleteAuthenticationProfileResponse'
(Maybe Text -> Int -> DeleteAuthenticationProfileResponse)
-> Either String (Maybe Text)
-> Either String (Int -> DeleteAuthenticationProfileResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> ([Node]
x [Node] -> Text -> Either String (Maybe Text)
forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Core..@? Text
"AuthenticationProfileName")
Either String (Int -> DeleteAuthenticationProfileResponse)
-> Either String Int
-> Either String DeleteAuthenticationProfileResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
)
instance Prelude.Hashable DeleteAuthenticationProfile
instance Prelude.NFData DeleteAuthenticationProfile
instance Core.ToHeaders DeleteAuthenticationProfile where
toHeaders :: DeleteAuthenticationProfile -> ResponseHeaders
toHeaders = ResponseHeaders -> DeleteAuthenticationProfile -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath DeleteAuthenticationProfile where
toPath :: DeleteAuthenticationProfile -> ByteString
toPath = ByteString -> DeleteAuthenticationProfile -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery DeleteAuthenticationProfile where
toQuery :: DeleteAuthenticationProfile -> QueryString
toQuery DeleteAuthenticationProfile' {Text
authenticationProfileName :: Text
$sel:authenticationProfileName:DeleteAuthenticationProfile' :: DeleteAuthenticationProfile -> Text
..} =
[QueryString] -> QueryString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"Action"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: ( ByteString
"DeleteAuthenticationProfile" ::
Prelude.ByteString
),
ByteString
"Version"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: (ByteString
"2012-12-01" :: Prelude.ByteString),
ByteString
"AuthenticationProfileName"
ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
authenticationProfileName
]
data DeleteAuthenticationProfileResponse = DeleteAuthenticationProfileResponse'
{
DeleteAuthenticationProfileResponse -> Maybe Text
authenticationProfileName :: Prelude.Maybe Prelude.Text,
DeleteAuthenticationProfileResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteAuthenticationProfileResponse
-> DeleteAuthenticationProfileResponse -> Bool
(DeleteAuthenticationProfileResponse
-> DeleteAuthenticationProfileResponse -> Bool)
-> (DeleteAuthenticationProfileResponse
-> DeleteAuthenticationProfileResponse -> Bool)
-> Eq DeleteAuthenticationProfileResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAuthenticationProfileResponse
-> DeleteAuthenticationProfileResponse -> Bool
$c/= :: DeleteAuthenticationProfileResponse
-> DeleteAuthenticationProfileResponse -> Bool
== :: DeleteAuthenticationProfileResponse
-> DeleteAuthenticationProfileResponse -> Bool
$c== :: DeleteAuthenticationProfileResponse
-> DeleteAuthenticationProfileResponse -> Bool
Prelude.Eq, ReadPrec [DeleteAuthenticationProfileResponse]
ReadPrec DeleteAuthenticationProfileResponse
Int -> ReadS DeleteAuthenticationProfileResponse
ReadS [DeleteAuthenticationProfileResponse]
(Int -> ReadS DeleteAuthenticationProfileResponse)
-> ReadS [DeleteAuthenticationProfileResponse]
-> ReadPrec DeleteAuthenticationProfileResponse
-> ReadPrec [DeleteAuthenticationProfileResponse]
-> Read DeleteAuthenticationProfileResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAuthenticationProfileResponse]
$creadListPrec :: ReadPrec [DeleteAuthenticationProfileResponse]
readPrec :: ReadPrec DeleteAuthenticationProfileResponse
$creadPrec :: ReadPrec DeleteAuthenticationProfileResponse
readList :: ReadS [DeleteAuthenticationProfileResponse]
$creadList :: ReadS [DeleteAuthenticationProfileResponse]
readsPrec :: Int -> ReadS DeleteAuthenticationProfileResponse
$creadsPrec :: Int -> ReadS DeleteAuthenticationProfileResponse
Prelude.Read, Int -> DeleteAuthenticationProfileResponse -> ShowS
[DeleteAuthenticationProfileResponse] -> ShowS
DeleteAuthenticationProfileResponse -> String
(Int -> DeleteAuthenticationProfileResponse -> ShowS)
-> (DeleteAuthenticationProfileResponse -> String)
-> ([DeleteAuthenticationProfileResponse] -> ShowS)
-> Show DeleteAuthenticationProfileResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAuthenticationProfileResponse] -> ShowS
$cshowList :: [DeleteAuthenticationProfileResponse] -> ShowS
show :: DeleteAuthenticationProfileResponse -> String
$cshow :: DeleteAuthenticationProfileResponse -> String
showsPrec :: Int -> DeleteAuthenticationProfileResponse -> ShowS
$cshowsPrec :: Int -> DeleteAuthenticationProfileResponse -> ShowS
Prelude.Show, (forall x.
DeleteAuthenticationProfileResponse
-> Rep DeleteAuthenticationProfileResponse x)
-> (forall x.
Rep DeleteAuthenticationProfileResponse x
-> DeleteAuthenticationProfileResponse)
-> Generic DeleteAuthenticationProfileResponse
forall x.
Rep DeleteAuthenticationProfileResponse x
-> DeleteAuthenticationProfileResponse
forall x.
DeleteAuthenticationProfileResponse
-> Rep DeleteAuthenticationProfileResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteAuthenticationProfileResponse x
-> DeleteAuthenticationProfileResponse
$cfrom :: forall x.
DeleteAuthenticationProfileResponse
-> Rep DeleteAuthenticationProfileResponse x
Prelude.Generic)
newDeleteAuthenticationProfileResponse ::
Prelude.Int ->
DeleteAuthenticationProfileResponse
newDeleteAuthenticationProfileResponse :: Int -> DeleteAuthenticationProfileResponse
newDeleteAuthenticationProfileResponse Int
pHttpStatus_ =
DeleteAuthenticationProfileResponse' :: Maybe Text -> Int -> DeleteAuthenticationProfileResponse
DeleteAuthenticationProfileResponse'
{ $sel:authenticationProfileName:DeleteAuthenticationProfileResponse' :: Maybe Text
authenticationProfileName =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:DeleteAuthenticationProfileResponse' :: Int
httpStatus = Int
pHttpStatus_
}
deleteAuthenticationProfileResponse_authenticationProfileName :: Lens.Lens' DeleteAuthenticationProfileResponse (Prelude.Maybe Prelude.Text)
deleteAuthenticationProfileResponse_authenticationProfileName :: (Maybe Text -> f (Maybe Text))
-> DeleteAuthenticationProfileResponse
-> f DeleteAuthenticationProfileResponse
deleteAuthenticationProfileResponse_authenticationProfileName = (DeleteAuthenticationProfileResponse -> Maybe Text)
-> (DeleteAuthenticationProfileResponse
-> Maybe Text -> DeleteAuthenticationProfileResponse)
-> Lens
DeleteAuthenticationProfileResponse
DeleteAuthenticationProfileResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAuthenticationProfileResponse' {Maybe Text
authenticationProfileName :: Maybe Text
$sel:authenticationProfileName:DeleteAuthenticationProfileResponse' :: DeleteAuthenticationProfileResponse -> Maybe Text
authenticationProfileName} -> Maybe Text
authenticationProfileName) (\s :: DeleteAuthenticationProfileResponse
s@DeleteAuthenticationProfileResponse' {} Maybe Text
a -> DeleteAuthenticationProfileResponse
s {$sel:authenticationProfileName:DeleteAuthenticationProfileResponse' :: Maybe Text
authenticationProfileName = Maybe Text
a} :: DeleteAuthenticationProfileResponse)
deleteAuthenticationProfileResponse_httpStatus :: Lens.Lens' DeleteAuthenticationProfileResponse Prelude.Int
deleteAuthenticationProfileResponse_httpStatus :: (Int -> f Int)
-> DeleteAuthenticationProfileResponse
-> f DeleteAuthenticationProfileResponse
deleteAuthenticationProfileResponse_httpStatus = (DeleteAuthenticationProfileResponse -> Int)
-> (DeleteAuthenticationProfileResponse
-> Int -> DeleteAuthenticationProfileResponse)
-> Lens
DeleteAuthenticationProfileResponse
DeleteAuthenticationProfileResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAuthenticationProfileResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteAuthenticationProfileResponse' :: DeleteAuthenticationProfileResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteAuthenticationProfileResponse
s@DeleteAuthenticationProfileResponse' {} Int
a -> DeleteAuthenticationProfileResponse
s {$sel:httpStatus:DeleteAuthenticationProfileResponse' :: Int
httpStatus = Int
a} :: DeleteAuthenticationProfileResponse)
instance
Prelude.NFData
DeleteAuthenticationProfileResponse