AmazonSimpledbdeleteattribute()

Amazon SimpleDB: Deletes the attribute (and optional value) from the ItemName inside the domain

Usage

BOOLEAN = AmazonSimpledbdeleteattribute( 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 [optional]

Calling

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

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

Supports passing parameters as a structure using ArgumentCollection:

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