AmazonSimpledbsetstruct()

Amazon SimpleDB: Sets all the attributes in data to the ItemName in domain

Usage

BOOLEAN = AmazonSimpledbsetstruct( datasource, domain, itemname, data )
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
data data - structure

Calling

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

AmazonSimpledbsetstruct(
   datasource=?, 
   domain=?, 
   itemname=?, 
   data=?
);

Supports passing parameters as a structure using ArgumentCollection:

AmazonSimpledbsetstruct( ArgumentCollection={
   datasource : ?, 
   domain : ?, 
   itemname : ?, 
   data : ?
} );