Class: Aws::DynamoDB::Types::CancellationReason
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::CancellationReason
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
An ordered list of errors for each item in the request which caused the transaction to get cancelled. The values of the list are ordered according to the ordering of the ‘TransactWriteItems` request parameter. If no error occurred for the associated item an error with a Null code and Null message will be present.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
Status code for the result of the cancelled transaction.
-
#item ⇒ Hash<String,Types::AttributeValue>
Item in the request which caused the transaction to get cancelled.
-
#message ⇒ String
Cancellation reason message description.
Instance Attribute Details
#code ⇒ String
Status code for the result of the cancelled transaction.
1196 1197 1198 1199 1200 1201 1202 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 1196 class CancellationReason < Struct.new( :item, :code, :message) SENSITIVE = [] include Aws::Structure end |
#item ⇒ Hash<String,Types::AttributeValue>
Item in the request which caused the transaction to get cancelled.
1196 1197 1198 1199 1200 1201 1202 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 1196 class CancellationReason < Struct.new( :item, :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
Cancellation reason message description.
1196 1197 1198 1199 1200 1201 1202 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 1196 class CancellationReason < Struct.new( :item, :code, :message) SENSITIVE = [] include Aws::Structure end |