Class: Aws::Honeycode::Types::BatchUpsertTableRowsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::BatchUpsertTableRowsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed_batch_items ⇒ Array<Types::FailedBatchItem>
The list of batch items in the request that could not be updated or appended in the table.
-
#rows ⇒ Hash<String,Types::UpsertRowsResult>
A map with the batch item id as the key and the result of the upsert operation as the value.
-
#workbook_cursor ⇒ Integer
The updated workbook cursor after updating or appending rows in the table.
Instance Attribute Details
#failed_batch_items ⇒ Array<Types::FailedBatchItem>
The list of batch items in the request that could not be updated or appended in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated or appended.
336 337 338 339 340 341 342 |
# File 'lib/aws-sdk-honeycode/types.rb', line 336 class BatchUpsertTableRowsResult < Struct.new( :rows, :workbook_cursor, :failed_batch_items) SENSITIVE = [] include Aws::Structure end |
#rows ⇒ Hash<String,Types::UpsertRowsResult>
A map with the batch item id as the key and the result of the upsert operation as the value. The result of the upsert operation specifies whether existing rows were updated or a new row was appended, along with the list of row ids that were affected.
336 337 338 339 340 341 342 |
# File 'lib/aws-sdk-honeycode/types.rb', line 336 class BatchUpsertTableRowsResult < Struct.new( :rows, :workbook_cursor, :failed_batch_items) SENSITIVE = [] include Aws::Structure end |
#workbook_cursor ⇒ Integer
The updated workbook cursor after updating or appending rows in the table.
336 337 338 339 340 341 342 |
# File 'lib/aws-sdk-honeycode/types.rb', line 336 class BatchUpsertTableRowsResult < Struct.new( :rows, :workbook_cursor, :failed_batch_items) SENSITIVE = [] include Aws::Structure end |