{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.SWF.Types.StartChildWorkflowExecutionDecisionAttributes
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.SWF.Types.StartChildWorkflowExecutionDecisionAttributes where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import Amazonka.SWF.Types.ChildPolicy
import Amazonka.SWF.Types.TaskList
import Amazonka.SWF.Types.WorkflowType

-- | Provides the details of the @StartChildWorkflowExecution@ decision.
--
-- __Access Control__
--
-- You can use IAM policies to control this decision\'s access to Amazon
-- SWF resources as follows:
--
-- -   Use a @Resource@ element with the domain name to limit the action to
--     only specified domains.
--
-- -   Use an @Action@ element to allow or deny permission to call this
--     action.
--
-- -   Constrain the following parameters by using a @Condition@ element
--     with the appropriate keys.
--
--     -   @tagList.member.N@ – The key is \"swf:tagList.N\" where N is the
--         tag number from 0 to 4, inclusive.
--
--     -   @taskList@ – String constraint. The key is @swf:taskList.name@.
--
--     -   @workflowType.name@ – String constraint. The key is
--         @swf:workflowType.name@.
--
--     -   @workflowType.version@ – String constraint. The key is
--         @swf:workflowType.version@.
--
-- If the caller doesn\'t have sufficient permissions to invoke the action,
-- or the parameter values fall outside the specified constraints, the
-- action fails. The associated event attribute\'s @cause@ parameter is set
-- to @OPERATION_NOT_PERMITTED@. For details and example IAM policies, see
-- <https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html Using IAM to Manage Access to Amazon SWF Workflows>
-- in the /Amazon SWF Developer Guide/.
--
-- /See:/ 'newStartChildWorkflowExecutionDecisionAttributes' smart constructor.
data StartChildWorkflowExecutionDecisionAttributes = StartChildWorkflowExecutionDecisionAttributes'
  { -- | The data attached to the event that can be used by the decider in
    -- subsequent workflow tasks. This data isn\'t sent to the child workflow
    -- execution.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
control :: Prelude.Maybe Prelude.Text,
    -- | The list of tags to associate with the child workflow execution. A
    -- maximum of 5 tags can be specified. You can list workflow executions
    -- with a specific tag by calling ListOpenWorkflowExecutions or
    -- ListClosedWorkflowExecutions and specifying a TagFilter.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe [Text]
tagList :: Prelude.Maybe [Prelude.Text],
    -- | Specifies the maximum duration of decision tasks for this workflow
    -- execution. This parameter overrides the @defaultTaskStartToCloseTimout@
    -- specified when registering the workflow type using RegisterWorkflowType.
    --
    -- The duration is specified in seconds, an integer greater than or equal
    -- to @0@. You can use @NONE@ to specify unlimited duration.
    --
    -- A task start-to-close timeout for this workflow execution must be
    -- specified either as a default for the workflow type or through this
    -- parameter. If neither this parameter is set nor a default task
    -- start-to-close timeout was specified at registration time then a fault
    -- is returned.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
taskStartToCloseTimeout :: Prelude.Maybe Prelude.Text,
    -- | The IAM role attached to the child workflow execution.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
lambdaRole :: Prelude.Maybe Prelude.Text,
    -- | The input to be provided to the workflow execution.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
input :: Prelude.Maybe Prelude.Text,
    -- | The total duration for this workflow execution. This overrides the
    -- defaultExecutionStartToCloseTimeout specified when registering the
    -- workflow type.
    --
    -- The duration is specified in seconds, an integer greater than or equal
    -- to @0@. You can use @NONE@ to specify unlimited duration.
    --
    -- An execution start-to-close timeout for this workflow execution must be
    -- specified either as a default for the workflow type or through this
    -- parameter. If neither this parameter is set nor a default execution
    -- start-to-close timeout was specified at registration time then a fault
    -- is returned.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
executionStartToCloseTimeout :: Prelude.Maybe Prelude.Text,
    -- | The name of the task list to be used for decision tasks of the child
    -- workflow execution.
    --
    -- A task list for this workflow execution must be specified either as a
    -- default for the workflow type or through this parameter. If neither this
    -- parameter is set nor a default task list was specified at registration
    -- time then a fault is returned.
    --
    -- The specified string must not start or end with whitespace. It must not
    -- contain a @:@ (colon), @\/@ (slash), @|@ (vertical bar), or any control
    -- characters (@\\u0000-\\u001f@ | @\\u007f-\\u009f@). Also, it must not
    -- contain the literal string @arn@.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe TaskList
taskList :: Prelude.Maybe TaskList,
    -- | A task priority that, if set, specifies the priority for a decision task
    -- of this workflow execution. This overrides the defaultTaskPriority
    -- specified when registering the workflow type. Valid values are integers
    -- that range from Java\'s @Integer.MIN_VALUE@ (-2147483648) to
    -- @Integer.MAX_VALUE@ (2147483647). Higher numbers indicate higher
    -- priority.
    --
    -- For more information about setting task priority, see
    -- <https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html Setting Task Priority>
    -- in the /Amazon SWF Developer Guide/.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
taskPriority :: Prelude.Maybe Prelude.Text,
    -- | If set, specifies the policy to use for the child workflow executions if
    -- the workflow execution being started is terminated by calling the
    -- TerminateWorkflowExecution action explicitly or due to an expired
    -- timeout. This policy overrides the default child policy specified when
    -- registering the workflow type using RegisterWorkflowType.
    --
    -- The supported child policies are:
    --
    -- -   @TERMINATE@ – The child executions are terminated.
    --
    -- -   @REQUEST_CANCEL@ – A request to cancel is attempted for each child
    --     execution by recording a @WorkflowExecutionCancelRequested@ event in
    --     its history. It is up to the decider to take appropriate actions
    --     when it receives an execution history with this event.
    --
    -- -   @ABANDON@ – No action is taken. The child executions continue to
    --     run.
    --
    -- A child policy for this workflow execution must be specified either as a
    -- default for the workflow type or through this parameter. If neither this
    -- parameter is set nor a default child policy was specified at
    -- registration time then a fault is returned.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe ChildPolicy
childPolicy :: Prelude.Maybe ChildPolicy,
    -- | The type of the workflow execution to be started.
    StartChildWorkflowExecutionDecisionAttributes -> WorkflowType
workflowType :: WorkflowType,
    -- | The @workflowId@ of the workflow execution.
    --
    -- The specified string must not start or end with whitespace. It must not
    -- contain a @:@ (colon), @\/@ (slash), @|@ (vertical bar), or any control
    -- characters (@\\u0000-\\u001f@ | @\\u007f-\\u009f@). Also, it must not
    -- contain the literal string @arn@.
    StartChildWorkflowExecutionDecisionAttributes -> Text
workflowId :: Prelude.Text
  }
  deriving (StartChildWorkflowExecutionDecisionAttributes
-> StartChildWorkflowExecutionDecisionAttributes -> Bool
(StartChildWorkflowExecutionDecisionAttributes
 -> StartChildWorkflowExecutionDecisionAttributes -> Bool)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> StartChildWorkflowExecutionDecisionAttributes -> Bool)
-> Eq StartChildWorkflowExecutionDecisionAttributes
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartChildWorkflowExecutionDecisionAttributes
-> StartChildWorkflowExecutionDecisionAttributes -> Bool
$c/= :: StartChildWorkflowExecutionDecisionAttributes
-> StartChildWorkflowExecutionDecisionAttributes -> Bool
== :: StartChildWorkflowExecutionDecisionAttributes
-> StartChildWorkflowExecutionDecisionAttributes -> Bool
$c== :: StartChildWorkflowExecutionDecisionAttributes
-> StartChildWorkflowExecutionDecisionAttributes -> Bool
Prelude.Eq, ReadPrec [StartChildWorkflowExecutionDecisionAttributes]
ReadPrec StartChildWorkflowExecutionDecisionAttributes
Int -> ReadS StartChildWorkflowExecutionDecisionAttributes
ReadS [StartChildWorkflowExecutionDecisionAttributes]
(Int -> ReadS StartChildWorkflowExecutionDecisionAttributes)
-> ReadS [StartChildWorkflowExecutionDecisionAttributes]
-> ReadPrec StartChildWorkflowExecutionDecisionAttributes
-> ReadPrec [StartChildWorkflowExecutionDecisionAttributes]
-> Read StartChildWorkflowExecutionDecisionAttributes
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartChildWorkflowExecutionDecisionAttributes]
$creadListPrec :: ReadPrec [StartChildWorkflowExecutionDecisionAttributes]
readPrec :: ReadPrec StartChildWorkflowExecutionDecisionAttributes
$creadPrec :: ReadPrec StartChildWorkflowExecutionDecisionAttributes
readList :: ReadS [StartChildWorkflowExecutionDecisionAttributes]
$creadList :: ReadS [StartChildWorkflowExecutionDecisionAttributes]
readsPrec :: Int -> ReadS StartChildWorkflowExecutionDecisionAttributes
$creadsPrec :: Int -> ReadS StartChildWorkflowExecutionDecisionAttributes
Prelude.Read, Int -> StartChildWorkflowExecutionDecisionAttributes -> ShowS
[StartChildWorkflowExecutionDecisionAttributes] -> ShowS
StartChildWorkflowExecutionDecisionAttributes -> String
(Int -> StartChildWorkflowExecutionDecisionAttributes -> ShowS)
-> (StartChildWorkflowExecutionDecisionAttributes -> String)
-> ([StartChildWorkflowExecutionDecisionAttributes] -> ShowS)
-> Show StartChildWorkflowExecutionDecisionAttributes
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartChildWorkflowExecutionDecisionAttributes] -> ShowS
$cshowList :: [StartChildWorkflowExecutionDecisionAttributes] -> ShowS
show :: StartChildWorkflowExecutionDecisionAttributes -> String
$cshow :: StartChildWorkflowExecutionDecisionAttributes -> String
showsPrec :: Int -> StartChildWorkflowExecutionDecisionAttributes -> ShowS
$cshowsPrec :: Int -> StartChildWorkflowExecutionDecisionAttributes -> ShowS
Prelude.Show, (forall x.
 StartChildWorkflowExecutionDecisionAttributes
 -> Rep StartChildWorkflowExecutionDecisionAttributes x)
