Class: Aws::Honeycode::Types::CreateRowData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::CreateRowData
- 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
-
#batch_item_id ⇒ String
An external identifier that represents the single row that is being created as part of the BatchCreateTableRows request.
-
#cells_to_create ⇒ Hash<String,Types::CellInput>
A map representing the cells to create in the new row.
Instance Attribute Details
#batch_item_id ⇒ String
An external identifier that represents the single row that is being created as part of the BatchCreateTableRows request. This can be any string that you can use to identify the row in the request. The BatchCreateTableRows API puts the batch item id in the results to allow you to link data in the request to data in the results.
524 525 526 527 528 529 |
# File 'lib/aws-sdk-honeycode/types.rb', line 524 class CreateRowData < Struct.new( :batch_item_id, :cells_to_create) SENSITIVE = [] include Aws::Structure end |
#cells_to_create ⇒ Hash<String,Types::CellInput>
A map representing the cells to create in the new 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.
524 525 526 527 528 529 |
# File 'lib/aws-sdk-honeycode/types.rb', line 524 class CreateRowData < Struct.new( :batch_item_id, :cells_to_create) SENSITIVE = [] include Aws::Structure end |