AWSDynamoDBDeleteRequest

Objective-C

@interface AWSDynamoDBDeleteRequest

Swift

class AWSDynamoDBDeleteRequest

Represents a request to perform a DeleteItem operation on an item.

Required parameters: [Key]

  • key

    A map of attribute name to attribute values, representing the primary key of the item to delete. All of the table’s primary key attributes must be specified, and their data types must match those of the table’s key schema.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, AWSDynamoDBAttributeValue *> *_Nullable key;

    Swift

    var key: [String : AWSDynamoDBAttributeValue]? { get set }