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