class Dynamocli::Client

Public Instance Methods

erase(table) click to toggle source
# File lib/dynamocli.rb, line 34
def erase(table)
  Dynamocli::Erase.new(table_name: table, with_drift: options["with-drift"]).start
end
import(file) click to toggle source
# File lib/dynamocli.rb, line 17
def import(file)
  Dynamocli::Import.new(file: file, table: options[:to], exported_from_aws: options["exported-from-aws"]).start
end