Deletes one or more attributes associated with an item. If all attributes of the item are deleted, the item is deleted.
simpledb_delete_attributes(DomainName, ItemName, Attributes, Expected)
[required] The name of the domain in which to perform the operation.
[required] The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.
A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.
The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.
svc$delete_attributes( DomainName = "string", ItemName = "string", Attributes = list( list( Name = "string", Value = "string" ) ), Expected = list( Name = "string", Value = "string", Exists = TRUE|FALSE ) )
If DeleteAttributes
is called without being passed any attributes or
values specified, all the attributes for the item are deleted.
DeleteAttributes
is an idempotent operation; running it multiple times
on the same item or attribute does not result in an error response.
Because Amazon SimpleDB makes multiple copies of item data and uses an
eventual consistency update model, performing a GetAttributes or Select
operation (read) immediately after a DeleteAttributes
or PutAttributes
operation (write) might not return updated item data.