Class: Aws::Honeycode::Types::UpdateRowData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::UpdateRowData
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
Data needed to create a single row in a table as part of the BatchCreateTableRows request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cells_to_update ⇒ Hash<String,Types::CellInput>
A map representing the cells to update in the given row.
-
#row_id ⇒ String
The id of the row that needs to be updated.
Instance Attribute Details
#cells_to_update ⇒ Hash<String,Types::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.
1617 1618 1619 1620 1621 1622 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1617 class UpdateRowData < Struct.new( :row_id, :cells_to_update) SENSITIVE = [] include Aws::Structure end |
#row_id ⇒ String
The id of the row that needs to be updated.
1617 1618 1619 1620 1621 1622 |
# File 'lib/aws-sdk-honeycode/types.rb', line 1617 class UpdateRowData < Struct.new( :row_id, :cells_to_update) SENSITIVE = [] include Aws::Structure end |