-> (forall x.
    Rep StartChildWorkflowExecutionDecisionAttributes x
    -> StartChildWorkflowExecutionDecisionAttributes)
-> Generic StartChildWorkflowExecutionDecisionAttributes
forall x.
Rep StartChildWorkflowExecutionDecisionAttributes x
-> StartChildWorkflowExecutionDecisionAttributes
forall x.
StartChildWorkflowExecutionDecisionAttributes
-> Rep StartChildWorkflowExecutionDecisionAttributes x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep StartChildWorkflowExecutionDecisionAttributes x
-> StartChildWorkflowExecutionDecisionAttributes
$cfrom :: forall x.
StartChildWorkflowExecutionDecisionAttributes
-> Rep StartChildWorkflowExecutionDecisionAttributes x
Prelude.Generic)

-- |
-- Create a value of 'StartChildWorkflowExecutionDecisionAttributes' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'control', 'startChildWorkflowExecutionDecisionAttributes_control' - The data attached to the event that can be used by the decider in
-- subsequent workflow tasks. This data isn\'t sent to the child workflow
-- execution.
--
-- 'tagList', 'startChildWorkflowExecutionDecisionAttributes_tagList' - The list of tags to associate with the child workflow execution. A
-- maximum of 5 tags can be specified. You can list workflow executions
-- with a specific tag by calling ListOpenWorkflowExecutions or
-- ListClosedWorkflowExecutions and specifying a TagFilter.
--
-- 'taskStartToCloseTimeout', 'startChildWorkflowExecutionDecisionAttributes_taskStartToCloseTimeout' - Specifies the maximum duration of decision tasks for this workflow
-- execution. This parameter overrides the @defaultTaskStartToCloseTimout@
-- specified when registering the workflow type using RegisterWorkflowType.
--
-- The duration is specified in seconds, an integer greater than or equal
-- to @0@. You can use @NONE@ to specify unlimited duration.
--
-- A task start-to-close timeout for this workflow execution must be
-- specified either as a default for the workflow type or through this
-- parameter. If neither this parameter is set nor a default task
-- start-to-close timeout was specified at registration time then a fault
-- is returned.
--
-- 'lambdaRole', 'startChildWorkflowExecutionDecisionAttributes_lambdaRole' - The IAM role attached to the child workflow execution.
--
-- 'input', 'startChildWorkflowExecutionDecisionAttributes_input' - The input to be provided to the workflow execution.
--
-- 'executionStartToCloseTimeout', 'startChildWorkflowExecutionDecisionAttributes_executionStartToCloseTimeout' - The total duration for this workflow execution. This overrides the
-- defaultExecutionStartToCloseTimeout specified when registering the
-- workflow type.
--
-- The duration is specified in seconds, an integer greater than or equal
-- to @0@. You can use @NONE@ to specify unlimited duration.
--
-- An execution start-to-close timeout for this workflow execution must be
-- specified either as a default for the workflow type or through this
-- parameter. If neither this parameter is set nor a default execution
-- start-to-close timeout was specified at registration time then a fault
-- is returned.
--
-- 'taskList', 'startChildWorkflowExecutionDecisionAttributes_taskList' - The name of the task list to be used for decision tasks of the child
-- workflow execution.
--
-- A task list for this workflow execution must be specified either as a
-- default for the workflow type or through this parameter. If neither this
-- parameter is set nor a default task list was specified at registration
-- time then a fault is returned.
--
-- The specified string must not start or end with whitespace. It must not
-- contain a @:@ (colon), @\/@ (slash), @|@ (vertical bar), or any control
-- characters (@\\u0000-\\u001f@ | @\\u007f-\\u009f@). Also, it must not
-- contain the literal string @arn@.
--
-- 'taskPriority', 'startChildWorkflowExecutionDecisionAttributes_taskPriority' - A task priority that, if set, specifies the priority for a decision task
-- of this workflow execution. This overrides the defaultTaskPriority
-- specified when registering the workflow type. Valid values are integers
-- that range from Java\'s @Integer.MIN_VALUE@ (-2147483648) to
-- @Integer.MAX_VALUE@ (2147483647). Higher numbers indicate higher
-- priority.
--
-- For more information about setting task priority, see
-- <https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html Setting Task Priority>
-- in the /Amazon SWF Developer Guide/.
--
-- 'childPolicy', 'startChildWorkflowExecutionDecisionAttributes_childPolicy' - If set, specifies the policy to use for the child workflow executions if
-- the workflow execution being started is terminated by calling the
-- TerminateWorkflowExecution action explicitly or due to an expired
-- timeout. This policy overrides the default child policy specified when
-- registering the workflow type using RegisterWorkflowType.
--
-- The supported child policies are:
--
-- -   @TERMINATE@ – The child executions are terminated.
--
-- -   @REQUEST_CANCEL@ – A request to cancel is attempted for each child
--     execution by recording a @WorkflowExecutionCancelRequested@ event in
--     its history. It is up to the decider to take appropriate actions
--     when it receives an execution history with this event.
--
-- -   @ABANDON@ – No action is taken. The child executions continue to
--     run.
--
-- A child policy for this workflow execution must be specified either as a
-- default for the workflow type or through this parameter. If neither this
-- parameter is set nor a default child policy was specified at
-- registration time then a fault is returned.
--
-- 'workflowType', 'startChildWorkflowExecutionDecisionAttributes_workflowType' - The type of the workflow execution to be started.
--
-- 'workflowId', 'startChildWorkflowExecutionDecisionAttributes_workflowId' - The @workflowId@ of the workflow execution.
--
-- The specified string must not start or end with whitespace. It must not
-- contain a @:@ (colon), @\/@ (slash), @|@ (vertical bar), or any control
-- characters (@\\u0000-\\u001f@ | @\\u007f-\\u009f@). Also, it must not
-- contain the literal string @arn@.
newStartChildWorkflowExecutionDecisionAttributes ::
  -- | 'workflowType'
  WorkflowType ->
  -- | 'workflowId'
  Prelude.Text ->
  StartChildWorkflowExecutionDecisionAttributes
newStartChildWorkflowExecutionDecisionAttributes :: WorkflowType
-> Text -> StartChildWorkflowExecutionDecisionAttributes
newStartChildWorkflowExecutionDecisionAttributes
  WorkflowType
pWorkflowType_
  Text
pWorkflowId_ =
    StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
-> Maybe [Text]
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe TaskList
-> Maybe Text
-> Maybe ChildPolicy
-> WorkflowType
-> Text
-> StartChildWorkflowExecutionDecisionAttributes
StartChildWorkflowExecutionDecisionAttributes'
      { $sel:control:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
control =
          Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:tagList:StartChildWorkflowExecutionDecisionAttributes' :: Maybe [Text]
tagList = Maybe [Text]
forall a. Maybe a
Prelude.Nothing,
        $sel:taskStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
taskStartToCloseTimeout =
          Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:lambdaRole:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
lambdaRole = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:input:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
input = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:executionStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
executionStartToCloseTimeout =
          Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:taskList:StartChildWorkflowExecutionDecisionAttributes' :: Maybe TaskList
taskList = Maybe TaskList
forall a. Maybe a
Prelude.Nothing,
        $sel:taskPriority:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
taskPriority =
          Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:childPolicy:StartChildWorkflowExecutionDecisionAttributes' :: Maybe ChildPolicy
childPolicy =
          Maybe ChildPolicy
forall a. Maybe a
Prelude.Nothing,
        $sel:workflowType:StartChildWorkflowExecutionDecisionAttributes' :: WorkflowType
workflowType =
          WorkflowType
pWorkflowType_,
        $sel:workflowId:StartChildWorkflowExecutionDecisionAttributes' :: Text
workflowId = Text
pWorkflowId_
      }

