{-# 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.CreateInstanceProfile
(
CreateInstanceProfile (..),
newCreateInstanceProfile,
createInstanceProfile_path,
createInstanceProfile_tags,
createInstanceProfile_instanceProfileName,
CreateInstanceProfileResponse (..),
newCreateInstanceProfileResponse,
createInstanceProfileResponse_httpStatus,
createInstanceProfileResponse_instanceProfile,
)
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 CreateInstanceProfile = CreateInstanceProfile'
{
CreateInstanceProfile -> Maybe Text
path :: Prelude.Maybe Prelude.Text,
CreateInstanceProfile -> Maybe [Tag]
tags :: Prelude.Maybe [Tag],
CreateInstanceProfile -> Text
instanceProfileName :: Prelude.Text
}
deriving (CreateInstanceProfile -> CreateInstanceProfile -> Bool
(CreateInstanceProfile -> CreateInstanceProfile -> Bool)
-> (CreateInstanceProfile -> CreateInstanceProfile -> Bool)
-> Eq CreateInstanceProfile
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateInstanceProfile -> CreateInstanceProfile -> Bool
$c/= :: CreateInstanceProfile -> CreateInstanceProfile -> Bool
== :: CreateInstanceProfile -> CreateInstanceProfile -> Bool
$c== :: CreateInstanceProfile -> CreateInstanceProfile -> Bool
Prelude.Eq, ReadPrec [CreateInstanceProfile]
ReadPrec CreateInstanceProfile
Int -> ReadS CreateInstanceProfile
ReadS [CreateInstanceProfile]
(Int -> ReadS CreateInstanceProfile)
-> ReadS [CreateInstanceProfile]
-> ReadPrec CreateInstanceProfile
-> ReadPrec [CreateInstanceProfile]
-> Read CreateInstanceProfile
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateInstanceProfile]
$creadListPrec :: ReadPrec [CreateInstanceProfile]
readPrec :: ReadPrec CreateInstanceProfile
$creadPrec :: ReadPrec CreateInstanceProfile
readList :: ReadS [CreateInstanceProfile]
$creadList :: ReadS [CreateInstanceProfile]
readsPrec :: Int -> ReadS CreateInstanceProfile
$creadsPrec :: Int -> ReadS CreateInstanceProfile
Prelude.Read, Int -> CreateInstanceProfile -> ShowS
[CreateInstanceProfile] -> ShowS
CreateInstanceProfile -> String
(Int -> CreateInstanceProfile -> ShowS)
-> (CreateInstanceProfile -> String)
-> ([CreateInstanceProfile] -> ShowS)
-> Show CreateInstanceProfile
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateInstanceProfile] -> ShowS
$cshowList :: [CreateInstanceProfile] -> ShowS
show :: CreateInstanceProfile -> String
$cshow :: CreateInstanceProfile -> String
showsPrec :: Int -> CreateInstanceProfile -> ShowS
$cshowsPrec :: Int -> CreateInstanceProfile -> ShowS
Prelude.Show, (forall x. CreateInstanceProfile -> Rep CreateInstanceProfile x)
-> (forall x. Rep CreateInstanceProfile x -> CreateInstanceProfile)
-> Generic CreateInstanceProfile
forall x. Rep CreateInstanceProfile x -> CreateInstanceProfile
forall x. CreateInstanceProfile -> Rep CreateInstanceProfile x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateInstanceProfile x -> CreateInstanceProfile
$cfrom :: forall x. CreateInstanceProfile -> Rep CreateInstanceProfile x
Prelude.Generic)
newCreateInstanceProfile ::
Prelude.Text ->
CreateInstanceProfile
newCreateInstanceProfile :: Text -> CreateInstanceProfile
newCreateInstanceProfile Text
pInstanceProfileName_ =
CreateInstanceProfile' :: Maybe Text -> Maybe [Tag] -> Text -> CreateInstanceProfile
CreateInstanceProfile'
{ $sel:path:CreateInstanceProfile' :: Maybe Text
path = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:tags:CreateInstanceProfile' :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
$sel:instanceProfileName:CreateInstanceProfile' :: Text
instanceProfileName = Text
pInstanceProfileName_
}
createInstanceProfile_path :: Lens.Lens' CreateInstanceProfile (Prelude.Maybe Prelude.Text)
createInstanceProfile_path :: (Maybe Text -> f (Maybe Text))
-> CreateInstanceProfile -> f CreateInstanceProfile
createInstanceProfile_path = (CreateInstanceProfile -> Maybe Text)
-> (CreateInstanceProfile -> Maybe Text -> CreateInstanceProfile)
-> Lens
CreateInstanceProfile
CreateInstanceProfile
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateInstanceProfile' {Maybe Text
path :: Maybe Text
$sel:path:CreateInstanceProfile' :: CreateInstanceProfile -> Maybe Text
path} -> Maybe Text
path) (\s :: CreateInstanceProfile
s@CreateInstanceProfile' {} Maybe Text
a -> CreateInstanceProfile
s {$sel:path:CreateInstanceProfile' :: Maybe Text
path = Maybe Text
a} :: CreateInstanceProfile)
createInstanceProfile_tags :: Lens.Lens' CreateInstanceProfile (Prelude.Maybe [Tag])
createInstanceProfile_tags :: (Maybe [Tag] -> f (Maybe [Tag]))
-> CreateInstanceProfile -> f CreateInstanceProfile
createInstanceProfile_tags = (CreateInstanceProfile -> Maybe [Tag])
-> (CreateInstanceProfile -> Maybe [Tag] -> CreateInstanceProfile)
-> Lens
CreateInstanceProfile
CreateInstanceProfile
(Maybe [Tag])
(Maybe [Tag])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateInstanceProfile' {Maybe [Tag]
tags :: Maybe [Tag]
$sel:tags:CreateInstanceProfile' :: CreateInstanceProfile -> Maybe [Tag]
tags} -> Maybe [Tag]
tags) (\s :: CreateInstanceProfile
s@CreateInstanceProfile' {} Maybe [Tag]
a -> CreateInstanceProfile
s {$sel:tags:CreateInstanceProfile' :: Maybe [Tag]
tags = Maybe [Tag]
a} :: CreateInstanceProfile) ((Maybe [Tag] -> f (Maybe [Tag]))
-> CreateInstanceProfile -> f CreateInstanceProfile)
-> ((Maybe [Tag] -> f (Maybe [Tag]))
-> Maybe [Tag] -> f (Maybe [Tag]))
-> (Maybe [Tag] -> f (Maybe [Tag]))
-> CreateInstanceProfile
-> f CreateInstanceProfile
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Tag] [Tag] [Tag] [Tag]
-> Iso (Maybe [Tag]) (Maybe [Tag]) (Maybe [Tag]) (Maybe [Tag])
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso [Tag] [Tag] [Tag] [Tag]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
createInstanceProfile_instanceProfileName :: Lens.Lens' CreateInstanceProfile Prelude.Text
createInstanceProfile_instanceProfileName :: (Text -> f Text)
-> CreateInstanceProfile -> f CreateInstanceProfile
createInstanceProfile_instanceProfileName = (CreateInstanceProfile -> Text)
-> (CreateInstanceProfile -> Text -> CreateInstanceProfile)
-> Lens CreateInstanceProfile CreateInstanceProfile Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateInstanceProfile' {Text
instanceProfileName :: Text
$sel:instanceProfileName:CreateInstanceProfile' :: CreateInstanceProfile -> Text
instanceProfileName} -> Text
instanceProfileName) (\s :: CreateInstanceProfile
s@CreateInstanceProfile' {} Text
a -> CreateInstanceProfile
s {$sel:instanceProfileName:CreateInstanceProfile' :: Text
instanceProfileName = Text
a} :: CreateInstanceProfile)
instance Core.AWSRequest CreateInstanceProfile where
type
AWSResponse CreateInstanceProfile =
CreateInstanceProfileResponse
request :: CreateInstanceProfile -> Request CreateInstanceProfile
request = Service -> CreateInstanceProfile -> Request CreateInstanceProfile
forall a. ToRequest a => Service -> a -> Request a
Request.postQuery Service
defaultService
response :: Logger
-> Service
-> Proxy CreateInstanceProfile
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse CreateInstanceProfile)))
response =
Text
-> (Int
-> ResponseHeaders
-> [Node]
-> Either String (AWSResponse CreateInstanceProfile))
-> Logger
-> Service
-> Proxy CreateInstanceProfile
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse CreateInstanceProfile)))
forall (m :: * -> *) a.
MonadResource m =>
Text
-> (Int
-> ResponseHeaders -> [Node] -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveXMLWrapper
Text
"CreateInstanceProfileResult"
( \Int
s ResponseHeaders
h [Node]
x ->
Int -> InstanceProfile -> CreateInstanceProfileResponse
CreateInstanceProfileResponse'
(Int -> InstanceProfile -> CreateInstanceProfileResponse)
-> Either String Int
-> Either String (InstanceProfile -> CreateInstanceProfileResponse)
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))
Either String (InstanceProfile -> CreateInstanceProfileResponse)
-> Either String InstanceProfile
-> Either String CreateInstanceProfileResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ([Node]
x [Node] -> Text -> Either String InstanceProfile
forall a. FromXML a => [Node] -> Text -> Either String a
Core..@ Text
"InstanceProfile")
)
instance Prelude.Hashable CreateInstanceProfile
instance Prelude.NFData CreateInstanceProfile
instance Core.ToHeaders CreateInstanceProfile where
toHeaders :: CreateInstanceProfile -> ResponseHeaders
toHeaders = ResponseHeaders -> CreateInstanceProfile -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath CreateInstanceProfile where
toPath :: CreateInstanceProfile -> ByteString
toPath = ByteString -> CreateInstanceProfile -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery CreateInstanceProfile where
toQuery :: CreateInstanceProfile -> QueryString
toQuery CreateInstanceProfile' {Maybe [Tag]
Maybe Text
Text
instanceProfileName :: Text
tags :: Maybe [Tag]
path :: Maybe Text
$sel:instanceProfileName:CreateInstanceProfile' :: CreateInstanceProfile -> Text
$sel:tags:CreateInstanceProfile' :: CreateInstanceProfile -> Maybe [Tag]
$sel:path:CreateInstanceProfile' :: CreateInstanceProfile -> Maybe 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
"CreateInstanceProfile" :: Prelude.ByteString),
ByteString
"Version"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: (ByteString
"2010-05-08" :: Prelude.ByteString),
ByteString
"Path" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
path,
ByteString
"Tags"
ByteString -> QueryString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe QueryString -> QueryString
forall a. ToQuery a => a -> QueryString
Core.toQuery
(ByteString -> [Tag] -> QueryString
forall a.
(IsList a, ToQuery (Item a)) =>
ByteString -> a -> QueryString
Core.toQueryList ByteString
"member" ([Tag] -> QueryString) -> Maybe [Tag] -> Maybe QueryString
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags),
ByteString
"InstanceProfileName" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
instanceProfileName
]
data CreateInstanceProfileResponse = CreateInstanceProfileResponse'
{
CreateInstanceProfileResponse -> Int
httpStatus :: Prelude.Int,
CreateInstanceProfileResponse -> InstanceProfile
instanceProfile :: InstanceProfile
}
deriving (CreateInstanceProfileResponse
-> CreateInstanceProfileResponse -> Bool
(CreateInstanceProfileResponse
-> CreateInstanceProfileResponse -> Bool)
-> (CreateInstanceProfileResponse
-> CreateInstanceProfileResponse -> Bool)
-> Eq CreateInstanceProfileResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateInstanceProfileResponse
-> CreateInstanceProfileResponse -> Bool
$c/= :: CreateInstanceProfileResponse
-> CreateInstanceProfileResponse -> Bool
== :: CreateInstanceProfileResponse
-> CreateInstanceProfileResponse -> Bool
$c== :: CreateInstanceProfileResponse
-> CreateInstanceProfileResponse -> Bool
Prelude.Eq, ReadPrec [CreateInstanceProfileResponse]
ReadPrec CreateInstanceProfileResponse
Int -> ReadS CreateInstanceProfileResponse
ReadS [CreateInstanceProfileResponse]
(Int -> ReadS CreateInstanceProfileResponse)
-> ReadS [CreateInstanceProfileResponse]
-> ReadPrec CreateInstanceProfileResponse
-> ReadPrec [CreateInstanceProfileResponse]
-> Read CreateInstanceProfileResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateInstanceProfileResponse]
$creadListPrec :: ReadPrec [CreateInstanceProfileResponse]
readPrec :: ReadPrec CreateInstanceProfileResponse
$creadPrec :: ReadPrec CreateInstanceProfileResponse
readList :: ReadS [CreateInstanceProfileResponse]
$creadList :: ReadS [CreateInstanceProfileResponse]
readsPrec :: Int -> ReadS CreateInstanceProfileResponse
$creadsPrec :: Int -> ReadS CreateInstanceProfileResponse
Prelude.Read, Int -> CreateInstanceProfileResponse -> ShowS
[CreateInstanceProfileResponse] -> ShowS
CreateInstanceProfileResponse -> String
(Int -> CreateInstanceProfileResponse -> ShowS)
-> (CreateInstanceProfileResponse -> String)
-> ([CreateInstanceProfileResponse] -> ShowS)
-> Show CreateInstanceProfileResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateInstanceProfileResponse] -> ShowS
$cshowList :: [CreateInstanceProfileResponse] -> ShowS
show :: CreateInstanceProfileResponse -> String
$cshow :: CreateInstanceProfileResponse -> String
showsPrec :: Int -> CreateInstanceProfileResponse -> ShowS
$cshowsPrec :: Int -> CreateInstanceProfileResponse -> ShowS
Prelude.Show, (forall x.
CreateInstanceProfileResponse
-> Rep CreateInstanceProfileResponse x)
-> (forall x.
Rep CreateInstanceProfileResponse x
-> CreateInstanceProfileResponse)
-> Generic CreateInstanceProfileResponse
forall x.
Rep CreateInstanceProfileResponse x
-> CreateInstanceProfileResponse
forall x.
CreateInstanceProfileResponse
-> Rep CreateInstanceProfileResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep CreateInstanceProfileResponse x
-> CreateInstanceProfileResponse
$cfrom :: forall x.
CreateInstanceProfileResponse
-> Rep CreateInstanceProfileResponse x
Prelude.Generic)
newCreateInstanceProfileResponse ::
Prelude.Int ->
InstanceProfile ->
CreateInstanceProfileResponse
newCreateInstanceProfileResponse :: Int -> InstanceProfile -> CreateInstanceProfileResponse
newCreateInstanceProfileResponse
Int
pHttpStatus_
InstanceProfile
pInstanceProfile_ =
CreateInstanceProfileResponse' :: Int -> InstanceProfile -> CreateInstanceProfileResponse
CreateInstanceProfileResponse'
{ $sel:httpStatus:CreateInstanceProfileResponse' :: Int
httpStatus =
Int
pHttpStatus_,
$sel:instanceProfile:CreateInstanceProfileResponse' :: InstanceProfile
instanceProfile = InstanceProfile
pInstanceProfile_
}
createInstanceProfileResponse_httpStatus :: Lens.Lens' CreateInstanceProfileResponse Prelude.Int
createInstanceProfileResponse_httpStatus :: (Int -> f Int)
-> CreateInstanceProfileResponse -> f CreateInstanceProfileResponse
createInstanceProfileResponse_httpStatus = (CreateInstanceProfileResponse -> Int)
-> (CreateInstanceProfileResponse
-> Int -> CreateInstanceProfileResponse)
-> Lens
CreateInstanceProfileResponse CreateInstanceProfileResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateInstanceProfileResponse' {Int
httpStatus :: Int
$sel:httpStatus:CreateInstanceProfileResponse' :: CreateInstanceProfileResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: CreateInstanceProfileResponse
s@CreateInstanceProfileResponse' {} Int
a -> CreateInstanceProfileResponse
s {$sel:httpStatus:CreateInstanceProfileResponse' :: Int
httpStatus = Int
a} :: CreateInstanceProfileResponse)
createInstanceProfileResponse_instanceProfile :: Lens.Lens' CreateInstanceProfileResponse InstanceProfile
createInstanceProfileResponse_instanceProfile :: (InstanceProfile -> f InstanceProfile)
-> CreateInstanceProfileResponse -> f CreateInstanceProfileResponse
createInstanceProfileResponse_instanceProfile = (CreateInstanceProfileResponse -> InstanceProfile)
-> (CreateInstanceProfileResponse
-> InstanceProfile -> CreateInstanceProfileResponse)
-> Lens
CreateInstanceProfileResponse
CreateInstanceProfileResponse
InstanceProfile
InstanceProfile
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateInstanceProfileResponse' {InstanceProfile
instanceProfile :: InstanceProfile
$sel:instanceProfile:CreateInstanceProfileResponse' :: CreateInstanceProfileResponse -> InstanceProfile
instanceProfile} -> InstanceProfile
instanceProfile) (\s :: CreateInstanceProfileResponse
s@CreateInstanceProfileResponse' {} InstanceProfile
a -> CreateInstanceProfileResponse
s {$sel:instanceProfile:CreateInstanceProfileResponse' :: InstanceProfile
instanceProfile = InstanceProfile
a} :: CreateInstanceProfileResponse)
instance Prelude.NFData CreateInstanceProfileResponse