{-# 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.AppFlow.StartFlow
(
StartFlow (..),
newStartFlow,
startFlow_flowName,
StartFlowResponse (..),
newStartFlowResponse,
startFlowResponse_executionId,
startFlowResponse_flowArn,
startFlowResponse_flowStatus,
startFlowResponse_httpStatus,
)
where
import Amazonka.AppFlow.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 StartFlow = StartFlow'
{
StartFlow -> Text
flowName :: Prelude.Text
}
deriving (StartFlow -> StartFlow -> Bool
(StartFlow -> StartFlow -> Bool)
-> (StartFlow -> StartFlow -> Bool) -> Eq StartFlow
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartFlow -> StartFlow -> Bool
$c/= :: StartFlow -> StartFlow -> Bool
== :: StartFlow -> StartFlow -> Bool
$c== :: StartFlow -> StartFlow -> Bool
Prelude.Eq, ReadPrec [StartFlow]
ReadPrec StartFlow
Int -> ReadS StartFlow
ReadS [StartFlow]
(Int -> ReadS StartFlow)
-> ReadS [StartFlow]
-> ReadPrec StartFlow
-> ReadPrec [StartFlow]
-> Read StartFlow
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartFlow]
$creadListPrec :: ReadPrec [StartFlow]
readPrec :: ReadPrec StartFlow
$creadPrec :: ReadPrec StartFlow
readList :: ReadS [StartFlow]
$creadList :: ReadS [StartFlow]
readsPrec :: Int -> ReadS StartFlow
$creadsPrec :: Int -> ReadS StartFlow
Prelude.Read, Int -> StartFlow -> ShowS
[StartFlow] -> ShowS
StartFlow -> String
(Int -> StartFlow -> ShowS)
-> (StartFlow -> String)
-> ([StartFlow] -> ShowS)
-> Show StartFlow
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartFlow] -> ShowS
$cshowList :: [StartFlow] -> ShowS
show :: StartFlow -> String
$cshow :: StartFlow -> String
showsPrec :: Int -> StartFlow -> ShowS
$cshowsPrec :: Int -> StartFlow -> ShowS
Prelude.Show, (forall x. StartFlow -> Rep StartFlow x)
-> (forall x. Rep StartFlow x -> StartFlow) -> Generic StartFlow
forall x. Rep StartFlow x -> StartFlow
forall x. StartFlow -> Rep StartFlow x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep StartFlow x -> StartFlow
$cfrom :: forall x. StartFlow -> Rep StartFlow x
Prelude.Generic)
newStartFlow ::
Prelude.Text ->
StartFlow
newStartFlow :: Text -> StartFlow
newStartFlow Text
pFlowName_ =
StartFlow' :: Text -> StartFlow
StartFlow' {$sel:flowName:StartFlow' :: Text
flowName = Text
pFlowName_}
startFlow_flowName :: Lens.Lens' StartFlow Prelude.Text
startFlow_flowName :: (Text -> f Text) -> StartFlow -> f StartFlow
startFlow_flowName = (StartFlow -> Text)
-> (StartFlow -> Text -> StartFlow)
-> Lens StartFlow StartFlow Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartFlow' {Text
flowName :: Text
$sel:flowName:StartFlow' :: StartFlow -> Text
flowName} -> Text
flowName) (\s :: StartFlow
s@StartFlow' {} Text
a -> StartFlow
s {$sel:flowName:StartFlow' :: Text
flowName = Text
a} :: StartFlow)
instance Core.AWSRequest StartFlow where
type AWSResponse StartFlow = StartFlowResponse
request :: StartFlow -> Request StartFlow
request = Service -> StartFlow -> Request StartFlow
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy StartFlow
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse StartFlow)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse StartFlow))
-> Logger
-> Service
-> Proxy StartFlow
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse StartFlow)))
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
-> Maybe Text -> Maybe FlowStatus -> Int -> StartFlowResponse
StartFlowResponse'
(Maybe Text
-> Maybe Text -> Maybe FlowStatus -> Int -> StartFlowResponse)
-> Either String (Maybe Text)
-> Either
String (Maybe Text -> Maybe FlowStatus -> Int -> StartFlowResponse)
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
"executionId")
Either
String (Maybe Text -> Maybe FlowStatus -> Int -> StartFlowResponse)
-> Either String (Maybe Text)
-> Either String (Maybe FlowStatus -> Int -> StartFlowResponse)
forall (f :: * -> *) a b. Applicative f => 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
"flowArn")
Either String (Maybe FlowStatus -> Int -> StartFlowResponse)
-> Either String (Maybe FlowStatus)
-> Either String (Int -> StartFlowResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe FlowStatus)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"flowStatus")
Either String (Int -> StartFlowResponse)
-> Either String Int -> Either String StartFlowResponse
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 StartFlow
instance Prelude.NFData StartFlow
instance Core.ToHeaders StartFlow where
toHeaders :: StartFlow -> ResponseHeaders
toHeaders =
ResponseHeaders -> StartFlow -> 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.ToJSON StartFlow where
toJSON :: StartFlow -> Value
toJSON StartFlow' {Text
flowName :: Text
$sel:flowName:StartFlow' :: StartFlow -> 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
"flowName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
flowName)]
)
instance Core.ToPath StartFlow where
toPath :: StartFlow -> ByteString
toPath = ByteString -> StartFlow -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/start-flow"
instance Core.ToQuery StartFlow where
toQuery :: StartFlow -> QueryString
toQuery = QueryString -> StartFlow -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data StartFlowResponse = StartFlowResponse'
{
StartFlowResponse -> Maybe Text
executionId :: Prelude.Maybe Prelude.Text,
StartFlowResponse -> Maybe Text
flowArn :: Prelude.Maybe Prelude.Text,
StartFlowResponse -> Maybe FlowStatus
flowStatus :: Prelude.Maybe FlowStatus,
StartFlowResponse -> Int
httpStatus :: Prelude.Int
}
deriving (StartFlowResponse -> StartFlowResponse -> Bool
(StartFlowResponse -> StartFlowResponse -> Bool)
-> (StartFlowResponse -> StartFlowResponse -> Bool)
-> Eq StartFlowResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartFlowResponse -> StartFlowResponse -> Bool
$c/= :: StartFlowResponse -> StartFlowResponse -> Bool
== :: StartFlowResponse -> StartFlowResponse -> Bool
$c== :: StartFlowResponse -> StartFlowResponse -> Bool
Prelude.Eq, ReadPrec [StartFlowResponse]
ReadPrec StartFlowResponse
Int -> ReadS StartFlowResponse
ReadS [StartFlowResponse]
(Int -> ReadS StartFlowResponse)
-> ReadS [StartFlowResponse]
-> ReadPrec StartFlowResponse
-> ReadPrec [StartFlowResponse]
-> Read StartFlowResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartFlowResponse]
$creadListPrec :: ReadPrec [StartFlowResponse]
readPrec :: ReadPrec StartFlowResponse
$creadPrec :: ReadPrec StartFlowResponse
readList :: ReadS [StartFlowResponse]
$creadList :: ReadS [StartFlowResponse]
readsPrec :: Int -> ReadS StartFlowResponse
$creadsPrec :: Int -> ReadS StartFlowResponse
Prelude.Read, Int -> StartFlowResponse -> ShowS
[StartFlowResponse] -> ShowS
StartFlowResponse -> String
(Int -> StartFlowResponse -> ShowS)
-> (StartFlowResponse -> String)
-> ([StartFlowResponse] -> ShowS)
-> Show StartFlowResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartFlowResponse] -> ShowS
$cshowList :: [StartFlowResponse] -> ShowS
show :: StartFlowResponse -> String
$cshow :: StartFlowResponse -> String
showsPrec :: Int -> StartFlowResponse -> ShowS
$cshowsPrec :: Int -> StartFlowResponse -> ShowS
Prelude.Show, (forall x. StartFlowResponse -> Rep StartFlowResponse x)
-> (forall x. Rep StartFlowResponse x -> StartFlowResponse)
-> Generic StartFlowResponse
forall x. Rep StartFlowResponse x -> StartFlowResponse
forall x. StartFlowResponse -> Rep StartFlowResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep StartFlowResponse x -> StartFlowResponse
$cfrom :: forall x. StartFlowResponse -> Rep StartFlowResponse x
Prelude.Generic)
newStartFlowResponse ::
Prelude.Int ->
StartFlowResponse
newStartFlowResponse :: Int -> StartFlowResponse
newStartFlowResponse Int
pHttpStatus_ =
StartFlowResponse' :: Maybe Text
-> Maybe Text -> Maybe FlowStatus -> Int -> StartFlowResponse
StartFlowResponse'
{ $sel:executionId:StartFlowResponse' :: Maybe Text
executionId = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:flowArn:StartFlowResponse' :: Maybe Text
flowArn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:flowStatus:StartFlowResponse' :: Maybe FlowStatus
flowStatus = Maybe FlowStatus
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:StartFlowResponse' :: Int
httpStatus = Int
pHttpStatus_
}
startFlowResponse_executionId :: Lens.Lens' StartFlowResponse (Prelude.Maybe Prelude.Text)
startFlowResponse_executionId :: (Maybe Text -> f (Maybe Text))
-> StartFlowResponse -> f StartFlowResponse
startFlowResponse_executionId = (StartFlowResponse -> Maybe Text)
-> (StartFlowResponse -> Maybe Text -> StartFlowResponse)
-> Lens
StartFlowResponse StartFlowResponse (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartFlowResponse' {Maybe Text
executionId :: Maybe Text
$sel:executionId:StartFlowResponse' :: StartFlowResponse -> Maybe Text
executionId} -> Maybe Text
executionId) (\s :: StartFlowResponse
s@StartFlowResponse' {} Maybe Text
a -> StartFlowResponse
s {$sel:executionId:StartFlowResponse' :: Maybe Text
executionId = Maybe Text
a} :: StartFlowResponse)
startFlowResponse_flowArn :: Lens.Lens' StartFlowResponse (Prelude.Maybe Prelude.Text)
startFlowResponse_flowArn :: (Maybe Text -> f (Maybe Text))
-> StartFlowResponse -> f StartFlowResponse
startFlowResponse_flowArn = (StartFlowResponse -> Maybe Text)
-> (StartFlowResponse -> Maybe Text -> StartFlowResponse)
-> Lens
StartFlowResponse StartFlowResponse (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartFlowResponse' {Maybe Text
flowArn :: Maybe Text
$sel:flowArn:StartFlowResponse' :: StartFlowResponse -> Maybe Text
flowArn} -> Maybe Text
flowArn) (\s :: StartFlowResponse
s@StartFlowResponse' {} Maybe Text
a -> StartFlowResponse
s {$sel:flowArn:StartFlowResponse' :: Maybe Text
flowArn = Maybe Text
a} :: StartFlowResponse)
startFlowResponse_flowStatus :: Lens.Lens' StartFlowResponse (Prelude.Maybe FlowStatus)
startFlowResponse_flowStatus :: (Maybe FlowStatus -> f (Maybe FlowStatus))
-> StartFlowResponse -> f StartFlowResponse
startFlowResponse_flowStatus = (StartFlowResponse -> Maybe FlowStatus)
-> (StartFlowResponse -> Maybe FlowStatus -> StartFlowResponse)
-> Lens
StartFlowResponse
StartFlowResponse
(Maybe FlowStatus)
(Maybe FlowStatus)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartFlowResponse' {Maybe FlowStatus
flowStatus :: Maybe FlowStatus
$sel:flowStatus:StartFlowResponse' :: StartFlowResponse -> Maybe FlowStatus
flowStatus} -> Maybe FlowStatus
flowStatus) (\s :: StartFlowResponse
s@StartFlowResponse' {} Maybe FlowStatus
a -> StartFlowResponse
s {$sel:flowStatus:StartFlowResponse' :: Maybe FlowStatus
flowStatus = Maybe FlowStatus
a} :: StartFlowResponse)
startFlowResponse_httpStatus :: Lens.Lens' StartFlowResponse Prelude.Int
startFlowResponse_httpStatus :: (Int -> f Int) -> StartFlowResponse -> f StartFlowResponse
startFlowResponse_httpStatus = (StartFlowResponse -> Int)
-> (StartFlowResponse -> Int -> StartFlowResponse)
-> Lens StartFlowResponse StartFlowResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartFlowResponse' {Int
httpStatus :: Int
$sel:httpStatus:StartFlowResponse' :: StartFlowResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: StartFlowResponse
s@StartFlowResponse' {} Int
a -> StartFlowResponse
s {$sel:httpStatus:StartFlowResponse' :: Int
httpStatus = Int
a} :: StartFlowResponse)
instance Prelude.NFData StartFlowResponse