Source for file GetAttributes.php
Documentation is available at GetAttributes.php
* @package Amazon_SimpleDB
* @copyright Copyright 2007 Amazon Technologies, Inc.
* @link http://aws.amazon.com
* @license http://aws.amazon.com/apache2.0 Apache License, Version 2.0
/*******************************************************************************
* Amazon Simple DB PHP5 Library
* Generated: Wed Jul 23 00:24:22 PDT 2008
* @see Amazon_SimpleDB_Model
require_once ('Amazon/SimpleDB/Model.php');
* Amazon_SimpleDB_Model_GetAttributes
* <li>DomainName: string</li>
* <li>ItemName: string</li>
* <li>AttributeName: string</li>
* Construct new Amazon_SimpleDB_Model_GetAttributes
* @param mixed $data DOMElement or Associative Array to construct from.
* <li>DomainName: string</li>
* <li>ItemName: string</li>
* <li>AttributeName: string</li>
'DomainName' =>
array('FieldValue' =>
null, 'FieldType' =>
'string'),
'ItemName' =>
array('FieldValue' =>
null, 'FieldType' =>
'string'),
'AttributeName' =>
array('FieldValue' =>
array(), 'FieldType' =>
array('string')),
* Gets the value of the DomainName property.
* @return string DomainName
return $this->_fields['DomainName']['FieldValue'];
* Sets the value of the DomainName property.
* @param string DomainName
$this->_fields['DomainName']['FieldValue'] =
$value;
* Sets the value of the DomainName and returns this instance
* @param string $value DomainName
* @return Amazon_SimpleDB_Model_GetAttributes instance
* Checks if DomainName is set
* @return bool true if DomainName is set
* Gets the value of the ItemName property.
* @return string ItemName
return $this->_fields['ItemName']['FieldValue'];
* Sets the value of the ItemName property.
$this->_fields['ItemName']['FieldValue'] =
$value;
* Sets the value of the ItemName and returns this instance
* @param string $value ItemName
* @return Amazon_SimpleDB_Model_GetAttributes instance
* Checks if ItemName is set
* @return bool true if ItemName is set
* Gets the value of the AttributeName .
* @return array of string AttributeName
return $this->_fields['AttributeName']['FieldValue'];
* Sets the value of the AttributeName.
* @param string or an array of string AttributeName
$attributeName =
array ($attributeName);
$this->_fields['AttributeName']['FieldValue'] =
$attributeName;
* Sets single or multiple values of AttributeName list via variable number of arguments.
* For example, to set the list with two elements, simply pass two values as arguments to this function
* <code>withAttributeName($attributeName1, $attributeName2)</code>
* @param string $stringArgs one or more AttributeName
* @return Amazon_SimpleDB_Model_GetAttributes instance
$this->_fields['AttributeName']['FieldValue'][] =
$attributeName;
* Checks if AttributeName list is non-empty
* @return bool true if AttributeName list is non-empty
return count ($this->_fields['AttributeName']['FieldValue']) >
0;
Documentation generated on Wed, 23 Jul 2008 00:47:38 -0700 by phpDocumentor 1.4.2