Interface BatchDeleteTableRowsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchDeleteTableRowsResponse.Builder,BatchDeleteTableRowsResponse>,HoneycodeResponse.Builder,SdkBuilder<BatchDeleteTableRowsResponse.Builder,BatchDeleteTableRowsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchDeleteTableRowsResponse
public static interface BatchDeleteTableRowsResponse.Builder extends HoneycodeResponse.Builder, SdkPojo, CopyableBuilder<BatchDeleteTableRowsResponse.Builder,BatchDeleteTableRowsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchDeleteTableRowsResponse.BuilderfailedBatchItems(Collection<FailedBatchItem> failedBatchItems)The list of row ids in the request that could not be deleted from the table.BatchDeleteTableRowsResponse.BuilderfailedBatchItems(Consumer<FailedBatchItem.Builder>... failedBatchItems)The list of row ids in the request that could not be deleted from the table.BatchDeleteTableRowsResponse.BuilderfailedBatchItems(FailedBatchItem... failedBatchItems)The list of row ids in the request that could not be deleted from the table.BatchDeleteTableRowsResponse.BuilderworkbookCursor(Long workbookCursor)The updated workbook cursor after deleting the rows from the table.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.honeycode.model.HoneycodeResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
workbookCursor
BatchDeleteTableRowsResponse.Builder workbookCursor(Long workbookCursor)
The updated workbook cursor after deleting the rows from the table.
- Parameters:
workbookCursor- The updated workbook cursor after deleting the rows from the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedBatchItems
BatchDeleteTableRowsResponse.Builder failedBatchItems(Collection<FailedBatchItem> failedBatchItems)
The list of row ids in the request that could not be deleted from the table. Each element in this list contains one row id from the request that could not be deleted along with the reason why that item could not be deleted.
- Parameters:
failedBatchItems- The list of row ids in the request that could not be deleted from the table. Each element in this list contains one row id from the request that could not be deleted along with the reason why that item could not be deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedBatchItems
BatchDeleteTableRowsResponse.Builder failedBatchItems(FailedBatchItem... failedBatchItems)
The list of row ids in the request that could not be deleted from the table. Each element in this list contains one row id from the request that could not be deleted along with the reason why that item could not be deleted.
- Parameters:
failedBatchItems- The list of row ids in the request that could not be deleted from the table. Each element in this list contains one row id from the request that could not be deleted along with the reason why that item could not be deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedBatchItems
BatchDeleteTableRowsResponse.Builder failedBatchItems(Consumer<FailedBatchItem.Builder>... failedBatchItems)
The list of row ids in the request that could not be deleted from the table. Each element in this list contains one row id from the request that could not be deleted along with the reason why that item could not be deleted.
This is a convenience method that creates an instance of theFailedBatchItem.Builderavoiding the need to create one manually viaFailedBatchItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#failedBatchItems(List.) - Parameters:
failedBatchItems- a consumer that will call methods onFailedBatchItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#failedBatchItems(java.util.Collection)
-
-