{-# 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.CostExplorer.UpdateAnomalyMonitor
(
UpdateAnomalyMonitor (..),
newUpdateAnomalyMonitor,
updateAnomalyMonitor_monitorName,
updateAnomalyMonitor_monitorArn,
UpdateAnomalyMonitorResponse (..),
newUpdateAnomalyMonitorResponse,
updateAnomalyMonitorResponse_httpStatus,
updateAnomalyMonitorResponse_monitorArn,
)
where
import qualified Amazonka.Core as Core
import Amazonka.CostExplorer.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 UpdateAnomalyMonitor = UpdateAnomalyMonitor'
{
UpdateAnomalyMonitor -> Maybe Text
monitorName :: Prelude.Maybe Prelude.Text,
UpdateAnomalyMonitor -> Text
monitorArn :: Prelude.Text
}
deriving (UpdateAnomalyMonitor -> UpdateAnomalyMonitor -> Bool
(UpdateAnomalyMonitor -> UpdateAnomalyMonitor -> Bool)
-> (UpdateAnomalyMonitor -> UpdateAnomalyMonitor -> Bool)
-> Eq UpdateAnomalyMonitor
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateAnomalyMonitor -> UpdateAnomalyMonitor -> Bool
$c/= :: UpdateAnomalyMonitor -> UpdateAnomalyMonitor -> Bool
== :: UpdateAnomalyMonitor -> UpdateAnomalyMonitor -> Bool
$c== :: UpdateAnomalyMonitor -> UpdateAnomalyMonitor -> Bool
Prelude.Eq, ReadPrec [UpdateAnomalyMonitor]
ReadPrec UpdateAnomalyMonitor
Int -> ReadS UpdateAnomalyMonitor
ReadS [UpdateAnomalyMonitor]
(Int -> ReadS UpdateAnomalyMonitor)
-> ReadS [UpdateAnomalyMonitor]
-> ReadPrec UpdateAnomalyMonitor
-> ReadPrec [UpdateAnomalyMonitor]
-> Read UpdateAnomalyMonitor
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateAnomalyMonitor]
$creadListPrec :: ReadPrec [UpdateAnomalyMonitor]
readPrec :: ReadPrec UpdateAnomalyMonitor
$creadPrec :: ReadPrec UpdateAnomalyMonitor
readList :: ReadS [UpdateAnomalyMonitor]
$creadList :: ReadS [UpdateAnomalyMonitor]
readsPrec :: Int -> ReadS UpdateAnomalyMonitor
$creadsPrec :: Int -> ReadS UpdateAnomalyMonitor
Prelude.Read, Int -> UpdateAnomalyMonitor -> ShowS
[UpdateAnomalyMonitor] -> ShowS
UpdateAnomalyMonitor -> String
(Int -> UpdateAnomalyMonitor -> ShowS)
-> (UpdateAnomalyMonitor -> String)
-> ([UpdateAnomalyMonitor] -> ShowS)
-> Show UpdateAnomalyMonitor
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateAnomalyMonitor] -> ShowS
$cshowList :: [UpdateAnomalyMonitor] -> ShowS
show :: UpdateAnomalyMonitor -> String
$cshow :: UpdateAnomalyMonitor -> String
showsPrec :: Int -> UpdateAnomalyMonitor -> ShowS
$cshowsPrec :: Int -> UpdateAnomalyMonitor -> ShowS
Prelude.Show, (forall x. UpdateAnomalyMonitor -> Rep UpdateAnomalyMonitor x)
-> (forall x. Rep UpdateAnomalyMonitor x -> UpdateAnomalyMonitor)
-> Generic UpdateAnomalyMonitor
forall x. Rep UpdateAnomalyMonitor x -> UpdateAnomalyMonitor
forall x. UpdateAnomalyMonitor -> Rep UpdateAnomalyMonitor x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateAnomalyMonitor x -> UpdateAnomalyMonitor
$cfrom :: forall x. UpdateAnomalyMonitor -> Rep UpdateAnomalyMonitor x
Prelude.Generic)
newUpdateAnomalyMonitor ::
Prelude.Text ->
UpdateAnomalyMonitor
newUpdateAnomalyMonitor :: Text -> UpdateAnomalyMonitor
newUpdateAnomalyMonitor Text
pMonitorArn_ =
UpdateAnomalyMonitor' :: Maybe Text -> Text -> UpdateAnomalyMonitor
UpdateAnomalyMonitor'
{ $sel:monitorName:UpdateAnomalyMonitor' :: Maybe Text
monitorName =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:monitorArn:UpdateAnomalyMonitor' :: Text
monitorArn = Text
pMonitorArn_
}
updateAnomalyMonitor_monitorName :: Lens.Lens' UpdateAnomalyMonitor (Prelude.Maybe Prelude.Text)
updateAnomalyMonitor_monitorName :: (Maybe Text -> f (Maybe Text))
-> UpdateAnomalyMonitor -> f UpdateAnomalyMonitor
updateAnomalyMonitor_monitorName = (UpdateAnomalyMonitor -> Maybe Text)
-> (UpdateAnomalyMonitor -> Maybe Text -> UpdateAnomalyMonitor)
-> Lens
UpdateAnomalyMonitor UpdateAnomalyMonitor (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateAnomalyMonitor' {Maybe Text
monitorName :: Maybe Text
$sel:monitorName:UpdateAnomalyMonitor' :: UpdateAnomalyMonitor -> Maybe Text
monitorName} -> Maybe Text
monitorName) (\s :: UpdateAnomalyMonitor
s@UpdateAnomalyMonitor' {} Maybe Text
a -> UpdateAnomalyMonitor
s {$sel:monitorName:UpdateAnomalyMonitor' :: Maybe Text
monitorName = Maybe Text
a} :: UpdateAnomalyMonitor)
updateAnomalyMonitor_monitorArn :: Lens.Lens' UpdateAnomalyMonitor Prelude.Text
updateAnomalyMonitor_monitorArn :: (Text -> f Text) -> UpdateAnomalyMonitor -> f UpdateAnomalyMonitor
updateAnomalyMonitor_monitorArn = (UpdateAnomalyMonitor -> Text)
-> (UpdateAnomalyMonitor -> Text -> UpdateAnomalyMonitor)
-> Lens UpdateAnomalyMonitor UpdateAnomalyMonitor Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateAnomalyMonitor' {Text
monitorArn :: Text
$sel:monitorArn:UpdateAnomalyMonitor' :: UpdateAnomalyMonitor -> Text
monitorArn} -> Text
monitorArn) (\s :: UpdateAnomalyMonitor
s@UpdateAnomalyMonitor' {} Text
a -> UpdateAnomalyMonitor
s {$sel:monitorArn:UpdateAnomalyMonitor' :: Text
monitorArn = Text
a} :: UpdateAnomalyMonitor)
instance Core.AWSRequest UpdateAnomalyMonitor where
type
AWSResponse UpdateAnomalyMonitor =
UpdateAnomalyMonitorResponse
request :: UpdateAnomalyMonitor -> Request UpdateAnomalyMonitor
request = Service -> UpdateAnomalyMonitor -> Request UpdateAnomalyMonitor
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdateAnomalyMonitor
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateAnomalyMonitor)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse UpdateAnomalyMonitor))
-> Logger
-> Service
-> Proxy UpdateAnomalyMonitor
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateAnomalyMonitor)))
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 ->
Int -> Text -> UpdateAnomalyMonitorResponse
UpdateAnomalyMonitorResponse'
(Int -> Text -> UpdateAnomalyMonitorResponse)
-> Either String Int
-> Either String (Text -> UpdateAnomalyMonitorResponse)
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))
Either String (Text -> UpdateAnomalyMonitorResponse)
-> Either String Text -> Either String UpdateAnomalyMonitorResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String Text
forall a. FromJSON a => Object -> Text -> Either String a
Core..:> Text
"MonitorArn")
)
instance Prelude.Hashable UpdateAnomalyMonitor
instance Prelude.NFData UpdateAnomalyMonitor
instance Core.ToHeaders UpdateAnomalyMonitor where
toHeaders :: UpdateAnomalyMonitor -> ResponseHeaders
toHeaders =
ResponseHeaders -> UpdateAnomalyMonitor -> 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
"AWSInsightsIndexService.UpdateAnomalyMonitor" ::
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 UpdateAnomalyMonitor where
toJSON :: UpdateAnomalyMonitor -> Value
toJSON UpdateAnomalyMonitor' {Maybe Text
Text
monitorArn :: Text
monitorName :: Maybe Text
$sel:monitorArn:UpdateAnomalyMonitor' :: UpdateAnomalyMonitor -> Text
$sel:monitorName:UpdateAnomalyMonitor' :: UpdateAnomalyMonitor -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"MonitorName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
monitorName,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"MonitorArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
monitorArn)
]
)
instance Core.ToPath UpdateAnomalyMonitor where
toPath :: UpdateAnomalyMonitor -> ByteString
toPath = ByteString -> UpdateAnomalyMonitor -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery UpdateAnomalyMonitor where
toQuery :: UpdateAnomalyMonitor -> QueryString
toQuery = QueryString -> UpdateAnomalyMonitor -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdateAnomalyMonitorResponse = UpdateAnomalyMonitorResponse'
{
UpdateAnomalyMonitorResponse -> Int
httpStatus :: Prelude.Int,
UpdateAnomalyMonitorResponse -> Text
monitorArn :: Prelude.Text
}
deriving (UpdateAnomalyMonitorResponse
-> UpdateAnomalyMonitorResponse -> Bool
(UpdateAnomalyMonitorResponse
-> UpdateAnomalyMonitorResponse -> Bool)
-> (UpdateAnomalyMonitorResponse
-> UpdateAnomalyMonitorResponse -> Bool)
-> Eq UpdateAnomalyMonitorResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateAnomalyMonitorResponse
-> UpdateAnomalyMonitorResponse -> Bool
$c/= :: UpdateAnomalyMonitorResponse
-> UpdateAnomalyMonitorResponse -> Bool
== :: UpdateAnomalyMonitorResponse
-> UpdateAnomalyMonitorResponse -> Bool
$c== :: UpdateAnomalyMonitorResponse
-> UpdateAnomalyMonitorResponse -> Bool
Prelude.Eq, ReadPrec [UpdateAnomalyMonitorResponse]
ReadPrec UpdateAnomalyMonitorResponse
Int -> ReadS UpdateAnomalyMonitorResponse
ReadS [UpdateAnomalyMonitorResponse]
(Int -> ReadS UpdateAnomalyMonitorResponse)
-> ReadS [UpdateAnomalyMonitorResponse]
-> ReadPrec UpdateAnomalyMonitorResponse
-> ReadPrec [UpdateAnomalyMonitorResponse]
-> Read UpdateAnomalyMonitorResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateAnomalyMonitorResponse]
$creadListPrec :: ReadPrec [UpdateAnomalyMonitorResponse]
readPrec :: ReadPrec UpdateAnomalyMonitorResponse
$creadPrec :: ReadPrec UpdateAnomalyMonitorResponse
readList :: ReadS [UpdateAnomalyMonitorResponse]
$creadList :: ReadS [UpdateAnomalyMonitorResponse]
readsPrec :: Int -> ReadS UpdateAnomalyMonitorResponse
$creadsPrec :: Int -> ReadS UpdateAnomalyMonitorResponse
Prelude.Read, Int -> UpdateAnomalyMonitorResponse -> ShowS
[UpdateAnomalyMonitorResponse] -> ShowS
UpdateAnomalyMonitorResponse -> String
(Int -> UpdateAnomalyMonitorResponse -> ShowS)
-> (UpdateAnomalyMonitorResponse -> String)
-> ([UpdateAnomalyMonitorResponse] -> ShowS)
-> Show UpdateAnomalyMonitorResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateAnomalyMonitorResponse] -> ShowS
$cshowList :: [UpdateAnomalyMonitorResponse] -> ShowS
show :: UpdateAnomalyMonitorResponse -> String
$cshow :: UpdateAnomalyMonitorResponse -> String
showsPrec :: Int -> UpdateAnomalyMonitorResponse -> ShowS
$cshowsPrec :: Int -> UpdateAnomalyMonitorResponse -> ShowS
Prelude.Show, (forall x.
UpdateAnomalyMonitorResponse -> Rep UpdateAnomalyMonitorResponse x)
-> (forall x.
Rep UpdateAnomalyMonitorResponse x -> UpdateAnomalyMonitorResponse)
-> Generic UpdateAnomalyMonitorResponse
forall x.
Rep UpdateAnomalyMonitorResponse x -> UpdateAnomalyMonitorResponse
forall x.
UpdateAnomalyMonitorResponse -> Rep UpdateAnomalyMonitorResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateAnomalyMonitorResponse x -> UpdateAnomalyMonitorResponse
$cfrom :: forall x.
UpdateAnomalyMonitorResponse -> Rep UpdateAnomalyMonitorResponse x
Prelude.Generic)
newUpdateAnomalyMonitorResponse ::
Prelude.Int ->
Prelude.Text ->
UpdateAnomalyMonitorResponse
newUpdateAnomalyMonitorResponse :: Int -> Text -> UpdateAnomalyMonitorResponse
newUpdateAnomalyMonitorResponse
Int
pHttpStatus_
Text
pMonitorArn_ =
UpdateAnomalyMonitorResponse' :: Int -> Text -> UpdateAnomalyMonitorResponse
UpdateAnomalyMonitorResponse'
{ $sel:httpStatus:UpdateAnomalyMonitorResponse' :: Int
httpStatus =
Int
pHttpStatus_,
$sel:monitorArn:UpdateAnomalyMonitorResponse' :: Text
monitorArn = Text
pMonitorArn_
}
updateAnomalyMonitorResponse_httpStatus :: Lens.Lens' UpdateAnomalyMonitorResponse Prelude.Int
updateAnomalyMonitorResponse_httpStatus :: (Int -> f Int)
-> UpdateAnomalyMonitorResponse -> f UpdateAnomalyMonitorResponse
updateAnomalyMonitorResponse_httpStatus = (UpdateAnomalyMonitorResponse -> Int)
-> (UpdateAnomalyMonitorResponse
-> Int -> UpdateAnomalyMonitorResponse)
-> Lens
UpdateAnomalyMonitorResponse UpdateAnomalyMonitorResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateAnomalyMonitorResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateAnomalyMonitorResponse' :: UpdateAnomalyMonitorResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateAnomalyMonitorResponse
s@UpdateAnomalyMonitorResponse' {} Int
a -> UpdateAnomalyMonitorResponse
s {$sel:httpStatus:UpdateAnomalyMonitorResponse' :: Int
httpStatus = Int
a} :: UpdateAnomalyMonitorResponse)
updateAnomalyMonitorResponse_monitorArn :: Lens.Lens' UpdateAnomalyMonitorResponse Prelude.Text
updateAnomalyMonitorResponse_monitorArn :: (Text -> f Text)
-> UpdateAnomalyMonitorResponse -> f UpdateAnomalyMonitorResponse
updateAnomalyMonitorResponse_monitorArn = (UpdateAnomalyMonitorResponse -> Text)
-> (UpdateAnomalyMonitorResponse
-> Text -> UpdateAnomalyMonitorResponse)
-> Lens
UpdateAnomalyMonitorResponse UpdateAnomalyMonitorResponse Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateAnomalyMonitorResponse' {Text
monitorArn :: Text
$sel:monitorArn:UpdateAnomalyMonitorResponse' :: UpdateAnomalyMonitorResponse -> Text
monitorArn} -> Text
monitorArn) (\s :: UpdateAnomalyMonitorResponse
s@UpdateAnomalyMonitorResponse' {} Text
a -> UpdateAnomalyMonitorResponse
s {$sel:monitorArn:UpdateAnomalyMonitorResponse' :: Text
monitorArn = Text
a} :: UpdateAnomalyMonitorResponse)
instance Prelude.NFData UpdateAnomalyMonitorResponse