Interface BatchUpdateTableRowsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchUpdateTableRowsResponse.Builder,BatchUpdateTableRowsResponse>,HoneycodeResponse.Builder,SdkBuilder<BatchUpdateTableRowsResponse.Builder,BatchUpdateTableRowsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchUpdateTableRowsResponse
public static interface BatchUpdateTableRowsResponse.Builder extends HoneycodeResponse.Builder, SdkPojo, CopyableBuilder<BatchUpdateTableRowsResponse.Builder,BatchUpdateTableRowsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchUpdateTableRowsResponse.BuilderfailedBatchItems(Collection<FailedBatchItem> failedBatchItems)The list of batch items in the request that could not be updated in the table.BatchUpdateTableRowsResponse.BuilderfailedBatchItems(Consumer<FailedBatchItem.Builder>... failedBatchItems)The list of batch items in the request that could not be updated in the table.BatchUpdateTableRowsResponse.BuilderfailedBatchItems(FailedBatchItem... failedBatchItems)The list of batch items in the request that could not be updated in the table.BatchUpdateTableRowsResponse.BuilderworkbookCursor(Long workbookCursor)The updated workbook cursor after adding the new rows at the end of 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
BatchUpdateTableRowsResponse.Builder workbookCursor(Long workbookCursor)
The updated workbook cursor after adding the new rows at the end of the table.
- Parameters:
workbookCursor- The updated workbook cursor after adding the new rows at the end of the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedBatchItems
BatchUpdateTableRowsResponse.Builder failedBatchItems(Collection<FailedBatchItem> failedBatchItems)
The list of batch items in the request that could not be updated in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated.
- Parameters:
failedBatchItems- The list of batch items in the request that could not be updated in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedBatchItems
BatchUpdateTableRowsResponse.Builder failedBatchItems(FailedBatchItem... failedBatchItems)
The list of batch items in the request that could not be updated in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated.
- Parameters:
failedBatchItems- The list of batch items in the request that could not be updated in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedBatchItems
BatchUpdateTableRowsResponse.Builder failedBatchItems(Consumer<FailedBatchItem.Builder>... failedBatchItems)
The list of batch items in the request that could not be updated in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated.
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)
-
-