{-# 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.GetDataSource
(
GetDataSource (..),
newGetDataSource,
getDataSource_apiId,
getDataSource_name,
GetDataSourceResponse (..),
newGetDataSourceResponse,
getDataSourceResponse_dataSource,
getDataSourceResponse_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 GetDataSource = GetDataSource'
{
GetDataSource -> Text
apiId :: Prelude.Text,
GetDataSource -> Text
name :: Prelude.Text
}
deriving (GetDataSource -> GetDataSource -> Bool
(GetDataSource -> GetDataSource -> Bool)
-> (GetDataSource -> GetDataSource -> Bool) -> Eq GetDataSource
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetDataSource -> GetDataSource -> Bool
$c/= :: GetDataSource -> GetDataSource -> Bool
== :: GetDataSource -> GetDataSource -> Bool
$c== :: GetDataSource -> GetDataSource -> Bool
Prelude.Eq, ReadPrec [GetDataSource]
ReadPrec GetDataSource
Int -> ReadS GetDataSource
ReadS [GetDataSource]
(Int -> ReadS GetDataSource)
-> ReadS [GetDataSource]
-> ReadPrec GetDataSource
-> ReadPrec [GetDataSource]
-> Read GetDataSource
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetDataSource]
$creadListPrec :: ReadPrec [GetDataSource]
readPrec :: ReadPrec GetDataSource
$creadPrec :: ReadPrec GetDataSource
readList :: ReadS [GetDataSource]
$creadList :: ReadS [GetDataSource]
readsPrec :: Int -> ReadS GetDataSource
$creadsPrec :: Int -> ReadS GetDataSource
Prelude.Read, Int -> GetDataSource -> ShowS
[GetDataSource] -> ShowS
GetDataSource -> String
(Int -> GetDataSource -> ShowS)
-> (GetDataSource -> String)
-> ([GetDataSource] -> ShowS)
-> Show GetDataSource
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetDataSource] -> ShowS
$cshowList :: [GetDataSource] -> ShowS
show :: GetDataSource -> String
$cshow :: GetDataSource -> String
showsPrec :: Int -> GetDataSource -> ShowS
$cshowsPrec :: Int -> GetDataSource -> ShowS
Prelude.Show, (forall x. GetDataSource -> Rep GetDataSource x)
-> (forall x. Rep GetDataSource x -> GetDataSource)
-> Generic GetDataSource
forall x. Rep GetDataSource x -> GetDataSource
forall x. GetDataSource -> Rep GetDataSource x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetDataSource x -> GetDataSource
$cfrom :: forall x. GetDataSource -> Rep GetDataSource x
Prelude.Generic)
newGetDataSource ::
Prelude.Text ->
Prelude.Text ->
GetDataSource
newGetDataSource :: Text -> Text -> GetDataSource
newGetDataSource Text
pApiId_ Text
pName_ =
GetDataSource' :: Text -> Text -> GetDataSource
GetDataSource' {$sel:apiId:GetDataSource' :: Text
apiId = Text
pApiId_, $sel:name:GetDataSource' :: Text
name = Text
pName_}
getDataSource_apiId :: Lens.Lens' GetDataSource Prelude.Text
getDataSource_apiId :: (Text -> f Text) -> GetDataSource -> f GetDataSource
getDataSource_apiId = (GetDataSource -> Text)
-> (GetDataSource -> Text -> GetDataSource)
-> Lens GetDataSource GetDataSource Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetDataSource' {Text
apiId :: Text
$sel:apiId:GetDataSource' :: GetDataSource -> Text
apiId} -> Text
apiId) (\s :: GetDataSource
s@GetDataSource' {} Text
a -> GetDataSource
s {$sel:apiId:GetDataSource' :: Text
apiId = Text
a} :: GetDataSource)
getDataSource_name :: Lens.Lens' GetDataSource Prelude.Text
getDataSource_name :: (Text -> f Text) -> GetDataSource -> f GetDataSource
getDataSource_name = (GetDataSource -> Text)
-> (GetDataSource -> Text -> GetDataSource)
-> Lens GetDataSource GetDataSource Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetDataSource' {Text
name :: Text
$sel:name:GetDataSource' :: GetDataSource -> Text
name} -> Text
name) (\s :: GetDataSource
s@GetDataSource' {} Text
a -> GetDataSource
s {$sel:name:GetDataSource' :: Text
name = Text
a} :: GetDataSource)
instance Core.AWSRequest GetDataSource where
type
AWSResponse GetDataSource =
GetDataSourceResponse
request :: GetDataSource -> Request GetDataSource
request = Service -> GetDataSource -> Request GetDataSource
forall a. ToRequest a => Service -> a -> Request a
Request.get Service
defaultService
response :: Logger
-> Service
-> Proxy GetDataSource
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse GetDataSource)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse GetDataSource))
-> Logger
-> Service
-> Proxy GetDataSource
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse GetDataSource)))
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 DataSource -> Int -> GetDataSourceResponse
GetDataSourceResponse'
(Maybe DataSource -> Int -> GetDataSourceResponse)
-> Either String (Maybe DataSource)
-> Either String (Int -> GetDataSourceResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe DataSource)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"dataSource")
Either String (Int -> GetDataSourceResponse)
-> Either String Int -> Either String GetDataSourceResponse
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 GetDataSource
instance Prelude.NFData GetDataSource
instance Core.ToHeaders GetDataSource where
toHeaders :: GetDataSource -> ResponseHeaders
toHeaders =
ResponseHeaders -> GetDataSource -> 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 GetDataSource where
toPath :: GetDataSource -> ByteString
toPath GetDataSource' {Text
name :: Text
apiId :: Text
$sel:name:GetDataSource' :: GetDataSource -> Text
$sel:apiId:GetDataSource' :: GetDataSource -> 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
"/datasources/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
name
]
instance Core.ToQuery GetDataSource where
toQuery :: GetDataSource -> QueryString
toQuery = QueryString -> GetDataSource -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data GetDataSourceResponse = GetDataSourceResponse'
{
GetDataSourceResponse -> Maybe DataSource
dataSource :: Prelude.Maybe DataSource,
GetDataSourceResponse -> Int
httpStatus :: Prelude.Int
}
deriving (GetDataSourceResponse -> GetDataSourceResponse -> Bool
(GetDataSourceResponse -> GetDataSourceResponse -> Bool)
-> (GetDataSourceResponse -> GetDataSourceResponse -> Bool)
-> Eq GetDataSourceResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetDataSourceResponse -> GetDataSourceResponse -> Bool
$c/= :: GetDataSourceResponse -> GetDataSourceResponse -> Bool
== :: GetDataSourceResponse -> GetDataSourceResponse -> Bool
$c== :: GetDataSourceResponse -> GetDataSourceResponse -> Bool
Prelude.Eq, ReadPrec [GetDataSourceResponse]
ReadPrec GetDataSourceResponse
Int -> ReadS GetDataSourceResponse
ReadS [GetDataSourceResponse]
(Int -> ReadS GetDataSourceResponse)
-> ReadS [GetDataSourceResponse]
-> ReadPrec GetDataSourceResponse
-> ReadPrec [GetDataSourceResponse]
-> Read GetDataSourceResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetDataSourceResponse]
$creadListPrec :: ReadPrec [GetDataSourceResponse]
readPrec :: ReadPrec GetDataSourceResponse
$creadPrec :: ReadPrec GetDataSourceResponse
readList :: ReadS [GetDataSourceResponse]
$creadList :: ReadS [GetDataSourceResponse]
readsPrec :: Int -> ReadS GetDataSourceResponse
$creadsPrec :: Int -> ReadS GetDataSourceResponse
Prelude.Read, Int -> GetDataSourceResponse -> ShowS
[GetDataSourceResponse] -> ShowS
GetDataSourceResponse -> String
(Int -> GetDataSourceResponse -> ShowS)
-> (GetDataSourceResponse -> String)
-> ([GetDataSourceResponse] -> ShowS)
-> Show GetDataSourceResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetDataSourceResponse] -> ShowS
$cshowList :: [GetDataSourceResponse] -> ShowS
show :: GetDataSourceResponse -> String
$cshow :: GetDataSourceResponse -> String
showsPrec :: Int -> GetDataSourceResponse -> ShowS
$cshowsPrec :: Int -> GetDataSourceResponse -> ShowS
Prelude.Show, (forall x. GetDataSourceResponse -> Rep GetDataSourceResponse x)
-> (forall x. Rep GetDataSourceResponse x -> GetDataSourceResponse)
-> Generic GetDataSourceResponse
forall x. Rep GetDataSourceResponse x -> GetDataSourceResponse
forall x. GetDataSourceResponse -> Rep GetDataSourceResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetDataSourceResponse x -> GetDataSourceResponse
$cfrom :: forall x. GetDataSourceResponse -> Rep GetDataSourceResponse x
Prelude.Generic)
newGetDataSourceResponse ::
Prelude.Int ->
GetDataSourceResponse
newGetDataSourceResponse :: Int -> GetDataSourceResponse
newGetDataSourceResponse Int
pHttpStatus_ =
GetDataSourceResponse' :: Maybe DataSource -> Int -> GetDataSourceResponse
GetDataSourceResponse'
{ $sel:dataSource:GetDataSourceResponse' :: Maybe DataSource
dataSource =
Maybe DataSource
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:GetDataSourceResponse' :: Int
httpStatus = Int
pHttpStatus_
}
getDataSourceResponse_dataSource :: Lens.Lens' GetDataSourceResponse (Prelude.Maybe DataSource)
getDataSourceResponse_dataSource :: (Maybe DataSource -> f (Maybe DataSource))
-> GetDataSourceResponse -> f GetDataSourceResponse
getDataSourceResponse_dataSource = (GetDataSourceResponse -> Maybe DataSource)
-> (GetDataSourceResponse
-> Maybe DataSource -> GetDataSourceResponse)
-> Lens
GetDataSourceResponse
GetDataSourceResponse
(Maybe DataSource)
(Maybe DataSource)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetDataSourceResponse' {Maybe DataSource
dataSource :: Maybe DataSource
$sel:dataSource:GetDataSourceResponse' :: GetDataSourceResponse -> Maybe DataSource
dataSource} -> Maybe DataSource
dataSource) (\s :: GetDataSourceResponse
s@GetDataSourceResponse' {} Maybe DataSource
a -> GetDataSourceResponse
s {$sel:dataSource:GetDataSourceResponse' :: Maybe DataSource
dataSource = Maybe DataSource
a} :: GetDataSourceResponse)
getDataSourceResponse_httpStatus :: Lens.Lens' GetDataSourceResponse Prelude.Int
getDataSourceResponse_httpStatus :: (Int -> f Int) -> GetDataSourceResponse -> f GetDataSourceResponse
getDataSourceResponse_httpStatus = (GetDataSourceResponse -> Int)
-> (GetDataSourceResponse -> Int -> GetDataSourceResponse)
-> Lens GetDataSourceResponse GetDataSourceResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetDataSourceResponse' {Int
httpStatus :: Int
$sel:httpStatus:GetDataSourceResponse' :: GetDataSourceResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: GetDataSourceResponse
s@GetDataSourceResponse' {} Int
a -> GetDataSourceResponse
s {$sel:httpStatus:GetDataSourceResponse' :: Int
httpStatus = Int
a} :: GetDataSourceResponse)
instance Prelude.NFData GetDataSourceResponse