Class | Amazon::AWS::ListLookup |
In: |
lib/amazon/aws.rb
|
Parent: | Operation |
Find the details of specific wishlists, registries, etc.
Look up and return details about a specific list. list_id is the Amazon list ID, list_type is the type of list and parameters is an optional hash of parameters that narrow the scope of the search.
Example:
ll = ListLookup.new( '3P722DU4KUPCP', 'Listmania' )
In the above example, a Listmania list with the ID 3P722DU4KUPCP is retrieved from AWS.
# File lib/amazon/aws.rb, line 1149 def initialize(list_id, list_type, parameters={}) super( { 'ListId' => list_id, 'ListType' => list_type }.merge( parameters ) ) end