GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::Amazon::Request::TextStream(3) User Contributed Perl Documentation Net::Amazon::Request::TextStream(3)

Net::Amazon::Request::TextStream - request class for text stream search

  use Net::Amazon;
  use Net::Amazon::Request::TextStream;

  my $ua = Net::Amazon->new(
      token       => 'YOUR_AMZN_TOKEN'
  );

  my $req = Net::Amazon::Request::TextStream->new( 
      textstream => 'Here is some text that mentions the Rolling Stones.',
  );

  # Response is of type Net::Amazon::Response::TextStream
  my $resp = $ua->request($req);

"Net::Amazon::Request::TextStream" is a class used to perform a search on a block of text. Amazon extracts keywords from the given block of text, but note that conjunctions and helper words, such as "and", "or", "the", etc. are not excluded, so strip them out yourself if need be.

TextStream searching is only available for the US service.

Upon success, the response's "properties()" method will return a list of "Net::Amazon::Property::*" objects.

new(textstream => $text)
Constructs a new "Net::Amazon::Request::TextStream" object, used to query the Amazon web service with a block of text.

Check Net::Amazon::Request for common request parameters not listed here.

2009-09-15 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.