Class: Amazon::AWS::TagLookup

Inherits:
Operation show all
Defined in:
lib/ruby-paa/aws.rb

Overview

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.

Constant Summary

Constants inherited from Operation

Operation::OPERATIONS

Instance Attribute Summary

Attributes inherited from Operation

#kind, #params, #response_group

Instance Method Summary collapse

Methods inherited from Operation

#batch, #query_parameters, #response_group_orig=

Constructor Details

#initialize(tag_name, parameters = {}) ⇒ TagLookup

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.



1220
1221
1222
# File 'lib/ruby-paa/aws.rb', line 1220

def initialize(tag_name, parameters={})
 super( { 'TagName' => tag_name }.merge( parameters ) )
end