{-# 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-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.SWF.Types.StartChildWorkflowExecutionDecisionAttributes where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
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'
  { -- | 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 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 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 input to be provided to the workflow execution.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
input :: Prelude.Maybe Prelude.Text,
    -- | The IAM role attached to the child workflow execution.
    StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
lambdaRole :: 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],
    -- | 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,
    -- | 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 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
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]
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
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.
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:
--
-- '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.
--
-- '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.
--
-- '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.
--
-- 'input', 'startChildWorkflowExecutionDecisionAttributes_input' - The input to be provided to the workflow execution.
--
-- 'lambdaRole', 'startChildWorkflowExecutionDecisionAttributes_lambdaRole' - The IAM role attached 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.
--
-- '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/.
--
-- '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.
--
-- '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'
      { $sel:childPolicy:StartChildWorkflowExecutionDecisionAttributes' :: Maybe ChildPolicy
childPolicy =
          forall a. Maybe a
Prelude.Nothing,
        $sel:control:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
control = forall a. Maybe a
Prelude.Nothing,
        $sel:executionStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
executionStartToCloseTimeout =
          forall a. Maybe a
Prelude.Nothing,
        $sel:input:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
input = forall a. Maybe a
Prelude.Nothing,
        $sel:lambdaRole:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
lambdaRole = forall a. Maybe a
Prelude.Nothing,
        $sel:tagList:StartChildWorkflowExecutionDecisionAttributes' :: Maybe [Text]
tagList = forall a. Maybe a
Prelude.Nothing,
        $sel:taskList:StartChildWorkflowExecutionDecisionAttributes' :: Maybe TaskList
taskList = forall a. Maybe a
Prelude.Nothing,
        $sel:taskPriority:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
taskPriority =
          forall a. Maybe a
Prelude.Nothing,
        $sel:taskStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: Maybe Text
taskStartToCloseTimeout =
          forall a. Maybe a
Prelude.Nothing,
        $sel:workflowType:StartChildWorkflowExecutionDecisionAttributes' :: WorkflowType
workflowType =
          WorkflowType
pWorkflowType_,
        $sel:workflowId:StartChildWorkflowExecutionDecisionAttributes' :: Text
workflowId = Text
pWorkflowId_
      }

-- | 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 :: Lens'
  StartChildWorkflowExecutionDecisionAttributes (Maybe ChildPolicy)
startChildWorkflowExecutionDecisionAttributes_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 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 :: Lens' StartChildWorkflowExecutionDecisionAttributes (Maybe Text)
startChildWorkflowExecutionDecisionAttributes_control = 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 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 :: Lens' StartChildWorkflowExecutionDecisionAttributes (Maybe Text)
startChildWorkflowExecutionDecisionAttributes_executionStartToCloseTimeout = 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 input to be provided to the workflow execution.
startChildWorkflowExecutionDecisionAttributes_input :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe Prelude.Text)
startChildWorkflowExecutionDecisionAttributes_input :: Lens' StartChildWorkflowExecutionDecisionAttributes (Maybe Text)
startChildWorkflowExecutionDecisionAttributes_input = 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 IAM role attached to the child workflow execution.
startChildWorkflowExecutionDecisionAttributes_lambdaRole :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes (Prelude.Maybe Prelude.Text)
startChildWorkflowExecutionDecisionAttributes_lambdaRole :: Lens' StartChildWorkflowExecutionDecisionAttributes (Maybe Text)
startChildWorkflowExecutionDecisionAttributes_lambdaRole = 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 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 :: Lens' StartChildWorkflowExecutionDecisionAttributes (Maybe [Text])
startChildWorkflowExecutionDecisionAttributes_tagList = 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) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. 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 forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | 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 :: Lens'
  StartChildWorkflowExecutionDecisionAttributes (Maybe TaskList)
startChildWorkflowExecutionDecisionAttributes_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 :: Lens' StartChildWorkflowExecutionDecisionAttributes (Maybe Text)
startChildWorkflowExecutionDecisionAttributes_taskPriority = 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)

-- | 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 :: Lens' StartChildWorkflowExecutionDecisionAttributes (Maybe Text)
startChildWorkflowExecutionDecisionAttributes_taskStartToCloseTimeout = 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 type of the workflow execution to be started.
startChildWorkflowExecutionDecisionAttributes_workflowType :: Lens.Lens' StartChildWorkflowExecutionDecisionAttributes WorkflowType
startChildWorkflowExecutionDecisionAttributes_workflowType :: Lens' StartChildWorkflowExecutionDecisionAttributes WorkflowType
startChildWorkflowExecutionDecisionAttributes_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 :: Lens' StartChildWorkflowExecutionDecisionAttributes Text
startChildWorkflowExecutionDecisionAttributes_workflowId = 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
  where
  hashWithSalt :: Int -> StartChildWorkflowExecutionDecisionAttributes -> Int
