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.
-
#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.
921 922 923 924 925 926 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 921 class BatchStatementError < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The error message associated with the PartiQL batch response.
921 922 923 924 925 926 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 921 class BatchStatementError < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |