class AWS::Core::Policy::ConditionBuilder

def where(key, operator = nil, *values)

Returns:
  • (OperatorBuilder) -
def where(key, operator = nil, *values)
  if operator
    @conditions.add(operator, key, *values)
    self
  else
    OperatorBuilder.new(self, key)
  end
end