hashWithSalt
    Int
_salt
    StartChildWorkflowExecutionDecisionAttributes' {Maybe [Text]
Maybe Text
Maybe ChildPolicy
Maybe TaskList
Text
WorkflowType
workflowId :: Text
workflowType :: WorkflowType
taskStartToCloseTimeout :: Maybe Text
taskPriority :: Maybe Text
taskList :: Maybe TaskList
tagList :: Maybe [Text]
lambdaRole :: Maybe Text
input :: Maybe Text
executionStartToCloseTimeout :: Maybe Text
control :: Maybe Text
childPolicy :: Maybe ChildPolicy
$sel:workflowId:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Text
$sel:workflowType:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> WorkflowType
$sel:taskStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:taskPriority:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:taskList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe TaskList
$sel:tagList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe [Text]
$sel:lambdaRole:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:input:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:executionStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:control:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:childPolicy:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe ChildPolicy
..} =
      Int
_salt
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe ChildPolicy
childPolicy
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
control
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
executionStartToCloseTimeout
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
input
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
lambdaRole
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [Text]
tagList
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe TaskList
taskList
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
taskPriority
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
taskStartToCloseTimeout
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` WorkflowType
workflowType
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
workflowId

instance
  Prelude.NFData
    StartChildWorkflowExecutionDecisionAttributes
  where
  rnf :: StartChildWorkflowExecutionDecisionAttributes -> ()
rnf
    StartChildWorkflowExecutionDecisionAttributes' {Maybe [Text]
Maybe Text
Maybe ChildPolicy
Maybe TaskList
Text
WorkflowType
workflowId :: Text
workflowType :: WorkflowType
taskStartToCloseTimeout :: Maybe Text
taskPriority :: Maybe Text
taskList :: Maybe TaskList
tagList :: Maybe [Text]
lambdaRole :: Maybe Text
input :: Maybe Text
executionStartToCloseTimeout :: Maybe Text
control :: Maybe Text
childPolicy :: Maybe ChildPolicy
$sel:workflowId:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Text
$sel:workflowType:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> WorkflowType
$sel:taskStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:taskPriority:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:taskList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe TaskList
$sel:tagList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe [Text]
$sel:lambdaRole:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:input:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:executionStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:control:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:childPolicy:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe ChildPolicy
..} =
      forall a. NFData a => a -> ()
Prelude.rnf Maybe ChildPolicy
childPolicy
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
control
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
executionStartToCloseTimeout
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
input
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
lambdaRole
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [Text]
tagList
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe TaskList
taskList
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
taskPriority
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
taskStartToCloseTimeout
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf WorkflowType
workflowType
        seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
workflowId

instance
  Data.ToJSON
    StartChildWorkflowExecutionDecisionAttributes
  where
  toJSON :: StartChildWorkflowExecutionDecisionAttributes -> Value
toJSON
    StartChildWorkflowExecutionDecisionAttributes' {Maybe [Text]
Maybe Text
Maybe ChildPolicy
Maybe TaskList
Text
WorkflowType
workflowId :: Text
workflowType :: WorkflowType
taskStartToCloseTimeout :: Maybe Text
taskPriority :: Maybe Text
taskList :: Maybe TaskList
tagList :: Maybe [Text]
lambdaRole :: Maybe Text
input :: Maybe Text
executionStartToCloseTimeout :: Maybe Text
control :: Maybe Text
childPolicy :: Maybe ChildPolicy
$sel:workflowId:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Text
$sel:workflowType:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> WorkflowType
$sel:taskStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:taskPriority:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:taskList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe TaskList
$sel:tagList:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe [Text]
$sel:lambdaRole:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:input:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:executionStartToCloseTimeout:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:control:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe Text
$sel:childPolicy:StartChildWorkflowExecutionDecisionAttributes' :: StartChildWorkflowExecutionDecisionAttributes -> Maybe ChildPolicy
..} =
      [Pair] -> Value
Data.object
        ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
            [ (Key
"childPolicy" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ChildPolicy
childPolicy,
              (Key
"control" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
control,
              (Key
"executionStartToCloseTimeout" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=)
                forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
executionStartToCloseTimeout,
              (Key
"input" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
input,
              (Key
"lambdaRole" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
lambdaRole,
              (Key
"tagList" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Text]
tagList,
              (Key
"taskList" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe TaskList
taskList,
              (Key
"taskPriority" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
taskPriority,
              (Key
"taskStartToCloseTimeout" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=)
                forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
taskStartToCloseTimeout,
              forall a. a -> Maybe a
Prelude.Just (Key
"workflowType" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= WorkflowType
workflowType),
              forall a. a -> Maybe a
Prelude.Just (Key
"workflowId" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
workflowId)
            ]
        )