AWSDynamoDBRemove
Objective-C
@interface AWSDynamoDBRemove
Swift
class AWSDynamoDBRemove
Represents a request to perform a DeleteItem operation.
Required parameters: [Key, TableName]
-
A condition that must be satisfied in order for a conditional delete to succeed.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable conditionExpression;Swift
var conditionExpression: String? { get set } -
One or more substitution tokens for attribute names in an expression.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable expressionAttributeNames;Swift
var expressionAttributeNames: [String : String]? { get set } -
One or more values that can be substituted in an expression.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, AWSDynamoDBAttributeValue *> *_Nullable expressionAttributeValues;Swift
var expressionAttributeValues: [String : AWSDynamoDBAttributeValue]? { get set } -
The primary key of the item to be deleted. Each element consists of an attribute name and a value for that attribute.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, AWSDynamoDBAttributeValue *> *_Nullable key;Swift
var key: [String : AWSDynamoDBAttributeValue]? { get set } -
Use
ReturnValuesOnConditionCheckFailureto get the item attributes if theDeletecondition fails. ForReturnValuesOnConditionCheckFailure, the valid values are: NONE and ALL_OLD.Declaration
Objective-C
@property (nonatomic) AWSDynamoDBReturnValuesOnConditionCheckFailure returnValuesOnConditionCheckFailure;Swift
var returnValuesOnConditionCheckFailure: AWSDynamoDBReturnValuesOnConditionCheckFailure { get set } -
Name of the table in which the item to be deleted resides. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable tableName;Swift
var tableName: String? { get set }
View on GitHub
Install in Dash
AWSDynamoDBRemove Class Reference