AmazonSimpledbgetattributes()

Amazon SimpleDB: Gets all the attributes for the given domain and ItemName

Usage

STRUCTURE = AmazonSimpledbgetattributes( datasource, domain, itemname, consistentread )
Argument Summary
datasource Amazon SimpleDB Datasource
domain domain
itemname The itemName name
consistentread Defaults to false. This is a flag that controls whether or not SimpleDB should wait for all the replication nodes to return before failing [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

AmazonSimpledbgetattributes(
   datasource=?, 
   domain=?, 
   itemname=?, 
   consistentread=?
);

Supports passing parameters as a structure using ArgumentCollection:

AmazonSimpledbgetattributes( ArgumentCollection={
   datasource : ?, 
   domain : ?, 
   itemname : ?, 
   consistentread : ?
} );