AWS Device Farm - extra data path in script

My Appium script perfectly working on local but moving to aws device farm, returns parsing error because of one class file.
I am trying to import data from an excel file within this class file. I think error because of the path of excel file.

I upload the data excel file as extra data in aws but i can’t find out the location.

public static void changeCity() throws InterruptedException{
	try{
		File src = new File("data1.xls");
		Workbook wb = Workbook.getWorkbook(src);
		Sheet sh1 = wb.getSheet(0);
		Sheet bugzillaUpdation = wb.getSheet("UtilityCredentials"); 
           .....

Please help me to resolve the issue.

Thanks
Anfas