{-# 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.SMS.StartOnDemandReplicationRun
(
StartOnDemandReplicationRun (..),
newStartOnDemandReplicationRun,
startOnDemandReplicationRun_description,
startOnDemandReplicationRun_replicationJobId,
StartOnDemandReplicationRunResponse (..),
newStartOnDemandReplicationRunResponse,
startOnDemandReplicationRunResponse_replicationRunId,
startOnDemandReplicationRunResponse_httpStatus,
)
where
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
import Amazonka.SMS.Types
data StartOnDemandReplicationRun = StartOnDemandReplicationRun'
{
StartOnDemandReplicationRun -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
StartOnDemandReplicationRun -> Text
replicationJobId :: Prelude.Text
}
deriving (StartOnDemandReplicationRun -> StartOnDemandReplicationRun -> Bool
(StartOnDemandReplicationRun
-> StartOnDemandReplicationRun -> Bool)
-> (StartOnDemandReplicationRun
-> StartOnDemandReplicationRun -> Bool)
-> Eq StartOnDemandReplicationRun
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartOnDemandReplicationRun -> StartOnDemandReplicationRun -> Bool
$c/= :: StartOnDemandReplicationRun -> StartOnDemandReplicationRun -> Bool
== :: StartOnDemandReplicationRun -> StartOnDemandReplicationRun -> Bool
$c== :: StartOnDemandReplicationRun -> StartOnDemandReplicationRun -> Bool
Prelude.Eq, ReadPrec [StartOnDemandReplicationRun]
ReadPrec StartOnDemandReplicationRun
Int -> ReadS StartOnDemandReplicationRun
ReadS [StartOnDemandReplicationRun]
(Int -> ReadS StartOnDemandReplicationRun)
-> ReadS [StartOnDemandReplicationRun]
-> ReadPrec StartOnDemandReplicationRun
-> ReadPrec [StartOnDemandReplicationRun]
-> Read StartOnDemandReplicationRun
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartOnDemandReplicationRun]
$creadListPrec :: ReadPrec [StartOnDemandReplicationRun]
readPrec :: ReadPrec StartOnDemandReplicationRun
$creadPrec :: ReadPrec StartOnDemandReplicationRun
readList :: ReadS [StartOnDemandReplicationRun]
$creadList :: ReadS [StartOnDemandReplicationRun]
readsPrec :: Int -> ReadS StartOnDemandReplicationRun
$creadsPrec :: Int -> ReadS StartOnDemandReplicationRun
Prelude.Read, Int -> StartOnDemandReplicationRun -> ShowS
[StartOnDemandReplicationRun] -> ShowS
StartOnDemandReplicationRun -> String
(Int -> StartOnDemandReplicationRun -> ShowS)
-> (StartOnDemandReplicationRun -> String)
-> ([StartOnDemandReplicationRun] -> ShowS)
-> Show StartOnDemandReplicationRun
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartOnDemandReplicationRun] -> ShowS
$cshowList :: [StartOnDemandReplicationRun] -> ShowS
show :: StartOnDemandReplicationRun -> String
$cshow :: StartOnDemandReplicationRun -> String
showsPrec :: Int -> StartOnDemandReplicationRun -> ShowS
$cshowsPrec :: Int -> StartOnDemandReplicationRun -> ShowS
Prelude.Show, (forall x.
StartOnDemandReplicationRun -> Rep StartOnDemandReplicationRun x)
-> (forall x.
Rep StartOnDemandReplicationRun x -> StartOnDemandReplicationRun)
-> Generic StartOnDemandReplicationRun
forall x.
Rep StartOnDemandReplicationRun x -> StartOnDemandReplicationRun
forall x.
StartOnDemandReplicationRun -> Rep StartOnDemandReplicationRun x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep StartOnDemandReplicationRun x -> StartOnDemandReplicationRun
$cfrom :: forall x.
StartOnDemandReplicationRun -> Rep StartOnDemandReplicationRun x
Prelude.Generic)
newStartOnDemandReplicationRun ::
Prelude.Text ->
StartOnDemandReplicationRun
newStartOnDemandReplicationRun :: Text -> StartOnDemandReplicationRun
newStartOnDemandReplicationRun Text
pReplicationJobId_ =
StartOnDemandReplicationRun' :: Maybe Text -> Text -> StartOnDemandReplicationRun
StartOnDemandReplicationRun'
{ $sel:description:StartOnDemandReplicationRun' :: Maybe Text
description =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:replicationJobId:StartOnDemandReplicationRun' :: Text
replicationJobId = Text
pReplicationJobId_
}
startOnDemandReplicationRun_description :: Lens.Lens' StartOnDemandReplicationRun (Prelude.Maybe Prelude.Text)
startOnDemandReplicationRun_description :: (Maybe Text -> f (Maybe Text))
-> StartOnDemandReplicationRun -> f StartOnDemandReplicationRun
startOnDemandReplicationRun_description = (StartOnDemandReplicationRun -> Maybe Text)
-> (StartOnDemandReplicationRun
-> Maybe Text -> StartOnDemandReplicationRun)
-> Lens
StartOnDemandReplicationRun
StartOnDemandReplicationRun
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartOnDemandReplicationRun' {Maybe Text
description :: Maybe Text
$sel:description:StartOnDemandReplicationRun' :: StartOnDemandReplicationRun -> Maybe Text
description} -> Maybe Text
description) (\s :: StartOnDemandReplicationRun
s@StartOnDemandReplicationRun' {} Maybe Text
a -> StartOnDemandReplicationRun
s {$sel:description:StartOnDemandReplicationRun' :: Maybe Text
description = Maybe Text
a} :: StartOnDemandReplicationRun)
startOnDemandReplicationRun_replicationJobId :: Lens.Lens' StartOnDemandReplicationRun Prelude.Text
startOnDemandReplicationRun_replicationJobId :: (Text -> f Text)
-> StartOnDemandReplicationRun -> f StartOnDemandReplicationRun
startOnDemandReplicationRun_replicationJobId = (StartOnDemandReplicationRun -> Text)
-> (StartOnDemandReplicationRun
-> Text -> StartOnDemandReplicationRun)
-> Lens
StartOnDemandReplicationRun StartOnDemandReplicationRun Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartOnDemandReplicationRun' {Text
replicationJobId :: Text
$sel:replicationJobId:StartOnDemandReplicationRun' :: StartOnDemandReplicationRun -> Text
replicationJobId} -> Text
replicationJobId) (\s :: StartOnDemandReplicationRun
s@StartOnDemandReplicationRun' {} Text
a -> StartOnDemandReplicationRun
s {$sel:replicationJobId:StartOnDemandReplicationRun' :: Text
replicationJobId = Text
a} :: StartOnDemandReplicationRun)
instance Core.AWSRequest StartOnDemandReplicationRun where
type
AWSResponse StartOnDemandReplicationRun =
StartOnDemandReplicationRunResponse
request :: StartOnDemandReplicationRun -> Request StartOnDemandReplicationRun
request = Service
-> StartOnDemandReplicationRun
-> Request StartOnDemandReplicationRun
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy StartOnDemandReplicationRun
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse StartOnDemandReplicationRun)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse StartOnDemandReplicationRun))
-> Logger
-> Service
-> Proxy StartOnDemandReplicationRun
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse StartOnDemandReplicationRun)))
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 Text -> Int -> StartOnDemandReplicationRunResponse
StartOnDemandReplicationRunResponse'
(Maybe Text -> Int -> StartOnDemandReplicationRunResponse)
-> Either String (Maybe Text)
-> Either String (Int -> StartOnDemandReplicationRunResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"replicationRunId")
Either String (Int -> StartOnDemandReplicationRunResponse)
-> Either String Int
-> Either String StartOnDemandReplicationRunResponse
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 StartOnDemandReplicationRun
instance Prelude.NFData StartOnDemandReplicationRun
instance Core.ToHeaders StartOnDemandReplicationRun where
toHeaders :: StartOnDemandReplicationRun -> ResponseHeaders
toHeaders =
ResponseHeaders -> StartOnDemandReplicationRun -> 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
"AWSServerMigrationService_V2016_10_24.StartOnDemandReplicationRun" ::
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 StartOnDemandReplicationRun where
toJSON :: StartOnDemandReplicationRun -> Value
toJSON StartOnDemandReplicationRun' {Maybe Text
Text
replicationJobId :: Text
description :: Maybe Text
$sel:replicationJobId:StartOnDemandReplicationRun' :: StartOnDemandReplicationRun -> Text
$sel:description:StartOnDemandReplicationRun' :: StartOnDemandReplicationRun -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"description" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
description,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"replicationJobId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
replicationJobId)
]
)
instance Core.ToPath StartOnDemandReplicationRun where
toPath :: StartOnDemandReplicationRun -> ByteString
toPath = ByteString -> StartOnDemandReplicationRun -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery StartOnDemandReplicationRun where
toQuery :: StartOnDemandReplicationRun -> QueryString
toQuery = QueryString -> StartOnDemandReplicationRun -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data StartOnDemandReplicationRunResponse = StartOnDemandReplicationRunResponse'
{
StartOnDemandReplicationRunResponse -> Maybe Text
replicationRunId :: Prelude.Maybe Prelude.Text,
StartOnDemandReplicationRunResponse -> Int
httpStatus :: Prelude.Int
}
deriving (StartOnDemandReplicationRunResponse
-> StartOnDemandReplicationRunResponse -> Bool
(StartOnDemandReplicationRunResponse
-> StartOnDemandReplicationRunResponse -> Bool)
-> (StartOnDemandReplicationRunResponse
-> StartOnDemandReplicationRunResponse -> Bool)
-> Eq StartOnDemandReplicationRunResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartOnDemandReplicationRunResponse
-> StartOnDemandReplicationRunResponse -> Bool
$c/= :: StartOnDemandReplicationRunResponse
-> StartOnDemandReplicationRunResponse -> Bool
== :: StartOnDemandReplicationRunResponse
-> StartOnDemandReplicationRunResponse -> Bool
$c== :: StartOnDemandReplicationRunResponse
-> StartOnDemandReplicationRunResponse -> Bool
Prelude.Eq, ReadPrec [StartOnDemandReplicationRunResponse]
ReadPrec StartOnDemandReplicationRunResponse
Int -> ReadS StartOnDemandReplicationRunResponse
ReadS [StartOnDemandReplicationRunResponse]
(Int -> ReadS StartOnDemandReplicationRunResponse)
-> ReadS [StartOnDemandReplicationRunResponse]
-> ReadPrec StartOnDemandReplicationRunResponse
-> ReadPrec [StartOnDemandReplicationRunResponse]
-> Read StartOnDemandReplicationRunResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartOnDemandReplicationRunResponse]
$creadListPrec :: ReadPrec [StartOnDemandReplicationRunResponse]
readPrec :: ReadPrec StartOnDemandReplicationRunResponse
$creadPrec :: ReadPrec StartOnDemandReplicationRunResponse
readList :: ReadS [StartOnDemandReplicationRunResponse]
$creadList :: ReadS [StartOnDemandReplicationRunResponse]
readsPrec :: Int -> ReadS StartOnDemandReplicationRunResponse
$creadsPrec :: Int -> ReadS StartOnDemandReplicationRunResponse
Prelude.Read, Int -> StartOnDemandReplicationRunResponse -> ShowS
[StartOnDemandReplicationRunResponse] -> ShowS
StartOnDemandReplicationRunResponse -> String
(Int -> StartOnDemandReplicationRunResponse -> ShowS)
-> (StartOnDemandReplicationRunResponse -> String)
-> ([StartOnDemandReplicationRunResponse] -> ShowS)
-> Show StartOnDemandReplicationRunResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartOnDemandReplicationRunResponse] -> ShowS
$cshowList :: [StartOnDemandReplicationRunResponse] -> ShowS
show :: StartOnDemandReplicationRunResponse -> String
$cshow :: StartOnDemandReplicationRunResponse -> String
showsPrec :: Int -> StartOnDemandReplicationRunResponse -> ShowS
$cshowsPrec :: Int -> StartOnDemandReplicationRunResponse -> ShowS
Prelude.Show, (forall x.
StartOnDemandReplicationRunResponse
-> Rep StartOnDemandReplicationRunResponse x)
-> (forall x.
Rep StartOnDemandReplicationRunResponse x
-> StartOnDemandReplicationRunResponse)
-> Generic StartOnDemandReplicationRunResponse
forall x.
Rep StartOnDemandReplicationRunResponse x
-> StartOnDemandReplicationRunResponse
forall x.
StartOnDemandReplicationRunResponse
-> Rep StartOnDemandReplicationRunResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep StartOnDemandReplicationRunResponse x
-> StartOnDemandReplicationRunResponse
$cfrom :: forall x.
StartOnDemandReplicationRunResponse
-> Rep StartOnDemandReplicationRunResponse x
Prelude.Generic)
newStartOnDemandReplicationRunResponse ::
Prelude.Int ->
StartOnDemandReplicationRunResponse
newStartOnDemandReplicationRunResponse :: Int -> StartOnDemandReplicationRunResponse
newStartOnDemandReplicationRunResponse Int
pHttpStatus_ =
StartOnDemandReplicationRunResponse' :: Maybe Text -> Int -> StartOnDemandReplicationRunResponse
StartOnDemandReplicationRunResponse'
{ $sel:replicationRunId:StartOnDemandReplicationRunResponse' :: Maybe Text
replicationRunId =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:StartOnDemandReplicationRunResponse' :: Int
httpStatus = Int
pHttpStatus_
}
startOnDemandReplicationRunResponse_replicationRunId :: Lens.Lens' StartOnDemandReplicationRunResponse (Prelude.Maybe Prelude.Text)
startOnDemandReplicationRunResponse_replicationRunId :: (Maybe Text -> f (Maybe Text))
-> StartOnDemandReplicationRunResponse
-> f StartOnDemandReplicationRunResponse
startOnDemandReplicationRunResponse_replicationRunId = (StartOnDemandReplicationRunResponse -> Maybe Text)
-> (StartOnDemandReplicationRunResponse
-> Maybe Text -> StartOnDemandReplicationRunResponse)
-> Lens
StartOnDemandReplicationRunResponse
StartOnDemandReplicationRunResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartOnDemandReplicationRunResponse' {Maybe Text
replicationRunId :: Maybe Text
$sel:replicationRunId:StartOnDemandReplicationRunResponse' :: StartOnDemandReplicationRunResponse -> Maybe Text
replicationRunId} -> Maybe Text
replicationRunId) (\s :: StartOnDemandReplicationRunResponse
s@StartOnDemandReplicationRunResponse' {} Maybe Text
a -> StartOnDemandReplicationRunResponse
s {$sel:replicationRunId:StartOnDemandReplicationRunResponse' :: Maybe Text
replicationRunId = Maybe Text
a} :: StartOnDemandReplicationRunResponse)
startOnDemandReplicationRunResponse_httpStatus :: Lens.Lens' StartOnDemandReplicationRunResponse Prelude.Int
startOnDemandReplicationRunResponse_httpStatus :: (Int -> f Int)
-> StartOnDemandReplicationRunResponse
-> f StartOnDemandReplicationRunResponse
startOnDemandReplicationRunResponse_httpStatus = (StartOnDemandReplicationRunResponse -> Int)
-> (StartOnDemandReplicationRunResponse
-> Int -> StartOnDemandReplicationRunResponse)
-> Lens
StartOnDemandReplicationRunResponse
StartOnDemandReplicationRunResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartOnDemandReplicationRunResponse' {Int
httpStatus :: Int
$sel:httpStatus:StartOnDemandReplicationRunResponse' :: StartOnDemandReplicationRunResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: StartOnDemandReplicationRunResponse
s@StartOnDemandReplicationRunResponse' {} Int
a -> StartOnDemandReplicationRunResponse
s {$sel:httpStatus:StartOnDemandReplicationRunResponse' :: Int
httpStatus = Int
a} :: StartOnDemandReplicationRunResponse)
instance
Prelude.NFData
StartOnDemandReplicationRunResponse