Class: Aws::DynamoDB::Types::BatchStatementError

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#codeString

The error code associated with the failed PartiQL batch statement.

Returns:

  • (String)


1033
1034
1035
1036
1037
1038
# File 'lib/aws-sdk-dynamodb/types.rb', line 1033

class BatchStatementError < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

The error message associated with the PartiQL batch resposne.

Returns:

  • (String)


1033
1034
1035
1036
1037
1038
# File 'lib/aws-sdk-dynamodb/types.rb', line 1033

class BatchStatementError < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end