-- | The data attached to the event that can be used by the decider in
-- subsequent workflow tasks. This data isn\'t sent to the child workflow
-- execution.
startChildWorkflowExecutionDecisionAttributes_control :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe Prelude.Text)
startChildWorkflowExecutionDecisionAttributes_control :: (Maybe Text -> f (Maybe Text))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_control = (StartChildWorkflowExecutionDecisionAttributes -> Maybe Text)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Maybe Text -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Maybe Text
control :: Maybe Text
$sel:control:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
control} -> Maybe Text
control) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Maybe Text
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:control:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
control = Maybe Text
a} :: StartChildWorkflowExecutionDecisionAttributes)

-- | The list of tags to associate with the child workflow execution. A
-- maximum of 5 tags can be specified. You can list workflow executions
-- with a specific tag by calling ListOpenWorkflowExecutions or
-- ListClosedWorkflowExecutions and specifying a TagFilter.
startChildWorkflowExecutionDecisionAttributes_tagList :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe [Prelude.Text])
startChildWorkflowExecutionDecisionAttributes_tagList :: (Maybe [Text] -> f (Maybe [Text]))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_tagList = (StartChildWorkflowExecutionDecisionAttributes -> Maybe [Text])
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Maybe [Text] -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     (Maybe [Text])
     (Maybe [Text])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Maybe [Text]
