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.TableRow

Description

 
Synopsis

Documentation

data TableRow Source #

An object that contains attributes about a single row in a table

See: newTableRow smart constructor.

Constructors

TableRow' 

Fields

  • rowId :: Text

    The id of the row in the table.

  • cells :: [Sensitive Cell]

    A list of cells in the table row. The cells appear in the same order as the columns of the table.

Instances

Instances details
Eq TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Show TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Generic TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Associated Types

type Rep TableRow :: Type -> Type #

Methods

from :: TableRow -> Rep TableRow x #

to :: Rep TableRow x -> TableRow #

NFData TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Methods

rnf :: TableRow -> () #

Hashable TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

Methods

hashWithSalt :: Int -> TableRow -> Int #

hash :: TableRow -> Int #

FromJSON TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

type Rep TableRow Source # 
Instance details

Defined in Amazonka.HoneyCode.Types.TableRow

type Rep TableRow = D1 ('MetaData "TableRow" "Amazonka.HoneyCode.Types.TableRow" "libZSservicesZSamazonka-honeycodeZSamazonka-honeycode" 'False) (C1 ('MetaCons "TableRow'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rowId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "cells") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Sensitive Cell])))

newTableRow Source #

Create a value of TableRow 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:TableRow', tableRow_rowId - The id of the row in the table.

$sel:cells:TableRow', tableRow_cells - A list of cells in the table row. The cells appear in the same order as the columns of the table.

tableRow_rowId :: Lens' TableRow Text Source #

The id of the row in the table.

tableRow_cells :: Lens' TableRow [Cell] Source #

A list of cells in the table row. The cells appear in the same order as the columns of the table.