Class: Aws::DynamoDB::Types::BatchStatementError
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::BatchStatementError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
An error associated with a statement in a PartiQL batch that was run.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The error code associated with the failed PartiQL batch statement.
-
#item ⇒ Hash<String,Types::AttributeValue>
The item which caused the condition check to fail.
-
#message ⇒ String
The error message associated with the PartiQL batch response.
Instance Attribute Details
#code ⇒ String
The error code associated with the failed PartiQL batch statement.
924 925 926 927 928 929 930 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 924 class BatchStatementError < Struct.new( :code, :message, :item) SENSITIVE = [] include Aws::Structure end |
#item ⇒ Hash<String,Types::AttributeValue>
The item which caused the condition check to fail. This will be set if ReturnValuesOnConditionCheckFailure is specified as ‘ALL_OLD`.
924 925 926 927 928 929 930 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 924 class BatchStatementError < Struct.new( :code, :message, :item) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The error message associated with the PartiQL batch response.
924 925 926 927 928 929 930 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 924 class BatchStatementError < Struct.new( :code, :message, :item) SENSITIVE = [] include Aws::Structure end |