tagList :: Maybe [Text]
$sel:tagList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe [Text]
tagList} -> Maybe [Text]
tagList) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Maybe [Text]
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:tagList:StartChildWorkflowExecutionDecisionAttributes' :: Maybe [Text]
tagList = Maybe [Text]
a} :: StartChildWorkflowExecutionDecisionAttributes) ((Maybe [Text] -> f (Maybe [Text]))
 -> StartChildWorkflowExecutionDecisionAttributes
 -> f StartChildWorkflowExecutionDecisionAttributes)
-> ((Maybe [Text] -> f (Maybe [Text]))
    -> Maybe [Text] -> f (Maybe [Text]))
-> (Maybe [Text] -> f (Maybe [Text]))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
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

-- | Specifies the maximum duration of decision tasks for this workflow
-- execution. This parameter overrides the @defaultTaskStartToCloseTimout@
-- specified when registering the workflow type using RegisterWorkflowType.
--
-- The duration is specified in seconds, an integer greater than or equal
-- to @0@. You can use @NONE@ to specify unlimited duration.
--
-- A task start-to-close timeout for this workflow execution must be
-- specified either as a default for the workflow type or through this
-- parameter. If neither this parameter is set nor a default task
-- start-to-close timeout was specified at registration time then a fault
-- is returned.
startChildWorkflowExecutionDecisionAttributes_taskStartToCloseTimeout :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe Prelude.Text)
startChildWorkflowExecutionDecisionAttributes_taskStartToCloseTimeout :: (Maybe Text -> f (Maybe Text))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_taskStartToCloseTimeout = (StartChildWorkflowExecutionDecisionAttributes -> Maybe Text)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Maybe Text -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Maybe Text
taskStartToCloseTimeout :: Maybe Text
$sel:taskStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
taskStartToCloseTimeout} -> Maybe Text
taskStartToCloseTimeout) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Maybe Text
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:taskStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
taskStartToCloseTimeout = Maybe Text
a} :: StartChildWorkflowExecutionDecisionAttributes)

