Class: Aws::Honeycode::Types::BatchCreateTableRowsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::BatchCreateTableRowsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_rows ⇒ Hash<String,String>
The map of batch item id to the row id that was created for that item.
-
#failed_batch_items ⇒ Array<Types::FailedBatchItem>
The list of batch items in the request that could not be added to the table.
-
#workbook_cursor ⇒ Integer
The updated workbook cursor after adding the new rows at the end of the table.
Instance Attribute Details
#created_rows ⇒ Hash<String,String>
The map of batch item id to the row id that was created for that item.
121 122 123 124 125 126 127 |
# File 'lib/aws-sdk-honeycode/types.rb', line 121 class BatchCreateTableRowsResult < Struct.new( :workbook_cursor, :created_rows, :failed_batch_items) SENSITIVE = [] include Aws::Structure end |
#failed_batch_items ⇒ Array<Types::FailedBatchItem>
The list of batch items in the request that could not be added to the table. Each element in this list contains one item from the request that could not be added to the table along with the reason why that item could not be added.
121 122 123 124 125 126 127 |
# File 'lib/aws-sdk-honeycode/types.rb', line 121 class BatchCreateTableRowsResult < Struct.new( :workbook_cursor, :created_rows, :failed_batch_items) SENSITIVE = [] include Aws::Structure end |
#workbook_cursor ⇒ Integer
The updated workbook cursor after adding the new rows at the end of the table.
121 122 123 124 125 126 127 |
# File 'lib/aws-sdk-honeycode/types.rb', line 121 class BatchCreateTableRowsResult < Struct.new( :workbook_cursor, :created_rows, :failed_batch_items) SENSITIVE = [] include Aws::Structure end |