AWSDynamoDBCancellationReason
Objective-C
@interface AWSDynamoDBCancellationReason
Swift
class AWSDynamoDBCancellationReason
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.
-
Status code for the result of the cancelled transaction.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable code;
Swift
var code: String? { get set }
-
Item in the request which caused the transaction to get cancelled.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, AWSDynamoDBAttributeValue *> *_Nullable item;
Swift
var item: [String : AWSDynamoDBAttributeValue]? { get set }
-
Cancellation reason message description.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable message;
Swift
var message: String? { get set }