# File lib/aws/ec2/tagged_item.rb, line 30 def add_tag key, options = {} client.create_tags({ :resources => [id], :tags => [{ :key => key, :value => options[:value].to_s }], }) Tag.new(self, key, options.merge(:config => config)) end