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

Search for entities based on user-defined tags. A tag is a descriptive word that a customer uses to label entities on Amazon‘s Web site. Entities can be items for sale, Listmania lists, guides, etc.

Methods

new  

Public Class methods

Look up entities based on user-defined tags. tag_name is the tag to search on and parameters is an optional hash of parameters that further refine the scope of the search.

Example:

 tl = TagLookup.new( 'Awful' )

In the example above, we search for entities tagged by users with the word Awful.

[Source]

# File lib/amazon/aws.rb, line 1223
      def initialize(tag_name, parameters={})
        super( { 'TagName' => tag_name }.merge( parameters ) )
      end

[Validate]