in src/pagination_token.rb [18:27]
def self.generate(exclusive_start_key)
item = new(
uuid: SecureRandom.uuid,
table_name: 'TOKEN',
ttl: (Time.now + 86400),
exclusive_start_key: exclusive_start_key
)
item.save ? item.uuid : nil
end