{-# 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.AttachPolicy
(
AttachPolicy (..),
newAttachPolicy,
attachPolicy_policyId,
attachPolicy_targetId,
AttachPolicyResponse (..),
newAttachPolicyResponse,
)
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 AttachPolicy = AttachPolicy'
{
AttachPolicy -> Text
policyId :: Prelude.Text,
AttachPolicy -> Text
targetId :: Prelude.Text
}
deriving (AttachPolicy -> AttachPolicy -> Bool
(AttachPolicy -> AttachPolicy -> Bool)
-> (AttachPolicy -> AttachPolicy -> Bool) -> Eq AttachPolicy
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AttachPolicy -> AttachPolicy -> Bool
$c/= :: AttachPolicy -> AttachPolicy -> Bool
== :: AttachPolicy -> AttachPolicy -> Bool
$c== :: AttachPolicy -> AttachPolicy -> Bool
Prelude.Eq, ReadPrec [AttachPolicy]
ReadPrec AttachPolicy
Int -> ReadS AttachPolicy
ReadS [AttachPolicy]
(Int -> ReadS AttachPolicy)
-> ReadS [AttachPolicy]
-> ReadPrec AttachPolicy
-> ReadPrec [AttachPolicy]
-> Read AttachPolicy
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AttachPolicy]
$creadListPrec :: ReadPrec [AttachPolicy]
readPrec :: ReadPrec AttachPolicy
$creadPrec :: ReadPrec AttachPolicy
readList :: ReadS [AttachPolicy]
$creadList :: ReadS [AttachPolicy]
readsPrec :: Int -> ReadS AttachPolicy
$creadsPrec :: Int -> ReadS AttachPolicy
Prelude.Read, Int -> AttachPolicy -> ShowS
[AttachPolicy] -> ShowS
AttachPolicy -> String
(Int -> AttachPolicy -> ShowS)
-> (AttachPolicy -> String)
-> ([AttachPolicy] -> ShowS)
-> Show AttachPolicy
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AttachPolicy] -> ShowS
$cshowList :: [AttachPolicy] -> ShowS
show :: AttachPolicy -> String
$cshow :: AttachPolicy -> String
showsPrec :: Int -> AttachPolicy -> ShowS
$cshowsPrec :: Int -> AttachPolicy -> ShowS
Prelude.Show, (forall x. AttachPolicy -> Rep AttachPolicy x)
-> (forall x. Rep AttachPolicy x -> AttachPolicy)
-> Generic AttachPolicy
forall x. Rep AttachPolicy x -> AttachPolicy
forall x. AttachPolicy -> Rep AttachPolicy x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AttachPolicy x -> AttachPolicy
$cfrom :: forall x. AttachPolicy -> Rep AttachPolicy x
Prelude.Generic)
newAttachPolicy ::
Prelude.Text ->
Prelude.Text ->
AttachPolicy
newAttachPolicy :: Text -> Text -> AttachPolicy
newAttachPolicy Text
pPolicyId_ Text
pTargetId_ =
AttachPolicy' :: Text -> Text -> AttachPolicy
AttachPolicy'
{ $sel:policyId:AttachPolicy' :: Text
policyId = Text
pPolicyId_,
$sel:targetId:AttachPolicy' :: Text
targetId = Text
pTargetId_
}
attachPolicy_policyId :: Lens.Lens' AttachPolicy Prelude.Text
attachPolicy_policyId :: (Text -> f Text) -> AttachPolicy -> f AttachPolicy
attachPolicy_policyId = (AttachPolicy -> Text)
-> (AttachPolicy -> Text -> AttachPolicy)
-> Lens AttachPolicy AttachPolicy Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AttachPolicy' {Text
policyId :: Text
$sel:policyId:AttachPolicy' :: AttachPolicy -> Text
policyId} -> Text
policyId) (\s :: AttachPolicy
s@AttachPolicy' {} Text
a -> AttachPolicy
s {$sel:policyId:AttachPolicy' :: Text
policyId = Text
a} :: AttachPolicy)
attachPolicy_targetId :: Lens.Lens' AttachPolicy Prelude.Text
attachPolicy_targetId :: (Text -> f Text) -> AttachPolicy -> f AttachPolicy
attachPolicy_targetId = (AttachPolicy -> Text)
-> (AttachPolicy -> Text -> AttachPolicy)
-> Lens AttachPolicy AttachPolicy Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AttachPolicy' {Text
targetId :: Text
$sel:targetId:AttachPolicy' :: AttachPolicy -> Text
targetId} -> Text
targetId) (\s :: AttachPolicy
s@AttachPolicy' {} Text
a -> AttachPolicy
s {$sel:targetId:AttachPolicy' :: Text
targetId = Text
a} :: AttachPolicy)
instance Core.AWSRequest AttachPolicy where
type AWSResponse AttachPolicy = AttachPolicyResponse
request :: AttachPolicy -> Request AttachPolicy
request = Service -> AttachPolicy -> Request AttachPolicy
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy AttachPolicy
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse AttachPolicy)))
response = AWSResponse AttachPolicy
-> Logger
-> Service
-> Proxy AttachPolicy
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse AttachPolicy)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull AWSResponse AttachPolicy
AttachPolicyResponse
AttachPolicyResponse'
instance Prelude.Hashable AttachPolicy
instance Prelude.NFData AttachPolicy
instance Core.ToHeaders AttachPolicy where
toHeaders :: AttachPolicy -> [Header]
toHeaders =
[Header] -> AttachPolicy -> [Header]
forall a b. a -> b -> a
Prelude.const
( [[Header]] -> [Header]
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> [Header]
forall a. ToHeader a => HeaderName -> a -> [Header]
Core.=# ( ByteString
"AWSOrganizationsV20161128.AttachPolicy" ::
Prelude.ByteString
),
HeaderName
"Content-Type"
HeaderName -> ByteString -> [Header]
forall a. ToHeader a => HeaderName -> a -> [Header]
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Core.ToJSON AttachPolicy where
toJSON :: AttachPolicy -> Value
toJSON AttachPolicy' {Text
targetId :: Text
policyId :: Text
$sel:targetId:AttachPolicy' :: AttachPolicy -> Text
$sel:policyId:AttachPolicy' :: AttachPolicy -> Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"PolicyId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
policyId),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"TargetId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
targetId)
]
)
instance Core.ToPath AttachPolicy where
toPath :: AttachPolicy -> ByteString
toPath = ByteString -> AttachPolicy -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery AttachPolicy where
toQuery :: AttachPolicy -> QueryString
toQuery = QueryString -> AttachPolicy -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data AttachPolicyResponse = AttachPolicyResponse'
{
}
deriving (AttachPolicyResponse -> AttachPolicyResponse -> Bool
(AttachPolicyResponse -> AttachPolicyResponse -> Bool)
-> (AttachPolicyResponse -> AttachPolicyResponse -> Bool)
-> Eq AttachPolicyResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AttachPolicyResponse -> AttachPolicyResponse -> Bool
$c/= :: AttachPolicyResponse -> AttachPolicyResponse -> Bool
== :: AttachPolicyResponse -> AttachPolicyResponse -> Bool
$c== :: AttachPolicyResponse -> AttachPolicyResponse -> Bool
Prelude.Eq, ReadPrec [AttachPolicyResponse]
ReadPrec AttachPolicyResponse
Int -> ReadS AttachPolicyResponse
ReadS [AttachPolicyResponse]
(Int -> ReadS AttachPolicyResponse)
-> ReadS [AttachPolicyResponse]
-> ReadPrec AttachPolicyResponse
-> ReadPrec [AttachPolicyResponse]
-> Read AttachPolicyResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AttachPolicyResponse]
$creadListPrec :: ReadPrec [AttachPolicyResponse]
readPrec :: ReadPrec AttachPolicyResponse
$creadPrec :: ReadPrec AttachPolicyResponse
readList :: ReadS [AttachPolicyResponse]
$creadList :: ReadS [AttachPolicyResponse]
readsPrec :: Int -> ReadS AttachPolicyResponse
$creadsPrec :: Int -> ReadS AttachPolicyResponse
Prelude.Read, Int -> AttachPolicyResponse -> ShowS
[AttachPolicyResponse] -> ShowS
AttachPolicyResponse -> String
(Int -> AttachPolicyResponse -> ShowS)
-> (AttachPolicyResponse -> String)
-> ([AttachPolicyResponse] -> ShowS)
-> Show AttachPolicyResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AttachPolicyResponse] -> ShowS
$cshowList :: [AttachPolicyResponse] -> ShowS
show :: AttachPolicyResponse -> String
$cshow :: AttachPolicyResponse -> String
showsPrec :: Int -> AttachPolicyResponse -> ShowS
$cshowsPrec :: Int -> AttachPolicyResponse -> ShowS
Prelude.Show, (forall x. AttachPolicyResponse -> Rep AttachPolicyResponse x)
-> (forall x. Rep AttachPolicyResponse x -> AttachPolicyResponse)
-> Generic AttachPolicyResponse
forall x. Rep AttachPolicyResponse x -> AttachPolicyResponse
forall x. AttachPolicyResponse -> Rep AttachPolicyResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AttachPolicyResponse x -> AttachPolicyResponse
$cfrom :: forall x. AttachPolicyResponse -> Rep AttachPolicyResponse x
Prelude.Generic)
newAttachPolicyResponse ::
AttachPolicyResponse
newAttachPolicyResponse :: AttachPolicyResponse
newAttachPolicyResponse = AttachPolicyResponse
AttachPolicyResponse'
instance Prelude.NFData AttachPolicyResponse