Class: Aws::Honeycode::Types::TableRow
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::TableRow
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
An object that contains attributes about a single row in a table
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cells ⇒ Array<Types::Cell>
A list of cells in the table row.
-
#row_id ⇒ String
The id of the row in the table.
Instance Attribute Details
#cells ⇒ Array<Types::Cell>
A list of cells in the table row. The cells appear in the same order as the columns of the table.
1540 1541 1542 1543 1544 1545 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1540 class TableRow < Struct.new( :row_id, :cells) SENSITIVE = [] include Aws::Structure end |