amazonka-honeycode-2.0: Amazon Honeycode SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

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
ToJSON 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 #

Show UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

NFData UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Methods

rnf :: UpdateRowData -> () #

Eq UpdateRowData Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.UpdateRowData

Hashable 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" "amazonka-honeycode-2.0-IdtoOmZm6eT6kjUDWwPe6X" '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.