amazonka-sdb-0.3.4: Amazon SimpleDB SDK.

Safe HaskellNone
LanguageHaskell2010

Network.AWS.SDB.DeleteAttributes

Contents

Description

Deletes one or more attributes associated with an item. If all attributes of the item are deleted, the item is 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.

http://docs.aws.amazon.com/AmazonSimpleDB/latest/DeveloperGuide/SDB_API_DeleteAttributes.html

Synopsis

Request

Request constructor

Request lenses

daAttributes :: Lens' DeleteAttributes [Attribute] Source

A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.

daDomainName :: Lens' DeleteAttributes Text Source

The name of the domain in which to perform the operation.

daExpected :: Lens' DeleteAttributes (Maybe UpdateCondition) Source

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.

daItemName :: Lens' DeleteAttributes Text Source

The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.

Response

Response constructor