{-# 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.IoT.DetachPolicy
(
DetachPolicy (..),
newDetachPolicy,
detachPolicy_policyName,
detachPolicy_target,
DetachPolicyResponse (..),
newDetachPolicyResponse,
)
where
import qualified Amazonka.Core as Core
import Amazonka.IoT.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 DetachPolicy = DetachPolicy'
{
DetachPolicy -> Text
policyName :: Prelude.Text,
DetachPolicy -> Text
target :: Prelude.Text
}
deriving (DetachPolicy -> DetachPolicy -> Bool
(DetachPolicy -> DetachPolicy -> Bool)
-> (DetachPolicy -> DetachPolicy -> Bool) -> Eq DetachPolicy
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DetachPolicy -> DetachPolicy -> Bool
$c/= :: DetachPolicy -> DetachPolicy -> Bool
== :: DetachPolicy -> DetachPolicy -> Bool
$c== :: DetachPolicy -> DetachPolicy -> Bool
Prelude.Eq, ReadPrec [DetachPolicy]
ReadPrec DetachPolicy
Int -> ReadS DetachPolicy
ReadS [DetachPolicy]
(Int -> ReadS DetachPolicy)
-> ReadS [DetachPolicy]
-> ReadPrec DetachPolicy
-> ReadPrec [DetachPolicy]
-> Read DetachPolicy
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DetachPolicy]
$creadListPrec :: ReadPrec [DetachPolicy]
readPrec :: ReadPrec DetachPolicy
$creadPrec :: ReadPrec DetachPolicy
readList :: ReadS [DetachPolicy]
$creadList :: ReadS [DetachPolicy]
readsPrec :: Int -> ReadS DetachPolicy
$creadsPrec :: Int -> ReadS DetachPolicy
Prelude.Read, Int -> DetachPolicy -> ShowS
[DetachPolicy] -> ShowS
DetachPolicy -> String
(Int -> DetachPolicy -> ShowS)
-> (DetachPolicy -> String)
-> ([DetachPolicy] -> ShowS)
-> Show DetachPolicy
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DetachPolicy] -> ShowS
$cshowList :: [DetachPolicy] -> ShowS
show :: DetachPolicy -> String
$cshow :: DetachPolicy -> String
showsPrec :: Int -> DetachPolicy -> ShowS
$cshowsPrec :: Int -> DetachPolicy -> ShowS
Prelude.Show, (forall x. DetachPolicy -> Rep DetachPolicy x)
-> (forall x. Rep DetachPolicy x -> DetachPolicy)
-> Generic DetachPolicy
forall x. Rep DetachPolicy x -> DetachPolicy
forall x. DetachPolicy -> Rep DetachPolicy x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DetachPolicy x -> DetachPolicy
$cfrom :: forall x. DetachPolicy -> Rep DetachPolicy x
Prelude.Generic)
newDetachPolicy ::
Prelude.Text ->
Prelude.Text ->
DetachPolicy
newDetachPolicy :: Text -> Text -> DetachPolicy
newDetachPolicy Text
pPolicyName_ Text
pTarget_ =
DetachPolicy' :: Text -> Text -> DetachPolicy
DetachPolicy'
{ $sel:policyName:DetachPolicy' :: Text
policyName = Text
pPolicyName_,
$sel:target:DetachPolicy' :: Text
target = Text
pTarget_
}
detachPolicy_policyName :: Lens.Lens' DetachPolicy Prelude.Text
detachPolicy_policyName :: (Text -> f Text) -> DetachPolicy -> f DetachPolicy
detachPolicy_policyName = (DetachPolicy -> Text)
-> (DetachPolicy -> Text -> DetachPolicy)
-> Lens DetachPolicy DetachPolicy Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DetachPolicy' {Text
policyName :: Text
$sel:policyName:DetachPolicy' :: DetachPolicy -> Text
policyName} -> Text
policyName) (\s :: DetachPolicy
s@DetachPolicy' {} Text
a -> DetachPolicy
s {$sel:policyName:DetachPolicy' :: Text
policyName = Text
a} :: DetachPolicy)
detachPolicy_target :: Lens.Lens' DetachPolicy Prelude.Text
detachPolicy_target :: (Text -> f Text) -> DetachPolicy -> f DetachPolicy
detachPolicy_target = (DetachPolicy -> Text)
-> (DetachPolicy -> Text -> DetachPolicy)
-> Lens DetachPolicy DetachPolicy Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DetachPolicy' {Text
target :: Text
$sel:target:DetachPolicy' :: DetachPolicy -> Text
target} -> Text
target) (\s :: DetachPolicy
s@DetachPolicy' {} Text
a -> DetachPolicy
s {$sel:target:DetachPolicy' :: Text
target = Text
a} :: DetachPolicy)
instance Core.AWSRequest DetachPolicy where
type AWSResponse DetachPolicy = DetachPolicyResponse
request :: DetachPolicy -> Request DetachPolicy
request = Service -> DetachPolicy -> Request DetachPolicy
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy DetachPolicy
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DetachPolicy)))
response = AWSResponse DetachPolicy
-> Logger
-> Service
-> Proxy DetachPolicy
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DetachPolicy)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull AWSResponse DetachPolicy
DetachPolicyResponse
DetachPolicyResponse'
instance Prelude.Hashable DetachPolicy
instance Prelude.NFData DetachPolicy
instance Core.ToHeaders DetachPolicy where
toHeaders :: DetachPolicy -> [Header]
toHeaders = [Header] -> DetachPolicy -> [Header]
forall a b. a -> b -> a
Prelude.const [Header]
forall a. Monoid a => a
Prelude.mempty
instance Core.ToJSON DetachPolicy where
toJSON :: DetachPolicy -> Value
toJSON DetachPolicy' {Text
target :: Text
policyName :: Text
$sel:target:DetachPolicy' :: DetachPolicy -> Text
$sel:policyName:DetachPolicy' :: DetachPolicy -> 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
"target" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
target)]
)
instance Core.ToPath DetachPolicy where
toPath :: DetachPolicy -> ByteString
toPath DetachPolicy' {Text
target :: Text
policyName :: Text
$sel:target:DetachPolicy' :: DetachPolicy -> Text
$sel:policyName:DetachPolicy' :: DetachPolicy -> Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ByteString
"/target-policies/", Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
policyName]
instance Core.ToQuery DetachPolicy where
toQuery :: DetachPolicy -> QueryString
toQuery = QueryString -> DetachPolicy -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DetachPolicyResponse = DetachPolicyResponse'
{
}
deriving (DetachPolicyResponse -> DetachPolicyResponse -> Bool
(DetachPolicyResponse -> DetachPolicyResponse -> Bool)
-> (DetachPolicyResponse -> DetachPolicyResponse -> Bool)
-> Eq DetachPolicyResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DetachPolicyResponse -> DetachPolicyResponse -> Bool
$c/= :: DetachPolicyResponse -> DetachPolicyResponse -> Bool
== :: DetachPolicyResponse -> DetachPolicyResponse -> Bool
$c== :: DetachPolicyResponse -> DetachPolicyResponse -> Bool
Prelude.Eq, ReadPrec [DetachPolicyResponse]
ReadPrec DetachPolicyResponse
Int -> ReadS DetachPolicyResponse
ReadS [DetachPolicyResponse]
(Int -> ReadS DetachPolicyResponse)
-> ReadS [DetachPolicyResponse]
-> ReadPrec DetachPolicyResponse
-> ReadPrec [DetachPolicyResponse]
-> Read DetachPolicyResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DetachPolicyResponse]
$creadListPrec :: ReadPrec [DetachPolicyResponse]
readPrec :: ReadPrec DetachPolicyResponse
$creadPrec :: ReadPrec DetachPolicyResponse
readList :: ReadS [DetachPolicyResponse]
$creadList :: ReadS [DetachPolicyResponse]
readsPrec :: Int -> ReadS DetachPolicyResponse
$creadsPrec :: Int -> ReadS DetachPolicyResponse
Prelude.Read, Int -> DetachPolicyResponse -> ShowS
[DetachPolicyResponse] -> ShowS
DetachPolicyResponse -> String
(Int -> DetachPolicyResponse -> ShowS)
-> (DetachPolicyResponse -> String)
-> ([DetachPolicyResponse] -> ShowS)
-> Show DetachPolicyResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DetachPolicyResponse] -> ShowS
$cshowList :: [DetachPolicyResponse] -> ShowS
show :: DetachPolicyResponse -> String
$cshow :: DetachPolicyResponse -> String
showsPrec :: Int -> DetachPolicyResponse -> ShowS
$cshowsPrec :: Int -> DetachPolicyResponse -> ShowS
Prelude.Show, (forall x. DetachPolicyResponse -> Rep DetachPolicyResponse x)
-> (forall x. Rep DetachPolicyResponse x -> DetachPolicyResponse)
-> Generic DetachPolicyResponse
forall x. Rep DetachPolicyResponse x -> DetachPolicyResponse
forall x. DetachPolicyResponse -> Rep DetachPolicyResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DetachPolicyResponse x -> DetachPolicyResponse
$cfrom :: forall x. DetachPolicyResponse -> Rep DetachPolicyResponse x
Prelude.Generic)
newDetachPolicyResponse ::
DetachPolicyResponse
newDetachPolicyResponse :: DetachPolicyResponse
newDetachPolicyResponse = DetachPolicyResponse
DetachPolicyResponse'
instance Prelude.NFData DetachPolicyResponse