libZSservicesZSamazonka-honeycodeZSamazonka-honeycode
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.HoneyCode.Types.UpdateRowData

Description

 
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.

Constructors

UpdateRowData' 

Fields

  • rowId :: Text

    The id of the row that needs to be updated.

  • cellsToUpdate :: HashMap Text CellInput

    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.

Instances

Instances details
Eq UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Show UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Generic UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Associated Types

type Rep UpdateRowData :: Type -> Type #

NFData UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Methods

rnf :: UpdateRowData -> () #

Hashable UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

ToJSON UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

type Rep UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

type Rep UpdateRowData = D1 ('MetaData "UpdateRowData" "Amazonka.HoneyCode.Types.UpdateRowData" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "UpdateRowData'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rowId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "cellsToUpdate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text CellInput))))

newUpdateRowData Source #

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.