class AWS::Core::Policy::ConditionBlock

def match_operator(filter, op, value)

def match_operator(filter, op, value)
  # dates are the only values that don't come back as native types in JSON
  # but where we use the type as a cue to the operator translation
  value = Date.today if op =~ /^Date/
  translate_operator(filter, value) == op
end