AmazonSimpledbsetattribute()

Amazon SimpleDB: Sets the attribute (and optional value) to the ItemName inside the domain

Usage

BOOLEAN = AmazonSimpledbsetattribute( datasource, domain, itemname, attname, attvalue )
Argument Summary
datasource Amazon SimpleDB Datasource
domain Amazon Domain to which this attribute is set
itemname The SimpleDB 'itemName' or key of the main document record
attname The attribute name
attvalue The attribute value

Calling

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

AmazonSimpledbsetattribute(
   datasource=?, 
   domain=?, 
   itemname=?, 
   attname=?, 
   attvalue=?
);

Supports passing parameters as a structure using ArgumentCollection:

AmazonSimpledbsetattribute( ArgumentCollection={
   datasource : ?, 
   domain : ?, 
   itemname : ?, 
   attname : ?, 
   attvalue : ?
} );