{-# 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.AppSync.GetApiCache
(
GetApiCache (..),
newGetApiCache,
getApiCache_apiId,
GetApiCacheResponse (..),
newGetApiCacheResponse,
getApiCacheResponse_apiCache,
getApiCacheResponse_httpStatus,
)
where
import Amazonka.AppSync.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 GetApiCache = GetApiCache'
{
GetApiCache -> Text
apiId :: Prelude.Text
}
deriving (GetApiCache -> GetApiCache -> Bool
(GetApiCache -> GetApiCache -> Bool)
-> (GetApiCache -> GetApiCache -> Bool) -> Eq GetApiCache
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetApiCache -> GetApiCache -> Bool
$c/= :: GetApiCache -> GetApiCache -> Bool
== :: GetApiCache -> GetApiCache -> Bool
$c== :: GetApiCache -> GetApiCache -> Bool
Prelude.Eq, ReadPrec [GetApiCache]
ReadPrec GetApiCache
Int -> ReadS GetApiCache
ReadS [GetApiCache]
(Int -> ReadS GetApiCache)
-> ReadS [GetApiCache]
-> ReadPrec GetApiCache
-> ReadPrec [GetApiCache]
-> Read GetApiCache
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetApiCache]
$creadListPrec :: ReadPrec [GetApiCache]
readPrec :: ReadPrec GetApiCache
$creadPrec :: ReadPrec GetApiCache
readList :: ReadS [GetApiCache]
$creadList :: ReadS [GetApiCache]
readsPrec :: Int -> ReadS GetApiCache
$creadsPrec :: Int -> ReadS GetApiCache
Prelude.Read, Int -> GetApiCache -> ShowS
[GetApiCache] -> ShowS
GetApiCache -> String
(Int -> GetApiCache -> ShowS)
-> (GetApiCache -> String)
-> ([GetApiCache] -> ShowS)
-> Show GetApiCache
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetApiCache] -> ShowS
$cshowList :: [GetApiCache] -> ShowS
show :: GetApiCache -> String
$cshow :: GetApiCache -> String
showsPrec :: Int -> GetApiCache -> ShowS
$cshowsPrec :: Int -> GetApiCache -> ShowS
Prelude.Show, (forall x. GetApiCache -> Rep GetApiCache x)
-> (forall x. Rep GetApiCache x -> GetApiCache)
-> Generic GetApiCache
forall x. Rep GetApiCache x -> GetApiCache
forall x. GetApiCache -> Rep GetApiCache x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetApiCache x -> GetApiCache
$cfrom :: forall x. GetApiCache -> Rep GetApiCache x
Prelude.Generic)
newGetApiCache ::
Prelude.Text ->
GetApiCache
newGetApiCache :: Text -> GetApiCache
newGetApiCache Text
pApiId_ =
GetApiCache' :: Text -> GetApiCache
GetApiCache' {$sel:apiId:GetApiCache' :: Text
apiId = Text
pApiId_}
getApiCache_apiId :: Lens.Lens' GetApiCache Prelude.Text
getApiCache_apiId :: (Text -> f Text) -> GetApiCache -> f GetApiCache
getApiCache_apiId = (GetApiCache -> Text)
-> (GetApiCache -> Text -> GetApiCache)
-> Lens GetApiCache GetApiCache Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetApiCache' {Text
apiId :: Text
$sel:apiId:GetApiCache' :: GetApiCache -> Text
apiId} -> Text
apiId) (\s :: GetApiCache
s@GetApiCache' {} Text
a -> GetApiCache
s {$sel:apiId:GetApiCache' :: Text
apiId = Text
a} :: GetApiCache)
instance Core.AWSRequest GetApiCache where
type AWSResponse GetApiCache = GetApiCacheResponse
request :: GetApiCache -> Request GetApiCache
request = Service -> GetApiCache -> Request GetApiCache
forall a. ToRequest a => Service -> a -> Request a
Request.get Service
defaultService
response :: Logger
-> Service
-> Proxy GetApiCache
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse GetApiCache)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse GetApiCache))
-> Logger
-> Service
-> Proxy GetApiCache
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse GetApiCache)))
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 ->
Maybe ApiCache -> Int -> GetApiCacheResponse
GetApiCacheResponse'
(Maybe ApiCache -> Int -> GetApiCacheResponse)
-> Either String (Maybe ApiCache)
-> Either String (Int -> GetApiCacheResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe ApiCache)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"apiCache")
Either String (Int -> GetApiCacheResponse)
-> Either String Int -> Either String GetApiCacheResponse
forall (f :: * -> *) a b. Applicative f => 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 GetApiCache
instance Prelude.NFData GetApiCache
instance Core.ToHeaders GetApiCache where
toHeaders :: GetApiCache -> ResponseHeaders
toHeaders =
ResponseHeaders -> GetApiCache -> 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 GetApiCache where
toPath :: GetApiCache -> ByteString
toPath GetApiCache' {Text
apiId :: Text
$sel:apiId:GetApiCache' :: GetApiCache -> Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ByteString
"/v1/apis/", Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
apiId, ByteString
"/ApiCaches"]
instance Core.ToQuery GetApiCache where
toQuery :: GetApiCache -> QueryString
toQuery = QueryString -> GetApiCache -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data GetApiCacheResponse = GetApiCacheResponse'
{
GetApiCacheResponse -> Maybe ApiCache
apiCache :: Prelude.Maybe ApiCache,
GetApiCacheResponse -> Int
httpStatus :: Prelude.Int
}
deriving (GetApiCacheResponse -> GetApiCacheResponse -> Bool
(GetApiCacheResponse -> GetApiCacheResponse -> Bool)
-> (GetApiCacheResponse -> GetApiCacheResponse -> Bool)
-> Eq GetApiCacheResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetApiCacheResponse -> GetApiCacheResponse -> Bool
$c/= :: GetApiCacheResponse -> GetApiCacheResponse -> Bool
== :: GetApiCacheResponse -> GetApiCacheResponse -> Bool
$c== :: GetApiCacheResponse -> GetApiCacheResponse -> Bool
Prelude.Eq, ReadPrec [GetApiCacheResponse]
ReadPrec GetApiCacheResponse
Int -> ReadS GetApiCacheResponse
ReadS [GetApiCacheResponse]
(Int -> ReadS GetApiCacheResponse)
-> ReadS [GetApiCacheResponse]
-> ReadPrec GetApiCacheResponse
-> ReadPrec [GetApiCacheResponse]
-> Read GetApiCacheResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetApiCacheResponse]
$creadListPrec :: ReadPrec [GetApiCacheResponse]
readPrec :: ReadPrec GetApiCacheResponse
$creadPrec :: ReadPrec GetApiCacheResponse
readList :: ReadS [GetApiCacheResponse]
$creadList :: ReadS [GetApiCacheResponse]
readsPrec :: Int -> ReadS GetApiCacheResponse
$creadsPrec :: Int -> ReadS GetApiCacheResponse
Prelude.Read, Int -> GetApiCacheResponse -> ShowS
[GetApiCacheResponse] -> ShowS
GetApiCacheResponse -> String
(Int -> GetApiCacheResponse -> ShowS)
-> (GetApiCacheResponse -> String)
-> ([GetApiCacheResponse] -> ShowS)
-> Show GetApiCacheResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetApiCacheResponse] -> ShowS
$cshowList :: [GetApiCacheResponse] -> ShowS
show :: GetApiCacheResponse -> String
$cshow :: GetApiCacheResponse -> String
showsPrec :: Int -> GetApiCacheResponse -> ShowS
$cshowsPrec :: Int -> GetApiCacheResponse -> ShowS
Prelude.Show, (forall x. GetApiCacheResponse -> Rep GetApiCacheResponse x)
-> (forall x. Rep GetApiCacheResponse x -> GetApiCacheResponse)
-> Generic GetApiCacheResponse
forall x. Rep GetApiCacheResponse x -> GetApiCacheResponse
forall x. GetApiCacheResponse -> Rep GetApiCacheResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetApiCacheResponse x -> GetApiCacheResponse
$cfrom :: forall x. GetApiCacheResponse -> Rep GetApiCacheResponse x
Prelude.Generic)
newGetApiCacheResponse ::
Prelude.Int ->
GetApiCacheResponse
newGetApiCacheResponse :: Int -> GetApiCacheResponse
newGetApiCacheResponse Int
pHttpStatus_ =
GetApiCacheResponse' :: Maybe ApiCache -> Int -> GetApiCacheResponse
GetApiCacheResponse'
{ $sel:apiCache:GetApiCacheResponse' :: Maybe ApiCache
apiCache = Maybe ApiCache
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:GetApiCacheResponse' :: Int
httpStatus = Int
pHttpStatus_
}
getApiCacheResponse_apiCache :: Lens.Lens' GetApiCacheResponse (Prelude.Maybe ApiCache)
getApiCacheResponse_apiCache :: (Maybe ApiCache -> f (Maybe ApiCache))
-> GetApiCacheResponse -> f GetApiCacheResponse
getApiCacheResponse_apiCache = (GetApiCacheResponse -> Maybe ApiCache)
-> (GetApiCacheResponse -> Maybe ApiCache -> GetApiCacheResponse)
-> Lens
GetApiCacheResponse
GetApiCacheResponse
(Maybe ApiCache)
(Maybe ApiCache)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetApiCacheResponse' {Maybe ApiCache
apiCache :: Maybe ApiCache
$sel:apiCache:GetApiCacheResponse' :: GetApiCacheResponse -> Maybe ApiCache
apiCache} -> Maybe ApiCache
apiCache) (\s :: GetApiCacheResponse
s@GetApiCacheResponse' {} Maybe ApiCache
a -> GetApiCacheResponse
s {$sel:apiCache:GetApiCacheResponse' :: Maybe ApiCache
apiCache = Maybe ApiCache
a} :: GetApiCacheResponse)
getApiCacheResponse_httpStatus :: Lens.Lens' GetApiCacheResponse Prelude.Int
getApiCacheResponse_httpStatus :: (Int -> f Int) -> GetApiCacheResponse -> f GetApiCacheResponse
getApiCacheResponse_httpStatus = (GetApiCacheResponse -> Int)
-> (GetApiCacheResponse -> Int -> GetApiCacheResponse)
-> Lens GetApiCacheResponse GetApiCacheResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetApiCacheResponse' {Int
httpStatus :: Int
$sel:httpStatus:GetApiCacheResponse' :: GetApiCacheResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: GetApiCacheResponse
s@GetApiCacheResponse' {} Int
a -> GetApiCacheResponse
s {$sel:httpStatus:GetApiCacheResponse' :: Int
httpStatus = Int
a} :: GetApiCacheResponse)
instance Prelude.NFData GetApiCacheResponse