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