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