libZSservicesZSamazonka-swfZSamazonka-swf
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes

Description

 
Synopsis

Documentation

data LambdaFunctionScheduledEventAttributes Source #

Provides the details of the LambdaFunctionScheduled event. It isn't set for other event types.

See: newLambdaFunctionScheduledEventAttributes smart constructor.

Constructors

LambdaFunctionScheduledEventAttributes' 

Fields

  • control :: Maybe Text

    Data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.

  • input :: Maybe Text

    The input provided to the Lambda task.

  • startToCloseTimeout :: Maybe Text

    The maximum amount of time a worker can take to process the Lambda task.

  • id :: Text

    The unique ID of the Lambda task.

  • name :: Text

    The name of the Lambda function.

  • decisionTaskCompletedEventId :: Integer

    The ID of the LambdaFunctionCompleted event corresponding to the decision that resulted in scheduling this activity task. To help diagnose issues, use this information to trace back the chain of events leading up to this event.

Instances

Instances details
Eq LambdaFunctionScheduledEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes

Read LambdaFunctionScheduledEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes

Show LambdaFunctionScheduledEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes

Generic LambdaFunctionScheduledEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes

NFData LambdaFunctionScheduledEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes

Hashable LambdaFunctionScheduledEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes

FromJSON LambdaFunctionScheduledEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes

type Rep LambdaFunctionScheduledEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes

type Rep LambdaFunctionScheduledEventAttributes = D1 ('MetaData "LambdaFunctionScheduledEventAttributes" "Amazonka.SWF.Types.LambdaFunctionScheduledEventAttributes" "libZSservicesZSamazonka-swfZSamazonka-swf" 'False) (C1 ('MetaCons "LambdaFunctionScheduledEventAttributes'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "control") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "input") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "startToCloseTimeout") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "decisionTaskCompletedEventId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer)))))

newLambdaFunctionScheduledEventAttributes Source #

Create a value of LambdaFunctionScheduledEventAttributes with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:control:LambdaFunctionScheduledEventAttributes', lambdaFunctionScheduledEventAttributes_control - Data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.

$sel:input:LambdaFunctionScheduledEventAttributes', lambdaFunctionScheduledEventAttributes_input - The input provided to the Lambda task.

$sel:startToCloseTimeout:LambdaFunctionScheduledEventAttributes', lambdaFunctionScheduledEventAttributes_startToCloseTimeout - The maximum amount of time a worker can take to process the Lambda task.

$sel:id:LambdaFunctionScheduledEventAttributes', lambdaFunctionScheduledEventAttributes_id - The unique ID of the Lambda task.

$sel:name:LambdaFunctionScheduledEventAttributes', lambdaFunctionScheduledEventAttributes_name - The name of the Lambda function.

$sel:decisionTaskCompletedEventId:LambdaFunctionScheduledEventAttributes', lambdaFunctionScheduledEventAttributes_decisionTaskCompletedEventId - The ID of the LambdaFunctionCompleted event corresponding to the decision that resulted in scheduling this activity task. To help diagnose issues, use this information to trace back the chain of events leading up to this event.

lambdaFunctionScheduledEventAttributes_control :: Lens' LambdaFunctionScheduledEventAttributes (Maybe Text) Source #

Data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.

lambdaFunctionScheduledEventAttributes_startToCloseTimeout :: Lens' LambdaFunctionScheduledEventAttributes (Maybe Text) Source #

The maximum amount of time a worker can take to process the Lambda task.

lambdaFunctionScheduledEventAttributes_decisionTaskCompletedEventId :: Lens' LambdaFunctionScheduledEventAttributes Integer Source #

The ID of the LambdaFunctionCompleted event corresponding to the decision that resulted in scheduling this activity task. To help diagnose issues, use this information to trace back the chain of events leading up to this event.