{-# 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.IoT.DeleteRoleAlias
(
DeleteRoleAlias (..),
newDeleteRoleAlias,
deleteRoleAlias_roleAlias,
DeleteRoleAliasResponse (..),
newDeleteRoleAliasResponse,
deleteRoleAliasResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.IoT.Types
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data DeleteRoleAlias = DeleteRoleAlias'
{
DeleteRoleAlias -> Text
roleAlias :: Prelude.Text
}
deriving (DeleteRoleAlias -> DeleteRoleAlias -> Bool
(DeleteRoleAlias -> DeleteRoleAlias -> Bool)
-> (DeleteRoleAlias -> DeleteRoleAlias -> Bool)
-> Eq DeleteRoleAlias
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRoleAlias -> DeleteRoleAlias -> Bool
$c/= :: DeleteRoleAlias -> DeleteRoleAlias -> Bool
== :: DeleteRoleAlias -> DeleteRoleAlias -> Bool
$c== :: DeleteRoleAlias -> DeleteRoleAlias -> Bool
Prelude.Eq, ReadPrec [DeleteRoleAlias]
ReadPrec DeleteRoleAlias
Int -> ReadS DeleteRoleAlias
ReadS [DeleteRoleAlias]
(Int -> ReadS DeleteRoleAlias)
-> ReadS [DeleteRoleAlias]
-> ReadPrec DeleteRoleAlias
-> ReadPrec [DeleteRoleAlias]
-> Read DeleteRoleAlias
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRoleAlias]
$creadListPrec :: ReadPrec [DeleteRoleAlias]
readPrec :: ReadPrec DeleteRoleAlias
$creadPrec :: ReadPrec DeleteRoleAlias
readList :: ReadS [DeleteRoleAlias]
$creadList :: ReadS [DeleteRoleAlias]
readsPrec :: Int -> ReadS DeleteRoleAlias
$creadsPrec :: Int -> ReadS DeleteRoleAlias
Prelude.Read, Int -> DeleteRoleAlias -> ShowS
[DeleteRoleAlias] -> ShowS
DeleteRoleAlias -> String
(Int -> DeleteRoleAlias -> ShowS)
-> (DeleteRoleAlias -> String)
-> ([DeleteRoleAlias] -> ShowS)
-> Show DeleteRoleAlias
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRoleAlias] -> ShowS
$cshowList :: [DeleteRoleAlias] -> ShowS
show :: DeleteRoleAlias -> String
$cshow :: DeleteRoleAlias -> String
showsPrec :: Int -> DeleteRoleAlias -> ShowS
$cshowsPrec :: Int -> DeleteRoleAlias -> ShowS
Prelude.Show, (forall x. DeleteRoleAlias -> Rep DeleteRoleAlias x)
-> (forall x. Rep DeleteRoleAlias x -> DeleteRoleAlias)
-> Generic DeleteRoleAlias
forall x. Rep DeleteRoleAlias x -> DeleteRoleAlias
forall x. DeleteRoleAlias -> Rep DeleteRoleAlias x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteRoleAlias x -> DeleteRoleAlias
$cfrom :: forall x. DeleteRoleAlias -> Rep DeleteRoleAlias x
Prelude.Generic)
newDeleteRoleAlias ::
Prelude.Text ->
DeleteRoleAlias
newDeleteRoleAlias :: Text -> DeleteRoleAlias
newDeleteRoleAlias Text
pRoleAlias_ =
DeleteRoleAlias' :: Text -> DeleteRoleAlias
DeleteRoleAlias' {$sel:roleAlias:DeleteRoleAlias' :: Text
roleAlias = Text
pRoleAlias_}
deleteRoleAlias_roleAlias :: Lens.Lens' DeleteRoleAlias Prelude.Text
deleteRoleAlias_roleAlias :: (Text -> f Text) -> DeleteRoleAlias -> f DeleteRoleAlias
deleteRoleAlias_roleAlias = (DeleteRoleAlias -> Text)
-> (DeleteRoleAlias -> Text -> DeleteRoleAlias)
-> Lens DeleteRoleAlias DeleteRoleAlias Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRoleAlias' {Text
roleAlias :: Text
$sel:roleAlias:DeleteRoleAlias' :: DeleteRoleAlias -> Text
roleAlias} -> Text
roleAlias) (\s :: DeleteRoleAlias
s@DeleteRoleAlias' {} Text
a -> DeleteRoleAlias
s {$sel:roleAlias:DeleteRoleAlias' :: Text
roleAlias = Text
a} :: DeleteRoleAlias)
instance Core.AWSRequest DeleteRoleAlias where
type
AWSResponse DeleteRoleAlias =
DeleteRoleAliasResponse
request :: DeleteRoleAlias -> Request DeleteRoleAlias
request = Service -> DeleteRoleAlias -> Request DeleteRoleAlias
forall a. ToRequest a => Service -> a -> Request a
Request.delete Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteRoleAlias
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteRoleAlias)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse DeleteRoleAlias))
-> Logger
-> Service
-> Proxy DeleteRoleAlias
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteRoleAlias)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
( \Int
s ResponseHeaders
h ()
x ->
Int -> DeleteRoleAliasResponse
DeleteRoleAliasResponse'
(Int -> DeleteRoleAliasResponse)
-> Either String Int -> Either String DeleteRoleAliasResponse
forall (f :: * -> *) a b. Functor 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 DeleteRoleAlias
instance Prelude.NFData DeleteRoleAlias
instance Core.ToHeaders DeleteRoleAlias where
toHeaders :: DeleteRoleAlias -> ResponseHeaders
toHeaders = ResponseHeaders -> DeleteRoleAlias -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath DeleteRoleAlias where
toPath :: DeleteRoleAlias -> ByteString
toPath DeleteRoleAlias' {Text
roleAlias :: Text
$sel:roleAlias:DeleteRoleAlias' :: DeleteRoleAlias -> Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ByteString
"/role-aliases/", Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
roleAlias]
instance Core.ToQuery DeleteRoleAlias where
toQuery :: DeleteRoleAlias -> QueryString
toQuery = QueryString -> DeleteRoleAlias -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteRoleAliasResponse = DeleteRoleAliasResponse'
{
DeleteRoleAliasResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteRoleAliasResponse -> DeleteRoleAliasResponse -> Bool
(DeleteRoleAliasResponse -> DeleteRoleAliasResponse -> Bool)
-> (DeleteRoleAliasResponse -> DeleteRoleAliasResponse -> Bool)
-> Eq DeleteRoleAliasResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRoleAliasResponse -> DeleteRoleAliasResponse -> Bool
$c/= :: DeleteRoleAliasResponse -> DeleteRoleAliasResponse -> Bool
== :: DeleteRoleAliasResponse -> DeleteRoleAliasResponse -> Bool
$c== :: DeleteRoleAliasResponse -> DeleteRoleAliasResponse -> Bool
Prelude.Eq, ReadPrec [DeleteRoleAliasResponse]
ReadPrec DeleteRoleAliasResponse
Int -> ReadS DeleteRoleAliasResponse
ReadS [DeleteRoleAliasResponse]
(Int -> ReadS DeleteRoleAliasResponse)
-> ReadS [DeleteRoleAliasResponse]
-> ReadPrec DeleteRoleAliasResponse
-> ReadPrec [DeleteRoleAliasResponse]
-> Read DeleteRoleAliasResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRoleAliasResponse]
$creadListPrec :: ReadPrec [DeleteRoleAliasResponse]
readPrec :: ReadPrec DeleteRoleAliasResponse
$creadPrec :: ReadPrec DeleteRoleAliasResponse
readList :: ReadS [DeleteRoleAliasResponse]
$creadList :: ReadS [DeleteRoleAliasResponse]
readsPrec :: Int -> ReadS DeleteRoleAliasResponse
$creadsPrec :: Int -> ReadS DeleteRoleAliasResponse
Prelude.Read, Int -> DeleteRoleAliasResponse -> ShowS
[DeleteRoleAliasResponse] -> ShowS
DeleteRoleAliasResponse -> String
(Int -> DeleteRoleAliasResponse -> ShowS)
-> (DeleteRoleAliasResponse -> String)
-> ([DeleteRoleAliasResponse] -> ShowS)
-> Show DeleteRoleAliasResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRoleAliasResponse] -> ShowS
$cshowList :: [DeleteRoleAliasResponse] -> ShowS
show :: DeleteRoleAliasResponse -> String
$cshow :: DeleteRoleAliasResponse -> String
showsPrec :: Int -> DeleteRoleAliasResponse -> ShowS
$cshowsPrec :: Int -> DeleteRoleAliasResponse -> ShowS
Prelude.Show, (forall x.
DeleteRoleAliasResponse -> Rep DeleteRoleAliasResponse x)
-> (forall x.
Rep DeleteRoleAliasResponse x -> DeleteRoleAliasResponse)
-> Generic DeleteRoleAliasResponse
forall x. Rep DeleteRoleAliasResponse x -> DeleteRoleAliasResponse
forall x. DeleteRoleAliasResponse -> Rep DeleteRoleAliasResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteRoleAliasResponse x -> DeleteRoleAliasResponse
$cfrom :: forall x. DeleteRoleAliasResponse -> Rep DeleteRoleAliasResponse x
Prelude.Generic)
newDeleteRoleAliasResponse ::
Prelude.Int ->
DeleteRoleAliasResponse
newDeleteRoleAliasResponse :: Int -> DeleteRoleAliasResponse
newDeleteRoleAliasResponse Int
pHttpStatus_ =
DeleteRoleAliasResponse' :: Int -> DeleteRoleAliasResponse
DeleteRoleAliasResponse' {$sel:httpStatus:DeleteRoleAliasResponse' :: Int
httpStatus = Int
pHttpStatus_}
deleteRoleAliasResponse_httpStatus :: Lens.Lens' DeleteRoleAliasResponse Prelude.Int
deleteRoleAliasResponse_httpStatus :: (Int -> f Int)
-> DeleteRoleAliasResponse -> f DeleteRoleAliasResponse
deleteRoleAliasResponse_httpStatus = (DeleteRoleAliasResponse -> Int)
-> (DeleteRoleAliasResponse -> Int -> DeleteRoleAliasResponse)
-> Lens DeleteRoleAliasResponse DeleteRoleAliasResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRoleAliasResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteRoleAliasResponse' :: DeleteRoleAliasResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteRoleAliasResponse
s@DeleteRoleAliasResponse' {} Int
a -> DeleteRoleAliasResponse
s {$sel:httpStatus:DeleteRoleAliasResponse' :: Int
httpStatus = Int
a} :: DeleteRoleAliasResponse)
instance Prelude.NFData DeleteRoleAliasResponse