Class CancellationReason
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
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.
public class CancellationReason
- Inheritance
-
CancellationReason
- Inherited Members
Constructors
CancellationReason()
public CancellationReason()
Properties
Code
Gets and sets the property Code.
Status code for the result of the cancelled transaction.
public string Code { get; set; }
Property Value
Item
Gets and sets the property Item.
Item in the request which caused the transaction to get cancelled.
public Dictionary<string, AttributeValue> Item { get; set; }
Property Value
Message
Gets and sets the property Message.
Cancellation reason message description.
public string Message { get; set; }