Class: Aws::Honeycode::Types::UpdateRowData

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

Instance Attribute Details

#cells_to_updateHash<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.

Returns:



1617
1618
1619
1620
1621
1622
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1617

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

#row_idString

The id of the row that needs to be updated.

Returns:

  • (String)


1617
1618
1619
1620
1621
1622
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1617

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