Class: Awscli::EC2::Tags
- Inherits:
-
Object
- Object
- Awscli::EC2::Tags
- Defined in:
- lib/awscli/ec2.rb
Overview
> Monitor
Instance Method Summary collapse
- #create(options) ⇒ Object
- #delete(options) ⇒ Object
-
#initialize(connection) ⇒ Tags
constructor
A new instance of Tags.
- #list ⇒ Object
Constructor Details
#initialize(connection) ⇒ Tags
Returns a new instance of Tags.
593 594 595 |
# File 'lib/awscli/ec2.rb', line 593 def initialize(connection) @conn = connection end |
Instance Method Details
#create(options) ⇒ Object
601 602 603 604 |
# File 'lib/awscli/ec2.rb', line 601 def create() @conn..create() puts 'Created Tag' end |
#delete(options) ⇒ Object
606 607 608 609 |
# File 'lib/awscli/ec2.rb', line 606 def delete() @conn..destroy() puts 'Deleted Tag' end |
#list ⇒ Object
597 598 599 |
# File 'lib/awscli/ec2.rb', line 597 def list @conn..table end |