{-# 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.Lightsail.PeerVpc
(
PeerVpc (..),
newPeerVpc,
PeerVpcResponse (..),
newPeerVpcResponse,
peerVpcResponse_operation,
peerVpcResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.Lightsail.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data PeerVpc = PeerVpc'
{
}
deriving (PeerVpc -> PeerVpc -> Bool
(PeerVpc -> PeerVpc -> Bool)
-> (PeerVpc -> PeerVpc -> Bool) -> Eq PeerVpc
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PeerVpc -> PeerVpc -> Bool
$c/= :: PeerVpc -> PeerVpc -> Bool
== :: PeerVpc -> PeerVpc -> Bool
$c== :: PeerVpc -> PeerVpc -> Bool
Prelude.Eq, ReadPrec [PeerVpc]
ReadPrec PeerVpc
Int -> ReadS PeerVpc
ReadS [PeerVpc]
(Int -> ReadS PeerVpc)
-> ReadS [PeerVpc]
-> ReadPrec PeerVpc
-> ReadPrec [PeerVpc]
-> Read PeerVpc
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [PeerVpc]
$creadListPrec :: ReadPrec [PeerVpc]
readPrec :: ReadPrec PeerVpc
$creadPrec :: ReadPrec PeerVpc
readList :: ReadS [PeerVpc]
$creadList :: ReadS [PeerVpc]
readsPrec :: Int -> ReadS PeerVpc
$creadsPrec :: Int -> ReadS PeerVpc
Prelude.Read, Int -> PeerVpc -> ShowS
[PeerVpc] -> ShowS
PeerVpc -> String
(Int -> PeerVpc -> ShowS)
-> (PeerVpc -> String) -> ([PeerVpc] -> ShowS) -> Show PeerVpc
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [PeerVpc] -> ShowS
$cshowList :: [PeerVpc] -> ShowS
show :: PeerVpc -> String
$cshow :: PeerVpc -> String
showsPrec :: Int -> PeerVpc -> ShowS
$cshowsPrec :: Int -> PeerVpc -> ShowS
Prelude.Show, (forall x. PeerVpc -> Rep PeerVpc x)
-> (forall x. Rep PeerVpc x -> PeerVpc) -> Generic PeerVpc
forall x. Rep PeerVpc x -> PeerVpc
forall x. PeerVpc -> Rep PeerVpc x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep PeerVpc x -> PeerVpc
$cfrom :: forall x. PeerVpc -> Rep PeerVpc x
Prelude.Generic)
newPeerVpc ::
PeerVpc
newPeerVpc :: PeerVpc
newPeerVpc = PeerVpc
PeerVpc'
instance Core.AWSRequest PeerVpc where
type AWSResponse PeerVpc = PeerVpcResponse
request :: PeerVpc -> Request PeerVpc
request = Service -> PeerVpc -> Request PeerVpc
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy PeerVpc
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse PeerVpc)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse PeerVpc))
-> Logger
-> Service
-> Proxy PeerVpc
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse PeerVpc)))
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 Operation -> Int -> PeerVpcResponse
PeerVpcResponse'
(Maybe Operation -> Int -> PeerVpcResponse)
-> Either String (Maybe Operation)
-> Either String (Int -> PeerVpcResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Key -> Either String (Maybe Operation)
forall a. FromJSON a => Object -> Key -> Either String (Maybe a)
Core..?> Key
"operation")
Either String (Int -> PeerVpcResponse)
-> Either String Int -> Either String PeerVpcResponse
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 PeerVpc
instance Prelude.NFData PeerVpc
instance Core.ToHeaders PeerVpc where
toHeaders :: PeerVpc -> ResponseHeaders
toHeaders =
ResponseHeaders -> PeerVpc -> 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
"Lightsail_20161128.PeerVpc" :: Prelude.ByteString),
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.ToJSON PeerVpc where
toJSON :: PeerVpc -> Value
toJSON = Value -> PeerVpc -> Value
forall a b. a -> b -> a
Prelude.const (Object -> Value
Core.Object Object
forall a. Monoid a => a
Prelude.mempty)
instance Core.ToPath PeerVpc where
toPath :: PeerVpc -> ByteString
toPath = ByteString -> PeerVpc -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery PeerVpc where
toQuery :: PeerVpc -> QueryString
toQuery = QueryString -> PeerVpc -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data PeerVpcResponse = PeerVpcResponse'
{
PeerVpcResponse -> Maybe Operation
operation :: Prelude.Maybe Operation,
PeerVpcResponse -> Int
httpStatus :: Prelude.Int
}
deriving (PeerVpcResponse -> PeerVpcResponse -> Bool
(PeerVpcResponse -> PeerVpcResponse -> Bool)
-> (PeerVpcResponse -> PeerVpcResponse -> Bool)
-> Eq PeerVpcResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PeerVpcResponse -> PeerVpcResponse -> Bool
$c/= :: PeerVpcResponse -> PeerVpcResponse -> Bool
== :: PeerVpcResponse -> PeerVpcResponse -> Bool
$c== :: PeerVpcResponse -> PeerVpcResponse -> Bool
Prelude.Eq, ReadPrec [PeerVpcResponse]
ReadPrec PeerVpcResponse
Int -> ReadS PeerVpcResponse
ReadS [PeerVpcResponse]
(Int -> ReadS PeerVpcResponse)
-> ReadS [PeerVpcResponse]
-> ReadPrec PeerVpcResponse
-> ReadPrec [PeerVpcResponse]
-> Read PeerVpcResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [PeerVpcResponse]
$creadListPrec :: ReadPrec [PeerVpcResponse]
readPrec :: ReadPrec PeerVpcResponse
$creadPrec :: ReadPrec PeerVpcResponse
readList :: ReadS [PeerVpcResponse]
$creadList :: ReadS [PeerVpcResponse]
readsPrec :: Int -> ReadS PeerVpcResponse
$creadsPrec :: Int -> ReadS PeerVpcResponse
Prelude.Read, Int -> PeerVpcResponse -> ShowS
[PeerVpcResponse] -> ShowS
PeerVpcResponse -> String
(Int -> PeerVpcResponse -> ShowS)
-> (PeerVpcResponse -> String)
-> ([PeerVpcResponse] -> ShowS)
-> Show PeerVpcResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [PeerVpcResponse] -> ShowS
$cshowList :: [PeerVpcResponse] -> ShowS
show :: PeerVpcResponse -> String
$cshow :: PeerVpcResponse -> String
showsPrec :: Int -> PeerVpcResponse -> ShowS
$cshowsPrec :: Int -> PeerVpcResponse -> ShowS
Prelude.Show, (forall x. PeerVpcResponse -> Rep PeerVpcResponse x)
-> (forall x. Rep PeerVpcResponse x -> PeerVpcResponse)
-> Generic PeerVpcResponse
forall x. Rep PeerVpcResponse x -> PeerVpcResponse
forall x. PeerVpcResponse -> Rep PeerVpcResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep PeerVpcResponse x -> PeerVpcResponse
$cfrom :: forall x. PeerVpcResponse -> Rep PeerVpcResponse x
Prelude.Generic)
newPeerVpcResponse ::
Prelude.Int ->
PeerVpcResponse
newPeerVpcResponse :: Int -> PeerVpcResponse
newPeerVpcResponse Int
pHttpStatus_ =
PeerVpcResponse' :: Maybe Operation -> Int -> PeerVpcResponse
PeerVpcResponse'
{ $sel:operation:PeerVpcResponse' :: Maybe Operation
operation = Maybe Operation
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:PeerVpcResponse' :: Int
httpStatus = Int
pHttpStatus_
}
peerVpcResponse_operation :: Lens.Lens' PeerVpcResponse (Prelude.Maybe Operation)
peerVpcResponse_operation :: (Maybe Operation -> f (Maybe Operation))
-> PeerVpcResponse -> f PeerVpcResponse
peerVpcResponse_operation = (PeerVpcResponse -> Maybe Operation)
-> (PeerVpcResponse -> Maybe Operation -> PeerVpcResponse)
-> Lens
PeerVpcResponse PeerVpcResponse (Maybe Operation) (Maybe Operation)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\PeerVpcResponse' {Maybe Operation
operation :: Maybe Operation
$sel:operation:PeerVpcResponse' :: PeerVpcResponse -> Maybe Operation
operation} -> Maybe Operation
operation) (\s :: PeerVpcResponse
s@PeerVpcResponse' {} Maybe Operation
a -> PeerVpcResponse
s {$sel:operation:PeerVpcResponse' :: Maybe Operation
operation = Maybe Operation
a} :: PeerVpcResponse)
peerVpcResponse_httpStatus :: Lens.Lens' PeerVpcResponse Prelude.Int
peerVpcResponse_httpStatus :: (Int -> f Int) -> PeerVpcResponse -> f PeerVpcResponse
peerVpcResponse_httpStatus = (PeerVpcResponse -> Int)
-> (PeerVpcResponse -> Int -> PeerVpcResponse)
-> Lens PeerVpcResponse PeerVpcResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\PeerVpcResponse' {Int
httpStatus :: Int
$sel:httpStatus:PeerVpcResponse' :: PeerVpcResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: PeerVpcResponse
s@PeerVpcResponse' {} Int
a -> PeerVpcResponse
s {$sel:httpStatus:PeerVpcResponse' :: Int
httpStatus = Int
a} :: PeerVpcResponse)
instance Prelude.NFData PeerVpcResponse