Class: Aws::Honeycode::Types::UpdateRowData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::UpdateRowData
- Defined in:
- gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb
Overview
Note:
When making an API call, you may pass UpdateRowData data as a hash:
{
row_id: "RowId", # required
cells_to_update: { # required
"ResourceId" => {
fact: "Fact",
},
},
}
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.
1795 1796 1797 1798 1799 1800 |
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1795 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.
1795 1796 1797 1798 1799 1800 |
# File 'gems/aws-sdk-honeycode/lib/aws-sdk-honeycode/types.rb', line 1795 class UpdateRowData < Struct.new( :row_id, :cells_to_update) SENSITIVE = [] include Aws::Structure end |