Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
Documentation
data UpdateRowData Source #
Data needed to create a single row in a table as part of the BatchCreateTableRows request.
See: newUpdateRowData
smart constructor.
Instances
Create a value of UpdateRowData
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:rowId:UpdateRowData'
, updateRowData_rowId
- The id of the row that needs to be updated.
$sel:cellsToUpdate:UpdateRowData'
, updateRowData_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.
updateRowData_rowId :: Lens' UpdateRowData Text Source #
The id of the row that needs to be updated.
updateRowData_cellsToUpdate :: Lens' UpdateRowData (HashMap Text CellInput) Source #
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.