Interface UpdateRowData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UpdateRowData.Builder,UpdateRowData>,SdkBuilder<UpdateRowData.Builder,UpdateRowData>,SdkPojo
- Enclosing class:
- UpdateRowData
public static interface UpdateRowData.Builder extends SdkPojo, CopyableBuilder<UpdateRowData.Builder,UpdateRowData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateRowData.BuildercellsToUpdate(Map<String,CellInput> cellsToUpdate)A map representing the cells to update in the given row.UpdateRowData.BuilderrowId(String rowId)The id of the row that needs to be updated.-
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
-
rowId
UpdateRowData.Builder rowId(String rowId)
The id of the row that needs to be updated.
- Parameters:
rowId- The id of the row that needs to be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cellsToUpdate
UpdateRowData.Builder cellsToUpdate(Map<String,CellInput> cellsToUpdate)
A map representing the cells to update in the given row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.
- Parameters:
cellsToUpdate- A map representing the cells to update in the given row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-