{-# 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.Proton.DeleteService
(
DeleteService (..),
newDeleteService,
deleteService_name,
DeleteServiceResponse (..),
newDeleteServiceResponse,
deleteServiceResponse_service,
deleteServiceResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import Amazonka.Proton.Types
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data DeleteService = DeleteService'
{
DeleteService -> Text
name :: Prelude.Text
}
deriving (DeleteService -> DeleteService -> Bool
(DeleteService -> DeleteService -> Bool)
-> (DeleteService -> DeleteService -> Bool) -> Eq DeleteService
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteService -> DeleteService -> Bool
$c/= :: DeleteService -> DeleteService -> Bool
== :: DeleteService -> DeleteService -> Bool
$c== :: DeleteService -> DeleteService -> Bool
Prelude.Eq, ReadPrec [DeleteService]
ReadPrec DeleteService
Int -> ReadS DeleteService
ReadS [DeleteService]
(Int -> ReadS DeleteService)
-> ReadS [DeleteService]
-> ReadPrec DeleteService
-> ReadPrec [DeleteService]
-> Read DeleteService
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteService]
$creadListPrec :: ReadPrec [DeleteService]
readPrec :: ReadPrec DeleteService
$creadPrec :: ReadPrec DeleteService
readList :: ReadS [DeleteService]
$creadList :: ReadS [DeleteService]
readsPrec :: Int -> ReadS DeleteService
$creadsPrec :: Int -> ReadS DeleteService
Prelude.Read, Int -> DeleteService -> ShowS
[DeleteService] -> ShowS
DeleteService -> String
(Int -> DeleteService -> ShowS)
-> (DeleteService -> String)
-> ([DeleteService] -> ShowS)
-> Show DeleteService
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteService] -> ShowS
$cshowList :: [DeleteService] -> ShowS
show :: DeleteService -> String
$cshow :: DeleteService -> String
showsPrec :: Int -> DeleteService -> ShowS
$cshowsPrec :: Int -> DeleteService -> ShowS
Prelude.Show, (forall x. DeleteService -> Rep DeleteService x)
-> (forall x. Rep DeleteService x -> DeleteService)
-> Generic DeleteService
forall x. Rep DeleteService x -> DeleteService
forall x. DeleteService -> Rep DeleteService x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteService x -> DeleteService
$cfrom :: forall x. DeleteService -> Rep DeleteService x
Prelude.Generic)
newDeleteService ::
Prelude.Text ->
DeleteService
newDeleteService :: Text -> DeleteService
newDeleteService Text
pName_ =
DeleteService' :: Text -> DeleteService
DeleteService' {$sel:name:DeleteService' :: Text
name = Text
pName_}
deleteService_name :: Lens.Lens' DeleteService Prelude.Text
deleteService_name :: (Text -> f Text) -> DeleteService -> f DeleteService
deleteService_name = (DeleteService -> Text)
-> (DeleteService -> Text -> DeleteService)
-> Lens DeleteService DeleteService Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteService' {Text
name :: Text
$sel:name:DeleteService' :: DeleteService -> Text
name} -> Text
name) (\s :: DeleteService
s@DeleteService' {} Text
a -> DeleteService
s {$sel:name:DeleteService' :: Text
name = Text
a} :: DeleteService)
instance Core.AWSRequest DeleteService where
type
AWSResponse DeleteService =
DeleteServiceResponse
request :: DeleteService -> Request DeleteService
request = Service -> DeleteService -> Request DeleteService
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteService
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteService)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse DeleteService))
-> Logger
-> Service
-> Proxy DeleteService
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteService)))
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 Service -> Int -> DeleteServiceResponse
DeleteServiceResponse'
(Maybe Service -> Int -> DeleteServiceResponse)
-> Either String (Maybe Service)
-> Either String (Int -> DeleteServiceResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Service)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"service")
Either String (Int -> DeleteServiceResponse)
-> Either String Int -> Either String DeleteServiceResponse
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 DeleteService
instance Prelude.NFData DeleteService
instance Core.ToHeaders DeleteService where
toHeaders :: DeleteService -> ResponseHeaders
toHeaders =
ResponseHeaders -> DeleteService -> 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
"AwsProton20200720.DeleteService" ::
Prelude.ByteString
),
HeaderName
"Content-Type"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.0" ::
Prelude.ByteString
)
]
)
instance Core.ToJSON DeleteService where
toJSON :: DeleteService -> Value
toJSON DeleteService' {Text
name :: Text
$sel:name:DeleteService' :: DeleteService -> Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"name" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
name)]
)
instance Core.ToPath DeleteService where
toPath :: DeleteService -> ByteString
toPath = ByteString -> DeleteService -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery DeleteService where
toQuery :: DeleteService -> QueryString
toQuery = QueryString -> DeleteService -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteServiceResponse = DeleteServiceResponse'
{
DeleteServiceResponse -> Maybe Service
service :: Prelude.Maybe Service,
DeleteServiceResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteServiceResponse -> DeleteServiceResponse -> Bool
(DeleteServiceResponse -> DeleteServiceResponse -> Bool)
-> (DeleteServiceResponse -> DeleteServiceResponse -> Bool)
-> Eq DeleteServiceResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteServiceResponse -> DeleteServiceResponse -> Bool
$c/= :: DeleteServiceResponse -> DeleteServiceResponse -> Bool
== :: DeleteServiceResponse -> DeleteServiceResponse -> Bool
$c== :: DeleteServiceResponse -> DeleteServiceResponse -> Bool
Prelude.Eq, Int -> DeleteServiceResponse -> ShowS
[DeleteServiceResponse] -> ShowS
DeleteServiceResponse -> String
(Int -> DeleteServiceResponse -> ShowS)
-> (DeleteServiceResponse -> String)
-> ([DeleteServiceResponse] -> ShowS)
-> Show DeleteServiceResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteServiceResponse] -> ShowS
$cshowList :: [DeleteServiceResponse] -> ShowS
show :: DeleteServiceResponse -> String
$cshow :: DeleteServiceResponse -> String
showsPrec :: Int -> DeleteServiceResponse -> ShowS
$cshowsPrec :: Int -> DeleteServiceResponse -> ShowS
Prelude.Show, (forall x. DeleteServiceResponse -> Rep DeleteServiceResponse x)
-> (forall x. Rep DeleteServiceResponse x -> DeleteServiceResponse)
-> Generic DeleteServiceResponse
forall x. Rep DeleteServiceResponse x -> DeleteServiceResponse
forall x. DeleteServiceResponse -> Rep DeleteServiceResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteServiceResponse x -> DeleteServiceResponse
$cfrom :: forall x. DeleteServiceResponse -> Rep DeleteServiceResponse x
Prelude.Generic)
newDeleteServiceResponse ::
Prelude.Int ->
DeleteServiceResponse
newDeleteServiceResponse :: Int -> DeleteServiceResponse
newDeleteServiceResponse Int
pHttpStatus_ =
DeleteServiceResponse' :: Maybe Service -> Int -> DeleteServiceResponse
DeleteServiceResponse'
{ $sel:service:DeleteServiceResponse' :: Maybe Service
service = Maybe Service
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:DeleteServiceResponse' :: Int
httpStatus = Int
pHttpStatus_
}
deleteServiceResponse_service :: Lens.Lens' DeleteServiceResponse (Prelude.Maybe Service)
deleteServiceResponse_service :: (Maybe Service -> f (Maybe Service))
-> DeleteServiceResponse -> f DeleteServiceResponse
deleteServiceResponse_service = (DeleteServiceResponse -> Maybe Service)
-> (DeleteServiceResponse
-> Maybe Service -> DeleteServiceResponse)
-> Lens
DeleteServiceResponse
DeleteServiceResponse
(Maybe Service)
(Maybe Service)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteServiceResponse' {Maybe Service
service :: Maybe Service
$sel:service:DeleteServiceResponse' :: DeleteServiceResponse -> Maybe Service
service} -> Maybe Service
service) (\s :: DeleteServiceResponse
s@DeleteServiceResponse' {} Maybe Service
a -> DeleteServiceResponse
s {$sel:service:DeleteServiceResponse' :: Maybe Service
service = Maybe Service
a} :: DeleteServiceResponse)
deleteServiceResponse_httpStatus :: Lens.Lens' DeleteServiceResponse Prelude.Int
deleteServiceResponse_httpStatus :: (Int -> f Int) -> DeleteServiceResponse -> f DeleteServiceResponse
deleteServiceResponse_httpStatus = (DeleteServiceResponse -> Int)
-> (DeleteServiceResponse -> Int -> DeleteServiceResponse)
-> Lens DeleteServiceResponse DeleteServiceResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteServiceResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteServiceResponse' :: DeleteServiceResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteServiceResponse
s@DeleteServiceResponse' {} Int
a -> DeleteServiceResponse
s {$sel:httpStatus:DeleteServiceResponse' :: Int
httpStatus = Int
a} :: DeleteServiceResponse)
instance Prelude.NFData DeleteServiceResponse