{-# 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.Organizations.CreatePolicy
(
CreatePolicy (..),
newCreatePolicy,
createPolicy_tags,
createPolicy_content,
createPolicy_description,
createPolicy_name,
createPolicy_type,
CreatePolicyResponse (..),
newCreatePolicyResponse,
createPolicyResponse_policy,
createPolicyResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.Organizations.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data CreatePolicy = CreatePolicy'
{
CreatePolicy -> Maybe [Tag]
tags :: Prelude.Maybe [Tag],
CreatePolicy -> Text
content :: Prelude.Text,
CreatePolicy -> Text
description :: Prelude.Text,
CreatePolicy -> Text
name :: Prelude.Text,
CreatePolicy -> PolicyType
type' :: PolicyType
}
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 ->
Prelude.Text ->
PolicyType ->
CreatePolicy
newCreatePolicy :: Text -> Text -> Text -> PolicyType -> CreatePolicy
newCreatePolicy Text
pContent_ Text
pDescription_ Text
pName_ PolicyType
pType_ =
CreatePolicy' :: Maybe [Tag] -> Text -> Text -> Text -> PolicyType -> CreatePolicy
CreatePolicy'
{ $sel:tags:CreatePolicy' :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
$sel:content:CreatePolicy' :: Text
content = Text
pContent_,
$sel:description:CreatePolicy' :: Text
description = Text
pDescription_,
$sel:name:CreatePolicy' :: Text
name = Text
pName_,
$sel:type':CreatePolicy' :: PolicyType
type' = PolicyType
pType_
}
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_content :: Lens.Lens' CreatePolicy Prelude.Text
createPolicy_content :: (Text -> f Text) -> CreatePolicy -> f CreatePolicy
createPolicy_content = (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
content :: Text
$sel:content:CreatePolicy' :: CreatePolicy -> Text
content} -> Text
content) (\s :: CreatePolicy
s@CreatePolicy' {} Text
a -> CreatePolicy
s {$sel:content:CreatePolicy' :: Text
content = Text
a} :: CreatePolicy)
createPolicy_description :: Lens.Lens' CreatePolicy Prelude.Text
createPolicy_description :: (Text -> f Text) -> CreatePolicy -> f CreatePolicy
createPolicy_description = (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
description :: Text
$sel:description:CreatePolicy' :: CreatePolicy -> Text
description} -> Text
description) (\s :: CreatePolicy
s@CreatePolicy' {} Text
a -> CreatePolicy
s {$sel:description:CreatePolicy' :: Text
description = Text
a} :: CreatePolicy)
createPolicy_name :: Lens.Lens' CreatePolicy Prelude.Text
createPolicy_name :: (Text -> f Text) -> CreatePolicy -> f CreatePolicy
createPolicy_name = (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
name :: Text
$sel:name:CreatePolicy' :: CreatePolicy -> Text
name} -> Text
name) (\s :: CreatePolicy
s@CreatePolicy' {} Text
a -> CreatePolicy
s {$sel:name:CreatePolicy' :: Text
name = Text
a} :: CreatePolicy)
createPolicy_type :: Lens.Lens' CreatePolicy PolicyType
createPolicy_type :: (PolicyType -> f PolicyType) -> CreatePolicy -> f CreatePolicy
createPolicy_type = (CreatePolicy -> PolicyType)
-> (CreatePolicy -> PolicyType -> CreatePolicy)
-> Lens CreatePolicy CreatePolicy PolicyType PolicyType
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreatePolicy' {PolicyType
type' :: PolicyType
$sel:type':CreatePolicy' :: CreatePolicy -> PolicyType
type'} -> PolicyType
type') (\s :: CreatePolicy
s@CreatePolicy' {} PolicyType
a -> CreatePolicy
s {$sel:type':CreatePolicy' :: PolicyType
type' = PolicyType
a} :: CreatePolicy)
instance Core.AWSRequest CreatePolicy where
type AWSResponse CreatePolicy = CreatePolicyResponse
request :: CreatePolicy -> Request CreatePolicy
request = Service -> CreatePolicy -> Request CreatePolicy
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy CreatePolicy
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreatePolicy)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse CreatePolicy))
-> Logger
-> Service
-> Proxy CreatePolicy
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreatePolicy)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
( \Int
s ResponseHeaders
h Object
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.<$> (Object
x Object -> Text -> Either String (Maybe Policy)
forall a. FromJSON a => Object -> 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] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"AWSOrganizationsV20161128.CreatePolicy" ::
Prelude.ByteString
),
HeaderName
"Content-Type"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Core.ToJSON CreatePolicy where
toJSON :: CreatePolicy -> Value
toJSON CreatePolicy' {Maybe [Tag]
Text
PolicyType
type' :: PolicyType
name :: Text
description :: Text
content :: Text
tags :: Maybe [Tag]
$sel:type':CreatePolicy' :: CreatePolicy -> PolicyType
$sel:name:CreatePolicy' :: CreatePolicy -> Text
$sel:description:CreatePolicy' :: CreatePolicy -> Text
$sel:content:CreatePolicy' :: CreatePolicy -> Text
$sel:tags:CreatePolicy' :: CreatePolicy -> Maybe [Tag]
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"Tags" Text -> [Tag] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) ([Tag] -> Pair) -> Maybe [Tag] -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Content" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
content),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Description" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
description),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Name" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
name),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Type" Text -> PolicyType -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= PolicyType
type')
]
)
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 = QueryString -> CreatePolicy -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
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