Class: Amazon::AWS::TagLookup
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
Instance Attribute Summary
Attributes inherited from Operation
Instance Method Summary collapse
-
#initialize(tag_name, parameters = {}) ⇒ TagLookup
constructor
Look up entities based on user-defined tags.
Methods inherited from Operation
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.
1149 1150 1151 |
# File 'lib/amazon/aws.rb', line 1149 def initialize(tag_name, parameters={}) super( { 'TagName' => tag_name }.merge( parameters ) ) end |