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.DecisionTaskTimedOutEventAttributes

Description

 
Synopsis

Documentation

data DecisionTaskTimedOutEventAttributes Source #

Provides the details of the DecisionTaskTimedOut event.

See: newDecisionTaskTimedOutEventAttributes smart constructor.

Constructors

DecisionTaskTimedOutEventAttributes' 

Fields

  • timeoutType :: DecisionTaskTimeoutType

    The type of timeout that expired before the decision task could be completed.

  • scheduledEventId :: Integer

    The ID of the DecisionTaskScheduled event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

  • startedEventId :: Integer

    The ID of the DecisionTaskStarted event recorded when this decision task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

Instances

Instances details
Eq DecisionTaskTimedOutEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.DecisionTaskTimedOutEventAttributes

Read DecisionTaskTimedOutEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.DecisionTaskTimedOutEventAttributes

Show DecisionTaskTimedOutEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.DecisionTaskTimedOutEventAttributes

Generic DecisionTaskTimedOutEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.DecisionTaskTimedOutEventAttributes

NFData DecisionTaskTimedOutEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.DecisionTaskTimedOutEventAttributes

Hashable DecisionTaskTimedOutEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.DecisionTaskTimedOutEventAttributes

FromJSON DecisionTaskTimedOutEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.DecisionTaskTimedOutEventAttributes

type Rep DecisionTaskTimedOutEventAttributes Source # 
Instance details

Defined in Amazonka.SWF.Types.DecisionTaskTimedOutEventAttributes

type Rep DecisionTaskTimedOutEventAttributes = D1 ('MetaData "DecisionTaskTimedOutEventAttributes" "Amazonka.SWF.Types.DecisionTaskTimedOutEventAttributes" "libZSservicesZSamazonka-swfZSamazonka-swf" 'False) (C1 ('MetaCons "DecisionTaskTimedOutEventAttributes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "timeoutType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 DecisionTaskTimeoutType) :*: (S1 ('MetaSel ('Just "scheduledEventId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer) :*: S1 ('MetaSel ('Just "startedEventId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Integer))))

newDecisionTaskTimedOutEventAttributes Source #

Create a value of DecisionTaskTimedOutEventAttributes 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:timeoutType:DecisionTaskTimedOutEventAttributes', decisionTaskTimedOutEventAttributes_timeoutType - The type of timeout that expired before the decision task could be completed.

$sel:scheduledEventId:DecisionTaskTimedOutEventAttributes', decisionTaskTimedOutEventAttributes_scheduledEventId - The ID of the DecisionTaskScheduled event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

$sel:startedEventId:DecisionTaskTimedOutEventAttributes', decisionTaskTimedOutEventAttributes_startedEventId - The ID of the DecisionTaskStarted event recorded when this decision task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

decisionTaskTimedOutEventAttributes_timeoutType :: Lens' DecisionTaskTimedOutEventAttributes DecisionTaskTimeoutType Source #

The type of timeout that expired before the decision task could be completed.

decisionTaskTimedOutEventAttributes_scheduledEventId :: Lens' DecisionTaskTimedOutEventAttributes Integer Source #

The ID of the DecisionTaskScheduled event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

decisionTaskTimedOutEventAttributes_startedEventId :: Lens' DecisionTaskTimedOutEventAttributes Integer Source #

The ID of the DecisionTaskStarted event recorded when this decision task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.