Class: Aws::Honeycode::Types::TableRow

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-honeycode/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

Instance Attribute Details

#cellsArray<Types::Cell>

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

Returns:



1540
1541
1542
1543
1544
1545
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1540

class TableRow < Struct.new(
  :row_id,
  :cells)
  SENSITIVE = []
  include Aws::Structure
end

#row_idString

The id of the row in the table.

Returns:

  • (String)


1540
1541
1542
1543
1544
1545
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1540

class TableRow < Struct.new(
  :row_id,
  :cells)
  SENSITIVE = []
  include Aws::Structure
end