{-# 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.SWF.StartWorkflowExecution
(
StartWorkflowExecution (..),
newStartWorkflowExecution,
startWorkflowExecution_tagList,
startWorkflowExecution_taskStartToCloseTimeout,
startWorkflowExecution_lambdaRole,
startWorkflowExecution_input,
startWorkflowExecution_executionStartToCloseTimeout,
startWorkflowExecution_taskList,
startWorkflowExecution_taskPriority,
startWorkflowExecution_childPolicy,
startWorkflowExecution_domain,
startWorkflowExecution_workflowId,
startWorkflowExecution_workflowType,
StartWorkflowExecutionResponse (..),
newStartWorkflowExecutionResponse,
startWorkflowExecutionResponse_runId,
startWorkflowExecutionResponse_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.SWF.Types
data StartWorkflowExecution = StartWorkflowExecution'
{
StartWorkflowExecution -> Maybe [Text]
tagList :: Prelude.Maybe [Prelude.Text],
StartWorkflowExecution -> Maybe Text
taskStartToCloseTimeout :: Prelude.Maybe Prelude.Text,
StartWorkflowExecution -> Maybe Text
lambdaRole :: Prelude.Maybe Prelude.Text,
StartWorkflowExecution -> Maybe Text
input :: Prelude.Maybe Prelude.Text,
StartWorkflowExecution -> Maybe Text
executionStartToCloseTimeout :: Prelude.Maybe Prelude.Text,
StartWorkflowExecution -> Maybe TaskList
taskList :: Prelude.Maybe TaskList,
StartWorkflowExecution -> Maybe Text
taskPriority :: Prelude.Maybe Prelude.Text,
StartWorkflowExecution -> Maybe ChildPolicy
childPolicy :: Prelude.Maybe ChildPolicy,
StartWorkflowExecution -> Text
domain :: Prelude.Text,
StartWorkflowExecution -> Text
workflowId :: Prelude.Text,
StartWorkflowExecution -> WorkflowType
workflowType :: WorkflowType
}
deriving (StartWorkflowExecution -> StartWorkflowExecution -> Bool
(StartWorkflowExecution -> StartWorkflowExecution -> Bool)
-> (StartWorkflowExecution -> StartWorkflowExecution -> Bool)
-> Eq StartWorkflowExecution
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartWorkflowExecution -> StartWorkflowExecution -> Bool
$c/= :: StartWorkflowExecution -> StartWorkflowExecution -> Bool
== :: StartWorkflowExecution -> StartWorkflowExecution -> Bool
$c== :: StartWorkflowExecution -> StartWorkflowExecution -> Bool
Prelude.Eq, ReadPrec [StartWorkflowExecution]
ReadPrec StartWorkflowExecution
Int -> ReadS StartWorkflowExecution
ReadS [StartWorkflowExecution]
(Int -> ReadS StartWorkflowExecution)
-> ReadS [StartWorkflowExecution]
-> ReadPrec StartWorkflowExecution
-> ReadPrec [StartWorkflowExecution]
-> Read StartWorkflowExecution
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartWorkflowExecution]
$creadListPrec :: ReadPrec [StartWorkflowExecution]
readPrec :: ReadPrec StartWorkflowExecution
$creadPrec :: ReadPrec StartWorkflowExecution
readList :: ReadS [StartWorkflowExecution]
$creadList :: ReadS [StartWorkflowExecution]
readsPrec :: Int -> ReadS StartWorkflowExecution
$creadsPrec :: Int -> ReadS StartWorkflowExecution
Prelude.Read, Int -> StartWorkflowExecution -> ShowS
[StartWorkflowExecution] -> ShowS
StartWorkflowExecution -> String
(Int -> StartWorkflowExecution -> ShowS)
-> (StartWorkflowExecution -> String)
-> ([StartWorkflowExecution] -> ShowS)
-> Show StartWorkflowExecution
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartWorkflowExecution] -> ShowS
$cshowList :: [StartWorkflowExecution] -> ShowS
show :: StartWorkflowExecution -> String
$cshow :: StartWorkflowExecution -> String
showsPrec :: Int -> StartWorkflowExecution -> ShowS
$cshowsPrec :: Int -> StartWorkflowExecution -> ShowS
Prelude.Show, (forall x. StartWorkflowExecution -> Rep StartWorkflowExecution x)
-> (forall x.
Rep StartWorkflowExecution x -> StartWorkflowExecution)
-> Generic StartWorkflowExecution
forall x. Rep StartWorkflowExecution x -> StartWorkflowExecution
forall x. StartWorkflowExecution -> Rep StartWorkflowExecution x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep StartWorkflowExecution x -> StartWorkflowExecution
$cfrom :: forall x. StartWorkflowExecution -> Rep StartWorkflowExecution x
Prelude.Generic)
newStartWorkflowExecution ::
Prelude.Text ->
Prelude.Text ->
WorkflowType ->
StartWorkflowExecution
newStartWorkflowExecution :: Text -> Text -> WorkflowType -> StartWorkflowExecution
newStartWorkflowExecution
Text
pDomain_
Text
pWorkflowId_
WorkflowType
pWorkflowType_ =
StartWorkflowExecution' :: Maybe [Text]
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe TaskList
-> Maybe Text
-> Maybe ChildPolicy
-> Text
-> Text
-> WorkflowType
-> StartWorkflowExecution
StartWorkflowExecution'
{ $sel:tagList:StartWorkflowExecution' :: Maybe [Text]
tagList = Maybe [Text]
forall a. Maybe a
Prelude.Nothing,
$sel:taskStartToCloseTimeout:StartWorkflowExecution' :: Maybe Text
taskStartToCloseTimeout = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:lambdaRole:StartWorkflowExecution' :: Maybe Text
lambdaRole = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:input:StartWorkflowExecution' :: Maybe Text
input = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:executionStartToCloseTimeout:StartWorkflowExecution' :: Maybe Text
executionStartToCloseTimeout = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:taskList:StartWorkflowExecution' :: Maybe TaskList
taskList = Maybe TaskList
forall a. Maybe a
Prelude.Nothing,
$sel:taskPriority:StartWorkflowExecution' :: Maybe Text
taskPriority = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:childPolicy:StartWorkflowExecution' :: Maybe ChildPolicy
childPolicy = Maybe ChildPolicy
forall a. Maybe a
Prelude.Nothing,
$sel:domain:StartWorkflowExecution' :: Text
domain = Text
pDomain_,
$sel:workflowId:StartWorkflowExecution' :: Text
workflowId = Text
pWorkflowId_,
$sel:workflowType:StartWorkflowExecution' :: WorkflowType
workflowType = WorkflowType
pWorkflowType_
}
startWorkflowExecution_tagList :: Lens.Lens' StartWorkflowExecution (Prelude.Maybe [Prelude.Text])
startWorkflowExecution_tagList :: (Maybe [Text] -> f (Maybe [Text]))
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_tagList = (StartWorkflowExecution -> Maybe [Text])
-> (StartWorkflowExecution
-> Maybe [Text] -> StartWorkflowExecution)
-> Lens
StartWorkflowExecution
StartWorkflowExecution
(Maybe [Text])
(Maybe [Text])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Maybe [Text]
tagList :: Maybe [Text]
$sel:tagList:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe [Text]
tagList} -> Maybe [Text]
tagList) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Maybe [Text]
a -> StartWorkflowExecution
s {$sel:tagList:StartWorkflowExecution' :: Maybe [Text]
tagList = Maybe [Text]
a} :: StartWorkflowExecution) ((Maybe [Text] -> f (Maybe [Text]))
-> StartWorkflowExecution -> f StartWorkflowExecution)
-> ((Maybe [Text] -> f (Maybe [Text]))
-> Maybe [Text] -> f (Maybe [Text]))
-> (Maybe [Text] -> f (Maybe [Text]))
-> StartWorkflowExecution
-> f StartWorkflowExecution
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Text] [Text] [Text] [Text]
-> Iso (Maybe [Text]) (Maybe [Text]) (Maybe [Text]) (Maybe [Text])
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 [Text] [Text] [Text] [Text]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
startWorkflowExecution_taskStartToCloseTimeout :: Lens.Lens' StartWorkflowExecution (Prelude.Maybe Prelude.Text)
startWorkflowExecution_taskStartToCloseTimeout :: (Maybe Text -> f (Maybe Text))
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_taskStartToCloseTimeout = (StartWorkflowExecution -> Maybe Text)
-> (StartWorkflowExecution -> Maybe Text -> StartWorkflowExecution)
-> Lens
StartWorkflowExecution
StartWorkflowExecution
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Maybe Text
taskStartToCloseTimeout :: Maybe Text
$sel:taskStartToCloseTimeout:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
taskStartToCloseTimeout} -> Maybe Text
taskStartToCloseTimeout) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Maybe Text
a -> StartWorkflowExecution
s {$sel:taskStartToCloseTimeout:StartWorkflowExecution' :: Maybe Text
taskStartToCloseTimeout = Maybe Text
a} :: StartWorkflowExecution)
startWorkflowExecution_lambdaRole :: Lens.Lens' StartWorkflowExecution (Prelude.Maybe Prelude.Text)
startWorkflowExecution_lambdaRole :: (Maybe Text -> f (Maybe Text))
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_lambdaRole = (StartWorkflowExecution -> Maybe Text)
-> (StartWorkflowExecution -> Maybe Text -> StartWorkflowExecution)
-> Lens
StartWorkflowExecution
StartWorkflowExecution
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Maybe Text
lambdaRole :: Maybe Text
$sel:lambdaRole:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
lambdaRole} -> Maybe Text
lambdaRole) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Maybe Text
a -> StartWorkflowExecution
s {$sel:lambdaRole:StartWorkflowExecution' :: Maybe Text
lambdaRole = Maybe Text
a} :: StartWorkflowExecution)
startWorkflowExecution_input :: Lens.Lens' StartWorkflowExecution (Prelude.Maybe Prelude.Text)
startWorkflowExecution_input :: (Maybe Text -> f (Maybe Text))
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_input = (StartWorkflowExecution -> Maybe Text)
-> (StartWorkflowExecution -> Maybe Text -> StartWorkflowExecution)
-> Lens
StartWorkflowExecution
StartWorkflowExecution
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Maybe Text
input :: Maybe Text
$sel:input:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
input} -> Maybe Text
input) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Maybe Text
a -> StartWorkflowExecution
s {$sel:input:StartWorkflowExecution' :: Maybe Text
input = Maybe Text
a} :: StartWorkflowExecution)
startWorkflowExecution_executionStartToCloseTimeout :: Lens.Lens' StartWorkflowExecution (Prelude.Maybe Prelude.Text)
startWorkflowExecution_executionStartToCloseTimeout :: (Maybe Text -> f (Maybe Text))
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_executionStartToCloseTimeout = (StartWorkflowExecution -> Maybe Text)
-> (StartWorkflowExecution -> Maybe Text -> StartWorkflowExecution)
-> Lens
StartWorkflowExecution
StartWorkflowExecution
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Maybe Text
executionStartToCloseTimeout :: Maybe Text
$sel:executionStartToCloseTimeout:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
executionStartToCloseTimeout} -> Maybe Text
executionStartToCloseTimeout) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Maybe Text
a -> StartWorkflowExecution
s {$sel:executionStartToCloseTimeout:StartWorkflowExecution' :: Maybe Text
executionStartToCloseTimeout = Maybe Text
a} :: StartWorkflowExecution)
startWorkflowExecution_taskList :: Lens.Lens' StartWorkflowExecution (Prelude.Maybe TaskList)
startWorkflowExecution_taskList :: (Maybe TaskList -> f (Maybe TaskList))
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_taskList = (StartWorkflowExecution -> Maybe TaskList)
-> (StartWorkflowExecution
-> Maybe TaskList -> StartWorkflowExecution)
-> Lens
StartWorkflowExecution
StartWorkflowExecution
(Maybe TaskList)
(Maybe TaskList)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Maybe TaskList
taskList :: Maybe TaskList
$sel:taskList:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe TaskList
taskList} -> Maybe TaskList
taskList) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Maybe TaskList
a -> StartWorkflowExecution
s {$sel:taskList:StartWorkflowExecution' :: Maybe TaskList
taskList = Maybe TaskList
a} :: StartWorkflowExecution)
startWorkflowExecution_taskPriority :: Lens.Lens' StartWorkflowExecution (Prelude.Maybe Prelude.Text)
startWorkflowExecution_taskPriority :: (Maybe Text -> f (Maybe Text))
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_taskPriority = (StartWorkflowExecution -> Maybe Text)
-> (StartWorkflowExecution -> Maybe Text -> StartWorkflowExecution)
-> Lens
StartWorkflowExecution
StartWorkflowExecution
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Maybe Text
taskPriority :: Maybe Text
$sel:taskPriority:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
taskPriority} -> Maybe Text
taskPriority) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Maybe Text
a -> StartWorkflowExecution
s {$sel:taskPriority:StartWorkflowExecution' :: Maybe Text
taskPriority = Maybe Text
a} :: StartWorkflowExecution)
startWorkflowExecution_childPolicy :: Lens.Lens' StartWorkflowExecution (Prelude.Maybe ChildPolicy)
startWorkflowExecution_childPolicy :: (Maybe ChildPolicy -> f (Maybe ChildPolicy))
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_childPolicy = (StartWorkflowExecution -> Maybe ChildPolicy)
-> (StartWorkflowExecution
-> Maybe ChildPolicy -> StartWorkflowExecution)
-> Lens
StartWorkflowExecution
StartWorkflowExecution
(Maybe ChildPolicy)
(Maybe ChildPolicy)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Maybe ChildPolicy
childPolicy :: Maybe ChildPolicy
$sel:childPolicy:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe ChildPolicy
childPolicy} -> Maybe ChildPolicy
childPolicy) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Maybe ChildPolicy
a -> StartWorkflowExecution
s {$sel:childPolicy:StartWorkflowExecution' :: Maybe ChildPolicy
childPolicy = Maybe ChildPolicy
a} :: StartWorkflowExecution)
startWorkflowExecution_domain :: Lens.Lens' StartWorkflowExecution Prelude.Text
startWorkflowExecution_domain :: (Text -> f Text)
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_domain = (StartWorkflowExecution -> Text)
-> (StartWorkflowExecution -> Text -> StartWorkflowExecution)
-> Lens StartWorkflowExecution StartWorkflowExecution Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Text
domain :: Text
$sel:domain:StartWorkflowExecution' :: StartWorkflowExecution -> Text
domain} -> Text
domain) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Text
a -> StartWorkflowExecution
s {$sel:domain:StartWorkflowExecution' :: Text
domain = Text
a} :: StartWorkflowExecution)
startWorkflowExecution_workflowId :: Lens.Lens' StartWorkflowExecution Prelude.Text
startWorkflowExecution_workflowId :: (Text -> f Text)
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_workflowId = (StartWorkflowExecution -> Text)
-> (StartWorkflowExecution -> Text -> StartWorkflowExecution)
-> Lens StartWorkflowExecution StartWorkflowExecution Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {Text
workflowId :: Text
$sel:workflowId:StartWorkflowExecution' :: StartWorkflowExecution -> Text
workflowId} -> Text
workflowId) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} Text
a -> StartWorkflowExecution
s {$sel:workflowId:StartWorkflowExecution' :: Text
workflowId = Text
a} :: StartWorkflowExecution)
startWorkflowExecution_workflowType :: Lens.Lens' StartWorkflowExecution WorkflowType
startWorkflowExecution_workflowType :: (WorkflowType -> f WorkflowType)
-> StartWorkflowExecution -> f StartWorkflowExecution
startWorkflowExecution_workflowType = (StartWorkflowExecution -> WorkflowType)
-> (StartWorkflowExecution
-> WorkflowType -> StartWorkflowExecution)
-> Lens
StartWorkflowExecution
StartWorkflowExecution
WorkflowType
WorkflowType
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecution' {WorkflowType
workflowType :: WorkflowType
$sel:workflowType:StartWorkflowExecution' :: StartWorkflowExecution -> WorkflowType
workflowType} -> WorkflowType
workflowType) (\s :: StartWorkflowExecution
s@StartWorkflowExecution' {} WorkflowType
a -> StartWorkflowExecution
s {$sel:workflowType:StartWorkflowExecution' :: WorkflowType
workflowType = WorkflowType
a} :: StartWorkflowExecution)
instance Core.AWSRequest StartWorkflowExecution where
type
AWSResponse StartWorkflowExecution =
StartWorkflowExecutionResponse
request :: StartWorkflowExecution -> Request StartWorkflowExecution
request = Service -> StartWorkflowExecution -> Request StartWorkflowExecution
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy StartWorkflowExecution
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse StartWorkflowExecution)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse StartWorkflowExecution))
-> Logger
-> Service
-> Proxy StartWorkflowExecution
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse StartWorkflowExecution)))
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 -> StartWorkflowExecutionResponse
StartWorkflowExecutionResponse'
(Maybe Text -> Int -> StartWorkflowExecutionResponse)
-> Either String (Maybe Text)
-> Either String (Int -> StartWorkflowExecutionResponse)
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
"runId")
Either String (Int -> StartWorkflowExecutionResponse)
-> Either String Int
-> Either String StartWorkflowExecutionResponse
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 StartWorkflowExecution
instance Prelude.NFData StartWorkflowExecution
instance Core.ToHeaders StartWorkflowExecution where
toHeaders :: StartWorkflowExecution -> ResponseHeaders
toHeaders =
ResponseHeaders -> StartWorkflowExecution -> 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
"SimpleWorkflowService.StartWorkflowExecution" ::
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 StartWorkflowExecution where
toJSON :: StartWorkflowExecution -> Value
toJSON StartWorkflowExecution' {Maybe [Text]
Maybe Text
Maybe ChildPolicy
Maybe TaskList
Text
WorkflowType
workflowType :: WorkflowType
workflowId :: Text
domain :: Text
childPolicy :: Maybe ChildPolicy
taskPriority :: Maybe Text
taskList :: Maybe TaskList
executionStartToCloseTimeout :: Maybe Text
input :: Maybe Text
lambdaRole :: Maybe Text
taskStartToCloseTimeout :: Maybe Text
tagList :: Maybe [Text]
$sel:workflowType:StartWorkflowExecution' :: StartWorkflowExecution -> WorkflowType
$sel:workflowId:StartWorkflowExecution' :: StartWorkflowExecution -> Text
$sel:domain:StartWorkflowExecution' :: StartWorkflowExecution -> Text
$sel:childPolicy:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe ChildPolicy
$sel:taskPriority:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
$sel:taskList:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe TaskList
$sel:executionStartToCloseTimeout:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
$sel:input:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
$sel:lambdaRole:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
$sel:taskStartToCloseTimeout:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe Text
$sel:tagList:StartWorkflowExecution' :: StartWorkflowExecution -> Maybe [Text]
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"tagList" 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]
tagList,
(Text
"taskStartToCloseTimeout" 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
taskStartToCloseTimeout,
(Text
"lambdaRole" 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
lambdaRole,
(Text
"input" 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
input,
(Text
"executionStartToCloseTimeout" 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
executionStartToCloseTimeout,
(Text
"taskList" Text -> TaskList -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (TaskList -> Pair) -> Maybe TaskList -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe TaskList
taskList,
(Text
"taskPriority" 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
taskPriority,
(Text
"childPolicy" Text -> ChildPolicy -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (ChildPolicy -> Pair) -> Maybe ChildPolicy -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ChildPolicy
childPolicy,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"domain" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
domain),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"workflowId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
workflowId),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"workflowType" Text -> WorkflowType -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= WorkflowType
workflowType)
]
)
instance Core.ToPath StartWorkflowExecution where
toPath :: StartWorkflowExecution -> ByteString
toPath = ByteString -> StartWorkflowExecution -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery StartWorkflowExecution where
toQuery :: StartWorkflowExecution -> QueryString
toQuery = QueryString -> StartWorkflowExecution -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data StartWorkflowExecutionResponse = StartWorkflowExecutionResponse'
{
StartWorkflowExecutionResponse -> Maybe Text
runId :: Prelude.Maybe Prelude.Text,
StartWorkflowExecutionResponse -> Int
httpStatus :: Prelude.Int
}
deriving (StartWorkflowExecutionResponse
-> StartWorkflowExecutionResponse -> Bool
(StartWorkflowExecutionResponse
-> StartWorkflowExecutionResponse -> Bool)
-> (StartWorkflowExecutionResponse
-> StartWorkflowExecutionResponse -> Bool)
-> Eq StartWorkflowExecutionResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartWorkflowExecutionResponse
-> StartWorkflowExecutionResponse -> Bool
$c/= :: StartWorkflowExecutionResponse
-> StartWorkflowExecutionResponse -> Bool
== :: StartWorkflowExecutionResponse
-> StartWorkflowExecutionResponse -> Bool
$c== :: StartWorkflowExecutionResponse
-> StartWorkflowExecutionResponse -> Bool
Prelude.Eq, ReadPrec [StartWorkflowExecutionResponse]
ReadPrec StartWorkflowExecutionResponse
Int -> ReadS StartWorkflowExecutionResponse
ReadS [StartWorkflowExecutionResponse]
(Int -> ReadS StartWorkflowExecutionResponse)
-> ReadS [StartWorkflowExecutionResponse]
-> ReadPrec StartWorkflowExecutionResponse
-> ReadPrec [StartWorkflowExecutionResponse]
-> Read StartWorkflowExecutionResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartWorkflowExecutionResponse]
$creadListPrec :: ReadPrec [StartWorkflowExecutionResponse]
readPrec :: ReadPrec StartWorkflowExecutionResponse
$creadPrec :: ReadPrec StartWorkflowExecutionResponse
readList :: ReadS [StartWorkflowExecutionResponse]
$creadList :: ReadS [StartWorkflowExecutionResponse]
readsPrec :: Int -> ReadS StartWorkflowExecutionResponse
$creadsPrec :: Int -> ReadS StartWorkflowExecutionResponse
Prelude.Read, Int -> StartWorkflowExecutionResponse -> ShowS
[StartWorkflowExecutionResponse] -> ShowS
StartWorkflowExecutionResponse -> String
(Int -> StartWorkflowExecutionResponse -> ShowS)
-> (StartWorkflowExecutionResponse -> String)
-> ([StartWorkflowExecutionResponse] -> ShowS)
-> Show StartWorkflowExecutionResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartWorkflowExecutionResponse] -> ShowS
$cshowList :: [StartWorkflowExecutionResponse] -> ShowS
show :: StartWorkflowExecutionResponse -> String
$cshow :: StartWorkflowExecutionResponse -> String
showsPrec :: Int -> StartWorkflowExecutionResponse -> ShowS
$cshowsPrec :: Int -> StartWorkflowExecutionResponse -> ShowS
Prelude.Show, (forall x.
StartWorkflowExecutionResponse
-> Rep StartWorkflowExecutionResponse x)
-> (forall x.
Rep StartWorkflowExecutionResponse x
-> StartWorkflowExecutionResponse)
-> Generic StartWorkflowExecutionResponse
forall x.
Rep StartWorkflowExecutionResponse x
-> StartWorkflowExecutionResponse
forall x.
StartWorkflowExecutionResponse
-> Rep StartWorkflowExecutionResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep StartWorkflowExecutionResponse x
-> StartWorkflowExecutionResponse
$cfrom :: forall x.
StartWorkflowExecutionResponse
-> Rep StartWorkflowExecutionResponse x
Prelude.Generic)
newStartWorkflowExecutionResponse ::
Prelude.Int ->
StartWorkflowExecutionResponse
newStartWorkflowExecutionResponse :: Int -> StartWorkflowExecutionResponse
newStartWorkflowExecutionResponse Int
pHttpStatus_ =
StartWorkflowExecutionResponse' :: Maybe Text -> Int -> StartWorkflowExecutionResponse
StartWorkflowExecutionResponse'
{ $sel:runId:StartWorkflowExecutionResponse' :: Maybe Text
runId =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:StartWorkflowExecutionResponse' :: Int
httpStatus = Int
pHttpStatus_
}
startWorkflowExecutionResponse_runId :: Lens.Lens' StartWorkflowExecutionResponse (Prelude.Maybe Prelude.Text)
startWorkflowExecutionResponse_runId :: (Maybe Text -> f (Maybe Text))
-> StartWorkflowExecutionResponse
-> f StartWorkflowExecutionResponse
startWorkflowExecutionResponse_runId = (StartWorkflowExecutionResponse -> Maybe Text)
-> (StartWorkflowExecutionResponse
-> Maybe Text -> StartWorkflowExecutionResponse)
-> Lens
StartWorkflowExecutionResponse
StartWorkflowExecutionResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecutionResponse' {Maybe Text
runId :: Maybe Text
$sel:runId:StartWorkflowExecutionResponse' :: StartWorkflowExecutionResponse -> Maybe Text
runId} -> Maybe Text
runId) (\s :: StartWorkflowExecutionResponse
s@StartWorkflowExecutionResponse' {} Maybe Text
a -> StartWorkflowExecutionResponse
s {$sel:runId:StartWorkflowExecutionResponse' :: Maybe Text
runId = Maybe Text
a} :: StartWorkflowExecutionResponse)
startWorkflowExecutionResponse_httpStatus :: Lens.Lens' StartWorkflowExecutionResponse Prelude.Int
startWorkflowExecutionResponse_httpStatus :: (Int -> f Int)
-> StartWorkflowExecutionResponse
-> f StartWorkflowExecutionResponse
startWorkflowExecutionResponse_httpStatus = (StartWorkflowExecutionResponse -> Int)
-> (StartWorkflowExecutionResponse
-> Int -> StartWorkflowExecutionResponse)
-> Lens
StartWorkflowExecutionResponse
StartWorkflowExecutionResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartWorkflowExecutionResponse' {Int
httpStatus :: Int
$sel:httpStatus:StartWorkflowExecutionResponse' :: StartWorkflowExecutionResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: StartWorkflowExecutionResponse
s@StartWorkflowExecutionResponse' {} Int
a -> StartWorkflowExecutionResponse
s {$sel:httpStatus:StartWorkflowExecutionResponse' :: Int
httpStatus = Int
a} :: StartWorkflowExecutionResponse)
instance
Prelude.NFData
StartWorkflowExecutionResponse