Interface FailedBatchItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FailedBatchItem.Builder,FailedBatchItem>,SdkBuilder<FailedBatchItem.Builder,FailedBatchItem>,SdkPojo
- Enclosing class:
- FailedBatchItem
public static interface FailedBatchItem.Builder extends SdkPojo, CopyableBuilder<FailedBatchItem.Builder,FailedBatchItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FailedBatchItem.BuildererrorMessage(String errorMessage)The error message that indicates why the batch item failed.FailedBatchItem.Builderid(String id)The id of the batch item that failed.-
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
-
id
FailedBatchItem.Builder id(String id)
The id of the batch item that failed. This is the batch item id for the BatchCreateTableRows and BatchUpsertTableRows operations and the row id for the BatchUpdateTableRows and BatchDeleteTableRows operations.
- Parameters:
id- The id of the batch item that failed. This is the batch item id for the BatchCreateTableRows and BatchUpsertTableRows operations and the row id for the BatchUpdateTableRows and BatchDeleteTableRows operations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
FailedBatchItem.Builder errorMessage(String errorMessage)
The error message that indicates why the batch item failed.
- Parameters:
errorMessage- The error message that indicates why the batch item failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-