class AWS::PWS::Client

Attributes

cli[RW]
raw_data[RW]

Public Class Methods

new() click to toggle source
# File lib/aws/pws/client.rb, line 8
def initialize
  @cli ||= ::PWS.new({})
  @raw_data = @cli.instance_variable_get(:@data)
end

Public Instance Methods

read(key) click to toggle source
# File lib/aws/pws/client.rb, line 13
def read(key)
  return unless raw_data[key]
  raw_data[key][:password]
end