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) |
Safe Haskell | None |
Synopsis
- data LambdaFunctionScheduledEventAttributes = LambdaFunctionScheduledEventAttributes' {}
- newLambdaFunctionScheduledEventAttributes :: Text -> Text -> Integer -> LambdaFunctionScheduledEventAttributes
- lambdaFunctionScheduledEventAttributes_control :: Lens' LambdaFunctionScheduledEventAttributes (Maybe Text)
- lambdaFunctionScheduledEventAttributes_input :: Lens' LambdaFunctionScheduledEventAttributes (Maybe Text)
- lambdaFunctionScheduledEventAttributes_startToCloseTimeout :: Lens' LambdaFunctionScheduledEventAttributes (Maybe Text)
- lambdaFunctionScheduledEventAttributes_id :: Lens' LambdaFunctionScheduledEventAttributes Text
- lambdaFunctionScheduledEventAttributes_name :: Lens' LambdaFunctionScheduledEventAttributes Text
- lambdaFunctionScheduledEventAttributes_decisionTaskCompletedEventId :: Lens' LambdaFunctionScheduledEventAttributes Integer
Documentation
data LambdaFunctionScheduledEventAttributes Source #
Provides the details of the LambdaFunctionScheduled
event. It isn't
set for other event types.
See: newLambdaFunctionScheduledEventAttributes
smart constructor.
LambdaFunctionScheduledEventAttributes' | |
|
Instances
newLambdaFunctionScheduledEventAttributes Source #
:: Text | |
-> Text | |
-> Integer |
|
-> LambdaFunctionScheduledEventAttributes |
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_input :: Lens' LambdaFunctionScheduledEventAttributes (Maybe Text) Source #
The input provided 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_id :: Lens' LambdaFunctionScheduledEventAttributes Text Source #
The unique ID of the Lambda task.
lambdaFunctionScheduledEventAttributes_name :: Lens' LambdaFunctionScheduledEventAttributes Text Source #
The name of the Lambda function.
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.