# File lib/aws/iam/user_collection.rb, line 65
      def create name, options = {}
        create_opts = {}
        create_opts[:user_name] = name
        create_opts[:path] = options[:path] if options[:path]
        resp = client.create_user(create_opts)
        User.new_from(:create_user, resp.user,
          resp.user.user_name, :config => config)
      end