-- | The IAM role attached to the child workflow execution.
startChildWorkflowExecutionDecisionAttributes_lambdaRole :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe Prelude.Text)
startChildWorkflowExecutionDecisionAttributes_lambdaRole :: (Maybe Text -> f (Maybe Text))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_lambdaRole = (StartChildWorkflowExecutionDecisionAttributes -> Maybe Text)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Maybe Text -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Maybe Text
lambdaRole :: Maybe Text
$sel:lambdaRole:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
lambdaRole} -> Maybe Text
lambdaRole) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Maybe Text
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:lambdaRole:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
lambdaRole = Maybe Text
a} :: StartChildWorkflowExecutionDecisionAttributes)

-- | The input to be provided to the workflow execution.
startChildWorkflowExecutionDecisionAttributes_input :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe Prelude.Text)
startChildWorkflowExecutionDecisionAttributes_input :: (Maybe Text -> f (Maybe Text))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_input = (StartChildWorkflowExecutionDecisionAttributes -> Maybe Text)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Maybe Text -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Maybe Text
input :: Maybe Text
$sel:input:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
input} -> Maybe Text
input) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Maybe Text
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:input:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
input = Maybe Text
a} :: StartChildWorkflowExecutionDecisionAttributes)

-- | The total duration for this workflow execution. This overrides the
-- defaultExecutionStartToCloseTimeout specified when registering the
-- workflow type.
--
-- The duration is specified in seconds, an integer greater than or equal
-- to @0@. You can use @NONE@ to specify unlimited duration.
--
-- An execution start-to-close timeout for this workflow execution must be
-- specified either as a default for the workflow type or through this
-- parameter. If neither this parameter is set nor a default execution
-- start-to-close timeout was specified at registration time then a fault
-- is returned.
startChildWorkflowExecutionDecisionAttributes_executionStartToCloseTimeout :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe Prelude.Text)
startChildWorkflowExecutionDecisionAttributes_executionStartToCloseTimeout :: (Maybe Text -> f (Maybe Text))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_executionStartToCloseTimeout = (StartChildWorkflowExecutionDecisionAttributes -> Maybe Text)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Maybe Text -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Maybe Text
executionStartToCloseTimeout :: Maybe Text
$sel:executionStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
executionStartToCloseTimeout} -> Maybe Text
executionStartToCloseTimeout) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Maybe Text
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:executionStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
executionStartToCloseTimeout = Maybe Text
a} :: StartChildWorkflowExecutionDecisionAttributes)

