Class: Aws::Honeycode::Types::BatchDeleteTableRowsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::BatchDeleteTableRowsResult
- 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 row ids in the request that could not be deleted from the table.
-
#workbook_cursor ⇒ Integer
The updated workbook cursor after deleting the rows from the table.
Instance Attribute Details
#failed_batch_items ⇒ Array<Types::FailedBatchItem>
The list of row ids in the request that could not be deleted from the table. Each element in this list contains one row id from the request that could not be deleted along with the reason why that item could not be deleted.
188 189 190 191 192 193 |
# File 'lib/aws-sdk-honeycode/types.rb', line 188 class BatchDeleteTableRowsResult < Struct.new( :workbook_cursor, :failed_batch_items) SENSITIVE = [] include Aws::Structure end |
#workbook_cursor ⇒ Integer
The updated workbook cursor after deleting the rows from the table.
188 189 190 191 192 193 |
# File 'lib/aws-sdk-honeycode/types.rb', line 188 class BatchDeleteTableRowsResult < Struct.new( :workbook_cursor, :failed_batch_items) SENSITIVE = [] include Aws::Structure end |