Class: AWS::EC2::Tag
- Inherits:
-
Resource
- Object
- Resource
- AWS::EC2::Tag
- Defined in:
- lib/aws/ec2/tag.rb
Overview
Represents an EC2 tag.
Instance Attribute Summary collapse
-
#key ⇒ String
(also: #name)
readonly
The name of this tag.
-
#resource ⇒ Object
readonly
The EC2 resource this tag belongs to.
Instance Method Summary collapse
-
#delete(value = nil) ⇒ nil
Deletes this tag.
-
#initialize(resource, key, options = {}) ⇒ Tag
constructor
A new instance of Tag.
-
#value ⇒ String
The tag value.
Constructor Details
#initialize(resource, key, options = {}) ⇒ Tag
Returns a new instance of Tag.
26 27 28 29 30 |
# File 'lib/aws/ec2/tag.rb', line 26 def initialize resource, key, = {} @resource = resource @key = key.to_s super end |
Instance Attribute Details
#key ⇒ String (readonly) Also known as: name
Returns The name of this tag.
36 37 38 |
# File 'lib/aws/ec2/tag.rb', line 36 def key @key end |
#resource ⇒ Object (readonly)
Returns The EC2 resource this tag belongs to.
33 34 35 |
# File 'lib/aws/ec2/tag.rb', line 33 def resource @resource end |
Instance Method Details
#delete(value = nil) ⇒ nil
Deletes this tag.
46 47 48 49 50 51 |
# File 'lib/aws/ec2/tag.rb', line 46 def delete(value = nil) tag_opts = { :key => key } tag_opts[:value] = value if value client.(:resources => [resource.id], :tags => [tag_opts]) nil end |
#value ⇒ String
Returns The tag value.
41 |
# File 'lib/aws/ec2/tag.rb', line 41 def value; end |