{-# 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.DeleteDataSource
(
DeleteDataSource (..),
newDeleteDataSource,
deleteDataSource_apiId,
deleteDataSource_name,
DeleteDataSourceResponse (..),
newDeleteDataSourceResponse,
deleteDataSourceResponse_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 DeleteDataSource = DeleteDataSource'
{
DeleteDataSource -> Text
apiId :: Prelude.Text,
DeleteDataSource -> Text
name :: Prelude.Text
}
deriving (DeleteDataSource -> DeleteDataSource -> Bool
(DeleteDataSource -> DeleteDataSource -> Bool)
-> (DeleteDataSource -> DeleteDataSource -> Bool)
-> Eq DeleteDataSource
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteDataSource -> DeleteDataSource -> Bool
$c/= :: DeleteDataSource -> DeleteDataSource -> Bool
== :: DeleteDataSource -> DeleteDataSource -> Bool
$c== :: DeleteDataSource -> DeleteDataSource -> Bool
Prelude.Eq, ReadPrec [DeleteDataSource]
ReadPrec DeleteDataSource
Int -> ReadS DeleteDataSource
ReadS [DeleteDataSource]
(Int -> ReadS DeleteDataSource)
-> ReadS [DeleteDataSource]
-> ReadPrec DeleteDataSource
-> ReadPrec [DeleteDataSource]
-> Read DeleteDataSource
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteDataSource]
$creadListPrec :: ReadPrec [DeleteDataSource]
readPrec :: ReadPrec DeleteDataSource
$creadPrec :: ReadPrec DeleteDataSource
readList :: ReadS [DeleteDataSource]
$creadList :: ReadS [DeleteDataSource]
readsPrec :: Int -> ReadS DeleteDataSource
$creadsPrec :: Int -> ReadS DeleteDataSource
Prelude.Read, Int -> DeleteDataSource -> ShowS
[DeleteDataSource] -> ShowS
DeleteDataSource -> String
(Int -> DeleteDataSource -> ShowS)
-> (DeleteDataSource -> String)
-> ([DeleteDataSource] -> ShowS)
-> Show DeleteDataSource
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteDataSource] -> ShowS
$cshowList :: [DeleteDataSource] -> ShowS
show :: DeleteDataSource -> String
$cshow :: DeleteDataSource -> String
showsPrec :: Int -> DeleteDataSource -> ShowS
$cshowsPrec :: Int -> DeleteDataSource -> ShowS
Prelude.Show, (forall x. DeleteDataSource -> Rep DeleteDataSource x)
-> (forall x. Rep DeleteDataSource x -> DeleteDataSource)
-> Generic DeleteDataSource
forall x. Rep DeleteDataSource x -> DeleteDataSource
forall x. DeleteDataSource -> Rep DeleteDataSource x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteDataSource x -> DeleteDataSource
$cfrom :: forall x. DeleteDataSource -> Rep DeleteDataSource x
Prelude.Generic)
newDeleteDataSource ::
Prelude.Text ->
Prelude.Text ->
DeleteDataSource
newDeleteDataSource :: Text -> Text -> DeleteDataSource
newDeleteDataSource Text
pApiId_ Text
pName_ =
DeleteDataSource' :: Text -> Text -> DeleteDataSource
DeleteDataSource' {$sel:apiId:DeleteDataSource' :: Text
apiId = Text
pApiId_, $sel:name:DeleteDataSource' :: Text
name = Text
pName_}
deleteDataSource_apiId :: Lens.Lens' DeleteDataSource Prelude.Text
deleteDataSource_apiId :: (Text -> f Text) -> DeleteDataSource -> f DeleteDataSource
deleteDataSource_apiId = (DeleteDataSource -> Text)
-> (DeleteDataSource -> Text -> DeleteDataSource)
-> Lens DeleteDataSource DeleteDataSource Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteDataSource' {Text
apiId :: Text
$sel:apiId:DeleteDataSource' :: DeleteDataSource -> Text
apiId} -> Text
apiId) (\s :: DeleteDataSource
s@DeleteDataSource' {} Text
a -> DeleteDataSource
s {$sel:apiId:DeleteDataSource' :: Text
apiId = Text
a} :: DeleteDataSource)
deleteDataSource_name :: Lens.Lens' DeleteDataSource Prelude.Text
deleteDataSource_name :: (Text -> f Text) -> DeleteDataSource -> f DeleteDataSource
deleteDataSource_name = (DeleteDataSource -> Text)
-> (DeleteDataSource -> Text -> DeleteDataSource)
-> Lens DeleteDataSource DeleteDataSource Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteDataSource' {Text
name :: Text
$sel:name:DeleteDataSource' :: DeleteDataSource -> Text
name} -> Text
name) (\s :: DeleteDataSource
s@DeleteDataSource' {} Text
a -> DeleteDataSource
s {$sel:name:DeleteDataSource' :: Text
name = Text
a} :: DeleteDataSource)
instance Core.AWSRequest DeleteDataSource where
type
AWSResponse DeleteDataSource =
DeleteDataSourceResponse
request :: DeleteDataSource -> Request DeleteDataSource
request = Service -> DeleteDataSource -> Request DeleteDataSource
forall a. ToRequest a => Service -> a -> Request a
Request.delete Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteDataSource
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteDataSource)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse DeleteDataSource))
-> Logger
-> Service
-> Proxy DeleteDataSource
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteDataSource)))
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 -> DeleteDataSourceResponse
DeleteDataSourceResponse'
(Int -> DeleteDataSourceResponse)
-> Either String Int -> Either String DeleteDataSourceResponse
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 DeleteDataSource
instance Prelude.NFData DeleteDataSource
instance Core.ToHeaders DeleteDataSource where
toHeaders :: DeleteDataSource -> ResponseHeaders
toHeaders =
ResponseHeaders -> DeleteDataSource -> 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 DeleteDataSource where
toPath :: DeleteDataSource -> ByteString
toPath DeleteDataSource' {Text
name :: Text
apiId :: Text
$sel:name:DeleteDataSource' :: DeleteDataSource -> Text
$sel:apiId:DeleteDataSource' :: DeleteDataSource -> 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 DeleteDataSource where
toQuery :: DeleteDataSource -> QueryString
toQuery = QueryString -> DeleteDataSource -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteDataSourceResponse = DeleteDataSourceResponse'
{
DeleteDataSourceResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteDataSourceResponse -> DeleteDataSourceResponse -> Bool
(DeleteDataSourceResponse -> DeleteDataSourceResponse -> Bool)
-> (DeleteDataSourceResponse -> DeleteDataSourceResponse -> Bool)
-> Eq DeleteDataSourceResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteDataSourceResponse -> DeleteDataSourceResponse -> Bool
$c/= :: DeleteDataSourceResponse -> DeleteDataSourceResponse -> Bool
== :: DeleteDataSourceResponse -> DeleteDataSourceResponse -> Bool
$c== :: DeleteDataSourceResponse -> DeleteDataSourceResponse -> Bool
Prelude.Eq, ReadPrec [DeleteDataSourceResponse]
ReadPrec DeleteDataSourceResponse
Int -> ReadS DeleteDataSourceResponse
ReadS [DeleteDataSourceResponse]
(Int -> ReadS DeleteDataSourceResponse)
-> ReadS [DeleteDataSourceResponse]
-> ReadPrec DeleteDataSourceResponse
-> ReadPrec [DeleteDataSourceResponse]
-> Read DeleteDataSourceResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteDataSourceResponse]
$creadListPrec :: ReadPrec [DeleteDataSourceResponse]
readPrec :: ReadPrec DeleteDataSourceResponse
$creadPrec :: ReadPrec DeleteDataSourceResponse
readList :: ReadS [DeleteDataSourceResponse]
$creadList :: ReadS [DeleteDataSourceResponse]
readsPrec :: Int -> ReadS DeleteDataSourceResponse
$creadsPrec :: Int -> ReadS DeleteDataSourceResponse
Prelude.Read, Int -> DeleteDataSourceResponse -> ShowS
[DeleteDataSourceResponse] -> ShowS
DeleteDataSourceResponse -> String
(Int -> DeleteDataSourceResponse -> ShowS)
-> (DeleteDataSourceResponse -> String)
-> ([DeleteDataSourceResponse] -> ShowS)
-> Show DeleteDataSourceResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteDataSourceResponse] -> ShowS
$cshowList :: [DeleteDataSourceResponse] -> ShowS
show :: DeleteDataSourceResponse -> String
$cshow :: DeleteDataSourceResponse -> String
showsPrec :: Int -> DeleteDataSourceResponse -> ShowS
$cshowsPrec :: Int -> DeleteDataSourceResponse -> ShowS
Prelude.Show, (forall x.
DeleteDataSourceResponse -> Rep DeleteDataSourceResponse x)
-> (forall x.
Rep DeleteDataSourceResponse x -> DeleteDataSourceResponse)
-> Generic DeleteDataSourceResponse
forall x.
Rep DeleteDataSourceResponse x -> DeleteDataSourceResponse
forall x.
DeleteDataSourceResponse -> Rep DeleteDataSourceResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteDataSourceResponse x -> DeleteDataSourceResponse
$cfrom :: forall x.
DeleteDataSourceResponse -> Rep DeleteDataSourceResponse x
Prelude.Generic)
newDeleteDataSourceResponse ::
Prelude.Int ->
DeleteDataSourceResponse
newDeleteDataSourceResponse :: Int -> DeleteDataSourceResponse
newDeleteDataSourceResponse Int
pHttpStatus_ =
DeleteDataSourceResponse' :: Int -> DeleteDataSourceResponse
DeleteDataSourceResponse'
{ $sel:httpStatus:DeleteDataSourceResponse' :: Int
httpStatus =
Int
pHttpStatus_
}
deleteDataSourceResponse_httpStatus :: Lens.Lens' DeleteDataSourceResponse Prelude.Int
deleteDataSourceResponse_httpStatus :: (Int -> f Int)
-> DeleteDataSourceResponse -> f DeleteDataSourceResponse
deleteDataSourceResponse_httpStatus = (DeleteDataSourceResponse -> Int)
-> (DeleteDataSourceResponse -> Int -> DeleteDataSourceResponse)
-> Lens DeleteDataSourceResponse DeleteDataSourceResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteDataSourceResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteDataSourceResponse' :: DeleteDataSourceResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteDataSourceResponse
s@DeleteDataSourceResponse' {} Int
a -> DeleteDataSourceResponse
s {$sel:httpStatus:DeleteDataSourceResponse' :: Int
httpStatus = Int
a} :: DeleteDataSourceResponse)
instance Prelude.NFData DeleteDataSourceResponse