class Healthchecker::Checks::Dynamodb

Public Instance Methods

check!() click to toggle source
# File lib/healthchecker/checks/dynamodb.rb, line 10
def check!
  client.list_tables
  nil
end
client() click to toggle source
# File lib/healthchecker/checks/dynamodb.rb, line 6
def client
  options[:client] || Aws::DynamoDB::Client.new
end