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.BuildererrorCode(String errorCode)The numeric error code of the error.BatchItemError.BuildererrorMessage(String errorMessage)A text description of the error.BatchItemError.Builderindex(Integer index)The zero-based index of the document in the input list.-
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
-
index
BatchItemError.Builder index(Integer index)
The zero-based index of the document in the input list.
- Parameters:
index- The zero-based index of the document in the input list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
BatchItemError.Builder errorCode(String errorCode)
The numeric error code of the error.
- Parameters:
errorCode- The numeric error code of the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
BatchItemError.Builder errorMessage(String errorMessage)
A text description of the error.
- Parameters:
errorMessage- A text description of the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-