Class: Dev::Aws::Account::Info

Inherits:
Object
  • Object
show all
Defined in:
lib/firespring_dev_commands/aws/account/info.rb

Overview

Class which contains information about the Aws account

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, id) ⇒ Info

Returns a new instance of Info.



8
9
10
11
# File 'lib/firespring_dev_commands/aws/account/info.rb', line 8

def initialize(name, id)
  @name = name
  @id = id
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



6
7
8
# File 'lib/firespring_dev_commands/aws/account/info.rb', line 6

def id
  @id
end

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/firespring_dev_commands/aws/account/info.rb', line 6

def name
  @name
end