# File lib/fog/aws/models/iam/users.rb, line 22
        def get(identity)
          data = connection.get_user(identity).body['User']
          new(data) # data is an attribute hash
        rescue Fog::AWS::IAM::NotFound
          nil
        end