Class: PF::SecretKeyAccount

Inherits:
Object
  • Object
show all
Defined in:
lib/pf/profile/profile.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, access_key, secret_key) ⇒ SecretKeyAccount

Returns a new instance of SecretKeyAccount.



73
74
75
76
77
# File 'lib/pf/profile/profile.rb', line 73

def initialize(name, access_key, secret_key)
  @name = name
  @access_key = access_key
  @secret_key = secret_key
end

Instance Attribute Details

#access_keyObject

Returns the value of attribute access_key.



72
73
74
# File 'lib/pf/profile/profile.rb', line 72

def access_key
  @access_key
end

#nameObject

Returns the value of attribute name.



72
73
74
# File 'lib/pf/profile/profile.rb', line 72

def name
  @name
end

#secret_keyObject

Returns the value of attribute secret_key.



72
73
74
# File 'lib/pf/profile/profile.rb', line 72

def secret_key
  @secret_key
end