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