class Aws::LRUCache::Entry

@api private

def expired?

def expired?
  return false unless @expiration
  Time.now - @created_time > @expiration
end

def initialize(options = {})

def initialize(options = {})
  @value = options[:value]
  @expiration = options[:expiration]
  @created_time = Time.now
end