{-# 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.CreatePolicy
(
CreatePolicy (..),
newCreatePolicy,
createPolicy_path,
createPolicy_description,
createPolicy_tags,
createPolicy_policyName,
createPolicy_policyDocument,
CreatePolicyResponse (..),
newCreatePolicyResponse,
createPolicyResponse_policy,
createPolicyResponse_httpStatus,
)
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 CreatePolicy = CreatePolicy'
{
CreatePolicy -> Maybe Text
path :: Prelude.Maybe Prelude.Text,
CreatePolicy -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
CreatePolicy -> Maybe [Tag]
tags :: Prelude.Maybe [Tag],
CreatePolicy -> Text
policyName :: Prelude.Text,
CreatePolicy -> Text
policyDocument :: Prelude.Text
}
deriving (CreatePolicy -> CreatePolicy -> Bool
(CreatePolicy -> CreatePolicy -> Bool)
-> (CreatePolicy -> CreatePolicy -> Bool) -> Eq CreatePolicy
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreatePolicy -> CreatePolicy -> Bool
$c/= :: CreatePolicy -> CreatePolicy -> Bool
== :: CreatePolicy -> CreatePolicy -> Bool
$c== :: CreatePolicy -> CreatePolicy -> Bool
Prelude.Eq, ReadPrec [CreatePolicy]
ReadPrec CreatePolicy
Int -> ReadS CreatePolicy
ReadS [CreatePolicy]
(Int -> ReadS CreatePolicy)
-> ReadS [CreatePolicy]
-> ReadPrec CreatePolicy
-> ReadPrec [CreatePolicy]
-> Read CreatePolicy
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreatePolicy]
$creadListPrec :: ReadPrec [CreatePolicy]
readPrec :: ReadPrec CreatePolicy
$creadPrec :: ReadPrec CreatePolicy
readList :: ReadS [CreatePolicy]
$creadList :: ReadS [CreatePolicy]
readsPrec :: Int -> ReadS CreatePolicy
$creadsPrec :: Int -> ReadS CreatePolicy
Prelude.Read, Int -> CreatePolicy -> ShowS
[CreatePolicy] -> ShowS
CreatePolicy -> String
(Int -> CreatePolicy -> ShowS)
-> (CreatePolicy -> String)
-> ([CreatePolicy] -> ShowS)
-> Show CreatePolicy
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreatePolicy] -> ShowS
$cshowList :: [CreatePolicy] -> ShowS
show :: CreatePolicy -> String
$cshow :: CreatePolicy -> String
showsPrec :: Int -> CreatePolicy -> ShowS
$cshowsPrec :: Int -> CreatePolicy -> ShowS
Prelude.Show, (forall x. CreatePolicy -> Rep CreatePolicy x)
-> (forall x. Rep CreatePolicy x -> CreatePolicy)
-> Generic CreatePolicy
forall x. Rep CreatePolicy x -> CreatePolicy
forall x. CreatePolicy -> Rep CreatePolicy x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreatePolicy x -> CreatePolicy
$cfrom :: forall x. CreatePolicy -> Rep CreatePolicy x
Prelude.Generic)
newCreatePolicy ::
Prelude.Text ->
Prelude.Text ->
CreatePolicy
newCreatePolicy :: Text -> Text -> CreatePolicy
newCreatePolicy Text
pPolicyName_ Text
pPolicyDocument_ =
CreatePolicy' :: Maybe Text
-> Maybe Text -> Maybe [Tag] -> Text -> Text -> CreatePolicy
CreatePolicy'
{ $sel:path:CreatePolicy' :: Maybe Text
path = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:description:CreatePolicy' :: Maybe Text
description = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:tags:CreatePolicy' :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
$sel:policyName:CreatePolicy' :: Text
policyName = Text
pPolicyName_,
$sel:policyDocument:CreatePolicy' :: Text
policyDocument = Text
pPolicyDocument_
}
createPolicy_path :: Lens.Lens' CreatePolicy (Prelude.Maybe Prelude.Text)
createPolicy_path :: (Maybe Text -> f (Maybe Text)) -> CreatePolicy -> f CreatePolicy
createPolicy_path = (CreatePolicy -> Maybe Text)
-> (CreatePolicy -> Maybe Text -> CreatePolicy)
-> Lens CreatePolicy CreatePolicy (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePolicy' {Maybe Text
path :: Maybe Text
$sel:path:CreatePolicy' :: CreatePolicy -> Maybe Text
path} -> Maybe Text
path) (\s :: CreatePolicy
s@CreatePolicy' {} Maybe Text
a -> CreatePolicy
s {$sel:path:CreatePolicy' :: Maybe Text
path = Maybe Text
a} :: CreatePolicy)
createPolicy_description :: Lens.Lens' CreatePolicy (Prelude.Maybe Prelude.Text)
createPolicy_description :: (Maybe Text -> f (Maybe Text)) -> CreatePolicy -> f CreatePolicy
createPolicy_description = (CreatePolicy -> Maybe Text)
-> (CreatePolicy -> Maybe Text -> CreatePolicy)
-> Lens CreatePolicy CreatePolicy (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePolicy' {Maybe Text
description :: Maybe Text
$sel:description:CreatePolicy' :: CreatePolicy -> Maybe Text
description} -> Maybe Text
description) (\s :: CreatePolicy
s@CreatePolicy' {} Maybe Text
a -> CreatePolicy
s {$sel:description:CreatePolicy' :: Maybe Text
description = Maybe Text
a} :: CreatePolicy)
createPolicy_tags :: Lens.Lens' CreatePolicy (Prelude.Maybe [Tag])
createPolicy_tags :: (Maybe [Tag] -> f (Maybe [Tag])) -> CreatePolicy -> f CreatePolicy
createPolicy_tags = (CreatePolicy -> Maybe [Tag])
-> (CreatePolicy -> Maybe [Tag] -> CreatePolicy)
-> Lens CreatePolicy CreatePolicy (Maybe [Tag]) (Maybe [Tag])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePolicy' {Maybe [Tag]
tags :: Maybe [Tag]
$sel:tags:CreatePolicy' :: CreatePolicy -> Maybe [Tag]
tags} -> Maybe [Tag]
tags) (\s :: CreatePolicy
s@CreatePolicy' {} Maybe [Tag]
a -> CreatePolicy
s {$sel:tags:CreatePolicy' :: Maybe [Tag]
tags = Maybe [Tag]
a} :: CreatePolicy) ((Maybe [Tag] -> f (Maybe [Tag]))
-> CreatePolicy -> f CreatePolicy)
-> ((Maybe [Tag] -> f (Maybe [Tag]))
-> Maybe [Tag] -> f (Maybe [Tag]))
-> (Maybe [Tag] -> f (Maybe [Tag]))
-> CreatePolicy
-> f CreatePolicy
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
createPolicy_policyName :: Lens.Lens' CreatePolicy Prelude.Text
createPolicy_policyName :: (Text -> f Text) -> CreatePolicy -> f CreatePolicy
createPolicy_policyName = (CreatePolicy -> Text)
-> (CreatePolicy -> Text -> CreatePolicy)
-> Lens CreatePolicy CreatePolicy Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePolicy' {Text
policyName :: Text
$sel:policyName:CreatePolicy' :: CreatePolicy -> Text
policyName} -> Text
policyName) (\s :: CreatePolicy
s@CreatePolicy' {} Text
a -> CreatePolicy
s {$sel:policyName:CreatePolicy' :: Text
policyName = Text
a} :: CreatePolicy)
createPolicy_policyDocument :: Lens.Lens' CreatePolicy Prelude.Text
createPolicy_policyDocument :: (Text -> f Text) -> CreatePolicy -> f CreatePolicy
createPolicy_policyDocument = (CreatePolicy -> Text)
-> (CreatePolicy -> Text -> CreatePolicy)
-> Lens CreatePolicy CreatePolicy Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePolicy' {Text
policyDocument :: Text
$sel:policyDocument:CreatePolicy' :: CreatePolicy -> Text
policyDocument} -> Text
policyDocument) (\s :: CreatePolicy
s@CreatePolicy' {} Text
a -> CreatePolicy
s {$sel:policyDocument:CreatePolicy' :: Text
policyDocument = Text
a} :: CreatePolicy)
instance Core.AWSRequest CreatePolicy where
type AWSResponse CreatePolicy = CreatePolicyResponse
request :: CreatePolicy -> Request CreatePolicy
request = Service -> CreatePolicy -> Request CreatePolicy
forall a. ToRequest a => Service -> a -> Request a
Request.postQuery Service
defaultService
response :: Logger
-> Service
-> Proxy CreatePolicy
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreatePolicy)))
response =
Text
-> (Int
-> ResponseHeaders
-> [Node]
-> Either String (AWSResponse CreatePolicy))
-> Logger
-> Service
-> Proxy CreatePolicy
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreatePolicy)))
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
"CreatePolicyResult"
( \Int
s ResponseHeaders
h [Node]
x ->
Maybe Policy -> Int -> CreatePolicyResponse
CreatePolicyResponse'
(Maybe Policy -> Int -> CreatePolicyResponse)
-> Either String (Maybe Policy)
-> Either String (Int -> CreatePolicyResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> ([Node]
x [Node] -> Text -> Either String (Maybe Policy)
forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Core..@? Text
"Policy")
Either String (Int -> CreatePolicyResponse)
-> Either String Int -> Either String CreatePolicyResponse
forall (f :: * -> *) a b. Applicative f => 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))
)
instance Prelude.Hashable CreatePolicy
instance Prelude.NFData CreatePolicy
instance Core.ToHeaders CreatePolicy where
toHeaders :: CreatePolicy -> ResponseHeaders
toHeaders = ResponseHeaders -> CreatePolicy -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath CreatePolicy where
toPath :: CreatePolicy -> ByteString
toPath = ByteString -> CreatePolicy -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery CreatePolicy where
toQuery :: CreatePolicy -> QueryString
toQuery CreatePolicy' {Maybe [Tag]
Maybe Text
Text
policyDocument :: Text
policyName :: Text
tags :: Maybe [Tag]
description :: Maybe Text
path :: Maybe Text
$sel:policyDocument:CreatePolicy' :: CreatePolicy -> Text
$sel:policyName:CreatePolicy' :: CreatePolicy -> Text
$sel:tags:CreatePolicy' :: CreatePolicy -> Maybe [Tag]
$sel:description:CreatePolicy' :: CreatePolicy -> Maybe Text
$sel:path:CreatePolicy' :: CreatePolicy -> 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
"CreatePolicy" :: 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
"Description" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
description,
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
"PolicyName" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
policyName,
ByteString
"PolicyDocument" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
policyDocument
]
data CreatePolicyResponse = CreatePolicyResponse'
{
CreatePolicyResponse -> Maybe Policy
policy :: Prelude.Maybe Policy,
CreatePolicyResponse -> Int
httpStatus :: Prelude.Int
}
deriving (CreatePolicyResponse -> CreatePolicyResponse -> Bool
(CreatePolicyResponse -> CreatePolicyResponse -> Bool)
-> (CreatePolicyResponse -> CreatePolicyResponse -> Bool)
-> Eq CreatePolicyResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreatePolicyResponse -> CreatePolicyResponse -> Bool
$c/= :: CreatePolicyResponse -> CreatePolicyResponse -> Bool
== :: CreatePolicyResponse -> CreatePolicyResponse -> Bool
$c== :: CreatePolicyResponse -> CreatePolicyResponse -> Bool
Prelude.Eq, ReadPrec [CreatePolicyResponse]
ReadPrec CreatePolicyResponse
Int -> ReadS CreatePolicyResponse
ReadS [CreatePolicyResponse]
(Int -> ReadS CreatePolicyResponse)
-> ReadS [CreatePolicyResponse]
-> ReadPrec CreatePolicyResponse
-> ReadPrec [CreatePolicyResponse]
-> Read CreatePolicyResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreatePolicyResponse]
$creadListPrec :: ReadPrec [CreatePolicyResponse]
readPrec :: ReadPrec CreatePolicyResponse
$creadPrec :: ReadPrec CreatePolicyResponse
readList :: ReadS [CreatePolicyResponse]
$creadList :: ReadS [CreatePolicyResponse]
readsPrec :: Int -> ReadS CreatePolicyResponse
$creadsPrec :: Int -> ReadS CreatePolicyResponse
Prelude.Read, Int -> CreatePolicyResponse -> ShowS
[CreatePolicyResponse] -> ShowS
CreatePolicyResponse -> String
(Int -> CreatePolicyResponse -> ShowS)
-> (CreatePolicyResponse -> String)
-> ([CreatePolicyResponse] -> ShowS)
-> Show CreatePolicyResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreatePolicyResponse] -> ShowS
$cshowList :: [CreatePolicyResponse] -> ShowS
show :: CreatePolicyResponse -> String
$cshow :: CreatePolicyResponse -> String
showsPrec :: Int -> CreatePolicyResponse -> ShowS
$cshowsPrec :: Int -> CreatePolicyResponse -> ShowS
Prelude.Show, (forall x. CreatePolicyResponse -> Rep CreatePolicyResponse x)
-> (forall x. Rep CreatePolicyResponse x -> CreatePolicyResponse)
-> Generic CreatePolicyResponse
forall x. Rep CreatePolicyResponse x -> CreatePolicyResponse
forall x. CreatePolicyResponse -> Rep CreatePolicyResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreatePolicyResponse x -> CreatePolicyResponse
$cfrom :: forall x. CreatePolicyResponse -> Rep CreatePolicyResponse x
Prelude.Generic)
newCreatePolicyResponse ::
Prelude.Int ->
CreatePolicyResponse
newCreatePolicyResponse :: Int -> CreatePolicyResponse
newCreatePolicyResponse Int
pHttpStatus_ =
CreatePolicyResponse' :: Maybe Policy -> Int -> CreatePolicyResponse
CreatePolicyResponse'
{ $sel:policy:CreatePolicyResponse' :: Maybe Policy
policy = Maybe Policy
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:CreatePolicyResponse' :: Int
httpStatus = Int
pHttpStatus_
}
createPolicyResponse_policy :: Lens.Lens' CreatePolicyResponse (Prelude.Maybe Policy)
createPolicyResponse_policy :: (Maybe Policy -> f (Maybe Policy))
-> CreatePolicyResponse -> f CreatePolicyResponse
createPolicyResponse_policy = (CreatePolicyResponse -> Maybe Policy)
-> (CreatePolicyResponse -> Maybe Policy -> CreatePolicyResponse)
-> Lens
CreatePolicyResponse
CreatePolicyResponse
(Maybe Policy)
(Maybe Policy)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePolicyResponse' {Maybe Policy
policy :: Maybe Policy
$sel:policy:CreatePolicyResponse' :: CreatePolicyResponse -> Maybe Policy
policy} -> Maybe Policy
policy) (\s :: CreatePolicyResponse
s@CreatePolicyResponse' {} Maybe Policy
a -> CreatePolicyResponse
s {$sel:policy:CreatePolicyResponse' :: Maybe Policy
policy = Maybe Policy
a} :: CreatePolicyResponse)
createPolicyResponse_httpStatus :: Lens.Lens' CreatePolicyResponse Prelude.Int
createPolicyResponse_httpStatus :: (Int -> f Int) -> CreatePolicyResponse -> f CreatePolicyResponse
createPolicyResponse_httpStatus = (CreatePolicyResponse -> Int)
-> (CreatePolicyResponse -> Int -> CreatePolicyResponse)
-> Lens CreatePolicyResponse CreatePolicyResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePolicyResponse' {Int
httpStatus :: Int
$sel:httpStatus:CreatePolicyResponse' :: CreatePolicyResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: CreatePolicyResponse
s@CreatePolicyResponse' {} Int
a -> CreatePolicyResponse
s {$sel:httpStatus:CreatePolicyResponse' :: Int
httpStatus = Int
a} :: CreatePolicyResponse)
instance Prelude.NFData CreatePolicyResponse