class AWS::Record::CountValidator

def too_few min, got

def too_few min, got
  msg = options[:too_few] || "has too few values (minimum is %{minimum})"
  interpolate(msg, :minimum => min, :count => got)
end