Interface FlowFailureEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowFailureEvent.Builder,FlowFailureEvent>,SdkBuilder<FlowFailureEvent.Builder,FlowFailureEvent>,SdkPojo
- Enclosing class:
- FlowFailureEvent
@Mutable @NotThreadSafe public static interface FlowFailureEvent.Builder extends SdkPojo, CopyableBuilder<FlowFailureEvent.Builder,FlowFailureEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowFailureEvent.BuildererrorCode(String errorCode)The error code that identifies the type of failure that occurred.FlowFailureEvent.BuildererrorCode(FlowErrorCode errorCode)The error code that identifies the type of failure that occurred.FlowFailureEvent.BuildererrorMessage(String errorMessage)A descriptive message that provides details about the failure.FlowFailureEvent.Buildertimestamp(Instant timestamp)The timestamp when the failure occurred.-
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
-
errorCode
FlowFailureEvent.Builder errorCode(String errorCode)
The error code that identifies the type of failure that occurred.
- Parameters:
errorCode- The error code that identifies the type of failure that occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowErrorCode,FlowErrorCode
-
errorCode
FlowFailureEvent.Builder errorCode(FlowErrorCode errorCode)
The error code that identifies the type of failure that occurred.
- Parameters:
errorCode- The error code that identifies the type of failure that occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowErrorCode,FlowErrorCode
-
errorMessage
FlowFailureEvent.Builder errorMessage(String errorMessage)
A descriptive message that provides details about the failure.
- Parameters:
errorMessage- A descriptive message that provides details about the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
FlowFailureEvent.Builder timestamp(Instant timestamp)
The timestamp when the failure occurred.
- Parameters:
timestamp- The timestamp when the failure occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-