-- | The name of the task list to be used for decision tasks of the child
-- workflow execution.
--
-- A task list for this workflow execution must be specified either as a
-- default for the workflow type or through this parameter. If neither this
-- parameter is set nor a default task list was specified at registration
-- time then a fault is returned.
--
-- The specified string must not start or end with whitespace. It must not
-- contain a @:@ (colon), @\/@ (slash), @|@ (vertical bar), or any control
-- characters (@\\u0000-\\u001f@ | @\\u007f-\\u009f@). Also, it must not
-- contain the literal string @arn@.
startChildWorkflowExecutionDecisionAttributes_taskList :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe TaskList)
startChildWorkflowExecutionDecisionAttributes_taskList :: (Maybe TaskList -> f (Maybe TaskList))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_taskList = (StartChildWorkflowExecutionDecisionAttributes -> Maybe TaskList)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Maybe TaskList -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     (Maybe TaskList)
     (Maybe TaskList)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Maybe TaskList
taskList :: Maybe TaskList
$sel:taskList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe TaskList
taskList} -> Maybe TaskList
taskList) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Maybe TaskList
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:taskList:StartChildWorkflowExecutionDecisionAttributes' :: Maybe TaskList
taskList = Maybe TaskList
a} :: StartChildWorkflowExecutionDecisionAttributes)

-- | A task priority that, if set, specifies the priority for a decision task
-- of this workflow execution. This overrides the defaultTaskPriority
-- specified when registering the workflow type. Valid values are integers
-- that range from Java\'s @Integer.MIN_VALUE@ (-2147483648) to
-- @Integer.MAX_VALUE@ (2147483647). Higher numbers indicate higher
-- priority.
--
-- For more information about setting task priority, see
-- <https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html Setting Task Priority>
-- in the /Amazon SWF Developer Guide/.
startChildWorkflowExecutionDecisionAttributes_taskPriority :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe Prelude.Text)
startChildWorkflowExecutionDecisionAttributes_taskPriority :: (Maybe Text -> f (Maybe Text))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_taskPriority = (StartChildWorkflowExecutionDecisionAttributes -> Maybe Text)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Maybe Text -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Maybe Text
taskPriority :: Maybe Text
$sel:taskPriority:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
taskPriority} -> Maybe Text
taskPriority) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Maybe Text
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:taskPriority:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
taskPriority = Maybe Text
a} :: StartChildWorkflowExecutionDecisionAttributes)

-- | If set, specifies the policy to use for the child workflow executions if
-- the workflow execution being started is terminated by calling the
-- TerminateWorkflowExecution action explicitly or due to an expired
-- timeout. This policy overrides the default child policy specified when
-- registering the workflow type using RegisterWorkflowType.
--
-- The supported child policies are:
--
-- -   @TERMINATE@ – The child executions are terminated.
--
-- -   @REQUEST_CANCEL@ – A request to cancel is attempted for each child
--     execution by recording a @WorkflowExecutionCancelRequested@ event in
--     its history. It is up to the decider to take appropriate actions
--     when it receives an execution history with this event.
--
-- -   @ABANDON@ – No action is taken. The child executions continue to
--     run.
--
-- A child policy for this workflow execution must be specified either as a
-- default for the workflow type or through this parameter. If neither this
-- parameter is set nor a default child policy was specified at
-- registration time then a fault is returned.
startChildWorkflowExecutionDecisionAttributes_childPolicy :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe ChildPolicy)
startChildWorkflowExecutionDecisionAttributes_childPolicy :: (Maybe ChildPolicy -> f (Maybe ChildPolicy))
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_childPolicy = (StartChildWorkflowExecutionDecisionAttributes
 -> Maybe ChildPolicy)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Maybe ChildPolicy
    -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     (Maybe ChildPolicy)
     (Maybe ChildPolicy)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Maybe ChildPolicy
childPolicy :: Maybe ChildPolicy
$sel:childPolicy:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe ChildPolicy
childPolicy} -> Maybe ChildPolicy
childPolicy) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Maybe ChildPolicy
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:childPolicy:StartChildWorkflowExecutionDecisionAttributes' :: Maybe ChildPolicy
childPolicy = Maybe ChildPolicy
a} :: StartChildWorkflowExecutionDecisionAttributes)

