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