Interface BatchDeleteClusterNodesError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchDeleteClusterNodesError.Builder,BatchDeleteClusterNodesError>,SdkBuilder<BatchDeleteClusterNodesError.Builder,BatchDeleteClusterNodesError>,SdkPojo
- Enclosing class:
- BatchDeleteClusterNodesError
public static interface BatchDeleteClusterNodesError.Builder extends SdkPojo, CopyableBuilder<BatchDeleteClusterNodesError.Builder,BatchDeleteClusterNodesError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchDeleteClusterNodesError.Buildercode(String code)The error code associated with the error encountered when deleting a node.BatchDeleteClusterNodesError.Buildercode(BatchDeleteClusterNodesErrorCode code)The error code associated with the error encountered when deleting a node.BatchDeleteClusterNodesError.Buildermessage(String message)A message describing the error encountered when deleting a node.BatchDeleteClusterNodesError.BuildernodeId(String nodeId)The ID of the node that encountered an error during the deletion process.-
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
-
code
BatchDeleteClusterNodesError.Builder code(String code)
The error code associated with the error encountered when deleting a node.
The code provides information about the specific issue encountered, such as the node not being found, the node's status being invalid for deletion, or the node ID being in use by another process.
- Parameters:
code- The error code associated with the error encountered when deleting a node.The code provides information about the specific issue encountered, such as the node not being found, the node's status being invalid for deletion, or the node ID being in use by another process.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BatchDeleteClusterNodesErrorCode,BatchDeleteClusterNodesErrorCode
-
code
BatchDeleteClusterNodesError.Builder code(BatchDeleteClusterNodesErrorCode code)
The error code associated with the error encountered when deleting a node.
The code provides information about the specific issue encountered, such as the node not being found, the node's status being invalid for deletion, or the node ID being in use by another process.
- Parameters:
code- The error code associated with the error encountered when deleting a node.The code provides information about the specific issue encountered, such as the node not being found, the node's status being invalid for deletion, or the node ID being in use by another process.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BatchDeleteClusterNodesErrorCode,BatchDeleteClusterNodesErrorCode
-
message
BatchDeleteClusterNodesError.Builder message(String message)
A message describing the error encountered when deleting a node.
- Parameters:
message- A message describing the error encountered when deleting a node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeId
BatchDeleteClusterNodesError.Builder nodeId(String nodeId)
The ID of the node that encountered an error during the deletion process.
- Parameters:
nodeId- The ID of the node that encountered an error during the deletion process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-