in lib/aws/session_store/dynamo_db/garbage_collection.rb [28:34]
def scan_filter(config)
hash = {}
hash['created_at'] = oldest_date(config.max_age) if config.max_age
hash['updated_at'] = oldest_date(config.max_stale) if config.max_stale
{ :scan_filter => hash }
end