Interface BatchResultErrorEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchResultErrorEntry.Builder,BatchResultErrorEntry>,SdkBuilder<BatchResultErrorEntry.Builder,BatchResultErrorEntry>,SdkPojo
- Enclosing class:
- BatchResultErrorEntry
@Mutable @NotThreadSafe public static interface BatchResultErrorEntry.Builder extends SdkPojo, CopyableBuilder<BatchResultErrorEntry.Builder,BatchResultErrorEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchResultErrorEntry.Buildercode(String code)An error code representing why the action failed on this entry.BatchResultErrorEntry.Builderid(String id)TheIdof an entry in a batch request.BatchResultErrorEntry.Buildermessage(String message)A message explaining why the action failed on this entry.BatchResultErrorEntry.BuildersenderFault(Boolean senderFault)Specifies whether the error happened due to the caller of the batch API action.-
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
-
id
BatchResultErrorEntry.Builder id(String id)
The
Idof an entry in a batch request.- Parameters:
id- TheIdof an entry in a batch request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
senderFault
BatchResultErrorEntry.Builder senderFault(Boolean senderFault)
Specifies whether the error happened due to the caller of the batch API action.
- Parameters:
senderFault- Specifies whether the error happened due to the caller of the batch API action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
code
BatchResultErrorEntry.Builder code(String code)
An error code representing why the action failed on this entry.
- Parameters:
code- An error code representing why the action failed on this entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
BatchResultErrorEntry.Builder message(String message)
A message explaining why the action failed on this entry.
- Parameters:
message- A message explaining why the action failed on this entry.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-