Interface LambdaFunctionCompletedEventAttributes.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LambdaFunctionCompletedEventAttributes.Builder,LambdaFunctionCompletedEventAttributes>
,SdkBuilder<LambdaFunctionCompletedEventAttributes.Builder,LambdaFunctionCompletedEventAttributes>
,SdkPojo
- Enclosing class:
- LambdaFunctionCompletedEventAttributes
public static interface LambdaFunctionCompletedEventAttributes.Builder extends SdkPojo, CopyableBuilder<LambdaFunctionCompletedEventAttributes.Builder,LambdaFunctionCompletedEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LambdaFunctionCompletedEventAttributes.Builder
result(String result)
The results of the Lambda task.LambdaFunctionCompletedEventAttributes.Builder
scheduledEventId(Long scheduledEventId)
The ID of theLambdaFunctionScheduled
event that was recorded when this Lambda task was scheduled.LambdaFunctionCompletedEventAttributes.Builder
startedEventId(Long startedEventId)
The ID of theLambdaFunctionStarted
event recorded when this activity task started.-
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
-
scheduledEventId
LambdaFunctionCompletedEventAttributes.Builder scheduledEventId(Long scheduledEventId)
The ID of the
LambdaFunctionScheduled
event that was recorded when this Lambda task was scheduled. To help diagnose issues, use this information to trace back the chain of events leading up to this event.- Parameters:
scheduledEventId
- The ID of theLambdaFunctionScheduled
event that was recorded when this Lambda task was scheduled. 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.
-
startedEventId
LambdaFunctionCompletedEventAttributes.Builder startedEventId(Long startedEventId)
The ID of the
LambdaFunctionStarted
event recorded when this activity task started. To help diagnose issues, use this information to trace back the chain of events leading up to this event.- Parameters:
startedEventId
- The ID of theLambdaFunctionStarted
event recorded when this activity task started. 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.
-
result
LambdaFunctionCompletedEventAttributes.Builder result(String result)
The results of the Lambda task.
- Parameters:
result
- The results of the Lambda task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-