-- | The type of the workflow execution to be started.
startChildWorkflowExecutionDecisionAttributes_workflowType :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes WorkflowType
startChildWorkflowExecutionDecisionAttributes_workflowType :: (WorkflowType -> f WorkflowType)
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_workflowType = (StartChildWorkflowExecutionDecisionAttributes -> WorkflowType)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> WorkflowType -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     WorkflowType
     WorkflowType
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {WorkflowType
workflowType :: WorkflowType
$sel:workflowType:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> WorkflowType
workflowType} -> WorkflowType
workflowType) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} WorkflowType
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:workflowType:StartChildWorkflowExecutionDecisionAttributes' :: WorkflowType
workflowType = WorkflowType
a} :: StartChildWorkflowExecutionDecisionAttributes)

-- | The @workflowId@ of the workflow execution.
--
-- The specified string must not start or end with whitespace. It must not
-- contain a @:@ (colon), @\/@ (slash), @|@ (vertical bar), or any control
-- characters (@\\u0000-\\u001f@ | @\\u007f-\\u009f@). Also, it must not
-- contain the literal string @arn@.
startChildWorkflowExecutionDecisionAttributes_workflowId :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes Prelude.Text
startChildWorkflowExecutionDecisionAttributes_workflowId :: (Text -> f Text)
-> StartChildWorkflowExecutionDecisionAttributes
-> f StartChildWorkflowExecutionDecisionAttributes
startChildWorkflowExecutionDecisionAttributes_workflowId = (StartChildWorkflowExecutionDecisionAttributes -> Text)
-> (StartChildWorkflowExecutionDecisionAttributes
    -> Text -> StartChildWorkflowExecutionDecisionAttributes)
-> Lens
     StartChildWorkflowExecutionDecisionAttributes
     StartChildWorkflowExecutionDecisionAttributes
     Text
     Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartChildWorkflowExecutionDecisionAttributes' {Text
workflowId :: Text
$sel:workflowId:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Text
workflowId} -> Text
workflowId) (\s :: StartChildWorkflowExecutionDecisionAttributes
s@StartChildWorkflowExecutionDecisionAttributes' {} Text
a -> StartChildWorkflowExecutionDecisionAttributes
s {$sel:workflowId:StartChildWorkflowExecutionDecisionAttributes' :: Text
workflowId = Text
a} :: StartChildWorkflowExecutionDecisionAttributes)

instance
  Prelude.Hashable
    StartChildWorkflowExecutionDecisionAttributes

instance
  Prelude.NFData
    StartChildWorkflowExecutionDecisionAttributes

instance
  Core.ToJSON
    StartChildWorkflowExecutionDecisionAttributes
  where
  toJSON :: StartChildWorkflowExecutionDecisionAttributes -> Value
toJSON
    StartChildWorkflowExecutionDecisionAttributes' {Maybe [Text]
Maybe Text
Maybe ChildPolicy
Maybe TaskList
Text
WorkflowType
workflowId :: Text
workflowType :: WorkflowType
childPolicy :: Maybe ChildPolicy
taskPriority :: Maybe Text
taskList :: Maybe TaskList
executionStartToCloseTimeout :: Maybe Text
input :: Maybe Text
lambdaRole :: Maybe Text
taskStartToCloseTimeout :: Maybe Text
tagList :: Maybe [Text]
control :: Maybe Text
$sel:workflowId:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Text
$sel:workflowType:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> WorkflowType
$sel:childPolicy:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe ChildPolicy
$sel:taskPriority:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:taskList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe TaskList
$sel:executionStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:input:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:lambdaRole:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:taskStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:tagList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe [Text]
$sel:control:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
..} =
      [Pair] -> Value
Core.object
        ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
            [ (Text
"control" 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
control,
              (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
"workflowType" Text -> WorkflowType -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= WorkflowType
workflowType),
              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)
            ]
        )