Is it possible to remove an attribute in SimpleDB without specifying the ItemName parameter in the query string? The way I store my data is the names of the UUIDs, so I donβt know the UUIDs of the data I want to delete. Is there a way to specify an attribute and remove all elements with this attribute?
There is no way to delete without an element name, but you can use SELECT to get the elements you need to delete:
select itemName() from MyDomain where MyAttribute = 'foo'