Class Amazon::AWS::ListSearch
In: lib/amazon/aws.rb
Parent: Operation

Find wishlists, registry lists, etc. created by users and placed on Amazon. These are items that customers would like to receive as presnets.

Methods

new  

Public Class methods

Search for Amazon lists. list_type is the type of list to search for and parameters is a hash of parameters that narrows the scope of the search.

Example:

 ls = ListSearch.new( 'WishList', { 'Name' => 'Peter Duff' }

In the above example, we retrieve the wishlist for the Amazon user, Peter Duff.

[Source]

# File lib/amazon/aws.rb, line 974
      def initialize(list_type, parameters)
        super( { 'ListType' => list_type }.merge( parameters ) )
      end

[Validate]