# File lib/fog/aws/requests/iam/update_login_profile.rb, line 31
        def update_login_profile(user_name, password)
          unless self.data[:users].key?(user_name)
            raise Fog::AWS::IAM::NotFound.new("The user with name #{user_name} cannot be found.")
          end

          user = self.data[:users][user_name]

          unless user[:login_profile]
            raise Fog::AWS::IAM::NotFound, "Cannot find Login Profile for User #{user_name}"
          end

          user[:login_profile][:password] = password

          response = Excon::Response.new
          response.status = 200

          response.body = {
            "RequestId" => Fog::AWS::Mock.request_id
          }

          response
        end