Interface LambdaFunctionScheduledEventAttributes.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LambdaFunctionScheduledEventAttributes.Builder,LambdaFunctionScheduledEventAttributes>
,SdkBuilder<LambdaFunctionScheduledEventAttributes.Builder,LambdaFunctionScheduledEventAttributes>
,SdkPojo
- Enclosing class:
- LambdaFunctionScheduledEventAttributes
public static interface LambdaFunctionScheduledEventAttributes.Builder extends SdkPojo, CopyableBuilder<LambdaFunctionScheduledEventAttributes.Builder,LambdaFunctionScheduledEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LambdaFunctionScheduledEventAttributes.Builder
control(String control)
Data attached to the event that the decider can use in subsequent workflow tasks.LambdaFunctionScheduledEventAttributes.Builder
decisionTaskCompletedEventId(Long decisionTaskCompletedEventId)
The ID of theLambdaFunctionCompleted
event corresponding to the decision that resulted in scheduling this activity task.LambdaFunctionScheduledEventAttributes.Builder
id(String id)
The unique ID of the Lambda task.LambdaFunctionScheduledEventAttributes.Builder
input(String input)
The input provided to the Lambda task.LambdaFunctionScheduledEventAttributes.Builder
name(String name)
The name of the Lambda function.LambdaFunctionScheduledEventAttributes.Builder
startToCloseTimeout(String startToCloseTimeout)
The maximum amount of time a worker can take to process the Lambda task.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
id
LambdaFunctionScheduledEventAttributes.Builder id(String id)
The unique ID of the Lambda task.
- Parameters:
id
- The unique ID of the Lambda task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
LambdaFunctionScheduledEventAttributes.Builder name(String name)
The name of the Lambda function.
- Parameters:
name
- The name of the Lambda function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
control
LambdaFunctionScheduledEventAttributes.Builder control(String control)
Data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.
- Parameters:
control
- Data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
input
LambdaFunctionScheduledEventAttributes.Builder input(String input)
The input provided to the Lambda task.
- Parameters:
input
- The input provided to the Lambda task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startToCloseTimeout
LambdaFunctionScheduledEventAttributes.Builder startToCloseTimeout(String startToCloseTimeout)
The maximum amount of time a worker can take to process the Lambda task.
- Parameters:
startToCloseTimeout
- The maximum amount of time a worker can take to process the Lambda task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
decisionTaskCompletedEventId
LambdaFunctionScheduledEventAttributes.Builder decisionTaskCompletedEventId(Long 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.- Parameters:
decisionTaskCompletedEventId
- The ID of theLambdaFunctionCompleted
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-