Exemplo n.º 1
0
 /**
  * Executes the GetQueryIterator operation.
  *
  * @param string $tableName The name of the table containing the requested items.
  * @param array  $args      Arguments of the query
  *
  * @return  Guzzle\Service\Resource\ResourceIteratorInterface
  *
  * @see http://docs.aws.amazon.com/aws-sdk-php/latest/class-Aws.DynamoDb.DynamoDbClient.html#_getQueryIterator
  */
 public function getQueryIterator($tableName, array $args)
 {
     $args['TableName'] = $tableName;
     return $this->client->getQueryIterator($args);
 }