Interface LambdaFunctionFailedEventAttributes.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LambdaFunctionFailedEventAttributes.Builder,LambdaFunctionFailedEventAttributes>
,SdkBuilder<LambdaFunctionFailedEventAttributes.Builder,LambdaFunctionFailedEventAttributes>
,SdkPojo
- Enclosing class:
- LambdaFunctionFailedEventAttributes
public static interface LambdaFunctionFailedEventAttributes.Builder extends SdkPojo, CopyableBuilder<LambdaFunctionFailedEventAttributes.Builder,LambdaFunctionFailedEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LambdaFunctionFailedEventAttributes.Builder
details(String details)
The details of the failure.LambdaFunctionFailedEventAttributes.Builder
reason(String reason)
The reason provided for the failure.LambdaFunctionFailedEventAttributes.Builder
scheduledEventId(Long scheduledEventId)
The ID of theLambdaFunctionScheduled
event that was recorded when this activity task was scheduled.LambdaFunctionFailedEventAttributes.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
LambdaFunctionFailedEventAttributes.Builder scheduledEventId(Long scheduledEventId)
The ID of the
LambdaFunctionScheduled
event that was recorded when this activity 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 activity 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
LambdaFunctionFailedEventAttributes.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.
-
reason
LambdaFunctionFailedEventAttributes.Builder reason(String reason)
The reason provided for the failure.
- Parameters:
reason
- The reason provided for the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
details
LambdaFunctionFailedEventAttributes.Builder details(String details)
The details of the failure.
- Parameters:
details
- The details of the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-