Class: Aws::Honeycode::Types::FailedBatchItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::Honeycode::Types::FailedBatchItem
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-honeycode/types.rb
Overview
A single item in a batch that failed to perform the intended action because of an error preventing it from succeeding.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_message ⇒ String
The error message that indicates why the batch item failed.
-
#id ⇒ String
The id of the batch item that failed.
Instance Attribute Details
#error_message ⇒ String
The error message that indicates why the batch item failed.
682 683 684 685 686 687 |
# File 'lib/aws-sdk-honeycode/types.rb', line 682 class FailedBatchItem < Struct.new( :id, :error_message) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The id of the batch item that failed. This is the batch item id for the BatchCreateTableRows and BatchUpsertTableRows operations and the row id for the BatchUpdateTableRows and BatchDeleteTableRows operations.
682 683 684 685 686 687 |
# File 'lib/aws-sdk-honeycode/types.rb', line 682 class FailedBatchItem < Struct.new( :id, :error_message) SENSITIVE = [] include Aws::Structure end |