AWSDynamoDBBatchStatementError
Objective-C
@interface AWSDynamoDBBatchStatementError
Swift
class AWSDynamoDBBatchStatementError
An error associated with a statement in a PartiQL batch that was run.
-
The error code associated with the failed PartiQL batch statement.
Declaration
Objective-C
@property (nonatomic) AWSDynamoDBBatchStatementErrorCodeEnum code;
Swift
var code: AWSDynamoDBBatchStatementErrorCodeEnum { get set }
-
The item which caused the condition check to fail. This will be set if ReturnValuesOnConditionCheckFailure is specified as
ALL_OLD
.Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, AWSDynamoDBAttributeValue *> *_Nullable item;
Swift
var item: [String : AWSDynamoDBAttributeValue]? { get set }
-
The error message associated with the PartiQL batch response.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable message;
Swift
var message: String? { get set }