amazonka-sdb-0.3.4: Amazon SimpleDB SDK.

Safe HaskellNone
LanguageHaskell2010

Network.AWS.SDB.GetAttributes

Contents

Description

Returns all of the attributes associated with the specified item. Optionally, the attributes returned can be limited to one or more attributes by specifying an attribute name parameter.

If the item does not exist on the replica that was accessed for this operation, an empty set is returned. The system does not return an error as it cannot guarantee the item does not exist on other replicas.

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

Synopsis

Request

Request constructor

getAttributes Source

GetAttributes constructor.

The fields accessible through corresponding lenses are:

Request lenses

gaAttributeNames :: Lens' GetAttributes [Text] Source

The names of the attributes.

gaConsistentRead :: Lens' GetAttributes (Maybe Bool) Source

Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.

gaDomainName :: Lens' GetAttributes Text Source

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

gaItemName :: Lens' GetAttributes Text Source

The name of the item.

Response

Response constructor

getAttributesResponse :: GetAttributesResponse Source

GetAttributesResponse constructor.

The fields accessible through corresponding lenses are:

Response lenses

garAttributes :: Lens' GetAttributesResponse [Attribute] Source

The list of attributes returned by the operation.