{-# 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.LookoutMetrics.DeleteAnomalyDetector
(
DeleteAnomalyDetector (..),
newDeleteAnomalyDetector,
deleteAnomalyDetector_anomalyDetectorArn,
DeleteAnomalyDetectorResponse (..),
newDeleteAnomalyDetectorResponse,
deleteAnomalyDetectorResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.LookoutMetrics.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data DeleteAnomalyDetector = DeleteAnomalyDetector'
{
DeleteAnomalyDetector -> Text
anomalyDetectorArn :: Prelude.Text
}
deriving (DeleteAnomalyDetector -> DeleteAnomalyDetector -> Bool
(DeleteAnomalyDetector -> DeleteAnomalyDetector -> Bool)
-> (DeleteAnomalyDetector -> DeleteAnomalyDetector -> Bool)
-> Eq DeleteAnomalyDetector
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAnomalyDetector -> DeleteAnomalyDetector -> Bool
$c/= :: DeleteAnomalyDetector -> DeleteAnomalyDetector -> Bool
== :: DeleteAnomalyDetector -> DeleteAnomalyDetector -> Bool
$c== :: DeleteAnomalyDetector -> DeleteAnomalyDetector -> Bool
Prelude.Eq, ReadPrec [DeleteAnomalyDetector]
ReadPrec DeleteAnomalyDetector
Int -> ReadS DeleteAnomalyDetector
ReadS [DeleteAnomalyDetector]
(Int -> ReadS DeleteAnomalyDetector)
-> ReadS [DeleteAnomalyDetector]
-> ReadPrec DeleteAnomalyDetector
-> ReadPrec [DeleteAnomalyDetector]
-> Read DeleteAnomalyDetector
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAnomalyDetector]
$creadListPrec :: ReadPrec [DeleteAnomalyDetector]
readPrec :: ReadPrec DeleteAnomalyDetector
$creadPrec :: ReadPrec DeleteAnomalyDetector
readList :: ReadS [DeleteAnomalyDetector]
$creadList :: ReadS [DeleteAnomalyDetector]
readsPrec :: Int -> ReadS DeleteAnomalyDetector
$creadsPrec :: Int -> ReadS DeleteAnomalyDetector
Prelude.Read, Int -> DeleteAnomalyDetector -> ShowS
[DeleteAnomalyDetector] -> ShowS
DeleteAnomalyDetector -> String
(Int -> DeleteAnomalyDetector -> ShowS)
-> (DeleteAnomalyDetector -> String)
-> ([DeleteAnomalyDetector] -> ShowS)
-> Show DeleteAnomalyDetector
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAnomalyDetector] -> ShowS
$cshowList :: [DeleteAnomalyDetector] -> ShowS
show :: DeleteAnomalyDetector -> String
$cshow :: DeleteAnomalyDetector -> String
showsPrec :: Int -> DeleteAnomalyDetector -> ShowS
$cshowsPrec :: Int -> DeleteAnomalyDetector -> ShowS
Prelude.Show, (forall x. DeleteAnomalyDetector -> Rep DeleteAnomalyDetector x)
-> (forall x. Rep DeleteAnomalyDetector x -> DeleteAnomalyDetector)
-> Generic DeleteAnomalyDetector
forall x. Rep DeleteAnomalyDetector x -> DeleteAnomalyDetector
forall x. DeleteAnomalyDetector -> Rep DeleteAnomalyDetector x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteAnomalyDetector x -> DeleteAnomalyDetector
$cfrom :: forall x. DeleteAnomalyDetector -> Rep DeleteAnomalyDetector x
Prelude.Generic)
newDeleteAnomalyDetector ::
Prelude.Text ->
DeleteAnomalyDetector
newDeleteAnomalyDetector :: Text -> DeleteAnomalyDetector
newDeleteAnomalyDetector Text
pAnomalyDetectorArn_ =
DeleteAnomalyDetector' :: Text -> DeleteAnomalyDetector
DeleteAnomalyDetector'
{ $sel:anomalyDetectorArn:DeleteAnomalyDetector' :: Text
anomalyDetectorArn =
Text
pAnomalyDetectorArn_
}
deleteAnomalyDetector_anomalyDetectorArn :: Lens.Lens' DeleteAnomalyDetector Prelude.Text
deleteAnomalyDetector_anomalyDetectorArn :: (Text -> f Text)
-> DeleteAnomalyDetector -> f DeleteAnomalyDetector
deleteAnomalyDetector_anomalyDetectorArn = (DeleteAnomalyDetector -> Text)
-> (DeleteAnomalyDetector -> Text -> DeleteAnomalyDetector)
-> Lens DeleteAnomalyDetector DeleteAnomalyDetector Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAnomalyDetector' {Text
anomalyDetectorArn :: Text
$sel:anomalyDetectorArn:DeleteAnomalyDetector' :: DeleteAnomalyDetector -> Text
anomalyDetectorArn} -> Text
anomalyDetectorArn) (\s :: DeleteAnomalyDetector
s@DeleteAnomalyDetector' {} Text
a -> DeleteAnomalyDetector
s {$sel:anomalyDetectorArn:DeleteAnomalyDetector' :: Text
anomalyDetectorArn = Text
a} :: DeleteAnomalyDetector)
instance Core.AWSRequest DeleteAnomalyDetector where
type
AWSResponse DeleteAnomalyDetector =
DeleteAnomalyDetectorResponse
request :: DeleteAnomalyDetector -> Request DeleteAnomalyDetector
request = Service -> DeleteAnomalyDetector -> Request DeleteAnomalyDetector
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteAnomalyDetector
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteAnomalyDetector)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse DeleteAnomalyDetector))
-> Logger
-> Service
-> Proxy DeleteAnomalyDetector
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteAnomalyDetector)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
( \Int
s ResponseHeaders
h ()
x ->
Int -> DeleteAnomalyDetectorResponse
DeleteAnomalyDetectorResponse'
(Int -> DeleteAnomalyDetectorResponse)
-> Either String Int -> Either String DeleteAnomalyDetectorResponse
forall (f :: * -> *) a b. Functor 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 DeleteAnomalyDetector
instance Prelude.NFData DeleteAnomalyDetector
instance Core.ToHeaders DeleteAnomalyDetector where
toHeaders :: DeleteAnomalyDetector -> ResponseHeaders
toHeaders =
ResponseHeaders -> DeleteAnomalyDetector -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ 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 DeleteAnomalyDetector where
toJSON :: DeleteAnomalyDetector -> Value
toJSON DeleteAnomalyDetector' {Text
anomalyDetectorArn :: Text
$sel:anomalyDetectorArn:DeleteAnomalyDetector' :: DeleteAnomalyDetector -> 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
"AnomalyDetectorArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
anomalyDetectorArn)
]
)
instance Core.ToPath DeleteAnomalyDetector where
toPath :: DeleteAnomalyDetector -> ByteString
toPath = ByteString -> DeleteAnomalyDetector -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/DeleteAnomalyDetector"
instance Core.ToQuery DeleteAnomalyDetector where
toQuery :: DeleteAnomalyDetector -> QueryString
toQuery = QueryString -> DeleteAnomalyDetector -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteAnomalyDetectorResponse = DeleteAnomalyDetectorResponse'
{
DeleteAnomalyDetectorResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteAnomalyDetectorResponse
-> DeleteAnomalyDetectorResponse -> Bool
(DeleteAnomalyDetectorResponse
-> DeleteAnomalyDetectorResponse -> Bool)
-> (DeleteAnomalyDetectorResponse
-> DeleteAnomalyDetectorResponse -> Bool)
-> Eq DeleteAnomalyDetectorResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAnomalyDetectorResponse
-> DeleteAnomalyDetectorResponse -> Bool
$c/= :: DeleteAnomalyDetectorResponse
-> DeleteAnomalyDetectorResponse -> Bool
== :: DeleteAnomalyDetectorResponse
-> DeleteAnomalyDetectorResponse -> Bool
$c== :: DeleteAnomalyDetectorResponse
-> DeleteAnomalyDetectorResponse -> Bool
Prelude.Eq, ReadPrec [DeleteAnomalyDetectorResponse]
ReadPrec DeleteAnomalyDetectorResponse
Int -> ReadS DeleteAnomalyDetectorResponse
ReadS [DeleteAnomalyDetectorResponse]
(Int -> ReadS DeleteAnomalyDetectorResponse)
-> ReadS [DeleteAnomalyDetectorResponse]
-> ReadPrec DeleteAnomalyDetectorResponse
-> ReadPrec [DeleteAnomalyDetectorResponse]
-> Read DeleteAnomalyDetectorResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAnomalyDetectorResponse]
$creadListPrec :: ReadPrec [DeleteAnomalyDetectorResponse]
readPrec :: ReadPrec DeleteAnomalyDetectorResponse
$creadPrec :: ReadPrec DeleteAnomalyDetectorResponse
readList :: ReadS [DeleteAnomalyDetectorResponse]
$creadList :: ReadS [DeleteAnomalyDetectorResponse]
readsPrec :: Int -> ReadS DeleteAnomalyDetectorResponse
$creadsPrec :: Int -> ReadS DeleteAnomalyDetectorResponse
Prelude.Read, Int -> DeleteAnomalyDetectorResponse -> ShowS
[DeleteAnomalyDetectorResponse] -> ShowS
DeleteAnomalyDetectorResponse -> String
(Int -> DeleteAnomalyDetectorResponse -> ShowS)
-> (DeleteAnomalyDetectorResponse -> String)
-> ([DeleteAnomalyDetectorResponse] -> ShowS)
-> Show DeleteAnomalyDetectorResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAnomalyDetectorResponse] -> ShowS
$cshowList :: [DeleteAnomalyDetectorResponse] -> ShowS
show :: DeleteAnomalyDetectorResponse -> String
$cshow :: DeleteAnomalyDetectorResponse -> String
showsPrec :: Int -> DeleteAnomalyDetectorResponse -> ShowS
$cshowsPrec :: Int -> DeleteAnomalyDetectorResponse -> ShowS
Prelude.Show, (forall x.
DeleteAnomalyDetectorResponse
-> Rep DeleteAnomalyDetectorResponse x)
-> (forall x.
Rep DeleteAnomalyDetectorResponse x
-> DeleteAnomalyDetectorResponse)
-> Generic DeleteAnomalyDetectorResponse
forall x.
Rep DeleteAnomalyDetectorResponse x
-> DeleteAnomalyDetectorResponse
forall x.
DeleteAnomalyDetectorResponse
-> Rep DeleteAnomalyDetectorResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteAnomalyDetectorResponse x
-> DeleteAnomalyDetectorResponse
$cfrom :: forall x.
DeleteAnomalyDetectorResponse
-> Rep DeleteAnomalyDetectorResponse x
Prelude.Generic)
newDeleteAnomalyDetectorResponse ::
Prelude.Int ->
DeleteAnomalyDetectorResponse
newDeleteAnomalyDetectorResponse :: Int -> DeleteAnomalyDetectorResponse
newDeleteAnomalyDetectorResponse Int
pHttpStatus_ =
DeleteAnomalyDetectorResponse' :: Int -> DeleteAnomalyDetectorResponse
DeleteAnomalyDetectorResponse'
{ $sel:httpStatus:DeleteAnomalyDetectorResponse' :: Int
httpStatus =
Int
pHttpStatus_
}
deleteAnomalyDetectorResponse_httpStatus :: Lens.Lens' DeleteAnomalyDetectorResponse Prelude.Int
deleteAnomalyDetectorResponse_httpStatus :: (Int -> f Int)
-> DeleteAnomalyDetectorResponse -> f DeleteAnomalyDetectorResponse
deleteAnomalyDetectorResponse_httpStatus = (DeleteAnomalyDetectorResponse -> Int)
-> (DeleteAnomalyDetectorResponse
-> Int -> DeleteAnomalyDetectorResponse)
-> Lens
DeleteAnomalyDetectorResponse DeleteAnomalyDetectorResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAnomalyDetectorResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteAnomalyDetectorResponse' :: DeleteAnomalyDetectorResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteAnomalyDetectorResponse
s@DeleteAnomalyDetectorResponse' {} Int
a -> DeleteAnomalyDetectorResponse
s {$sel:httpStatus:DeleteAnomalyDetectorResponse' :: Int
httpStatus = Int
a} :: DeleteAnomalyDetectorResponse)
instance Prelude.NFData DeleteAnomalyDetectorResponse