{-# 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.IAM.DeleteInstanceProfile
(
DeleteInstanceProfile (..),
newDeleteInstanceProfile,
deleteInstanceProfile_instanceProfileName,
DeleteInstanceProfileResponse (..),
newDeleteInstanceProfileResponse,
)
where
import qualified Amazonka.Core as Core
import Amazonka.IAM.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 DeleteInstanceProfile = DeleteInstanceProfile'
{
DeleteInstanceProfile -> Text
instanceProfileName :: Prelude.Text
}
deriving (DeleteInstanceProfile -> DeleteInstanceProfile -> Bool
(DeleteInstanceProfile -> DeleteInstanceProfile -> Bool)
-> (DeleteInstanceProfile -> DeleteInstanceProfile -> Bool)
-> Eq DeleteInstanceProfile
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteInstanceProfile -> DeleteInstanceProfile -> Bool
$c/= :: DeleteInstanceProfile -> DeleteInstanceProfile -> Bool
== :: DeleteInstanceProfile -> DeleteInstanceProfile -> Bool
$c== :: DeleteInstanceProfile -> DeleteInstanceProfile -> Bool
Prelude.Eq, ReadPrec [DeleteInstanceProfile]
ReadPrec DeleteInstanceProfile
Int -> ReadS DeleteInstanceProfile
ReadS [DeleteInstanceProfile]
(Int -> ReadS DeleteInstanceProfile)
-> ReadS [DeleteInstanceProfile]
-> ReadPrec DeleteInstanceProfile
-> ReadPrec [DeleteInstanceProfile]
-> Read DeleteInstanceProfile
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteInstanceProfile]
$creadListPrec :: ReadPrec [DeleteInstanceProfile]
readPrec :: ReadPrec DeleteInstanceProfile
$creadPrec :: ReadPrec DeleteInstanceProfile
readList :: ReadS [DeleteInstanceProfile]
$creadList :: ReadS [DeleteInstanceProfile]
readsPrec :: Int -> ReadS DeleteInstanceProfile
$creadsPrec :: Int -> ReadS DeleteInstanceProfile
Prelude.Read, Int -> DeleteInstanceProfile -> ShowS
[DeleteInstanceProfile] -> ShowS
DeleteInstanceProfile -> String
(Int -> DeleteInstanceProfile -> ShowS)
-> (DeleteInstanceProfile -> String)
-> ([DeleteInstanceProfile] -> ShowS)
-> Show DeleteInstanceProfile
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteInstanceProfile] -> ShowS
$cshowList :: [DeleteInstanceProfile] -> ShowS
show :: DeleteInstanceProfile -> String
$cshow :: DeleteInstanceProfile -> String
showsPrec :: Int -> DeleteInstanceProfile -> ShowS
$cshowsPrec :: Int -> DeleteInstanceProfile -> ShowS
Prelude.Show, (forall x. DeleteInstanceProfile -> Rep DeleteInstanceProfile x)
-> (forall x. Rep DeleteInstanceProfile x -> DeleteInstanceProfile)
-> Generic DeleteInstanceProfile
forall x. Rep DeleteInstanceProfile x -> DeleteInstanceProfile
forall x. DeleteInstanceProfile -> Rep DeleteInstanceProfile x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteInstanceProfile x -> DeleteInstanceProfile
$cfrom :: forall x. DeleteInstanceProfile -> Rep DeleteInstanceProfile x
Prelude.Generic)
newDeleteInstanceProfile ::
Prelude.Text ->
DeleteInstanceProfile
newDeleteInstanceProfile :: Text -> DeleteInstanceProfile
newDeleteInstanceProfile Text
pInstanceProfileName_ =
DeleteInstanceProfile' :: Text -> DeleteInstanceProfile
DeleteInstanceProfile'
{ $sel:instanceProfileName:DeleteInstanceProfile' :: Text
instanceProfileName =
Text
pInstanceProfileName_
}
deleteInstanceProfile_instanceProfileName :: Lens.Lens' DeleteInstanceProfile Prelude.Text
deleteInstanceProfile_instanceProfileName :: (Text -> f Text)
-> DeleteInstanceProfile -> f DeleteInstanceProfile
deleteInstanceProfile_instanceProfileName = (DeleteInstanceProfile -> Text)
-> (DeleteInstanceProfile -> Text -> DeleteInstanceProfile)
-> Lens DeleteInstanceProfile DeleteInstanceProfile Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteInstanceProfile' {Text
instanceProfileName :: Text
$sel:instanceProfileName:DeleteInstanceProfile' :: DeleteInstanceProfile -> Text
instanceProfileName} -> Text
instanceProfileName) (\s :: DeleteInstanceProfile
s@DeleteInstanceProfile' {} Text
a -> DeleteInstanceProfile
s {$sel:instanceProfileName:DeleteInstanceProfile' :: Text
instanceProfileName = Text
a} :: DeleteInstanceProfile)
instance Core.AWSRequest DeleteInstanceProfile where
type
AWSResponse DeleteInstanceProfile =
DeleteInstanceProfileResponse
request :: DeleteInstanceProfile -> Request DeleteInstanceProfile
request = Service -> DeleteInstanceProfile -> Request DeleteInstanceProfile
forall a. ToRequest a => Service -> a -> Request a
Request.postQuery Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteInstanceProfile
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteInstanceProfile)))
response =
AWSResponse DeleteInstanceProfile
-> Logger
-> Service
-> Proxy DeleteInstanceProfile
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteInstanceProfile)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull AWSResponse DeleteInstanceProfile
DeleteInstanceProfileResponse
DeleteInstanceProfileResponse'
instance Prelude.Hashable DeleteInstanceProfile
instance Prelude.NFData DeleteInstanceProfile
instance Core.ToHeaders DeleteInstanceProfile where
toHeaders :: DeleteInstanceProfile -> [Header]
toHeaders = [Header] -> DeleteInstanceProfile -> [Header]
forall a b. a -> b -> a
Prelude.const [Header]
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath DeleteInstanceProfile where
toPath :: DeleteInstanceProfile -> ByteString
toPath = ByteString -> DeleteInstanceProfile -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery DeleteInstanceProfile where
toQuery :: DeleteInstanceProfile -> QueryString
toQuery DeleteInstanceProfile' {Text
instanceProfileName :: Text
$sel:instanceProfileName:DeleteInstanceProfile' :: DeleteInstanceProfile -> 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
"DeleteInstanceProfile" :: Prelude.ByteString),
ByteString
"Version"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: (ByteString
"2010-05-08" :: Prelude.ByteString),
ByteString
"InstanceProfileName" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
instanceProfileName
]
data DeleteInstanceProfileResponse = DeleteInstanceProfileResponse'
{
}
deriving (DeleteInstanceProfileResponse
-> DeleteInstanceProfileResponse -> Bool
(DeleteInstanceProfileResponse
-> DeleteInstanceProfileResponse -> Bool)
-> (DeleteInstanceProfileResponse
-> DeleteInstanceProfileResponse -> Bool)
-> Eq DeleteInstanceProfileResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteInstanceProfileResponse
-> DeleteInstanceProfileResponse -> Bool
$c/= :: DeleteInstanceProfileResponse
-> DeleteInstanceProfileResponse -> Bool
== :: DeleteInstanceProfileResponse
-> DeleteInstanceProfileResponse -> Bool
$c== :: DeleteInstanceProfileResponse
-> DeleteInstanceProfileResponse -> Bool
Prelude.Eq, ReadPrec [DeleteInstanceProfileResponse]
ReadPrec DeleteInstanceProfileResponse
Int -> ReadS DeleteInstanceProfileResponse
ReadS [DeleteInstanceProfileResponse]
(Int -> ReadS DeleteInstanceProfileResponse)
-> ReadS [DeleteInstanceProfileResponse]
-> ReadPrec DeleteInstanceProfileResponse
-> ReadPrec [DeleteInstanceProfileResponse]
-> Read DeleteInstanceProfileResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteInstanceProfileResponse]
$creadListPrec :: ReadPrec [DeleteInstanceProfileResponse]
readPrec :: ReadPrec DeleteInstanceProfileResponse
$creadPrec :: ReadPrec DeleteInstanceProfileResponse
readList :: ReadS [DeleteInstanceProfileResponse]
$creadList :: ReadS [DeleteInstanceProfileResponse]
readsPrec :: Int -> ReadS DeleteInstanceProfileResponse
$creadsPrec :: Int -> ReadS DeleteInstanceProfileResponse
Prelude.Read, Int -> DeleteInstanceProfileResponse -> ShowS
[DeleteInstanceProfileResponse] -> ShowS
DeleteInstanceProfileResponse -> String
(Int -> DeleteInstanceProfileResponse -> ShowS)
-> (DeleteInstanceProfileResponse -> String)
-> ([DeleteInstanceProfileResponse] -> ShowS)
-> Show DeleteInstanceProfileResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteInstanceProfileResponse] -> ShowS
$cshowList :: [DeleteInstanceProfileResponse] -> ShowS
show :: DeleteInstanceProfileResponse -> String
$cshow :: DeleteInstanceProfileResponse -> String
showsPrec :: Int -> DeleteInstanceProfileResponse -> ShowS
$cshowsPrec :: Int -> DeleteInstanceProfileResponse -> ShowS
Prelude.Show, (forall x.
DeleteInstanceProfileResponse
-> Rep DeleteInstanceProfileResponse x)
-> (forall x.
Rep DeleteInstanceProfileResponse x
-> DeleteInstanceProfileResponse)
-> Generic DeleteInstanceProfileResponse
forall x.
Rep DeleteInstanceProfileResponse x
-> DeleteInstanceProfileResponse
forall x.
DeleteInstanceProfileResponse
-> Rep DeleteInstanceProfileResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteInstanceProfileResponse x
-> DeleteInstanceProfileResponse
$cfrom :: forall x.
DeleteInstanceProfileResponse
-> Rep DeleteInstanceProfileResponse x
Prelude.Generic)
newDeleteInstanceProfileResponse ::
DeleteInstanceProfileResponse
newDeleteInstanceProfileResponse :: DeleteInstanceProfileResponse
newDeleteInstanceProfileResponse =
DeleteInstanceProfileResponse
DeleteInstanceProfileResponse'
instance Prelude.NFData DeleteInstanceProfileResponse