Interface BatchItemError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchItemError.Builder,BatchItemError>,SdkBuilder<BatchItemError.Builder,BatchItemError>,SdkPojo
- Enclosing class:
- BatchItemError
public static interface BatchItemError.Builder extends SdkPojo, CopyableBuilder<BatchItemError.Builder,BatchItemError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchItemError.Buildercode(String code)The error code associated with the batch request error.BatchItemError.Buildercode(BatchItemErrorCode code)The error code associated with the batch request error.BatchItemError.Buildermessage(String message)A message with the reason for the batch request 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
-
code
BatchItemError.Builder code(String code)
The error code associated with the batch request error.
- Parameters:
code- The error code associated with the batch request error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BatchItemErrorCode,BatchItemErrorCode
-
code
BatchItemError.Builder code(BatchItemErrorCode code)
The error code associated with the batch request error.
- Parameters:
code- The error code associated with the batch request error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BatchItemErrorCode,BatchItemErrorCode
-
message
BatchItemError.Builder message(String message)
A message with the reason for the batch request error.
- Parameters:
message- A message with the reason for the batch request error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-