{-# 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.CodeGuruProfiler.GetNotificationConfiguration
(
GetNotificationConfiguration (..),
newGetNotificationConfiguration,
getNotificationConfiguration_profilingGroupName,
GetNotificationConfigurationResponse (..),
newGetNotificationConfigurationResponse,
getNotificationConfigurationResponse_httpStatus,
getNotificationConfigurationResponse_notificationConfiguration,
)
where
import Amazonka.CodeGuruProfiler.Types
import qualified Amazonka.Core as Core
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 GetNotificationConfiguration = GetNotificationConfiguration'
{
GetNotificationConfiguration -> Text
profilingGroupName :: Prelude.Text
}
deriving (GetNotificationConfiguration
-> GetNotificationConfiguration -> Bool
(GetNotificationConfiguration
-> GetNotificationConfiguration -> Bool)
-> (GetNotificationConfiguration
-> GetNotificationConfiguration -> Bool)
-> Eq GetNotificationConfiguration
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetNotificationConfiguration
-> GetNotificationConfiguration -> Bool
$c/= :: GetNotificationConfiguration
-> GetNotificationConfiguration -> Bool
== :: GetNotificationConfiguration
-> GetNotificationConfiguration -> Bool
$c== :: GetNotificationConfiguration
-> GetNotificationConfiguration -> Bool
Prelude.Eq, ReadPrec [GetNotificationConfiguration]
ReadPrec GetNotificationConfiguration
Int -> ReadS GetNotificationConfiguration
ReadS [GetNotificationConfiguration]
(Int -> ReadS GetNotificationConfiguration)
-> ReadS [GetNotificationConfiguration]
-> ReadPrec GetNotificationConfiguration
-> ReadPrec [GetNotificationConfiguration]
-> Read GetNotificationConfiguration
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetNotificationConfiguration]
$creadListPrec :: ReadPrec [GetNotificationConfiguration]
readPrec :: ReadPrec GetNotificationConfiguration
$creadPrec :: ReadPrec GetNotificationConfiguration
readList :: ReadS [GetNotificationConfiguration]
$creadList :: ReadS [GetNotificationConfiguration]
readsPrec :: Int -> ReadS GetNotificationConfiguration
$creadsPrec :: Int -> ReadS GetNotificationConfiguration
Prelude.Read, Int -> GetNotificationConfiguration -> ShowS
[GetNotificationConfiguration] -> ShowS
GetNotificationConfiguration -> String
(Int -> GetNotificationConfiguration -> ShowS)
-> (GetNotificationConfiguration -> String)
-> ([GetNotificationConfiguration] -> ShowS)
-> Show GetNotificationConfiguration
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetNotificationConfiguration] -> ShowS
$cshowList :: [GetNotificationConfiguration] -> ShowS
show :: GetNotificationConfiguration -> String
$cshow :: GetNotificationConfiguration -> String
showsPrec :: Int -> GetNotificationConfiguration -> ShowS
$cshowsPrec :: Int -> GetNotificationConfiguration -> ShowS
Prelude.Show, (forall x.
GetNotificationConfiguration -> Rep GetNotificationConfiguration x)
-> (forall x.
Rep GetNotificationConfiguration x -> GetNotificationConfiguration)
-> Generic GetNotificationConfiguration
forall x.
Rep GetNotificationConfiguration x -> GetNotificationConfiguration
forall x.
GetNotificationConfiguration -> Rep GetNotificationConfiguration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep GetNotificationConfiguration x -> GetNotificationConfiguration
$cfrom :: forall x.
GetNotificationConfiguration -> Rep GetNotificationConfiguration x
Prelude.Generic)
newGetNotificationConfiguration ::
Prelude.Text ->
GetNotificationConfiguration
newGetNotificationConfiguration :: Text -> GetNotificationConfiguration
newGetNotificationConfiguration Text
pProfilingGroupName_ =
GetNotificationConfiguration' :: Text -> GetNotificationConfiguration
GetNotificationConfiguration'
{ $sel:profilingGroupName:GetNotificationConfiguration' :: Text
profilingGroupName =
Text
pProfilingGroupName_
}
getNotificationConfiguration_profilingGroupName :: Lens.Lens' GetNotificationConfiguration Prelude.Text
getNotificationConfiguration_profilingGroupName :: (Text -> f Text)
-> GetNotificationConfiguration -> f GetNotificationConfiguration
getNotificationConfiguration_profilingGroupName = (GetNotificationConfiguration -> Text)
-> (GetNotificationConfiguration
-> Text -> GetNotificationConfiguration)
-> Lens
GetNotificationConfiguration GetNotificationConfiguration Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetNotificationConfiguration' {Text
profilingGroupName :: Text
$sel:profilingGroupName:GetNotificationConfiguration' :: GetNotificationConfiguration -> Text
profilingGroupName} -> Text
profilingGroupName) (\s :: GetNotificationConfiguration
s@GetNotificationConfiguration' {} Text
a -> GetNotificationConfiguration
s {$sel:profilingGroupName:GetNotificationConfiguration' :: Text
profilingGroupName = Text
a} :: GetNotificationConfiguration)
instance Core.AWSRequest GetNotificationConfiguration where
type
AWSResponse GetNotificationConfiguration =
GetNotificationConfigurationResponse
request :: GetNotificationConfiguration
-> Request GetNotificationConfiguration
request = Service
-> GetNotificationConfiguration
-> Request GetNotificationConfiguration
forall a. ToRequest a => Service -> a -> Request a
Request.get Service
defaultService
response :: Logger
-> Service
-> Proxy GetNotificationConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse GetNotificationConfiguration)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse GetNotificationConfiguration))
-> Logger
-> Service
-> Proxy GetNotificationConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse GetNotificationConfiguration)))
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
-> NotificationConfiguration
-> GetNotificationConfigurationResponse
GetNotificationConfigurationResponse'
(Int
-> NotificationConfiguration
-> GetNotificationConfigurationResponse)
-> Either String Int
-> Either
String
(NotificationConfiguration -> GetNotificationConfigurationResponse)
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
(NotificationConfiguration -> GetNotificationConfigurationResponse)
-> Either String NotificationConfiguration
-> Either String GetNotificationConfigurationResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String NotificationConfiguration
forall a. FromJSON a => Object -> Text -> Either String a
Core..:> Text
"notificationConfiguration")
)
instance
Prelude.Hashable
GetNotificationConfiguration
instance Prelude.NFData GetNotificationConfiguration
instance Core.ToHeaders GetNotificationConfiguration where
toHeaders :: GetNotificationConfiguration -> ResponseHeaders
toHeaders =
ResponseHeaders -> GetNotificationConfiguration -> 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.ToPath GetNotificationConfiguration where
toPath :: GetNotificationConfiguration -> ByteString
toPath GetNotificationConfiguration' {Text
profilingGroupName :: Text
$sel:profilingGroupName:GetNotificationConfiguration' :: GetNotificationConfiguration -> Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"/profilingGroups/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
profilingGroupName,
ByteString
"/notificationConfiguration"
]
instance Core.ToQuery GetNotificationConfiguration where
toQuery :: GetNotificationConfiguration -> QueryString
toQuery = QueryString -> GetNotificationConfiguration -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data GetNotificationConfigurationResponse = GetNotificationConfigurationResponse'
{
GetNotificationConfigurationResponse -> Int
httpStatus :: Prelude.Int,
GetNotificationConfigurationResponse -> NotificationConfiguration
notificationConfiguration :: NotificationConfiguration
}
deriving (GetNotificationConfigurationResponse
-> GetNotificationConfigurationResponse -> Bool
(GetNotificationConfigurationResponse
-> GetNotificationConfigurationResponse -> Bool)
-> (GetNotificationConfigurationResponse
-> GetNotificationConfigurationResponse -> Bool)
-> Eq GetNotificationConfigurationResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetNotificationConfigurationResponse
-> GetNotificationConfigurationResponse -> Bool
$c/= :: GetNotificationConfigurationResponse
-> GetNotificationConfigurationResponse -> Bool
== :: GetNotificationConfigurationResponse
-> GetNotificationConfigurationResponse -> Bool
$c== :: GetNotificationConfigurationResponse
-> GetNotificationConfigurationResponse -> Bool
Prelude.Eq, ReadPrec [GetNotificationConfigurationResponse]
ReadPrec GetNotificationConfigurationResponse
Int -> ReadS GetNotificationConfigurationResponse
ReadS [GetNotificationConfigurationResponse]
(Int -> ReadS GetNotificationConfigurationResponse)
-> ReadS [GetNotificationConfigurationResponse]
-> ReadPrec GetNotificationConfigurationResponse
-> ReadPrec [GetNotificationConfigurationResponse]
-> Read GetNotificationConfigurationResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetNotificationConfigurationResponse]
$creadListPrec :: ReadPrec [GetNotificationConfigurationResponse]
readPrec :: ReadPrec GetNotificationConfigurationResponse
$creadPrec :: ReadPrec GetNotificationConfigurationResponse
readList :: ReadS [GetNotificationConfigurationResponse]
$creadList :: ReadS [GetNotificationConfigurationResponse]
readsPrec :: Int -> ReadS GetNotificationConfigurationResponse
$creadsPrec :: Int -> ReadS GetNotificationConfigurationResponse
Prelude.Read, Int -> GetNotificationConfigurationResponse -> ShowS
[GetNotificationConfigurationResponse] -> ShowS
GetNotificationConfigurationResponse -> String
(Int -> GetNotificationConfigurationResponse -> ShowS)
-> (GetNotificationConfigurationResponse -> String)
-> ([GetNotificationConfigurationResponse] -> ShowS)
-> Show GetNotificationConfigurationResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetNotificationConfigurationResponse] -> ShowS
$cshowList :: [GetNotificationConfigurationResponse] -> ShowS
show :: GetNotificationConfigurationResponse -> String
$cshow :: GetNotificationConfigurationResponse -> String
showsPrec :: Int -> GetNotificationConfigurationResponse -> ShowS
$cshowsPrec :: Int -> GetNotificationConfigurationResponse -> ShowS
Prelude.Show, (forall x.
GetNotificationConfigurationResponse
-> Rep GetNotificationConfigurationResponse x)
-> (forall x.
Rep GetNotificationConfigurationResponse x
-> GetNotificationConfigurationResponse)
-> Generic GetNotificationConfigurationResponse
forall x.
Rep GetNotificationConfigurationResponse x
-> GetNotificationConfigurationResponse
forall x.
GetNotificationConfigurationResponse
-> Rep GetNotificationConfigurationResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep GetNotificationConfigurationResponse x
-> GetNotificationConfigurationResponse
$cfrom :: forall x.
GetNotificationConfigurationResponse
-> Rep GetNotificationConfigurationResponse x
Prelude.Generic)
newGetNotificationConfigurationResponse ::
Prelude.Int ->
NotificationConfiguration ->
GetNotificationConfigurationResponse
newGetNotificationConfigurationResponse :: Int
-> NotificationConfiguration
-> GetNotificationConfigurationResponse
newGetNotificationConfigurationResponse
Int
pHttpStatus_
NotificationConfiguration
pNotificationConfiguration_ =
GetNotificationConfigurationResponse' :: Int
-> NotificationConfiguration
-> GetNotificationConfigurationResponse
GetNotificationConfigurationResponse'
{ $sel:httpStatus:GetNotificationConfigurationResponse' :: Int
httpStatus =
Int
pHttpStatus_,
$sel:notificationConfiguration:GetNotificationConfigurationResponse' :: NotificationConfiguration
notificationConfiguration =
NotificationConfiguration
pNotificationConfiguration_
}
getNotificationConfigurationResponse_httpStatus :: Lens.Lens' GetNotificationConfigurationResponse Prelude.Int
getNotificationConfigurationResponse_httpStatus :: (Int -> f Int)
-> GetNotificationConfigurationResponse
-> f GetNotificationConfigurationResponse
getNotificationConfigurationResponse_httpStatus = (GetNotificationConfigurationResponse -> Int)
-> (GetNotificationConfigurationResponse
-> Int -> GetNotificationConfigurationResponse)
-> Lens
GetNotificationConfigurationResponse
GetNotificationConfigurationResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetNotificationConfigurationResponse' {Int
httpStatus :: Int
$sel:httpStatus:GetNotificationConfigurationResponse' :: GetNotificationConfigurationResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: GetNotificationConfigurationResponse
s@GetNotificationConfigurationResponse' {} Int
a -> GetNotificationConfigurationResponse
s {$sel:httpStatus:GetNotificationConfigurationResponse' :: Int
httpStatus = Int
a} :: GetNotificationConfigurationResponse)
getNotificationConfigurationResponse_notificationConfiguration :: Lens.Lens' GetNotificationConfigurationResponse NotificationConfiguration
getNotificationConfigurationResponse_notificationConfiguration :: (NotificationConfiguration -> f NotificationConfiguration)
-> GetNotificationConfigurationResponse
-> f GetNotificationConfigurationResponse
getNotificationConfigurationResponse_notificationConfiguration = (GetNotificationConfigurationResponse -> NotificationConfiguration)
-> (GetNotificationConfigurationResponse
-> NotificationConfiguration
-> GetNotificationConfigurationResponse)
-> Lens
GetNotificationConfigurationResponse
GetNotificationConfigurationResponse
NotificationConfiguration
NotificationConfiguration
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetNotificationConfigurationResponse' {NotificationConfiguration
notificationConfiguration :: NotificationConfiguration
$sel:notificationConfiguration:GetNotificationConfigurationResponse' :: GetNotificationConfigurationResponse -> NotificationConfiguration
notificationConfiguration} -> NotificationConfiguration
notificationConfiguration) (\s :: GetNotificationConfigurationResponse
s@GetNotificationConfigurationResponse' {} NotificationConfiguration
a -> GetNotificationConfigurationResponse
s {$sel:notificationConfiguration:GetNotificationConfigurationResponse' :: NotificationConfiguration
notificationConfiguration = NotificationConfiguration
a} :: GetNotificationConfigurationResponse)
instance
Prelude.NFData
GetNotificationConfigurationResponse