Class | Amazon::AWS::TagLookup |
In: |
lib/amazon/aws.rb
|
Parent: | Operation |
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.
# File lib/amazon/aws.rb, line 1223 def initialize(tag_name, parameters={}) super( { 'TagName' => tag_name }.merge( parameters ) ) end