Class | Amazon::AWS::SimilarityLookup |
In: |
lib/amazon/aws.rb
|
Parent: | Operation |
Similarity look-up is for items similar to others.
Look up items similar to asin, which can be a single item or an array. parameters is an optional hash of parameters that further refine the scope of the search.
Example:
sl = SimilarityLookup.new( 'B000051WBE' )
In the above example, we search for items similar to the one with ASIN B000051WBE.
# File lib/amazon/aws.rb, line 1199 def initialize(asin, parameters={}) super( { 'ItemId' => asin.to_a.join( ',' ) }.merge( parameters ) ) end