{-# 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.SendContactMethodVerification
(
SendContactMethodVerification (..),
newSendContactMethodVerification,
sendContactMethodVerification_protocol,
SendContactMethodVerificationResponse (..),
newSendContactMethodVerificationResponse,
sendContactMethodVerificationResponse_operations,
sendContactMethodVerificationResponse_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 SendContactMethodVerification = SendContactMethodVerification'
{
SendContactMethodVerification -> ContactMethodVerificationProtocol
protocol :: ContactMethodVerificationProtocol
}
deriving (SendContactMethodVerification
-> SendContactMethodVerification -> Bool
(SendContactMethodVerification
-> SendContactMethodVerification -> Bool)
-> (SendContactMethodVerification
-> SendContactMethodVerification -> Bool)
-> Eq SendContactMethodVerification
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: SendContactMethodVerification
-> SendContactMethodVerification -> Bool
$c/= :: SendContactMethodVerification
-> SendContactMethodVerification -> Bool
== :: SendContactMethodVerification
-> SendContactMethodVerification -> Bool
$c== :: SendContactMethodVerification
-> SendContactMethodVerification -> Bool
Prelude.Eq, ReadPrec [SendContactMethodVerification]
ReadPrec SendContactMethodVerification
Int -> ReadS SendContactMethodVerification
ReadS [SendContactMethodVerification]
(Int -> ReadS SendContactMethodVerification)
-> ReadS [SendContactMethodVerification]
-> ReadPrec SendContactMethodVerification
-> ReadPrec [SendContactMethodVerification]
-> Read SendContactMethodVerification
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [SendContactMethodVerification]
$creadListPrec :: ReadPrec [SendContactMethodVerification]
readPrec :: ReadPrec SendContactMethodVerification
$creadPrec :: ReadPrec SendContactMethodVerification
readList :: ReadS [SendContactMethodVerification]
$creadList :: ReadS [SendContactMethodVerification]
readsPrec :: Int -> ReadS SendContactMethodVerification
$creadsPrec :: Int -> ReadS SendContactMethodVerification
Prelude.Read, Int -> SendContactMethodVerification -> ShowS
[SendContactMethodVerification] -> ShowS
SendContactMethodVerification -> String
(Int -> SendContactMethodVerification -> ShowS)
-> (SendContactMethodVerification -> String)
-> ([SendContactMethodVerification] -> ShowS)
-> Show SendContactMethodVerification
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [SendContactMethodVerification] -> ShowS
$cshowList :: [SendContactMethodVerification] -> ShowS
show :: SendContactMethodVerification -> String
$cshow :: SendContactMethodVerification -> String
showsPrec :: Int -> SendContactMethodVerification -> ShowS
$cshowsPrec :: Int -> SendContactMethodVerification -> ShowS
Prelude.Show, (forall x.
SendContactMethodVerification
-> Rep SendContactMethodVerification x)
-> (forall x.
Rep SendContactMethodVerification x
-> SendContactMethodVerification)
-> Generic SendContactMethodVerification
forall x.
Rep SendContactMethodVerification x
-> SendContactMethodVerification
forall x.
SendContactMethodVerification
-> Rep SendContactMethodVerification x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep SendContactMethodVerification x
-> SendContactMethodVerification
$cfrom :: forall x.
SendContactMethodVerification
-> Rep SendContactMethodVerification x
Prelude.Generic)
newSendContactMethodVerification ::
ContactMethodVerificationProtocol ->
SendContactMethodVerification
newSendContactMethodVerification :: ContactMethodVerificationProtocol -> SendContactMethodVerification
newSendContactMethodVerification ContactMethodVerificationProtocol
pProtocol_ =
SendContactMethodVerification' :: ContactMethodVerificationProtocol -> SendContactMethodVerification
SendContactMethodVerification'
{ $sel:protocol:SendContactMethodVerification' :: ContactMethodVerificationProtocol
protocol =
ContactMethodVerificationProtocol
pProtocol_
}
sendContactMethodVerification_protocol :: Lens.Lens' SendContactMethodVerification ContactMethodVerificationProtocol
sendContactMethodVerification_protocol :: (ContactMethodVerificationProtocol
-> f ContactMethodVerificationProtocol)
-> SendContactMethodVerification -> f SendContactMethodVerification
sendContactMethodVerification_protocol = (SendContactMethodVerification
-> ContactMethodVerificationProtocol)
-> (SendContactMethodVerification
-> ContactMethodVerificationProtocol
-> SendContactMethodVerification)
-> Lens
SendContactMethodVerification
SendContactMethodVerification
ContactMethodVerificationProtocol
ContactMethodVerificationProtocol
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SendContactMethodVerification' {ContactMethodVerificationProtocol
protocol :: ContactMethodVerificationProtocol
$sel:protocol:SendContactMethodVerification' :: SendContactMethodVerification -> ContactMethodVerificationProtocol
protocol} -> ContactMethodVerificationProtocol
protocol) (\s :: SendContactMethodVerification
s@SendContactMethodVerification' {} ContactMethodVerificationProtocol
a -> SendContactMethodVerification
s {$sel:protocol:SendContactMethodVerification' :: ContactMethodVerificationProtocol
protocol = ContactMethodVerificationProtocol
a} :: SendContactMethodVerification)
instance
Core.AWSRequest
SendContactMethodVerification
where
type
AWSResponse SendContactMethodVerification =
SendContactMethodVerificationResponse
request :: SendContactMethodVerification
-> Request SendContactMethodVerification
request = Service
-> SendContactMethodVerification
-> Request SendContactMethodVerification
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy SendContactMethodVerification
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse SendContactMethodVerification)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse SendContactMethodVerification))
-> Logger
-> Service
-> Proxy SendContactMethodVerification
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse SendContactMethodVerification)))
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 -> SendContactMethodVerificationResponse
SendContactMethodVerificationResponse'
(Maybe [Operation] -> Int -> SendContactMethodVerificationResponse)
-> Either String (Maybe [Operation])
-> Either String (Int -> SendContactMethodVerificationResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Key -> Either String (Maybe (Maybe [Operation]))
forall a. FromJSON a => Object -> Key -> Either String (Maybe a)
Core..?> Key
"operations" Either String (Maybe (Maybe [Operation]))
-> Maybe [Operation] -> Either String (Maybe [Operation])
forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ Maybe [Operation]
forall a. Monoid a => a
Prelude.mempty)
Either String (Int -> SendContactMethodVerificationResponse)
-> Either String Int
-> Either String SendContactMethodVerificationResponse
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
SendContactMethodVerification
instance Prelude.NFData SendContactMethodVerification
instance Core.ToHeaders SendContactMethodVerification where
toHeaders :: SendContactMethodVerification -> ResponseHeaders
toHeaders =
ResponseHeaders -> SendContactMethodVerification -> 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.SendContactMethodVerification" ::
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 SendContactMethodVerification where
toJSON :: SendContactMethodVerification -> Value
toJSON SendContactMethodVerification' {ContactMethodVerificationProtocol
protocol :: ContactMethodVerificationProtocol
$sel:protocol:SendContactMethodVerification' :: SendContactMethodVerification -> ContactMethodVerificationProtocol
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Key
"protocol" Key -> ContactMethodVerificationProtocol -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Core..= ContactMethodVerificationProtocol
protocol)]
)
instance Core.ToPath SendContactMethodVerification where
toPath :: SendContactMethodVerification -> ByteString
toPath = ByteString -> SendContactMethodVerification -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery SendContactMethodVerification where
toQuery :: SendContactMethodVerification -> QueryString
toQuery = QueryString -> SendContactMethodVerification -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data SendContactMethodVerificationResponse = SendContactMethodVerificationResponse'
{
SendContactMethodVerificationResponse -> Maybe [Operation]
operations :: Prelude.Maybe [Operation],
SendContactMethodVerificationResponse -> Int
httpStatus :: Prelude.Int
}
deriving (SendContactMethodVerificationResponse
-> SendContactMethodVerificationResponse -> Bool
(SendContactMethodVerificationResponse
-> SendContactMethodVerificationResponse -> Bool)
-> (SendContactMethodVerificationResponse
-> SendContactMethodVerificationResponse -> Bool)
-> Eq SendContactMethodVerificationResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: SendContactMethodVerificationResponse
-> SendContactMethodVerificationResponse -> Bool
$c/= :: SendContactMethodVerificationResponse
-> SendContactMethodVerificationResponse -> Bool
== :: SendContactMethodVerificationResponse
-> SendContactMethodVerificationResponse -> Bool
$c== :: SendContactMethodVerificationResponse
-> SendContactMethodVerificationResponse -> Bool
Prelude.Eq, ReadPrec [SendContactMethodVerificationResponse]
ReadPrec SendContactMethodVerificationResponse
Int -> ReadS SendContactMethodVerificationResponse
ReadS [SendContactMethodVerificationResponse]
(Int -> ReadS SendContactMethodVerificationResponse)
-> ReadS [SendContactMethodVerificationResponse]
-> ReadPrec SendContactMethodVerificationResponse
-> ReadPrec [SendContactMethodVerificationResponse]
-> Read SendContactMethodVerificationResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [SendContactMethodVerificationResponse]
$creadListPrec :: ReadPrec [SendContactMethodVerificationResponse]
readPrec :: ReadPrec SendContactMethodVerificationResponse
$creadPrec :: ReadPrec SendContactMethodVerificationResponse
readList :: ReadS [SendContactMethodVerificationResponse]
$creadList :: ReadS [SendContactMethodVerificationResponse]
readsPrec :: Int -> ReadS SendContactMethodVerificationResponse
$creadsPrec :: Int -> ReadS SendContactMethodVerificationResponse
Prelude.Read, Int -> SendContactMethodVerificationResponse -> ShowS
[SendContactMethodVerificationResponse] -> ShowS
SendContactMethodVerificationResponse -> String
(Int -> SendContactMethodVerificationResponse -> ShowS)
-> (SendContactMethodVerificationResponse -> String)
-> ([SendContactMethodVerificationResponse] -> ShowS)
-> Show SendContactMethodVerificationResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [SendContactMethodVerificationResponse] -> ShowS
$cshowList :: [SendContactMethodVerificationResponse] -> ShowS
show :: SendContactMethodVerificationResponse -> String
$cshow :: SendContactMethodVerificationResponse -> String
showsPrec :: Int -> SendContactMethodVerificationResponse -> ShowS
$cshowsPrec :: Int -> SendContactMethodVerificationResponse -> ShowS
Prelude.Show, (forall x.
SendContactMethodVerificationResponse
-> Rep SendContactMethodVerificationResponse x)
-> (forall x.
Rep SendContactMethodVerificationResponse x
-> SendContactMethodVerificationResponse)
-> Generic SendContactMethodVerificationResponse
forall x.
Rep SendContactMethodVerificationResponse x
-> SendContactMethodVerificationResponse
forall x.
SendContactMethodVerificationResponse
-> Rep SendContactMethodVerificationResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep SendContactMethodVerificationResponse x
-> SendContactMethodVerificationResponse
$cfrom :: forall x.
SendContactMethodVerificationResponse
-> Rep SendContactMethodVerificationResponse x
Prelude.Generic)
newSendContactMethodVerificationResponse ::
Prelude.Int ->
SendContactMethodVerificationResponse
newSendContactMethodVerificationResponse :: Int -> SendContactMethodVerificationResponse
newSendContactMethodVerificationResponse Int
pHttpStatus_ =
SendContactMethodVerificationResponse' :: Maybe [Operation] -> Int -> SendContactMethodVerificationResponse
SendContactMethodVerificationResponse'
{ $sel:operations:SendContactMethodVerificationResponse' :: Maybe [Operation]
operations =
Maybe [Operation]
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:SendContactMethodVerificationResponse' :: Int
httpStatus = Int
pHttpStatus_
}
sendContactMethodVerificationResponse_operations :: Lens.Lens' SendContactMethodVerificationResponse (Prelude.Maybe [Operation])
sendContactMethodVerificationResponse_operations :: (Maybe [Operation] -> f (Maybe [Operation]))
-> SendContactMethodVerificationResponse
-> f SendContactMethodVerificationResponse
sendContactMethodVerificationResponse_operations = (SendContactMethodVerificationResponse -> Maybe [Operation])
-> (SendContactMethodVerificationResponse
-> Maybe [Operation] -> SendContactMethodVerificationResponse)
-> Lens
SendContactMethodVerificationResponse
SendContactMethodVerificationResponse
(Maybe [Operation])
(Maybe [Operation])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SendContactMethodVerificationResponse' {Maybe [Operation]
operations :: Maybe [Operation]
$sel:operations:SendContactMethodVerificationResponse' :: SendContactMethodVerificationResponse -> Maybe [Operation]
operations} -> Maybe [Operation]
operations) (\s :: SendContactMethodVerificationResponse
s@SendContactMethodVerificationResponse' {} Maybe [Operation]
a -> SendContactMethodVerificationResponse
s {$sel:operations:SendContactMethodVerificationResponse' :: Maybe [Operation]
operations = Maybe [Operation]
a} :: SendContactMethodVerificationResponse) ((Maybe [Operation] -> f (Maybe [Operation]))
-> SendContactMethodVerificationResponse
-> f SendContactMethodVerificationResponse)
-> ((Maybe [Operation] -> f (Maybe [Operation]))
-> Maybe [Operation] -> f (Maybe [Operation]))
-> (Maybe [Operation] -> f (Maybe [Operation]))
-> SendContactMethodVerificationResponse
-> f SendContactMethodVerificationResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Operation] [Operation] [Operation] [Operation]
-> Iso
(Maybe [Operation])
(Maybe [Operation])
(Maybe [Operation])
(Maybe [Operation])
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso [Operation] [Operation] [Operation] [Operation]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
sendContactMethodVerificationResponse_httpStatus :: Lens.Lens' SendContactMethodVerificationResponse Prelude.Int
sendContactMethodVerificationResponse_httpStatus :: (Int -> f Int)
-> SendContactMethodVerificationResponse
-> f SendContactMethodVerificationResponse
sendContactMethodVerificationResponse_httpStatus = (SendContactMethodVerificationResponse -> Int)
-> (SendContactMethodVerificationResponse
-> Int -> SendContactMethodVerificationResponse)
-> Lens
SendContactMethodVerificationResponse
SendContactMethodVerificationResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SendContactMethodVerificationResponse' {Int
httpStatus :: Int
$sel:httpStatus:SendContactMethodVerificationResponse' :: SendContactMethodVerificationResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: SendContactMethodVerificationResponse
s@SendContactMethodVerificationResponse' {} Int
a -> SendContactMethodVerificationResponse
s {$sel:httpStatus:SendContactMethodVerificationResponse' :: Int
httpStatus = Int
a} :: SendContactMethodVerificationResponse)
instance
Prelude.NFData
SendContactMethodVerificationResponse