class DynamoDB::Binary

Public Class Methods

new(value) click to toggle source
# File lib/ddbcli/ddb-binary.rb, line 5
def initialize(value)
  @value = value
end

Public Instance Methods

inspect() click to toggle source
# File lib/ddbcli/ddb-binary.rb, line 16
def inspect
  @value.inspect
end
to_s()
Alias for: value
to_str()
Alias for: value
value() click to toggle source
# File lib/ddbcli/ddb-binary.rb, line 9
def value
  Base64.encode64(@value).delete("\n")
end
Also aliased as: to_s, to_str