Interface FailureDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FailureDetails.Builder,FailureDetails>,SdkBuilder<FailureDetails.Builder,FailureDetails>,SdkPojo
- Enclosing class:
- FailureDetails
public static interface FailureDetails.Builder extends SdkPojo, CopyableBuilder<FailureDetails.Builder,FailureDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FailureDetails.Buildermessage(String message)A description of the error that caused the batch job failure.FailureDetails.BuilderstatusCode(Integer statusCode)An HTTP status code representing the nature of the error.-
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, sdkFields
-
-
-
-
Method Detail
-
message
FailureDetails.Builder message(String message)
A description of the error that caused the batch job failure.
- Parameters:
message- A description of the error that caused the batch job failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusCode
FailureDetails.Builder statusCode(Integer statusCode)
An HTTP status code representing the nature of the error.
- Parameters:
statusCode- An HTTP status code representing the nature of the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-